diff --git a/CMakeLists.txt b/CMakeLists.txt
index b062604fba..197694e020 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -314,6 +314,8 @@ if (SLIC3R_ASAN)
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} -fsanitize=address")
set(CMAKE_SHARED_LINKER_FLAGS "${CMAKE_SHARED_LINKER_FLAGS} -fsanitize=address")
set(CMAKE_MODULE_LINKER_FLAGS "${CMAKE_MODULE_LINKER_FLAGS} -fsanitize=address")
+ else()
+ add_compile_definitions(_DISABLE_STRING_ANNOTATION=1 _DISABLE_VECTOR_ANNOTATION=1)
endif ()
if ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
diff --git a/README.md b/README.md
index 3f492a5835..da42312e32 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,10 @@ Orca Slicer is an open source slicer for FDM printers.
 Join community: [OrcaSlicer Official Discord Server](https://discord.gg/P4VE9UY9gJ)
+đšđšđšAlertđšđšđš: "orcaslicer.net" is **NOT** an our website and appears to be potentially malicious. The content there is AI-generated, which means it lacks genuine context and it's only purpose is to profit from ADs and worse: they can redirect download links to harmful sources. Please avoid downloading OrcaSlicer from this site, as the download links could be compromised at any time.
+The only official platforms for OrcaSlicer are the GitHub project page and the Discord channel mentioned above.
+I really value the OrcaSlicer community and appreciate all the social groups that have formed. However, itâs important to address that itâs harmful if any group falsely claims to be official or misleads its members. If you notice such a group or are part of one, please help by encouraging the group owner to add a clear disclaimer or by warning its members.
+
# Main features
- Auto calibrations for all printers
- Sandwich(inner-outer-inner) mode - an improved version of the `External perimeters first` mode
@@ -13,6 +17,12 @@ Orca Slicer is an open source slicer for FDM printers.
- More granular controls
- More features can be found in [change notes](https://github.com/SoftFever/OrcaSlicer/releases/)
+# Wiki
+The wiki below aims to provide a detailed explanation of the slicer settings, how to get the most out of them as well as how to calibrate and setup your printer.
+
+The wiki is work in progress so bear with us while we get it up and running!
+
+**[Access the wiki here](https://github.com/SoftFever/OrcaSlicer/wiki)**
# Download
diff --git a/doc/Home.md b/doc/Home.md
index fce4bc3480..998edbe409 100644
--- a/doc/Home.md
+++ b/doc/Home.md
@@ -8,13 +8,13 @@ The Wiki is work in progress so bear with us while we get it up and running!
The below sections provide a detailed settings explanation as well as tips and tricks in setting these for optimal print results.
### Quality Settings
-- [Layer Height Settings](print_settings/quality/quality_settings_layer_height)
-- [Line Width Settings](print_settings/quality/quality_settings_line_width)
-- [Seam Settings](print_settings/quality/quality_settings_seam)
+- [Layer Height Settings](quality_settings_layer_height)
+- [Line Width Settings](quality_settings_line_width)
+- [Seam Settings](quality_settings_seam)
- [Precise wall](Precise-wall)
### Speed Settings
-- [Extrusion rate smoothing](print_settings/speed/extrusion-rate-smoothing)
+- [Extrusion rate smoothing](extrusion-rate-smoothing)
### Multi material
- [Single Extruder Multimaterial](semm)
@@ -30,8 +30,9 @@ The below sections provide a detailed settings explanation as well as tips and t
## Printer Calibration
The guide below takes you through the key calibration tests in Orca - flow rate, pressure advance, print temperature, retraction, tolerances and maximum volumetric speed
- [Calibration Guide](./Calibration)
+- [Adaptive Pressure Advance Guide](adaptive-pressure-advance)
## Developer Section
- [How to build Orca Slicer](./How-to-build)
- [Localization and translation guide](Localization_guide)
-- [Developer Reference](./developer-reference/Home)
+- [Developer Reference](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/developer-reference/Home.md)
diff --git a/doc/adaptive-pressure-advance.md b/doc/adaptive-pressure-advance.md
new file mode 100644
index 0000000000..3528352b4a
--- /dev/null
+++ b/doc/adaptive-pressure-advance.md
@@ -0,0 +1,176 @@
+# Adaptive Pressure Advance
+
+This feature aims to dynamically adjust the printerâs pressure advance to better match the conditions the toolhead is facing during a print. Specifically, to more closely align to the ideal values as flow rate, acceleration, and bridges are encountered.
+This wiki page aims to explain how this feature works, the prerequisites required to get the most out of it as well as how to calibrate it and set it up.
+
+## Settings Overview
+
+This feature introduces the below options under the filament settings:
+
+1. **Enable adaptive pressure advance:** This is the on/off setting switch for adaptive pressure advance.
+2. **Enable adaptive pressure advance for overhangs:** Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option because if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs. It is recommended to start with this option switched off and enable it after the core adaptive pressure advance feature is calibrated correctly.
+3. **Pressure advance for bridges:** Sets the desired pressure advance value for bridges. Set it to 0 to disable this feature. Experiments have shown that a lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after a bridge, which is caused by the pressure drop in the nozzle when printing in the air. Therefore, a lower pressure advance value helps counteract this. A good starting point is approximately half your usual PA value.
+4. **Adaptive pressure advance measurements:** This field contains the calibration values used to generate the pressure advance profile for the nozzle/printer. Input sets of pressure advance (PA) values and the corresponding volumetric flow speeds and accelerations they were measured at, separated by a comma. Add one set of values per line. More information on how to calibrate the model follows in the sections below.
+5. **Pressure advance:** The old field is still needed and is required to be populated with a PA value. A âgood enoughâ median PA value should be entered here, as this will act as a fallback value when performing tool changes, printing a purge/wipe tower for multi-color prints as well as a fallback in case the model fails to identify an appropriate value (unlikely but itâs the ultimate backstop).
+
+
+
+
+## Pre-Requisites
+
+This feature has been tested with Klipper-based printers. While it may work with Marlin or Bambu lab printers, it is currently untested with them. It shouldnât adversely affect the machine; however, the quality results from enabling it are not validated.
+
+**Older versions of Klipper used to stutter when pressure advance was changed while the toolhead was in motion. This has been fixed with the latest Klipper firmware releases. Therefore, make sure your Klipper installation is updated to the latest version before enabling this feature, in order to avoid any adverse quality impacts.**
+
+Klipper firmware released after July 11th, 2024 (version greater than approximately v0.12.0-267) contains the above fix and is compatible with adaptive pressure advance. If you are upgrading from an older version, make sure you update both your Klipper installation as well as reflash the printer MCUâs (main board and toolhead board if present).
+
+## Use case (what to expect)
+
+Following experimentation, it has been noticed that the optimal pressure advance value is less:
+
+1. The faster you print (hence the higher the volumetric flow rate requested from the toolhead).
+2. The larger the layer height (hence the higher the volumetric flow rate requested from the toolhead).
+3. The higher the print acceleration is.
+
+What this means is that we never get ideal PA values for each print feature, especially when they vary drastically in speed and acceleration. We can tune PA for a faster print speed (flow) but compromise on corner sharpness for slower speeds or tune PA for corner sharpness and deal with slight corner-perimeter separation in faster speeds. The same goes for accelerations as well as different layer heights.
+
+This compromise usually means that we settle for tuning an "in-between" PA value between slower external features and faster internal features so we don't get gaps, but also not get too much bulging in external perimeters.
+
+**However, what this also means is that if you are printing with a single layer height, single speed, and acceleration, there is no need to enable this feature.**
+
+Adaptive pressure advance aims to address this limitation by implementing a completely different method of setting pressure advance. **Following a set of PA calibration tests done at different flow rates (speeds and layer heights) and accelerations, a pressure advance model is calculated by the slicer.** Then that model is used to emit the best fit PA for any arbitrary feature flow rate (speed) and acceleration used in the print process.
+
+In addition, it means that you only need to tune this feature once and print across different layer heights with good PA performance.
+
+Finally, if during calibration you notice that there is little to no variance between the PA tests, this feature is redundant for you. **From experiments, high flow nozzles fitted on high-speed core XY printers appear to benefit the most from this feature as they print with a larger range of flow rates and at a larger range of accelerations.**
+
+### Expected results:
+
+With this feature enabled there should be absolutely no bulge in the corners, just the smooth rounding caused by the square corner velocity of your printer.
+
+In addition, seams should appear smooth with no bulging or under extrusion.
+
+Solid infill should have no gaps, pinholes, or separation from the perimeters.
+
+Compared to with this feature disabled, where the internal solid infill and external-internal perimeters show signs of separation and under extrusion, when PA is tuned for optimal external perimeter performance as shown below.
+
+
+
+## How to calibrate the adaptive pressure advance model
+
+### Defining the calibration sets
+
+Firstly, it is important to understand your printer speed and acceleration limits in order to set meaningful boundaries for the calibrations:
+
+1. **Upper acceleration range:** Do not attempt to calibrate adaptive PA for an acceleration that is larger than what the Klipper input shaper calibration tool recommends for your selected shaper. For example, if Klipper recommends an EI shaper with 4k maximum acceleration for your slowest axis (usually the Y axis), donât calibrate adaptive PA beyond that value. This is because after 4k the input shaper smoothing is magnified and the perimeter separations that appear like PA issues are caused by the input shaper smoothing the shape of the corner. Basically, youâd be attempting to compensate for an input shaper artefact with PA.
+2. **Upper print speed range:** The Ellis PA pattern test has been proven to be the most efficient and effective test to run to calibrate adaptive PA. It is fast and allows for a reasonably accurate and easy-to-read PA value. However, the size of the line segments is quite small, which means that for the faster print speeds and slower accelerations, the toolhead will not be able to reach the full flow rate that we are calibrating against. It is therefore generally not recommended to attempt calibration with a print speed of higher than ~200-250mm/sec and accelerations slower than 1k in the PA pattern test. If your lowest acceleration is higher than 1k, then proportionally higher maximum print speeds can be used.
+
+**Remember:** With the calibration process, we aim to create a PA â Flow Rate â Acceleration profile for the toolhead. As we cannot directly control flow rate, we use print speed as a proxy (higher speed -> higher flow).
+
+With the above in mind, letâs create a worked example to identify the optimal number of PA tests to calibrate the adaptive PA model.
+
+**The below starting points are recommended for the majority of Core XY printers:**
+
+1. **Accelerations:** 1k, 2k, 4k
+2. **Print speeds:** 50mm/sec, 100mm/sec, 150mm/sec, 200mm/sec.
+
+**That means we need to run 3x4 = 12 PA tests and identify the optimal PA for them.**
+
+Finally, if the maximum acceleration given by input shaper is materially higher than 4k, run a set of tests with the higher accelerations. For example, if input shaper allows a 6k value, run PA tests as below:
+
+1. **Accelerations:** 1k, 2k, 4k, 6k
+2. **Print speeds:** 50mm/sec, 100mm/sec, 150mm/sec, 200mm/sec.
+
+Similarly, if the maximum value recommended is 12k, run PA tests as below:
+
+1. **Accelerations:** 1k, 2k, 4k, 8k, 12k
+2. **Print speeds:** 50mm/sec, 100mm/sec, 150mm/sec, 200mm/sec.
+
+So, at worst case you will need to run 5x4 = 20 PA tests if your printer acceleration is on the upper end! In essence, you want enough granularity of data points to create a meaningful model while also not overdoing it with the number of tests. So, doubling the speed and acceleration is a good compromise to arrive at the optimal number of tests.
+For this example, letâs assume that the baseline number of tests is adequate for your printer:
+
+1. **Accelerations:** 1k, 2k, 4k
+2. **Print speeds:** 50mm/sec, 100mm/sec, 150mm/sec, 200mm/sec.
+
+We, therefore, need to run 12 PA tests as below:
+
+**Speed â Acceleration**
+ 1. 50 â 1k
+ 2. 100 â 1k
+ 3. 150 â 1k
+ 4. 200 â 1k
+ 5. 50 â 2k
+ 6. 100 â 2k
+ 7. 150 â 2k
+ 8. 200 â 2k
+ 9. 50 â 4k
+ 10. 100 â 4k
+ 11. 150 â 4k
+ 12. 200 â 4k
+
+### Identifying the flow rates from the print speed
+
+As mentioned earlier, **the print speed is used as a proxy to vary the extrusion flow rate**. Once your PA test is set up, change the gcode preview to âflowâ and move the horizontal slider over one of the herringbone patterns and take note of the flow rate for different speeds.
+
+
+
+### Running the tests
+
+Setup your PA test as usual from the calibration menu in Orca slicer. It is recommended that the PA step is set to a small value, to allow you to make meaningful distinctions between the different tests â **therefore a PA step value of 0.001 is recommended. **
+
+**Set the end PA to a value high enough to start showing perimeter separation for the lowest flow (print speed) and acceleration test.** For example, for a Voron 350 using Revo HF, the maximum value was set to 0.05 as that was sufficient to show perimeter separation even at the slowest flow rates and accelerations.
+
+**If the test is too big to fit on the build plate, increase your starting PA value or the PA step value accordingly until the test can fit.** If the lowest value becomes too high and there is no ideal PA present in the test, focus on increasing the PA step value to reduce the number of herringbones printed (hence the size of the print).
+
+
+
+Once setup, your PA test should look like the below:
+
+
+
+
+Now input your identified print speeds and accelerations in the fields above and run the PA tests.
+
+**IMPORTANT:** Make sure your acceleration values are all the same in all text boxes. Same for the print speed values and Jerk (XY) values. Make sure your Jerk value is set to the external perimeter jerk used in your print profiles.
+Now run the tests and note the optimal PA value, the flow, and the acceleration. You should produce a table like this:
+
+
+
+Concatenate the PA value, the flow value, and the acceleration value into the final comma-separated sets to create the values entered in the model as shown above.
+
+**Youâre now done! The PA profile is created and calibrated!**
+
+Remember to paste the values in the adaptive pressure advance measurements text box as shown below, and save your filament profile.
+
+
+
+
+### Tips
+
+#### Model input:
+
+The adaptive PA model built into the slicer is flexible enough to allow for as many or as few increments of flow and acceleration as you want. Ideally, you want at a minimum 3x data points for acceleration and flow in order to create a meaningful model.
+
+However, if you donât want to calibrate for flow, just run the acceleration tests and leave flow the same for each test (in which case youâll input only 3 rows in the model text box). In this case, flow will be ignored when the model is used.
+
+Similarly for acceleration â in the above example youâll input only 4 rows in the model text box, in which case acceleration will be ignored when the model is used.
+
+**However, make sure a triplet of values is always provided â PA value, Flow, Acceleration.**
+
+#### Identifying the right PA:
+
+Higher acceleration and higher flow rate PA tests are easier to identify the optimal PA as the range of âgoodâ values is much narrower. Itâs evident where the PA is too large, as gaps start to appear in the corner and where PA is too low, as the corner starts bulging.
+
+However, the lower the flow rate and accelerations are, the range of good values is much wider. Having examined the PA tests even under a microscope, what is evident, is that if you canât distinguish a value as being evidently better than another (i.e. sharper corner with no gaps) with the naked eye, then both values are correct. In which case, if you canât find any meaningful difference, simply use the optimal values from the higher flow rates.
+
+- **Too high PA**
+
+
+
+- **Too low PA**
+
+
+
+- **Optimal PA**
+
+
diff --git a/doc/developer-reference/Home.md b/doc/developer-reference/Home.md
index bdbb65e07a..ab08f2cbfe 100644
--- a/doc/developer-reference/Home.md
+++ b/doc/developer-reference/Home.md
@@ -2,5 +2,5 @@
This is a documentation from someone exploring the code and is by no means complete or even completely accurate. Please edit the parts you might find inaccurate. This is probably going to be helpful nonetheless.
-- [Preset, PresetBundle and PresetCollection](./Preset-and-bundle)
-- [Plater, Sidebar, Tab, ComboBox](./plater-sidebar-tab-combobox)
+- [Preset, PresetBundle and PresetCollection](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/developer-reference/Preset-and-bundle.md)
+- [Plater, Sidebar, Tab, ComboBox](https://github.com/SoftFever/OrcaSlicer/blob/main/doc/developer-reference/plater-sidebar-tab-combobox.md)
diff --git a/localization/i18n/OrcaSlicer.pot b/localization/i18n/OrcaSlicer.pot
index 4fea2ad475..d5d2f245a9 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-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -78,6 +78,9 @@ msgstr ""
msgid "On overhangs only"
msgstr ""
+msgid "Auto support threshold angle: "
+msgstr ""
+
msgid "Circle"
msgstr ""
@@ -97,9 +100,6 @@ msgstr ""
msgid "Highlight faces according to overhang angle."
msgstr ""
-msgid "Auto support threshold angle: "
-msgstr ""
-
msgid "No auto support"
msgstr ""
@@ -1914,6 +1914,9 @@ msgstr ""
msgid "Center"
msgstr ""
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr ""
@@ -3857,6 +3860,15 @@ msgstr ""
msgid "Total cost"
msgstr ""
+msgid "up to"
+msgstr ""
+
+msgid "above"
+msgstr ""
+
+msgid "from"
+msgstr ""
+
msgid "Color Scheme"
msgstr ""
@@ -3920,10 +3932,10 @@ msgstr ""
msgid "Cost"
msgstr ""
-msgid "Print"
+msgid "Color change"
msgstr ""
-msgid "Color change"
+msgid "Print"
msgstr ""
msgid "Printer"
@@ -4109,7 +4121,7 @@ msgstr ""
msgid "Size:"
msgstr ""
-#, possible-c-format, possible-boost-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)."
@@ -4540,6 +4552,18 @@ msgstr ""
msgid "Flow rate test - Pass 2"
msgstr ""
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr ""
@@ -5721,18 +5745,13 @@ msgid "The file does not contain any geometry data."
msgstr ""
msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
+"Your object appears to be too large, Do you want to scale it down to fit the "
+"heat bed automatically?"
msgstr ""
msgid "Object too large"
msgstr ""
-msgid ""
-"Your object appears to be too large, Do you want to scale it down to fit the "
-"heat bed automatically?"
-msgstr ""
-
msgid "Export STL file:"
msgstr ""
@@ -6074,6 +6093,9 @@ msgstr ""
msgid "Language selection"
msgstr ""
+msgid "Switching application language while some presets are modified."
+msgstr ""
+
msgid "Changing application language"
msgstr ""
@@ -7065,8 +7087,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add Primitive"
-"\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add "
+"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
msgid "Line width"
@@ -7849,7 +7871,10 @@ msgstr ""
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr ""
-msgid "Shift+G"
+msgid "â+Shift+G"
+msgstr ""
+
+msgid "Ctrl+Shift+G"
msgstr ""
msgid "Paste from clipboard"
@@ -7897,18 +7922,33 @@ msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr ""
-msgid "Any arrow"
+msgid "â+Any arrow"
msgstr ""
msgid "Movement in camera space"
msgstr ""
+msgid "â„+Left mouse button"
+msgstr ""
+
msgid "Select a part"
msgstr ""
+msgid "â+Left mouse button"
+msgstr ""
+
msgid "Select multiple objects"
msgstr ""
+msgid "Ctrl+Any arrow"
+msgstr ""
+
+msgid "Alt+Left mouse button"
+msgstr ""
+
+msgid "Ctrl+Left mouse button"
+msgstr ""
+
msgid "Shift+Left mouse button"
msgstr ""
@@ -8011,12 +8051,24 @@ msgstr ""
msgid "Move: press to snap by 1mm"
msgstr ""
+msgid "â+Mouse wheel"
+msgstr ""
+
msgid "Support/Color Painting: adjust pen radius"
msgstr ""
+msgid "â„+Mouse wheel"
+msgstr ""
+
msgid "Support/Color Painting: adjust section position"
msgstr ""
+msgid "Ctrl+Mouse wheel"
+msgstr ""
+
+msgid "Alt+Mouse wheel"
+msgstr ""
+
msgid "Gizmo"
msgstr ""
@@ -8923,14 +8975,31 @@ msgid "Apply gap fill"
msgstr ""
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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
-"only\n"
-"3. Nowhere: Disables gap fill\n"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
+"\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
msgstr ""
msgid "Everywhere"
@@ -8990,7 +9059,10 @@ msgstr ""
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
msgid "Internal bridge flow ratio"
@@ -8999,7 +9071,11 @@ msgstr ""
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
msgid "Top surface flow ratio"
@@ -9007,13 +9083,20 @@ msgstr ""
msgid ""
"This factor affects the amount of material for top solid infill. You can "
-"decrease it slightly to have smooth surface finish"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
msgid "Bottom surface flow ratio"
msgstr ""
-msgid "This factor affects the amount of material for bottom solid infill"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
msgid "Precise wall"
@@ -9143,9 +9226,25 @@ msgstr ""
msgid "Slow down for curled perimeters"
msgstr ""
+#, possible-c-format, possible-boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
msgstr ""
msgid "mm/s or %"
@@ -9154,7 +9253,13 @@ msgstr ""
msgid "External"
msgstr ""
-msgid "Speed of bridge and completely overhang wall"
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
msgstr ""
msgid "mm/s"
@@ -9164,8 +9269,8 @@ msgid "Internal"
msgstr ""
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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
msgid "Brim width"
@@ -9651,6 +9756,17 @@ msgid ""
"has slight overflow or underflow"
msgstr ""
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr ""
@@ -9812,13 +9928,28 @@ msgstr ""
msgid "Filament load time"
msgstr ""
-msgid "Time to load new filament when switch filament. For statistics only"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
msgstr ""
msgid "Filament unload time"
msgstr ""
-msgid "Time to unload old filament when switch filament. For statistics only"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
msgstr ""
msgid ""
@@ -9933,12 +10064,6 @@ msgstr ""
msgid "Cooling moves are gradually accelerating towards this speed."
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 ""
-
msgid "Ramming parameters"
msgstr ""
@@ -9947,12 +10072,6 @@ msgid ""
"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 ""
-
msgid "Enable ramming for multitool setups"
msgstr ""
@@ -10259,10 +10378,10 @@ msgstr ""
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
-"\". \"full_fan_speed_layer\" will be ignored if lower than "
-"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
-"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer "
+"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
+"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
+"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
msgid "layer"
@@ -10320,7 +10439,10 @@ msgstr ""
msgid "Layers and Perimeters"
msgstr ""
-msgid "Filter out gaps smaller than the threshold specified"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
msgstr ""
msgid ""
@@ -12048,22 +12170,39 @@ msgid "Activate temperature control"
msgstr ""
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)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
msgid "Chamber temperature"
msgstr ""
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
msgstr ""
msgid "Nozzle temperature for layers after the initial one"
@@ -13709,8 +13848,8 @@ msgid ""
msgstr ""
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you selected"
-"\". \n"
+"We would rename the presets as \"Vendor Type Serial @printer you "
+"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
@@ -14461,151 +14600,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 da702fafcf..ee7dd16611 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-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: 2024-07-07 18:43+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -79,6 +79,9 @@ msgstr "Angle de farciment intel·ligent"
msgid "On overhangs only"
msgstr "Només als voladissos"
+msgid "Auto support threshold angle: "
+msgstr "Angle llindar de suport automĂ tic: "
+
msgid "Circle"
msgstr "Cercle"
@@ -98,9 +101,6 @@ msgstr "Permet pintar només les facetes seleccionades per: \"%1%\""
msgid "Highlight faces according to overhang angle."
msgstr "Ressalteu les cares segons l'angle del voladĂs."
-msgid "Auto support threshold angle: "
-msgstr "Angle llindar de suport automĂ tic: "
-
msgid "No auto support"
msgstr "No suports automĂ tics"
@@ -1995,6 +1995,9 @@ msgstr "Simplificar el model"
msgid "Center"
msgstr "Centre"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "Editar la configuraciĂł de Processat"
@@ -4170,6 +4173,15 @@ msgstr "Temps total"
msgid "Total cost"
msgstr "Cost total"
+msgid "up to"
+msgstr "fins a"
+
+msgid "above"
+msgstr "sobre"
+
+msgid "from"
+msgstr "des de"
+
msgid "Color Scheme"
msgstr "Esquema de color"
@@ -4233,12 +4245,12 @@ msgstr "Canvis de filament"
msgid "Cost"
msgstr "Cost"
-msgid "Print"
-msgstr "Imprimir"
-
msgid "Color change"
msgstr "Canvi de color"
+msgid "Print"
+msgstr "Imprimir"
+
msgid "Printer"
msgstr "Impressora"
@@ -4422,7 +4434,7 @@ msgstr "Volum:"
msgid "Size:"
msgstr "Mida:"
-#, 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)."
@@ -4864,6 +4876,18 @@ msgstr "Pas 2"
msgid "Flow rate test - Pass 2"
msgstr "Test de Flux - Pas 2"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "Ratio de Flux"
@@ -6171,14 +6195,6 @@ msgstr "S'ha detectat un objecte amb mĂșltiples peces"
msgid "The file does not contain any geometry data."
msgstr "El fitxer no conté cap dada de geometria."
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-
-msgid "Object too large"
-msgstr "Objecte massa gran"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
@@ -6186,6 +6202,9 @@ msgstr ""
"El teu objecte sembla ser massa gran, Vols reduir-lo per adaptar-lo "
"automĂ ticament al llit?"
+msgid "Object too large"
+msgstr "Objecte massa gran"
+
msgid "Export STL file:"
msgstr "Exportar el fitxer STL:"
@@ -6564,6 +6583,9 @@ msgstr "Voleu continuar?"
msgid "Language selection"
msgstr "SelecciĂł d'idiomes"
+msgid "Switching application language while some presets are modified."
+msgstr "Canviant l'idioma de l'aplicaciĂł mentre es modifiquen alguns perfils."
+
msgid "Changing application language"
msgstr "Canviant de l'idioma de l'aplicaciĂł"
@@ -7705,8 +7727,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"
@@ -8585,8 +8607,11 @@ msgstr "Llista d'objectes"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importar dades de geometria des de fitxers STL/STEP/3MF/OBJ/AMF"
-msgid "Shift+G"
-msgstr ""
+msgid "â+Shift+G"
+msgstr "â+Maj+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Ctrl+Maj+G"
msgid "Paste from clipboard"
msgstr "Enganxa des del porta-retalls"
@@ -8637,18 +8662,33 @@ msgstr "Maj+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "Replegar/Expandir barra lateral"
-msgid "Any arrow"
-msgstr ""
+msgid "â+Any arrow"
+msgstr "â+Qualsevol fletxa"
msgid "Movement in camera space"
msgstr "Moviment a l'espai de la cĂ mera"
+msgid "â„+Left mouse button"
+msgstr "â„+BotĂł esquerre del ratolĂ"
+
msgid "Select a part"
msgstr "Seleccionar una peça"
+msgid "â+Left mouse button"
+msgstr "â+BotĂł esquerre del ratolĂ"
+
msgid "Select multiple objects"
msgstr "Seleccionar mĂșltiples objectes"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl+Qualsevol fletxa"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt+BotĂł esquerre del ratolĂ"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl+BotĂł esquerre del ratolĂ"
+
msgid "Shift+Left mouse button"
msgstr "Maj+BotĂł esquerre del ratolĂ"
@@ -8751,12 +8791,24 @@ msgstr "Plataforma"
msgid "Move: press to snap by 1mm"
msgstr "Moure: Clicka per ajustar en passos d'1 mm"
+msgid "â+Mouse wheel"
+msgstr "â+Roda del ratolĂ"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "Suport/Pintat de color: configuraciĂł del radi de la ploma"
+msgid "â„+Mouse wheel"
+msgstr "â„+Roda del ratolĂ"
+
msgid "Support/Color Painting: adjust section position"
msgstr "Suport/Pintat de color: configuraciĂł de la posiciĂł de la secciĂł"
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl+Roda del ratolĂ"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+Roda del ratolĂ"
+
msgid "Gizmo"
msgstr "Gizmo"
@@ -9838,25 +9890,32 @@ msgid "Apply gap fill"
msgstr "Aplicar farciment de buits"
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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
-"only\n"
-"3. Nowhere: Disables gap fill\n"
-msgstr ""
-"Habilita farciment de buits per a les superfĂcies seleccionades. El mĂnim "
-"del forat que s'omplirĂ es pot controlar des de l'opciĂł filtrar forats "
-"petits a continuaciĂł.\n"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
"\n"
-"Opcions:\n"
-"1. A tot arreu: aplica farciment de buits a superfĂcies sĂČlides superiors, "
-"inferiors i internes\n"
-"2. SuperfĂcies superiors i inferiors: aplica farciment de buit nomĂ©s a "
-"superfĂcies superiors i inferiors\n"
-"3. Enlloc: desactiva el farciment de buits\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
+msgstr ""
msgid "Everywhere"
msgstr "A tot arreu"
@@ -9931,10 +9990,11 @@ msgstr "Ratio de flux del pont"
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"DisminuĂŻu lleugerament aquest valor ( per exemple 0,9 ) per reduir la "
-"quantitat de material per al pont, per millorar l'enfonsament"
msgid "Internal bridge flow ratio"
msgstr "Ratio de flux del pont intern"
@@ -9942,30 +10002,33 @@ msgstr "Ratio de flux del pont intern"
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
-"Aquest valor regeix el gruix de la capa de pont intern. Aquesta és la "
-"primera capa sobre el farciment poc dens. DisminuĂŻu lleugerament aquest "
-"valor ( per exemple 0,9 ) per millorar la qualitat de la superfĂcie sobre el "
-"farciment poc dens."
msgid "Top surface flow ratio"
msgstr "Ratio de flux superficial superior"
msgid ""
"This factor affects the amount of material for top solid infill. You can "
-"decrease it slightly to have smooth surface finish"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Aquest factor afecta la quantitat de material per al farciment sĂČlid "
-"superior. Podeu disminuir-lo lleugerament per tenir un acabat superficial "
-"suau"
msgid "Bottom surface flow ratio"
msgstr "Ratio de flux superficial inferior"
-msgid "This factor affects the amount of material for bottom solid infill"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Aquest factor afecta la quantitat de material per al farciment sĂČlid inferior"
msgid "Precise wall"
msgstr "PerĂmetre precĂs"
@@ -10142,12 +10205,26 @@ msgstr ""
msgid "Slow down for curled perimeters"
msgstr "Alentir la velocitat per a perĂmetres corbats"
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
msgstr ""
-"Activeu aquesta opciĂł per alentir la impressiĂł en zones on potencialment "
-"poden existir perĂmetres corbats"
msgid "mm/s or %"
msgstr "mm/s o %"
@@ -10155,8 +10232,14 @@ msgstr "mm/s o %"
msgid "External"
msgstr "Extern"
-msgid "Speed of bridge and completely overhang wall"
-msgstr "Velocitat per a ponts i perĂmetres completament en voladĂs"
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "mm/s"
@@ -10165,11 +10248,9 @@ msgid "Internal"
msgstr "Intern"
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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
-"Velocitat del pont intern. Si el valor s'expressa en percentatge, es "
-"calcularà a partir de la bridge_speed. El valor predeterminat és del 150%."
msgid "Brim width"
msgstr "Ample de la Vora d'AdherĂšncia"
@@ -10828,6 +10909,17 @@ msgstr ""
"entre 0,95 i 1,05. Potser podeu ajustar aquest valor per obtenir una "
"superfĂcie ben plana quan hi ha un lleuger excĂ©s o dĂšficit de flux"
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "Activar l'Avanç de Pressió Lineal"
@@ -11016,18 +11108,29 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "Temps de cĂ rrega del filament"
-msgid "Time to load new filament when switch filament. For statistics only"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
msgstr ""
-"Temps per carregar nou filament quan canvia de filament. Només per a "
-"estadĂstiques"
msgid "Filament unload time"
msgstr "Temps de descĂ rrega del filament"
-msgid "Time to unload old filament when switch filament. For statistics only"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
msgstr ""
-"Temps per descarregar filament vell en canviar de filament. Només per a "
-"estadĂstiques"
msgid ""
"Filament diameter is used to calculate extrusion in gcode, so it's important "
@@ -11175,16 +11278,6 @@ msgid "Cooling moves are gradually accelerating towards this speed."
msgstr ""
"Els moviments de refredament s'acceleren gradualment cap a aquesta velocitat."
-msgid ""
-"Time for the printer firmware (or the Multi Material Unit 2.0) to load a new "
-"filament during a tool change (when executing the T code). This time is "
-"added to the total print time by the G-code time estimator."
-msgstr ""
-"Temps perquĂš el firmware de la impressora ( o la Unitat Multi Material 2.0 ) "
-"carregui un filament durant un canvi d'eina ( en executar el Codi-T ). "
-"Aquest temps s'afegeix al temps d'impressió total mitjançant l'estimador de "
-"temps del Codi-G."
-
msgid "Ramming parameters"
msgstr "ParĂ metres de Moldejat de Punta( Ramming )"
@@ -11195,16 +11288,6 @@ msgstr ""
"RammingDialog processa aquesta cadena i contĂ© parĂ metres especĂfics de "
"Moldejat de Punta( 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 ""
-"Temps perquĂš el firmware de la impressora ( o la Unitat Multi Material 2.0 ) "
-"descarregui un filament durant un canvi d'eina ( en executar el Codi-T ). "
-"Aquest temps s'afegeix al temps d'impressió total mitjançant l'estimador de "
-"temps del Codi-G."
-
msgid "Enable ramming for multitool setups"
msgstr ""
"Habilita el Moldejat de Punta( Ramming ) per a configuracions multieina"
@@ -11574,15 +11657,15 @@ msgstr "Velocitat mĂ xima del ventilador a la capa"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
-"\". \"full_fan_speed_layer\" will be ignored if lower than "
-"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
-"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer "
+"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
+"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
+"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"La velocitat del ventilador augmentarĂ linealment de zero a la capa "
-"\"close_fan_the_first_x_layers\" al mĂ xim a la capa \"full_fan_speed_layer"
-"\". S'ignorarà \"full_fan_speed_layer\" si és inferior a "
-"\"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarĂ a "
+"\"close_fan_the_first_x_layers\" al mĂ xim a la capa "
+"\"full_fan_speed_layer\". S'ignorarà \"full_fan_speed_layer\" si és inferior "
+"a \"close_fan_the_first_x_layers\", en aquest cas el ventilador funcionarĂ a "
"la velocitat mĂ xima permesa a la capa \"close_fan_the_first_x_layers\" + 1."
msgid "layer"
@@ -11652,8 +11735,11 @@ msgstr "Filtrar els buits minĂșsculs"
msgid "Layers and Perimeters"
msgstr "Capes i PerĂmetres"
-msgid "Filter out gaps smaller than the threshold specified"
-msgstr "Filtrar els buits més petits que el llindar especificat"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
+msgstr ""
msgid ""
"Speed of gap infill. Gap usually has irregular line width and should be "
@@ -13836,33 +13922,40 @@ msgid "Activate temperature control"
msgstr "Activar el control de temperatura"
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)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
-"Activeu aquesta opciĂł per al control de temperatura de la cambra. S'afegirĂ "
-"una comanda M191 abans de \"machine_start_gcode\"\n"
-"Comandes de Codi-G: M141 / M191 S ( 0-255 )"
msgid "Chamber temperature"
msgstr "Temperatura de la cambra"
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
msgstr ""
-"Una temperatura de cambra més alta pot ajudar a suprimir o reduir la "
-"deformaciĂł( warping ) i potencialment conduir a una major resistĂšncia d'uniĂł "
-"entre capes per a materials d'alta temperatura com ABS, ASA, PC, PA, etc. Al "
-"mateix temps, la filtraciĂł d'aire d'ABS i ASA empitjorarĂ . Mentre que per a "
-"PLA, PETG, TPU, PVA i altres materials de baixa temperatura, la temperatura "
-"real de la cambra no hauria de ser alta per evitar obstruccions, pel que 0, "
-"que significa apagar, és molt recomanable"
msgid "Nozzle temperature for layers after the initial one"
msgstr "Temperatura del broquet per les capes després de l'inicial"
@@ -15866,8 +15959,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 "
@@ -17211,54 +17304,135 @@ msgstr ""
"augmentar adequadament la temperatura del llit pot reduir la probabilitat de "
"deformaciĂł."
-#~ msgid "up to"
-#~ msgstr "fins a"
-
-#~ msgid "above"
-#~ msgstr "sobre"
-
-#~ msgid "from"
-#~ msgstr "des de"
-
-#~ msgid "Switching application language while some presets are modified."
+#~ 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"
+#~ "3. Nowhere: Disables gap fill\n"
#~ msgstr ""
-#~ "Canviant l'idioma de l'aplicaciĂł mentre es modifiquen alguns perfils."
+#~ "Habilita farciment de buits per a les superfĂcies seleccionades. El mĂnim "
+#~ "del forat que s'omplirĂ es pot controlar des de l'opciĂł filtrar forats "
+#~ "petits a continuaciĂł.\n"
+#~ "\n"
+#~ "Opcions:\n"
+#~ "1. A tot arreu: aplica farciment de buits a superfĂcies sĂČlides "
+#~ "superiors, inferiors i internes\n"
+#~ "2. SuperfĂcies superiors i inferiors: aplica farciment de buit nomĂ©s a "
+#~ "superfĂcies superiors i inferiors\n"
+#~ "3. Enlloc: desactiva el farciment de buits\n"
-#~ msgid "â+Shift+G"
-#~ msgstr "â+Maj+G"
+#~ msgid ""
+#~ "Decrease this value slightly(for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag"
+#~ msgstr ""
+#~ "DisminuĂŻu lleugerament aquest valor ( per exemple 0,9 ) per reduir la "
+#~ "quantitat de material per al pont, per millorar l'enfonsament"
-#~ msgid "Ctrl+Shift+G"
-#~ msgstr "Ctrl+Maj+G"
+#~ 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 ""
+#~ "Aquest valor regeix el gruix de la capa de pont intern. Aquesta és la "
+#~ "primera capa sobre el farciment poc dens. DisminuĂŻu lleugerament aquest "
+#~ "valor ( per exemple 0,9 ) per millorar la qualitat de la superfĂcie sobre "
+#~ "el farciment poc dens."
-#~ msgid "â+Any arrow"
-#~ msgstr "â+Qualsevol fletxa"
+#~ msgid ""
+#~ "This factor affects the amount of material for top solid infill. You can "
+#~ "decrease it slightly to have smooth surface finish"
+#~ msgstr ""
+#~ "Aquest factor afecta la quantitat de material per al farciment sĂČlid "
+#~ "superior. Podeu disminuir-lo lleugerament per tenir un acabat superficial "
+#~ "suau"
-#~ msgid "â„+Left mouse button"
-#~ msgstr "â„+BotĂł esquerre del ratolĂ"
+#~ msgid "This factor affects the amount of material for bottom solid infill"
+#~ msgstr ""
+#~ "Aquest factor afecta la quantitat de material per al farciment sĂČlid "
+#~ "inferior"
-#~ msgid "â+Left mouse button"
-#~ msgstr "â+BotĂł esquerre del ratolĂ"
+#~ msgid ""
+#~ "Enable this option to slow printing down in areas where potential curled "
+#~ "perimeters may exist"
+#~ msgstr ""
+#~ "Activeu aquesta opciĂł per alentir la impressiĂł en zones on potencialment "
+#~ "poden existir perĂmetres corbats"
-#~ msgid "Ctrl+Any arrow"
-#~ msgstr "Ctrl+Qualsevol fletxa"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "Velocitat per a ponts i perĂmetres completament en voladĂs"
-#~ msgid "Alt+Left mouse button"
-#~ msgstr "Alt+BotĂł esquerre del ratolĂ"
+#~ 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 ""
+#~ "Velocitat del pont intern. Si el valor s'expressa en percentatge, es "
+#~ "calcularà a partir de la bridge_speed. El valor predeterminat és del 150%."
-#~ msgid "Ctrl+Left mouse button"
-#~ msgstr "Ctrl+BotĂł esquerre del ratolĂ"
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Temps per carregar nou filament quan canvia de filament. Només per a "
+#~ "estadĂstiques"
-#~ msgid "â+Mouse wheel"
-#~ msgstr "â+Roda del ratolĂ"
+#~ msgid ""
+#~ "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Temps per descarregar filament vell en canviar de filament. Només per a "
+#~ "estadĂstiques"
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„+Roda del ratolĂ"
+#~ msgid ""
+#~ "Time for the printer firmware (or the Multi Material Unit 2.0) to load a "
+#~ "new filament during a tool change (when executing the T code). This time "
+#~ "is added to the total print time by the G-code time estimator."
+#~ msgstr ""
+#~ "Temps perquĂš el firmware de la impressora ( o la Unitat Multi Material "
+#~ "2.0 ) carregui un filament durant un canvi d'eina ( en executar el Codi-"
+#~ "T ). Aquest temps s'afegeix al temps d'impressió total mitjançant "
+#~ "l'estimador de temps del Codi-G."
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "Ctrl+Roda del ratolĂ"
+#~ msgid ""
+#~ "Time for the printer firmware (or the Multi Material Unit 2.0) to unload "
+#~ "a filament during a tool change (when executing the T code). This time is "
+#~ "added to the total print time by the G-code time estimator."
+#~ msgstr ""
+#~ "Temps perquĂš el firmware de la impressora ( o la Unitat Multi Material "
+#~ "2.0 ) descarregui un filament durant un canvi d'eina ( en executar el "
+#~ "Codi-T ). Aquest temps s'afegeix al temps d'impressió total mitjançant "
+#~ "l'estimador de temps del Codi-G."
-#~ msgid "Alt+Mouse wheel"
-#~ msgstr "Alt+Roda del ratolĂ"
+#~ msgid "Filter out gaps smaller than the threshold specified"
+#~ msgstr "Filtrar els buits més petits que el llindar especificat"
+
+#~ 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 ""
+#~ "Activeu aquesta opciĂł per al control de temperatura de la cambra. "
+#~ "S'afegirĂ una comanda M191 abans de \"machine_start_gcode\"\n"
+#~ "Comandes de Codi-G: M141 / M191 S ( 0-255 )"
+
+#~ 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 ""
+#~ "Una temperatura de cambra més alta pot ajudar a suprimir o reduir la "
+#~ "deformaciĂł( warping ) i potencialment conduir a una major resistĂšncia "
+#~ "d'uniĂł entre capes per a materials d'alta temperatura com ABS, ASA, PC, "
+#~ "PA, etc. Al mateix temps, la filtraciĂł d'aire d'ABS i ASA empitjorarĂ . "
+#~ "Mentre que per a PLA, PETG, TPU, PVA i altres materials de baixa "
+#~ "temperatura, la temperatura real de la cambra no hauria de ser alta per "
+#~ "evitar obstruccions, pel que 0, que significa apagar, és molt recomanable"
#~ msgid ""
#~ "Different nozzle diameters and different filament diameters is not "
diff --git a/localization/i18n/cs/OrcaSlicer_cs.po b/localization/i18n/cs/OrcaSlicer_cs.po
index 5c5c4aba53..fd186378a9 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-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: 2023-09-30 15:15+0200\n"
"Last-Translator: René Moƥner \n"
"Language-Team: \n"
@@ -78,6 +78,9 @@ msgstr "Ăhel chytrĂ©ho vybarvenĂ"
msgid "On overhangs only"
msgstr "Pouze na pĆevisech"
+msgid "Auto support threshold angle: "
+msgstr "Auto podpÄry hraniÄnĂ Ășhlel: "
+
msgid "Circle"
msgstr "Kruh"
@@ -97,9 +100,6 @@ msgstr "UmoĆŸĆuje malovat pouze na fasety vybranĂ© pomocĂ: \"%1%\""
msgid "Highlight faces according to overhang angle."
msgstr "ZvĂœraznÄte plochy podle Ășhlu pĆevisĆŻ."
-msgid "Auto support threshold angle: "
-msgstr "Auto podpÄry hraniÄnĂ Ășhlel: "
-
msgid "No auto support"
msgstr "ĆœĂĄdnĂ© automatickĂ© podpÄry"
@@ -1965,6 +1965,9 @@ msgstr "ZjednoduĆĄit model"
msgid "Center"
msgstr "StĆed"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "Upravit nastavenĂ procesu"
@@ -4085,6 +4088,15 @@ msgstr "CelkovĂœ Äas"
msgid "Total cost"
msgstr "CelkovĂĄ cena"
+msgid "up to"
+msgstr "aĆŸ do"
+
+msgid "above"
+msgstr "nad"
+
+msgid "from"
+msgstr "z"
+
msgid "Color Scheme"
msgstr "Barevné schéma"
@@ -4148,12 +4160,12 @@ msgstr "Doby vĂœmÄny Filamentu"
msgid "Cost"
msgstr "NĂĄklady"
-msgid "Print"
-msgstr "Tisk"
-
msgid "Color change"
msgstr "ZmÄna barvy"
+msgid "Print"
+msgstr "Tisk"
+
msgid "Printer"
msgstr "TiskĂĄrna"
@@ -4337,7 +4349,7 @@ msgstr "Objem:"
msgid "Size:"
msgstr "Velikost:"
-#, 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)."
@@ -4778,6 +4790,18 @@ msgstr "Postup 2"
msgid "Flow rate test - Pass 2"
msgstr "Test prĆŻtoku - Postup 2"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "PrĆŻtok"
@@ -6039,14 +6063,6 @@ msgstr "Byl detekovĂĄn objekt s vĂce ÄĂĄstmi"
msgid "The file does not contain any geometry data."
msgstr "Soubor neobsahuje ĆŸĂĄdnĂĄ geometrickĂĄ data."
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-
-msgid "Object too large"
-msgstr "Objekt je pĆĂliĆĄ velkĂœ"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
@@ -6054,6 +6070,9 @@ msgstr ""
"VĂĄĆĄ objekt se zdĂĄ bĂœt pĆĂliĆĄ velkĂœ, chcete jej zmenĆĄit, aby se veĆĄel na "
"vyhĆĂvanou podloĆŸku automaticky?"
+msgid "Object too large"
+msgstr "Objekt je pĆĂliĆĄ velkĂœ"
+
msgid "Export STL file:"
msgstr "Exportovat STL soubor:"
@@ -6421,6 +6440,9 @@ msgstr "Chcete pokraÄovat?"
msgid "Language selection"
msgstr "VĂœbÄr jazyka"
+msgid "Switching application language while some presets are modified."
+msgstr "PĆepĂnĂĄnĂ jazyka aplikace pĆi zmÄnÄ nÄkterĂœch pĆedvoleb."
+
msgid "Changing application language"
msgstr "ZmÄna jazyka aplikace"
@@ -7487,8 +7509,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add Primitive"
-"\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add "
+"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"PĆi nahrĂĄvĂĄnĂ ÄasosbÄru bez nĂĄstrojovĂ© hlavy se doporuÄuje pĆidat "
"\"Timelapse Wipe Tower\" \n"
@@ -8334,8 +8356,11 @@ msgstr "Seznam objektĆŻ"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Import geometrickĂœch dat ze souborĆŻ STL/STEP/3MF/OBJ/AMF"
-msgid "Shift+G"
-msgstr ""
+msgid "â+Shift+G"
+msgstr "â+Shift+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Ctrl+Shift+G"
msgid "Paste from clipboard"
msgstr "VloĆŸit ze schrĂĄnky"
@@ -8385,18 +8410,33 @@ msgstr "Shift+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "Sbalit/Rozbalit postrannĂ panel"
-msgid "Any arrow"
-msgstr ""
+msgid "â+Any arrow"
+msgstr "â+libovolnĂĄ ĆĄipka"
msgid "Movement in camera space"
msgstr "Posun vĂœbÄru v ortogonĂĄlnĂm prostoru kamery"
+msgid "â„+Left mouse button"
+msgstr "â„+levĂ© tlaÄĂtko myĆĄi"
+
msgid "Select a part"
msgstr "Vyberte ÄĂĄst"
+msgid "â+Left mouse button"
+msgstr "â+levĂ© tlaÄĂtko myĆĄi"
+
msgid "Select multiple objects"
msgstr "Vyberte vĂce objektĆŻ"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl+libovolnĂĄ ĆĄipka"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt+levĂ© tlaÄĂtko myĆĄi"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl+levĂ© tlaÄĂtko myĆĄi"
+
msgid "Shift+Left mouse button"
msgstr "Shift+levĂ© tlaÄĂtko myĆĄi"
@@ -8499,12 +8539,24 @@ msgstr "PodloĆŸka"
msgid "Move: press to snap by 1mm"
msgstr "Posunout: stisknutĂm pĆitĂĄhnete o 1 mm"
+msgid "â+Mouse wheel"
+msgstr "â+koleÄko myĆĄi"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "PodpÄry/Barva: upravit polomÄr pera"
+msgid "â„+Mouse wheel"
+msgstr "â„+koleÄko myĆĄi"
+
msgid "Support/Color Painting: adjust section position"
msgstr "PodpÄry/Barva: upravit polohu sekce"
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl+koleÄko myĆĄi"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+koleÄko myĆĄi"
+
msgid "Gizmo"
msgstr "Gizmo"
@@ -9525,14 +9577,31 @@ msgid "Apply gap fill"
msgstr ""
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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
-"only\n"
-"3. Nowhere: Disables gap fill\n"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
+"\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
msgstr ""
msgid "Everywhere"
@@ -9605,10 +9674,11 @@ msgstr "PrĆŻtok mostu"
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"SniĆŸte tuto hodnotu mĂrnÄ (napĆĂklad 0,9), abyste snĂĆŸili mnoĆŸstvĂ materiĂĄlu "
-"pro most a zlepĆĄili provÄĆĄenĂ"
msgid "Internal bridge flow ratio"
msgstr ""
@@ -9616,7 +9686,11 @@ msgstr ""
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
msgid "Top surface flow ratio"
@@ -9624,16 +9698,21 @@ msgstr "PomÄr prĆŻtoku hornĂ vrstvy"
msgid ""
"This factor affects the amount of material for top solid infill. You can "
-"decrease it slightly to have smooth surface finish"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Tento faktor ovlivĆuje mnoĆŸstvĂ materiĂĄlu pro vrchnĂ plnou vĂœplĆ. MĆŻĆŸete jej "
-"mĂrnÄ snĂĆŸit, abyste mÄli hladkĂœ povrch"
msgid "Bottom surface flow ratio"
msgstr "PomÄr prĆŻtoku spodnĂ vrstvy"
-msgid "This factor affects the amount of material for bottom solid infill"
-msgstr "Tento faktor ovlivĆuje mnoĆŸstvĂ materiĂĄlu pro spodnĂ plnou vĂœplĆ"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
msgid "Precise wall"
msgstr "PĆesnĂĄ stÄna"
@@ -9779,12 +9858,26 @@ msgstr "Povolte tuto volbu pro zpomalenĂ tisku pro rĆŻznĂ© stupnÄ pĆevisĆŻ"
msgid "Slow down for curled perimeters"
msgstr "Zpomalenà pro zakroucené obvody"
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
msgstr ""
-"Povolte tuto moĆŸnost pro zpomalenĂ tisku na mĂstech, kde mohou existovat "
-"potenciålnà zakroucené obvody"
msgid "mm/s or %"
msgstr "mm/s or %"
@@ -9792,8 +9885,14 @@ msgstr "mm/s or %"
msgid "External"
msgstr "VnÄjĆĄĂ"
-msgid "Speed of bridge and completely overhang wall"
-msgstr "Rychlost mostu a zcela pĆevislĂ© stÄny"
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "mm/s"
@@ -9802,11 +9901,9 @@ msgid "Internal"
msgstr "VnitĆnĂ"
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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
-"Rychlost vnitĆnĂho mostu. Pokud je hodnota vyjĂĄdĆena jako procento, bude "
-"vypoÄĂtĂĄna na zĂĄkladÄ most_speed. VĂœchozĂ hodnota je 150 %."
msgid "Brim width"
msgstr "Ć ĂĆka lĂmce"
@@ -10341,6 +10438,17 @@ msgstr ""
"mĆŻĆŸete tuto hodnotu vyladit, abyste zĂskali pÄknÄ rovnĂœ povrch, kdyĆŸ dochĂĄzĂ "
"k mĂrnĂ©mu pĆeteÄenĂ nebo podteÄenĂ"
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "Povolit pĆedstih tlaku"
@@ -10517,16 +10625,29 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "Doba zavĂĄdÄnĂ filamentu"
-msgid "Time to load new filament when switch filament. For statistics only"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
msgstr ""
-"Äas na zavedenĂ novĂ©ho filamentu pĆi vĂœmÄnÄ filamentu. Pouze pro statistiku"
msgid "Filament unload time"
msgstr "Doba vysouvĂĄnĂ filamentu"
-msgid "Time to unload old filament when switch filament. For statistics only"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
msgstr ""
-"Äas vytaĆŸenĂ starĂ©ho filamentu pĆi vĂœmÄnÄ filamentu. Pouze pro statistiku"
msgid ""
"Filament diameter is used to calculate extrusion in gcode, so it's important "
@@ -10661,15 +10782,6 @@ msgstr "Rychlost poslednĂho pohybu chlazenĂ"
msgid "Cooling moves are gradually accelerating towards this speed."
msgstr "ChladĂcĂ pohyby se postupnÄ zrychlujĂ aĆŸ k tĂ©to rychlosti."
-msgid ""
-"Time for the printer firmware (or the Multi Material Unit 2.0) to load a new "
-"filament during a tool change (when executing the T code). This time is "
-"added to the total print time by the G-code time estimator."
-msgstr ""
-"Doba, po kterou firmware tiskĂĄrny (nebo jednotka Multi Material 2.0) zavĂĄdĂ "
-"novĂœ filament bÄhem jeho vĂœmÄny (pĆi provĂĄdÄnĂ kĂłdu T). Tento Äas je pĆidĂĄn "
-"k celkovĂ© dobÄ tisku pomocĂ G-kĂłdu odhadovaÄe tiskovĂ©ho Äasu."
-
msgid "Ramming parameters"
msgstr "Parametry rapidnĂ extruze"
@@ -10680,15 +10792,6 @@ msgstr ""
"Tento ĆetÄzec je upravovĂĄn dialogem RammingDialog a obsahuje specifickĂ© "
"parametry pro rapidnĂ extruzi."
-msgid ""
-"Time for the printer firmware (or the Multi Material Unit 2.0) to unload a "
-"filament during a tool change (when executing the T code). This time is "
-"added to the total print time by the G-code time estimator."
-msgstr ""
-"Doba, po kterou firmware tiskĂĄrny (nebo jednotka Multi Material 2.0) vysouvĂĄ "
-"filament bÄhem jeho vĂœmÄny (pĆi provĂĄdÄnĂ kĂłdu T). Tento Äas je pĆidĂĄn k "
-"celkovĂ© dobÄ tisku pomocĂ G-kĂłdu odhadovaÄe tiskovĂ©ho Äasu."
-
msgid "Enable ramming for multitool setups"
msgstr "PovolenĂ rapidnĂ extruze tiskĂĄrny s vĂce nĂĄstroji"
@@ -11040,10 +11143,10 @@ msgstr "MaximĂĄlnĂ otĂĄÄky ventilĂĄtoru ve vrstvÄ"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
-"\". \"full_fan_speed_layer\" will be ignored if lower than "
-"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
-"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer "
+"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
+"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
+"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"OtĂĄÄky ventilĂĄtoru se lineĂĄrnÄ zvĂœĆĄĂ z nuly ve vrstvÄ "
"\"close_fan_first_layers\" na maximum ve vrstvÄ \"full_fan_speed_layer\". "
@@ -11115,8 +11218,11 @@ msgstr "Odfiltrujte drobné mezery"
msgid "Layers and Perimeters"
msgstr "Vrstvy a perimetry"
-msgid "Filter out gaps smaller than the threshold specified"
-msgstr "Filtrovat mezery menĆĄĂ neĆŸ stanovenĂĄ hranice"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
+msgstr ""
msgid ""
"Speed of gap infill. Gap usually has irregular line width and should be "
@@ -13107,33 +13213,40 @@ msgid "Activate temperature control"
msgstr "Aktivovat ĆĂzenĂ teploty"
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 ""
-"ZapnÄte tuto volbu pro ĆĂzenĂ teploty v komoĆe. PĆĂkaz M191 bude pĆidĂĄn pĆed "
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
"\"machine_start_gcode\"\n"
-"G-kĂłd pĆĂkazy: M141/M191 S(0-255)"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
+msgstr ""
msgid "Chamber temperature"
msgstr "Teplota v komoĆe"
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
msgstr ""
-"VyĆĄĆĄĂ teplota komory mĆŻĆŸe pomoci potlaÄit nebo snĂĆŸit odchlipovĂĄnĂ a "
-"potenciĂĄlnÄ vĂ©st k vyĆĄĆĄĂ pevnosti spojĆŻ mezi vrstvami pro materiĂĄly s "
-"vysokou teplotou, jako je ABS, ASA, PC, PA a dalĆĄĂ. ZĂĄroveĆ se vĆĄak zhorĆĄĂ "
-"filtrace vzduchu pro ABS a ASA. Naopak pro PLA, PETG, TPU, PVA a dalĆĄĂ "
-"materiĂĄly s nĂzkou teplotou by teplota komory nemÄla bĂœt vysokĂĄ, aby se "
-"pĆedeĆĄlo zanĂĄĆĄenĂ, takĆŸe je velmi doporuÄeno pouĆŸĂt hodnotu 0, kterĂĄ znamenĂĄ "
-"vypnutĂ"
msgid "Nozzle temperature for layers after the initial one"
msgstr "Teplota trysky pro vrstvy po poÄĂĄteÄnĂ"
@@ -14983,8 +15096,8 @@ msgid ""
msgstr ""
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you selected"
-"\". \n"
+"We would rename the presets as \"Vendor Type Serial @printer you "
+"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
@@ -15878,8 +15991,8 @@ msgid ""
msgstr ""
"Plochou na podloĆŸku\n"
"VÄdÄli jste, ĆŸe mĆŻĆŸete rychle nastavit orientaci modelu tak, aby jedna z "
-"jeho stÄn spoÄĂvala na tiskovĂ©m podloĆŸĂ? Vyberte funkci \"Plochou na podloĆŸku"
-"\" nebo stisknÄte klĂĄvesu F."
+"jeho stÄn spoÄĂvala na tiskovĂ©m podloĆŸĂ? Vyberte funkci \"Plochou na "
+"podloĆŸku\" nebo stisknÄte klĂĄvesu F."
#: resources/data/hints.ini: [hint:Object List]
msgid ""
@@ -16095,53 +16208,96 @@ msgid ""
"probability of warping."
msgstr ""
-#~ msgid "up to"
-#~ msgstr "aĆŸ do"
+#~ msgid ""
+#~ "Decrease this value slightly(for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag"
+#~ msgstr ""
+#~ "SniĆŸte tuto hodnotu mĂrnÄ (napĆĂklad 0,9), abyste snĂĆŸili mnoĆŸstvĂ "
+#~ "materiĂĄlu pro most a zlepĆĄili provÄĆĄenĂ"
-#~ msgid "above"
-#~ msgstr "nad"
+#~ msgid ""
+#~ "This factor affects the amount of material for top solid infill. You can "
+#~ "decrease it slightly to have smooth surface finish"
+#~ msgstr ""
+#~ "Tento faktor ovlivĆuje mnoĆŸstvĂ materiĂĄlu pro vrchnĂ plnou vĂœplĆ. MĆŻĆŸete "
+#~ "jej mĂrnÄ snĂĆŸit, abyste mÄli hladkĂœ povrch"
-#~ msgid "from"
-#~ msgstr "z"
+#~ msgid "This factor affects the amount of material for bottom solid infill"
+#~ msgstr "Tento faktor ovlivĆuje mnoĆŸstvĂ materiĂĄlu pro spodnĂ plnou vĂœplĆ"
-#~ msgid "Switching application language while some presets are modified."
-#~ msgstr "PĆepĂnĂĄnĂ jazyka aplikace pĆi zmÄnÄ nÄkterĂœch pĆedvoleb."
+#~ msgid ""
+#~ "Enable this option to slow printing down in areas where potential curled "
+#~ "perimeters may exist"
+#~ msgstr ""
+#~ "Povolte tuto moĆŸnost pro zpomalenĂ tisku na mĂstech, kde mohou existovat "
+#~ "potenciålnà zakroucené obvody"
-#~ msgid "â+Shift+G"
-#~ msgstr "â+Shift+G"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "Rychlost mostu a zcela pĆevislĂ© stÄny"
-#~ msgid "Ctrl+Shift+G"
-#~ msgstr "Ctrl+Shift+G"
+#~ 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 ""
+#~ "Rychlost vnitĆnĂho mostu. Pokud je hodnota vyjĂĄdĆena jako procento, bude "
+#~ "vypoÄĂtĂĄna na zĂĄkladÄ most_speed. VĂœchozĂ hodnota je 150 %."
-#~ msgid "â+Any arrow"
-#~ msgstr "â+libovolnĂĄ ĆĄipka"
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Äas na zavedenĂ novĂ©ho filamentu pĆi vĂœmÄnÄ filamentu. Pouze pro "
+#~ "statistiku"
-#~ msgid "â„+Left mouse button"
-#~ msgstr "â„+levĂ© tlaÄĂtko myĆĄi"
+#~ msgid ""
+#~ "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Äas vytaĆŸenĂ starĂ©ho filamentu pĆi vĂœmÄnÄ filamentu. Pouze pro statistiku"
-#~ msgid "â+Left mouse button"
-#~ msgstr "â+levĂ© tlaÄĂtko myĆĄi"
+#~ msgid ""
+#~ "Time for the printer firmware (or the Multi Material Unit 2.0) to load a "
+#~ "new filament during a tool change (when executing the T code). This time "
+#~ "is added to the total print time by the G-code time estimator."
+#~ msgstr ""
+#~ "Doba, po kterou firmware tiskĂĄrny (nebo jednotka Multi Material 2.0) "
+#~ "zavĂĄdĂ novĂœ filament bÄhem jeho vĂœmÄny (pĆi provĂĄdÄnĂ kĂłdu T). Tento Äas "
+#~ "je pĆidĂĄn k celkovĂ© dobÄ tisku pomocĂ G-kĂłdu odhadovaÄe tiskovĂ©ho Äasu."
-#~ msgid "Ctrl+Any arrow"
-#~ msgstr "Ctrl+libovolnĂĄ ĆĄipka"
+#~ msgid ""
+#~ "Time for the printer firmware (or the Multi Material Unit 2.0) to unload "
+#~ "a filament during a tool change (when executing the T code). This time is "
+#~ "added to the total print time by the G-code time estimator."
+#~ msgstr ""
+#~ "Doba, po kterou firmware tiskĂĄrny (nebo jednotka Multi Material 2.0) "
+#~ "vysouvĂĄ filament bÄhem jeho vĂœmÄny (pĆi provĂĄdÄnĂ kĂłdu T). Tento Äas je "
+#~ "pĆidĂĄn k celkovĂ© dobÄ tisku pomocĂ G-kĂłdu odhadovaÄe tiskovĂ©ho Äasu."
-#~ msgid "Alt+Left mouse button"
-#~ msgstr "Alt+levĂ© tlaÄĂtko myĆĄi"
+#~ msgid "Filter out gaps smaller than the threshold specified"
+#~ msgstr "Filtrovat mezery menĆĄĂ neĆŸ stanovenĂĄ hranice"
-#~ msgid "Ctrl+Left mouse button"
-#~ msgstr "Ctrl+levĂ© tlaÄĂtko myĆĄi"
+#~ 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 ""
+#~ "ZapnÄte tuto volbu pro ĆĂzenĂ teploty v komoĆe. PĆĂkaz M191 bude pĆidĂĄn "
+#~ "pĆed \"machine_start_gcode\"\n"
+#~ "G-kĂłd pĆĂkazy: M141/M191 S(0-255)"
-#~ msgid "â+Mouse wheel"
-#~ msgstr "â+koleÄko myĆĄi"
-
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„+koleÄko myĆĄi"
-
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "Ctrl+koleÄko myĆĄi"
-
-#~ msgid "Alt+Mouse wheel"
-#~ msgstr "Alt+koleÄko myĆĄi"
+#~ 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 ""
+#~ "VyĆĄĆĄĂ teplota komory mĆŻĆŸe pomoci potlaÄit nebo snĂĆŸit odchlipovĂĄnĂ a "
+#~ "potenciĂĄlnÄ vĂ©st k vyĆĄĆĄĂ pevnosti spojĆŻ mezi vrstvami pro materiĂĄly s "
+#~ "vysokou teplotou, jako je ABS, ASA, PC, PA a dalĆĄĂ. ZĂĄroveĆ se vĆĄak "
+#~ "zhorĆĄĂ filtrace vzduchu pro ABS a ASA. Naopak pro PLA, PETG, TPU, PVA a "
+#~ "dalĆĄĂ materiĂĄly s nĂzkou teplotou by teplota komory nemÄla bĂœt vysokĂĄ, "
+#~ "aby se pĆedeĆĄlo zanĂĄĆĄenĂ, takĆŸe je velmi doporuÄeno pouĆŸĂt hodnotu 0, "
+#~ "kterĂĄ znamenĂĄ vypnutĂ"
#~ msgid "Wipe tower extruder"
#~ msgstr "Extruder ÄistĂcĂ vÄĆŸe"
@@ -16172,12 +16328,12 @@ msgstr ""
#~ "Najdete podrobnosti o kalibraci prĆŻtoku dynamiky v naĆĄĂ wiki.\n"
#~ "\n"
#~ "Obvykle kalibrace nenĂ potĆebnĂĄ. PĆi spuĆĄtÄnĂ tisku s jednobarevnĂœm/"
-#~ "materiĂĄlovĂœm filamentem a zaĆĄkrtnutou volbou \"kalibrace prĆŻtoku dynamiky"
-#~ "\" v menu spuĆĄtÄnĂ tisku, tiskĂĄrna bude postupovat podle starĂ© metody a "
-#~ "zkalibruje filament pĆed tiskem. PĆi spuĆĄtÄnĂ tisku s vĂcebarevnĂœm/"
-#~ "materiĂĄlovĂœm filamentem bude tiskĂĄrna pĆi kaĆŸdĂ© zmÄnÄ filamentu pouĆŸĂvat "
-#~ "vĂœchozĂ kompenzaÄnĂ parametr pro filament, coĆŸ mĂĄ vÄtĆĄinou dobrĂœ "
-#~ "vĂœsledek.\n"
+#~ "materiĂĄlovĂœm filamentem a zaĆĄkrtnutou volbou \"kalibrace prĆŻtoku "
+#~ "dynamiky\" v menu spuĆĄtÄnĂ tisku, tiskĂĄrna bude postupovat podle starĂ© "
+#~ "metody a zkalibruje filament pĆed tiskem. PĆi spuĆĄtÄnĂ tisku s "
+#~ "vĂcebarevnĂœm/materiĂĄlovĂœm filamentem bude tiskĂĄrna pĆi kaĆŸdĂ© zmÄnÄ "
+#~ "filamentu pouĆŸĂvat vĂœchozĂ kompenzaÄnĂ parametr pro filament, coĆŸ mĂĄ "
+#~ "vÄtĆĄinou dobrĂœ vĂœsledek.\n"
#~ "\n"
#~ "VĆĄimnÄte si, ĆŸe existujĂ nÄkterĂ© pĆĂpady, kterĂ© mohou zpĆŻsobit, ĆŸe "
#~ "vĂœsledek kalibrace nebude spolehlivĂœ: pouĆŸitĂ texturovanĂ© podloĆŸky pro "
diff --git a/localization/i18n/de/OrcaSlicer_de.po b/localization/i18n/de/OrcaSlicer_de.po
index 7547eaeee6..ed3799db7c 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-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: Heiko Liebscher \n"
"Language-Team: \n"
@@ -74,6 +74,9 @@ msgstr "Intelligenter FĂŒllwinkel"
msgid "On overhangs only"
msgstr "Nur an ĂberhĂ€ngen"
+msgid "Auto support threshold angle: "
+msgstr "Winkel fĂŒr automatische Supports: "
+
msgid "Circle"
msgstr "Kreis"
@@ -94,9 +97,6 @@ msgstr ""
msgid "Highlight faces according to overhang angle."
msgstr "Markieren der FlĂ€chen entsprechend dem Ăberhangwinkel."
-msgid "Auto support threshold angle: "
-msgstr "Winkel fĂŒr automatische Supports: "
-
msgid "No auto support"
msgstr "Kein automatischer Support"
@@ -1995,6 +1995,9 @@ msgstr "Modell vereinfachen"
msgid "Center"
msgstr "Zur Mitte"
+msgid "Drop"
+msgstr "Ablegen"
+
msgid "Edit Process Settings"
msgstr "Prozesseinstellungen"
@@ -4214,6 +4217,15 @@ msgstr "Gesamtdauer"
msgid "Total cost"
msgstr "Geamtkosten"
+msgid "up to"
+msgstr "bis zu"
+
+msgid "above"
+msgstr "ĂŒber"
+
+msgid "from"
+msgstr "von"
+
msgid "Color Scheme"
msgstr "Farbschema"
@@ -4277,12 +4289,12 @@ msgstr "Filamentwechselzeiten"
msgid "Cost"
msgstr "Kosten"
-msgid "Print"
-msgstr "aktuelle Platte drucken"
-
msgid "Color change"
msgstr "Farbwechsel"
+msgid "Print"
+msgstr "aktuelle Platte drucken"
+
msgid "Printer"
msgstr "Drucker"
@@ -4466,7 +4478,7 @@ msgstr "Volumen:"
msgid "Size:"
msgstr "GröĂe:"
-#, 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)."
@@ -4911,6 +4923,18 @@ msgstr "Durchgang 2"
msgid "Flow rate test - Pass 2"
msgstr "Durchflussratentests - Teil 1"
+msgid "YOLO (Recommended)"
+msgstr "YOLO (Empfohlen)"
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr "Orca YOLO Durchflusskalibrierung, 0.01 Schritt"
+
+msgid "YOLO (perfectionist version)"
+msgstr "YOLO (Perfektionisten-Version)"
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr "Orca YOLO Durchflusskalibrierung, 0.005 Schritt"
+
msgid "Flow rate"
msgstr "Durchflussrate"
@@ -6232,16 +6256,6 @@ msgstr "Objekt mit mehreren Teilen wurde entdeckt"
msgid "The file does not contain any geometry data."
msgstr "Die Datei enthÀlt keine Geometriedaten."
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-"Ihr Objekt scheint zu groĂ zu sein. Es wird automatisch verkleinert, um auf "
-"das Druckbett zu passen."
-
-msgid "Object too large"
-msgstr "Objekt zu groĂ"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
@@ -6249,6 +6263,9 @@ msgstr ""
"Ihr Objekt scheint zu groà zu sein. Möchten Sie es verkleinern, um es "
"automatisch an das Druckbett anzupassen?"
+msgid "Object too large"
+msgstr "Objekt zu groĂ"
+
msgid "Export STL file:"
msgstr "Exportiere STL Datei:"
@@ -6634,6 +6651,10 @@ msgstr "Möchten Sie fortfahren?"
msgid "Language selection"
msgstr "Sprachauswahl"
+msgid "Switching application language while some presets are modified."
+msgstr ""
+"Umschalten der Anwendungssprache, wÀhrend einige Profile geÀndert werden."
+
msgid "Changing application language"
msgstr "Anwendungssprache Àndern"
@@ -7382,8 +7403,8 @@ msgstr ""
msgid ""
"Timelapse is not supported because Print sequence is set to \"By object\"."
msgstr ""
-"Zeitraffer wird nicht unterstĂŒtzt, da die Druckreihenfolge auf \"Nach Objekt"
-"\" eingestellt ist."
+"Zeitraffer wird nicht unterstĂŒtzt, da die Druckreihenfolge auf \"Nach "
+"Objekt\" eingestellt ist."
msgid "Errors"
msgstr "Fehler"
@@ -7777,13 +7798,13 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add Primitive"
-"\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add "
+"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Wenn Sie einen Zeitraffer ohne Werkzeugkopf aufnehmen, wird empfohlen, einen "
"\"Timelapse Wischturm\" hinzuzufĂŒgen, indem Sie mit der rechten Maustaste "
-"auf die leere Position der Bauplatte klicken und \"Primitiv hinzufĂŒgen\"->"
-"\"Timelapse Wischturm\" wÀhlen."
+"auf die leere Position der Bauplatte klicken und \"Primitiv hinzufĂŒgen\"-"
+">\"Timelapse Wischturm\" wÀhlen."
msgid "Line width"
msgstr "Breite der Linie"
@@ -8674,8 +8695,11 @@ msgstr "Liste der Objekte"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importiere Geometriedaten aus STL/STEP/3MF/OBJ/AMF-Dateien"
-msgid "Shift+G"
-msgstr "Umschalt+G"
+msgid "â+Shift+G"
+msgstr "â+Umschalttaste+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Strg+Umschalt+G"
msgid "Paste from clipboard"
msgstr "Aus Zwischenablage einfĂŒgen"
@@ -8726,18 +8750,33 @@ msgstr "Umschalt+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "Seitenleiste zu-/aufklappen"
-msgid "Any arrow"
-msgstr "Beliebiger Pfeil"
+msgid "â+Any arrow"
+msgstr "â+beliebiger Pfeil"
msgid "Movement in camera space"
msgstr "Bewegung im Kameraraum"
+msgid "â„+Left mouse button"
+msgstr "â„+Linke Maustaste"
+
msgid "Select a part"
msgstr "Teil auswÀhlen"
+msgid "â+Left mouse button"
+msgstr "â+Linke Maustaste"
+
msgid "Select multiple objects"
msgstr "Mehrere Objekte auswÀhlen"
+msgid "Ctrl+Any arrow"
+msgstr "Strg + beliebige Pfeiltaste"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt + Linke Maustaste"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Strg + Linke Maustaste"
+
msgid "Shift+Left mouse button"
msgstr "Umschalt+Linke Maustaste"
@@ -8840,12 +8879,24 @@ msgstr "Druckplatte"
msgid "Move: press to snap by 1mm"
msgstr "Verschieben: DrĂŒcken, um in 1 mm einzurasten"
+msgid "â+Mouse wheel"
+msgstr "â+Mausrad"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "StĂŒtzen/Farbmalen: Stiftradius einstellen"
+msgid "â„+Mouse wheel"
+msgstr "â„+Mausrad"
+
msgid "Support/Color Painting: adjust section position"
msgstr "StĂŒtzen/Farbmalen: Position des Abschnitts anpassen"
+msgid "Ctrl+Mouse wheel"
+msgstr "Strg + Mausrad"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt + Mausrad"
+
msgid "Gizmo"
msgstr "Gizmo"
@@ -9939,25 +9990,60 @@ msgid "Apply gap fill"
msgstr "LĂŒckenfĂŒllung anwenden"
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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
-"only\n"
-"3. Nowhere: Disables gap fill\n"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
+"\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
msgstr ""
-"Schaltet die LĂŒckenfĂŒllung fĂŒr die ausgewĂ€hlten OberflĂ€chen ein. Die "
-"minimale LĂ€nge der LĂŒcke, die gefĂŒllt wird, kann ĂŒber die Option \"winzige "
-"LĂŒcken herausfiltern\" unten gesteuert werden.\n"
+"Schaltet die LĂŒckenfĂŒllung fĂŒr die ausgewĂ€hlten massiven OberflĂ€chen ein. "
+"Die minimale LĂŒckenlĂ€nge, die gefĂŒllt wird, kann von der Option zum "
+"Filtern kleiner LĂŒcken unten gesteuert werden.\n"
"\n"
"Optionen:\n"
-"1. Ăberall: FĂŒllt LĂŒcken in oberen, unteren und inneren massiven OberflĂ€chen "
-"aus\n"
+"1. Ăberall: FĂŒllt LĂŒcken in oberen, unteren und internen massiven "
+"OberflĂ€chen fĂŒr maximale Festigkeit"
"2. Obere und untere OberflĂ€chen: FĂŒllt LĂŒcken nur in oberen und unteren "
-"OberflÀchen aus\n"
-"3. Nirgendwo: Deaktiviert die LĂŒckenfĂŒllung\n"
+"OberflĂ€chen, um Druckgeschwindigkeit zu erhöhen, potenzielle Ăberextrusion "
+"im massiven Infill zu reduzieren und sicherzustellen, dass die oberen und "
+"unteren OberflÀchen keine Löcher aufweisen"
+"3. Nirgendwo: Deaktiviert die LĂŒckenfĂŒllung fĂŒr alle massiven Infill-Bereiche.\n"
+"\n"
+"Beachten Sie, dass bei Verwendung des klassischen Umfangsgenerators "
+"LĂŒckenfĂŒllung auch zwischen UmfĂ€ngen generiert werden kann, wenn eine "
+"volle Breitenlinie nicht zwischen ihnen passt. Diese UmfangslĂŒckenfĂŒllung "
+"wird nicht durch diese Einstellung gesteuert.\n"
+"\n"
+"Wenn Sie möchten, dass alle LĂŒckenfĂŒllungen, einschlieĂlich der vom "
+"klassischen Umfangsgenerator generierten, entfernt werden, setzen Sie den "
+"Wert zum Filtern kleiner LĂŒcken auf eine groĂe Zahl, wie 999999.\n"
+"\n"
+"Dies wird jedoch nicht empfohlen, da die LĂŒckenfĂŒllung zwischen UmfĂ€ngen zur "
+"Festigkeit des Modells beitrĂ€gt. FĂŒr Modelle, bei denen zwischen UmfĂ€ngen "
+"ĂŒbermĂ€Ăige LĂŒckenfĂŒllung generiert wird, wĂ€re eine bessere Option, auf den "
+"Arachne-Wandgenerator umzusteigen und diese Option zu verwenden, um zu "
+"steuern, ob die kosmetische LĂŒckenfĂŒllung fĂŒr obere und untere OberflĂ€chen "
+"generiert wird."
msgid "Everywhere"
msgstr "Ăberall"
@@ -10033,10 +10119,17 @@ msgstr "BrĂŒcken Flussrate"
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Verringern Sie diesen Wert geringfĂŒgig (z. B. 0,9), um die Materialmenge fĂŒr "
-"die BrĂŒcke zu verringern und den Durchhang zu minimieren"
+"Verringern Sie diesen Wert leicht (zum Beispiel 0,9), um die Materialmenge "
+"fĂŒr die BrĂŒcke zu reduzieren und das DurchhĂ€ngen zu verbessern.\n"
+"\n"
+"Der tatsĂ€chliche BrĂŒckenfluss wird berechnet, indem dieser Wert mit dem "
+"FilamentflussverhÀltnis und, falls festgelegt, dem ObjektflussverhÀltnis "
+"multipliziert wird."
msgid "Internal bridge flow ratio"
msgstr "Interne BrĂŒcken Flussrate"
@@ -10044,29 +10137,52 @@ msgstr "Interne BrĂŒcken Flussrate"
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
"Dieser Wert bestimmt die Dicke der internen BrĂŒckenschicht. Dies ist die "
-"erste Schicht ĂŒber der dĂŒnnen FĂŒllung. Verringern Sie diesen Wert leicht (z. "
-"B. 0,9), um die OberflĂ€chenqualitĂ€t ĂŒber der dĂŒnnen FĂŒllung zu verbessern."
+"erste Schicht ĂŒber der dĂŒnnen FĂŒllung. Verringern Sie diesen Wert leicht "
+"(zum Beispiel 0,9), um die OberflĂ€chenqualitĂ€t ĂŒber der dĂŒnnen FĂŒllung zu "
+"verbessern.\n"
+"\n"
+"Der tatsĂ€chliche interne BrĂŒckenfluss wird berechnet, indem dieser Wert mit "
+"dem BrĂŒckenflussverhĂ€ltnis, dem FilamentflussverhĂ€ltnis und, falls festgelegt, "
+"dem ObjektflussverhÀltnis multipliziert wird."
msgid "Top surface flow ratio"
msgstr "DurchflussverhÀltnis obere FlÀche"
msgid ""
"This factor affects the amount of material for top solid infill. You can "
-"decrease it slightly to have smooth surface finish"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Dieser Faktor beeinflusst die Menge des Materials fĂŒr die obere FĂŒllung. Sie "
-"können ihn leicht verringern, um eine glatte OberflÀchenbeschichtung zu "
-"erhalten"
+"Dieser Faktor beeinflusst die Menge des Materials fĂŒr die obere feste FĂŒllung. "
+"Sie können ihn leicht verringern, um eine glatte OberflÀche zu erhalten.\n"
+"\n"
+"Der tatsÀchliche obere Fluss wird berechnet, indem dieser Wert mit dem "
+"FilamentflussverhÀltnis und, falls festgelegt, dem ObjektflussverhÀltnis "
+"multipliziert wird."
msgid "Bottom surface flow ratio"
msgstr "DurchflussverhÀltnis untere FlÀche"
-msgid "This factor affects the amount of material for bottom solid infill"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Dieser Faktor beeinflusst die Menge des Materials fĂŒr die untere FĂŒllung"
+"Dieser Faktor beeinflusst die Menge des Materials fĂŒr die untere feste FĂŒllung.\n"
+"\n"
+"Der tatsĂ€chliche Fluss fĂŒr die untere feste FĂŒllung wird berechnet, indem "
+"dieser Wert mit dem FilamentflussverhÀltnis und, falls festgelegt, dem "
+"ObjektflussverhÀltnis multipliziert wird."
msgid "Precise wall"
msgstr "Exakte Wand"
@@ -10246,11 +10362,44 @@ msgid "Slow down for curled perimeters"
msgstr "Langsamer Druck fĂŒr gekrĂŒmmte UmfĂ€nge"
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
msgstr ""
"Aktivieren Sie diese Option, um den Druck in Bereichen zu verlangsamen, in "
-"denen möglicherweise gekrĂŒmmte UmfĂ€nge vorhanden sind"
+"denen die UmfĂ€nge nach oben gekrĂŒmmt sein können. Zum Beispiel wird eine "
+"zusĂ€tzliche Verlangsamung angewendet, wenn ĂberhĂ€nge an scharfen Ecken wie "
+"der Vorderseite des Benchy-Rumpfes gedruckt werden, um das KrÀuseln zu "
+"reduzieren, das sich ĂŒber mehrere Schichten hinweg aufbaut.\n"
+"\n"
+"Es wird im Allgemeinen empfohlen, diese Option eingeschaltet zu lassen, es "
+"sei denn, Ihr Drucker ist leistungsstark genug oder die Druckgeschwindigkeit "
+"ist langsam genug, dass das KrÀuseln der UmfÀnge nicht auftritt. Wenn mit "
+"einer hohen externen Umfangsgeschwindigkeit gedruckt wird, kann dieser "
+"Parameter leichte Artefakte verursachen, wenn er aufgrund der groĂen "
+"Varianz der Druckgeschwindigkeiten verlangsamt wird. Wenn Sie Artefakte "
+"bemerken, stellen Sie sicher, dass Ihr Druckvorschub korrekt eingestellt "
+"ist.\n"
+"\n"
+"Hinweis: Wenn diese Option aktiviert ist, werden UmfangsumfÀnge wie "
+"ĂberhĂ€nge behandelt, was bedeutet, dass die Ăberhangsgeschwindigkeit "
+"angewendet wird, auch wenn der ĂŒberhĂ€ngende Umfang Teil einer BrĂŒcke ist. "
+"Zum Beispiel, wenn die UmfĂ€nge zu 100 % ĂŒberhĂ€ngen, ohne dass eine Wand sie "
+"von unten stĂŒtzt, wird die Ăberhangsgeschwindigkeit von 100 % angewendet."
msgid "mm/s or %"
msgstr "mm/s o. %"
@@ -10258,8 +10407,20 @@ msgstr "mm/s o. %"
msgid "External"
msgstr "Extern"
-msgid "Speed of bridge and completely overhang wall"
-msgstr "Geschwindigkeit fĂŒr BrĂŒcken und vollstĂ€ndig ĂŒberhĂ€ngende WĂ€nde."
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
+"Geschwindigkeit der extern sichtbaren BrĂŒckenextrusionen.\n"
+"\n"
+"DarĂŒber hinaus wird, wenn die Option zum Verlangsamen von gekrĂŒmmten UmfĂ€ngen "
+"deaktiviert ist oder der klassische Ăberhangsmodus aktiviert ist, die "
+"Druckgeschwindigkeit der ĂberhangswĂ€nde, die zu weniger als 13 % gestĂŒtzt "
+"sind, ob sie Teil einer BrĂŒcke oder eines Ăberhangs sind."
msgid "mm/s"
msgstr "mm/s"
@@ -10268,12 +10429,12 @@ msgid "Internal"
msgstr "Intern"
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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
-"Geschwindigkeit der internen BrĂŒcke. Wenn der Wert als Prozentsatz angegeben "
-"ist, wird er basierend auf der BrĂŒckengeschwindigkeit berechnet. "
-"Standardwert ist 150%."
+"Geschwindigkeit der internen BrĂŒcken. Wenn der Wert als Prozentsatz angegeben "
+"wird, wird er auf der Grundlage der BrĂŒckengeschwindigkeit berechnet. Der "
+"Standardwert betrÀgt 150 %."
msgid "Brim width"
msgstr "Randbreite"
@@ -10924,6 +11085,26 @@ msgstr ""
"anpassen, um eine schöne flache OberflÀche zu erhalten, wenn es eine leichte "
"Ăber- oder Unterextrusion gibt."
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+"Das Material kann sich nach dem Wechsel zwischen geschmolzenem und "
+"kristallinem Zustand volumetrisch verÀndern. Mit dieser Einstellung werden "
+"alle Extrusionsströme dieses Filaments im G-Code proportional geÀndert. Der "
+"empfohlene Wertebereich liegt zwischen 0,95 und 1,05. Sie können diesen Wert "
+"anpassen, um eine schöne flache OberflÀche zu erhalten, wenn es eine leichte "
+"Ăber- oder Unterextrusion gibt. \n"
+"\n"
+"Das endgĂŒltige Objekt-FlussverhĂ€ltnis ist das Produkt aus diesem Wert und "
+"dem Filament-FlussverhÀltnis."
+
msgid "Enable pressure advance"
msgstr "Pressure advance aktivieren"
@@ -10979,8 +11160,8 @@ msgstr ""
"Druckbedingungen an den Drucker ausgegeben wird.\n"
"\n"
"Wenn diese Option aktiviert ist, wird der obige Druckvorschubwert ĂŒberschrie-"
-"ben. Es wird jedoch dringend empfohlen, einen vernĂŒnftigen Standardwert "
-"oben zu verwenden, um als Fallback und fĂŒr den Werkzeugwechsel zu dienen.\n"
+"ben. Es wird jedoch dringend empfohlen, einen vernĂŒnftigen Standardwert oben "
+"zu verwenden, um als Fallback und fĂŒr den Werkzeugwechsel zu dienen.\n"
"\n"
msgid "Adaptive pressure advance measurements (beta)"
@@ -11033,16 +11214,16 @@ msgstr ""
"Druckbeschleunigungen durch und nicht schneller als die empfohlene maximale "
"Beschleunigung, wie sie vom Klipper-Eingabe-Shaper angegeben wird.\n"
"2. Notieren Sie den optimalen PA-Wert fĂŒr jede VolumenflieĂgeschwindigkeit "
-"und Beschleunigung. Sie können die FlieĂzahl auswĂ€hlen, indem Sie Fluss aus"
-"dem Farbschema-Dropdown auswĂ€hlen und den horizontalen Schieberegler ĂŒber den "
-"PA-Musterlinien bewegen. Die Zahl sollte am unteren Rand der Seite sichtbar "
-"sein. Der ideale PA-Wert sollte abnehmen, je höher die VolumenflieĂgeschwin-"
-"digkeit ist. Wenn dies nicht der Fall ist, bestÀtigen Sie, dass Ihr Extruder "
-"korrekt funktioniert. Je langsamer und mit weniger Beschleunigung Sie drucken, "
-"desto gröĂer ist der Bereich der akzeptablen PA-Werte. Wenn kein Unterschied "
-"sichtbar ist, verwenden Sie den PA-Wert aus dem schnelleren Test.3. Geben Sie "
-"die Triplets von PA-Werten, Fluss und Beschleunigungen im Textfeld hier ein "
-"und speichern Sie Ihr Filamentprofil\n"
+"und Beschleunigung. Sie können die FlieĂzahl auswĂ€hlen, indem Sie Fluss "
+"ausdem Farbschema-Dropdown auswĂ€hlen und den horizontalen Schieberegler ĂŒber "
+"den PA-Musterlinien bewegen. Die Zahl sollte am unteren Rand der Seite "
+"sichtbar sein. Der ideale PA-Wert sollte abnehmen, je höher die "
+"VolumenflieĂgeschwin-digkeit ist. Wenn dies nicht der Fall ist, bestĂ€tigen "
+"Sie, dass Ihr Extruder korrekt funktioniert. Je langsamer und mit weniger "
+"Beschleunigung Sie drucken, desto gröĂer ist der Bereich der akzeptablen PA-"
+"Werte. Wenn kein Unterschied sichtbar ist, verwenden Sie den PA-Wert aus dem "
+"schnelleren Test.3. Geben Sie die Triplets von PA-Werten, Fluss und "
+"Beschleunigungen im Textfeld hier ein und speichern Sie Ihr Filamentprofil\n"
"\n"
msgid "Enable adaptive pressure advance for overhangs (beta)"
@@ -11174,18 +11355,40 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "Ladedauer des Filaments"
-msgid "Time to load new filament when switch filament. For statistics only"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
msgstr ""
-"Zeit zum Laden des neuen Filaments, beim Wechseln des Filaments. Nur fĂŒr "
-"statistische Zwecke."
+"Zeit zum Laden des neuen Filaments beim Wechsel des Filaments. Es ist in der "
+"Regel fĂŒr Einzel-Extruder-Multi-Material-Maschinen anwendbar. FĂŒr "
+"Werkzeugwechsler oder Multi-Tool-Maschinen betrÀgt es in der Regel 0. Nur "
+"fĂŒr Statistiken"
msgid "Filament unload time"
msgstr "Entladezeit des Filaments"
-msgid "Time to unload old filament when switch filament. For statistics only"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
msgstr ""
-"Zeit zum Entladen des alten Filaments, beim Wechseln des Filaments. Nur fĂŒr "
-"statistische Zwecke."
+"Zeit zum Entladen des alten Filaments beim Wechsel des Filaments. Es ist in "
+"der Regel fĂŒr Einzel-Extruder-Multi-Material-Maschinen anwendbar. FĂŒr "
+"Werkzeugwechsler oder Multi-Tool-Maschinen betrÀgt es in der Regel 0. Nur "
+"fĂŒr Statistiken"
+
+msgid "Tool change time"
+msgstr "Werkzeugwechselzeit"
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
+msgstr ""
+"Zeit, die zum Wechseln der Werkzeuge benötigt wird. Es ist in der Regel fĂŒr "
+"Werkzeugwechsler oder Multi-Tool-Maschinen anwendbar. FĂŒr Einzel-Extruder-"
+"Multi-Material-Maschinen betrĂ€gt es in der Regel 0. Nur fĂŒr Statistiken"
msgid ""
"Filament diameter is used to calculate extrusion in gcode, so it's important "
@@ -11334,16 +11537,6 @@ msgstr "Geschwindigkeit der letzten KĂŒhlbewegung"
msgid "Cooling moves are gradually accelerating towards this speed."
msgstr "KĂŒhlbewegungen beschleunigen allmĂ€hlich auf diese Geschwindigkeit."
-msgid ""
-"Time for the printer firmware (or the Multi Material Unit 2.0) to load a new "
-"filament during a tool change (when executing the T code). This time is "
-"added to the total print time by the G-code time estimator."
-msgstr ""
-"Zeit fĂŒr die Drucker-Firmware (oder die Multi Material Unit 2.0), um ein "
-"neues Filament wÀhrend eines Werkzeugwechsels zu laden (wenn der T-Code "
-"ausgefĂŒhrt wird). Diese Zeit wird zur Gesamt-Druckzeit vom G-Code-Zeit-"
-"SchĂ€tzer hinzugefĂŒgt."
-
msgid "Ramming parameters"
msgstr "Ramming-Parameter"
@@ -11354,16 +11547,6 @@ msgstr ""
"Dieser String wird von RammingDialog bearbeitet und enthÀlt ramming-"
"spezifische Parameter."
-msgid ""
-"Time for the printer firmware (or the Multi Material Unit 2.0) to unload a "
-"filament during a tool change (when executing the T code). This time is "
-"added to the total print time by the G-code time estimator."
-msgstr ""
-"Zeit fĂŒr die Drucker-Firmware (oder die Multi Material Unit 2.0), um ein "
-"Filament wÀhrend eines Werkzeugwechsels zu entladen (wenn der T-Code "
-"ausgefĂŒhrt wird). Diese Zeit wird zur Gesamt-Druckzeit vom G-Code-Zeit-"
-"SchĂ€tzer hinzugefĂŒgt."
-
msgid "Enable ramming for multitool setups"
msgstr "Ermöglicht das Rammen fĂŒr Multitool-Setups"
@@ -11737,13 +11920,13 @@ msgstr "Volle LĂŒfterdrehzahl ab Schicht"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
-"\". \"full_fan_speed_layer\" will be ignored if lower than "
-"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
-"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer "
+"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
+"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
+"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
-"Die LĂŒftergeschwindigkeit wird linear von Null bei der Schicht"
-"\"close_fan_the_first_x_layers\" auf das Maximum bei der Schicht "
+"Die LĂŒftergeschwindigkeit wird linear von Null bei der "
+"Schicht\"close_fan_the_first_x_layers\" auf das Maximum bei der Schicht "
"\"full_fan_speed_layer\" erhöht. \"full_fan_speed_layer\" wird ignoriert, "
"wenn es niedriger ist als \"close_fan_the_first_x_layers\",in diesem Fall "
"lĂ€uft der LĂŒfter bei Schicht \"close_fan_the_first_x_layers\"+ 1 mit maximal "
@@ -11814,8 +11997,15 @@ msgstr "Filtert winzige LĂŒcken aus"
msgid "Layers and Perimeters"
msgstr "Schichten und Perimeter"
-msgid "Filter out gaps smaller than the threshold specified"
-msgstr "Filtert LĂŒcken aus, die kleiner als der angegebene Schwellenwert sind"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
+msgstr ""
+"Drucken Sie keine LĂŒckenfĂŒllung mit einer LĂ€nge, die kleiner als der "
+"angegebene Schwellenwert (in mm) ist. Diese Einstellung gilt fĂŒr die obere, "
+"untere und massive FĂŒllung und, wenn der klassische Perimeter-Generator "
+"verwendet wird, fĂŒr die WandlĂŒckenfĂŒllung."
msgid ""
"Speed of gap infill. Gap usually has irregular line width and should be "
@@ -12164,7 +12354,10 @@ msgid ""
"\"mmu_segmented_region_interlocking_depth\"is bigger then "
"\"mmu_segmented_region_max_width\". Zero disables this feature."
msgstr ""
-
+"Interlock-Tiefe eines segmentierten Bereichs. Es wird ignoriert, wenn "
+"\"mmu_segmented_region_max_width\" null ist oder wenn "
+"\"mmu_segmented_region_interlocking_depth\" gröĂer ist als "
+"\"mmu_segmented_region_max_width\". Null deaktiviert diese Funktion."
msgid "Use beam interlocking"
msgstr "Verwende Interlock-Strukturen"
@@ -12683,8 +12876,8 @@ msgid ""
"This option will drop the temperature of the inactive extruders to prevent "
"oozing."
msgstr ""
-"Diese Option senkt die Temperatur der inaktiven Extruder, um das Herauslaufen "
-"des Filaments zu verhindern."
+"Diese Option senkt die Temperatur der inaktiven Extruder, um das "
+"Herauslaufen des Filaments zu verhindern."
msgid "Filename format"
msgstr "Format des Dateinamens"
@@ -13472,8 +13665,8 @@ msgid ""
"zero value."
msgstr ""
"Temperaturunterschied, der angewendet wird, wenn ein Extruder nicht aktiv "
-"ist. Der Wert wird nicht verwendet, wenn 'idle_temperature' in den "
-"Filament-Einstellungen auf einen Wert ungleich Null gesetzt ist."
+"ist. Der Wert wird nicht verwendet, wenn 'idle_temperature' in den Filament-"
+"Einstellungen auf einen Wert ungleich Null gesetzt ist."
msgid "Preheat time"
msgstr "Vorheizzeit"
@@ -14005,34 +14198,68 @@ msgid "Activate temperature control"
msgstr "aktiviere Temperaturkontrolle"
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)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
-"Diese Option aktivieren, um die Temperatur der Druckkammer zu steuern. Ein "
-"M191-Befehl wird vor \"machine_start_gcode\" hinzugefĂŒgt\n"
-"G-Code-Befehle: M141/M191 S(0-255)"
+"Diese Option aktiviert die automatische Druckraumtemperaturkontrolle. Diese "
+"Option aktiviert das Aussenden eines M191-Befehls vor dem "
+"\"machine_start_gcode\", der die Druckraumtemperatur einstellt und wartet, "
+"bis sie erreicht ist. DarĂŒber hinaus wird am Ende des Drucks ein M141-Befehl "
+"ausgegeben, um den Druckraumheizer auszuschalten, falls vorhanden. \n"
+"\n"
+"Diese Option basiert auf der Firmware, die die M191- und M141-Befehle "
+"entweder ĂŒber Makros oder nativ unterstĂŒtzt und wird normalerweise verwendet, "
+"wenn ein aktiver Druckraumheizer installiert ist."
msgid "Chamber temperature"
msgstr "Druckraum Temperatur"
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
msgstr ""
-"Eine höhere Druckraumtemperatur kann das Verziehen unterdrĂŒcken oder "
-"reduzieren und möglicherweise zu einer höheren "
-"Zwischenschichtbindungsfestigkeit fĂŒr Hochtemperaturmaterialien wie ABS, "
-"ASA, PC, PA und so weiter fĂŒhren. Gleichzeitig wird die Luftfiltration von "
-"ABS und ASA schlechter. FĂŒr PLA, PETG, TPU, PVA und andere Materialien mit "
-"niedriger Temperatur sollte die tatsÀchliche Druckraumtemperatur nicht hoch "
-"sein, um Verstopfungen zu vermeiden, daher wird 0, was fĂŒr das Ausschalten "
-"steht, dringend empfohlen."
+"FĂŒr Hochtemperaturmaterialien wie ABS, ASA, PC und PA kann eine höhere "
+"Druckraumtemperatur helfen, das Verziehen zu unterdrĂŒcken oder zu reduzieren "
+"und möglicherweise zu einer höheren Festigkeit der Zwischenschichtbindung "
+"fĂŒhren. Gleichzeitig verringert eine höhere Druckraumtemperatur jedoch die "
+"Effizienz der Luftfiltration fĂŒr ABS und ASA. \n"
+"\n"
+"FĂŒr PLA, PETG, TPU, PVA und andere Niedrigtemperaturmaterialien sollte diese "
+"Option deaktiviert sein (auf 0 gesetzt werden), da die Druckraumtemperatur "
+"niedrig sein sollte, um ein Verstopfen des Extruders durch Erweichung des "
+"Materials am Heizblock zu vermeiden. \n"
+"\n"
+"Wenn diese Option aktiviert ist, wird auch eine G-Code-Variable namens "
+"chamber_temperature gesetzt, die verwendet werden kann, um die gewĂŒnschte "
+"Druckraumtemperatur an Ihr Druckstart-Makro oder ein WĂ€rmespeicher-Makro "
+"weiterzugeben, wie z.B. PRINT_START (andere Variablen) CHAMBER_TEMP=["
+"chamber_temperature]. Dies kann nĂŒtzlich sein, wenn Ihr Drucker die Befehle "
+"M141/M191 nicht unterstĂŒtzt oder wenn Sie das WĂ€rmespeichern im "
+"Druckstart-Makro behandeln möchten, wenn kein aktiver Druckraumheizer "
+"installiert ist."
msgid "Nozzle temperature for layers after the initial one"
msgstr "DĂŒsentemperatur nach der ersten Schicht"
@@ -14686,7 +14913,8 @@ msgid ""
"Current position of the extruder axis. Only used with absolute extruder "
"addressing."
msgstr ""
-"Aktuelle Position der Extruderachse. Wird nur bei absoluter Extruderadressierung verwendet."
+"Aktuelle Position der Extruderachse. Wird nur bei absoluter "
+"Extruderadressierung verwendet."
msgid "Current extruder"
msgstr "Aktueller Extruder"
@@ -14742,7 +14970,9 @@ msgid "Has single extruder MM priming"
msgstr "Hat einzelnes Extruder-MM-Priming"
msgid "Are the extra multi-material priming regions used in this print?"
-msgstr "Werden die zusÀtzlichen Multi-Material-Priming-Regionen in diesem Druck verwendet?"
+msgstr ""
+"Werden die zusÀtzlichen Multi-Material-Priming-Regionen in diesem Druck "
+"verwendet?"
msgid "Volume per extruder"
msgstr "Volumen pro Extruder"
@@ -16052,8 +16282,8 @@ msgstr ""
"Möchten Sie es ĂŒberschreiben?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you selected"
-"\". \n"
+"We would rename the presets as \"Vendor Type Serial @printer you "
+"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
"Wir wĂŒrden die Voreinstellungen als \"Hersteller Typ Seriennummer @Drucker, "
@@ -17397,54 +17627,150 @@ msgstr ""
"wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die "
"Wahrscheinlichkeit von Verwerfungen verringert werden kann."
-#~ msgid "up to"
-#~ msgstr "bis zu"
-
-#~ msgid "above"
-#~ msgstr "ĂŒber"
-
-#~ msgid "from"
-#~ msgstr "von"
-
-#~ msgid "Switching application language while some presets are modified."
+#~ msgid ""
+#~ "Your object appears to be too large. It will be scaled down to fit the "
+#~ "heat bed automatically."
#~ msgstr ""
-#~ "Umschalten der Anwendungssprache, wÀhrend einige Profile geÀndert werden."
+#~ "Ihr Objekt scheint zu groĂ zu sein. Es wird automatisch verkleinert, um "
+#~ "auf das Druckbett zu passen."
-#~ msgid "â+Shift+G"
-#~ msgstr "â+Umschalttaste+G"
+#~ msgid "Shift+G"
+#~ msgstr "Umschalt+G"
-#~ msgid "Ctrl+Shift+G"
-#~ msgstr "Strg+Umschalt+G"
+#~ msgid "Any arrow"
+#~ msgstr "Beliebiger Pfeil"
-#~ msgid "â+Any arrow"
-#~ msgstr "â+beliebiger Pfeil"
+#~ 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"
+#~ "3. Nowhere: Disables gap fill\n"
+#~ msgstr ""
+#~ "Schaltet die LĂŒckenfĂŒllung fĂŒr die ausgewĂ€hlten OberflĂ€chen ein. Die "
+#~ "minimale LĂ€nge der LĂŒcke, die gefĂŒllt wird, kann ĂŒber die Option "
+#~ "\"winzige LĂŒcken herausfiltern\" unten gesteuert werden.\n"
+#~ "\n"
+#~ "Optionen:\n"
+#~ "1. Ăberall: FĂŒllt LĂŒcken in oberen, unteren und inneren massiven "
+#~ "OberflÀchen aus\n"
+#~ "2. Obere und untere OberflĂ€chen: FĂŒllt LĂŒcken nur in oberen und unteren "
+#~ "OberflÀchen aus\n"
+#~ "3. Nirgendwo: Deaktiviert die LĂŒckenfĂŒllung\n"
-#~ msgid "â„+Left mouse button"
-#~ msgstr "â„+Linke Maustaste"
+#~ msgid ""
+#~ "Decrease this value slightly(for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag"
+#~ msgstr ""
+#~ "Verringern Sie diesen Wert geringfĂŒgig (z. B. 0,9), um die Materialmenge "
+#~ "fĂŒr die BrĂŒcke zu verringern und den Durchhang zu minimieren"
-#~ msgid "â+Left mouse button"
-#~ msgstr "â+Linke Maustaste"
+#~ 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 ""
+#~ "Dieser Wert bestimmt die Dicke der internen BrĂŒckenschicht. Dies ist die "
+#~ "erste Schicht ĂŒber der dĂŒnnen FĂŒllung. Verringern Sie diesen Wert leicht "
+#~ "(z. B. 0,9), um die OberflĂ€chenqualitĂ€t ĂŒber der dĂŒnnen FĂŒllung zu "
+#~ "verbessern."
-#~ msgid "Ctrl+Any arrow"
-#~ msgstr "Strg + beliebige Pfeiltaste"
+#~ msgid ""
+#~ "This factor affects the amount of material for top solid infill. You can "
+#~ "decrease it slightly to have smooth surface finish"
+#~ msgstr ""
+#~ "Dieser Faktor beeinflusst die Menge des Materials fĂŒr die obere FĂŒllung. "
+#~ "Sie können ihn leicht verringern, um eine glatte OberflÀchenbeschichtung "
+#~ "zu erhalten"
-#~ msgid "Alt+Left mouse button"
-#~ msgstr "Alt + Linke Maustaste"
+#~ msgid "This factor affects the amount of material for bottom solid infill"
+#~ msgstr ""
+#~ "Dieser Faktor beeinflusst die Menge des Materials fĂŒr die untere FĂŒllung"
-#~ msgid "Ctrl+Left mouse button"
-#~ msgstr "Strg + Linke Maustaste"
+#~ msgid ""
+#~ "Enable this option to slow printing down in areas where potential curled "
+#~ "perimeters may exist"
+#~ msgstr ""
+#~ "Aktivieren Sie diese Option, um den Druck in Bereichen zu verlangsamen, "
+#~ "in denen möglicherweise gekrĂŒmmte UmfĂ€nge vorhanden sind"
-#~ msgid "â+Mouse wheel"
-#~ msgstr "â+Mausrad"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "Geschwindigkeit fĂŒr BrĂŒcken und vollstĂ€ndig ĂŒberhĂ€ngende WĂ€nde."
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„+Mausrad"
+#~ 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 ""
+#~ "Geschwindigkeit der internen BrĂŒcke. Wenn der Wert als Prozentsatz "
+#~ "angegeben ist, wird er basierend auf der BrĂŒckengeschwindigkeit "
+#~ "berechnet. Standardwert ist 150%."
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "Strg + Mausrad"
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Zeit zum Laden des neuen Filaments, beim Wechseln des Filaments. Nur fĂŒr "
+#~ "statistische Zwecke."
-#~ msgid "Alt+Mouse wheel"
-#~ msgstr "Alt + Mausrad"
+#~ msgid ""
+#~ "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Zeit zum Entladen des alten Filaments, beim Wechseln des Filaments. Nur "
+#~ "fĂŒr statistische Zwecke."
+
+#~ msgid ""
+#~ "Time for the printer firmware (or the Multi Material Unit 2.0) to load a "
+#~ "new filament during a tool change (when executing the T code). This time "
+#~ "is added to the total print time by the G-code time estimator."
+#~ msgstr ""
+#~ "Zeit fĂŒr die Drucker-Firmware (oder die Multi Material Unit 2.0), um ein "
+#~ "neues Filament wÀhrend eines Werkzeugwechsels zu laden (wenn der T-Code "
+#~ "ausgefĂŒhrt wird). Diese Zeit wird zur Gesamt-Druckzeit vom G-Code-Zeit-"
+#~ "SchĂ€tzer hinzugefĂŒgt."
+
+#~ msgid ""
+#~ "Time for the printer firmware (or the Multi Material Unit 2.0) to unload "
+#~ "a filament during a tool change (when executing the T code). This time is "
+#~ "added to the total print time by the G-code time estimator."
+#~ msgstr ""
+#~ "Zeit fĂŒr die Drucker-Firmware (oder die Multi Material Unit 2.0), um ein "
+#~ "Filament wÀhrend eines Werkzeugwechsels zu entladen (wenn der T-Code "
+#~ "ausgefĂŒhrt wird). Diese Zeit wird zur Gesamt-Druckzeit vom G-Code-Zeit-"
+#~ "SchĂ€tzer hinzugefĂŒgt."
+
+#~ msgid "Filter out gaps smaller than the threshold specified"
+#~ msgstr ""
+#~ "Filtert LĂŒcken aus, die kleiner als der angegebene Schwellenwert sind"
+
+#~ 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 ""
+#~ "Diese Option aktivieren, um die Temperatur der Druckkammer zu steuern. "
+#~ "Ein M191-Befehl wird vor \"machine_start_gcode\" hinzugefĂŒgt\n"
+#~ "G-Code-Befehle: M141/M191 S(0-255)"
+
+#~ 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 ""
+#~ "Eine höhere Druckraumtemperatur kann das Verziehen unterdrĂŒcken oder "
+#~ "reduzieren und möglicherweise zu einer höheren "
+#~ "Zwischenschichtbindungsfestigkeit fĂŒr Hochtemperaturmaterialien wie ABS, "
+#~ "ASA, PC, PA und so weiter fĂŒhren. Gleichzeitig wird die Luftfiltration "
+#~ "von ABS und ASA schlechter. FĂŒr PLA, PETG, TPU, PVA und andere "
+#~ "Materialien mit niedriger Temperatur sollte die tatsÀchliche "
+#~ "Druckraumtemperatur nicht hoch sein, um Verstopfungen zu vermeiden, daher "
+#~ "wird 0, was fĂŒr das Ausschalten steht, dringend empfohlen."
#~ msgid ""
#~ "Different nozzle diameters and different filament diameters is not "
@@ -17757,8 +18083,8 @@ msgstr ""
#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
#~ "automatically load or unload filiament."
#~ msgstr ""
-#~ "WĂ€hlen Sie einen AMS-Slot und drĂŒcken Sie dann \"Laden\" oder \"Entladen"
-#~ "\", um automatisch Filament zu laden oder zu entladen."
+#~ "WĂ€hlen Sie einen AMS-Slot und drĂŒcken Sie dann \"Laden\" oder "
+#~ "\"Entladen\", um automatisch Filament zu laden oder zu entladen."
#~ msgid "MC"
#~ msgstr "MC"
@@ -18081,8 +18407,8 @@ msgstr ""
#~ msgstr "Keine dĂŒnnen Schichten (EXPERIMENTELL)"
#~ 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 ""
#~ "Wir wĂŒrden die Voreinstellungen als \"Hersteller Typ Seriennummer "
diff --git a/localization/i18n/en/OrcaSlicer_en.po b/localization/i18n/en/OrcaSlicer_en.po
index 922551be48..dbb582f073 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-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -74,6 +74,9 @@ msgstr "Smart fill angle"
msgid "On overhangs only"
msgstr "On overhangs only"
+msgid "Auto support threshold angle: "
+msgstr "Auto support threshold angle: "
+
msgid "Circle"
msgstr "Circle"
@@ -93,9 +96,6 @@ msgstr "Allows painting only on facets selected by: \"%1%\""
msgid "Highlight faces according to overhang angle."
msgstr "Highlight faces according to overhang angle."
-msgid "Auto support threshold angle: "
-msgstr "Auto support threshold angle: "
-
msgid "No auto support"
msgstr "No auto support"
@@ -1925,6 +1925,9 @@ msgstr "Simplify Model"
msgid "Center"
msgstr "Center"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "Edit Process Settings"
@@ -4041,6 +4044,15 @@ msgstr "Total time"
msgid "Total cost"
msgstr "Total cost"
+msgid "up to"
+msgstr "up to"
+
+msgid "above"
+msgstr "above"
+
+msgid "from"
+msgstr "from"
+
msgid "Color Scheme"
msgstr "Color scheme"
@@ -4104,12 +4116,12 @@ msgstr "Filament change times"
msgid "Cost"
msgstr "Cost"
-msgid "Print"
-msgstr "Print"
-
msgid "Color change"
msgstr "Color change"
+msgid "Print"
+msgstr "Print"
+
msgid "Printer"
msgstr "Printer"
@@ -4293,7 +4305,7 @@ msgstr "Volume:"
msgid "Size:"
msgstr "Size:"
-#, 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)."
@@ -4733,6 +4745,18 @@ msgstr "Pass 2"
msgid "Flow rate test - Pass 2"
msgstr "Flow rate test - Pass 2"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "Flow rate"
@@ -5990,14 +6014,6 @@ msgstr "An object with multiple parts was detected"
msgid "The file does not contain any geometry data."
msgstr "The file does not contain any geometry data."
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-
-msgid "Object too large"
-msgstr "Object too large"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
@@ -6005,6 +6021,9 @@ msgstr ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"print bed automatically?"
+msgid "Object too large"
+msgstr "Object too large"
+
msgid "Export STL file:"
msgstr "Export STL file:"
@@ -6368,6 +6387,9 @@ msgstr "Do you want to continue?"
msgid "Language selection"
msgstr "Language selection"
+msgid "Switching application language while some presets are modified."
+msgstr "Switching application language while some presets are modified."
+
msgid "Changing application language"
msgstr "Changing application language"
@@ -7457,13 +7479,13 @@ 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 ""
"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\"."
msgid "Line width"
msgstr "Line width"
@@ -8296,8 +8318,11 @@ msgstr "Objects list"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
-msgid "Shift+G"
-msgstr ""
+msgid "â+Shift+G"
+msgstr "â+Shift+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Ctrl+Shift+G"
msgid "Paste from clipboard"
msgstr "Paste from clipboard"
@@ -8347,18 +8372,33 @@ msgstr "Shift+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "Collapse/Expand the sidebar"
-msgid "Any arrow"
-msgstr ""
+msgid "â+Any arrow"
+msgstr "â+Any arrow"
msgid "Movement in camera space"
msgstr "Movement in camera space"
+msgid "â„+Left mouse button"
+msgstr "â„+Left mouse button"
+
msgid "Select a part"
msgstr "Select a part"
+msgid "â+Left mouse button"
+msgstr "â+Left mouse button"
+
msgid "Select multiple objects"
msgstr "Select multiple objects"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl+Any arrow"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt+Left mouse button"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl+Left mouse button"
+
msgid "Shift+Left mouse button"
msgstr "Shift+Left mouse button"
@@ -8461,12 +8501,24 @@ msgstr "Plater"
msgid "Move: press to snap by 1mm"
msgstr "Move: press to snap by 1mm"
+msgid "â+Mouse wheel"
+msgstr "â+Mouse wheel"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "Support/Color Painting: adjust pen radius"
+msgid "â„+Mouse wheel"
+msgstr "â„+Mouse wheel"
+
msgid "Support/Color Painting: adjust section position"
msgstr "Support/Color Painting: adjust section position"
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl+Mouse wheel"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+Mouse wheel"
+
msgid "Gizmo"
msgstr "Gizmo"
@@ -9472,14 +9524,31 @@ msgid "Apply gap fill"
msgstr ""
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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
-"only\n"
-"3. Nowhere: Disables gap fill\n"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
+"\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
msgstr ""
msgid "Everywhere"
@@ -9551,10 +9620,11 @@ msgstr "Bridge flow ratio"
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Decrease this value slightly (for example 0.9) to reduce the amount of "
-"material extruded for bridges to avoid sagging."
msgid "Internal bridge flow ratio"
msgstr ""
@@ -9562,7 +9632,11 @@ msgstr ""
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
msgid "Top surface flow ratio"
@@ -9570,15 +9644,20 @@ 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"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
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 ""
-msgid "This factor affects the amount of material for bottom solid infill"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
msgid "Precise wall"
@@ -9712,9 +9791,25 @@ msgstr ""
msgid "Slow down for curled perimeters"
msgstr ""
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
msgstr ""
msgid "mm/s or %"
@@ -9723,8 +9818,14 @@ msgstr "mm/s or %"
msgid "External"
msgstr ""
-msgid "Speed of bridge and completely overhang wall"
-msgstr "This is the speed for bridges and 100% overhang walls."
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "mm/s"
@@ -9733,8 +9834,8 @@ msgid "Internal"
msgstr ""
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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
msgid "Brim width"
@@ -10263,6 +10364,17 @@ msgstr ""
"1.05. You may be able to tune this value to get a nice flat surface if there "
"is slight overflow or underflow."
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "Enable pressure advance"
@@ -10435,18 +10547,29 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "Filament load time"
-msgid "Time to load new filament when switch filament. For statistics only"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
msgstr ""
-"Time to load new filament when switching filament, for statistical purposes "
-"only."
msgid "Filament unload time"
msgstr "Filament unload time"
-msgid "Time to unload old filament when switch filament. For statistics only"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
msgstr ""
-"Time to unload old filament when switching filament, for statistical "
-"purposes only."
msgid ""
"Filament diameter is used to calculate extrusion in gcode, so it's important "
@@ -10567,12 +10690,6 @@ msgstr ""
msgid "Cooling moves are gradually accelerating towards this speed."
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 ""
-
msgid "Ramming parameters"
msgstr ""
@@ -10581,12 +10698,6 @@ msgid ""
"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 ""
-
msgid "Enable ramming for multitool setups"
msgstr ""
@@ -10910,10 +11021,10 @@ msgstr "Full fan speed at layer"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
-"\". \"full_fan_speed_layer\" will be ignored if lower than "
-"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
-"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer "
+"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
+"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
+"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
msgid "layer"
@@ -10978,7 +11089,10 @@ msgstr "Filter out tiny gaps"
msgid "Layers and Perimeters"
msgstr "Layers and Perimeters"
-msgid "Filter out gaps smaller than the threshold specified"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
msgstr ""
msgid ""
@@ -12852,29 +12966,40 @@ msgid "Activate temperature control"
msgstr ""
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)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
msgid "Chamber temperature"
msgstr "Chamber temperature"
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
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"
@@ -14682,8 +14807,8 @@ msgstr ""
"Do you want to rewrite it?"
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 ""
@@ -15923,53 +16048,50 @@ msgstr ""
"ABS, appropriately increasing the heatbed temperature can reduce the "
"probability of warping?"
-#~ msgid "up to"
-#~ msgstr "up to"
+#~ msgid ""
+#~ "Decrease this value slightly(for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag"
+#~ msgstr ""
+#~ "Decrease this value slightly (for example 0.9) to reduce the amount of "
+#~ "material extruded for bridges to avoid sagging."
-#~ msgid "above"
-#~ msgstr "above"
+#~ 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 "from"
-#~ msgstr "from"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "This is the speed for bridges and 100% overhang walls."
-#~ msgid "Switching application language while some presets are modified."
-#~ msgstr "Switching application language while some presets are modified."
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Time to load new filament when switching filament, for statistical "
+#~ "purposes only."
-#~ msgid "â+Shift+G"
-#~ msgstr "â+Shift+G"
+#~ msgid ""
+#~ "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Time to unload old filament when switching filament, for statistical "
+#~ "purposes only."
-#~ msgid "Ctrl+Shift+G"
-#~ msgstr "Ctrl+Shift+G"
-
-#~ msgid "â+Any arrow"
-#~ msgstr "â+Any arrow"
-
-#~ msgid "â„+Left mouse button"
-#~ msgstr "â„+Left mouse button"
-
-#~ msgid "â+Left mouse button"
-#~ msgstr "â+Left mouse button"
-
-#~ msgid "Ctrl+Any arrow"
-#~ msgstr "Ctrl+Any arrow"
-
-#~ msgid "Alt+Left mouse button"
-#~ msgstr "Alt+Left mouse button"
-
-#~ msgid "Ctrl+Left mouse button"
-#~ msgstr "Ctrl+Left mouse button"
-
-#~ msgid "â+Mouse wheel"
-#~ msgstr "â+Mouse wheel"
-
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„+Mouse wheel"
-
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "Ctrl+Mouse wheel"
-
-#~ msgid "Alt+Mouse wheel"
-#~ msgstr "Alt+Mouse wheel"
+#~ 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 ""
+#~ "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 ""
#~ "Different nozzle diameters and different filament diameters is not "
diff --git a/localization/i18n/es/OrcaSlicer_es.po b/localization/i18n/es/OrcaSlicer_es.po
index c124c2eade..0f8f804cfb 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-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: Carlos Fco. Caruncho Serrano \n"
"Language-Team: \n"
@@ -74,6 +74,9 @@ msgstr "Ăngulo de relleno en puente"
msgid "On overhangs only"
msgstr "Solo en voladizos"
+msgid "Auto support threshold angle: "
+msgstr "Ăngulo del umbral de soporte automĂĄtico: "
+
msgid "Circle"
msgstr "CĂrculo"
@@ -93,9 +96,6 @@ msgstr "Permite pintar solo las facetas seleccionadas por: \"%1%\""
msgid "Highlight faces according to overhang angle."
msgstr "Resalte las caras segĂșn el ĂĄngulo del voladizo."
-msgid "Auto support threshold angle: "
-msgstr "Ăngulo del umbral de soporte automĂĄtico: "
-
msgid "No auto support"
msgstr "No auto soportes"
@@ -2007,6 +2007,9 @@ msgstr "Simplificar Modelo"
msgid "Center"
msgstr "Centrar"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "Editar Ajustes de Procesado"
@@ -4206,6 +4209,15 @@ msgstr "Tiempo total"
msgid "Total cost"
msgstr "Costo total"
+msgid "up to"
+msgstr "hasta"
+
+msgid "above"
+msgstr "sobre"
+
+msgid "from"
+msgstr "desde"
+
msgid "Color Scheme"
msgstr "Esquema de colores"
@@ -4269,12 +4281,12 @@ msgstr "Tiempos de cambio de filamento"
msgid "Cost"
msgstr "Coste"
-msgid "Print"
-msgstr "Imprimir"
-
msgid "Color change"
msgstr "Cambio de color"
+msgid "Print"
+msgstr "Imprimir"
+
msgid "Printer"
msgstr "Impresora"
@@ -4458,7 +4470,7 @@ msgstr "Volumen:"
msgid "Size:"
msgstr "Tamaño:"
-#, 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)."
@@ -4900,6 +4912,18 @@ msgstr "Paso 2"
msgid "Flow rate test - Pass 2"
msgstr "Test de Flujo - Paso 2"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "Test de Flujo"
@@ -6210,16 +6234,6 @@ msgstr "Se ha detectado un objeto con varias piezas"
msgid "The file does not contain any geometry data."
msgstr "El archivo no contiene ninguna información geométrica."
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-"Su objeto parece demasiado grande, ÂżDesea disminuirlo para que quepa en la "
-"cama caliente automĂĄticamente?."
-
-msgid "Object too large"
-msgstr "Objeto demasiado grande"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
@@ -6227,6 +6241,9 @@ msgstr ""
"Tu objeto parece demasiado grande, ÂżDeseas disminuirlo para que quepa en la "
"cama caliente automĂĄticamente?"
+msgid "Object too large"
+msgstr "Objeto demasiado grande"
+
msgid "Export STL file:"
msgstr "Exportar archivo STL:"
@@ -6607,6 +6624,10 @@ msgstr "ÂżQuieres continuar?"
msgid "Language selection"
msgstr "SelecciĂłn de idiomas"
+msgid "Switching application language while some presets are modified."
+msgstr ""
+"Cambiando idioma de la aplicaciĂłn mientras se modifican algunos perfiles."
+
msgid "Changing application language"
msgstr "Cambiar el idioma de la aplicaciĂłn"
@@ -7382,9 +7403,10 @@ msgid ""
"start printing."
msgstr ""
"Hay algunos filamentos desconocidos en los mapeados AMS. Por favor, "
-"compruebe si son los filamentos requeridos. Si lo son, presione \"Confirmar"
-"\" para empezar a imprimir. Por favor, compruebe si son los filamentos "
-"requeridos. Si lo son, presione \"Confirmar\" para empezar a imprimir."
+"compruebe si son los filamentos requeridos. Si lo son, presione "
+"\"Confirmar\" para empezar a imprimir. Por favor, compruebe si son los "
+"filamentos requeridos. Si lo son, presione \"Confirmar\" para empezar a "
+"imprimir."
#, c-format, boost-format
msgid "nozzle in preset: %s %s"
@@ -7747,13 +7769,13 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add Primitive"
-"\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add "
+"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Cuando se graba un timelapse sin cabezal, se recomienda añadir una \"Torre "
"de Purga de Timelapse\" haciendo clic con el botĂłn derecho del ratĂłn en la "
-"posiciĂłn vacĂa de la bandeja de impresiĂłn y seleccionando \"Añadir Primitivo"
-"\"->Torre de Purga de Timelapse\"."
+"posiciĂłn vacĂa de la bandeja de impresiĂłn y seleccionando \"Añadir "
+"Primitivo\"->Torre de Purga de Timelapse\"."
msgid "Line width"
msgstr "Ancho de extrusiĂłn"
@@ -8636,8 +8658,11 @@ msgstr "Lista de objetos"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importar datos de geometrĂa de los archivos STL/STEP/3MF/OBJ/AMF"
-msgid "Shift+G"
-msgstr "Shift+G"
+msgid "â+Shift+G"
+msgstr "â+Shift+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Ctrl+Shift+G"
msgid "Paste from clipboard"
msgstr "Pegar desde el portapapeles"
@@ -8687,18 +8712,33 @@ msgstr "Shift+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "Ocultar/Expandir barra lateral"
-msgid "Any arrow"
-msgstr "â+Cualquier flecha"
+msgid "â+Any arrow"
+msgstr ""
msgid "Movement in camera space"
msgstr "Movimiento en el espacio de la cĂĄmara"
+msgid "â„+Left mouse button"
+msgstr "BotĂłn de ratĂłn â„+Left"
+
msgid "Select a part"
msgstr "Seleccionar una pieza"
+msgid "â+Left mouse button"
+msgstr "â+botĂłn izquierdo de ratĂłn"
+
msgid "Select multiple objects"
msgstr "Seleccionar varios objetos"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl+Cualquier flecha"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt+BotĂłn izquierdo de ratĂłn"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl+BotĂłn izquierdo de ratĂłn"
+
msgid "Shift+Left mouse button"
msgstr "Shift+Left+BotĂłn izquierdo de ratĂłn"
@@ -8801,12 +8841,24 @@ msgstr "Bandeja"
msgid "Move: press to snap by 1mm"
msgstr "Mover: pulsar para ajustar 1mm"
+msgid "â+Mouse wheel"
+msgstr "â+Rueda del ratĂłn"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "Soporte/Pintado en color: ajuste del radio de la pluma"
+msgid "â„+Mouse wheel"
+msgstr "â„+Rueda del ratĂłn"
+
msgid "Support/Color Painting: adjust section position"
msgstr "Soporte/Pintado de color: ajuste de la posiciĂłn de la secciĂłn"
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl+Rueda del ratĂłn"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+Rueda del ratĂłn"
+
msgid "Gizmo"
msgstr "Artilugio"
@@ -9896,25 +9948,32 @@ msgid "Apply gap fill"
msgstr "Aplicar relleno de huecos"
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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
-"only\n"
-"3. Nowhere: Disables gap fill\n"
-msgstr ""
-"Activa el relleno de huecos para las superficies seleccionadas. La longitud "
-"mĂnima de hueco que se rellenarĂĄ puede controlarse desde la opciĂłn filtrar "
-"huecos pequeños que aparece mås abajo.\n"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
"\n"
-"Opciones: \n"
-"1. En todas partes: Aplica el relleno de huecos a las superficies sĂłlidas "
-"superior, inferior e interna \n"
-"2. Superficies superior e inferior: Aplica el relleno de huecos sĂłlo a las "
-"superficies superior e inferior. \n"
-"3. En ninguna parte: Desactiva el relleno de huecos\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
+msgstr ""
msgid "Everywhere"
msgstr "En todas partes"
@@ -9990,10 +10049,11 @@ msgstr "Ratio de flujo en puentes"
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Disminuya este valor ligeramente (por ejemplo 0,9) para reducir la cantidad "
-"de material para mejorar o evitar el hundimiento de puentes."
msgid "Internal bridge flow ratio"
msgstr "Ratio de flujo de puentes internos"
@@ -10001,30 +10061,33 @@ msgstr "Ratio de flujo de puentes internos"
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
-"Este valor regula el grosor de la capa puente interna. Es la primera capa "
-"sobre el relleno de baja densidad. Disminuya ligeramente este valor (por "
-"ejemplo, 0,9) para mejorar la calidad de la superficie sobre el relleno de "
-"baja densidad."
msgid "Top surface flow ratio"
msgstr "Ratio de flujo en superficie superior"
msgid ""
"This factor affects the amount of material for top solid infill. You can "
-"decrease it slightly to have smooth surface finish"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Este factor afecta a la cantidad de material de para relleno sĂłlido "
-"superior. Puede disminuirlo ligeramente para obtener un acabado suave de "
-"superficie"
msgid "Bottom surface flow ratio"
msgstr "Ratio de flujo en superficie inferior"
-msgid "This factor affects the amount of material for bottom solid infill"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Este factor afecta a la cantidad de material para el relleno sĂłlido inferior"
msgid "Precise wall"
msgstr "PerĂmetro preciso"
@@ -10204,12 +10267,26 @@ msgstr ""
msgid "Slow down for curled perimeters"
msgstr "Reducir velocidad para perĂmetros curvados"
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
msgstr ""
-"Active estĂĄ opciĂłn para bajar la velocidad de impresiĂłn en las ĂĄreas donde "
-"potencialmente podrĂan formarse perĂmetros curvados"
msgid "mm/s or %"
msgstr "mm/s o %"
@@ -10217,8 +10294,14 @@ msgstr "mm/s o %"
msgid "External"
msgstr "Externo"
-msgid "Speed of bridge and completely overhang wall"
-msgstr "Velocidad del puente y perĂmetro completo en voladizo"
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "mm/s"
@@ -10227,11 +10310,9 @@ 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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
-"Velocidad del puente interno. Si el valor es expresado como porcentaje, serĂĄ "
-"calculado en base a bridge_speed. El valor por defecto es 150%."
msgid "Brim width"
msgstr "Ancho del borde de adherencia"
@@ -10894,6 +10975,17 @@ msgstr ""
"para obtener una superficie plana adecuada cuando hay un ligero sobre flujo "
"o infra flujo"
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "Activar Avance de PresiĂłn Lineal"
@@ -11138,18 +11230,29 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "Tiempo de carga de filamento"
-msgid "Time to load new filament when switch filament. For statistics only"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
msgstr ""
-"Tiempo para cargar un nuevo filamento cuando se cambia de filamento. SĂłlo "
-"para estadĂsticas"
msgid "Filament unload time"
msgstr "Tiempo de descarga del filamento"
-msgid "Time to unload old filament when switch filament. For statistics only"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
msgstr ""
-"Tiempo para descargar el filamento viejo cuando se cambia de filamento. SĂłlo "
-"para las estadĂsticas"
msgid ""
"Filament diameter is used to calculate extrusion in gcode, so it's important "
@@ -11302,16 +11405,6 @@ msgstr ""
"Los movimientos de refrigeraciĂłn se aceleran gradualmente hacĂa esta "
"velocidad."
-msgid ""
-"Time for the printer firmware (or the Multi Material Unit 2.0) to load a new "
-"filament during a tool change (when executing the T code). This time is "
-"added to the total print time by the G-code time estimator."
-msgstr ""
-"Tiempo que tarda el firmware de la impresora (o la Unidad Multi Material "
-"2.0) en cargar un nuevo filamento durante un cambio de cabezal (al ejecutar "
-"el T-Code). El estimador de tiempo del G-Code añade este tiempo al tiempo "
-"total de impresiĂłn."
-
msgid "Ramming parameters"
msgstr "ParĂĄmetros de moldeado de extremo"
@@ -11322,16 +11415,6 @@ msgstr ""
"El Moldeado de ExtremoDialog edita esta cadena y contiene los parĂĄmetros "
"especĂficos de moldeado de extremo."
-msgid ""
-"Time for the printer firmware (or the Multi Material Unit 2.0) to unload a "
-"filament during a tool change (when executing the T code). This time is "
-"added to the total print time by the G-code time estimator."
-msgstr ""
-"Tiempo que tarda el firmware (para la unidad Multi Material 2.0) en "
-"descargar el filamento durante el cambio de cabezal ( cuando se ejecuta el T-"
-"Code). Esta duración se añade a la duración total de impresión estimada del "
-"G-Code."
-
msgid "Enable ramming for multitool setups"
msgstr "Activar moldeado de extremo para configuraciones multicabezal"
@@ -11705,10 +11788,10 @@ msgstr "Velocidad mĂĄxima del ventilador en la capa"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
-"\". \"full_fan_speed_layer\" will be ignored if lower than "
-"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
-"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer "
+"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
+"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
+"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"La velocidad de ventilador se incrementarĂĄ linealmente de cero a "
"\"close_fan_the_first_x_layers\" al mĂĄximo de capa \"full_fan_speed_layer\". "
@@ -11780,10 +11863,11 @@ msgstr "Filtrar pequeños huecos"
msgid "Layers and Perimeters"
msgstr "Capas y PerĂmetros"
-msgid "Filter out gaps smaller than the threshold specified"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
msgstr ""
-"Filtra los huecos menores que el umbral especificado. Este ajuste no "
-"afectarĂĄ a las capas superior/inferior"
msgid ""
"Speed of gap infill. Gap usually has irregular line width and should be "
@@ -13980,33 +14064,40 @@ msgid "Activate temperature control"
msgstr "Activar control de temperatura"
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)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
-"Active esta opción para controlar la temperatura de la cåmara. Se añadirå un "
-"comando M191 antes de \"machine_start_gcode\"\n"
-"Comandos G-Code: M141/M191 S(0-255)"
msgid "Chamber temperature"
msgstr "Temperatura de 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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
msgstr ""
-"Una mayor temperatura de la cĂĄmara puede ayudar a suprimir o reducir la "
-"deformaciĂłn y potencialmente conducir a una mayor resistencia de uniĂłn entre "
-"capas para materiales de alta temperatura como ABS, ASA, PC, PA, etc. Al "
-"mismo tiempo, la filtraciĂłn de aire de ABS y ASA empeorarĂĄ. Mientras que "
-"para PLA, PETG, TPU, PVA y otros materiales de baja temperatura, la "
-"temperatura real de la cĂĄmara no debe ser alta para evitar obstrucciones, "
-"por lo que 0, que significa apagar, es muy recomendable"
msgid "Nozzle temperature for layers after the initial one"
msgstr "Temperatura de la boquilla después de la primera capa"
@@ -14503,9 +14594,10 @@ msgstr ""
"NOTA: Las superficies inferior y superior no se verĂĄn afectadas por este "
"valor para evitar huecos visuales en el exterior del modelo. Ajuste \"Umbral "
"de PerĂmetro\" en la configuraciĂłn avanzada para ajustar la sensibilidad de "
-"lo que se considera una superficie superior. El \"Umbral de un Solo PerĂmetro"
-"\" sĂłlo es visible si este valor es superior al valor predeterminado de 0,5, "
-"o si las superficies superiores de un solo perĂmetro estĂĄn activados."
+"lo que se considera una superficie superior. El \"Umbral de un Solo "
+"PerĂmetro\" sĂłlo es visible si este valor es superior al valor "
+"predeterminado de 0,5, o si las superficies superiores de un solo perĂmetro "
+"estĂĄn activados."
msgid "First layer minimum wall width"
msgstr "Ancho mĂnimo del perĂmetro de la primera capa"
@@ -15275,12 +15367,12 @@ msgstr ""
"impresiĂłn de varios colores/materiales, la impresora utilizarĂĄ el parĂĄmetro "
"de compensaciĂłn por defecto para el filamento durante cada cambio de "
"filamento que tendrĂĄ un buen resultado en la mayorĂa de los casos.\n"
-"un solo color/material, con la opciĂłn \"calibraciĂłn de la dinĂĄmica de flujo"
-"\" marcada en el menĂș de inicio de impresiĂłn, la impresora seguirĂĄ el camino "
-"antiguo, calibrar el filamento antes de la impresiĂłn; cuando se inicia una "
-"impresiĂłn de varios colores/materiales, la impresora utilizarĂĄ el parĂĄmetro "
-"de compensaciĂłn por defecto para el filamento durante cada cambio de "
-"filamento que tendrĂĄ un buen resultado en la mayorĂa de los casos.\n"
+"un solo color/material, con la opciĂłn \"calibraciĂłn de la dinĂĄmica de "
+"flujo\" marcada en el menĂș de inicio de impresiĂłn, la impresora seguirĂĄ el "
+"camino antiguo, calibrar el filamento antes de la impresiĂłn; cuando se "
+"inicia una impresiĂłn de varios colores/materiales, la impresora utilizarĂĄ el "
+"parĂĄmetro de compensaciĂłn por defecto para el filamento durante cada cambio "
+"de filamento que tendrĂĄ un buen resultado en la mayorĂa de los casos.\n"
"\n"
"Tenga en cuenta que hay algunos casos que pueden hacer que los resultados de "
"la calibraciĂłn no sean fiables, como una adhesiĂłn insuficiente en la bandeja "
@@ -16036,8 +16128,8 @@ msgstr ""
"ÂżQuieres reescribirlo?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you selected"
-"\". \n"
+"We would rename the presets as \"Vendor Type Serial @printer you "
+"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
"Cambiaremos el nombre de los perfiles a \"Tipo NĂșmero de Serie @impresora "
@@ -17379,51 +17471,151 @@ msgstr ""
"aumentar adecuadamente la temperatura del lecho térmico puede reducir la "
"probabilidad de deformaciones."
-#~ msgid "up to"
-#~ msgstr "hasta"
-
-#~ msgid "above"
-#~ msgstr "sobre"
-
-#~ msgid "from"
-#~ msgstr "desde"
-
-#~ msgid "Switching application language while some presets are modified."
+#~ msgid ""
+#~ "Your object appears to be too large. It will be scaled down to fit the "
+#~ "heat bed automatically."
#~ msgstr ""
-#~ "Cambiando idioma de la aplicaciĂłn mientras se modifican algunos perfiles."
+#~ "Su objeto parece demasiado grande, ÂżDesea disminuirlo para que quepa en "
+#~ "la cama caliente automĂĄticamente?."
-#~ msgid "â+Shift+G"
-#~ msgstr "â+Shift+G"
+#~ msgid "Shift+G"
+#~ msgstr "Shift+G"
-#~ msgid "Ctrl+Shift+G"
-#~ msgstr "Ctrl+Shift+G"
+#~ msgid "Any arrow"
+#~ msgstr "â+Cualquier flecha"
-#~ msgid "â„+Left mouse button"
-#~ msgstr "BotĂłn de ratĂłn â„+Left"
+#~ 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"
+#~ "3. Nowhere: Disables gap fill\n"
+#~ msgstr ""
+#~ "Activa el relleno de huecos para las superficies seleccionadas. La "
+#~ "longitud mĂnima de hueco que se rellenarĂĄ puede controlarse desde la "
+#~ "opción filtrar huecos pequeños que aparece mås abajo.\n"
+#~ "\n"
+#~ "Opciones: \n"
+#~ "1. En todas partes: Aplica el relleno de huecos a las superficies sĂłlidas "
+#~ "superior, inferior e interna \n"
+#~ "2. Superficies superior e inferior: Aplica el relleno de huecos sĂłlo a "
+#~ "las superficies superior e inferior. \n"
+#~ "3. En ninguna parte: Desactiva el relleno de huecos\n"
-#~ msgid "â+Left mouse button"
-#~ msgstr "â+botĂłn izquierdo de ratĂłn"
+#~ msgid ""
+#~ "Decrease this value slightly(for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag"
+#~ msgstr ""
+#~ "Disminuya este valor ligeramente (por ejemplo 0,9) para reducir la "
+#~ "cantidad de material para mejorar o evitar el hundimiento de puentes."
-#~ msgid "Ctrl+Any arrow"
-#~ msgstr "Ctrl+Cualquier flecha"
+#~ 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 regula el grosor de la capa puente interna. Es la primera capa "
+#~ "sobre el relleno de baja densidad. Disminuya ligeramente este valor (por "
+#~ "ejemplo, 0,9) para mejorar la calidad de la superficie sobre el relleno "
+#~ "de baja densidad."
-#~ msgid "Alt+Left mouse button"
-#~ msgstr "Alt+BotĂłn izquierdo de ratĂłn"
+#~ msgid ""
+#~ "This factor affects the amount of material for top solid infill. You can "
+#~ "decrease it slightly to have smooth surface finish"
+#~ msgstr ""
+#~ "Este factor afecta a la cantidad de material de para relleno sĂłlido "
+#~ "superior. Puede disminuirlo ligeramente para obtener un acabado suave de "
+#~ "superficie"
-#~ msgid "Ctrl+Left mouse button"
-#~ msgstr "Ctrl+BotĂłn izquierdo de ratĂłn"
+#~ msgid "This factor affects the amount of material for bottom solid infill"
+#~ msgstr ""
+#~ "Este factor afecta a la cantidad de material para el relleno sĂłlido "
+#~ "inferior"
-#~ msgid "â+Mouse wheel"
-#~ msgstr "â+Rueda del ratĂłn"
+#~ msgid ""
+#~ "Enable this option to slow printing down in areas where potential curled "
+#~ "perimeters may exist"
+#~ msgstr ""
+#~ "Active estĂĄ opciĂłn para bajar la velocidad de impresiĂłn en las ĂĄreas "
+#~ "donde potencialmente podrĂan formarse perĂmetros curvados"
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„+Rueda del ratĂłn"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "Velocidad del puente y perĂmetro completo en voladizo"
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "Ctrl+Rueda del ratĂłn"
+#~ 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 ""
+#~ "Velocidad del puente interno. Si el valor es expresado como porcentaje, "
+#~ "serĂĄ calculado en base a bridge_speed. El valor por defecto es 150%."
-#~ msgid "Alt+Mouse wheel"
-#~ msgstr "Alt+Rueda del ratĂłn"
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Tiempo para cargar un nuevo filamento cuando se cambia de filamento. SĂłlo "
+#~ "para estadĂsticas"
+
+#~ msgid ""
+#~ "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Tiempo para descargar el filamento viejo cuando se cambia de filamento. "
+#~ "SĂłlo para las estadĂsticas"
+
+#~ msgid ""
+#~ "Time for the printer firmware (or the Multi Material Unit 2.0) to load a "
+#~ "new filament during a tool change (when executing the T code). This time "
+#~ "is added to the total print time by the G-code time estimator."
+#~ msgstr ""
+#~ "Tiempo que tarda el firmware de la impresora (o la Unidad Multi Material "
+#~ "2.0) en cargar un nuevo filamento durante un cambio de cabezal (al "
+#~ "ejecutar el T-Code). El estimador de tiempo del G-Code añade este tiempo "
+#~ "al tiempo total de impresiĂłn."
+
+#~ msgid ""
+#~ "Time for the printer firmware (or the Multi Material Unit 2.0) to unload "
+#~ "a filament during a tool change (when executing the T code). This time is "
+#~ "added to the total print time by the G-code time estimator."
+#~ msgstr ""
+#~ "Tiempo que tarda el firmware (para la unidad Multi Material 2.0) en "
+#~ "descargar el filamento durante el cambio de cabezal ( cuando se ejecuta "
+#~ "el T-Code). Esta duración se añade a la duración total de impresión "
+#~ "estimada del G-Code."
+
+#~ msgid "Filter out gaps smaller than the threshold specified"
+#~ msgstr ""
+#~ "Filtra los huecos menores que el umbral especificado. Este ajuste no "
+#~ "afectarĂĄ a las capas superior/inferior"
+
+#~ 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 ""
+#~ "Active esta opción para controlar la temperatura de la cåmara. Se añadirå "
+#~ "un comando M191 antes de \"machine_start_gcode\"\n"
+#~ "Comandos G-Code: M141/M191 S(0-255)"
+
+#~ 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 ""
+#~ "Una mayor temperatura de la cĂĄmara puede ayudar a suprimir o reducir la "
+#~ "deformaciĂłn y potencialmente conducir a una mayor resistencia de uniĂłn "
+#~ "entre capas para materiales de alta temperatura como ABS, ASA, PC, PA, "
+#~ "etc. Al mismo tiempo, la filtraciĂłn de aire de ABS y ASA empeorarĂĄ. "
+#~ "Mientras que para PLA, PETG, TPU, PVA y otros materiales de baja "
+#~ "temperatura, la temperatura real de la cĂĄmara no debe ser alta para "
+#~ "evitar obstrucciones, por lo que 0, que significa apagar, es muy "
+#~ "recomendable"
#~ msgid ""
#~ "Interlocking depth of a segmented region. Zero disables this feature."
@@ -17444,14 +17636,14 @@ msgstr ""
#~ "Cuando grabamos timelapse sin cabezal de impresiĂłn, es recomendable "
#~ "añadir un \"Torre de Purga de Intervalo\" \n"
#~ "presionando con el botĂłn derecho la posiciĂłn vacĂa de la bandeja de "
-#~ "construcción y elegir \"Añadir Primitivo\"->\"Intervalo de Torre de Purga"
-#~ "\"."
+#~ "construcción y elegir \"Añadir Primitivo\"->\"Intervalo de Torre de "
+#~ "Purga\"."
#~ msgid ""
-#~ "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"
+#~ "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 ""
#~ "CambiarĂamos el nombre de los preajustes a \"NĂșmero de serie del Vendedor "
diff --git a/localization/i18n/fr/OrcaSlicer_fr.po b/localization/i18n/fr/OrcaSlicer_fr.po
index 1f2edeab23..9471cfde7f 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-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: Guislain Cyril, Thomas Lété\n"
@@ -77,6 +77,9 @@ msgstr "Angle de remplissage intelligent"
msgid "On overhangs only"
msgstr "Sur les surplombs uniquement"
+msgid "Auto support threshold angle: "
+msgstr "Angle de seuil de support automatique : "
+
msgid "Circle"
msgstr "Cercle"
@@ -91,15 +94,11 @@ msgstr "Remplissage des espaces"
#, boost-format
msgid "Allows painting only on facets selected by: \"%1%\""
-msgstr ""
-"Permet de peindre uniquement sur les facettes sélectionnées par : \"%1%\""
+msgstr "Permet de peindre uniquement sur les facettes sélectionnées par : \"%1%\""
msgid "Highlight faces according to overhang angle."
msgstr "Mettre en surbrillance les faces en fonction de l'angle de surplomb."
-msgid "Auto support threshold angle: "
-msgstr "Angle de seuil de support automatique : "
-
msgid "No auto support"
msgstr "Pas de support auto"
@@ -113,13 +112,8 @@ msgid "Lay on face"
msgstr "Poser sur une face"
#, 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 ""
-"Le nombre de filaments dépasse le nombre maximum pris en charge par l'outil "
-"de peinture. seuls les %1% premiers filaments seront disponibles dans "
-"l'outil de peinture."
+msgid "Filament count exceeds the maximum number that painting tool supports. only the first %1% filaments will be available in painting tool."
+msgstr "Le nombre de filaments dépasse le nombre maximum pris en charge par l'outil de peinture. seuls les %1% premiers filaments seront disponibles dans l'outil de peinture."
msgid "Color Painting"
msgstr "Mettre en couleur"
@@ -531,9 +525,7 @@ msgid "Cut by Plane"
msgstr "Coupe par plan"
msgid "non-manifold edges be caused by cut tool, do you want to fix it now?"
-msgstr ""
-"les bords non pliables sont dus Ă lâoutil de coupe, voulez-vous les corriger "
-"maintenant ?"
+msgstr "les bords non pliables sont dus Ă lâoutil de coupe, voulez-vous les corriger maintenant ?"
msgid "Repairing model object"
msgstr "Réparer l'objet modÚle"
@@ -554,12 +546,8 @@ msgid "Decimate ratio"
msgstr "Rapport de décimation"
#, boost-format
-msgid ""
-"Processing model '%1%' with more than 1M triangles could be slow. It is "
-"highly recommended to simplify the model."
-msgstr ""
-"Le traitement du modĂšle '%1%' avec plus de 1 million de triangles peut ĂȘtre "
-"lent. Il est fortement recommandé de simplifier le modÚle."
+msgid "Processing model '%1%' with more than 1M triangles could be slow. It is highly recommended to simplify the model."
+msgstr "Le traitement du modĂšle '%1%' avec plus de 1 million de triangles peut ĂȘtre lent. Il est fortement recommandĂ© de simplifier le modĂšle."
msgid "Simplify model"
msgstr "Simplifier le modĂšle"
@@ -568,9 +556,7 @@ msgid "Simplify"
msgstr "Simplifier"
msgid "Simplification is currently only allowed when a single part is selected"
-msgstr ""
-"La simplification n'est actuellement autorisée que lorsqu'une seule piÚce "
-"est sélectionnée"
+msgstr "La simplification n'est actuellement autorisée que lorsqu'une seule piÚce est sélectionnée"
msgid "Error"
msgstr "Erreur"
@@ -727,20 +713,14 @@ msgstr "Police de caractÚres par défaut"
msgid "Advanced"
msgstr "Avancé"
-msgid ""
-"The text cannot be written using the selected font. Please try choosing a "
-"different font."
-msgstr ""
-"Le texte ne peut pas ĂȘtre Ă©crit avec la police sĂ©lectionnĂ©e. Veuillez "
-"essayer de choisir une autre police."
+msgid "The text cannot be written using the selected font. Please try choosing a different font."
+msgstr "Le texte ne peut pas ĂȘtre Ă©crit avec la police sĂ©lectionnĂ©e. Veuillez essayer de choisir une autre police."
msgid "Embossed text cannot contain only white spaces."
msgstr "Le texte en relief ne peut pas contenir uniquement des espaces blancs."
msgid "Text contains character glyph (represented by '?') unknown by font."
-msgstr ""
-"Le texte contient un caractĂšre glyphe (reprĂ©sentĂ© par â?â) inconnu de la "
-"police."
+msgstr "Le texte contient un caractĂšre glyphe (reprĂ©sentĂ© par â?â) inconnu de la police."
msgid "Text input doesn't show font skew."
msgstr "La saisie de texte nâaffiche pas lâinclinaison de la police."
@@ -755,9 +735,7 @@ msgid "Too tall, diminished font height inside text input."
msgstr "Hauteur de police trop élevée, diminuée dans la saisie de texte."
msgid "Too small, enlarged font height inside text input."
-msgstr ""
-"La hauteur de la police est trop petite et trop grande dans la saisie de "
-"texte."
+msgstr "La hauteur de la police est trop petite et trop grande dans la saisie de texte."
msgid "Text doesn't show current horizontal alignment."
msgstr "Le texte nâaffiche pas lâalignement horizontal actuel."
@@ -779,8 +757,7 @@ msgid "Click to change text into object part."
msgstr "Cliquez pour transformer le texte en partie dâobjet."
msgid "You can't change a type of the last solid part of the object."
-msgstr ""
-"Vous ne pouvez pas modifier le type de la derniĂšre partie pleine de lâobjet."
+msgstr "Vous ne pouvez pas modifier le type de la derniĂšre partie pleine de lâobjet."
msgctxt "EmbossOperation"
msgid "Cut"
@@ -881,8 +858,7 @@ msgid ""
"\n"
"Would you like to continue anyway?"
msgstr ""
-"La modification du style en \"%1%\" annulera la modification du style "
-"actuel.\n"
+"La modification du style en \"%1%\" annulera la modification du style actuel.\n"
"\n"
"Voulez-vous continuer quand mĂȘme ?"
@@ -891,8 +867,7 @@ msgstr "Style non valide."
#, boost-format
msgid "Style \"%1%\" can't be used and will be removed from a list."
-msgstr ""
-"Le style \"%1%\" ne peut pas ĂȘtre utilisĂ© et sera supprimĂ© de la liste."
+msgstr "Le style \"%1%\" ne peut pas ĂȘtre utilisĂ© et sera supprimĂ© de la liste."
msgid "Unset italic"
msgstr "Enlever lâitalique"
@@ -916,8 +891,7 @@ msgid ""
"Advanced options cannot be changed for the selected font.\n"
"Select another font."
msgstr ""
-"Les options avancĂ©es ne peuvent pas ĂȘtre modifiĂ©es pour la police "
-"sélectionnée.\n"
+"Les options avancĂ©es ne peuvent pas ĂȘtre modifiĂ©es pour la police sĂ©lectionnĂ©e.\n"
"Sélectionnez une autre police."
msgid "Revert using of model surface."
@@ -1000,14 +974,10 @@ msgid "Rotate text Clock-wise."
msgstr "Rotation du texte dans le sens des aiguilles dâune montre."
msgid "Unlock the text's rotation when moving text along the object's surface."
-msgstr ""
-"DĂ©verrouille la rotation du texte lorsquâil est dĂ©placĂ© le long de la "
-"surface de lâobjet."
+msgstr "DĂ©verrouille la rotation du texte lorsquâil est dĂ©placĂ© le long de la surface de lâobjet."
msgid "Lock the text's rotation when moving text along the object's surface."
-msgstr ""
-"Verrouille la rotation du texte lorsquâil est dĂ©placĂ© le long de la surface "
-"de lâobjet."
+msgstr "Verrouille la rotation du texte lorsquâil est dĂ©placĂ© le long de la surface de lâobjet."
msgid "Select from True Type Collection."
msgstr "Sélectionner dans la collection True Type."
@@ -1019,13 +989,8 @@ msgid "Orient the text towards the camera."
msgstr "Orienter le texte vers la caméra."
#, boost-format
-msgid ""
-"Can't load exactly same font(\"%1%\"). Application selected a similar "
-"one(\"%2%\"). You have to specify font for enable edit text."
-msgstr ""
-"Impossible de charger exactement la mĂȘme police (« %1% »). Lâapplication a "
-"sélectionné une police similaire (« %2% »). Vous devez spécifier la police "
-"pour permettre lâĂ©dition du texte."
+msgid "Can't load exactly same font(\"%1%\"). Application selected a similar one(\"%2%\"). You have to specify font for enable edit text."
+msgstr "Impossible de charger exactement la mĂȘme police (« %1% »). Lâapplication a sĂ©lectionnĂ© une police similaire (« %2% »). Vous devez spĂ©cifier la police pour permettre lâĂ©dition du texte."
msgid "No symbol"
msgstr "Pas de symbole"
@@ -1138,16 +1103,10 @@ msgid "Undefined stroke type"
msgstr "Type de trait non défini"
msgid "Path can't be healed from selfintersection and multiple points."
-msgstr ""
-"Le chemin ne peut pas ĂȘtre consolidĂ© Ă partir dâune auto-intersection et de "
-"points multiples."
+msgstr "Le chemin ne peut pas ĂȘtre consolidĂ© Ă partir dâune auto-intersection et de points multiples."
-msgid ""
-"Final shape constains selfintersection or multiple points with same "
-"coordinate."
-msgstr ""
-"La forme finale contient une auto-intersection ou plusieurs points ayant les "
-"mĂȘmes coordonnĂ©es."
+msgid "Final shape constains selfintersection or multiple points with same coordinate."
+msgstr "La forme finale contient une auto-intersection ou plusieurs points ayant les mĂȘmes coordonnĂ©es."
#, boost-format
msgid "Shape is marked as invisible (%1%)."
@@ -1156,19 +1115,15 @@ msgstr "La forme est marquée comme invisible (%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 ""
-"Le remplissage de la forme (%1%) contient un élément non pris en charge : "
-"%2%."
+msgstr "Le remplissage de la forme (%1%) contient un élément non pris en charge : %2%."
#, boost-format
msgid "Stroke of shape (%1%) is too thin (minimal width is %2% mm)."
-msgstr ""
-"Le trait de la forme (%1%) est trop fin (la largeur minimale est de %2% mm)."
+msgstr "Le trait de la forme (%1%) est trop fin (la largeur minimale est de %2% mm)."
#, boost-format
msgid "Stroke of shape (%1%) contains unsupported: %2%."
-msgstr ""
-"Le trait de la forme (%1%) contient un élément non pris en charge : %2%."
+msgstr "Le trait de la forme (%1%) contient un élément non pris en charge : %2%."
msgid "Face the camera"
msgstr "Faire face à la caméra"
@@ -1223,8 +1178,7 @@ msgstr "Taille dans le sens de lâembossage."
#. TRN: The placeholder contains a number.
#, boost-format
msgid "Scale also changes amount of curve samples (%1%)"
-msgstr ""
-"LâĂ©chelle modifie Ă©galement la quantitĂ© dâĂ©chantillons de la courbe (%1%)."
+msgstr "LâĂ©chelle modifie Ă©galement la quantitĂ© dâĂ©chantillons de la courbe (%1%)."
msgid "Width of SVG."
msgstr "Largeur du SVG."
@@ -1248,9 +1202,7 @@ msgid "Reset rotation"
msgstr "Réinitialiser la rotation"
msgid "Lock/unlock rotation angle when dragging above the surface."
-msgstr ""
-"Verrouillage/dĂ©verrouillage de lâangle de rotation lorsque lâon tire au-"
-"dessus de la surface."
+msgstr "Verrouillage/dĂ©verrouillage de lâangle de rotation lorsque lâon tire au-dessus de la surface."
msgid "Mirror vertically"
msgstr "Symétrie verticale"
@@ -1275,9 +1227,7 @@ msgstr "Le fichier nâexiste pas (%1%)."
#, boost-format
msgid "Filename has to end with \".svg\" but you selected %1%"
-msgstr ""
-"Le nom de fichier doit se terminer par \".svg\" mais vous avez sélectionné "
-"%1%."
+msgstr "Le nom de fichier doit se terminer par \".svg\" mais vous avez sélectionné %1%."
#, boost-format
msgid "Nano SVG parser can't load from file (%1%)."
@@ -1383,9 +1333,7 @@ msgid "%1% was replaced with %2%"
msgstr "%1% a été remplacé par %2%"
msgid "The configuration may be generated by a newer version of OrcaSlicer."
-msgstr ""
-"La configuration peut ĂȘtre gĂ©nĂ©rĂ©e par une version plus rĂ©cente de Orca "
-"Slicer."
+msgstr "La configuration peut ĂȘtre gĂ©nĂ©rĂ©e par une version plus rĂ©cente de Orca Slicer."
msgid "Some values have been replaced. Please check them:"
msgstr "Certaines valeurs ont été remplacées. Veuillez les vérifier :"
@@ -1400,34 +1348,20 @@ msgid "Machine"
msgstr "Machine"
msgid "Configuration package was loaded, but some values were not recognized."
-msgstr ""
-"Le package de configuration a été chargé, mais certaines valeurs n'ont pas "
-"été reconnues."
+msgstr "Le package de configuration a été chargé, mais certaines valeurs n'ont pas été reconnues."
#, boost-format
-msgid ""
-"Configuration file \"%1%\" was loaded, but some values were not recognized."
-msgstr ""
-"Le fichier de configuration \"%1%\" a été chargé, mais certaines valeurs "
-"n'ont pas été reconnues."
+msgid "Configuration file \"%1%\" was loaded, but some values were not recognized."
+msgstr "Le fichier de configuration \"%1%\" a été chargé, mais certaines valeurs n'ont pas été reconnues."
-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 ""
-"Orca Slicer va s'arrĂȘter Ă cause d'un manque de mĂ©moire. Il peut s'agir d'un "
-"bogue. Il sera apprécié de signaler le problÚme à notre équipe."
+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 "Orca Slicer va s'arrĂȘter Ă cause d'un manque de mĂ©moire. Il peut s'agir d'un bogue. Il sera apprĂ©ciĂ© de signaler le problĂšme Ă notre Ă©quipe."
msgid "Fatal error"
msgstr "Erreur fatale"
-msgid ""
-"OrcaSlicer will terminate because of a localization error. It will be "
-"appreciated if you report the specific scenario this issue happened."
-msgstr ""
-"Orca Slicer va s'arrĂȘter Ă cause d'une erreur de localisation. Il sera "
-"apprécié si vous signalez le scénario spécifique dans lequel ce problÚme "
-"s'est produit."
+msgid "OrcaSlicer will terminate because of a localization error. It will be appreciated if you report the specific scenario this issue happened."
+msgstr "Orca Slicer va s'arrĂȘter Ă cause d'une erreur de localisation. Il sera apprĂ©ciĂ© si vous signalez le scĂ©nario spĂ©cifique dans lequel ce problĂšme s'est produit."
msgid "Critical error"
msgstr "Erreur critique"
@@ -1453,12 +1387,10 @@ msgid "Connect %s failed! [SN:%s, code=%s]"
msgstr "La connexion à %s a échoué ! [SN : %s, code = %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 nécessite Microsoft WebView2 Runtime pour utiliser certaines "
-"fonctions.\n"
+"Orca Slicer nécessite Microsoft WebView2 Runtime pour utiliser certaines fonctions.\n"
"Cliquez sur Oui pour l'installer maintenant."
msgid "WebView2 Runtime"
@@ -1480,9 +1412,7 @@ msgstr "Chargement de la configuration"
#, c-format, boost-format
msgid "Click to download new version in default browser: %s"
-msgstr ""
-"Cliquez pour télécharger la nouvelle version dans le navigateur par défaut : "
-"%s"
+msgstr "Cliquez pour télécharger la nouvelle version dans le navigateur par défaut : %s"
msgid "The Orca Slicer needs an upgrade"
msgstr "Orca Slicer a besoin dâĂȘtre mis Ă jour"
@@ -1496,14 +1426,11 @@ msgstr "Info"
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 ""
-"Le fichier de configuration d'OrcaSlicer peut ĂȘtre corrompu et ne peut pas "
-"ĂȘtre analysĂ©.\n"
+"Le fichier de configuration d'OrcaSlicer peut ĂȘtre corrompu et ne peut pas ĂȘtre analysĂ©.\n"
"OrcaSlicer a tenté de recréer le fichier de configuration.\n"
-"Veuillez noter que les paramĂštres de l'application seront perdus, mais que "
-"les profils d'imprimante ne seront pas affectés."
+"Veuillez noter que les paramÚtres de l'application seront perdus, mais que les profils d'imprimante ne seront pas affectés."
msgid "Rebuild"
msgstr "Reconstruire"
@@ -1518,8 +1445,7 @@ msgid "Choose one file (3mf):"
msgstr "Choisissez un fichier (3mf):"
msgid "Choose one or more files (3mf/step/stl/svg/obj/amf/usd*/abc/ply):"
-msgstr ""
-"Choisissez un ou plusieurs fichiers (3mf/step/stl/svg/obj/amf/usd*/abc/ply) :"
+msgstr "Choisissez un ou plusieurs fichiers (3mf/step/stl/svg/obj/amf/usd*/abc/ply) :"
msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):"
msgstr "Choisissez un ou plusieurs fichiers (3mf/step/stl/svg/obj/amf) :"
@@ -1533,40 +1459,27 @@ msgstr "Choisissez un fichier (gcode/3mf):"
msgid "Some presets are modified."
msgstr "Certains préréglages sont modifiés."
-msgid ""
-"You can keep the modifield presets to the new project, discard or save "
-"changes as new presets."
-msgstr ""
-"Vous pouvez conserver les préréglages modifiés dans le nouveau projet, "
-"annuler ou enregistrer les modifications en tant que nouveaux préréglages."
+msgid "You can keep the modifield presets to the new project, discard or save changes as new presets."
+msgstr "Vous pouvez conserver les préréglages modifiés dans le nouveau projet, annuler ou enregistrer les modifications en tant que nouveaux préréglages."
msgid "User logged out"
msgstr "Utilisateur déconnecté"
msgid "new or open project file is not allowed during the slicing process!"
-msgstr ""
-"lâouverture ou la crĂ©ation d'un fichier de projet n'est pas autorisĂ©e "
-"pendant le processus de découpe !"
+msgstr "lâouverture ou la crĂ©ation d'un fichier de projet n'est pas autorisĂ©e pendant le processus de dĂ©coupe !"
msgid "Open Project"
msgstr "Ouvrir un projet"
-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 ""
-"La version de OrcaSlicer est trop ancienne et doit ĂȘtre mise Ă jour vers la "
-"derniĂšre version afin quâil puisse ĂȘtre utilisĂ© normalement"
+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 "La version de OrcaSlicer est trop ancienne et doit ĂȘtre mise Ă jour vers la derniĂšre version afin quâil puisse ĂȘtre utilisĂ© normalement"
msgid "Privacy Policy Update"
msgstr "Mise à jour de la politique de confidentialité"
-msgid ""
-"The number of user presets cached in the cloud has exceeded the upper limit, "
-"newly created user presets can only be used locally."
+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 ""
-"Le nombre de préréglages utilisateur mis en cache dans le nuage a dépassé la "
-"limite supérieure. Les préréglages utilisateur \n"
+"Le nombre de préréglages utilisateur mis en cache dans le nuage a dépassé la limite supérieure. Les préréglages utilisateur \n"
"nouvellement créés ne peuvent ĂȘtre utilisĂ©s que localement."
msgid "Sync user presets"
@@ -1599,13 +1512,8 @@ 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 ""
-"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 "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"
@@ -1765,16 +1673,11 @@ 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 ""
-"Ce modÚle présente un texte en relief sur la surface supérieure. Pour "
-"obtenir des résultats optimaux, il est conseillé de régler le \"Seuil une "
-"paroi(min_width_top_surface)\" sur 0 pour que l'option \"Une seule paroi sur "
-"les surfaces supérieures\" fonctionne au mieux.\n"
+"Ce modÚle présente un texte en relief sur la surface supérieure. Pour obtenir des résultats optimaux, il est conseillé de régler le \"Seuil une paroi(min_width_top_surface)\" sur 0 pour que l'option \"Une seule paroi sur les surfaces supérieures\" fonctionne au mieux.\n"
"Oui - Modifier ces paramĂštres automatiquement\n"
"Non - Ne pas modifier ces paramĂštres pour moi"
@@ -1800,8 +1703,7 @@ msgid "Fill bed with copies"
msgstr "Remplir le plateau de copies"
msgid "Fill the remaining area of bed with copies of the selected object"
-msgstr ""
-"Remplissez la zone restante du plateau avec des copies de l'objet sélectionné"
+msgstr "Remplissez la zone restante du plateau avec des copies de l'objet sélectionné"
msgid "Printable"
msgstr "Imprimable"
@@ -1889,8 +1791,7 @@ msgid "Mesh boolean"
msgstr "Opérations booléennes"
msgid "Mesh boolean operations including union and subtraction"
-msgstr ""
-"Opérations booléennes de maillage, incluant la fusion et la soustraction"
+msgstr "Opérations booléennes de maillage, incluant la fusion et la soustraction"
msgid "Along X axis"
msgstr "Le long de l'axe X"
@@ -1962,8 +1863,7 @@ msgid "Auto orientation"
msgstr "Orientation automatique"
msgid "Auto orient the object to improve print quality."
-msgstr ""
-"Orientez automatiquement l'objet pour améliorer la qualité d'impression."
+msgstr "Orientez automatiquement l'objet pour améliorer la qualité d'impression."
msgid "Select All"
msgstr "Tout sélectionner"
@@ -2010,6 +1910,9 @@ msgstr "Simplifier le ModĂšle"
msgid "Center"
msgstr "Centrer"
+msgid "Drop"
+msgstr "Déposer"
+
msgid "Edit Process Settings"
msgstr "Modifier les paramĂštres du traitement"
@@ -2062,17 +1965,13 @@ msgid "Right click the icon to fix model object"
msgstr "Cliquez avec le bouton droit sur l'icĂŽne pour fixer l'objet modĂšle"
msgid "Right button click the icon to drop the object settings"
-msgstr ""
-"Cliquez avec le bouton droit sur l'icĂŽne pour supprimer les paramĂštres de "
-"l'objet"
+msgstr "Cliquez avec le bouton droit sur l'icĂŽne pour supprimer les paramĂštres de l'objet"
msgid "Click the icon to reset all settings of the object"
msgstr "Cliquez sur l'icÎne pour réinitialiser tous les paramÚtres de l'objet"
msgid "Right button click the icon to drop the object printable property"
-msgstr ""
-"Cliquez avec le bouton droit sur l'icÎne pour déposer la propriété "
-"imprimable de l'objet"
+msgstr "Cliquez avec le bouton droit sur l'icÎne pour déposer la propriété imprimable de l'objet"
msgid "Click the icon to toggle printable property of the object"
msgstr "Cliquez sur l'icÎne pour basculer la propriété imprimable de l'objet"
@@ -2102,16 +2001,10 @@ msgid "Add Modifier"
msgstr "Ajouter un modificateur"
msgid "Switch to per-object setting mode to edit modifier settings."
-msgstr ""
-"Basculez vers le mode de réglage par objet pour modifier les paramÚtres du "
-"modificateur."
+msgstr "Basculez vers le mode de réglage par objet pour modifier les paramÚtres du modificateur."
-msgid ""
-"Switch to per-object setting mode to edit process settings of selected "
-"objects."
-msgstr ""
-"Passez en mode de réglage \"par objet\" pour modifier les paramÚtres de "
-"traitement des objets sélectionnés."
+msgid "Switch to per-object setting mode to edit process settings of selected objects."
+msgstr "Passez en mode de réglage \"par objet\" pour modifier les paramÚtres de traitement des objets sélectionnés."
msgid "Delete connector from object which is a part of cut"
msgstr "Supprimer le connecteur de l'objet qui fait partie de la découpe"
@@ -2122,25 +2015,19 @@ msgstr "Supprimer la partie pleine de l'objet qui est une partie découpée"
msgid "Delete negative volume from object which is a part of cut"
msgstr "Supprimer le volume négatif de l'objet qui fait partie de la découpe"
-msgid ""
-"To save cut correspondence you can delete all connectors from all related "
-"objects."
-msgstr ""
-"Pour enregistrer la correspondance coupée, vous pouvez supprimer tous les "
-"connecteurs de tous les objets associés."
+msgid "To save cut correspondence you can delete all connectors from all related objects."
+msgstr "Pour enregistrer la correspondance coupée, vous pouvez supprimer tous les connecteurs de tous les objets associés."
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 ""
"Cette action rompra une correspondance coupée.\n"
"AprĂšs cela, la cohĂ©rence du modĂšle ne peut ĂȘtre garantie.\n"
"\n"
-"Pour manipuler des piÚces pleines ou des volumes négatifs, vous devez "
-"d'abord invalider les informations de coupe."
+"Pour manipuler des piÚces pleines ou des volumes négatifs, vous devez d'abord invalider les informations de coupe."
msgid "Delete all connectors"
msgstr "Supprimer tous les connecteurs"
@@ -2149,8 +2036,7 @@ msgid "Deleting the last solid part is not allowed."
msgstr "La suppression de la derniÚre partie pleine n'est pas autorisée."
msgid "The target object contains only one part and can not be splited."
-msgstr ""
-"L'objet cible ne contient qu'une seule partie et ne peut pas ĂȘtre divisĂ©."
+msgstr "L'objet cible ne contient qu'une seule partie et ne peut pas ĂȘtre divisĂ©."
msgid "Assembly"
msgstr "Assemblé"
@@ -2191,22 +2077,14 @@ msgstr "Couche"
msgid "Selection conflicts"
msgstr "Conflits de sélection"
-msgid ""
-"If first selected item is an object, the second one should also be object."
-msgstr ""
-"Si le premier élément sélectionné est un objet, le second doit également "
-"ĂȘtre un objet."
+msgid "If first selected item is an object, the second one should also be object."
+msgstr "Si le premier Ă©lĂ©ment sĂ©lectionnĂ© est un objet, le second doit Ă©galement ĂȘtre un objet."
-msgid ""
-"If first selected item is a part, the second one should be part in the same "
-"object."
-msgstr ""
-"Si le premier élément sélectionné est une partie, le second doit faire "
-"partie du mĂȘme objet."
+msgid "If first selected item is a part, the second one should be part in the same object."
+msgstr "Si le premier Ă©lĂ©ment sĂ©lectionnĂ© est une partie, le second doit faire partie du mĂȘme objet."
msgid "The type of the last solid object part is not to be changed."
-msgstr ""
-"Le type de la derniĂšre partie pleine de l'objet ne doit pas ĂȘtre modifiĂ©."
+msgstr "Le type de la derniĂšre partie pleine de l'objet ne doit pas ĂȘtre modifiĂ©."
msgid "Negative Part"
msgstr "Partie négative"
@@ -2261,9 +2139,7 @@ msgid "Invalid numeric."
msgstr "Chiffre non valide."
msgid "one cell can only be copied to one or multiple cells in the same column"
-msgstr ""
-"une cellule ne peut ĂȘtre copiĂ©e que dans une ou plusieurs cellules de la "
-"mĂȘme colonne"
+msgstr "une cellule ne peut ĂȘtre copiĂ©e que dans une ou plusieurs cellules de la mĂȘme colonne"
msgid "multiple cells copy is not supported"
msgstr "la copie de plusieurs cellules n'est pas prise en charge"
@@ -2476,9 +2352,7 @@ msgid "Calibrating AMS..."
msgstr "Ătalonnage de l'AMSâŠ"
msgid "A problem occurred during calibration. Click to view the solution."
-msgstr ""
-"Un problĂšme est survenu lors de la calibration. Cliquez pour voir la "
-"solution."
+msgstr "Un problĂšme est survenu lors de la calibration. Cliquez pour voir la solution."
msgid "Calibrate again"
msgstr "Etalonner de nouveau"
@@ -2516,12 +2390,8 @@ msgstr "Vérification de la position du filament"
msgid "Grab new filament"
msgstr "Saisir un nouveau filament"
-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 "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"
@@ -2552,29 +2422,21 @@ msgstr "Agencement"
msgid "Arranging canceled."
msgstr "Agencement annulé."
-msgid ""
-"Arranging is done but there are unpacked items. Reduce spacing and try again."
-msgstr ""
-"L'arrangement est fait mais il y a des articles non emballés. Réduisez "
-"l'espacement et réessayez."
+msgid "Arranging is done but there are unpacked items. Reduce spacing and try again."
+msgstr "L'arrangement est fait mais il y a des articles non emballés. Réduisez l'espacement et réessayez."
msgid "Arranging done."
msgstr "Agencement terminé."
-msgid ""
-"Arrange failed. Found some exceptions when processing object geometries."
-msgstr ""
-"Ăchec de l'arrangement. TrouvĂ© quelques exceptions lors du traitement des "
-"géométries d'objets."
+msgid "Arrange failed. Found some exceptions when processing object geometries."
+msgstr "Ăchec de l'arrangement. TrouvĂ© quelques exceptions lors du traitement des gĂ©omĂ©tries d'objets."
#, 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 ""
-"L'agencement a ignoré les objets suivants qui ne peuvent pas tenir dans un "
-"seul plateau :\n"
+"L'agencement a ignoré les objets suivants qui ne peuvent pas tenir dans un seul plateau :\n"
"%s"
msgid ""
@@ -2587,9 +2449,7 @@ msgstr ""
msgid ""
"This plate is locked,\n"
"We can not do auto-orient on this plate."
-msgstr ""
-"Cette plaque est verrouillée, on ne peut pas faire d'auto-orientation sur "
-"cette plaque."
+msgstr "Cette plaque est verrouillée, on ne peut pas faire d'auto-orientation sur cette plaque."
msgid "Orienting..."
msgstr "OrienterâŠ"
@@ -2628,16 +2488,13 @@ msgid "Please check the printer network connection."
msgstr "Vérifiez la connexion réseau de l'imprimante."
msgid "Abnormal print file data. Please slice again."
-msgstr ""
-"Données de fichier d'impression anormales, veuillez redécouvre le fichier."
+msgstr "Données de fichier d'impression anormales, veuillez redécouvre le fichier."
msgid "Task canceled."
msgstr "Tùche annulée."
msgid "Upload task timed out. Please check the network status and try again."
-msgstr ""
-"Le délai de téléversement de la tùche a expiré. Vérifiez l'état du réseau et "
-"réessayez."
+msgstr "Le délai de téléversement de la tùche a expiré. Vérifiez l'état du réseau et réessayez."
msgid "Cloud service connection failed. Please try again."
msgstr "La connexion au service cloud a échoué. Veuillez réessayer."
@@ -2645,12 +2502,8 @@ msgstr "La connexion au service cloud a échoué. Veuillez réessayer."
msgid "Print file not found. please slice again."
msgstr "Fichier d'impression introuvable, veuillez le redécouvre."
-msgid ""
-"The print file exceeds the maximum allowable size (1GB). Please simplify the "
-"model and slice again."
-msgstr ""
-"Le fichier d'impression dépasse la taille maximale autorisée (1 Go). "
-"Veuillez simplifier le modÚle puis le redécouvre."
+msgid "The print file exceeds the maximum allowable size (1GB). Please simplify the model and slice again."
+msgstr "Le fichier d'impression dépasse la taille maximale autorisée (1 Go). Veuillez simplifier le modÚle puis le redécouvre."
msgid "Failed to send the print job. Please try again."
msgstr "L'envoi de la tùche d'impression a échoué. Veuillez réessayer."
@@ -2658,30 +2511,17 @@ msgstr "L'envoi de la tùche d'impression a échoué. Veuillez réessayer."
msgid "Failed to upload file to ftp. Please try again."
msgstr "Ăchec du tĂ©lĂ©versement du fichier vers le ftp. Veuillez rĂ©essayer."
-msgid ""
-"Check the current status of the bambu server by clicking on the link above."
-msgstr ""
-"Vérifiez l'état actuel du serveur Bambu Lab en cliquant sur le lien ci-"
-"dessus."
+msgid "Check the current status of the bambu server by clicking on the link above."
+msgstr "Vérifiez l'état actuel du serveur Bambu Lab en cliquant sur le lien ci-dessus."
-msgid ""
-"The size of the print file is too large. Please adjust the file size and try "
-"again."
-msgstr ""
-"La taille du fichier d'impression est trop importante. Ajustez la taille du "
-"fichier et réessayez."
+msgid "The size of the print file is too large. Please adjust the file size and try again."
+msgstr "La taille du fichier d'impression est trop importante. Ajustez la taille du fichier et réessayez."
msgid "Print file not found, Please slice it again and send it for printing."
-msgstr ""
-"Fichier d'impression introuvable, redécoupez-le et renvoyez-le pour "
-"impression."
+msgstr "Fichier d'impression introuvable, redécoupez-le et renvoyez-le pour impression."
-msgid ""
-"Failed to upload print file to FTP. Please check the network status and try "
-"again."
-msgstr ""
-"Impossible de charger le fichier d'impression via FTP. Vérifiez l'état du "
-"réseau et réessayez."
+msgid "Failed to upload print file to FTP. Please check the network status and try again."
+msgstr "Impossible de charger le fichier d'impression via FTP. Vérifiez l'état du réseau et réessayez."
msgid "Sending print job over LAN"
msgstr "Envoi de la tùche d'impression sur le réseau local"
@@ -2703,8 +2543,7 @@ msgstr "Envoi de la configuration d'impression"
#, c-format, boost-format
msgid "Successfully sent. Will automatically jump to the device page in %ss"
-msgstr ""
-"Envoyé avec succÚs. Basculement automatique vers la page Appareil dans %ss"
+msgstr "Envoyé avec succÚs. Basculement automatique vers la page Appareil dans %ss"
#, c-format, boost-format
msgid "Successfully sent. Will automatically jump to the next page in %ss"
@@ -2729,12 +2568,8 @@ msgstr "Une carte SD doit ĂȘtre insĂ©rĂ©e avant l'envoi Ă l'imprimante."
msgid "Importing SLA archive"
msgstr "Importation d'une archive SLA"
-msgid ""
-"The SLA archive doesn't contain any presets. Please activate some SLA "
-"printer preset first before importing that SLA archive."
-msgstr ""
-"L'archive SLA ne contient aucun préréglage. Veuillez d'abord activer "
-"certains préréglages d'imprimante SLA avant d'importer cette archive SLA."
+msgid "The SLA archive doesn't contain any presets. Please activate some SLA printer preset first before importing that SLA archive."
+msgstr "L'archive SLA ne contient aucun préréglage. Veuillez d'abord activer certains préréglages d'imprimante SLA avant d'importer cette archive SLA."
msgid "Importing canceled."
msgstr "Importation annulée."
@@ -2742,17 +2577,11 @@ msgstr "Importation annulée."
msgid "Importing done."
msgstr "Importation terminée."
-msgid ""
-"The imported SLA archive did not contain any presets. The current SLA "
-"presets were used as fallback."
-msgstr ""
-"L'archive SLA importée ne contenait aucun préréglage. Les préréglages SLA "
-"actuels ont été utilisés comme solution de secours."
+msgid "The imported SLA archive did not contain any presets. The current SLA presets were used as fallback."
+msgstr "L'archive SLA importée ne contenait aucun préréglage. Les préréglages SLA actuels ont été utilisés comme solution de secours."
msgid "You cannot load SLA project with a multi-part object on the bed"
-msgstr ""
-"Vous ne pouvez pas charger un projet SLA avec un objet en plusieurs parties "
-"sur le plateau"
+msgstr "Vous ne pouvez pas charger un projet SLA avec un objet en plusieurs parties sur le plateau"
msgid "Please check your object list before preset changing."
msgstr "Vérifiez votre liste d'objets avant de modifier le préréglage."
@@ -2799,12 +2628,8 @@ msgstr "Orca Slicer est basé sur PrusaSlicer et BambuStudio"
msgid "Libraries"
msgstr "BibliothĂšques"
-msgid ""
-"This software uses open source components whose copyright and other "
-"proprietary rights belong to their respective owners"
-msgstr ""
-"Ce logiciel utilise des composants open source dont les droits d'auteur et "
-"autres droits de propriété appartiennent à leurs propriétaires respectifs"
+msgid "This software uses open source components whose copyright and other proprietary rights belong to their respective owners"
+msgstr "Ce logiciel utilise des composants open source dont les droits d'auteur et autres droits de propriété appartiennent à leurs propriétaires respectifs"
#, c-format, boost-format
msgid "About %s"
@@ -2822,12 +2647,8 @@ msgstr "Bambu Studio est basé sur PrusaSlicer de PrusaResearch."
msgid "PrusaSlicer is originally based on Slic3r by Alessandro Ranellucci."
msgstr "PrusaSlicer est initialement basé sur Slic3r d'Alessandro Ranellucci."
-msgid ""
-"Slic3r was created by Alessandro Ranellucci with the help of many other "
-"contributors."
-msgstr ""
-"Slic3r a été créé par Alessandro Ranellucci avec l'aide de nombreux autres "
-"contributeurs."
+msgid "Slic3r was created by Alessandro Ranellucci with the help of many other contributors."
+msgstr "Slic3r a été créé par Alessandro Ranellucci avec l'aide de nombreux autres contributeurs."
msgid "Version"
msgstr "Version"
@@ -2863,9 +2684,7 @@ msgid "SN"
msgstr "Numéro de série"
msgid "Setting AMS slot information while printing is not supported"
-msgstr ""
-"La définition des informations relatives aux emplacements AMS pendant "
-"l'impression n'est pas prise en charge"
+msgstr "La définition des informations relatives aux emplacements AMS pendant l'impression n'est pas prise en charge"
msgid "Factors of Flow Dynamics Calibration"
msgstr "Facteurs de calibration dynamique du débit"
@@ -2880,9 +2699,7 @@ msgid "Factor N"
msgstr "Facteur N"
msgid "Setting Virtual slot information while printing is not supported"
-msgstr ""
-"Le réglage des informations relatives à l'emplacement virtuel pendant "
-"l'impression n'est pas pris en charge"
+msgstr "Le réglage des informations relatives à l'emplacement virtuel pendant l'impression n'est pas pris en charge"
msgid "Are you sure you want to clear the filament information?"
msgstr "Ătes-vous sĂ»r de vouloir effacer les informations du filament ?"
@@ -2896,8 +2713,7 @@ msgstr "Veuillez saisir une valeur valide (K entre %.1f~%.1f)"
#, c-format, boost-format
msgid "Please input a valid value (K in %.1f~%.1f, N in %.1f~%.1f)"
-msgstr ""
-"Veuillez saisir une valeur valide (K entre %.1f~%.1f, N entre %.1f~%.1f)"
+msgstr "Veuillez saisir une valeur valide (K entre %.1f~%.1f, N entre %.1f~%.1f)"
msgid "Other Color"
msgstr "Autre couleur"
@@ -2908,15 +2724,8 @@ msgstr "Couleur perso"
msgid "Dynamic flow calibration"
msgstr "Calibrage dynamique du débit"
-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 ""
-"La température de la buse et la vitesse volumétrique maximale affecteront "
-"les rĂ©sultats de la calibration. Veuillez saisir les mĂȘmes valeurs que lors "
-"de l'impression rĂ©elle. Ils peuvent ĂȘtre remplis automatiquement en "
-"sélectionnant un préréglage de filament."
+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 "La tempĂ©rature de la buse et la vitesse volumĂ©trique maximale affecteront les rĂ©sultats de la calibration. Veuillez saisir les mĂȘmes valeurs que lors de l'impression rĂ©elle. Ils peuvent ĂȘtre remplis automatiquement en sĂ©lectionnant un prĂ©rĂ©glage de filament."
msgid "Nozzle Diameter"
msgstr "DiamĂštre de la Buse"
@@ -2948,14 +2757,8 @@ msgstr "Démarrer"
msgid "Next"
msgstr "Suivant"
-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 ""
-"Calibrage terminé. Veuillez trouver la ligne d'extrusion la plus uniforme "
-"sur votre plateau comme dans l'image ci-dessous, et entrez la valeur sur son "
-"cÎté gauche dans le champ de saisie du facteur 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 "Calibrage terminé. Veuillez trouver la ligne d'extrusion la plus uniforme sur votre plateau comme dans l'image ci-dessous, et entrez la valeur sur son cÎté gauche dans le champ de saisie du facteur K."
msgid "Save"
msgstr "Enregistrer"
@@ -2986,11 +2789,8 @@ msgstr "Ătape"
msgid "AMS Slots"
msgstr "Emplacements AMS"
-msgid ""
-"Note: Only the AMS slots loaded with the same material type can be selected."
-msgstr ""
-"Remarque : seuls les emplacements AMS chargĂ©s avec le mĂȘme type de matĂ©riau "
-"peuvent ĂȘtre sĂ©lectionnĂ©s."
+msgid "Note: Only the AMS slots loaded with the same material type can be selected."
+msgstr "Remarque : seuls les emplacements AMS chargĂ©s avec le mĂȘme type de matĂ©riau peuvent ĂȘtre sĂ©lectionnĂ©s."
msgid "Enable AMS"
msgstr "Activer l'AMS"
@@ -3007,23 +2807,11 @@ msgstr "Impression avec du filament de la bobine externe"
msgid "Current Cabin humidity"
msgstr "Humidité dans le caisson"
-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 ""
-"Veuillez changer le dĂ©shydratant lorsquâil est trop humide. Lâindicateur "
-"peut ne pas sâafficher correctement dans les cas suivants : lorsque le "
-"couvercle est ouvert ou que le sachet de déshydratant est changé. Il faut "
-"des heures pour absorber lâhumiditĂ©, les basses tempĂ©ratures ralentissent "
-"également le processus."
+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 "Veuillez changer le dĂ©shydratant lorsquâil est trop humide. Lâindicateur peut ne pas sâafficher correctement dans les cas suivants : lorsque le couvercle est ouvert ou que le sachet de dĂ©shydratant est changĂ©. Il faut des heures pour absorber lâhumiditĂ©, les basses tempĂ©ratures ralentissent Ă©galement le processus."
-msgid ""
-"Config which AMS slot should be used for a filament used in the print job"
-msgstr ""
-"Configurez l'emplacement AMS qui doit ĂȘtre utilisĂ© pour un filament utilisĂ© "
-"dans la tĂąche d'impression"
+msgid "Config which AMS slot should be used for a filament used in the print job"
+msgstr "Configurez l'emplacement AMS qui doit ĂȘtre utilisĂ© pour un filament utilisĂ© dans la tĂąche d'impression"
msgid "Filament used in this print job"
msgstr "Filament utilisé dans ce travail d'impression"
@@ -3046,9 +2834,7 @@ msgstr "Imprimer avec du filament de l'AMS"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Impression avec du filament de la bobine externe"
-msgid ""
-"When the current material run out, the printer will continue to print in the "
-"following order."
+msgid "When the current material run out, the printer will continue to print in the following order."
msgstr ""
"Lorsque le filament actuel est épuisé, l'imprimante\n"
"continue d'imprimer dans l'ordre suivant."
@@ -3057,20 +2843,14 @@ msgid "Group"
msgstr "Groupe"
msgid "The printer does not currently support auto refill."
-msgstr ""
-"Lâimprimante ne prend actuellement pas en charge la recharge automatique."
+msgstr "Lâimprimante ne prend actuellement pas en charge la recharge automatique."
+
+msgid "AMS filament backup is not enabled, please enable it in the AMS settings."
+msgstr "La sauvegarde du filament AMS n'est pas activée, veuillez l'activer dans les paramÚtres AMS."
msgid ""
-"AMS filament backup is not enabled, please enable it in the AMS settings."
-msgstr ""
-"La sauvegarde du filament AMS n'est pas activée, veuillez l'activer dans les "
-"paramĂštres 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 ""
"Sâil y a deux filaments identiques dans AMS, la prise en\n"
"charge de la recharge automatique de filaments sera activée.\n"
@@ -3091,82 +2871,41 @@ msgstr "ParamĂštres AMS"
msgid "Insertion update"
msgstr "Insertion de la mise Ă jour"
-msgid ""
-"The AMS will automatically read the filament information when inserting a "
-"new Bambu Lab filament. This takes about 20 seconds."
-msgstr ""
-"L'AMS lit automatiquement les informations relatives au filament lors de "
-"l'insertion d'une nouvelle bobine de filament Bambu Lab. Cela prend environ "
-"20 secondes."
+msgid "The AMS will automatically read the filament information when inserting a new Bambu Lab filament. This takes about 20 seconds."
+msgstr "L'AMS lit automatiquement les informations relatives au filament lors de l'insertion d'une nouvelle bobine de filament Bambu Lab. Cela prend environ 20 secondes."
-msgid ""
-"Note: if a new filament is inserted during printing, the AMS will not "
-"automatically read any information until printing is completed."
-msgstr ""
-"Remarque : si un nouveau filament est insĂ©rĂ© pendant lâimpression, lâAMS ne "
-"lira pas automatiquement les informations jusquâĂ ce que lâimpression soit "
-"terminée."
+msgid "Note: if a new filament is inserted during printing, the AMS will not automatically read any information until printing is completed."
+msgstr "Remarque : si un nouveau filament est insĂ©rĂ© pendant lâimpression, lâAMS ne lira pas automatiquement les informations jusquâĂ ce que lâimpression soit terminĂ©e."
-msgid ""
-"When inserting a new filament, the AMS will not automatically read its "
-"information, leaving it blank for you to enter manually."
-msgstr ""
-"Lors de l'insertion d'un nouveau filament, l'AMS ne lit pas automatiquement "
-"ses informations. Elles sont laissées vides pour que vous puissiez les "
-"saisir manuellement."
+msgid "When inserting a new filament, the AMS will not automatically read its information, leaving it blank for you to enter manually."
+msgstr "Lors de l'insertion d'un nouveau filament, l'AMS ne lit pas automatiquement ses informations. Elles sont laissées vides pour que vous puissiez les saisir manuellement."
msgid "Power on update"
msgstr "Mise Ă jour de la mise sous tension"
-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 ""
-"Au démarrage, l'AMS lit automatiquement les informations relatives au "
-"filament inséré. Cela prend environ 1 minute et ce processus fait tourner "
-"les bobines de filament."
+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 "Au démarrage, l'AMS lit automatiquement les informations relatives au filament inséré. Cela prend environ 1 minute et ce processus fait tourner les bobines de filament."
-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 ""
-"L'AMS ne lira pas automatiquement les informations du filament inséré "
-"pendant le démarrage et continuera à utiliser les informations enregistrées "
-"avant le dernier arrĂȘt."
+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 "L'AMS ne lira pas automatiquement les informations du filament insĂ©rĂ© pendant le dĂ©marrage et continuera Ă utiliser les informations enregistrĂ©es avant le dernier arrĂȘt."
msgid "Update remaining capacity"
msgstr "Mettre à jour la capacité 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 ""
-"L'AMS estimera la capacité restante du filament Bambu aprÚs la mise à jour "
-"des infos du filament. Pendant l'impression, la capacité restante sera "
-"automatiquement mise Ă jour."
+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 "L'AMS estimera la capacité restante du filament Bambu aprÚs la mise à jour des infos du filament. Pendant l'impression, la capacité restante sera automatiquement mise à jour."
msgid "AMS filament backup"
msgstr "Filament de secours AMS"
-msgid ""
-"AMS will continue to another spool with the same properties of filament "
-"automatically when current filament runs out"
-msgstr ""
-"L'AMS passera automatiquement Ă une autre bobine avec les mĂȘmes propriĂ©tĂ©s "
-"de filament lorsque la bobine actuelle est épuisé"
+msgid "AMS will continue to another spool with the same properties of filament automatically when current filament runs out"
+msgstr "L'AMS passera automatiquement Ă une autre bobine avec les mĂȘmes propriĂ©tĂ©s de filament lorsque la bobine actuelle est Ă©puisĂ©"
msgid "Air Printing Detection"
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 "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"
@@ -3174,19 +2913,11 @@ msgstr "Fichier"
msgid "Calibration"
msgstr "Calibration"
-msgid ""
-"Failed to download the plug-in. Please check your firewall settings and vpn "
-"software, check and retry."
-msgstr ""
-"Ăchec du tĂ©lĂ©chargement du plug-in. Veuillez vĂ©rifier les paramĂštres de "
-"votre pare-feu et votre logiciel VPN puis réessayer."
+msgid "Failed to download the plug-in. Please check your firewall settings and vpn software, check and retry."
+msgstr "Ăchec du tĂ©lĂ©chargement du plug-in. Veuillez vĂ©rifier les paramĂštres de votre pare-feu et votre logiciel VPN puis rĂ©essayer."
-msgid ""
-"Failed to install the plug-in. Please check whether it is blocked or deleted "
-"by anti-virus software."
-msgstr ""
-"Ăchec de l'installation du plug-in. Veuillez vĂ©rifier s'il est bloquĂ© ou "
-"s'il a été supprimé par un logiciel anti-virus."
+msgid "Failed to install the plug-in. Please check whether it is blocked or deleted by anti-virus software."
+msgstr "Ăchec de l'installation du plug-in. Veuillez vĂ©rifier s'il est bloquĂ© ou s'il a Ă©tĂ© supprimĂ© par un logiciel anti-virus."
msgid "click here to see more info"
msgstr "cliquez ici pour voir plus d'informations"
@@ -3194,22 +2925,14 @@ msgstr "cliquez ici pour voir plus d'informations"
msgid "Please home all axes (click "
msgstr "Veuillez mettre Ă 0 les axes (cliquer "
-msgid ""
-") to locate the toolhead's position. This prevents device moving beyond the "
-"printable boundary and causing equipment wear."
-msgstr ""
-") pour localiser la position de la tĂȘte. Cela Ă©viter de dĂ©passer la limite "
-"imprimable et de provoquer une usure de l'équipement."
+msgid ") to locate the toolhead's position. This prevents device moving beyond the printable boundary and causing equipment wear."
+msgstr ") pour localiser la position de la tĂȘte. Cela Ă©viter de dĂ©passer la limite imprimable et de provoquer une usure de l'Ă©quipement."
msgid "Go Home"
msgstr "Retour 0"
-msgid ""
-"A error occurred. Maybe memory of system is not enough or it's a bug of the "
-"program"
-msgstr ""
-"Une erreur s'est produite. Peut-ĂȘtre que la mĂ©moire du systĂšme n'est pas "
-"suffisante ou c'est un bug du programme"
+msgid "A error occurred. Maybe memory of system is not enough or it's a bug of the program"
+msgstr "Une erreur s'est produite. Peut-ĂȘtre que la mĂ©moire du systĂšme n'est pas suffisante ou c'est un bug du programme"
msgid "Please save project and restart the program. "
msgstr "Veuillez enregistrer le projet et redémarrer le programme. "
@@ -3252,51 +2975,27 @@ msgstr "Une erreur inconnue sâest produite lors de lâexportation du 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 ""
-"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"
+"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 ""
-"Copying of the temporary G-code to the output G-code failed. There might be "
-"problem with target device, please try exporting again or using different "
-"device. The corrupted output G-code is at %1%.tmp."
-msgstr ""
-"La copie du G-code temporaire vers le G-code de sortie a échoué. Il 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 G-code de "
-"sortie corrompu se trouve dans %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 "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 G-code 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."
+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."
+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."
+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%"
@@ -3310,18 +3009,14 @@ msgid ""
"Failed to save gcode file.\n"
"Error message: %1%.\n"
"Source file %2%."
-msgstr ""
-"Ăchec de l'enregistrement du fichier gcode. Message d'erreur : %1%. Fichier "
-"source %2%."
+msgstr "Ăchec de l'enregistrement du fichier gcode. Message d'erreur : %1%. Fichier source %2%."
msgid "Copying of the temporary G-code to the output G-code failed"
msgstr "La copie du G-code temporaire vers le G-code de sortie a échoué"
#, boost-format
msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue"
-msgstr ""
-"Planification du tĂ©lĂ©versement vers `%1% `. Voir FenĂȘtre -> File d'attente "
-"de téléversement de l'hÎte d'impression"
+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"
@@ -3373,11 +3068,8 @@ msgstr "Ătat de lâappareil"
msgid "Actions"
msgstr "Actions"
-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 "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"
@@ -3467,8 +3159,7 @@ 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."
+msgstr "Données de fichier d'impression anormales. Veuillez redécouvre le fichier."
msgid "There is no device available to send printing."
msgstr "Il nây a pas de pĂ©riphĂ©rique disponible pour envoyer lâimpression."
@@ -3506,20 +3197,14 @@ msgstr "Options dâenvoi"
msgid "Send to"
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 "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 "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 "Send"
msgstr "Envoyer"
@@ -3551,19 +3236,11 @@ msgstr "Origine"
msgid "Size in X and Y of the rectangular plate."
msgstr "Taille en X et Y du plateau rectangulaire."
-msgid ""
-"Distance of the 0,0 G-code coordinate from the front left corner of the "
-"rectangle."
-msgstr ""
-"Distance des coordonnées 0,0 du G-code depuis le coin avant gauche du "
-"rectangle."
+msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle."
+msgstr "Distance des coordonnées 0,0 du G-code depuis le coin avant gauche du rectangle."
-msgid ""
-"Diameter of the print bed. It is assumed that origin (0,0) is located in the "
-"center."
-msgstr ""
-"DiamÚtre du plateau d'impression. Il est supposé que l'origine (0,0) est "
-"située au centre."
+msgid "Diameter of the print bed. It is assumed that origin (0,0) is located in the center."
+msgstr "DiamÚtre du plateau d'impression. Il est supposé que l'origine (0,0) est située au centre."
msgid "Rectangular"
msgstr "Rectangle"
@@ -3590,8 +3267,7 @@ msgid "Model"
msgstr "ModĂšle"
msgid "Choose an STL file to import bed shape from:"
-msgstr ""
-"Choisissez un fichier STL Ă partir duquel importer la forme du plateau :"
+msgstr "Choisissez un fichier STL Ă partir duquel importer la forme du plateau :"
msgid "Invalid file format."
msgstr "Format de fichier non valide."
@@ -3602,36 +3278,23 @@ msgstr "Erreur ! ModĂšle invalide"
msgid "The selected file contains no geometry."
msgstr "Le fichier sélectionné ne contient aucune géométrie."
-msgid ""
-"The selected file contains several disjoint areas. This is not supported."
-msgstr ""
-"Le fichier sélectionné contient plusieurs zones disjointes. Cela n'est pas "
-"utilisable."
+msgid "The selected file contains several disjoint areas. This is not supported."
+msgstr "Le fichier sélectionné contient plusieurs zones disjointes. Cela n'est pas utilisable."
msgid "Choose a file to import bed texture from (PNG/SVG):"
-msgstr ""
-"Choisir un fichier Ă partir duquel importer la texture du plateau (PNG/SVG) :"
+msgstr "Choisir un fichier Ă partir duquel importer la texture du plateau (PNG/SVG) :"
msgid "Choose an STL file to import bed model from:"
-msgstr ""
-"Choisissez un fichier STL Ă partir duquel importer le modĂšle de plateau :"
+msgstr "Choisissez un fichier STL Ă partir duquel importer le modĂšle de plateau :"
msgid "Bed Shape"
msgstr "Forme du plateau"
-msgid ""
-"The recommended minimum temperature is less than 190 degree or the "
-"recommended maximum temperature is greater than 300 degree.\n"
-msgstr ""
-"La température minimale recommandée est inférieure à 190 degrés ou la "
-"température maximale recommandée est supérieure à 300 degrés.\n"
+msgid "The recommended minimum temperature is less than 190 degree or the recommended maximum temperature is greater than 300 degree.\n"
+msgstr "La température minimale recommandée est inférieure à 190 degrés ou la température maximale recommandée est supérieure à 300 degrés.\n"
-msgid ""
-"The recommended minimum temperature cannot be higher than the recommended "
-"maximum temperature.\n"
-msgstr ""
-"La tempĂ©rature minimale recommandĂ©e ne peut ĂȘtre supĂ©rieure Ă la tempĂ©rature "
-"maximale recommandée.\n"
+msgid "The recommended minimum temperature cannot be higher than the recommended maximum temperature.\n"
+msgstr "La tempĂ©rature minimale recommandĂ©e ne peut ĂȘtre supĂ©rieure Ă la tempĂ©rature maximale recommandĂ©e.\n"
msgid "Please check.\n"
msgstr "Veuillez vérifier.\n"
@@ -3641,17 +3304,12 @@ msgid ""
"Please make sure whether to use the temperature to print.\n"
"\n"
msgstr ""
-"La buse peut ĂȘtre bloquĂ©e lorsque la tempĂ©rature est hors de la plage "
-"recommandée.\n"
+"La buse peut ĂȘtre bloquĂ©e lorsque la tempĂ©rature est hors de la plage recommandĂ©e.\n"
"Veuillez vous assurer d'utiliser la température pour imprimer.\n"
#, c-format, boost-format
-msgid ""
-"Recommended nozzle temperature of this filament type is [%d, %d] degree "
-"centigrade"
-msgstr ""
-"La température de buse recommandée pour ce type de filament est de [%d, %d] "
-"degrés centigrades"
+msgid "Recommended nozzle temperature of this filament type is [%d, %d] degree centigrade"
+msgstr "La température de buse recommandée pour ce type de filament est de [%d, %d] degrés centigrades"
msgid ""
"Too small max volumetric speed.\n"
@@ -3661,14 +3319,8 @@ msgstr ""
"La valeur a été réinitialisée à 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 ""
-"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"
+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 "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"
msgid ""
"Too small layer height.\n"
@@ -3684,23 +3336,15 @@ msgid ""
"Zero initial layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
-msgstr ""
-"La hauteur de couche initiale nulle n'est pas valide. La hauteur de la "
-"premiÚre couche sera réinitialisée à 0,2."
+msgstr "La hauteur de couche initiale nulle n'est pas valide. La hauteur de la premiÚre couche sera réinitialisée à 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 ""
-"Ce paramÚtre n'est utilisé que pour le réglage de la taille du modÚle avec "
-"une petite valeur dans certains cas. Par exemple, lorsque la taille du "
-"modÚle présente une petite erreur et est difficile à assembler. Pour un "
-"réglage de grande taille, veuillez utiliser la fonction d'échelle de modÚle. "
-"La valeur sera remise Ă 0."
+msgstr "Ce paramÚtre n'est utilisé que pour le réglage de la taille du modÚle avec une petite valeur dans certains cas. Par exemple, lorsque la taille du modÚle présente une petite erreur et est difficile à assembler. Pour un réglage de grande taille, veuillez utiliser la fonction d'échelle de modÚle. La valeur sera remise à 0."
msgid ""
"Too large elephant foot compensation is unreasonable.\n"
@@ -3708,43 +3352,30 @@ msgid ""
"For example, whether bed temperature is too high.\n"
"\n"
"The value will be reset to 0."
-msgstr ""
-"Une trop grande compensation de la patte d'éléphant est déraisonnable. Si "
-"vous avez vraiment un effet de patte d'éléphant important, veuillez vérifier "
-"d'autres paramÚtres. Par exemple, si la température du plateau est trop "
-"élevée. La valeur sera remise à 0."
+msgstr "Une trop grande compensation de la patte d'éléphant est déraisonnable. Si vous avez vraiment un effet de patte d'éléphant important, veuillez vérifier d'autres paramÚtres. Par exemple, si la température du plateau est trop élevée. La valeur sera remise à 0."
-msgid ""
-"Alternate extra wall does't work well when ensure vertical shell thickness "
-"is set to All. "
-msgstr ""
-"La paroi supplémentaire alternée ne fonctionne pas bien lorsque le paramÚtre "
-"Assurer lâĂ©paisseur de la coque verticale est rĂ©glĂ©e sur Tous. "
+msgid "Alternate extra wall does't work well when ensure vertical shell thickness is set to All. "
+msgstr "La paroi supplĂ©mentaire alternĂ©e ne fonctionne pas bien lorsque le paramĂštre Assurer lâĂ©paisseur de la coque verticale est rĂ©glĂ©e sur Tous. "
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 ""
"Modifier ces paramĂštres automatiquement ? \n"
-"Oui - Modifier lâĂ©paisseur de la coque verticale pour quâelle soit modĂ©rĂ©e "
-"et activer la paroi supplémentaire\n"
+"Oui - Modifier lâĂ©paisseur de la coque verticale pour quâelle soit modĂ©rĂ©e et activer la paroi supplĂ©mentaire\n"
"Non - Ne pas utiliser la paroi supplémentaire alternée"
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 ""
-"La tour de purge ne fonctionne pas lorsque la hauteur de couche adaptative "
-"ou la hauteur de couche de support indépendante est activée. \n"
+"La tour de purge ne fonctionne pas lorsque la hauteur de couche adaptative ou la hauteur de couche de support indépendante est activée. \n"
"Que souhaitez-vous conserver ? \n"
"OUI - Conserver la tour de purge \n"
-"NON - Conserver la hauteur de la couche adaptative et la hauteur de la "
-"couche de support indépendante"
+"NON - Conserver la hauteur de la couche adaptative et la hauteur de la couche de support indépendante"
msgid ""
"Prime tower does not work when Adaptive Layer Height is on.\n"
@@ -3752,8 +3383,7 @@ msgid ""
"YES - Keep Prime Tower\n"
"NO - Keep Adaptive Layer Height"
msgstr ""
-"La tour de purge ne fonctionne pas lorsque la hauteur de couche adaptative "
-"est activée. \n"
+"La tour de purge ne fonctionne pas lorsque la hauteur de couche adaptative est activée. \n"
"Que souhaitez-vous conserver ? \n"
"OUI - Conserver la tour de purge \n"
"NON - Conserver la hauteur de la couche adaptative"
@@ -3764,8 +3394,7 @@ msgid ""
"YES - Keep Prime Tower\n"
"NO - Keep Independent Support Layer Height"
msgstr ""
-"La tour de purge ne fonctionne pas lorsque la hauteur de la couche de "
-"support indépendante est activée.\n"
+"La tour de purge ne fonctionne pas lorsque la hauteur de la couche de support indépendante est activée.\n"
"Que souhaitez-vous conserver ?\n"
"OUI - Garder la tour de purge\n"
"NON - Gardez la hauteur de la couche de support indépendante"
@@ -3774,8 +3403,7 @@ msgid ""
"While printing by Object, the extruder may collide skirt.\n"
"Thus, reset the skirt layer to 1 to avoid that."
msgstr ""
-"Lors de l'impression par objet, l'extrudeur peut entrer en collision avec "
-"une jupe.\n"
+"Lors de l'impression par objet, l'extrudeur peut entrer en collision avec une jupe.\n"
"Il faut donc remettre la couche de la jupe à 1 pour éviter les collisions."
msgid ""
@@ -3785,18 +3413,11 @@ msgstr ""
"seam_slope_start_height doit ĂȘtre infĂ©rieur Ă la hauteur de couche.\n"
"Remise Ă 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 ""
-"Le mode spirale ne fonctionne que lorsque qu'il n'y a qu'une seule paroi, "
-"les supports sont désactivés, que les couches supérieures de la coque sont à "
-"0, qu'il n'y a pas de remplissage et que le type timelapse est traditionnel."
+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 "Le mode spirale ne fonctionne que lorsque qu'il n'y a qu'une seule paroi, les supports sont désactivés, que les couches supérieures de la coque sont à 0, qu'il n'y a pas de remplissage et que le type timelapse est traditionnel."
msgid " But machines with I3 structure will not generate timelapse videos."
-msgstr ""
-" Mais les machines avec une structure I3 ne généreront pas de vidéos "
-"timelapse."
+msgstr " Mais les machines avec une structure I3 ne généreront pas de vidéos timelapse."
msgid ""
"Change these settings automatically? \n"
@@ -3804,8 +3425,7 @@ msgid ""
"No - Give up using spiral mode this time"
msgstr ""
"Modifier ces paramĂštres automatiquement ? \n"
-"Oui - Modifiez ces paramĂštres et activez automatiquement le mode spirale/"
-"vase\n"
+"Oui - Modifiez ces paramĂštres et activez automatiquement le mode spirale/vase\n"
"Non - Annuler l'activation du mode spirale"
msgid "Auto bed leveling"
@@ -3869,8 +3489,7 @@ msgid "Paused due to nozzle temperature malfunction"
msgstr "Pause en raison d'un dysfonctionnement de la température de la buse"
msgid "Paused due to heat bed temperature malfunction"
-msgstr ""
-"Pause en raison d'un dysfonctionnement de la température du plateau chauffant"
+msgstr "Pause en raison d'un dysfonctionnement de la température du plateau chauffant"
msgid "Filament unloading"
msgstr "Déchargement du filament"
@@ -3888,12 +3507,10 @@ msgid "Paused due to AMS lost"
msgstr "Suspendu en raison de la perte de lâAMS"
msgid "Paused due to low speed of the heat break fan"
-msgstr ""
-"Mise en pause en raison de la faible vitesse du ventilateur du heatbreak"
+msgstr "Mise en pause en raison de la faible vitesse du ventilateur du heatbreak"
msgid "Paused due to chamber temperature control error"
-msgstr ""
-"Mise en pause en raison dâune erreur de contrĂŽle de la tempĂ©rature du caisson"
+msgstr "Mise en pause en raison dâune erreur de contrĂŽle de la tempĂ©rature du caisson"
msgid "Cooling chamber"
msgstr "Refroidissement du caisson"
@@ -3940,48 +3557,26 @@ msgstr "Ăchec de la vĂ©rification."
msgid "Update failed."
msgstr "Mise à jour a échoué."
-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 ""
-"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Ă©."
+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 "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Ă©."
-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 ""
-"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 du caisson au-dessus 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 "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 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 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 "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 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"
-msgid ""
-"This calibration does not support the currently selected nozzle diameter"
-msgstr ""
-"Cette calibration ne prend pas en charge le diamĂštre de buse actuellement "
-"sélectionné"
+msgid "This calibration does not support the currently selected nozzle diameter"
+msgstr "Cette calibration ne prend pas en charge le diamÚtre de buse actuellement sélectionné"
msgid "Current flowrate cali param is invalid"
msgstr "Le paramĂštre de calibration du dĂ©bit actuel nâest pas valide"
msgid "Selected diameter and machine diameter do not match"
-msgstr ""
-"Le diamÚtre sélectionné et le diamÚtre de la machine ne correspondent pas"
+msgstr "Le diamÚtre sélectionné et le diamÚtre de la machine ne correspondent pas"
msgid "Failed to generate cali gcode"
msgstr "Ăchec de la gĂ©nĂ©ration du G-code de calibration"
@@ -3995,19 +3590,11 @@ msgstr "Le TPU nâest pas pris en charge par lâAMS."
msgid "Bambu PET-CF/PA6-CF is not supported by AMS."
msgstr "Bambu PET-CF/PA6-CF nâest pas pris en charge par lâAMS."
-msgid ""
-"Damp PVA will become flexible and get stuck inside AMS,please take care to "
-"dry it before use."
-msgstr ""
-"Le PVA humide deviendra flexible et restera coincĂ© Ă lâintĂ©rieur de lâAMS, "
-"veuillez prendre soin de le sécher avant utilisation."
+msgid "Damp PVA will become flexible and get stuck inside AMS,please take care to dry it before use."
+msgstr "Le PVA humide deviendra flexible et restera coincĂ© Ă lâintĂ©rieur de lâAMS, veuillez prendre soin de le sĂ©cher avant utilisation."
-msgid ""
-"CF/GF filaments are hard and brittle, It's easy to break or get stuck in "
-"AMS, please use with caution."
-msgstr ""
-"Les filaments CF/GF sont durs et cassants, ils peuvent se casser ou se "
-"coincer dans lâAMS, veuillez les utiliser avec prudence."
+msgid "CF/GF filaments are hard and brittle, It's easy to break or get stuck in AMS, please use with caution."
+msgstr "Les filaments CF/GF sont durs et cassants, ils peuvent se casser ou se coincer dans lâAMS, veuillez les utiliser avec prudence."
msgid "default"
msgstr "défaut"
@@ -4017,8 +3604,7 @@ msgid "Edit Custom G-code (%1%)"
msgstr "Modifier le G-code personnalisé (%1%)"
msgid "Built-in placeholders (Double click item to add to G-code)"
-msgstr ""
-"Placeholders intĂ©grĂ©s (double-cliquez sur lâĂ©lĂ©ment pour lâajouter au G-code)"
+msgstr "Placeholders intĂ©grĂ©s (double-cliquez sur lâĂ©lĂ©ment pour lâajouter au G-code)"
msgid "Search gcode placeholders"
msgstr "Rechercher les placeholders de G-code"
@@ -4091,8 +3677,7 @@ msgstr "Validation du paramĂštre"
#, c-format, boost-format
msgid "Value %s is out of range. The valid range is from %d to %d."
-msgstr ""
-"La valeur %s est hors plage. La plage valide est comprise entre %d et %d."
+msgstr "La valeur %s est hors plage. La plage valide est comprise entre %d et %d."
msgid "Value is out of range."
msgstr "La valeur est hors plage."
@@ -4105,12 +3690,8 @@ msgid ""
msgstr "Est-ce %s%% ou %s %s ? OUI pour %s%%, NON pour %s %s."
#, boost-format
-msgid ""
-"Invalid input format. Expected vector of dimensions in the following format: "
-"\"%1%\""
-msgstr ""
-"Format d'entrée non valide. Vecteur de dimensions attendu dans le format "
-"suivant : \"%1%\""
+msgid "Invalid input format. Expected vector of dimensions in the following format: \"%1%\""
+msgstr "Format d'entrée non valide. Vecteur de dimensions attendu dans le format suivant : \"%1%\""
msgid "Input value is out of range"
msgstr "La valeur entrée est hors plage"
@@ -4135,7 +3716,7 @@ msgid "Temperature"
msgstr "Température"
msgid "Flow"
-msgstr "Flux"
+msgstr "Débit"
msgid "Tool"
msgstr "Outil"
@@ -4200,6 +3781,15 @@ msgstr "Durée totale"
msgid "Total cost"
msgstr "Coût total"
+msgid "up to"
+msgstr "jusquâĂ "
+
+msgid "above"
+msgstr "plus que"
+
+msgid "from"
+msgstr "de"
+
msgid "Color Scheme"
msgstr "Schéma de couleur"
@@ -4263,12 +3853,12 @@ msgstr "Temps de changement de filament"
msgid "Cost"
msgstr "Coût"
-msgid "Print"
-msgstr "Imprimer"
-
msgid "Color change"
msgstr "Changement de couleur"
+msgid "Print"
+msgstr "Imprimer"
+
msgid "Printer"
msgstr "Imprimante"
@@ -4453,12 +4043,8 @@ msgid "Size:"
msgstr "Taille:"
#, 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 ""
-"Des conflits de chemins G-code ont été trouvés au niveau de la couche %d, z "
-"= %.2lf mm. Veuillez séparer davantage les objets en conflit (%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 "Des conflits de chemins G-code ont été trouvés au niveau de la couche %d, z = %.2lf mm. Veuillez séparer davantage les objets en conflit (%s <-> %s)."
msgid "An object is layed over the boundary of plate."
msgstr "Un objet est posé sur la limite du plateau."
@@ -4474,13 +4060,10 @@ msgstr "Seul l'objet en cours d'édition est visible."
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 ""
-"Un objet est posé sur la limite de la plaque ou dépasse la limite de "
-"hauteur.\n"
-"Veuillez résoudre le problÚme en le déplaçant totalement sur ou hors du "
-"plateau, et en confirmant que la hauteur entre dans le volume d'impression."
+"Un objet est posé sur la limite de la plaque ou dépasse la limite de hauteur.\n"
+"Veuillez résoudre le problÚme en le déplaçant totalement sur ou hors du plateau, et en confirmant que la hauteur entre dans le volume d'impression."
msgid "Calibration step selection"
msgstr "Sélection de l'étape de calibration"
@@ -4501,12 +4084,10 @@ msgid "Calibration program"
msgstr "Programme de calibration"
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 ""
-"Le processus de calibration détecte automatiquement l'état de votre appareil "
-"pour minimiser les écarts.\n"
+"Le processus de calibration détecte automatiquement l'état de votre appareil pour minimiser les écarts.\n"
"Il permet Ă l'appareil de fonctionner de maniĂšre optimale."
msgid "Calibration Flow"
@@ -4581,8 +4162,7 @@ msgid "Application is closing"
msgstr "L'application se ferme"
msgid "Closing Application while some presets are modified."
-msgstr ""
-"Fermeture de l'application pendant que certains préréglages sont modifiés."
+msgstr "Fermeture de l'application pendant que certains préréglages sont modifiés."
msgid "Logging"
msgstr "Enregistrement"
@@ -4855,8 +4435,7 @@ msgid "Show 3D Navigator"
msgstr "Afficher le navigateur 3D"
msgid "Show 3D navigator in Prepare and Preview scene"
-msgstr ""
-"Afficher le navigateur 3D dans la scÚne de préparation et de prévisualisation"
+msgstr "Afficher le navigateur 3D dans la scÚne de préparation et de prévisualisation"
msgid "Reset Window Layout"
msgstr "RĂ©initialiser la prĂ©sentation de la fenĂȘtre"
@@ -4897,6 +4476,18 @@ msgstr "Passe 2"
msgid "Flow rate test - Pass 2"
msgstr "Test de débit - Passe 2"
+msgid "YOLO (Recommended)"
+msgstr "YOLO (Recommandé)"
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr "Calibrage du dĂ©bit YOLO dâOrca, par intervalle de 0,01"
+
+msgid "YOLO (perfectionist version)"
+msgstr "YOLO (version perfectionniste)"
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr "Calibrage du dĂ©bit YOLO dâOrca, par intervalle de 0,005"
+
msgid "Flow rate"
msgstr "Débit"
@@ -4969,14 +4560,11 @@ msgstr "&Aide"
#, c-format, boost-format
msgid "A file exists with the same name: %s, do you want to override it."
-msgstr ""
-"Il existe un fichier portant le mĂȘme nom : %s. Voulez-vous le remplacer ?"
+msgstr "Il existe un fichier portant le mĂȘme nom : %s. Voulez-vous le remplacer ?"
#, c-format, boost-format
msgid "A config exists with the same name: %s, do you want to override it."
-msgstr ""
-"Il existe une configuration portant le mĂȘme nom : %s. Voulez-vous la "
-"remplacer ?"
+msgstr "Il existe une configuration portant le mĂȘme nom : %s. Voulez-vous la remplacer ?"
msgid "Overwrite file"
msgstr "Remplacer le fichier"
@@ -4993,11 +4581,8 @@ msgstr "Choisir un dossier"
#, c-format, 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] ""
-"Il y a %d configuration exportée. (Uniquement les configurations non systÚme)"
-msgstr[1] ""
-"Il y a %d configurations exportées. (Uniquement les configurations non "
-"systĂšme)"
+msgstr[0] "Il y a %d configuration exportée. (Uniquement les configurations non systÚme)"
+msgstr[1] "Il y a %d configurations exportées. (Uniquement les configurations non systÚme)"
msgid "Export result"
msgstr "Exporter le Résultat"
@@ -5007,23 +4592,16 @@ msgstr "Sélectionnez le profil à charger :"
#, 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] ""
-"Il y a %d configuration importée. (Uniquement les configurations non systÚme "
-"et compatibles)"
-msgstr[1] ""
-"Il y a %d configurations importées. (Uniquement les configurations non "
-"systĂšme et compatibles)"
+msgid_plural "There are %d configs imported. (Only non-system and compatible configs)"
+msgstr[0] "Il y a %d configuration importée. (Uniquement les configurations non systÚme et compatibles)"
+msgstr[1] "Il y a %d configurations importées. (Uniquement les configurations non systÚme et compatibles)"
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"
-"Conseil : assurez-vous dâavoir ajoutĂ© lâimprimante correspondante avant "
-"dâimporter les configurations."
+"Conseil : assurez-vous dâavoir ajoutĂ© lâimprimante correspondante avant dâimporter les configurations."
msgid "Import result"
msgstr "Importer le résultat"
@@ -5054,43 +4632,28 @@ msgid "Synchronization"
msgstr "Synchronisation"
msgid "The device cannot handle more conversations. Please retry later."
-msgstr ""
-"L'appareil ne peut pas gérer plus de conversations. Veuillez réessayer plus "
-"tard."
+msgstr "L'appareil ne peut pas gérer plus de conversations. Veuillez réessayer plus tard."
msgid "Player is malfunctioning. Please reinstall the system player."
-msgstr ""
-"Le lecteur ne fonctionne pas correctement. Veuillez réinstaller le lecteur "
-"systĂšme."
+msgstr "Le lecteur ne fonctionne pas correctement. Veuillez réinstaller le lecteur systÚme."
msgid "The player is not loaded, please click \"play\" button to retry."
-msgstr ""
-"Le lecteur nâest pas chargĂ©, veuillez cliquer sur le bouton « play » pour "
-"réessayer."
+msgstr "Le lecteur nâest pas chargĂ©, veuillez cliquer sur le bouton « play » pour rĂ©essayer."
msgid "Please confirm if the printer is connected."
msgstr "Veuillez vĂ©rifier que lâimprimante est bien connectĂ©e."
-msgid ""
-"The printer is currently busy downloading. Please try again after it "
-"finishes."
-msgstr ""
-"Lâimprimante est actuellement occupĂ©e Ă tĂ©lĂ©charger. Veuillez rĂ©essayer une "
-"fois le téléchargement terminé."
+msgid "The printer is currently busy downloading. Please try again after it finishes."
+msgstr "Lâimprimante est actuellement occupĂ©e Ă tĂ©lĂ©charger. Veuillez rĂ©essayer une fois le tĂ©lĂ©chargement terminĂ©."
msgid "Printer camera is malfunctioning."
msgstr "La camĂ©ra de lâimprimante ne fonctionne pas correctement."
msgid "Problem occured. Please update the printer firmware and try again."
-msgstr ""
-"Un problĂšme sâest produit. Veuillez mettre Ă jour le micrologiciel de "
-"lâimprimante et rĂ©essayer."
+msgstr "Un problĂšme sâest produit. Veuillez mettre Ă jour le micrologiciel de lâimprimante et rĂ©essayer."
-msgid ""
-"LAN Only Liveview is off. Please turn on the liveview on printer screen."
-msgstr ""
-"La fonction vue en direct sur réseau local est désactivée. Veuillez activer "
-"lâaffichage en direct sur lâĂ©cran de lâimprimante."
+msgid "LAN Only Liveview is off. Please turn on the liveview on printer screen."
+msgstr "La fonction vue en direct sur rĂ©seau local est dĂ©sactivĂ©e. Veuillez activer lâaffichage en direct sur lâĂ©cran de lâimprimante."
msgid "Please enter the IP of printer to connect."
msgstr "Veuillez saisir lâIP de lâimprimante Ă connecter."
@@ -5101,12 +4664,8 @@ msgstr "InitialisationâŠ"
msgid "Connection Failed. Please check the network and try again"
msgstr "Ăchec de la connexion. Veuillez vĂ©rifier le rĂ©seau et rĂ©essayer"
-msgid ""
-"Please check the network and try again, You can restart or update the "
-"printer if the issue persists."
-msgstr ""
-"Veuillez vérifier le réseau et réessayer, Vous pouvez redémarrer ou mettre à "
-"jour lâimprimante si le problĂšme persiste."
+msgid "Please check the network and try again, You can restart or update the printer if the issue persists."
+msgstr "Veuillez vĂ©rifier le rĂ©seau et rĂ©essayer, Vous pouvez redĂ©marrer ou mettre Ă jour lâimprimante si le problĂšme persiste."
msgid "The printer has been logged out and cannot connect."
msgstr "Lâimprimante a Ă©tĂ© dĂ©connectĂ©e et ne peut pas se connecter."
@@ -5115,9 +4674,7 @@ msgid "Stopped."
msgstr "ArrĂȘtĂ©."
msgid "LAN Connection Failed (Failed to start liveview)"
-msgstr ""
-"Ăchec de la connexion au rĂ©seau local (Ă©chec du dĂ©marrage de lâaffichage en "
-"direct)"
+msgstr "Ăchec de la connexion au rĂ©seau local (Ă©chec du dĂ©marrage de lâaffichage en direct)"
msgid ""
"Virtual Camera Tools is required for this task!\n"
@@ -5219,30 +4776,19 @@ msgid "Load failed"
msgstr "Ăchec du chargement"
msgid "Initialize failed (Device connection not ready)!"
-msgstr ""
-"L'initialisation a Ă©chouĂ© (la connexion de l'appareil n'est pas prĂȘte) !"
+msgstr "L'initialisation a Ă©chouĂ© (la connexion de l'appareil n'est pas prĂȘte) !"
-msgid ""
-"Browsing file in SD card is not supported in current firmware. Please update "
-"the printer firmware."
-msgstr ""
-"La navigation dans les fichiers de la carte SD nâest pas prise en charge par "
-"le micrologiciel actuel. Veuillez mettre Ă jour le micrologiciel de "
-"lâimprimante."
+msgid "Browsing file in SD card is not supported in current firmware. Please update the printer firmware."
+msgstr "La navigation dans les fichiers de la carte SD nâest pas prise en charge par le micrologiciel actuel. Veuillez mettre Ă jour le micrologiciel de lâimprimante."
msgid "Initialize failed (Storage unavailable, insert SD card.)!"
-msgstr ""
-"Ăchec de lâinitialisation (Stockage indisponible, insĂ©rer la carte SD.) !"
+msgstr "Ăchec de lâinitialisation (Stockage indisponible, insĂ©rer la carte SD.) !"
msgid "LAN Connection Failed (Failed to view sdcard)"
-msgstr ""
-"Ăchec de la connexion au rĂ©seau local (Ăchec de la visualisation de la carte "
-"SD)"
+msgstr "Ăchec de la connexion au rĂ©seau local (Ăchec de la visualisation de la carte SD)"
msgid "Browsing file in SD card is not supported in LAN Only Mode."
-msgstr ""
-"La navigation dans les fichiers de la carte SD nâest pas prise en charge en "
-"mode LAN uniquement."
+msgstr "La navigation dans les fichiers de la carte SD nâest pas prise en charge en mode LAN uniquement."
#, c-format, boost-format
msgid "Initialize failed (%s)!"
@@ -5250,14 +4796,9 @@ msgstr "L'initialisation a échoué (%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] ""
-"Vous allez supprimer le fichier %u de lâimprimante. Ătes-vous sĂ»r de vouloir "
-"continuer ?"
-msgstr[1] ""
-"Vous allez supprimer %u fichiers de lâimprimante. Ătes-vous sĂ»r de vouloir "
-"continuer ?"
+msgid_plural "You are going to delete %u files from printer. Are you sure to continue?"
+msgstr[0] "Vous allez supprimer le fichier %u de lâimprimante. Ătes-vous sĂ»r de vouloir continuer ?"
+msgstr[1] "Vous allez supprimer %u fichiers de lâimprimante. Ătes-vous sĂ»r de vouloir continuer ?"
msgid "Delete files"
msgstr "Supprimer les fichiers"
@@ -5278,12 +4819,8 @@ msgstr "Ăchec de la rĂ©cupĂ©ration des informations de modĂšle de lâimprimant
msgid "Failed to parse model information."
msgstr "Ăchec de lâanalyse des informations sur le modĂšle."
-msgid ""
-"The .gcode.3mf file contains no G-code data.Please slice it with Orca Slicer "
-"and export a new .gcode.3mf file."
-msgstr ""
-"Le fichier G-code .3mf ne contient pas de données G-code. Veuillez le "
-"découper avec OrcaSlicer et exporter un nouveau fichier G-code .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 "Le fichier G-code .3mf ne contient pas de données G-code. Veuillez le découper avec OrcaSlicer et exporter un nouveau fichier G-code .3mf."
#, c-format, boost-format
msgid "File '%s' was lost! Please download it again."
@@ -5313,12 +4850,8 @@ msgstr "Téléchargement terminé"
msgid "Downloading %d%%..."
msgstr "Téléchargement %d%%..."
-msgid ""
-"Reconnecting the printer, the operation cannot be completed immediately, "
-"please try again later."
-msgstr ""
-"Reconnexion de lâimprimante, lâopĂ©ration ne peut ĂȘtre effectuĂ©e maintenant, "
-"veuillez réessayer plus tard."
+msgid "Reconnecting the printer, the operation cannot be completed immediately, please try again later."
+msgstr "Reconnexion de lâimprimante, lâopĂ©ration ne peut ĂȘtre effectuĂ©e maintenant, veuillez rĂ©essayer plus tard."
msgid "File does not exist."
msgstr "Le fichier nâexiste pas."
@@ -5397,9 +4930,7 @@ msgstr ""
msgid "How do you like this printing file?"
msgstr "Que pensez-vous de ce fichier dâimpression ?"
-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 "(Le modÚle a déjà été noté. Votre note écrasera la note précédente.)"
msgid "Rate"
@@ -5474,12 +5005,8 @@ msgstr "Couche : %s"
msgid "Layer: %d/%d"
msgstr "Couche : %d/%d"
-msgid ""
-"Please heat the nozzle to above 170 degree before loading or unloading "
-"filament."
-msgstr ""
-"Veuillez chauffer la buse à plus de 170 degrés avant de charger ou de "
-"décharger le filament."
+msgid "Please heat the nozzle to above 170 degree before loading or unloading filament."
+msgstr "Veuillez chauffer la buse à plus de 170 degrés avant de charger ou de décharger le filament."
msgid "Still unload"
msgstr "Décharger encore"
@@ -5490,12 +5017,8 @@ msgstr "Charger encore"
msgid "Please select an AMS slot before calibration"
msgstr "Veuillez sélectionner un emplacement AMS avant la calibration"
-msgid ""
-"Cannot read filament info: the filament is loaded to the tool head,please "
-"unload the filament and try again."
-msgstr ""
-"Impossible de lire les informations sur le filament: le filament est chargé "
-"dans l'extrudeur. Veuillez décharger le filament et réessayer."
+msgid "Cannot read filament info: the filament is loaded to the tool head,please unload the filament and try again."
+msgstr "Impossible de lire les informations sur le filament: le filament est chargé dans l'extrudeur. Veuillez décharger le filament et réessayer."
msgid "This only takes effect during printing"
msgstr "Cela ne prend effet que pendant l'impression"
@@ -5561,21 +5084,17 @@ msgid " can not be opened\n"
msgstr " ne peut pas ĂȘtre ouvert\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 ""
-"Les problĂšmes suivants se sont produits lors du processus dâenvoi des "
-"images. Voulez-vous les ignorer ?\n"
+"Les problĂšmes suivants se sont produits lors du processus dâenvoi des images. Voulez-vous les ignorer ?\n"
"\n"
msgid "info"
msgstr "info"
msgid "Synchronizing the printing results. Please retry a few seconds later."
-msgstr ""
-"Synchronisation des rĂ©sultats dâimpression. Veuillez rĂ©essayer dans quelques "
-"secondes."
+msgstr "Synchronisation des rĂ©sultats dâimpression. Veuillez rĂ©essayer dans quelques secondes."
msgid "Upload failed\n"
msgstr "Ăchec de lâenvoi\n"
@@ -5588,8 +5107,7 @@ msgid ""
"\n"
" error code: "
msgstr ""
-"Le rĂ©sultat de votre commentaire ne peut pas ĂȘtre tĂ©lĂ©chargĂ© pour certaines "
-"raisons :\n"
+"Le rĂ©sultat de votre commentaire ne peut pas ĂȘtre tĂ©lĂ©chargĂ© pour certaines raisons :\n"
"\n"
" code dâerreur : "
@@ -5605,12 +5123,8 @@ msgstr ""
"\n"
"Souhaitez-vous ĂȘtre redirigĂ© vers la page Web pour lâĂ©valuation ?"
-msgid ""
-"Some of your images failed to upload. Would you like to redirect to the "
-"webpage for rating?"
-msgstr ""
-"Certaines de vos images nâont pas pu ĂȘtre envoyĂ©es. Souhaitez-vous ĂȘtre "
-"redirigĂ© vers la page Web pour lâĂ©valuation ?"
+msgid "Some of your images failed to upload. Would you like to redirect to the webpage for rating?"
+msgstr "Certaines de vos images nâont pas pu ĂȘtre envoyĂ©es. Souhaitez-vous ĂȘtre redirigĂ© vers la page Web pour lâĂ©valuation ?"
msgid "You can select up to 16 images."
msgstr "Vous pouvez sĂ©lectionner jusquâĂ 16 images."
@@ -5661,12 +5175,8 @@ msgstr "Sauter"
msgid "Newer 3mf version"
msgstr "Nouvelle version 3mf"
-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 "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"
@@ -5675,14 +5185,10 @@ msgid "Download Beta Version"
msgstr "TĂ©lĂ©charger la version bĂȘta"
msgid "The 3mf file version is newer than the current Orca Slicer version."
-msgstr ""
-"La version du fichier 3mf est plus récente que la version actuelle "
-"dâOrcaSlicer"
+msgstr "La version du fichier 3mf est plus rĂ©cente que la version actuelle dâOrcaSlicer"
msgid "Update your Orca Slicer could enable all functionality in the 3mf file."
-msgstr ""
-"La mise Ă jour dâOrcaSlicer permet dâactiver toutes les fonctionnalitĂ©s du "
-"fichier 3mf."
+msgstr "La mise Ă jour dâOrcaSlicer permet dâactiver toutes les fonctionnalitĂ©s du fichier 3mf."
msgid "Current Version: "
msgstr "Version actuelle : "
@@ -5799,8 +5305,7 @@ msgid "WARNING:"
msgstr "ATTENTION :"
msgid "Your model needs support ! Please make support material enable."
-msgstr ""
-"Votre modÚle a besoin de supports ! Veuillez activer le matériau de support."
+msgstr "Votre modÚle a besoin de supports ! Veuillez activer le matériau de support."
msgid "Gcode path overlap"
msgstr "Chevauchement de chemin G-code"
@@ -5820,12 +5325,8 @@ msgstr "Couches"
msgid "Range"
msgstr "Zone"
-msgid ""
-"The application cannot run normally because OpenGL version is lower than "
-"2.0.\n"
-msgstr ""
-"L'application ne peut pas fonctionner normalement car la version d'OpenGL "
-"est inférieure à 2.0.\n"
+msgid "The application cannot run normally because OpenGL version is lower than 2.0.\n"
+msgstr "L'application ne peut pas fonctionner normalement car la version d'OpenGL est inférieure à 2.0.\n"
msgid "Please upgrade your graphics card driver."
msgstr "Veuillez mettre Ă jour le pilote de votre carte graphique."
@@ -5859,12 +5360,8 @@ msgstr "La sensibilité de pause est"
msgid "Enable detection of build plate position"
msgstr "Activation de la détection de la position de la plaque"
-msgid ""
-"The localization tag of build plate is detected, and printing is paused if "
-"the tag is not in predefined range."
-msgstr ""
-"La balise de localisation de la plaque est détectée, l'impression est "
-"interrompue si la balise n'est pas dans la plage prédéfinie."
+msgid "The localization tag of build plate is detected, and printing is paused if the tag is not in predefined range."
+msgstr "La balise de localisation de la plaque est détectée, l'impression est interrompue si la balise n'est pas dans la plage prédéfinie."
msgid "First Layer Inspection"
msgstr "Inspection de la PremiĂšre Couche"
@@ -5882,9 +5379,7 @@ msgid "Nozzle Clumping Detection"
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."
+msgstr "VĂ©rifier si la buse est encrassĂ©e par du filament ou dâautres corps Ă©trangers."
msgid "Nozzle Type"
msgstr "Type de buse"
@@ -5996,28 +5491,17 @@ msgstr "Recherche de plaque, d'objet et de piĂšce."
msgid "Pellets"
msgstr "Pellets"
-msgid ""
-"No AMS filaments. Please select a printer in 'Device' page to load AMS info."
-msgstr ""
-"Pas de filaments AMS. Veuillez sélectionner une imprimante dans la page "
-"\"Appareil\" pour charger les informations AMS."
+msgid "No AMS filaments. Please select a printer in 'Device' page to load AMS info."
+msgstr "Pas de filaments AMS. Veuillez sélectionner une imprimante dans la page \"Appareil\" pour charger les informations AMS."
msgid "Sync filaments with AMS"
msgstr "Synchroniser les filaments avec AMS"
-msgid ""
-"Sync filaments with AMS will drop all current selected filament presets and "
-"colors. Do you want to continue?"
-msgstr ""
-"La synchronisation des filaments avec AMS supprimera tous les préréglages et "
-"couleurs de filament actuellement sélectionnés. Voulez-vous continuer ?"
+msgid "Sync filaments with AMS will drop all current selected filament presets and colors. Do you want to continue?"
+msgstr "La synchronisation des filaments avec AMS supprimera tous les préréglages et couleurs de filament actuellement sélectionnés. Voulez-vous continuer ?"
-msgid ""
-"Already did a synchronization, do you want to sync only changes or resync "
-"all?"
-msgstr ""
-"Vous avez déjà effectué une synchronisation. Voulez-vous synchroniser "
-"uniquement les modifications ou tout resynchroniser ?"
+msgid "Already did a synchronization, do you want to sync only changes or resync all?"
+msgstr "Vous avez déjà effectué une synchronisation. Voulez-vous synchroniser uniquement les modifications ou tout resynchroniser ?"
msgid "Sync"
msgstr "Sync"
@@ -6026,30 +5510,18 @@ msgid "Resync"
msgstr "Resync"
msgid "There are no compatible filaments, and sync is not performed."
-msgstr ""
-"Il n'y a pas de filaments compatibles et la synchronisation n'est pas "
-"effectuée."
+msgstr "Il n'y a pas de filaments compatibles et la synchronisation n'est pas effectuée."
-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 ""
-"Il existe des filaments inconnus mappés sur un préréglage générique. "
-"Veuillez mettre à jour ou redémarrer Orca Slicer pour vérifier s'il existe "
-"une mise à jour des préréglages systÚme."
+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 "Il existe des filaments inconnus mappés sur un préréglage générique. Veuillez mettre à jour ou redémarrer Orca Slicer pour vérifier s'il existe une mise à jour des préréglages systÚme."
#, boost-format
msgid "Do you want to save changes to \"%1%\"?"
msgstr "Voulez-vous enregistrer les modifications apportées à \"%1%\" ?"
#, c-format, boost-format
-msgid ""
-"Successfully unmounted. The device %s(%s) can now be safely removed from the "
-"computer."
-msgstr ""
-"DĂ©montĂ© avec succĂšs. Le pĂ©riphĂ©rique %s(%s) peut maintenant ĂȘtre retirĂ© en "
-"toute sécurité de l'ordinateur."
+msgid "Successfully unmounted. The device %s(%s) can now be safely removed from the computer."
+msgstr "DĂ©montĂ© avec succĂšs. Le pĂ©riphĂ©rique %s(%s) peut maintenant ĂȘtre retirĂ© en toute sĂ©curitĂ© de l'ordinateur."
#, c-format, boost-format
msgid "Ejecting of device %s(%s) has failed."
@@ -6061,30 +5533,14 @@ msgstr "Projet précédent non enregistré détecté, voulez-vous le restaurer ?
msgid "Restore"
msgstr "Restaurer"
-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 ""
-"La température actuelle du plateau est relativement élevée. La buse peut se "
-"boucher lors de lâimpression de ce filament dans une enceinte fermĂ©e. "
-"Veuillez ouvrir la porte avant et/ou retirer la vitre supérieure."
+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 "La tempĂ©rature actuelle du plateau est relativement Ă©levĂ©e. La buse peut se boucher lors de lâimpression de ce filament dans une enceinte fermĂ©e. Veuillez ouvrir la porte avant et/ou retirer la vitre supĂ©rieure."
-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 ""
-"La dureté de la buse requise par le filament est supérieure à la dureté par "
-"défaut de la buse de l'imprimante. Veuillez remplacer la buse ou le "
-"filament, sinon la buse s'usera ou s'endommagera."
+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 "La dureté de la buse requise par le filament est supérieure à la dureté par défaut de la buse de l'imprimante. Veuillez remplacer la buse ou le filament, sinon la buse s'usera ou s'endommagera."
-msgid ""
-"Enabling traditional timelapse photography may cause surface imperfections. "
-"It is recommended to change to smooth mode."
-msgstr ""
-"Lâactivation de la photographie timelapse traditionnelle peut provoquer des "
-"imperfections de surface. Il est recommandé de passer en mode fluide."
+msgid "Enabling traditional timelapse photography may cause surface imperfections. It is recommended to change to smooth mode."
+msgstr "Lâactivation de la photographie timelapse traditionnelle peut provoquer des imperfections de surface. Il est recommandĂ© de passer en mode fluide."
msgid "Expand sidebar"
msgstr "Agrandir la barre latérale"
@@ -6097,31 +5553,21 @@ msgid "Loading file: %s"
msgstr "Chargement du fichier : %s"
msgid "The 3mf is not supported by OrcaSlicer, load geometry data only."
-msgstr ""
-"Le fichier 3mf nâest pas supportĂ© par OrcaSlicer, chargement des donnĂ©es de "
-"géométrie uniquement."
+msgstr "Le fichier 3mf nâest pas supportĂ© par OrcaSlicer, chargement des donnĂ©es de gĂ©omĂ©trie uniquement."
msgid "Load 3mf"
msgstr "Charger 3mf"
#, c-format, boost-format
-msgid ""
-"The 3mf's version %s is newer than %s's version %s, Found following keys "
-"unrecognized:"
-msgstr ""
-"La version %s du 3mf est plus récente que la version %s de %s. Les clés "
-"suivantes ne sont pas reconnues:"
+msgid "The 3mf's version %s is newer than %s's version %s, Found following keys unrecognized:"
+msgstr "La version %s du 3mf est plus récente que la version %s de %s. Les clés suivantes ne sont pas reconnues:"
msgid "You'd better upgrade your software.\n"
msgstr "Vous feriez mieux de mettre Ă jour votre logiciel.\n"
#, c-format, boost-format
-msgid ""
-"The 3mf's version %s is newer than %s's version %s, Suggest to upgrade your "
-"software."
-msgstr ""
-"La version %s du 3mf est plus récente que la version %s de %s. Nous vous "
-"suggérons de mettre à jour votre logiciel."
+msgid "The 3mf's version %s is newer than %s's version %s, Suggest to upgrade your software."
+msgstr "La version %s du 3mf est plus récente que la version %s de %s. Nous vous suggérons de mettre à jour votre logiciel."
msgid "Invalid values found in the 3mf:"
msgstr "Valeurs invalides trouvées dans le 3mf :"
@@ -6130,38 +5576,25 @@ msgid "Please correct them in the param tabs"
msgstr "Veuillez les corriger dans les onglets de paramĂštres"
msgid "The 3mf has following modified G-codes in filament or printer presets:"
-msgstr ""
-"Le 3mf a les G-codes modifiés suivants dans le filament ou les préréglages "
-"de l'imprimante :"
+msgstr "Le 3mf a les G-codes modifiés suivants dans le filament ou les préréglages de l'imprimante :"
-msgid ""
-"Please confirm that these modified G-codes are safe to prevent any damage to "
-"the machine!"
-msgstr ""
-"Veuillez vous assurer que ces G-codes modifiés sont sûrs afin d'éviter tout "
-"dommage Ă la machine !"
+msgid "Please confirm that these modified G-codes are safe to prevent any damage to the machine!"
+msgstr "Veuillez vous assurer que ces G-codes modifiés sont sûrs afin d'éviter tout dommage à la machine !"
msgid "Modified G-codes"
msgstr "G-codes modifiés"
msgid "The 3mf has following customized filament or printer presets:"
-msgstr ""
-"Le 3mf dispose de filaments personnalisés ou de préréglages d'imprimante :"
+msgstr "Le 3mf dispose de filaments personnalisés ou de préréglages d'imprimante :"
-msgid ""
-"Please confirm that the G-codes within these presets are safe to prevent any "
-"damage to the machine!"
-msgstr ""
-"Veuillez vous assurer que les G-codes de ces préréglages sont sûrs afin "
-"d'éviter d'endommager la machine !"
+msgid "Please confirm that the G-codes within these presets are safe to prevent any damage to the machine!"
+msgstr "Veuillez vous assurer que les G-codes de ces préréglages sont sûrs afin d'éviter d'endommager la machine !"
msgid "Customized Preset"
msgstr "Préréglage personnalisé"
msgid "Name of components inside step file is not UTF8 format!"
-msgstr ""
-"Le nom des composants à l'intérieur du fichier d'étape n'est pas au format "
-"UTF8 !"
+msgstr "Le nom des composants à l'intérieur du fichier d'étape n'est pas au format UTF8 !"
msgid "The name may show garbage characters!"
msgstr "Le nom peut afficher des caractĂšres inutiles !"
@@ -6171,9 +5604,7 @@ msgstr "Mémoriser mon choix."
#, boost-format
msgid "Failed loading file \"%1%\". An invalid configuration was found."
-msgstr ""
-"Ăchec du chargement du fichier \"%1%\". Une configuration invalide a Ă©tĂ© "
-"trouvée."
+msgstr "Ăchec du chargement du fichier \"%1%\". Une configuration invalide a Ă©tĂ© trouvĂ©e."
msgid "Objects with zero volume removed"
msgstr "Objets avec zéro volume supprimé"
@@ -6185,9 +5616,7 @@ msgstr "Le volume de l'objet est nul"
msgid ""
"The object from file %s is too small, and maybe in meters or inches.\n"
" Do you want to scale to millimeters?"
-msgstr ""
-"L'objet du fichier %s est trop petit, et peut-ĂȘtre en mĂštres ou en pouces. "
-"Voulez-vous mettre à l'échelle en millimÚtres ?"
+msgstr "L'objet du fichier %s est trop petit, et peut-ĂȘtre en mĂštres ou en pouces. Voulez-vous mettre Ă l'Ă©chelle en millimĂštres ?"
msgid "Object too small"
msgstr "Objet trop petit"
@@ -6205,8 +5634,7 @@ msgid "Multi-part object detected"
msgstr "Objet en plusieurs piÚces détecté"
msgid "Load these files as a single object with multiple parts?\n"
-msgstr ""
-"Charger ces fichiers en tant qu'objet unique avec plusieurs parties ?\n"
+msgstr "Charger ces fichiers en tant qu'objet unique avec plusieurs parties ?\n"
msgid "Object with multiple parts was detected"
msgstr "Un objet en plusieurs parties a été détecté"
@@ -6214,23 +5642,12 @@ msgstr "Un objet en plusieurs parties a été détecté"
msgid "The file does not contain any geometry data."
msgstr "Le fichier ne contient pas de données géométriques."
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-"Votre objet est trop grand. Il sera automatiquement rĂ©duit pour sâadapter au "
-"plateau."
+msgid "Your object appears to be too large, Do you want to scale it down to fit the heat bed automatically?"
+msgstr "Votre objet semble trop grand. Voulez-vous le réduire pour l'adapter automatiquement au plateau d'impression ?"
msgid "Object too large"
msgstr "Objet trop grand"
-msgid ""
-"Your object appears to be too large, Do you want to scale it down to fit the "
-"heat bed automatically?"
-msgstr ""
-"Votre objet semble trop grand. Voulez-vous le réduire pour l'adapter "
-"automatiquement au plateau d'impression ?"
-
msgid "Export STL file:"
msgstr "Exporter le fichier STL :"
@@ -6324,24 +5741,18 @@ msgstr "Découpe du plateau %d"
msgid "Please resolve the slicing errors and publish again."
msgstr "Veuillez résoudre les erreurs de découpage et republier."
-msgid ""
-"Network Plug-in is not detected. Network related features are unavailable."
-msgstr ""
-"Le plug-in réseau n'est pas détecté. Les fonctionnalités liées au réseau ne "
-"sont pas disponibles."
+msgid "Network Plug-in is not detected. Network related features are unavailable."
+msgstr "Le plug-in réseau n'est pas détecté. Les fonctionnalités liées au réseau ne sont pas disponibles."
msgid ""
"Preview only mode:\n"
"The loaded file contains gcode only, Can not enter the Prepare page"
msgstr ""
"Mode de prévisualisation:\n"
-"Le fichier chargé contient uniquement du G-code, impossible d'accéder à la "
-"page de Préparation"
+"Le fichier chargé contient uniquement du G-code, impossible d'accéder à la page de Préparation"
msgid "You can keep the modified presets to the new project or discard them"
-msgstr ""
-"Vous pouvez conserver les préréglages modifiés dans le nouveau projet ou les "
-"supprimer"
+msgstr "Vous pouvez conserver les préréglages modifiés dans le nouveau projet ou les supprimer"
msgid "Creating a new project"
msgstr "Créer un nouveau projet"
@@ -6351,12 +5762,10 @@ msgstr "Charger le projet"
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 ""
"Impossible d'enregistrer le projet.\n"
-"Vérifiez si le dossier existe en ligne ou si le fichier de projet est ouvert "
-"dans d'autres programmes."
+"Vérifiez si le dossier existe en ligne ou si le fichier de projet est ouvert dans d'autres programmes."
msgid "Save project"
msgstr "Sauvegarder le projet"
@@ -6378,16 +5787,10 @@ 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%%Lâimportation dans Bambu Studio a Ă©chouĂ©. Veuillez "
-"tĂ©lĂ©charger le fichier et lâimporter manuellement."
+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 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 "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 "Import SLA archive"
msgstr "Importer les archives SLA"
@@ -6413,9 +5816,7 @@ 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é."
+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"
@@ -6436,8 +5837,7 @@ msgid "G-code loading"
msgstr "Chargement du G-code"
msgid "G-code files can not be loaded with models together!"
-msgstr ""
-"Les fichiers G-code ne peuvent pas ĂȘtre chargĂ©s avec des modĂšles ensemble !"
+msgstr "Les fichiers G-code ne peuvent pas ĂȘtre chargĂ©s avec des modĂšles ensemble !"
msgid "Can not add models when in preview mode!"
msgstr "Impossible d'ajouter des modÚles en mode aperçu !"
@@ -6446,9 +5846,7 @@ msgid "All objects will be removed, continue?"
msgstr "Tous les objets seront supprimés, continuer ?"
msgid "The current project has unsaved changes, save it before continue?"
-msgstr ""
-"Le projet en cours comporte des modifications non enregistrées, enregistrez-"
-"les avant de continuer ?"
+msgstr "Le projet en cours comporte des modifications non enregistrées, enregistrez-les avant de continuer ?"
msgid "Number of copies:"
msgstr "Nombre de copies:"
@@ -6466,28 +5864,17 @@ msgid "The provided file name is not valid."
msgstr "Le nom de fichier fourni nâest pas valide."
msgid "The following characters are not allowed by a FAT file system:"
-msgstr ""
-"Les caractÚres suivants ne sont pas autorisés par un systÚme de fichiers "
-"FAT :"
+msgstr "Les caractÚres suivants ne sont pas autorisés par un systÚme de fichiers FAT :"
msgid "Save Sliced file as:"
msgstr "Enregistrer le fichier découpé sous :"
#, 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 ""
-"Le fichier %s a été envoyé vers l'espace de stockage de l'imprimante et peut "
-"ĂȘtre visualisĂ© sur l'imprimante."
+msgid "The file %s has been sent to the printer's storage space and can be viewed on the printer."
+msgstr "Le fichier %s a Ă©tĂ© envoyĂ© vers l'espace de stockage de l'imprimante et peut ĂȘtre visualisĂ© sur l'imprimante."
-msgid ""
-"Unable to perform boolean operation on model meshes. Only positive parts "
-"will be kept. You may fix the meshes and try again."
-msgstr ""
-"Impossible dâeffectuer une opĂ©ration boolĂ©enne sur les mailles du modĂšle. "
-"Seules les parties positives seront conservées. Vous pouvez corriger les "
-"mailles et réessayer."
+msgid "Unable to perform boolean operation on model meshes. Only positive parts will be kept. You may fix the meshes and try again."
+msgstr "Impossible dâeffectuer une opĂ©ration boolĂ©enne sur les mailles du modĂšle. Seules les parties positives seront conservĂ©es. Vous pouvez corriger les mailles et rĂ©essayer."
#, boost-format
msgid "Reason: part \"%1%\" is empty."
@@ -6506,22 +5893,17 @@ msgid "Reason: \"%1%\" and another part have no intersection."
msgstr "Raison : « %1% » et une autre partie nâont pas dâintersection."
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 ""
-"Ătes-vous sĂ»r de vouloir stocker les SVG originaux avec leurs chemins "
-"d'accĂšs locaux dans le fichier 3MF ?\n"
-"Si vous cliquez sur \"NON\", tous les SVG du projet ne seront plus "
-"modifiables."
+"Ătes-vous sĂ»r de vouloir stocker les SVG originaux avec leurs chemins d'accĂšs locaux dans le fichier 3MF ?\n"
+"Si vous cliquez sur \"NON\", tous les SVG du projet ne seront plus modifiables."
msgid "Private protection"
msgstr "Protection privée"
msgid "Is the printer ready? Is the print sheet in place, empty and clean?"
-msgstr ""
-"Lâimprimante est-elle prĂȘte ? Le plateau dâimpression est-il en place, vide "
-"et propre ?"
+msgstr "Lâimprimante est-elle prĂȘte ? Le plateau dâimpression est-il en place, vide et propre ?"
msgid "Upload and Print"
msgstr "Envoyer & Imprimer"
@@ -6531,8 +5913,7 @@ msgid ""
"Suggest to use auto-arrange to avoid collisions when printing."
msgstr ""
"Imprimer par objet :\n"
-"Nous vous suggérons d'utiliser la disposition automatique pour éviter les "
-"collisions lors de l'impression."
+"Nous vous suggérons d'utiliser la disposition automatique pour éviter les collisions lors de l'impression."
msgid "Send G-code"
msgstr "Envoyer le G-code"
@@ -6541,9 +5922,7 @@ msgid "Send to printer"
msgstr "Envoyer Ă l'imprimante"
msgid "Custom supports and color painting were removed before repairing."
-msgstr ""
-"Les supports personnalisés et la peinture de couleur ont été retirés avant "
-"la réparation."
+msgstr "Les supports personnalisés et la peinture de couleur ont été retirés avant la réparation."
msgid "Optimize Rotation"
msgstr "Optimiser la rotation"
@@ -6593,24 +5972,12 @@ msgstr "Triangles : %1%\n"
msgid "Tips:"
msgstr "Astuces:"
-msgid ""
-"\"Fix Model\" feature is currently only on Windows. Please repair the model "
-"on Orca Slicer(windows) or CAD softwares."
-msgstr ""
-"La fonctionnalité \"Réparer le modÚle\" n'est actuellement disponible que "
-"sur Windows. Veuillez réparer le modÚle sur Orca Slicer (Windows) ou avec "
-"des logiciels de CAO."
+msgid "\"Fix Model\" feature is currently only on Windows. Please repair the model on Orca Slicer(windows) or CAD softwares."
+msgstr "La fonctionnalité \"Réparer le modÚle\" n'est actuellement disponible que sur Windows. Veuillez réparer le modÚle sur Orca Slicer (Windows) ou avec des logiciels de CAO."
#, 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 ""
-"La plaque% d : %s n'est pas suggéré pour l'utilisation du filament "
-"d'impression %s(%s). Si vous souhaitez toujours effectuer ce travail "
-"d'impression, veuillez régler la température du plateau de ce filament sur "
-"un nombre différent de zéro."
+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 "La plaque% d : %s n'est pas suggéré pour l'utilisation du filament d'impression %s(%s). Si vous souhaitez toujours effectuer ce travail d'impression, veuillez régler la température du plateau de ce filament sur un nombre différent de zéro."
msgid "Switching the language requires application restart.\n"
msgstr "Le changement de langue nécessite le redémarrage de l'application.\n"
@@ -6621,6 +5988,9 @@ msgstr "Voulez-vous continuer?"
msgid "Language selection"
msgstr "Sélection de la langue"
+msgid "Switching application language while some presets are modified."
+msgstr "Changement de langue dâapplication alors que certaines prĂ©sĂ©lections sont modifiĂ©es."
+
msgid "Changing application language"
msgstr "Changer la langue de l'application"
@@ -6678,14 +6048,8 @@ 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 "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"
@@ -6705,24 +6069,11 @@ msgstr "Unités"
msgid "Allow only one OrcaSlicer instance"
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 "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 "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"
@@ -6745,36 +6096,26 @@ msgid ""
"Touchpad: Alt+move for rotation, Shift+move for panning."
msgstr ""
"SĂ©lectionner le style de navigation de lâappareil photo.\n"
-"Par défaut : LMB+mouvement pour la rotation, RMB/MMB+mouvement pour le "
-"panoramique.\n"
-"Pavé tactile : Alt+mouvement pour la rotation, Shift+mouvement pour le "
-"panoramique."
+"Par défaut : LMB+mouvement pour la rotation, RMB/MMB+mouvement pour le panoramique.\n"
+"Pavé tactile : Alt+mouvement pour la rotation, Shift+mouvement pour le panoramique."
msgid "Zoom to mouse position"
msgstr "Zoom sur la position de la souris"
-msgid ""
-"Zoom in towards the mouse pointer's position in the 3D view, rather than the "
-"2D window center."
-msgstr ""
-"Zoomez sur la position du pointeur de la souris dans la vue 3D, plutĂŽt que "
-"sur le centre de la fenĂȘtre 2D."
+msgid "Zoom in towards the mouse pointer's position in the 3D view, rather than the 2D window center."
+msgstr "Zoomez sur la position du pointeur de la souris dans la vue 3D, plutĂŽt que sur le centre de la fenĂȘtre 2D."
msgid "Use free camera"
msgstr "Utiliser la caméra libre"
msgid "If enabled, use free camera. If not enabled, use constrained camera."
-msgstr ""
-"Si activée, utilise la caméra libre. Si désactivée, utilise la caméra "
-"contrainte."
+msgstr "Si activée, utilise la caméra libre. Si désactivée, utilise la caméra contrainte."
msgid "Reverse mouse zoom"
msgstr "Inverser le zoom de la souris"
msgid "If enabled, reverses the direction of zoom with mouse wheel."
-msgstr ""
-"Si cette option est activée, elle inverse le sens du zoom avec la molette de "
-"la souris."
+msgstr "Si cette option est activée, elle inverse le sens du zoom avec la molette de la souris."
msgid "Show splash screen"
msgstr "Afficher l'écran de démarrage"
@@ -6786,45 +6127,31 @@ msgid "Show \"Tip of the day\" notification after start"
msgstr "Afficher la notification \"Astuce du jour\" aprÚs le démarrage"
msgid "If enabled, useful hints are displayed at startup."
-msgstr ""
-"Si cette option est activée, des conseils utiles s'affichent au démarrage."
+msgstr "Si cette option est activée, des conseils utiles s'affichent au démarrage."
msgid "Flushing volumes: Auto-calculate everytime the color changed."
msgstr "Volumes de purge : Auto-calcul Ă chaque changement de couleur."
msgid "If enabled, auto-calculate everytime the color changed."
-msgstr ""
-"Si cette option est activée, le calcul se fera automatiquement à chaque "
-"changement de couleur."
+msgstr "Si cette option est activée, le calcul se fera automatiquement à chaque changement de couleur."
-msgid ""
-"Flushing volumes: Auto-calculate every time when the filament is changed."
+msgid "Flushing volumes: Auto-calculate every time when the filament is changed."
msgstr "Volumes de purge : Calcul automatique Ă chaque changement de filament."
msgid "If enabled, auto-calculate every time when filament is changed"
-msgstr ""
-"Si cette option est activĂ©e, le calcul sâeffectue automatiquement Ă chaque "
-"changement de filament."
+msgstr "Si cette option est activĂ©e, le calcul sâeffectue automatiquement Ă chaque changement de filament."
msgid "Remember printer configuration"
msgstr "MĂ©moriser la configuration de lâimprimante"
-msgid ""
-"If enabled, Orca will remember and switch filament/process configuration for "
-"each printer automatically."
-msgstr ""
-"Si cette option est activée, Orca se souviendra de la configuration du "
-"filament/processus pour chaque imprimante et la modifiera automatiquement."
+msgid "If enabled, Orca will remember and switch filament/process configuration for each printer automatically."
+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 Orca)."
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 "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 "Auto arrange plate after cloning"
msgstr "Arrangement automatique de la plaque aprĂšs le clonage"
@@ -6836,9 +6163,7 @@ msgid "Network"
msgstr "Réseau"
msgid "Auto sync user presets(Printer/Filament/Process)"
-msgstr ""
-"Synchronisation automatique des pré-réglages utilisateur (Imprimante/"
-"Filament/Traitement)"
+msgstr "Synchronisation automatique des pré-réglages utilisateur (Imprimante/Filament/Traitement)"
msgid "User Sync"
msgstr "Synchronisation utilisateur"
@@ -6859,25 +6184,19 @@ msgid "Associate .3mf files to OrcaSlicer"
msgstr "Associer les fichiers .3mf Ă Orca Slicer"
msgid "If enabled, sets OrcaSlicer as default application to open .3mf files"
-msgstr ""
-"Si activé, définit Orca Slicer comme application par défaut pour ouvrir les "
-"fichiers .3mf"
+msgstr "Si activé, définit Orca Slicer comme application par défaut pour ouvrir les fichiers .3mf"
msgid "Associate .stl files to OrcaSlicer"
msgstr "Associer les fichiers .stl Ă Orca Slicer"
msgid "If enabled, sets OrcaSlicer as default application to open .stl files"
-msgstr ""
-"Si activé, définit Orca Slicer comme application par défaut pour ouvrir les "
-"fichiers .stl"
+msgstr "Si activé, définit Orca Slicer comme application par défaut pour ouvrir les fichiers .stl"
msgid "Associate .step/.stp files to OrcaSlicer"
msgstr "Associer les fichiers .step/.stp Ă Orca Slicer"
msgid "If enabled, sets OrcaSlicer as default application to open .step files"
-msgstr ""
-"Si activé, définit Orca Slicer comme application par défaut pour ouvrir les "
-"fichiers .step/.stp"
+msgstr "Si activé, définit Orca Slicer comme application par défaut pour ouvrir les fichiers .step/.stp"
msgid "Associate web links to OrcaSlicer"
msgstr "Associer des liens web Ă OrcaSlicer"
@@ -6895,17 +6214,13 @@ msgid "Clear my choice on the unsaved projects."
msgstr "Efface mon choix sur les projets non enregistrés."
msgid "No warnings when loading 3MF with modified G-codes"
-msgstr ""
-"Pas d'avertissement lors du chargement de 3MF avec des G-codes modifiés"
+msgstr "Pas d'avertissement lors du chargement de 3MF avec des G-codes modifiés"
msgid "Auto-Backup"
msgstr "Sauvegarde automatique"
-msgid ""
-"Backup your project periodically for restoring from the occasional crash."
-msgstr ""
-"Sauvegardez votre projet périodiquement pour faciliter la restauration aprÚs "
-"un plantage occasionnel."
+msgid "Backup your project periodically for restoring from the occasional crash."
+msgstr "Sauvegardez votre projet périodiquement pour faciliter la restauration aprÚs un plantage occasionnel."
msgid "every"
msgstr "chaque"
@@ -7112,9 +6427,7 @@ msgid "Log Out"
msgstr "Déconnexion"
msgid "Slice all plate to obtain time and filament estimation"
-msgstr ""
-"Découpez toutes les couches pour obtenir une estimation du temps et du "
-"filament"
+msgstr "Découpez toutes les couches pour obtenir une estimation du temps et du filament"
msgid "Packing project data into 3mf file"
msgstr "Compression des données du projet dans un fichier 3mf"
@@ -7126,8 +6439,7 @@ msgid "Jump to model publish web page"
msgstr "Accéder à la page internet de publication des modÚles"
msgid "Note: The preparation may takes several minutes. Please be patiant."
-msgstr ""
-"Remarque : La préparation peut prendre plusieurs minutes. Veuillez patienter."
+msgstr "Remarque : La préparation peut prendre plusieurs minutes. Veuillez patienter."
msgid "Publish"
msgstr "Publier"
@@ -7166,9 +6478,7 @@ msgstr "Le préréglage \"%1%\" existe déjà ."
#, boost-format
msgid "Preset \"%1%\" already exists and is incompatible with current printer."
-msgstr ""
-"Le préréglage \"%1%\" existe déjà et est incompatible avec l'imprimante "
-"actuelle."
+msgstr "Le préréglage \"%1%\" existe déjà et est incompatible avec l'imprimante actuelle."
msgid "Please note that saving action will replace this preset"
msgstr "Veuillez noter que l'action d'enregistrement remplacera ce préréglage"
@@ -7189,9 +6499,7 @@ msgstr "L'imprimante \"%1%\" est sélectionnée avec le préréglage \"%2%\""
#, boost-format
msgid "Please choose an action with \"%1%\" preset after saving."
-msgstr ""
-"Veuillez choisir une action avec le préréglage \"%1%\" aprÚs "
-"l'enregistrement."
+msgstr "Veuillez choisir une action avec le préréglage \"%1%\" aprÚs l'enregistrement."
#, boost-format
msgid "For \"%1%\", change \"%2%\" to \"%3%\" "
@@ -7269,8 +6577,7 @@ msgid "Error code"
msgstr "Code erreur"
msgid "No login account, only printers in LAN mode are displayed"
-msgstr ""
-"Pas de connexion au cloud, seules les imprimantes en mode LAN sont affichées"
+msgstr "Pas de connexion au cloud, seules les imprimantes en mode LAN sont affichées"
msgid "Connecting to server"
msgstr "Connexion au serveur"
@@ -7282,115 +6589,61 @@ msgid "Synchronizing device information time out"
msgstr "Expiration du délai de synchronisation des informations sur l'appareil"
msgid "Cannot send the print job when the printer is updating firmware"
-msgstr ""
-"Impossible d'envoyer une tĂąche d'impression pendant la mise Ă jour du "
-"firmware de l'imprimante"
+msgstr "Impossible d'envoyer une tĂąche d'impression pendant la mise Ă jour du firmware de l'imprimante"
-msgid ""
-"The printer is executing instructions. Please restart printing after it ends"
-msgstr ""
-"L'imprimante exécute des instructions. Veuillez recommencer l'impression "
-"aprÚs la fin de l'exécution."
+msgid "The printer is executing instructions. Please restart printing after it ends"
+msgstr "L'imprimante exécute des instructions. Veuillez recommencer l'impression aprÚs la fin de l'exécution."
msgid "The printer is busy on other print job"
msgstr "L'imprimante est occupée par un autre travail d'impression."
#, c-format, boost-format
-msgid ""
-"Filament %s exceeds the number of AMS slots. Please update the printer "
-"firmware to support AMS slot assignment."
-msgstr ""
-"Le filament %s dépasse le nombre d'emplacements AMS. Veuillez mettre à jour "
-"le firmware de l'imprimante pour qu'il prenne en charge l'attribution des "
-"emplacements AMS."
+msgid "Filament %s exceeds the number of AMS slots. Please update the printer firmware to support AMS slot assignment."
+msgstr "Le filament %s dépasse le nombre d'emplacements AMS. Veuillez mettre à jour le firmware de l'imprimante pour qu'il prenne en charge l'attribution des emplacements AMS."
-msgid ""
-"Filament exceeds the number of AMS slots. Please update the printer firmware "
-"to support AMS slot assignment."
-msgstr ""
-"Le nombre de filaments dépasse le nombre d'emplacements AMS. Veuillez mettre "
-"Ă jour le firmware de l'imprimante pour qu'il prenne en charge l'attribution "
-"des emplacements AMS."
+msgid "Filament exceeds the number of AMS slots. Please update the printer firmware to support AMS slot assignment."
+msgstr "Le nombre de filaments dépasse le nombre d'emplacements AMS. Veuillez mettre à jour le firmware de l'imprimante pour qu'il prenne en charge l'attribution des emplacements AMS."
-msgid ""
-"Filaments to AMS slots mappings have been established. You can click a "
-"filament above to change its mapping AMS slot"
-msgstr ""
-"L'affectation des filaments aux emplacements de l'AMS a été réalisée. Vous "
-"pouvez cliquer sur un filament ci-dessus pour modifier sa correspondance "
-"avec l'emplacement AMS."
+msgid "Filaments to AMS slots mappings have been established. You can click a filament above to change its mapping AMS slot"
+msgstr "L'affectation des filaments aux emplacements de l'AMS a été réalisée. Vous pouvez cliquer sur un filament ci-dessus pour modifier sa correspondance avec l'emplacement AMS."
-msgid ""
-"Please click each filament above to specify its mapping AMS slot before "
-"sending the print job"
-msgstr ""
-"Veuillez cliquer sur chaque filament ci-dessus pour indiquer son emplacement "
-"AMS avant d'envoyer la tĂąche d'impression."
+msgid "Please click each filament above to specify its mapping AMS slot before sending the print job"
+msgstr "Veuillez cliquer sur chaque filament ci-dessus pour indiquer son emplacement AMS avant d'envoyer la tĂąche d'impression."
#, 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 ""
-"Le filament %s ne correspond pas au filament de l'emplacement AMS %s. "
-"Veuillez mettre Ă jour le firmware de l'imprimante pour qu'il prenne en "
-"charge l'attribution des emplacements AMS."
+msgid "Filament %s does not match the filament in AMS slot %s. Please update the printer firmware to support AMS slot assignment."
+msgstr "Le filament %s ne correspond pas au filament de l'emplacement AMS %s. Veuillez mettre Ă jour le firmware de l'imprimante pour qu'il prenne en charge l'attribution des emplacements AMS."
-msgid ""
-"Filament does not match the filament in AMS slot. Please update the printer "
-"firmware to support AMS slot assignment."
-msgstr ""
-"Le filament ne correspond pas au filament du slot AMS. Veuillez mettre Ă "
-"jour le firmware de l'imprimante pour qu'il prenne en charge l'attribution "
-"des emplacements AMS."
+msgid "Filament does not match the filament in AMS slot. Please update the printer firmware to support AMS slot assignment."
+msgstr "Le filament ne correspond pas au filament du slot AMS. Veuillez mettre Ă jour le firmware de l'imprimante pour qu'il prenne en charge l'attribution des emplacements AMS."
-msgid ""
-"The printer firmware only supports sequential mapping of filament => AMS "
-"slot."
-msgstr ""
-"Le firmware de lâimprimante ne prend en charge que le mappage sĂ©quentiel du "
-"filament => emplacement AMS."
+msgid "The printer firmware only supports sequential mapping of filament => AMS slot."
+msgstr "Le firmware de lâimprimante ne prend en charge que le mappage sĂ©quentiel du filament => emplacement AMS."
msgid "An SD card needs to be inserted before printing."
msgstr "Une carte SD doit ĂȘtre insĂ©rĂ©e avant l'impression."
#, c-format, boost-format
-msgid ""
-"The selected printer (%s) is incompatible with the chosen printer profile in "
-"the slicer (%s)."
-msgstr ""
-"Lâimprimante sĂ©lectionnĂ©e (%s) est incompatible avec le profil dâimprimante "
-"choisi dans le logiciel de découpe (%s)."
+msgid "The selected printer (%s) is incompatible with the chosen printer profile in the slicer (%s)."
+msgstr "Lâimprimante sĂ©lectionnĂ©e (%s) est incompatible avec le profil dâimprimante choisi dans le logiciel de dĂ©coupe (%s)."
msgid "An SD card needs to be inserted to record timelapse."
msgstr "Une carte SD doit ĂȘtre insĂ©rĂ©e pour enregistrer un timelapse."
-msgid ""
-"Cannot send the print job to a printer whose firmware is required to get "
-"updated."
-msgstr ""
-"Impossible d'envoyer la tĂąche d'impression Ă une imprimante dont le firmware "
-"doit ĂȘtre mis Ă jour."
+msgid "Cannot send the print job to a printer whose firmware is required to get updated."
+msgstr "Impossible d'envoyer la tĂąche d'impression Ă une imprimante dont le firmware doit ĂȘtre mis Ă jour."
msgid "Cannot send the print job for empty plate"
msgstr "Impossible d'envoyer une tĂąche d'impression d'un plateau vide."
msgid "This printer does not support printing all plates"
-msgstr ""
-"Cette imprimante ne prend pas en charge l'impression de toutes les plaques"
+msgstr "Cette imprimante ne prend pas en charge l'impression de toutes les plaques"
-msgid ""
-"When enable spiral vase mode, machines with I3 structure will not generate "
-"timelapse videos."
-msgstr ""
-"Lorsque vous activez le mode vase, les machines avec une structure I3 ne "
-"généreront pas de vidéos timelapse."
+msgid "When enable spiral vase mode, machines with I3 structure will not generate timelapse videos."
+msgstr "Lorsque vous activez le mode vase, les machines avec une structure I3 ne généreront pas de vidéos timelapse."
-msgid ""
-"Timelapse is not supported because Print sequence is set to \"By object\"."
-msgstr ""
-"La fonction Timelapse n'est pas prise en charge car la séquence d'impression "
-"est réglée sur \"Par objet\"."
+msgid "Timelapse is not supported because Print sequence is set to \"By object\"."
+msgstr "La fonction Timelapse n'est pas prise en charge car la séquence d'impression est réglée sur \"Par objet\"."
msgid "Errors"
msgstr "Erreurs"
@@ -7398,23 +6651,11 @@ msgstr "Erreurs"
msgid "Please check the following:"
msgstr "Veuillez vérifier les points suivants :"
-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 ""
-"Le type d'imprimante sélectionné lors de la génération du G-Code n'est pas "
-"cohérent avec l'imprimante actuellement sélectionnée. Il est recommandé "
-"d'utiliser le mĂȘme type d'imprimante pour la dĂ©coupe."
+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 "Le type d'imprimante sĂ©lectionnĂ© lors de la gĂ©nĂ©ration du G-Code n'est pas cohĂ©rent avec l'imprimante actuellement sĂ©lectionnĂ©e. Il est recommandĂ© d'utiliser le mĂȘme type d'imprimante pour la dĂ©coupe."
-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 ""
-"Il y a quelques filaments inconnus dans les association avec l'AMS. Veuillez "
-"vérifier s'il s'agit des filaments nécessaires. S'ils sont corrects, cliquez "
-"sur \"Confirmer\" pour lancer l'impression."
+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 "Il y a quelques filaments inconnus dans les association avec l'AMS. Veuillez vérifier s'il s'agit des filaments nécessaires. S'ils sont corrects, cliquez sur \"Confirmer\" pour lancer l'impression."
#, c-format, boost-format
msgid "nozzle in preset: %s %s"
@@ -7424,45 +6665,24 @@ msgstr "buse dans le préréglage : %s %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. "
-"If you changed your nozzle lately, please go to Device > Printer Parts to "
-"change settings."
-msgstr ""
-"Le diamÚtre de votre buse dans le fichier découpé ne correspond pas à la "
-"buse mémorisée. Si vous avez changé de buse récemment, veuillez aller dans "
-"PĂ©riphĂ©rique > PiĂšces de lâimprimante pour modifier les paramĂštres."
+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 "Le diamĂštre de votre buse dans le fichier dĂ©coupĂ© ne correspond pas Ă la buse mĂ©morisĂ©e. Si vous avez changĂ© de buse rĂ©cemment, veuillez aller dans PĂ©riphĂ©rique > PiĂšces de lâimprimante pour modifier les paramĂštres."
#, c-format, boost-format
-msgid ""
-"Printing high temperature material(%s material) with %s may cause nozzle "
-"damage"
-msgstr ""
-"Lâimpression dâun matĂ©riau Ă haute tempĂ©rature (matĂ©riau %s) avec %s peut "
-"endommager la buse."
+msgid "Printing high temperature material(%s material) with %s may cause nozzle damage"
+msgstr "Lâimpression dâun matĂ©riau Ă haute tempĂ©rature (matĂ©riau %s) avec %s peut endommager la buse."
msgid "Please fix the error above, otherwise printing cannot continue."
-msgstr ""
-"Veuillez corriger lâerreur ci-dessus, sinon lâimpression ne pourra pas se "
-"poursuivre."
+msgstr "Veuillez corriger lâerreur ci-dessus, sinon lâimpression ne pourra pas se poursuivre."
-msgid ""
-"Please click the confirm button if you still want to proceed with printing."
-msgstr ""
-"Cliquez sur le bouton de confirmation si vous souhaitez continuer Ă imprimer."
+msgid "Please click the confirm button if you still want to proceed with printing."
+msgstr "Cliquez sur le bouton de confirmation si vous souhaitez continuer Ă imprimer."
-msgid ""
-"Connecting to the printer. Unable to cancel during the connection process."
-msgstr ""
-"Connexion Ă lâimprimante. Impossible dâannuler pendant le processus de "
-"connexion."
+msgid "Connecting to the printer. Unable to cancel during the connection process."
+msgstr "Connexion Ă lâimprimante. Impossible dâannuler pendant le processus de connexion."
-msgid ""
-"Caution to use! Flow calibration on Textured PEI Plate may fail due to the "
-"scattered surface."
-msgstr ""
-"Attention Ă lâutilisation ! La calibration du dĂ©bit sur le plateau PEI "
-"texturé double face peut échouer en raison de la surface texturée."
+msgid "Caution to use! Flow calibration on Textured PEI Plate may fail due to the scattered surface."
+msgstr "Attention Ă lâutilisation ! La calibration du dĂ©bit sur le plateau PEI texturĂ© double face peut Ă©chouer en raison de la surface texturĂ©e."
msgid "Automatic flow calibration using Micro Lidar"
msgstr "Calibration automatique du dĂ©bit Ă lâaide du Micro-Lidar"
@@ -7477,19 +6697,13 @@ msgid "Send to Printer SD card"
msgstr "Envoyer sur la carte SD de l'imprimante"
msgid "Cannot send the print task when the upgrade is in progress"
-msgstr ""
-"Impossible d'envoyer la tĂąche d'impression lorsque la mise Ă niveau est en "
-"cours."
+msgstr "Impossible d'envoyer la tĂąche d'impression lorsque la mise Ă niveau est en cours."
msgid "The selected printer is incompatible with the chosen printer presets."
-msgstr ""
-"Lâimprimante sĂ©lectionnĂ©e est incompatible avec les prĂ©rĂ©glages dâimprimante "
-"choisis."
+msgstr "Lâimprimante sĂ©lectionnĂ©e est incompatible avec les prĂ©rĂ©glages dâimprimante choisis."
msgid "An SD card needs to be inserted before send to printer SD card."
-msgstr ""
-"Il est nécessaire d'insérer une carte MicroSD avant d'envoyer les données "
-"vers l'imprimante."
+msgstr "Il est nécessaire d'insérer une carte MicroSD avant d'envoyer les données vers l'imprimante."
msgid "The printer is required to be in the same LAN as Orca Slicer."
msgstr "L'imprimante doit ĂȘtre sur le mĂȘme rĂ©seau local que OrcaSlicer."
@@ -7534,8 +6748,7 @@ 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"
+"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?"
@@ -7557,8 +6770,7 @@ msgid "Log in printer"
msgstr "Connectez-vous Ă l'imprimante"
msgid "Would you like to log in this printer with current account?"
-msgstr ""
-"Souhaitez-vous vous connecter Ă cette imprimante avec un compte courant ?"
+msgstr "Souhaitez-vous vous connecter Ă cette imprimante avec un compte courant ?"
msgid "Check the reason"
msgstr "Vérifier le motif"
@@ -7569,20 +6781,8 @@ msgstr "Lire et accepter"
msgid "Terms and Conditions"
msgstr "Termes et conditions"
-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 ""
-"Nous vous remercions d'avoir acheté un produit Bambu Lab. Avant d'utiliser "
-"votre appareil Bambu Lab, veuillez lire les conditions générales. En "
-"cliquant pour confirmer que vous acceptez d'utiliser votre appareil Bambu "
-"Lab, vous vous engagez à respecter la politique de confidentialité et les "
-"conditions d'utilisation (collectivement, les \"conditions\"). Si vous ne "
-"respectez pas ou n'acceptez pas la politique de confidentialité de Bambu "
-"Lab, veuillez ne pas utiliser les produits et services de 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 "Nous vous remercions d'avoir acheté un produit Bambu Lab. Avant d'utiliser votre appareil Bambu Lab, veuillez lire les conditions générales. En cliquant pour confirmer que vous acceptez d'utiliser votre appareil Bambu Lab, vous vous engagez à respecter la politique de confidentialité et les conditions d'utilisation (collectivement, les \"conditions\"). Si vous ne respectez pas ou n'acceptez pas la politique de confidentialité de Bambu Lab, veuillez ne pas utiliser les produits et services de Bambu Lab."
msgid "and"
msgstr "et"
@@ -7591,46 +6791,17 @@ msgid "Privacy Policy"
msgstr "Politique de Confidentialité"
msgid "We ask for your help to improve everyone's printer"
-msgstr ""
-"Nous vous demandons de nous aider à améliorer l'imprimante de toute la "
-"communauté"
+msgstr "Nous vous demandons de nous aider à améliorer l'imprimante de toute la communauté"
msgid "Statement about User Experience Improvement Program"
-msgstr ""
-"Déclaration sur le programme d'amélioration de l'expérience utilisateur"
+msgstr "Déclaration sur le programme d'amélioration de l'expérience utilisateur"
#, 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 ""
-"Au sein de la communauté de l'impression 3D, nous apprenons des succÚs et "
-"des échecs de chacun pour ajuster nos propres paramÚtres et réglages de "
-"dĂ©coupage. %s suit le mĂȘme principe et utilise l'apprentissage automatique "
-"pour améliorer ses performances en fonction des succÚs et des échecs du "
-"grand nombre d'impressions effectuées par nos utilisateurs. Nous entraßnons "
-"%s à devenir plus intelligent en leur fournissant les données du monde réel. "
-"Si vous le souhaitez, ce service accĂšdera aux informations de vos journaux "
-"d'erreurs et de vos journaux d'utilisation, qui peuvent inclure des "
-"informations décrites dans la Politique de confidentialité. Nous ne "
-"collecterons aucune donnée personnelle permettant d'identifier une personne "
-"directement ou indirectement, y compris, mais sans s'y limiter, les noms, "
-"les adresses, les informations de paiement ou les numéros de téléphone. En "
-"activant ce service, vous acceptez ces conditions et la déclaration "
-"concernant la politique de confidentialité."
+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 "Au sein de la communautĂ© de l'impression 3D, nous apprenons des succĂšs et des Ă©checs de chacun pour ajuster nos propres paramĂštres et rĂ©glages de dĂ©coupage. %s suit le mĂȘme principe et utilise l'apprentissage automatique pour amĂ©liorer ses performances en fonction des succĂšs et des Ă©checs du grand nombre d'impressions effectuĂ©es par nos utilisateurs. Nous entraĂźnons %s Ă devenir plus intelligent en leur fournissant les donnĂ©es du monde rĂ©el. Si vous le souhaitez, ce service accĂšdera aux informations de vos journaux d'erreurs et de vos journaux d'utilisation, qui peuvent inclure des informations dĂ©crites dans la Politique de confidentialitĂ©. Nous ne collecterons aucune donnĂ©e personnelle permettant d'identifier une personne directement ou indirectement, y compris, mais sans s'y limiter, les noms, les adresses, les informations de paiement ou les numĂ©ros de tĂ©lĂ©phone. En activant ce service, vous acceptez ces conditions et la dĂ©claration concernant la politique de confidentialitĂ©."
msgid "Statement on User Experience Improvement Plan"
-msgstr ""
-"Déclaration concernant le plan d'amélioration de l'expérience utilisateur"
+msgstr "Déclaration concernant le plan d'amélioration de l'expérience utilisateur"
msgid "Log in successful."
msgstr "Connexion réussie."
@@ -7645,9 +6816,7 @@ msgid "Please log in first."
msgstr "S'il vous plait Connectez-vous d'abord."
msgid "There was a problem connecting to the printer. Please try again."
-msgstr ""
-"Un problĂšme est survenu lors de la connexion Ă l'imprimante. Veuillez "
-"réessayer."
+msgstr "Un problÚme est survenu lors de la connexion à l'imprimante. Veuillez réessayer."
msgid "Failed to log out."
msgstr "Ăchec de la dĂ©connexion."
@@ -7664,37 +6833,23 @@ msgid "Search in preset"
msgstr "Rechercher dans le préréglage"
msgid "Click to reset all settings to the last saved preset."
-msgstr ""
-"Cliquez pour rétablir tous les paramÚtres au dernier préréglage enregistré."
+msgstr "Cliquez pour rétablir tous les paramÚtres au dernier préréglage enregistré."
-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 ""
-"Une tour de purge est requise pour le mode Timeplase fluide. Il peut y avoir "
-"des dĂ©fauts sur le modĂšle sans tour de purge. Ătes-vous sĂ»r de vouloir la "
-"désactiver ?"
+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 "Une tour de purge est requise pour le mode Timeplase fluide. Il peut y avoir des dĂ©fauts sur le modĂšle sans tour de purge. Ătes-vous sĂ»r de vouloir la dĂ©sactiver ?"
-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 ""
-"Une tour de purge est requise pour un mode timelapse fluide. Il peut y avoir "
-"des défauts sur le modÚle sans tour de purge. Voulez-vous activer la "
-"désactiver?"
+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 "Une tour de purge est requise pour un mode timelapse fluide. Il peut y avoir des défauts sur le modÚle sans tour de purge. Voulez-vous activer la désactiver?"
msgid "Still print by object?"
msgstr "Vous imprimez toujours par objet ?"
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 ""
-"Nous avons ajouté un style expérimental « Arborescent Fin » qui offre un "
-"volume de support plus petit mais également une solidité plus faible.\n"
-"Nous recommandons de l'utiliser avec : 0 couches d'interface, 0 distance "
-"supérieure, 2 parois."
+"Nous avons ajouté un style expérimental « Arborescent Fin » qui offre un volume de support plus petit mais également une solidité plus faible.\n"
+"Nous recommandons de l'utiliser avec : 0 couches d'interface, 0 distance supérieure, 2 parois."
msgid ""
"Change these settings automatically? \n"
@@ -7705,36 +6860,18 @@ msgstr ""
"Oui - Modifiez ces paramĂštres automatiquement\n"
"Non - Ne modifiez pas ces paramĂštres pour moi"
-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 ""
-"Pour les styles \"Arborescent fort\" et \"Arborescent Hybride\", nous "
-"recommandons les réglages suivants : au moins 2 couches d'interface, au "
-"moins 0,1 mm de distance entre le haut et le z ou l'utilisation de matériaux "
-"de support sur l'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 "Pour les styles \"Arborescent fort\" et \"Arborescent Hybride\", nous recommandons les réglages suivants : au moins 2 couches d'interface, au moins 0,1 mm de distance entre le haut et le z ou l'utilisation de matériaux de support sur l'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"
+"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 ""
-"Lorsque vous utilisez du matériel de support pour l'interface de support, "
-"nous vous recommandons d'utiliser les paramĂštres suivants :\n"
-"Distance Z supérieure nulle, espacement d'interface nul, motif concentrique "
-"et désactivation de la hauteur indépendante de la couche de support"
+"Lorsque vous utilisez du matériel de support pour l'interface de support, nous vous recommandons d'utiliser les paramÚtres suivants :\n"
+"Distance Z supérieure nulle, espacement d'interface nul, motif concentrique et désactivation de la hauteur indépendante de la couche de support"
-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 ""
-"Lâactivation de cette option modifie la forme du modĂšle. Si votre impression "
-"nĂ©cessite des dimensions prĂ©cises ou fait partie dâun assemblage, il est "
-"important de vérifier si ce changement de géométrie a un impact sur la "
-"fonctionnalité de votre impression."
+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 "Lâactivation de cette option modifie la forme du modĂšle. Si votre impression nĂ©cessite des dimensions prĂ©cises ou fait partie dâun assemblage, il est important de vĂ©rifier si ce changement de gĂ©omĂ©trie a un impact sur la fonctionnalitĂ© de votre impression."
msgid "Are you sure you want to enable this option?"
msgstr "Ătes-vous sĂ»r de vouloir activer cette option ?"
@@ -7747,13 +6884,8 @@ msgstr ""
"Elle sera définie à min_layer_height\n"
"\n"
-msgid ""
-"Layer height exceeds the limit in Printer Settings -> Extruder -> Layer "
-"height limits ,this may cause printing quality issues."
-msgstr ""
-"La hauteur de la couche dépasse la limite fixée dans ParamÚtres de "
-"lâimprimante -> Extrudeur -> Limites de la hauteur de la couche, ce qui peut "
-"entraĂźner des problĂšmes de qualitĂ© dâimpression."
+msgid "Layer height exceeds the limit in Printer Settings -> Extruder -> Layer height limits ,this may cause printing quality issues."
+msgstr "La hauteur de la couche dĂ©passe la limite fixĂ©e dans ParamĂštres de lâimprimante -> Extrudeur -> Limites de la hauteur de la couche, ce qui peut entraĂźner des problĂšmes de qualitĂ© dâimpression."
msgid "Adjust to the set range automatically? \n"
msgstr "Sâajuster automatiquement Ă la plage dĂ©finie ? \n"
@@ -7764,41 +6896,18 @@ msgstr "Ajuster"
msgid "Ignore"
msgstr "Ignorer"
-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 ""
-"Fonction expérimentale : Rétracter et couper le filament à une plus grande "
-"distance lors des changements de filament afin de minimiser le rinçage. Bien "
-"que cela puisse réduire considérablement le rinçage, cela peut également "
-"augmenter le risque de bouchage des buses ou dâautres complications "
-"dâimpression."
+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 "Fonction expĂ©rimentale : RĂ©tracter et couper le filament Ă une plus grande distance lors des changements de filament afin de minimiser le rinçage. Bien que cela puisse rĂ©duire considĂ©rablement le rinçage, cela peut Ă©galement augmenter le risque de bouchage des buses ou dâautres complications dâimpression."
+
+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 "Fonction expĂ©rimentale : RĂ©tracter et couper le filament Ă une plus grande distance lors des changements de filament afin de minimiser lâaffleurement.Bien que cela puisse rĂ©duire sensiblement lâaffleurement, cela peut Ă©galement augmenter le risque dâobstruction des buses ou dâautres complications dâimpression.Veuillez utiliser le dernier micrologiciel de lâimprimante."
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."
+"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 ""
-"Fonction expérimentale : Rétracter et couper le filament à une plus grande "
-"distance lors des changements de filament afin de minimiser lâaffleurement."
-"Bien que cela puisse rĂ©duire sensiblement lâaffleurement, cela peut "
-"Ă©galement augmenter le risque dâobstruction des buses ou dâautres "
-"complications dâimpression.Veuillez utiliser le dernier micrologiciel de "
-"lâimprimante."
-
-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 ""
-"Lorsque vous enregistrez un timelapse sans tĂȘte dâoutil, il est recommandĂ© "
-"dâajouter une \"Tour dâessuyage timelapse\".\n"
-"en faisant un clic droit sur un emplacement vide sur le plateau et en "
-"choisissant \"Ajouter Primitive\"-> \"Tour dâessuyage timelapse\"."
+"Lorsque vous enregistrez un timelapse sans tĂȘte dâoutil, il est recommandĂ© dâajouter une \"Tour dâessuyage timelapse\".\n"
+"en faisant un clic droit sur un emplacement vide sur le plateau et en choisissant \"Ajouter Primitive\"-> \"Tour dâessuyage timelapse\"."
msgid "Line width"
msgstr "Largeur de ligne"
@@ -7836,15 +6945,8 @@ msgstr "Autres couches"
msgid "Overhang speed"
msgstr "Vitesse de surplomb"
-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 ""
-"Il s'agit de la vitesse pour différents degrés de surplomb. Les degrés de "
-"surplomb sont exprimés en pourcentage de la largeur de la ligne. 0 vitesse "
-"signifie qu'il n'y a pas de ralentissement pour la plage de degrés du "
-"surplomb et que la vitesse par défaut des périmÚtres est utilisée"
+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 "Il s'agit de la vitesse pour différents degrés de surplomb. Les degrés de surplomb sont exprimés en pourcentage de la largeur de la ligne. 0 vitesse signifie qu'il n'y a pas de ralentissement pour la plage de degrés du surplomb et que la vitesse par défaut des périmÚtres est utilisée"
msgid "Bridge"
msgstr "Pont"
@@ -7903,20 +7005,12 @@ msgstr "Fréquent"
#, 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."
-msgstr[0] ""
-"La ligne suivante %s contient des mots clés réservés. Veuillez le supprimer, "
-"ou il battra la visualisation du G-code et l'estimation du temps "
-"d'impression."
-msgstr[1] ""
-"La ligne suivante %s contient des mots clés réservés. Veuillez le supprimer, "
-"ou il battra la visualisation du G-code et l'estimation du temps "
-"d'impression."
+"Please remove them, or will beat G-code visualization and printing time estimation."
+msgstr[0] "La ligne suivante %s contient des mots clés réservés. Veuillez le supprimer, ou il battra la visualisation du G-code et l'estimation du temps d'impression."
+msgstr[1] "La ligne suivante %s contient des mots clés réservés. Veuillez le supprimer, ou il battra la visualisation du G-code et l'estimation du temps d'impression."
msgid "Reserved keywords found"
msgstr "Mots clés réservés trouvés"
@@ -7934,9 +7028,7 @@ msgid "Recommended nozzle temperature"
msgstr "Température de buse recommandée"
msgid "Recommended nozzle temperature range of this filament. 0 means no set"
-msgstr ""
-"Plage de température de buse recommandée pour ce filament. 0 signifie pas "
-"d'ensemble"
+msgstr "Plage de température de buse recommandée pour ce filament. 0 signifie pas d'ensemble"
msgid "Flow ratio and Pressure Advance"
msgstr "Rapport de débit et avance de pression"
@@ -7956,47 +7048,26 @@ msgstr "Température de la buse lors de l'impression"
msgid "Cool plate"
msgstr "Plaque 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 ""
-"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 "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."
msgid "Engineering plate"
msgstr "Plaque Engineering"
-msgid ""
-"Bed temperature when engineering plate is installed. Value 0 means the "
-"filament does not support to print on the Engineering Plate"
-msgstr ""
-"Il s'agit de la température du plateau lorsque le plaque Engineering est "
-"installĂ©e. Une valeur Ă 0 signifie que ce filament ne peut pas ĂȘtre imprimĂ© "
-"sur le plateau Engineering."
+msgid "Bed temperature when engineering plate is installed. Value 0 means the filament does not support to print on the Engineering Plate"
+msgstr "Il s'agit de la tempĂ©rature du plateau lorsque le plaque Engineering est installĂ©e. Une valeur Ă 0 signifie que ce filament ne peut pas ĂȘtre imprimĂ© sur le plateau Engineering."
msgid "Smooth PEI Plate / High Temp Plate"
msgstr "Plateau PEI lisse / Plateau haute température"
-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 ""
-"Température du plateau lorsque le Plateau PEI lisse / haute température est "
-"installé. Une valeur à 0 signifie que le filament ne prend pas en charge "
-"l'impression sur le plateau PEI lisse/haute température"
+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 "Température du plateau lorsque le Plateau PEI lisse / haute température est installé. Une valeur à 0 signifie que le filament ne prend pas en charge l'impression sur le plateau PEI lisse/haute température"
msgid "Textured PEI Plate"
msgstr "Plaque PEI texturée"
-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 ""
-"Température du plateau lorsque la plaque PEI texturée est installée. La "
-"valeur 0 signifie que le filament n'est pas supporté par la plaque PEI "
-"texturée"
+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 "Température du plateau lorsque la plaque PEI texturée est installée. La valeur 0 signifie que le filament n'est pas supporté par la plaque PEI texturée"
msgid "Volumetric speed limitation"
msgstr "Limitation de vitesse volumétrique"
@@ -8013,28 +7084,14 @@ msgstr "Ventilateur de refroidissement des piĂšces"
msgid "Min fan speed threshold"
msgstr "Seuil de vitesse mini du ventilateur"
-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 ""
-"La vitesse du ventilateur de refroidissement des piĂšces commencera Ă "
-"fonctionner à la vitesse minimale lorsque le temps de couche estimé n'est "
-"pas supérieur au temps de couche dans le réglage. Lorsque le temps de couche "
-"est inférieur au seuil, la vitesse du ventilateur est interpolée entre la "
-"vitesse minimale et maximale du ventilateur en fonction du temps "
-"d'impression de la couche"
+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 "La vitesse du ventilateur de refroidissement des piÚces commencera à fonctionner à la vitesse minimale lorsque le temps de couche estimé n'est pas supérieur au temps de couche dans le réglage. Lorsque le temps de couche est inférieur au seuil, la vitesse du ventilateur est interpolée entre la vitesse minimale et maximale du ventilateur en fonction du temps d'impression de la couche"
msgid "Max fan speed threshold"
msgstr "Seuil de vitesse maximale du ventilateur"
-msgid ""
-"Part cooling fan speed will be max when the estimated layer time is shorter "
-"than the setting value"
-msgstr ""
-"La vitesse du ventilateur de refroidissement des piĂšces sera maximale "
-"lorsque le temps de couche estimé est plus court que la valeur de réglage"
+msgid "Part cooling fan speed will be max when the estimated layer time is shorter than the setting value"
+msgstr "La vitesse du ventilateur de refroidissement des piÚces sera maximale lorsque le temps de couche estimé est plus court que la valeur de réglage"
msgid "Auxiliary part cooling fan"
msgstr "Ventilateur de refroidissement auxiliaire"
@@ -8058,16 +7115,13 @@ msgid "Wipe tower parameters"
msgstr "ParamĂštres de la tour dâessuyage"
msgid "Toolchange parameters with single extruder MM printers"
-msgstr ""
-"ParamĂštres de changement d'outil avec les imprimantes MM Ă extrudeur unique"
+msgstr "ParamĂštres de changement d'outil avec les imprimantes MM Ă extrudeur unique"
msgid "Ramming settings"
msgstr "ParamĂštres de pilonnage"
msgid "Toolchange parameters with multi extruder MM printers"
-msgstr ""
-"ParamĂštres de changement d'outil pour les imprimantes MM Ă extrudeurs "
-"multiples"
+msgstr "ParamĂštres de changement d'outil pour les imprimantes MM Ă extrudeurs multiples"
msgid "Printable space"
msgstr "Espace imprimable"
@@ -8152,13 +7206,11 @@ msgstr "Nombre dâextrudeurs de lâimprimante."
msgid ""
"Single Extruder Multi Material is selected, \n"
"and all extruders must have the same diameter.\n"
-"Do you want to change the diameter for all extruders to first extruder "
-"nozzle diameter value?"
+"Do you want to change the diameter for all extruders to first extruder nozzle diameter value?"
msgstr ""
"Extrudeur unique multi-matériaux est sélectionné, \n"
"et tous les extrudeurs doivent avoir le mĂȘme diamĂštre.\n"
-"Souhaitez-vous modifier le diamĂštre de tous les extrudeurs pour quâil "
-"corresponde Ă la premiĂšre valeur du diamĂštre de la buse de lâextrudeur ?"
+"Souhaitez-vous modifier le diamĂštre de tous les extrudeurs pour quâil corresponde Ă la premiĂšre valeur du diamĂštre de la buse de lâextrudeur ?"
msgid "Nozzle diameter"
msgstr "DiamĂštre de la buse"
@@ -8169,13 +7221,8 @@ msgstr "Tour dâessuyage"
msgid "Single extruder multimaterial parameters"
msgstr "ParamÚtres multi-matériaux pour extrudeur unique"
-msgid ""
-"This is a single extruder multimaterial printer, diameters of all extruders "
-"will be set to the new value. Do you want to proceed?"
-msgstr ""
-"Il sâagit dâune imprimante mono extrudeur multimatĂ©riaux, les diamĂštres de "
-"tous les extrudeurs seront réglés sur la nouvelle valeur. Voulez-vous "
-"continuer ?"
+msgid "This is a single extruder multimaterial printer, diameters of all extruders will be set to the new value. Do you want to proceed?"
+msgstr "Il sâagit dâune imprimante mono extrudeur multimatĂ©riaux, les diamĂštres de tous les extrudeurs seront rĂ©glĂ©s sur la nouvelle valeur. Voulez-vous continuer ?"
msgid "Layer height limits"
msgstr "Limites de hauteur de couche"
@@ -8191,8 +7238,7 @@ msgid ""
"\n"
"Shall I disable it in order to enable Firmware Retraction?"
msgstr ""
-"Lâoption Essuyage nâest pas disponible lors de lâutilisation du mode "
-"Rétraction Firmware.\n"
+"Lâoption Essuyage nâest pas disponible lors de lâutilisation du mode RĂ©traction Firmware.\n"
"\n"
"Voulez-vous désactiver cette option pour activer la Rétraction Firmware ?"
@@ -8203,17 +7249,11 @@ msgid "Detached"
msgstr "Détaché"
#, 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 ""
-"Le préréglage de filament %d et le préréglage de processus %d sont associés "
-"Ă cette imprimante. Ces prĂ©rĂ©glages seront supprimĂ©s si lâimprimante est "
-"supprimée."
+msgid "%d Filament Preset and %d Process Preset is attached to this printer. Those presets would be deleted if the printer is deleted."
+msgstr "Le prĂ©rĂ©glage de filament %d et le prĂ©rĂ©glage de processus %d sont associĂ©s Ă cette imprimante. Ces prĂ©rĂ©glages seront supprimĂ©s si lâimprimante est supprimĂ©e."
msgid "Presets inherited by other presets can not be deleted!"
-msgstr ""
-"Les prĂ©rĂ©glages hĂ©ritĂ©s dâautres prĂ©rĂ©glages ne peuvent pas ĂȘtre supprimĂ©s !"
+msgstr "Les prĂ©rĂ©glages hĂ©ritĂ©s dâautres prĂ©rĂ©glages ne peuvent pas ĂȘtre supprimĂ©s !"
msgid "The following presets inherit this preset."
msgid_plural "The following preset inherits this preset."
@@ -8232,13 +7272,10 @@ msgstr[1] "Les préréglages suivants seront également supprimés."
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 ""
"Ătes-vous sĂ»r de vouloir supprimer le prĂ©rĂ©glage sĂ©lectionnĂ© ? \n"
-"Si le préréglage correspond à un filament actuellement utilisé sur votre "
-"imprimante, veuillez réinitialiser les informations sur le filament pour cet "
-"emplacement."
+"Si le préréglage correspond à un filament actuellement utilisé sur votre imprimante, veuillez réinitialiser les informations sur le filament pour cet emplacement."
#, boost-format
msgid "Are you sure to %1% the selected preset?"
@@ -8251,14 +7288,10 @@ msgid "Set"
msgstr "Appliquer"
msgid "Click to reset current value and attach to the global value."
-msgstr ""
-"Cliquez pour réinitialiser la valeur actuelle et l'attacher à la valeur "
-"globale."
+msgstr "Cliquez pour réinitialiser la valeur actuelle et l'attacher à la valeur globale."
msgid "Click to drop current modify and reset to saved value."
-msgstr ""
-"Cliquez pour supprimer la modification actuelle et réinitialiser la valeur "
-"enregistrée."
+msgstr "Cliquez pour supprimer la modification actuelle et réinitialiser la valeur enregistrée."
msgid "Process Settings"
msgstr "ParamĂštres de traitement"
@@ -8288,8 +7321,7 @@ msgid "Discard"
msgstr "Ignorer"
msgid "Click the right mouse button to display the full text."
-msgstr ""
-"Cliquez sur le bouton droit de la souris pour afficher le texte complet."
+msgstr "Cliquez sur le bouton droit de la souris pour afficher le texte complet."
msgid "All changes will not be saved"
msgstr "Toutes les modifications ne seront pas enregistrées"
@@ -8304,9 +7336,7 @@ msgid "Keep the selected options."
msgstr "Conserver les options sélectionnées."
msgid "Transfer the selected options to the newly selected preset."
-msgstr ""
-"Transférez les options sélectionnées vers le préréglage nouvellement "
-"sélectionné."
+msgstr "Transférez les options sélectionnées vers le préréglage nouvellement sélectionné."
#, boost-format
msgid ""
@@ -8318,30 +7348,19 @@ msgstr "Enregistrez les options sélectionnées dans le préréglage \"%1%\"."
msgid ""
"Transfer the selected options to the newly selected preset \n"
"\"%1%\"."
-msgstr ""
-"Transférez les options sélectionnées vers le préréglage nouvellement "
-"sélectionné \"%1%\"."
+msgstr "Transférez les options sélectionnées vers le préréglage nouvellement sélectionné \"%1%\"."
#, boost-format
msgid "Preset \"%1%\" contains the following unsaved changes:"
-msgstr ""
-"Le préréglage \"%1%\" contient les modifications non enregistrées suivantes :"
+msgstr "Le préréglage \"%1%\" contient les modifications non enregistrées suivantes :"
#, boost-format
-msgid ""
-"Preset \"%1%\" is not compatible with the new printer profile and it "
-"contains the following unsaved changes:"
-msgstr ""
-"Le préréglage \"%1%\" n'est pas compatible avec le nouveau profil "
-"d'imprimante et contient les modifications non enregistrées suivantes :"
+msgid "Preset \"%1%\" is not compatible with the new printer profile and it contains the following unsaved changes:"
+msgstr "Le préréglage \"%1%\" n'est pas compatible avec le nouveau profil d'imprimante et contient les modifications non enregistrées suivantes :"
#, boost-format
-msgid ""
-"Preset \"%1%\" is not compatible with the new process profile and it "
-"contains the following unsaved changes:"
-msgstr ""
-"Le préréglage \"%1%\" n'est pas compatible avec le nouveau profil de "
-"traitement et contient les modifications non enregistrées suivantes :"
+msgid "Preset \"%1%\" is not compatible with the new process profile and it contains the following unsaved changes:"
+msgstr "Le préréglage \"%1%\" n'est pas compatible avec le nouveau profil de traitement et contient les modifications non enregistrées suivantes :"
#, boost-format
msgid "You have changed some settings of preset \"%1%\". "
@@ -8352,30 +7371,24 @@ msgid ""
"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."
+"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."
+"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."
+"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 "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"
+"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."
+"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"
@@ -8392,31 +7405,21 @@ msgstr "Afficher tous les préréglages (y compris incompatibles)"
msgid "Select presets to compare"
msgstr "Sélectionnez les préréglages à comparer"
-msgid ""
-"You can only transfer to current active profile because it has been modified."
-msgstr ""
-"Le transfert vers le profil actif actuel nâest possible que sâil a Ă©tĂ© "
-"modifié."
+msgid "You can only transfer to current active profile because it has been modified."
+msgstr "Le transfert vers le profil actif actuel nâest possible que sâil a Ă©tĂ© modifiĂ©."
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 ""
-"Transférer les options sélectionnées du préréglage de gauche vers celui de "
-"droite.\n"
-"Remarque : Les nouveaux préréglages modifiés seront sélectionnés dans les "
-"onglets de réglage aprÚs la fermeture de cette boßte de dialogue."
+"Transférer les options sélectionnées du préréglage de gauche vers celui de droite.\n"
+"Remarque : Les nouveaux préréglages modifiés seront sélectionnés dans les onglets de réglage aprÚs la fermeture de cette boßte de dialogue."
msgid "Transfer values from left to right"
msgstr "Transférer les valeurs de gauche à droite"
-msgid ""
-"If enabled, this dialog can be used for transfer selected values from left "
-"to right preset."
-msgstr ""
-"Si elle est activĂ©e, cette boĂźte de dialogue peut ĂȘtre utilisĂ©e pour "
-"convertir les valeurs sélectionnées de gauche à droite."
+msgid "If enabled, this dialog can be used for transfer selected values from left to right preset."
+msgstr "Si elle est activĂ©e, cette boĂźte de dialogue peut ĂȘtre utilisĂ©e pour convertir les valeurs sĂ©lectionnĂ©es de gauche Ă droite."
msgid "Add File"
msgstr "Ajouter un Fichier"
@@ -8460,8 +7463,7 @@ msgid "Configuration update"
msgstr "Mise Ă jour de la configuration"
msgid "A new configuration package available, Do you want to install it?"
-msgstr ""
-"Un nouveau package de configuration disponible, Voulez-vous l'installer ?"
+msgstr "Un nouveau package de configuration disponible, Voulez-vous l'installer ?"
msgid "Description:"
msgstr "La description:"
@@ -8470,24 +7472,20 @@ msgid "Configuration incompatible"
msgstr "Configuration incompatible"
msgid "the configuration package is incompatible with current application."
-msgstr ""
-"le package de configuration est incompatible avec l'application actuelle."
+msgstr "le package de configuration est incompatible avec l'application actuelle."
#, c-format, 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 ""
-"Le package de configuration est incompatible avec l'application actuelle. %s "
-"mettra à jour le package de configuration, sinon il ne pourra pas démarrer"
+msgstr "Le package de configuration est incompatible avec l'application actuelle. %s mettra à jour le package de configuration, sinon il ne pourra pas démarrer"
#, c-format, boost-format
msgid "Exit %s"
msgstr "Sortir de %s"
msgid "the Configuration package is incompatible with current APP."
-msgstr ""
-"le package de configuration est incompatible avec l'application actuelle."
+msgstr "le package de configuration est incompatible avec l'application actuelle."
msgid "Configuration updates"
msgstr "Mises Ă jour de la configuration"
@@ -8556,27 +7554,13 @@ msgid "Ramming customization"
msgstr "Personnalisation du pilonnage"
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 ""
-"Le pilonnage dĂ©signe lâextrusion rapide juste avant un changement dâoutil "
-"sur une imprimante MM à extrudeur unique. Son but est de façonner "
-"correctement lâextrĂ©mitĂ© du filament dĂ©chargĂ© afin quâil nâempĂȘche pas "
-"lâinsertion du nouveau filament et puisse lui-mĂȘme ĂȘtre rĂ©insĂ©rĂ© plus tard. "
-"Cette phase est importante et différents matériaux peuvent nécessiter "
-"diffĂ©rentes vitesses dâextrusion pour obtenir la bonne forme. Pour cette "
-"raison, les taux dâextrusion lors du pilonnage sont rĂ©glables.\n"
+"Le pilonnage dĂ©signe lâextrusion rapide juste avant un changement dâoutil sur une imprimante MM Ă extrudeur unique. Son but est de façonner correctement lâextrĂ©mitĂ© du filament dĂ©chargĂ© afin quâil nâempĂȘche pas lâinsertion du nouveau filament et puisse lui-mĂȘme ĂȘtre rĂ©insĂ©rĂ© plus tard. Cette phase est importante et diffĂ©rents matĂ©riaux peuvent nĂ©cessiter diffĂ©rentes vitesses dâextrusion pour obtenir la bonne forme. Pour cette raison, les taux dâextrusion lors du pilonnage sont rĂ©glables.\n"
"\n"
-"Il sâagit dâun rĂ©glage de niveau expert, un rĂ©glage incorrect entraĂźnera "
-"probablement des bourrages, des roues de lâextrudeur broyant le filament, "
-"etc."
+"Il sâagit dâun rĂ©glage de niveau expert, un rĂ©glage incorrect entraĂźnera probablement des bourrages, des roues de lâextrudeur broyant le filament, etc."
msgid "Total ramming time"
msgstr "Durée totale de pilonnage"
@@ -8602,13 +7586,8 @@ msgstr "Re-calculer"
msgid "Flushing volumes for filament change"
msgstr "Volumes de purge pour le changement de filament"
-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 recalcule les volumes de purge Ă chaque fois que la couleur des "
-"filaments change. Vous pouvez désactiver le calcul automatique dans Orca "
-"Slicer > Préférences"
+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 recalcule les volumes de purge à chaque fois que la couleur des filaments change. Vous pouvez désactiver le calcul automatique dans Orca Slicer > Préférences"
msgid "Flushing volume (mmÂł) for each filament pair."
msgstr "Volume de purge (mmÂł) pour chaque paire de filaments."
@@ -8639,44 +7618,20 @@ msgstr "De"
msgid "To"
msgstr "Ă"
-msgid ""
-"Windows Media Player is required for this task! Do you want to enable "
-"'Windows Media Player' for your operation system?"
-msgstr ""
-"Windows Media Player est nécessaire pour cette tùche ! Voulez-vous activer "
-"âWindows Media Playerâ pour votre systĂšme dâexploitation ?"
+msgid "Windows Media Player is required for this task! Do you want to enable 'Windows Media Player' for your operation system?"
+msgstr "Windows Media Player est nĂ©cessaire pour cette tĂąche ! Voulez-vous activer âWindows Media Playerâ pour votre systĂšme dâexploitation ?"
-msgid ""
-"BambuSource has not correctly been registered for media playing! Press Yes "
-"to re-register it. You will be promoted twice"
-msgstr ""
-"BambuSource nâa pas Ă©tĂ© correctement enregistrĂ© pour la lecture de mĂ©dias ! "
-"Appuyez sur Oui pour le réenregistrer. Vous recevrez deux fois la demande de "
-"permission."
+msgid "BambuSource has not correctly been registered for media playing! Press Yes to re-register it. You will be promoted twice"
+msgstr "BambuSource nâa pas Ă©tĂ© correctement enregistrĂ© pour la lecture de mĂ©dias ! Appuyez sur Oui pour le rĂ©enregistrer. Vous recevrez deux fois la demande de permission."
-msgid ""
-"Missing BambuSource component registered for media playing! Please re-"
-"install BambuStutio or seek after-sales help."
-msgstr ""
-"Composant BambuSource manquant enregistré pour la lecture des médias ! "
-"Veuillez rĂ©installer OrcaSlicer ou demander de lâaide au service aprĂšs-vente."
+msgid "Missing BambuSource component registered for media playing! Please re-install BambuStutio or seek after-sales help."
+msgstr "Composant BambuSource manquant enregistrĂ© pour la lecture des mĂ©dias ! Veuillez rĂ©installer OrcaSlicer ou demander de lâaide au service aprĂšs-vente."
-msgid ""
-"Using a BambuSource from a different install, video play may not work "
-"correctly! Press Yes to fix it."
-msgstr ""
-"Si vous utilisez une BambuSource provenant dâune autre installation, la "
-"lecture de la vidéo peut ne pas fonctionner correctement ! Appuyez sur Oui "
-"pour résoudre le problÚme."
+msgid "Using a BambuSource from a different install, video play may not work correctly! Press Yes to fix it."
+msgstr "Si vous utilisez une BambuSource provenant dâune autre installation, la lecture de la vidĂ©o peut ne pas fonctionner correctement ! Appuyez sur Oui pour rĂ©soudre le problĂšme."
-msgid ""
-"Your system is missing H.264 codecs for GStreamer, which are required to "
-"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-"
-"libav packages, then restart Orca Slicer?)"
-msgstr ""
-"Il manque Ă votre systĂšme les codecs H.264 pour GStreamer, qui sont "
-"nĂ©cessaires pour lire la vidĂ©o. (Essayez dâinstaller les paquets "
-"gstreamer1.0-plugins-bad ou gstreamer1.0-libav, puis redémarrez Orca Slicer)."
+msgid "Your system is missing H.264 codecs for GStreamer, which are required to play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-libav packages, then restart Orca Slicer?)"
+msgstr "Il manque Ă votre systĂšme les codecs H.264 pour GStreamer, qui sont nĂ©cessaires pour lire la vidĂ©o. (Essayez dâinstaller les paquets gstreamer1.0-plugins-bad ou gstreamer1.0-libav, puis redĂ©marrez Orca Slicer)."
msgid "Bambu Network plug-in not detected."
msgstr "Le plug-in Bambu Network nâa pas Ă©tĂ© dĂ©tectĂ©."
@@ -8688,9 +7643,7 @@ msgid "Login"
msgstr "Connexion"
msgid "The configuration package is changed in previous Config Guide"
-msgstr ""
-"Le package de configuration est modifié dans le guide de configuration "
-"précédent"
+msgstr "Le package de configuration est modifié dans le guide de configuration précédent"
msgid "Configuration package changed"
msgstr "Package de configuration modifié"
@@ -8702,19 +7655,19 @@ msgid "Objects list"
msgstr "Liste des objets"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
-msgstr ""
-"Importez des données de géométrie à partir de fichiers STL/STEP/3MF/OBJ/AMF."
+msgstr "Importez des données de géométrie à partir de fichiers STL/STEP/3MF/OBJ/AMF."
-msgid "Shift+G"
-msgstr "Shift+G"
+msgid "â+Shift+G"
+msgstr "â+Shift+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Ctrl+Shift+G"
msgid "Paste from clipboard"
msgstr "Coller depuis le presse-papier"
msgid "Show/Hide 3Dconnexion devices settings dialog"
-msgstr ""
-"Afficher/Masquer la boßte de dialogue des paramÚtres des périphériques "
-"3Dconnexion"
+msgstr "Afficher/Masquer la boßte de dialogue des paramÚtres des périphériques 3Dconnexion"
msgid "Switch table page"
msgstr "Page du tableau de commutation"
@@ -8743,14 +7696,8 @@ msgstr "Maj+A"
msgid "Shift+R"
msgstr "Maj+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 ""
-"Oriente automatiquement les objets sélectionnés ou tous les objets. S'il y a "
-"des objets sélectionnés, il oriente uniquement ceux qui sont sélectionnés. "
-"Sinon, il oriente tous les objets du disque actuel."
+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 "Oriente automatiquement les objets sélectionnés ou tous les objets. S'il y a des objets sélectionnés, il oriente uniquement ceux qui sont sélectionnés. Sinon, il oriente tous les objets du disque actuel."
msgid "Shift+Tab"
msgstr "Maj+Tab"
@@ -8758,18 +7705,33 @@ msgstr "Maj+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "Réduire/développer la barre latérale"
-msgid "Any arrow"
-msgstr "Toutes les flĂšches"
+msgid "â+Any arrow"
+msgstr "â+Toute flĂšche"
msgid "Movement in camera space"
msgstr "Mouvement dans l'espace de la caméra"
+msgid "â„+Left mouse button"
+msgstr "â„+Bouton gauche de la souris"
+
msgid "Select a part"
msgstr "Sélectionner une piÚce"
+msgid "â+Left mouse button"
+msgstr "â+Bouton gauche de la souris"
+
msgid "Select multiple objects"
msgstr "Sélectionnez tous les objets sur la plaque actuelle"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl+Toute flĂšche"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt+Bouton gauche de la souris"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl+Bouton gauche de la souris"
+
msgid "Shift+Left mouse button"
msgstr "Maj+Bouton gauche de la souris"
@@ -8872,12 +7834,24 @@ msgstr "Plateau"
msgid "Move: press to snap by 1mm"
msgstr "Déplacer : appuyez pour aligner de 1 mm"
+msgid "â+Mouse wheel"
+msgstr "â+Molette de la souris"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "Support/Peinture couleur : ajustez le rayon du stylet"
+msgid "â„+Mouse wheel"
+msgstr "â„+Molette de la souris"
+
msgid "Support/Color Painting: adjust section position"
msgstr "Support/Peinture couleur : ajuster la position de la section"
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl+Molette de la souris"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+Molette de la souris"
+
msgid "Gizmo"
msgstr "Gizmo"
@@ -8888,15 +7862,13 @@ msgid "Delete objects, parts, modifiers "
msgstr "Supprimer des objets, des piĂšces, des modificateurs "
msgid "Select the object/part and press space to change the name"
-msgstr ""
-"Sélectionnez l'objet/la piÚce et appuyez sur espace pour changer le nom"
+msgstr "Sélectionnez l'objet/la piÚce et appuyez sur espace pour changer le nom"
msgid "Mouse click"
msgstr "Clic de souris"
msgid "Select the object/part and mouse click to change the name"
-msgstr ""
-"Sélectionnez l'objet/la piÚce et cliquez avec la souris pour changer le nom"
+msgstr "Sélectionnez l'objet/la piÚce et cliquez avec la souris pour changer le nom"
msgid "Objects List"
msgstr "Liste d'objets"
@@ -8908,12 +7880,10 @@ msgid "Vertical slider - Move active thumb Down"
msgstr "Barre de défilement verticale - Déplacer le curseur actif vers le Bas"
msgid "Horizontal slider - Move active thumb Left"
-msgstr ""
-"Barre de défilement horizontale - Déplacer le curseur actif vers la Gauche"
+msgstr "Barre de défilement horizontale - Déplacer le curseur actif vers la Gauche"
msgid "Horizontal slider - Move active thumb Right"
-msgstr ""
-"Barre de défilement horizontale - Déplacer le curseur actif vers la Droite"
+msgstr "Barre de défilement horizontale - Déplacer le curseur actif vers la Droite"
msgid "On/Off one layer mode of the vertical slider"
msgstr "On/Off mode couche unique de la barre de défilement verticale"
@@ -8943,16 +7913,12 @@ msgstr "informations de mise Ă jour de la version %s :"
msgid "Network plug-in update"
msgstr "Mise à jour du plug-in réseau"
-msgid ""
-"Click OK to update the Network plug-in when Orca Slicer launches next time."
-msgstr ""
-"Cliquez sur OK pour mettre à jour le plug-in réseau lors du prochain "
-"démarrage de OrcaSlicer."
+msgid "Click OK to update the Network plug-in when Orca Slicer launches next time."
+msgstr "Cliquez sur OK pour mettre à jour le plug-in réseau lors du prochain démarrage de OrcaSlicer."
#, c-format, boost-format
msgid "A new Network plug-in(%s) available, Do you want to install it?"
-msgstr ""
-"Un nouveau plug-in réseau (%s) est disponible. Voulez-vous l'installer ?"
+msgstr "Un nouveau plug-in réseau (%s) est disponible. Voulez-vous l'installer ?"
msgid "New version of Orca Slicer"
msgstr "Nouvelle version de OrcaSlicer"
@@ -9005,18 +7971,11 @@ msgstr "Confirmation et mise Ă jour de la buse"
msgid "LAN Connection Failed (Sending print file)"
msgstr "Ăchec de la connexion au rĂ©seau local (envoi du fichier d'impression)"
-msgid ""
-"Step 1, please confirm Orca Slicer and your printer are in the same LAN."
-msgstr ""
-"Ătape 1, veuillez confirmer que OrcaSlicer et votre imprimante sont sur le "
-"mĂȘme rĂ©seau local."
+msgid "Step 1, please confirm Orca Slicer and your printer are in the same LAN."
+msgstr "Ătape 1, veuillez confirmer que OrcaSlicer et votre imprimante sont sur le mĂȘme rĂ©seau local."
-msgid ""
-"Step 2, if the IP and Access Code below are different from the actual values "
-"on your printer, please correct them."
-msgstr ""
-"Ătape 2, si l'adresse IP et le code d'accĂšs ci-dessous sont diffĂ©rents des "
-"valeurs actuelles de votre imprimante, corrigez-les."
+msgid "Step 2, if the IP and Access Code below are different from the actual values on your printer, please correct them."
+msgstr "Ătape 2, si l'adresse IP et le code d'accĂšs ci-dessous sont diffĂ©rents des valeurs actuelles de votre imprimante, corrigez-les."
msgid "IP"
msgstr "IP"
@@ -9028,9 +7987,7 @@ msgid "Where to find your printer's IP and Access Code?"
msgstr "OĂč trouver l'adresse IP et le code d'accĂšs de votre imprimante ?"
msgid "Step 3: Ping the IP address to check for packet loss and latency."
-msgstr ""
-"Ătape 3 : Effectuer un ping de lâadresse IP pour vĂ©rifier la perte de "
-"paquets et la latence."
+msgstr "Ătape 3 : Effectuer un ping de lâadresse IP pour vĂ©rifier la perte de paquets et la latence."
msgid "Test"
msgstr "Tester"
@@ -9075,32 +8032,14 @@ msgstr "La mise à jour a échoué"
msgid "Updating successful"
msgstr "Mise à jour réussie"
-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 ""
-"Ătes-vous sĂ»r de vouloir effectuer la mise Ă jour ? Cela prendra environ 10 "
-"minutes. Ne mettez pas l'imprimante hors tension durant la mise Ă jour."
+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 "Ătes-vous sĂ»r de vouloir effectuer la mise Ă jour ? Cela prendra environ 10 minutes. Ne mettez pas l'imprimante hors tension durant la mise Ă jour."
-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 ""
-"Une mise Ă jour importante a Ă©tĂ© dĂ©tectĂ©e et doit ĂȘtre exĂ©cutĂ©e avant de "
-"pouvoir poursuivre l'impression. Voulez-vous effectuer la mise Ă jour "
-"maintenant ? Vous pouvez également effectuer une mise à jour ultérieurement "
-"Ă partir de \"Mettre Ă jour le 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 "Une mise Ă jour importante a Ă©tĂ© dĂ©tectĂ©e et doit ĂȘtre exĂ©cutĂ©e avant de pouvoir poursuivre l'impression. Voulez-vous effectuer la mise Ă jour maintenant ? Vous pouvez Ă©galement effectuer une mise Ă jour ultĂ©rieurement Ă partir de \"Mettre Ă jour le 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 ""
-"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 "
-"maintenant ? Vous pouvez également effectuer une mise à jour ultérieurement "
-"depuis l'imprimante ou lors du prochain démarrage d'Orca Slicer."
+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 "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 maintenant ? Vous pouvez également effectuer une mise à jour ultérieurement depuis l'imprimante ou lors du prochain démarrage d'Orca Slicer."
msgid "Extension Board"
msgstr "Carte d'Extension"
@@ -9158,9 +8097,7 @@ msgid "Copying of file %1% to %2% failed: %3%"
msgstr "Ăchec de la copie du fichier %1% vers %2% : %3%"
msgid "Need to check the unsaved changes before configuration updates."
-msgstr ""
-"Besoin de vérifier les modifications non enregistrées avant les mises à jour "
-"de configuration."
+msgstr "Besoin de vérifier les modifications non enregistrées avant les mises à jour de configuration."
msgid "Configuration package: "
msgstr "Paquet de configuration : "
@@ -9171,50 +8108,33 @@ msgstr " mis Ă jour en "
msgid "Open G-code file:"
msgstr "Ouvrir un fichier G-code :"
-msgid ""
-"One object has empty initial layer and can't be printed. Please Cut the "
-"bottom or enable supports."
-msgstr ""
-"Un objet a une couche initiale vide et ne peut pas ĂȘtre imprimĂ©. Veuillez "
-"couper le bas ou activer les supports."
+msgid "One object has empty initial layer and can't be printed. Please Cut the bottom or enable supports."
+msgstr "Un objet a une couche initiale vide et ne peut pas ĂȘtre imprimĂ©. Veuillez couper le bas ou activer les supports."
#, boost-format
msgid "Object can't be printed for empty layer between %1% and %2%."
-msgstr ""
-"L'objet comporte des couches vides comprises entre %1% et %2% et ne peut pas "
-"ĂȘtre imprimĂ©."
+msgstr "L'objet comporte des couches vides comprises entre %1% et %2% et ne peut pas ĂȘtre imprimĂ©."
#, boost-format
msgid "Object: %1%"
msgstr "Objet : %1%"
-msgid ""
-"Maybe parts of the object at these height are too thin, or the object has "
-"faulty mesh"
-msgstr ""
-"Peut-ĂȘtre que certaines parties de l'objet Ă ces hauteurs sont trop fines ou "
-"que l'objet a un maillage défectueux"
+msgid "Maybe parts of the object at these height are too thin, or the object has faulty mesh"
+msgstr "Peut-ĂȘtre que certaines parties de l'objet Ă ces hauteurs sont trop fines ou que l'objet a un maillage dĂ©fectueux"
msgid "No object can be printed. Maybe too small"
msgstr "Aucun objet ne peut ĂȘtre imprimĂ©. Peut-ĂȘtre trop petit"
-msgid ""
-"Your print is very close to the priming regions. Make sure there is no "
-"collision."
-msgstr ""
-"Votre impression est trĂšs proche des rĂ©gions dâamorçage. Assurez-vous quâil "
-"nây a pas de collision."
+msgid "Your print is very close to the priming regions. Make sure there is no collision."
+msgstr "Votre impression est trĂšs proche des rĂ©gions dâamorçage. Assurez-vous quâil nây a pas de collision."
msgid ""
"Failed to generate gcode for invalid custom G-code.\n"
"\n"
-msgstr ""
-"Ăchec de la gĂ©nĂ©ration du G-code pour un G-code personnalisĂ© non valide.\n"
+msgstr "Ăchec de la gĂ©nĂ©ration du G-code pour un G-code personnalisĂ© non valide.\n"
msgid "Please check the custom G-code or use the default custom G-code."
-msgstr ""
-"Veuillez vérifier le G-code personnalisé ou utiliser le G-code personnalisé "
-"par défaut."
+msgstr "Veuillez vérifier le G-code personnalisé ou utiliser le G-code personnalisé par défaut."
#, boost-format
msgid "Generating G-code: layer %1%"
@@ -9258,16 +8178,10 @@ msgstr "Plusieurs"
#, boost-format
msgid "Failed to calculate line width of %1%. Can not get value of \"%2%\" "
-msgstr ""
-"Ăchec du calcul de la largeur de ligne de %1%. Impossible d'obtenir la "
-"valeur de \"%2%\" "
+msgstr "Ăchec du calcul de la largeur de ligne de %1%. Impossible d'obtenir la valeur de \"%2%\" "
-msgid ""
-"Invalid spacing supplied to Flow::with_spacing(), check your layer height "
-"and extrusion width"
-msgstr ""
-"Espacement non valide fourni à Flow::with_spacing(), vérifiez la hauteur de "
-"votre couche et la largeur dâextrusion"
+msgid "Invalid spacing supplied to Flow::with_spacing(), check your layer height and extrusion width"
+msgstr "Espacement non valide fourni Ă Flow::with_spacing(), vĂ©rifiez la hauteur de votre couche et la largeur dâextrusion"
msgid "undefined error"
msgstr "erreur non définie"
@@ -9363,171 +8277,93 @@ msgid "write callback failed"
msgstr "échec du rappel d'écriture"
#, boost-format
-msgid ""
-"%1% is too close to exclusion area, there may be collisions when printing."
-msgstr ""
-"%1% est trop proche de la zone d'exclusion. Il peut y avoir des collisions "
-"lors de l'impression."
+msgid "%1% is too close to exclusion area, there may be collisions when printing."
+msgstr "%1% est trop proche de la zone d'exclusion. Il peut y avoir des collisions lors de l'impression."
#, boost-format
msgid "%1% is too close to others, and collisions may be caused."
-msgstr ""
-"%1% est trop proche des autres, cela pourrait provoquer des collisions."
+msgstr "%1% est trop proche des autres, cela pourrait provoquer des collisions."
#, boost-format
msgid "%1% is too tall, and collisions will be caused."
msgstr "%1% est trop grand, cela pourrait provoquer des collisions."
msgid " is too close to others, there may be collisions when printing."
-msgstr ""
-" est trop proche des autres; il peut y avoir des collisions lors de "
-"l'impression."
+msgstr " est trop proche des autres; il peut y avoir des collisions lors de l'impression."
msgid " is too close to exclusion area, there may be collisions when printing."
-msgstr ""
-" est trop proche d'une zone d'exclusion, il peut y avoir des collisions lors "
-"de l'impression."
+msgstr " est trop proche d'une zone d'exclusion, il peut y avoir des collisions lors de l'impression."
msgid "Prime Tower"
msgstr "Tour de purge"
msgid " is too close to others, and collisions may be caused.\n"
-msgstr ""
-" est trop proche des autres. Des collisions risquent d'ĂȘtre provoquĂ©es.\n"
+msgstr " est trop proche des autres. Des collisions risquent d'ĂȘtre provoquĂ©es.\n"
msgid " is too close to exclusion area, and collisions will be caused.\n"
-msgstr ""
-" est trop proche d'une zone d'exclusion. Cela va entraĂźner des collisions.\n"
+msgstr " est trop proche d'une zone d'exclusion. Cela va entraĂźner des collisions.\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 ""
-"Impossible d'imprimer plusieurs filaments qui ont une grande différence de "
-"tempĂ©rature ensemble. Sinon, l'extrudeur et la buse peuvent ĂȘtre bloquĂ©es ou "
-"endommagées pendant l'impression"
+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 "Impossible d'imprimer plusieurs filaments qui ont une grande diffĂ©rence de tempĂ©rature ensemble. Sinon, l'extrudeur et la buse peuvent ĂȘtre bloquĂ©es ou endommagĂ©es pendant l'impression"
msgid "No extrusions under current settings."
msgstr "Aucune extrusion dans les paramĂštres actuels."
-msgid ""
-"Smooth mode of timelapse is not supported when \"by object\" sequence is "
-"enabled."
-msgstr ""
-"Le mode fluide du timelapse n'est pas pris en charge lorsque le mode "
-"d'impression « par objet » est activé."
+msgid "Smooth mode of timelapse is not supported when \"by object\" sequence is enabled."
+msgstr "Le mode fluide du timelapse n'est pas pris en charge lorsque le mode d'impression « par objet » est activé."
-msgid ""
-"Please select \"By object\" print sequence to print multiple objects in "
-"spiral vase mode."
-msgstr ""
-"Veuillez sélectionner la séquence d'impression \"Par objet\" pour imprimer "
-"plusieurs objets en mode vase en spirale."
+msgid "Please select \"By object\" print sequence to print multiple objects in spiral vase mode."
+msgstr "Veuillez sélectionner la séquence d'impression \"Par objet\" pour imprimer plusieurs objets en mode vase en spirale."
-msgid ""
-"The spiral vase mode does not work when an object contains more than one "
-"materials."
-msgstr ""
-"Le mode vase en spirale ne fonctionne pas lorsqu'un objet contient plusieurs "
-"matériaux."
+msgid "The spiral vase mode does not work when an object contains more than one materials."
+msgstr "Le mode vase en spirale ne fonctionne pas lorsqu'un objet contient plusieurs matériaux."
#, boost-format
msgid "The object %1% exceeds the maximum build volume height."
msgstr "Lâobjet %1% dĂ©passe la hauteur maximale du volume dâimpression."
#, boost-format
-msgid ""
-"While the object %1% itself fits the build volume, its last layer exceeds "
-"the maximum build volume height."
-msgstr ""
-"Bien que lâobjet %1% sâadapte lui-mĂȘme au volume dâimpression, sa derniĂšre "
-"couche dépasse la hauteur maximale du volume de construction."
+msgid "While the object %1% itself fits the build volume, its last layer exceeds the maximum build volume height."
+msgstr "Bien que lâobjet %1% sâadapte lui-mĂȘme au volume dâimpression, sa derniĂšre couche dĂ©passe la hauteur maximale du volume de construction."
-msgid ""
-"You might want to reduce the size of your model or change current print "
-"settings and retry."
-msgstr ""
-"Vous devez réduire la taille de votre modÚle ou modifier les paramÚtres "
-"dâimpression actuels et rĂ©essayer."
+msgid "You might want to reduce the size of your model or change current print settings and retry."
+msgstr "Vous devez rĂ©duire la taille de votre modĂšle ou modifier les paramĂštres dâimpression actuels et rĂ©essayer."
msgid "Variable layer height is not supported with Organic supports."
-msgstr ""
-"La hauteur de couche variable nâest pas prise en charge avec les supports "
-"organiques."
+msgstr "La hauteur de couche variable nâest pas prise en charge avec les supports organiques."
-msgid ""
-"Different nozzle diameters and different filament diameters may not work "
-"well when the prime tower is enabled. It's very experimental, so please "
-"proceed with caution."
-msgstr ""
-"Différents diamÚtres de buses et de filaments peuvent ne pas fonctionner "
-"correctement lorsque la tour dâamorçage est activĂ©e. Il sâagit dâun projet "
-"trÚs expérimental, il convient donc de procéder avec prudence."
+msgid "Different nozzle diameters and different filament diameters may not work well when the prime tower is enabled. It's very experimental, so please proceed with caution."
+msgstr "DiffĂ©rents diamĂštres de buses et de filaments peuvent ne pas fonctionner correctement lorsque la tour dâamorçage est activĂ©e. Il sâagit dâun projet trĂšs expĂ©rimental, il convient donc de procĂ©der avec prudence."
-msgid ""
-"The Wipe Tower is currently only supported with the relative extruder "
-"addressing (use_relative_e_distances=1)."
-msgstr ""
-"La tour dâessuyage nâest actuellement supportĂ©e quâavec lâadressage relatif "
-"des extrudeurs (use_relative_e_distances=1)."
+msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)."
+msgstr "La tour dâessuyage nâest actuellement supportĂ©e quâavec lâadressage relatif des extrudeurs (use_relative_e_distances=1)."
-msgid ""
-"Ooze prevention is only supported with the wipe tower when "
-"'single_extruder_multi_material' is off."
-msgstr ""
-"La prĂ©vention du suintement nâest possible quâavec la tour dâessuyage "
-"lorsque lâoption âsingle_extruder_multi_materialâ est dĂ©sactivĂ©e."
+msgid "Ooze prevention is only supported with the wipe tower when 'single_extruder_multi_material' is off."
+msgstr "La prĂ©vention du suintement nâest possible quâavec la tour dâessuyage lorsque lâoption âsingle_extruder_multi_materialâ est dĂ©sactivĂ©e."
-msgid ""
-"The prime tower is currently only supported for the Marlin, RepRap/Sprinter, "
-"RepRapFirmware and Repetier G-code flavors."
-msgstr ""
-"La tour principale nâest actuellement prise en charge que pour les versions "
-"Marlin, RepRap/Sprinter, RepRapFirmware et Repetier G-code."
+msgid "The prime tower is currently only supported for the Marlin, RepRap/Sprinter, RepRapFirmware and Repetier G-code flavors."
+msgstr "La tour principale nâest actuellement prise en charge que pour les versions Marlin, RepRap/Sprinter, RepRapFirmware et Repetier G-code."
msgid "The prime tower is not supported in \"By object\" print."
-msgstr ""
-"La tour de purge n'est pas prise en charge dans l'impression \"Par objet\"."
+msgstr "La tour de purge n'est pas prise en charge dans l'impression \"Par objet\"."
-msgid ""
-"The prime tower is not supported when adaptive layer height is on. It "
-"requires that all objects have the same layer height."
-msgstr ""
-"La tour de purge n'est pas prise en charge lorsque la hauteur de couche "
-"adaptative est activĂ©e. Cela nĂ©cessite que tous les objets aient la mĂȘme "
-"hauteur de couche."
+msgid "The prime tower is not supported when adaptive layer height is on. It requires that all objects have the same layer height."
+msgstr "La tour de purge n'est pas prise en charge lorsque la hauteur de couche adaptative est activĂ©e. Cela nĂ©cessite que tous les objets aient la mĂȘme hauteur de couche."
msgid "The prime tower requires \"support gap\" to be multiple of layer height"
-msgstr ""
-"La tour de purge nécessite que \"l'écart de support\" soit un multiple de la "
-"hauteur de la couche"
+msgstr "La tour de purge nécessite que \"l'écart de support\" soit un multiple de la hauteur de la couche"
msgid "The prime tower requires that all objects have the same layer heights"
-msgstr ""
-"La tour de purge nĂ©cessite que tous les objets aient la mĂȘme hauteur de "
-"couche."
+msgstr "La tour de purge nĂ©cessite que tous les objets aient la mĂȘme hauteur de couche."
-msgid ""
-"The prime tower requires that all objects are printed over the same number "
-"of raft layers"
-msgstr ""
-"La tour de purge nĂ©cessite que tous les objets soient imprimĂ©s sur le mĂȘme "
-"nombre de couche de radeau."
+msgid "The prime tower requires that all objects are printed over the same number of raft layers"
+msgstr "La tour de purge nĂ©cessite que tous les objets soient imprimĂ©s sur le mĂȘme nombre de couche de radeau."
-msgid ""
-"The prime tower requires that all objects are sliced with the same layer "
-"heights."
-msgstr ""
-"La tour de purge nĂ©cessite que tous les objets soient dĂ©coupĂ©s avec la mĂȘme "
-"hauteur de couche."
+msgid "The prime tower requires that all objects are sliced with the same layer heights."
+msgstr "La tour de purge nĂ©cessite que tous les objets soient dĂ©coupĂ©s avec la mĂȘme hauteur de couche."
-msgid ""
-"The prime tower is only supported if all objects have the same variable "
-"layer height"
-msgstr ""
-"La tour de purge n'est prise en charge que si tous les objets ont la mĂȘme "
-"hauteur de couche variable"
+msgid "The prime tower is only supported if all objects have the same variable layer height"
+msgstr "La tour de purge n'est prise en charge que si tous les objets ont la mĂȘme hauteur de couche variable"
msgid "Too small line width"
msgstr "Largeur de ligne trop petite"
@@ -9535,119 +8371,66 @@ msgstr "Largeur de ligne trop petite"
msgid "Too large line width"
msgstr "Largeur de ligne trop grande"
-msgid ""
-"The prime tower requires that support has the same layer height with object."
-msgstr ""
-"La tour de purge nĂ©cessite que le support ait la mĂȘme hauteur de couche avec "
-"l'objet."
+msgid "The prime tower requires that support has the same layer height with object."
+msgstr "La tour de purge nĂ©cessite que le support ait la mĂȘme hauteur de couche avec l'objet."
-msgid ""
-"Organic support tree tip diameter must not be smaller than support material "
-"extrusion width."
-msgstr ""
-"Le diamĂštre de la pointe des supports organiques ne doit pas ĂȘtre infĂ©rieur "
-"Ă la largeur dâextrusion du matĂ©riau utilisĂ© pour les supports."
+msgid "Organic support tree tip diameter must not be smaller than support material extrusion width."
+msgstr "Le diamĂštre de la pointe des supports organiques ne doit pas ĂȘtre infĂ©rieur Ă la largeur dâextrusion du matĂ©riau utilisĂ© pour les supports."
-msgid ""
-"Organic support branch diameter must not be smaller than 2x support material "
-"extrusion width."
-msgstr ""
-"Le diamĂštre des branches des supports organiques ne doit pas ĂȘtre infĂ©rieur "
-"Ă 2 fois la largeur dâextrusion du matĂ©riau utilisĂ© pour les supports."
+msgid "Organic support branch diameter must not be smaller than 2x support material extrusion width."
+msgstr "Le diamĂštre des branches des supports organiques ne doit pas ĂȘtre infĂ©rieur Ă 2 fois la largeur dâextrusion du matĂ©riau utilisĂ© pour les supports."
-msgid ""
-"Organic support branch diameter must not be smaller than support tree tip "
-"diameter."
-msgstr ""
-"Le diamĂštre des branches des supports organiques ne doit pas ĂȘtre infĂ©rieur "
-"au diamĂštre de la pointe des supports."
+msgid "Organic support branch diameter must not be smaller than support tree tip diameter."
+msgstr "Le diamĂštre des branches des supports organiques ne doit pas ĂȘtre infĂ©rieur au diamĂštre de la pointe des supports."
-msgid ""
-"Support enforcers are used but support is not enabled. Please enable support."
-msgstr ""
-"Les forceurs de support sont utilisés mais le support n'est pas activé. "
-"Veuillez activer les supports."
+msgid "Support enforcers are used but support is not enabled. Please enable support."
+msgstr "Les forceurs de support sont utilisés mais le support n'est pas activé. Veuillez activer les supports."
msgid "Layer height cannot exceed nozzle diameter"
msgstr "La hauteur de la couche ne peut pas dépasser le diamÚtre de la buse"
-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 ""
-"L'extrusion relative de l'extrudeur nécessite de réinitialiser la position "
-"de celui-ci à chaque couche pour éviter la perte de précision de la virgule "
-"flottante. Ajouter \"G92 E0\" au G-code de changement de couche."
+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 "L'extrusion relative de l'extrudeur nécessite de réinitialiser la position de celui-ci à chaque couche pour éviter la perte de précision de la virgule flottante. Ajouter \"G92 E0\" au G-code de changement de couche."
-msgid ""
-"\"G92 E0\" was found in before_layer_gcode, which is incompatible with "
-"absolute extruder addressing."
-msgstr ""
-"\"G92 E0\" a été trouvé dans le G-code avant le changement de couche, ce qui "
-"est incompatible avec lâextrusion absolue de lâextrudeur."
+msgid "\"G92 E0\" was found in before_layer_gcode, which is incompatible with absolute extruder addressing."
+msgstr "\"G92 E0\" a Ă©tĂ© trouvĂ© dans le G-code avant le changement de couche, ce qui est incompatible avec lâextrusion absolue de lâextrudeur."
-msgid ""
-"\"G92 E0\" was found in layer_gcode, which is incompatible with absolute "
-"extruder addressing."
-msgstr ""
-"\"G92 E0\" a été trouvé dans le G-code de changement de couche, ce qui est "
-"incompatible avec lâextrusion absolue de lâextrudeur."
+msgid "\"G92 E0\" was found in layer_gcode, which is incompatible with absolute extruder addressing."
+msgstr "\"G92 E0\" a Ă©tĂ© trouvĂ© dans le G-code de changement de couche, ce qui est incompatible avec lâextrusion absolue de lâextrudeur."
#, c-format, boost-format
msgid "Plate %d: %s does not support filament %s"
msgstr "Plaque %d : %s ne prend pas en charge le filament %s"
-msgid ""
-"Setting the jerk speed too low could lead to artifacts on curved surfaces"
-msgstr ""
-"Un réglage trop bas de la vitesse de saccade peut entraßner des artefacts "
-"sur les surfaces courbes."
+msgid "Setting the jerk speed too low could lead to artifacts on curved surfaces"
+msgstr "Un réglage trop bas de la vitesse de saccade peut entraßner des artefacts sur les surfaces courbes."
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 ""
-"Le rĂ©glage du jerk dĂ©passe le jerk maximum de lâimprimante "
-"(machine_max_jerk_x/machine_max_jerk_y).\n"
-"Orca plafonne automatiquement la vitesse de lâimpulsion pour sâassurer "
-"quâelle ne dĂ©passe pas les capacitĂ©s de lâimprimante.\n"
-"Vous pouvez ajuster le réglage du jerk maximum dans la configuration de "
-"votre imprimante pour obtenir des vitesses plus élevées."
+"Le rĂ©glage du jerk dĂ©passe le jerk maximum de lâimprimante (machine_max_jerk_x/machine_max_jerk_y).\n"
+"Orca plafonne automatiquement la vitesse de lâimpulsion pour sâassurer quâelle ne dĂ©passe pas les capacitĂ©s de lâimprimante.\n"
+"Vous pouvez ajuster le réglage du jerk maximum dans la configuration de votre imprimante pour obtenir des vitesses plus élevées."
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 ""
-"Le paramĂštre dâaccĂ©lĂ©ration dĂ©passe lâaccĂ©lĂ©ration maximale de lâimprimante "
-"(machine_max_acceleration_extruding).\n"
-"Orca limitera automatiquement la vitesse dâaccĂ©lĂ©ration pour sâassurer "
-"quâelle ne dĂ©passe pas les capacitĂ©s de lâimprimante.\n"
-"Vous pouvez ajuster la valeur machine_max_acceleration_extruding dans la "
-"configuration de votre imprimante pour obtenir des vitesses plus élevées."
+"Le paramĂštre dâaccĂ©lĂ©ration dĂ©passe lâaccĂ©lĂ©ration maximale de lâimprimante (machine_max_acceleration_extruding).\n"
+"Orca limitera automatiquement la vitesse dâaccĂ©lĂ©ration pour sâassurer quâelle ne dĂ©passe pas les capacitĂ©s de lâimprimante.\n"
+"Vous pouvez ajuster la valeur machine_max_acceleration_extruding dans la configuration de votre imprimante pour obtenir des vitesses plus élevées."
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 ""
-"Le rĂ©glage de lâaccĂ©lĂ©ration de dĂ©placement dĂ©passe lâaccĂ©lĂ©ration de "
-"dĂ©placement maximale de lâimprimante (machine_max_acceleration_travel).\n"
-"Orca plafonnera automatiquement la vitesse dâaccĂ©lĂ©ration du dĂ©placement "
-"pour sâassurer quâelle ne dĂ©passe pas les capacitĂ©s de lâimprimante.\n"
-"Vous pouvez ajuster la valeur machine_max_acceleration_travel dans la "
-"configuration de votre imprimante pour obtenir des vitesses plus élevées."
+"Le rĂ©glage de lâaccĂ©lĂ©ration de dĂ©placement dĂ©passe lâaccĂ©lĂ©ration de dĂ©placement maximale de lâimprimante (machine_max_acceleration_travel).\n"
+"Orca plafonnera automatiquement la vitesse dâaccĂ©lĂ©ration du dĂ©placement pour sâassurer quâelle ne dĂ©passe pas les capacitĂ©s de lâimprimante.\n"
+"Vous pouvez ajuster la valeur machine_max_acceleration_travel dans la configuration de votre imprimante pour obtenir des vitesses plus élevées."
msgid "Generating skirt & brim"
msgstr "Génération jupe et bord"
@@ -9667,15 +8450,8 @@ msgstr "Zone imprimable"
msgid "Bed exclude area"
msgstr "Zone d'exclusion de plateau"
-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 ""
-"Zone non imprimable dans le plan XY. Par exemple, les imprimantes de la "
-"série X1 utilisent le coin avant gauche pour couper le filament lors du "
-"changement de filament. La zone est exprimée sous forme de polygone par des "
-"points au format suivant : \"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 "Zone non imprimable dans le plan XY. Par exemple, les imprimantes de la série X1 utilisent le coin avant gauche pour couper le filament lors du changement de filament. La zone est exprimée sous forme de polygone par des points au format suivant : \"XxY, XxY,... \""
msgid "Bed custom texture"
msgstr "Texture personnalisée du plateau"
@@ -9686,36 +8462,20 @@ msgstr "ModÚle de plateau personnalisé"
msgid "Elephant foot compensation"
msgstr "Compensation de l'effet patte d'éléphant"
-msgid ""
-"Shrink the initial layer on build plate to compensate for elephant foot "
-"effect"
-msgstr ""
-"Rétrécissez la couche initiale sur le plateau pour compenser l'effet de "
-"patte d'éléphant"
+msgid "Shrink the initial layer on build plate to compensate for elephant foot effect"
+msgstr "Rétrécissez la couche initiale sur le plateau pour compenser l'effet de patte d'éléphant"
msgid "Elephant foot compensation layers"
msgstr "Couches de compensation de la patte d'éléphant"
-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 ""
-"Nombre de couches sur lesquelles la compensation de la patte d'éléphant sera "
-"active. La premiÚre couche sera réduite de la valeur de compensation de la "
-"patte d'éléphant, puis les couches suivantes seront réduites linéairement "
-"moins, jusqu'à la couche indiquée par cette valeur."
+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 "Nombre de couches sur lesquelles la compensation de la patte d'éléphant sera active. La premiÚre couche sera réduite de la valeur de compensation de la patte d'éléphant, puis les couches suivantes seront réduites linéairement moins, jusqu'à la couche indiquée par cette valeur."
msgid "layers"
msgstr "couches"
-msgid ""
-"Slicing height for each layer. Smaller layer height means more accurate and "
-"more printing time"
-msgstr ""
-"Hauteur de découpe pour chaque couche. Une hauteur de couche plus petite "
-"signifie plus de précision et plus de temps d'impression"
+msgid "Slicing height for each layer. Smaller layer height means more accurate and more printing time"
+msgstr "Hauteur de découpe pour chaque couche. Une hauteur de couche plus petite signifie plus de précision et plus de temps d'impression"
msgid "Printable height"
msgstr "Hauteur imprimable"
@@ -9727,8 +8487,7 @@ msgid "Preferred orientation"
msgstr "Orientation préférée"
msgid "Automatically orient stls on the Z-axis upon initial import"
-msgstr ""
-"Orienter automatiquement les stls sur lâaxe Z lors de lâimportation initiale"
+msgstr "Orienter automatiquement les stls sur lâaxe Z lors de lâimportation initiale"
msgid "Printer preset names"
msgstr "Noms des préréglages de l'imprimante"
@@ -9737,46 +8496,25 @@ msgid "Use 3rd-party print host"
msgstr "Utiliser un hĂŽte dâimpression tiers"
msgid "Allow controlling BambuLab's printer through 3rd party print hosts"
-msgstr ""
-"Permettre le contrĂŽle de lâimprimante de BambuLab par des hĂŽtes dâimpression "
-"tiers"
+msgstr "Permettre le contrĂŽle de lâimprimante de BambuLab par des hĂŽtes dâimpression tiers"
msgid "Hostname, IP or URL"
msgstr "Nom d'hĂŽte, adresse 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 ""
-"Orca Slicer peut téléverser des fichiers G-code sur une imprimante hÎte. Ce "
-"champ doit contenir le nom d'hĂŽte, l'adresse IP ou l'URL de l'instance hĂŽte "
-"de l'imprimante. L'hĂŽte d'impression derriĂšre HAProxy avec "
-"l'authentification de base activée est accessible en saisissant le nom "
-"d'utilisateur et le mot de passe dans l'URL au format suivant : 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 peut téléverser des fichiers G-code sur une imprimante hÎte. Ce champ doit contenir le nom d'hÎte, l'adresse IP ou l'URL de l'instance hÎte de l'imprimante. L'hÎte d'impression derriÚre HAProxy avec l'authentification de base activée est accessible en saisissant le nom d'utilisateur et le mot de passe dans l'URL au format suivant : https://username:password@your-octopi-address/"
msgid "Device UI"
msgstr "Interface utilisateur de lâappareil"
-msgid ""
-"Specify the URL of your device user interface if it's not same as print_host"
-msgstr ""
-"SpĂ©cifiez lâURL de lâinterface utilisateur de votre appareil si elle nâest "
-"pas identique Ă print_host"
+msgid "Specify the URL of your device user interface if it's not same as print_host"
+msgstr "SpĂ©cifiez lâURL de lâinterface utilisateur de votre appareil si elle nâest pas identique Ă print_host"
msgid "API Key / Password"
msgstr "Clé API / Mot de passe"
-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 peut téléverser des fichiers G-code sur une imprimante hÎte. Ce "
-"champ doit contenir la clé API ou le mot de passe requis pour "
-"l'authentification."
+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 peut téléverser des fichiers G-code sur une imprimante hÎte. Ce champ doit contenir la clé API ou le mot de passe requis pour l'authentification."
msgid "Name of the printer"
msgstr "Nom de l'imprimante"
@@ -9784,14 +8522,8 @@ msgstr "Nom de l'imprimante"
msgid "HTTPS CA File"
msgstr "Fichier HTTPS CA"
-msgid ""
-"Custom CA certificate file can be specified for HTTPS OctoPrint connections, "
-"in crt/pem format. If left blank, the default OS CA certificate repository "
-"is used."
-msgstr ""
-"Un fichier de certificat CA personnalisĂ© peut ĂȘtre spĂ©cifiĂ© pour les "
-"connexions HTTPS OctoPrint, au format crt/pem. Si ce champ est laissé vide, "
-"le référentiel de certificats OS CA par défaut est utilisé."
+msgid "Custom CA certificate file can be specified for HTTPS OctoPrint connections, in crt/pem format. If left blank, the default OS CA certificate repository is used."
+msgstr "Un fichier de certificat CA personnalisĂ© peut ĂȘtre spĂ©cifiĂ© pour les connexions HTTPS OctoPrint, au format crt/pem. Si ce champ est laissĂ© vide, le rĂ©fĂ©rentiel de certificats OS CA par dĂ©faut est utilisĂ©."
msgid "User"
msgstr "Utilisateur"
@@ -9802,14 +8534,8 @@ msgstr "Mot de passe"
msgid "Ignore HTTPS certificate revocation checks"
msgstr "Ignorer les contrÎles de révocation des certificats 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 ""
-"Ignorez les contrÎles de révocation des certificats HTTPS en cas de points "
-"de distribution manquants ou hors ligne. Il peut ĂȘtre utile d'activer cette "
-"option pour les certificats auto-signés en cas d'échec de la connexion."
+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 "Ignorez les contrĂŽles de rĂ©vocation des certificats HTTPS en cas de points de distribution manquants ou hors ligne. Il peut ĂȘtre utile d'activer cette option pour les certificats auto-signĂ©s en cas d'Ă©chec de la connexion."
msgid "Names of presets related to the physical printer"
msgstr "Noms des préréglages associés à l'imprimante physique"
@@ -9827,24 +8553,13 @@ msgid "Avoid crossing wall"
msgstr "Ăvitez de traverser les parois"
msgid "Detour and avoid to travel across wall which may cause blob on surface"
-msgstr ""
-"Faire un détour et éviter de traverser la paroi, ce qui pourrait causer des "
-"dépÎts sur la surface"
+msgstr "Faire un détour et éviter de traverser la paroi, ce qui pourrait causer des dépÎts sur la surface"
msgid "Avoid crossing wall - Max detour length"
msgstr "Ăvitez de traverser les parois - Longueur maximale du dĂ©tour"
-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 ""
-"Distance de détour maximale pour éviter de traverser une paroi: l'imprimante "
-"ne fera pas de détour si la distance de détour est supérieure à cette "
-"valeur. La longueur du dĂ©tour peut ĂȘtre spĂ©cifiĂ©e sous forme de valeur "
-"absolue ou de pourcentage (par exemple 50 %) d'un trajet direct. Une valeur "
-"de 0 désactivera cette option."
+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 "Distance de dĂ©tour maximale pour Ă©viter de traverser une paroi: l'imprimante ne fera pas de dĂ©tour si la distance de dĂ©tour est supĂ©rieure Ă cette valeur. La longueur du dĂ©tour peut ĂȘtre spĂ©cifiĂ©e sous forme de valeur absolue ou de pourcentage (par exemple 50 %) d'un trajet direct. Une valeur de 0 dĂ©sactivera cette option."
msgid "mm or %"
msgstr "mm ou %"
@@ -9852,39 +8567,20 @@ msgstr "mm ou %"
msgid "Other layers"
msgstr "Autres couches"
-msgid ""
-"Bed temperature for layers except the initial one. Value 0 means the "
-"filament does not support to print on the Cool Plate"
-msgstr ""
-"Il s'agit de la température du plateau pour toutes les couches à l'exception "
-"de la premiĂšre. Une valeur Ă 0 signifie que ce filament ne peut pas ĂȘtre "
-"imprimé sur le plateau froid (\"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 "Il s'agit de la tempĂ©rature du plateau pour toutes les couches Ă l'exception de la premiĂšre. Une valeur Ă 0 signifie que ce filament ne peut pas ĂȘtre imprimĂ© sur le plateau froid (\"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 ""
-"Il s'agit de la température du plateau pour toutes les couches à l'exception "
-"de la premiĂšre. Une valeur Ă 0 signifie que ce filament ne peut pas ĂȘtre "
-"imprimé sur la plaque Engineering."
+msgid "Bed temperature for layers except the initial one. Value 0 means the filament does not support to print on the Engineering Plate"
+msgstr "Il s'agit de la tempĂ©rature du plateau pour toutes les couches Ă l'exception de la premiĂšre. Une valeur Ă 0 signifie que ce filament ne peut pas ĂȘtre imprimĂ© sur la plaque Engineering."
-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 ""
-"Il s'agit de la température du plateau pour toutes les couches à l'exception "
-"de la premiĂšre. Une valeur Ă 0 signifie que ce filament ne peut pas ĂȘtre "
-"imprimé sur le plateau haute température (\"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 "Il s'agit de la tempĂ©rature du plateau pour toutes les couches Ă l'exception de la premiĂšre. Une valeur Ă 0 signifie que ce filament ne peut pas ĂȘtre imprimĂ© sur le plateau haute tempĂ©rature (\"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 ""
-"Température du plateau aprÚs la premiÚre couche. 0 signifie que le filament "
-"n'est pas supporté par la plaque PEI texturée."
+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 "Température du plateau aprÚs la premiÚre couche. 0 signifie que le filament n'est pas supporté par la plaque PEI texturée."
msgid "Initial layer"
msgstr "Couche initiale"
@@ -9892,36 +8588,17 @@ msgstr "Couche initiale"
msgid "Initial layer bed temperature"
msgstr "Température du plateau lors de la couche initiale"
-msgid ""
-"Bed temperature of the initial layer. Value 0 means the filament does not "
-"support to print on the Cool Plate"
-msgstr ""
-"Il s'agit de la température du plateau pour la premiÚre couche. Une valeur à "
-"0 signifie que ce filament ne peut pas ĂȘtre imprimĂ© sur le plateau froid "
-"(\"Cool plate\")."
+msgid "Bed temperature of the initial layer. Value 0 means the filament does not support to print on the Cool Plate"
+msgstr "Il s'agit de la tempĂ©rature du plateau pour la premiĂšre couche. Une valeur Ă 0 signifie que ce filament ne peut pas ĂȘtre imprimĂ© sur le plateau froid (\"Cool plate\")."
-msgid ""
-"Bed temperature of the initial layer. Value 0 means the filament does not "
-"support to print on the Engineering Plate"
-msgstr ""
-"Il s'agit de la température du plateau pour la premiÚre couche. Une valeur à "
-"0 signifie que ce filament ne peut pas ĂȘtre imprimĂ© sur le plateau "
-"Engineering."
+msgid "Bed temperature of the initial layer. Value 0 means the filament does not support to print on the Engineering Plate"
+msgstr "Il s'agit de la tempĂ©rature du plateau pour la premiĂšre couche. Une valeur Ă 0 signifie que ce filament ne peut pas ĂȘtre imprimĂ© sur le plateau Engineering."
-msgid ""
-"Bed temperature of the initial layer. Value 0 means the filament does not "
-"support to print on the High Temp Plate"
-msgstr ""
-"Il s'agit de la température du plateau pour la premiÚre couche. Une valeur à "
-"0 signifie que ce filament ne peut pas ĂȘtre imprimĂ© sur le plateau haute "
-"température (\"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 "Il s'agit de la tempĂ©rature du plateau pour la premiĂšre couche. Une valeur Ă 0 signifie que ce filament ne peut pas ĂȘtre imprimĂ© sur le plateau haute tempĂ©rature (\"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 ""
-"La température du plateau à la premiÚre couche. La valeur 0 signifie que le "
-"filament n'est pas supporté sur la plaque PEI texturée."
+msgid "Bed temperature of the initial layer. Value 0 means the filament does not support to print on the Textured PEI Plate"
+msgstr "La température du plateau à la premiÚre couche. La valeur 0 signifie que le filament n'est pas supporté sur la plaque PEI texturée."
msgid "Bed types supported by the printer"
msgstr "Types de plateaux pris en charge par l'imprimante"
@@ -9945,62 +8622,49 @@ msgid "Other layers filament sequence"
msgstr "Séquence de filament des autres couches"
msgid "This G-code is inserted at every layer change before lifting z"
-msgstr ""
-"Ce G-code est inséré à chaque changement de couche avant le levage du Z"
+msgstr "Ce G-code est inséré à chaque changement de couche avant le levage du Z"
msgid "Bottom shell layers"
msgstr "Couches inférieures de la coque"
-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 ""
-"Il s'agit du nombre de couches pleines de coque inférieure, y compris la "
-"couche de surface inférieure. Lorsque l'épaisseur calculée par cette valeur "
-"est plus fine que l'épaisseur de la coque inférieure, les couches de la "
-"coque inférieure seront augmentées"
+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 "Il s'agit du nombre de couches pleines de coque inférieure, y compris la couche de surface inférieure. Lorsque l'épaisseur calculée par cette valeur est plus fine que l'épaisseur de la coque inférieure, les couches de la coque inférieure seront augmentées"
msgid "Bottom shell thickness"
msgstr "Ăpaisseur de la coque infĂ©rieure"
-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 ""
-"Le nombre de couches pleines inférieures est augmenté lors du découpage si "
-"l'épaisseur calculée par les couches de coque inférieures est inférieure à "
-"cette valeur. Cela peut éviter d'avoir une coque trop fine lorsque la "
-"hauteur de couche est faible. 0 signifie que ce paramÚtre est désactivé et "
-"que l'épaisseur de la coque inférieure est absolument déterminée par les "
-"couches de la coque inférieure"
+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 "Le nombre de couches pleines inférieures est augmenté lors du découpage si l'épaisseur calculée par les couches de coque inférieures est inférieure à cette valeur. Cela peut éviter d'avoir une coque trop fine lorsque la hauteur de couche est faible. 0 signifie que ce paramÚtre est désactivé et que l'épaisseur de la coque inférieure est absolument déterminée par les couches de la coque inférieure"
msgid "Apply gap fill"
msgstr "Remplissage des trous"
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 solid 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"
-"3. Nowhere: Disables gap fill\n"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces for maximum strength\n"
+"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces only, balancing print speed, reducing potential over extrusion in the solid infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
+"\n"
+"Note that if using the classic perimeter generator, gap fill may also be generated between perimeters, if a full width line cannot fit between them. That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated one, removed, set the filter out tiny gaps value to a large number, like 999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing to the model's strength. For models where excessive gap fill is generated between perimeters, a better option would be to switch to the arachne wall generator and use this option to control whether the cosmetic top and bottom surface gap fill is generated"
msgstr ""
-"Active le remplissage des trous pour les surfaces sélectionnées. La longueur "
-"minimale du trou qui sera comblĂ© peut ĂȘtre contrĂŽlĂ©e Ă lâaide de lâoption "
-"« Filtrer les petits trous » ci-dessous.\n"
+"Active le remplissage des espaces pour les surfaces solides sĂ©lectionnĂ©es. La longueur minimale de l'espace qui sera comblĂ© peut ĂȘtre contrĂŽlĂ©e Ă partir de l'option « Filtrer les petits espaces » ci-dessous.\n"
"\n"
"Options :\n"
-"1. Partout : Applique le remplissage des trous aux surfaces pleines "
-"supérieures, inférieures et internes.\n"
-"2. Surfaces supérieure et inférieure : Remplissage des trous uniquement sur "
-"les surfaces supérieures et inférieures.\n"
-"3. Nulle part : Désactive le remplissage des trous\n"
+"1. Partout : Applique le remplissage de l'espace aux faces supérieures, inférieures et internes des solides pour une résistance maximale.\n"
+"2. Surfaces supérieure et inférieure : Remplissage des espaces uniquement sur les faces supérieure et inférieure, ce qui permet d'équilibrer la vitesse d'impression, de réduire les risques de sur-extrusion dans le remplissage solide et de s'assurer que les faces supérieure et inférieure ne présentent pas de trous d'épingle.\n"
+"3. Nulle part : Désactive le remplissage de l'espace pour toutes les zones de remplissage solide. \n"
+"\n"
+"Notez que si vous utilisez le gĂ©nĂ©rateur de pĂ©rimĂštre classique, le remplissage de lâespace peut Ă©galement ĂȘtre gĂ©nĂ©rĂ© entre les pĂ©rimĂštres, si une ligne de largeur complĂšte ne peut pas tenir entre eux. Ce remplissage du pĂ©rimĂštre nâest pas contrĂŽlĂ© par ce paramĂštre. \n"
+"\n"
+"Si vous souhaitez que tous les espaces, y compris ceux générés par le périmÚtre classique, soient supprimés, définissez la valeur de filtrage des petits espaces sur un grand nombre, comme 999999. \n"
+"\n"
+"Il nâest toutefois pas conseillĂ© de procĂ©der ainsi, car le remplissage des espaces entre les pĂ©rimĂštres contribue Ă la soliditĂ© du modĂšle. Pour les modĂšles oĂč un remplissage excessif est gĂ©nĂ©rĂ© entre les pĂ©rimĂštres, une meilleure option serait de passer au gĂ©nĂ©rateur de parois Arachne et dâutiliser cette option pour contrĂŽler si le remplissage cosmĂ©tique des surfaces supĂ©rieures et infĂ©rieures est gĂ©nĂ©rĂ©."
msgid "Everywhere"
msgstr "Partout"
@@ -10014,172 +8678,120 @@ msgstr "Nulle part"
msgid "Force cooling for overhang and bridge"
msgstr "Forcer la ventilation pour les surplombs et ponts"
-msgid ""
-"Enable this option to optimize part cooling fan speed for overhang and "
-"bridge to get better cooling"
-msgstr ""
-"Activez cette option pour optimiser la vitesse du ventilateur de "
-"refroidissement des piĂšces pour le surplomb et le pont afin d'obtenir un "
-"meilleur refroidissement"
+msgid "Enable this option to optimize part cooling fan speed for overhang and bridge to get better cooling"
+msgstr "Activez cette option pour optimiser la vitesse du ventilateur de refroidissement des piĂšces pour le surplomb et le pont afin d'obtenir un meilleur refroidissement"
msgid "Fan speed for overhang"
msgstr "Vitesse du ventilateur pour les surplombs"
-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 ""
-"Forcez le ventilateur de refroidissement des piĂšces Ă ĂȘtre Ă cette vitesse "
-"lors de l'impression d'un pont ou d'une paroi en surplomb qui a un degré de "
-"surplomb important. Forcer le refroidissement pour les surplombs et le pont "
-"pour obtenir une meilleure qualité pour ces piÚces."
+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 "Forcez le ventilateur de refroidissement des piĂšces Ă ĂȘtre Ă cette vitesse lors de l'impression d'un pont ou d'une paroi en surplomb qui a un degrĂ© de surplomb important. Forcer le refroidissement pour les surplombs et le pont pour obtenir une meilleure qualitĂ© pour ces piĂšces."
msgid "Cooling overhang threshold"
msgstr "Seuil de dépassement de refroidissement"
#, 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 ""
-"Forcer le ventilateur de refroidissement à atteindre une vitesse spécifique "
-"lorsque le degré de surplomb de la piÚce imprimée dépasse cette valeur. Ceci "
-"est exprimé en pourcentage qui indique la largeur de la ligne sans support "
-"provenant de la couche inférieure. 0%% signifie un refroidissement forcé de "
-"toutes les parois extérieures, quel que soit le degré de surplomb."
+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 "Forcer le ventilateur de refroidissement à atteindre une vitesse spécifique lorsque le degré de surplomb de la piÚce imprimée dépasse cette valeur. Ceci est exprimé en pourcentage qui indique la largeur de la ligne sans support provenant de la couche inférieure. 0%% signifie un refroidissement forcé de toutes les parois extérieures, quel que soit le degré de surplomb."
msgid "Bridge infill direction"
msgstr "Direction du remplissage des ponts"
-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 ""
-"Forçage de lâangle des ponts. Sâil est laissĂ© Ă zĂ©ro, lâangle des ponts sera "
-"calculĂ© automatiquement. Sinon, lâangle fourni sera utilisĂ© pour les ponts "
-"externes. Utilisez 180° pour un angle nul."
+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 "Forçage de lâangle des ponts. Sâil est laissĂ© Ă zĂ©ro, lâangle des ponts sera calculĂ© automatiquement. Sinon, lâangle fourni sera utilisĂ© pour les ponts externes. Utilisez 180° pour un angle nul."
msgid "Bridge density"
msgstr "Densité des ponts"
msgid "Density of external bridges. 100% means solid bridge. Default is 100%."
-msgstr ""
-"Densité des ponts externes, Une valeur à 100% signifie un pont plein. La "
-"valeur par défaut est 100%."
+msgstr "Densité des ponts externes, Une valeur à 100% signifie un pont plein. La valeur par défaut est 100%."
msgid "Bridge flow ratio"
msgstr "Débit des ponts"
msgid ""
-"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
+"Decrease this value slightly(for example 0.9) to reduce the amount of material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Diminuez légÚrement cette valeur (par exemple 0,9) pour réduire la quantité "
-"de matériaux pour le pont, pour améliorer l'affaissement"
+"Diminuez lĂ©gĂšrement cette valeur (par exemple 0,9) pour rĂ©duire la quantitĂ© de matĂ©riau pour le pont, afin dâamĂ©liorer lâaffaissement. \n"
+"\n"
+"Le dĂ©bit rĂ©el du pont utilisĂ© est calculĂ© en multipliant cette valeur par le rapport de dĂ©bit du filament et, sâil est dĂ©fini, par le rapport de dĂ©bit de lâobjet."
msgid "Internal bridge flow ratio"
msgstr "Ratio de débit du pont interne"
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."
+"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.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value with the bridge flow ratio, the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Cette valeur dĂ©termine lâĂ©paisseur de la couche des ponts internes. Il "
-"sâagit de la premiĂšre couche sur le remplissage. Diminuez lĂ©gĂšrement cette "
-"valeur (par exemple 0.9) pour améliorer la qualité de la surface sur le "
-"remplissage."
+"Cette valeur dĂ©termine lâĂ©paisseur de la couche de pont interne. Il sâagit de la premiĂšre couche au-dessus dâun remplissage peu dense. Diminuez lĂ©gĂšrement cette valeur (par exemple 0,9) pour amĂ©liorer la qualitĂ© de la surface sur un remplissage peu dense.\n"
+"\n"
+"Le dĂ©bit du pont interne utilisĂ© est calculĂ© en multipliant cette valeur par le rapport de dĂ©bit du pont, le rapport de dĂ©bit du filament et, sâil est dĂ©fini, le rapport de dĂ©bit de lâobjet."
msgid "Top surface flow ratio"
msgstr "Ratio du débit des surfaces supérieures"
msgid ""
-"This factor affects the amount of material for top solid infill. You can "
-"decrease it slightly to have smooth surface finish"
+"This factor affects the amount of material for top solid infill. You can decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Ce facteur affecte la quantité de matériau pour le remplissage plein "
-"supérieur. Vous pouvez le diminuer légÚrement pour avoir une finition de "
-"surface lisse"
+"Ce facteur affecte la quantité de matériau pour le remplissage du massif supérieur. Vous pouvez le réduire légÚrement pour obtenir une finition de surface lisse. \n"
+"\n"
+"Le dĂ©bit rĂ©el de la surface supĂ©rieure utilisĂ© est calculĂ© en multipliant cette valeur par le rapport de dĂ©bit du filament et, sâil est dĂ©fini, par le rapport de dĂ©bit de lâobjet."
msgid "Bottom surface flow ratio"
msgstr "Ratio du débit des surfaces inférieures"
-msgid "This factor affects the amount of material for bottom solid infill"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this value with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Ce facteur affecte la quantité de matériau pour le remplissage plein du "
-"dessous"
+"Ce facteur affecte la quantité de matériau pour le remplissage solide du fond. \n"
+"\n"
+"Le dĂ©bit rĂ©el du remplissage solide infĂ©rieur utilisĂ© est calculĂ© en multipliant cette valeur par le rapport de dĂ©bit du filament et, sâil est dĂ©fini, par le rapport de dĂ©bit de lâobjet."
msgid "Precise wall"
msgstr "Parois précises"
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 ""
-"AmĂ©liorez la prĂ©cision de la coque en ajustant lâespacement des parois "
-"extĂ©rieures. Cela permet Ă©galement dâamĂ©liorer la cohĂ©rence des couches.\n"
-"Remarque : ce paramĂštre nâa dâeffet que si la sĂ©quence des parois est "
-"configurée sur Intérieur-Extérieur."
+"AmĂ©liorez la prĂ©cision de la coque en ajustant lâespacement des parois extĂ©rieures. Cela permet Ă©galement dâamĂ©liorer la cohĂ©rence des couches.\n"
+"Remarque : ce paramĂštre nâa dâeffet que si la sĂ©quence des parois est configurĂ©e sur IntĂ©rieur-ExtĂ©rieur."
msgid "Only one wall on top surfaces"
msgstr "Une seule paroi sur les surfaces supérieures"
-msgid ""
-"Use only one wall on flat top surface, to give more space to the top infill "
-"pattern"
-msgstr ""
-"N'utilisez qu'une seule paroi sur les surfaces supérieures planes, afin de "
-"donner plus d'espace au motif de remplissage supérieur."
+msgid "Use only one wall on flat top surface, to give more space to the top infill pattern"
+msgstr "N'utilisez qu'une seule paroi sur les surfaces supérieures planes, afin de donner plus d'espace au motif de remplissage supérieur."
msgid "One wall threshold"
msgstr "Seuil de paroi unique"
#, 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 ""
-"Si une surface supĂ©rieure doit ĂȘtre imprimĂ©e et quâelle est partiellement "
-"couverte par une autre couche, elle ne sera pas considérée comme une couche "
-"supĂ©rieure si sa largeur est infĂ©rieure Ă cette valeur. Cela peut ĂȘtre utile "
-"pour ne pas dĂ©clencher lâoption « un pĂ©rimĂštre sur le dessus » sur des "
-"surfaces qui ne devraient ĂȘtre couvertes que par des pĂ©rimĂštres. Cette "
-"valeur peut ĂȘtre un mm ou un % de la largeur dâextrusion du pĂ©rimĂštre.\n"
-"Attention : Si cette option est activĂ©e, des artefacts peuvent ĂȘtre créés si "
-"vous avez des éléments fins sur la couche suivante, comme des lettres. "
-"Réglez ce paramÚtre à 0 pour supprimer ces artefacts."
+"Si une surface supĂ©rieure doit ĂȘtre imprimĂ©e et quâelle est partiellement couverte par une autre couche, elle ne sera pas considĂ©rĂ©e comme une couche supĂ©rieure si sa largeur est infĂ©rieure Ă cette valeur. Cela peut ĂȘtre utile pour ne pas dĂ©clencher lâoption « un pĂ©rimĂštre sur le dessus » sur des surfaces qui ne devraient ĂȘtre couvertes que par des pĂ©rimĂštres. Cette valeur peut ĂȘtre un mm ou un % de la largeur dâextrusion du pĂ©rimĂštre.\n"
+"Attention : Si cette option est activĂ©e, des artefacts peuvent ĂȘtre créés si vous avez des Ă©lĂ©ments fins sur la couche suivante, comme des lettres. RĂ©glez ce paramĂštre Ă 0 pour supprimer ces artefacts."
msgid "Only one wall on first layer"
msgstr "Une seule paroi sur la premiĂšre couche"
-msgid ""
-"Use only one wall on first layer, to give more space to the bottom infill "
-"pattern"
-msgstr ""
-"Utiliser quâune seule paroi sur la premiĂšre couche, pour donner plus "
-"dâespace au motif de remplissage infĂ©rieur"
+msgid "Use only one wall on first layer, to give more space to the bottom infill pattern"
+msgstr "Utiliser quâune seule paroi sur la premiĂšre couche, pour donner plus dâespace au motif de remplissage infĂ©rieur"
msgid "Extra perimeters on overhangs"
msgstr "Parois supplémentaires sur les surplombs"
-msgid ""
-"Create additional perimeter paths over steep overhangs and areas where "
-"bridges cannot be anchored. "
-msgstr ""
-"Créer des chemins de périmÚtres supplémentaires sur les surplombs abrupts et "
-"les zones oĂč les ponts ne peuvent pas ĂȘtre ancrĂ©s. "
+msgid "Create additional perimeter paths over steep overhangs and areas where bridges cannot be anchored. "
+msgstr "CrĂ©er des chemins de pĂ©rimĂštres supplĂ©mentaires sur les surplombs abrupts et les zones oĂč les ponts ne peuvent pas ĂȘtre ancrĂ©s. "
msgid "Reverse on odd"
msgstr "Parois inversées sur couches impaires"
@@ -10188,19 +8800,13 @@ msgid "Overhang reversal"
msgstr "Inversion du surplomb"
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 ""
-"Extruder les pĂ©rimĂštres dont une partie se trouve au-dessus dâun surplomb "
-"dans le sens inverse sur les couches impaires. Ce motif alternatif peut "
-"améliorer considérablement les surplombs abrupts.\n"
+"Extruder les pĂ©rimĂštres dont une partie se trouve au-dessus dâun surplomb dans le sens inverse sur les couches impaires. Ce motif alternatif peut amĂ©liorer considĂ©rablement les surplombs abrupts.\n"
"\n"
-"Ce paramÚtre peut également contribuer à réduire le gauchissement de la "
-"piÚce en raison de la réduction des contraintes dans les parois de la piÚce."
+"Ce paramÚtre peut également contribuer à réduire le gauchissement de la piÚce en raison de la réduction des contraintes dans les parois de la piÚce."
msgid "Reverse only internal perimeters"
msgstr "Inverser uniquement les périmÚtres internes"
@@ -10208,50 +8814,29 @@ msgstr "Inverser uniquement les périmÚtres internes"
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 ""
-"Appliquer la logique dâinversion des pĂ©rimĂštres uniquement sur les "
-"périmÚtres internes. \n"
+"Appliquer la logique dâinversion des pĂ©rimĂštres uniquement sur les pĂ©rimĂštres internes. \n"
"\n"
-"Ce paramÚtre réduit considérablement les contraintes exercées sur les "
-"piÚces, car elles sont désormais réparties dans des directions alternées. "
-"Cela devrait réduire la déformation des piÚces tout en maintenant la qualité "
-"des parois externes. Cette fonction peut ĂȘtre trĂšs utile pour les matĂ©riaux "
-"sujets Ă la dĂ©formation, comme lâABS/ASA, ainsi que pour les filaments "
-"élastiques, comme le TPU et le Silk PLA. Elle peut également contribuer à "
-"réduire le gauchissement des régions flottantes sur les supports.\n"
+"Ce paramĂštre rĂ©duit considĂ©rablement les contraintes exercĂ©es sur les piĂšces, car elles sont dĂ©sormais rĂ©parties dans des directions alternĂ©es. Cela devrait rĂ©duire la dĂ©formation des piĂšces tout en maintenant la qualitĂ© des parois externes. Cette fonction peut ĂȘtre trĂšs utile pour les matĂ©riaux sujets Ă la dĂ©formation, comme lâABS/ASA, ainsi que pour les filaments Ă©lastiques, comme le TPU et le Silk PLA. Elle peut Ă©galement contribuer Ă rĂ©duire le gauchissement des rĂ©gions flottantes sur les supports.\n"
"\n"
-"Pour que ce paramÚtre soit le plus efficace possible, il est recommandé de "
-"rĂ©gler le seuil dâinversion sur 0 afin que toutes les parois internes "
-"sâimpriment dans des directions alternĂ©es sur les couches impaires, quel que "
-"soit leur degré de surplomb."
+"Pour que ce paramĂštre soit le plus efficace possible, il est recommandĂ© de rĂ©gler le seuil dâinversion sur 0 afin que toutes les parois internes sâimpriment dans des directions alternĂ©es sur les couches impaires, quel que soit leur degrĂ© de surplomb."
msgid "Bridge counterbore holes"
msgstr "Trous d'alésage pour le pont"
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 ""
-"Cette option crée des ponts pour les trous d'alésage, ce qui permet de les "
-"imprimer sans support. Les modes disponibles sont les suivants\n"
+"Cette option crée des ponts pour les trous d'alésage, ce qui permet de les imprimer sans support. Les modes disponibles sont les suivants\n"
"1. Aucun : Aucun pont nâest créé.\n"
-"2. Partiellement connecté : Seule une partie de la zone non prise en charge "
-"sera connectée.\n"
-"3. Couche sacrificielle : Une couche de pont sacrificielle complĂšte est "
-"créée."
+"2. Partiellement connecté : Seule une partie de la zone non prise en charge sera connectée.\n"
+"3. Couche sacrificielle : Une couche de pont sacrificielle complÚte est créée."
msgid "Partially bridged"
msgstr "Partiellement connecté"
@@ -10267,12 +8852,10 @@ msgstr "Seuil dâinversion des surplombs"
#, 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 ""
-"Nombre de mm de dĂ©passement nĂ©cessaire pour que lâinversion soit considĂ©rĂ©e "
-"comme utile. Il peut sâagir dâun pourcentage de la largeur du pĂ©rimĂštre.\n"
+"Nombre de mm de dĂ©passement nĂ©cessaire pour que lâinversion soit considĂ©rĂ©e comme utile. Il peut sâagir dâun pourcentage de la largeur du pĂ©rimĂštre.\n"
"La valeur 0 permet lâinversion sur toutes les couches impaires."
msgid "Classic mode"
@@ -10285,19 +8868,24 @@ msgid "Slow down for overhang"
msgstr "Ralentir pour le surplomb"
msgid "Enable this option to slow printing down for different overhang degree"
-msgstr ""
-"Activez cette option pour ralentir l'impression pour différents degrés de "
-"surplomb"
+msgstr "Activez cette option pour ralentir l'impression pour différents degrés de surplomb"
msgid "Slow down for curled perimeters"
msgstr "Ralentir lors des périmÚtres courbés"
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have curled upwards.For example, additional slowdown will be applied when printing overhangs on sharp corners like the front of the Benchy hull, reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your printer cooling is powerful enough or the print speed slow enough that perimeter curling does not happen. If printing with a high external perimeter speed, this parameter may introduce slight artifacts when slowing down due to the large variance in print speeds. If you notice artifacts, ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like overhangs, meaning the overhang speed is applied even if the overhanging perimeter is part of a bridge. For example, when the perimeters are 100%% overhanging, with no wall supporting them from underneath, the 100%% overhang speed will be applied."
msgstr ""
-"Activer cette option pour ralentir lâimpression dans les zones oĂč des "
-"périmÚtres potentiellement courbées peuvent exister."
+"Activez cette option pour ralentir l'impression dans les zones oĂč les pĂ©rimĂštres peuvent s'ĂȘtre incurvĂ©s vers le haut. Par exemple, un ralentissement supplĂ©mentaire sera appliquĂ© lors de l'impression de surplombs sur des angles aigus comme l'avant de la coque du Benchy, rĂ©duisant ainsi l'enroulement qui s'aggrave sur plusieurs couches.\n"
+"\n"
+"Il est gĂ©nĂ©ralement recommandĂ© dâactiver cette option Ă moins que le refroidissement de votre imprimante soit suffisamment puissant ou que la vitesse dâimpression soit suffisamment lente pour que le phĂ©nomĂšne de recourbement du pĂ©rimĂštre ne se produise pas. Si vous imprimez avec une vitesse de pĂ©rimĂštre externe Ă©levĂ©e, ce paramĂštre peut introduire de lĂ©gers artefacts lors du ralentissement en raison de la grande variance des vitesses dâimpression. Si vous remarquez des artefacts, assurez-vous que votre avance de pression est rĂ©glĂ©e correctement.\n"
+"\n"
+"Remarque : lorsque cette option est activĂ©e, les pĂ©rimĂštres en surplomb sont traitĂ©s comme des surplombs, ce qui signifie que la vitesse de surplomb est appliquĂ©e mĂȘme si le pĂ©rimĂštre en surplomb fait partie dâun pont. Par exemple, lorsque les pĂ©rimĂštres sont en surplomb de 100%%, sans paroi les soutenant par en dessous, la vitesse de surplomb de 100%% sera appliquĂ©e."
msgid "mm/s or %"
msgstr "mm/s ou %"
@@ -10305,9 +8893,14 @@ msgstr "mm/s ou %"
msgid "External"
msgstr "Externe"
-msgid "Speed of bridge and completely overhang wall"
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic overhang mode is enabled, it will be the print speed of overhang walls that are supported by less than 13%, whether they are part of a bridge or an overhang."
msgstr ""
-"Il s'agit de la vitesse pour les ponts et les parois en surplomb Ă 100 %."
+"Vitesse des extrusions de pont visible de lâextĂ©rieur. \n"
+"\n"
+"En outre, si la fonction Ralentir pour les pĂ©rimĂštres courbĂ©s est dĂ©sactivĂ©e ou si le mode Surplomb classique est activĂ©, il sâagira de la vitesse dâimpression des parois en surplomb dont lâappui est infĂ©rieur Ă 13 %, quâelles fassent partie dâun pont ou dâun surplomb."
msgid "mm/s"
msgstr "mm/s"
@@ -10315,12 +8908,8 @@ msgstr "mm/s"
msgid "Internal"
msgstr "Interne"
-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 ""
-"Vitesse des ponts internes. Si la valeur est exprimée en pourcentage, elle "
-"sera calculée en fonction de bridge_speed. La valeur par défaut est 150%."
+msgid "Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%."
+msgstr "Vitesse des ponts internes. Si la valeur est exprimée en pourcentage, elle sera calculée sur la base de la vitesse du pont. La valeur par défaut est 150%."
msgid "Brim width"
msgstr "Largeur de la bordure"
@@ -10331,23 +8920,14 @@ msgstr "Distance du modĂšle Ă la ligne de bord la plus externe"
msgid "Brim type"
msgstr "Type de bordure"
-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 ""
-"Cela permet de contrÎler la génération de bordure extérieur et/ou intérieur "
-"des modÚles. Auto signifie que la largeur de bordure est analysée et "
-"calculée automatiquement."
+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 "Cela permet de contrÎler la génération de bordure extérieur et/ou intérieur des modÚles. Auto signifie que la largeur de bordure est analysée et calculée automatiquement."
msgid "Brim-object gap"
msgstr "Ăcart bord-objet"
-msgid ""
-"A gap between innermost brim line and object can make brim be removed more "
-"easily"
-msgstr ""
-"Un espace entre la ligne de bord la plus interne et l'objet peut faciliter "
-"le retrait du bord"
+msgid "A gap between innermost brim line and object can make brim be removed more easily"
+msgstr "Un espace entre la ligne de bord la plus interne et l'objet peut faciliter le retrait du bord"
msgid "Brim ears"
msgstr "Bordures Ă oreilles"
@@ -10365,19 +8945,16 @@ msgid ""
msgstr ""
"Angle maximum pour laisser apparaĂźtre la bordure Ă oreilles.\n"
"Sâil est dĂ©fini sur 0, aucune bordure ne sera créée.\n"
-"Sâil est rĂ©glĂ© sur ~180, la bordure sera créée sur tout sauf les sections "
-"droites."
+"Sâil est rĂ©glĂ© sur ~180, la bordure sera créée sur tout sauf les sections droites."
msgid "Brim ear detection radius"
msgstr "Rayon de détection de la bordure à oreilles"
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 ""
-"La géométrie sera décimée avant de détecter les angles vifs. Ce paramÚtre "
-"indique la longueur minimale de lâĂ©cart pour la dĂ©cimation.\n"
+"La gĂ©omĂ©trie sera dĂ©cimĂ©e avant de dĂ©tecter les angles vifs. Ce paramĂštre indique la longueur minimale de lâĂ©cart pour la dĂ©cimation.\n"
"0 pour désactiver"
msgid "Compatible machine"
@@ -10416,27 +8993,14 @@ msgstr "En tant que liste dâobjets"
msgid "Slow printing down for better layer cooling"
msgstr "Impression lente pour un meilleur refroidissement des couches"
-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 ""
-"Activez cette option pour ralentir la vitesse d'impression afin que le temps "
-"de couche final ne soit pas plus court que le seuil de temps de couche dans "
-"\"Seuil de vitesse maximale du ventilateur\", afin que cette couche puisse "
-"ĂȘtre refroidie plus longtemps. Cela peut amĂ©liorer la qualitĂ© de "
-"refroidissement pour l'aiguille et les petits détails"
+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 "Activez cette option pour ralentir la vitesse d'impression afin que le temps de couche final ne soit pas plus court que le seuil de temps de couche dans \"Seuil de vitesse maximale du ventilateur\", afin que cette couche puisse ĂȘtre refroidie plus longtemps. Cela peut amĂ©liorer la qualitĂ© de refroidissement pour l'aiguille et les petits dĂ©tails"
msgid "Normal printing"
msgstr "Impression normale"
-msgid ""
-"The default acceleration of both normal printing and travel except initial "
-"layer"
-msgstr ""
-"L'accélération par défaut de l'impression normale et du déplacement à "
-"l'exception de la couche initiale"
+msgid "The default acceleration of both normal printing and travel except initial layer"
+msgstr "L'accélération par défaut de l'impression normale et du déplacement à l'exception de la couche initiale"
msgid "mm/sÂČ"
msgstr "mm/sÂČ"
@@ -10457,19 +9021,13 @@ msgid "Activate air filtration"
msgstr "Activer la filtration de lâair"
msgid "Activate for better air filtration. G-code command: M106 P3 S(0-255)"
-msgstr ""
-"Activer pour une meilleure filtration de lâair. Commande G-code : M106 P3 "
-"S(0-255)"
+msgstr "Activer pour une meilleure filtration de lâair. Commande G-code : M106 P3 S(0-255)"
msgid "Fan speed"
msgstr "Vitesse du ventilateur"
-msgid ""
-"Speed of exhaust fan during printing.This speed will overwrite the speed in "
-"filament custom gcode"
-msgstr ""
-"Vitesse du ventilateur dâextraction pendant lâimpression. Cette vitesse "
-"écrasera la vitesse dans le G-code personnalisé du filament."
+msgid "Speed of exhaust fan during printing.This speed will overwrite the speed in filament custom gcode"
+msgstr "Vitesse du ventilateur dâextraction pendant lâimpression. Cette vitesse Ă©crasera la vitesse dans le G-code personnalisĂ© du filament."
msgid "Speed of exhaust fan after printing completes"
msgstr "Vitesse du ventilateur dâextraction aprĂšs lâimpression"
@@ -10477,109 +9035,58 @@ msgstr "Vitesse du ventilateur dâextraction aprĂšs lâimpression"
msgid "No cooling for the first"
msgstr "Pas de refroidissement pour"
-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 ""
-"Ăteignez tous les ventilateurs de refroidissement pour les premiĂšres "
-"couches. Cela peut ĂȘtre utilisĂ© pour amĂ©liorer l'adhĂ©rence Ă la plaque."
+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 "Ăteignez tous les ventilateurs de refroidissement pour les premiĂšres couches. Cela peut ĂȘtre utilisĂ© pour amĂ©liorer l'adhĂ©rence Ă la plaque."
msgid "Don't support bridges"
msgstr "Ne pas supporter les ponts"
-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 ""
-"Cela désactive le support des ponts, ce qui diminue le nombre de supports "
-"requis. Les ponts peuvent gĂ©nĂ©ralement ĂȘtre imprimĂ©s directement sans "
-"support s'ils ne sont pas trĂšs longs."
+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 "Cela dĂ©sactive le support des ponts, ce qui diminue le nombre de supports requis. Les ponts peuvent gĂ©nĂ©ralement ĂȘtre imprimĂ©s directement sans support s'ils ne sont pas trĂšs longs."
msgid "Thick bridges"
msgstr "Ponts épais"
-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 ""
-"S'ils sont activés, les ponts sont plus fiables et peuvent couvrir de plus "
-"longues distances, mais ils peuvent sembler moins jolis. S'ils sont "
-"désactivés, les ponts ont une meilleure apparence mais ne sont fiables que "
-"sur de courtes distances."
+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 "S'ils sont activés, les ponts sont plus fiables et peuvent couvrir de plus longues distances, mais ils peuvent sembler moins jolis. S'ils sont désactivés, les ponts ont une meilleure apparence mais ne sont fiables que sur de courtes distances."
msgid "Thick internal bridges"
msgstr "Ponts internes épais"
-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 ""
-"Si cette option est activée, des ponts internes épais seront utilisés. Il "
-"est gĂ©nĂ©ralement recommandĂ© dâactiver cette fonctionnalitĂ©. Pensez cependant "
-"à la désactiver si vous utilisez des buses larges."
+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 "Si cette option est activĂ©e, des ponts internes Ă©pais seront utilisĂ©s. Il est gĂ©nĂ©ralement recommandĂ© dâactiver cette fonctionnalitĂ©. Pensez cependant Ă la dĂ©sactiver si vous utilisez des buses larges."
msgid "Don't filter out small internal bridges (beta)"
msgstr "Ne pas filtrer les petits ponts internes (expérimental)"
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 ""
-"Cette option permet de réduire la formation de creux sur les surfaces "
-"supérieures des modÚles fortement inclinés ou courbés.\n"
+"Cette option permet de réduire la formation de creux sur les surfaces supérieures des modÚles fortement inclinés ou courbés.\n"
"\n"
-"Par défaut, les petits ponts internes sont filtrés et le remplissage plein "
-"interne est imprimé directement sur le remplissage peu dense. Cela "
-"fonctionne bien dans la plupart des cas, accélérant l'impression sans trop "
-"compromettre la qualité de la surface supérieure. \n"
+"Par défaut, les petits ponts internes sont filtrés et le remplissage plein interne est imprimé directement sur le remplissage peu dense. Cela fonctionne bien dans la plupart des cas, accélérant l'impression sans trop compromettre la qualité de la surface supérieure. \n"
"\n"
-"Cependant, dans les modÚles fortement inclinés ou courbés, en particulier "
-"lorsque la densité de remplissage est trop faible, il peut en résulter un "
-"enroulement du remplissage plein non soutenu, ce qui provoque un effet de "
-"creusement.\n"
+"Cependant, dans les modÚles fortement inclinés ou courbés, en particulier lorsque la densité de remplissage est trop faible, il peut en résulter un enroulement du remplissage plein non soutenu, ce qui provoque un effet de creusement.\n"
"\n"
-"Lâactivation de cette option permet dâimprimer une couche de pont interne "
-"sur un remplissage plein interne légÚrement non soutenu. Les options ci-"
-"dessous contrĂŽlent la quantitĂ© de filtrage, câest-Ă -dire la quantitĂ© de "
-"ponts internes créés.\n"
+"Lâactivation de cette option permet dâimprimer une couche de pont interne sur un remplissage plein interne lĂ©gĂšrement non soutenu. Les options ci-dessous contrĂŽlent la quantitĂ© de filtrage, câest-Ă -dire la quantitĂ© de ponts internes créés.\n"
"\n"
-"DĂ©sactivĂ© - DĂ©sactive cette option. Il sâagit du comportement par dĂ©faut, "
-"qui fonctionne bien dans la plupart des cas.\n"
+"DĂ©sactivĂ© - DĂ©sactive cette option. Il sâagit du comportement par dĂ©faut, qui fonctionne bien dans la plupart des cas.\n"
"\n"
-"Filtrage limité - Crée des ponts internes sur les surfaces fortement "
-"inclinées, tout en évitant de créer des ponts internes inutiles. Cette "
-"option fonctionne bien pour la plupart des modĂšles difficiles.\n"
+"Filtrage limité - Crée des ponts internes sur les surfaces fortement inclinées, tout en évitant de créer des ponts internes inutiles. Cette option fonctionne bien pour la plupart des modÚles difficiles.\n"
"\n"
-"Pas de filtrage - Crée des ponts internes sur chaque surplomb interne "
-"potentiel. Cette option est utile pour les modÚles à surface supérieure "
-"fortement inclinée. Cependant, dans la plupart des cas, elle crée trop de "
-"ponts inutiles."
+"Pas de filtrage - Crée des ponts internes sur chaque surplomb interne potentiel. Cette option est utile pour les modÚles à surface supérieure fortement inclinée. Cependant, dans la plupart des cas, elle crée trop de ponts inutiles."
msgid "Disabled"
msgstr "Désactivé"
@@ -10593,15 +9100,8 @@ msgstr "Pas de filtrage"
msgid "Max bridge length"
msgstr "Longueur max des ponts"
-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 ""
-"Il s'agit de la longueur maximale des ponts qui n'ont pas besoin de support. "
-"Mettez 0 si vous souhaitez que tous les ponts soient pris en charge, ou "
-"mettez une valeur trÚs élevée si vous souhaitez qu'aucun pont ne soit pris "
-"en charge."
+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 "Il s'agit de la longueur maximale des ponts qui n'ont pas besoin de support. Mettez 0 si vous souhaitez que tous les ponts soient pris en charge, ou mettez une valeur trÚs élevée si vous souhaitez qu'aucun pont ne soit pris en charge."
msgid "End G-code"
msgstr "G-code de fin"
@@ -10612,12 +9112,8 @@ msgstr "G-code de fin lorsque vous avez terminé toute l'impression"
msgid "Between Object Gcode"
msgstr "G-code entre objet"
-msgid ""
-"Insert Gcode between objects. This parameter will only come into effect when "
-"you print your models object by object"
-msgstr ""
-"InsĂ©rer le G-code entre les objets. Ce paramĂštre nâentrera en vigueur que "
-"lorsque vous imprimerez vos modĂšles objet par objet."
+msgid "Insert Gcode between objects. This parameter will only come into effect when you print your models object by object"
+msgstr "InsĂ©rer le G-code entre les objets. Ce paramĂštre nâentrera en vigueur que lorsque vous imprimerez vos modĂšles objet par objet."
msgid "End G-code when finish the printing of this filament"
msgstr "G-code de fin lorsque l'impression de ce filament est terminée"
@@ -10626,27 +9122,18 @@ msgid "Ensure vertical shell thickness"
msgstr "Assurer lâĂ©paisseur de la coque verticale"
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 ""
-"Ajouter un remplissage plein prÚs des surfaces inclinées pour garantir "
-"lâĂ©paisseur verticale de la coque (couches solides supĂ©rieures et "
-"inférieures).\n"
-"Aucune : Aucun remplissage plein ne sera ajouté nulle part. Attention : "
-"Utilisez cette option avec précaution si votre modÚle comporte des surfaces "
-"inclinées.\n"
-"Critique seulement : Ăvitez dâajouter des remplissages solides pour les "
-"parois.\n"
-"Modéré : Ajouter un remplissage plein uniquement pour les surfaces fortement "
-"inclinées\n"
-"Tous : ajouter un remplissage plein pour toutes les surfaces inclinées "
-"appropriées.\n"
+"Ajouter un remplissage plein prĂšs des surfaces inclinĂ©es pour garantir lâĂ©paisseur verticale de la coque (couches solides supĂ©rieures et infĂ©rieures).\n"
+"Aucune : Aucun remplissage plein ne sera ajouté nulle part. Attention : Utilisez cette option avec précaution si votre modÚle comporte des surfaces inclinées.\n"
+"Critique seulement : Ăvitez dâajouter des remplissages solides pour les parois.\n"
+"Modéré : Ajouter un remplissage plein uniquement pour les surfaces fortement inclinées\n"
+"Tous : ajouter un remplissage plein pour toutes les surfaces inclinées appropriées.\n"
"La valeur par défaut est Tous."
msgid "Critical Only"
@@ -10689,58 +9176,31 @@ msgid "Bottom surface pattern"
msgstr "Motif de surface inférieure"
msgid "Line pattern of bottom surface infill, not bridge infill"
-msgstr ""
-"Motif de ligne du remplissage de la surface inférieure, pas du remplissage "
-"du pont"
+msgstr "Motif de ligne du remplissage de la surface inférieure, pas du remplissage du pont"
msgid "Internal solid infill pattern"
msgstr "Motif de remplissage plein interne"
-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 ""
-"ModĂšle de ligne de remplissage interne. Si la dĂ©tection dâun remplissage "
-"interne étroit est activée, le modÚle concentrique sera utilisé pour la "
-"petite zone."
+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 "ModĂšle de ligne de remplissage interne. Si la dĂ©tection dâun remplissage interne Ă©troit est activĂ©e, le modĂšle concentrique sera utilisĂ© pour la petite zone."
-msgid ""
-"Line width of outer wall. If expressed as a %, it will be computed over the "
-"nozzle diameter."
-msgstr ""
-"Largeur de la ligne de la paroi extérieure. Si elle est exprimée en %, elle "
-"sera calculée sur le diamÚtre de la buse."
+msgid "Line width of outer wall. If expressed as a %, it will be computed over the nozzle diameter."
+msgstr "Largeur de la ligne de la paroi extérieure. Si elle est exprimée en %, elle sera calculée sur le diamÚtre de la buse."
-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 ""
-"Vitesse de paroi extérieure qui est la plus à l'extérieur et visible. Elle "
-"est généralement plus lente que la vitesse de la paroi interne pour obtenir "
-"une meilleure qualité."
+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 "Vitesse de paroi extérieure qui est la plus à l'extérieur et visible. Elle est généralement plus lente que la vitesse de la paroi interne pour obtenir une meilleure qualité."
msgid "Small perimeters"
msgstr "Petits périmÚtres"
-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 ""
-"Ce paramÚtre séparé affectera la vitesse des périmÚtres ayant un rayon <= "
-"petite longueur de pĂ©rimĂštre (gĂ©nĂ©ralement des trous). Sâil est exprimĂ© en "
-"pourcentage (par exemple : 80%), il sera calculé sur la vitesse de la paroi "
-"extérieure ci-dessus. Mettre à zéro pour automatique."
+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 "Ce paramĂštre sĂ©parĂ© affectera la vitesse des pĂ©rimĂštres ayant un rayon <= petite longueur de pĂ©rimĂštre (gĂ©nĂ©ralement des trous). Sâil est exprimĂ© en pourcentage (par exemple : 80%), il sera calculĂ© sur la vitesse de la paroi extĂ©rieure ci-dessus. Mettre Ă zĂ©ro pour automatique."
msgid "Small perimeters threshold"
msgstr "Seuil des petits périmÚtres"
-msgid ""
-"This sets the threshold for small perimeter length. Default threshold is 0mm"
-msgstr ""
-"Cela définit le seuil pour une petite longueur de périmÚtre. Le seuil par "
-"défaut est de 0 mm"
+msgid "This sets the threshold for small perimeter length. Default threshold is 0mm"
+msgstr "Cela définit le seuil pour une petite longueur de périmÚtre. Le seuil par défaut est de 0 mm"
msgid "Walls printing order"
msgstr "Ordre dâimpression des parois"
@@ -10748,52 +9208,21 @@ msgstr "Ordre dâimpression des parois"
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 ""
-"Séquence d'impression des parois internes (intérieures) et externes "
-"(extérieures). \n"
+"Séquence d'impression des parois internes (intérieures) et externes (extérieures). \n"
"\n"
-"Utilisez Intérieur/Extérieur pour obtenir les meilleurs surplombs. En effet, "
-"les parois en surplomb peuvent adhérer à un périmÚtre voisin lors de "
-"l'impression. Toutefois, cette option entraßne une légÚre diminution de la "
-"qualité de la surface, car le périmÚtre externe est déformé par l'écrasement "
-"du périmÚtre interne.\n"
+"Utilisez Intérieur/Extérieur pour obtenir les meilleurs surplombs. En effet, les parois en surplomb peuvent adhérer à un périmÚtre voisin lors de l'impression. Toutefois, cette option entraßne une légÚre diminution de la qualité de la surface, car le périmÚtre externe est déformé par l'écrasement du périmÚtre interne.\n"
"\n"
-"Utilisez lâoption IntĂ©rieur/ExtĂ©rieur/IntĂ©rieur pour obtenir la meilleure "
-"finition de surface externe et la meilleure précision dimensionnelle, car la "
-"paroi externe est imprimĂ©e sans ĂȘtre dĂ©rangĂ©e par un pĂ©rimĂštre interne. "
-"Cependant, les performances de la paroi en surplomb seront réduites car il "
-"nây a pas de pĂ©rimĂštre interne contre lequel imprimer la paroi externe. "
-"Cette option nĂ©cessite un minimum de trois parois pour ĂȘtre efficace, car "
-"elle imprime dâabord les parois internes Ă partir du troisiĂšme pĂ©rimĂštre, "
-"puis le périmÚtre externe et, enfin, le premier périmÚtre interne. Cette "
-"option est recommandĂ©e par rapport Ă lâoption ExtĂ©rieur/intĂ©rieur dans la "
-"plupart des cas. \n"
+"Utilisez lâoption IntĂ©rieur/ExtĂ©rieur/IntĂ©rieur pour obtenir la meilleure finition de surface externe et la meilleure prĂ©cision dimensionnelle, car la paroi externe est imprimĂ©e sans ĂȘtre dĂ©rangĂ©e par un pĂ©rimĂštre interne. Cependant, les performances de la paroi en surplomb seront rĂ©duites car il nây a pas de pĂ©rimĂštre interne contre lequel imprimer la paroi externe. Cette option nĂ©cessite un minimum de trois parois pour ĂȘtre efficace, car elle imprime dâabord les parois internes Ă partir du troisiĂšme pĂ©rimĂštre, puis le pĂ©rimĂštre externe et, enfin, le premier pĂ©rimĂštre interne. Cette option est recommandĂ©e par rapport Ă lâoption ExtĂ©rieur/intĂ©rieur dans la plupart des cas. \n"
"\n"
-"Utilisez lâoption ExtĂ©rieur/intĂ©rieur pour bĂ©nĂ©ficier de la mĂȘme qualitĂ© de "
-"paroi externe et de la mĂȘme prĂ©cision dimensionnelle que lâoption IntĂ©rieur/"
-"extérieur/intérieur. Cependant, les joints en z paraßtront moins cohérents "
-"car la premiĂšre extrusion dâune nouvelle couche commence sur une surface "
-"visible.\n"
+"Utilisez lâoption ExtĂ©rieur/intĂ©rieur pour bĂ©nĂ©ficier de la mĂȘme qualitĂ© de paroi externe et de la mĂȘme prĂ©cision dimensionnelle que lâoption IntĂ©rieur/extĂ©rieur/intĂ©rieur. Cependant, les joints en z paraĂźtront moins cohĂ©rents car la premiĂšre extrusion dâune nouvelle couche commence sur une surface visible.\n"
"\n"
" "
@@ -10810,46 +9239,27 @@ msgid "Print infill first"
msgstr "Imprimer dâabord le remplissage"
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 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."
+"Printing 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."
msgstr ""
-"Ordre des parois/remplissages. Lorsque la case nâest pas cochĂ©e, les parois "
-"sont imprimées en premier, ce qui fonctionne le mieux dans la plupart des "
-"cas.\n"
+"Ordre des parois/remplissages. Lorsque la case nâest pas cochĂ©e, les parois sont imprimĂ©es en premier, ce qui fonctionne le mieux dans la plupart des cas.\n"
"\n"
-"Lâimpression du remplissage en premier peut aider dans le cas de parois en "
-"surplomb importantes, car les parois ont le remplissage adjacent auquel "
-"adhérer. Cependant, le remplissage repoussera légÚrement les parois "
-"imprimĂ©es Ă lâendroit oĂč il est fixĂ©, ce qui se traduira par une moins bonne "
-"finition de la surface extérieure. Cela peut également faire ressortir le "
-"remplissage Ă travers les surfaces externes de la piĂšce."
+"Lâimpression du remplissage en premier peut aider dans le cas de parois en surplomb importantes, car les parois ont le remplissage adjacent auquel adhĂ©rer. Cependant, le remplissage repoussera lĂ©gĂšrement les parois imprimĂ©es Ă lâendroit oĂč il est fixĂ©, ce qui se traduira par une moins bonne finition de la surface extĂ©rieure. Cela peut Ă©galement faire ressortir le remplissage Ă travers les surfaces externes de la piĂšce."
msgid "Wall loop direction"
msgstr "Direction de la paroi"
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 ""
-"La direction dans laquelle les boucles de la paroi sont extrudées lorsque "
-"lâon regarde du haut vers le bas.\n"
+"La direction dans laquelle les boucles de la paroi sont extrudĂ©es lorsque lâon regarde du haut vers le bas.\n"
"\n"
-"Par défaut, toutes les parois sont extrudées dans le sens inverse des "
-"aiguilles dâune montre, sauf si lâoption Inverser sur impair est activĂ©e. Si "
-"vous choisissez une option autre quâAuto, la direction des parois sera "
-"forcĂ©e, indĂ©pendamment de lâoption Inverser sur lâimpair.\n"
+"Par dĂ©faut, toutes les parois sont extrudĂ©es dans le sens inverse des aiguilles dâune montre, sauf si lâoption Inverser sur impair est activĂ©e. Si vous choisissez une option autre quâAuto, la direction des parois sera forcĂ©e, indĂ©pendamment de lâoption Inverser sur lâimpair.\n"
"\n"
"Cette option sera désactivée si le mode vase sprial est activé."
@@ -10862,29 +9272,17 @@ msgstr "Dans le sens des aiguilles dâune montre"
msgid "Height to rod"
msgstr "Hauteur jusquâĂ la tige"
-msgid ""
-"Distance of the nozzle tip to the lower rod. Used for collision avoidance in "
-"by-object printing."
-msgstr ""
-"Distance entre la pointe de la buse et la tige de carbone inférieure. "
-"Utilisé pour éviter les collisions lors de l'impression \"par objets\"."
+msgid "Distance of the nozzle tip to the lower rod. Used for collision avoidance in by-object printing."
+msgstr "Distance entre la pointe de la buse et la tige de carbone inférieure. Utilisé pour éviter les collisions lors de l'impression \"par objets\"."
msgid "Height to lid"
msgstr "Hauteur au couvercle"
-msgid ""
-"Distance of the nozzle tip to the lid. Used for collision avoidance in by-"
-"object printing."
-msgstr ""
-"Distance entre la pointe de la buse et le capot. Utilisé pour éviter les "
-"collisions lors de l'impression \"par objets\"."
+msgid "Distance of the nozzle tip to the lid. Used for collision avoidance in by-object printing."
+msgstr "Distance entre la pointe de la buse et le capot. Utilisé pour éviter les collisions lors de l'impression \"par objets\"."
-msgid ""
-"Clearance radius around extruder. Used for collision avoidance in by-object "
-"printing."
-msgstr ""
-"Rayon de dégagement autour de l'extrudeur : utilisé pour éviter les "
-"collisions lors de l'impression par objets."
+msgid "Clearance radius around extruder. Used for collision avoidance in by-object printing."
+msgstr "Rayon de dégagement autour de l'extrudeur : utilisé pour éviter les collisions lors de l'impression par objets."
msgid "Nozzle height"
msgstr "Hauteur de la buse"
@@ -10895,71 +9293,26 @@ msgstr "Hauteur de lâextrĂ©mitĂ© de la buse."
msgid "Bed mesh min"
msgstr "Maillage du plateau min"
-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 ""
-"Cette option définit le point minimum de la zone de maillage du plateau "
-"autorisée. En raison du décalage XY de la sonde, la plupart des imprimantes "
-"ne sont pas en mesure de sonder lâensemble du plateau. Pour sâassurer que le "
-"point de palpage ne sort pas de la zone du plateau, les points minimum et "
-"maximum du maillage du lit doivent ĂȘtre dĂ©finis de maniĂšre appropriĂ©e. "
-"OrcaSlicer veille Ă ce que les valeurs adaptive_bed_mesh_min/"
-"adaptive_bed_mesh_max ne dépassent pas ces points min/max. Ces informations "
-"peuvent gĂ©nĂ©ralement ĂȘtre obtenues auprĂšs du fabricant de votre imprimante. "
-"Le paramĂštre par dĂ©faut est (-99999, -99999), ce qui signifie quâil nây a "
-"pas de limites, autorisant ainsi le palpage sur lâensemble du plateau."
+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 "Cette option dĂ©finit le point minimum de la zone de maillage du plateau autorisĂ©e. En raison du dĂ©calage XY de la sonde, la plupart des imprimantes ne sont pas en mesure de sonder lâensemble du plateau. Pour sâassurer que le point de palpage ne sort pas de la zone du plateau, les points minimum et maximum du maillage du lit doivent ĂȘtre dĂ©finis de maniĂšre appropriĂ©e. OrcaSlicer veille Ă ce que les valeurs adaptive_bed_mesh_min/adaptive_bed_mesh_max ne dĂ©passent pas ces points min/max. Ces informations peuvent gĂ©nĂ©ralement ĂȘtre obtenues auprĂšs du fabricant de votre imprimante. Le paramĂštre par dĂ©faut est (-99999, -99999), ce qui signifie quâil nây a pas de limites, autorisant ainsi le palpage sur lâensemble du plateau."
msgid "Bed mesh max"
msgstr "Maillage du plateau max"
-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 ""
-"Cette option définit le point maximum de la zone de maillage du plateau "
-"autorisée. En raison du décalage XY de la sonde, la plupart des imprimantes "
-"ne sont pas en mesure de sonder lâensemble du plateau. Pour sâassurer que le "
-"point de palpage ne sort pas de la zone du plateau, les points minimum et "
-"maximum du maillage du lit doivent ĂȘtre dĂ©finis de maniĂšre appropriĂ©e. "
-"OrcaSlicer veille Ă ce que les valeurs adaptive_bed_mesh_min/"
-"adaptive_bed_mesh_max ne dépassent pas ces points min/max. Ces informations "
-"peuvent gĂ©nĂ©ralement ĂȘtre obtenues auprĂšs du fabricant de votre imprimante. "
-"Le rĂ©glage par dĂ©faut est (99999, 99999), ce qui signifie quâil nây a pas de "
-"limites, autorisant ainsi le palpage sur lâensemble du plateau."
+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 "Cette option dĂ©finit le point maximum de la zone de maillage du plateau autorisĂ©e. En raison du dĂ©calage XY de la sonde, la plupart des imprimantes ne sont pas en mesure de sonder lâensemble du plateau. Pour sâassurer que le point de palpage ne sort pas de la zone du plateau, les points minimum et maximum du maillage du lit doivent ĂȘtre dĂ©finis de maniĂšre appropriĂ©e. OrcaSlicer veille Ă ce que les valeurs adaptive_bed_mesh_min/adaptive_bed_mesh_max ne dĂ©passent pas ces points min/max. Ces informations peuvent gĂ©nĂ©ralement ĂȘtre obtenues auprĂšs du fabricant de votre imprimante. Le rĂ©glage par dĂ©faut est (99999, 99999), ce qui signifie quâil nây a pas de limites, autorisant ainsi le palpage sur lâensemble du plateau."
msgid "Probe point distance"
msgstr "Distance entre les points de mesure"
-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 ""
-"Cette option définit la distance préférée entre les points de mesure (taille "
-"de la grille) pour les directions X et Y, la valeur par défaut étant de 50 "
-"mm pour les deux directions."
+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 "Cette option définit la distance préférée entre les points de mesure (taille de la grille) pour les directions X et Y, la valeur par défaut étant de 50 mm pour les deux directions."
msgid "Mesh margin"
msgstr "Marge de la maille"
-msgid ""
-"This option determines the additional distance by which the adaptive bed "
-"mesh area should be expanded in the XY directions."
-msgstr ""
-"Cette option détermine la distance supplémentaire de laquelle le maillage du "
-"plateau adaptatif doit ĂȘtre Ă©tendu dans les directions XY."
+msgid "This option determines the additional distance by which the adaptive bed mesh area should be expanded in the XY directions."
+msgstr "Cette option dĂ©termine la distance supplĂ©mentaire de laquelle le maillage du plateau adaptatif doit ĂȘtre Ă©tendu dans les directions XY."
msgid "Extruder Color"
msgstr "Couleur de l'extrudeur"
@@ -10973,29 +9326,23 @@ msgstr "Décalage de l'extrudeur"
msgid "Flow ratio"
msgstr "Rapport de débit"
+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 "Le matĂ©riau peut avoir un changement volumĂ©trique aprĂšs avoir basculĂ© entre l'Ă©tat fondu et l'Ă©tat cristallin. Ce paramĂštre modifie proportionnellement tout le dĂ©bit d'extrusion de ce filament dans le G-code. La plage de valeurs recommandĂ©e est comprise entre 0,95 et 1,05. Vous pouvez peut-ĂȘtre ajuster cette valeur pour obtenir une belle surface plane en cas de lĂ©ger dĂ©bordement ou sous-dĂ©passement"
+
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"
+"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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow ratio."
msgstr ""
-"Le matériau peut avoir un changement volumétrique aprÚs avoir basculé entre "
-"l'état fondu et l'état cristallin. Ce paramÚtre modifie proportionnellement "
-"tout le flux d'extrusion de ce filament dans le G-code. La plage de valeurs "
-"recommandĂ©e est comprise entre 0,95 et 1,05. Vous pouvez peut-ĂȘtre ajuster "
-"cette valeur pour obtenir une belle surface plane en cas de léger "
-"débordement ou sous-dépassement"
+"Le matĂ©riau peut prĂ©senter un changement volumĂ©trique aprĂšs le passage de lâĂ©tat fondu Ă lâĂ©tat cristallin. Ce paramĂštre modifie proportionnellement tous les dĂ©bits dâextrusion de ce filament dans le gcode. La valeur recommandĂ©e est comprise entre 0,95 et 1,05. Vous pouvez peut-ĂȘtre ajuster cette valeur pour obtenir une belle surface plate lorsquâil y a un lĂ©ger dĂ©bordement ou un sous-dĂ©bordement. \n"
+"\n"
+"Le ratio de dĂ©bit de lâobjet final est cette valeur multipliĂ©e par le ratio de dĂ©bit du filament."
msgid "Enable pressure advance"
msgstr "Activer la Pressure Advance"
-msgid ""
-"Enable pressure advance, auto calibration result will be overwriten once "
-"enabled."
-msgstr ""
-"Activer le Pressure Advance, le rĂ©sultat de lâauto calibration sera Ă©crasĂ© "
-"une fois activé."
+msgid "Enable pressure advance, auto calibration result will be overwriten once enabled."
+msgstr "Activer le Pressure Advance, le rĂ©sultat de lâauto calibration sera Ă©crasĂ© une fois activĂ©."
msgid "Pressure advance(Klipper) AKA Linear advance factor(Marlin)"
msgstr "Pressure Advance (Klipper) AKA Linear Advance (Marlin)"
@@ -11005,122 +9352,49 @@ msgstr "Activer lâavance de pression adaptative (beta)"
#, c-format, boost-format
msgid ""
-"With increasing print speeds (and hence increasing volumetric flow through "
-"the nozzle) and increasing accelerations, it has been observed that the "
-"effective PA value typically decreases. This means that a single PA value is "
-"not always 100%% optimal for all features and a compromise value is usually "
-"used that does not cause too much bulging on features with lower flow speed "
-"and accelerations while also not causing gaps on faster features.\n"
+"With increasing print speeds (and hence increasing volumetric flow through the nozzle) and increasing accelerations, it has been observed that the effective PA value typically decreases. This means that a single PA value is not always 100%% optimal for all features and a compromise value is usually used that does not cause too much bulging on features with lower flow speed and accelerations while also not causing gaps on faster features.\n"
"\n"
-"This feature aims to address this limitation by modeling the response of "
-"your printer's extrusion system depending on the volumetric flow speed and "
-"acceleration it is printing at. Internally, it generates a fitted model that "
-"can extrapolate the needed pressure advance for any given volumetric flow "
-"speed and acceleration, which is then emmited to the printer depending on "
-"the current print conditions.\n"
+"This feature aims to address this limitation by modeling the response of your printer's extrusion system depending on the volumetric flow speed and acceleration it is printing at. Internally, it generates a fitted model that can extrapolate the needed pressure advance for any given volumetric flow speed and acceleration, which is then emmited to the printer depending on the current print conditions.\n"
"\n"
-"When enabled, the pressure advance value above is overriden. However, a "
-"reasonable default value above is strongly recomended to act as a fallback "
-"and for when tool changing.\n"
+"When enabled, the pressure advance value above is overriden. However, a reasonable default value above is strongly recomended to act as a fallback and for when tool changing.\n"
"\n"
msgstr ""
-"Avec lâaugmentation des vitesses dâimpression (et donc du dĂ©bit volumĂ©trique "
-"à travers la buse) et des accélérations, il a été observé que la valeur "
-"effective de PA diminue gĂ©nĂ©ralement. Cela signifie quâune valeur PA unique "
-"nâest pas toujours optimale Ă 100%% pour toutes les caractĂ©ristiques et "
-"quâune valeur de compromis est gĂ©nĂ©ralement utilisĂ©e pour Ă©viter de trop "
-"gonfler les caractĂ©ristiques avec une vitesse dâĂ©coulement et des "
-"accélérations plus faibles, tout en évitant de créer des interstices sur les "
-"traits plus rapides.\n"
+"Avec lâaugmentation des vitesses dâimpression (et donc du dĂ©bit volumĂ©trique Ă travers la buse) et des accĂ©lĂ©rations, il a Ă©tĂ© observĂ© que la valeur effective du PA diminue gĂ©nĂ©ralement. Cela signifie quâune valeur PA unique nâest pas toujours optimale Ă 100%% pour toutes les caractĂ©ristiques et quâune valeur de compromis est gĂ©nĂ©ralement utilisĂ©e pour Ă©viter de trop bomber les caractĂ©ristiques avec une vitesse dâĂ©coulement et des accĂ©lĂ©rations plus faibles, tout en ne causant pas de lacunes sur les caractĂ©ristiques plus rapides.\n"
"\n"
-"Cette fonction vise à remédier à cette limitation en modélisant la réponse "
-"du systĂšme dâextrusion de votre imprimante en fonction de la vitesse du flux "
-"volumĂ©trique et de lâaccĂ©lĂ©ration de lâimpression. En interne, elle gĂ©nĂšre "
-"un modĂšle ajustĂ© qui peut extrapoler lâavance de pression nĂ©cessaire pour "
-"une vitesse de débit volumétrique et une accélération données, qui est "
-"ensuite Ă©mise Ă lâimprimante en fonction des conditions dâimpression "
-"actuelles.\n"
+"Cette fonction vise Ă remĂ©dier Ă cette limitation en modĂ©lisant la rĂ©ponse du systĂšme dâextrusion de votre imprimante en fonction de la vitesse dâĂ©coulement volumĂ©trique et de lâaccĂ©lĂ©ration de lâimpression. En interne, elle gĂ©nĂšre un modĂšle ajustĂ© qui peut extrapoler lâavance de pression nĂ©cessaire pour une vitesse de dĂ©bit volumĂ©trique et une accĂ©lĂ©ration donnĂ©es, qui est ensuite Ă©mise Ă lâimprimante en fonction des conditions dâimpression actuelles.\n"
"\n"
-"Lorsquâelle est activĂ©e, la valeur de lâavance de pression ci-dessus est "
-"annulée. Cependant, une valeur par défaut raisonnable est fortement "
-"recommandée pour servir de solution de secours et en cas de changement "
-"dâoutil.\n"
+"Lorsquâelle est activĂ©e, la valeur de lâavance de pression ci-dessus est annulĂ©e. Cependant, il est fortement recommandĂ© de choisir une valeur par dĂ©faut raisonnable pour servir de solution de repli et pour les changements dâoutils.\n"
msgid "Adaptive pressure advance measurements (beta)"
msgstr "Mesures adaptatives de lâavance de pression (beta)"
msgid ""
-"Add sets of pressure advance (PA) values, the volumetric flow speeds and "
-"accelerations they were measured at, separated by a comma. One set of values "
-"per line. For example\n"
+"Add sets of pressure advance (PA) values, the volumetric flow speeds and accelerations they were measured at, separated by a comma. One set of values per line. For example\n"
"0.04,3.96,3000\n"
"0.033,3.96,10000\n"
"0.029,7.91,3000\n"
"0.026,7.91,10000\n"
"\n"
"How to calibrate:\n"
-"1. Run the pressure advance test for at least 3 speeds per acceleration "
-"value. It is recommended that the test is run for at least the speed of the "
-"external perimeters, the speed of the internal perimeters and the fastest "
-"feature print speed in your profile (usually its the sparse or solid "
-"infill). Then run them for the same speeds for the slowest and fastest print "
-"accelerations,and no faster than the recommended maximum acceleration as "
-"given by the klipper input shaper.\n"
-"2. Take note of the optimal PA value for each volumetric flow speed and "
-"acceleration. You can find the flow number by selecting flow from the color "
-"scheme drop down and move the horizontal slider over the PA pattern lines. "
-"The number should be visible at the bottom of the page. The ideal PA value "
-"should be decreasing the higher the volumetric flow is. If it is not, "
-"confirm that your extruder is functioning correctly.The slower and with less "
-"acceleration you print, the larger the range of acceptable PA values. If no "
-"difference is visible, use the PA value from the faster test.3. Enter the "
-"triplets of PA values, Flow and Accelerations in the text box here and save "
-"your filament profile\n"
+"1. Run the pressure advance test for at least 3 speeds per acceleration value. It is recommended that the test is run for at least the speed of the external perimeters, the speed of the internal perimeters and the fastest feature print speed in your profile (usually its the sparse or solid infill). Then run them for the same speeds for the slowest and fastest print accelerations,and no faster than the recommended maximum acceleration as given by the klipper input shaper.\n"
+"2. Take note of the optimal PA value for each volumetric flow speed and acceleration. You can find the flow number by selecting flow from the color scheme drop down and move the horizontal slider over the PA pattern lines. The number should be visible at the bottom of the page. The ideal PA value should be decreasing the higher the volumetric flow is. If it is not, confirm that your extruder is functioning correctly.The slower and with less acceleration you print, the larger the range of acceptable PA values. If no difference is visible, use the PA value from the faster test.3. Enter the triplets of PA values, Flow and Accelerations in the text box here and save your filament profile\n"
"\n"
msgstr ""
-"Ajouter des séries de valeurs d'avance de pression (PA), les vitesses de "
-"débit volumétrique et les accélérations auxquelles elles ont été mesurées, "
-"séparées par une virgule. Un ensemble de valeurs par ligne. Par exemple\n"
+"Ajouter des séries de valeurs d'avance de pression (PA), les vitesses de débit volumétrique et les accélérations auxquelles elles ont été mesurées, séparées par une virgule. Un ensemble de valeurs par ligne. Par exemple\n"
"0.04,3.96,3000\n"
"0.033,3.96,10000\n"
"0.029,7.91,3000\n"
"0.026,7.91,10000\n"
"\n"
"Comment calibrer :\n"
-"1. Effectuer le test dâavance de pression pour au moins 3 vitesses par "
-"valeur dâaccĂ©lĂ©ration. Il est recommandĂ© dâeffectuer le test pour au moins "
-"la vitesse des périmÚtres externes, la vitesse des périmÚtres internes et la "
-"vitesse dâimpression de la caractĂ©ristique la plus rapide de votre profil "
-"(en gĂ©nĂ©ral, il sâagit du remplissage clairsemĂ© ou plein). Ensuite, il faut "
-"les exĂ©cuter aux mĂȘmes vitesses pour les accĂ©lĂ©rations dâimpression les plus "
-"lentes et les plus rapides, et pas plus vite que lâaccĂ©lĂ©ration maximale "
-"recommandĂ©e par le modeleur dâentrĂ©e de klipper.\n"
-"2. Notez la valeur optimale de PA pour chaque vitesse de flux volumétrique "
-"et accélération. Vous pouvez trouver le numéro de débit en sélectionnant le "
-"débit dans le menu déroulant du schéma de couleurs et en déplaçant le "
-"curseur horizontal sur les lignes du schĂ©ma PA. Le chiffre doit ĂȘtre visible "
-"en bas de la page. La valeur idéale du PA devrait diminuer au fur et à "
-"mesure que le dĂ©bit volumĂ©trique augmente. Si ce nâest pas le cas, vĂ©rifiez "
-"que votre extrudeur fonctionne correctement. Plus vous imprimez lentement et "
-"avec peu dâaccĂ©lĂ©ration, plus la plage des valeurs PA acceptables est "
-"grande. Si aucune diffĂ©rence nâest visible, utilisez la valeur PA du test le "
-"plus rapide.3 Entrez les triplets de valeurs PA, de dĂ©bit et dâaccĂ©lĂ©rations "
-"dans la zone de texte ici et sauvegardez votre profil de filament.\n"
+"1. Effectuer le test dâavance de pression pour au moins 3 vitesses par valeur dâaccĂ©lĂ©ration. Il est recommandĂ© dâeffectuer le test pour au moins la vitesse des pĂ©rimĂštres externes, la vitesse des pĂ©rimĂštres internes et la vitesse dâimpression de la caractĂ©ristique la plus rapide de votre profil (en gĂ©nĂ©ral, il sâagit du remplissage clairsemĂ© ou plein). Ensuite, il faut les exĂ©cuter aux mĂȘmes vitesses pour les accĂ©lĂ©rations dâimpression les plus lentes et les plus rapides, et pas plus vite que lâaccĂ©lĂ©ration maximale recommandĂ©e par le modeleur dâentrĂ©e de klipper.\n"
+"2. Notez la valeur optimale de PA pour chaque vitesse de dĂ©bit volumĂ©trique et accĂ©lĂ©ration. Vous pouvez trouver le numĂ©ro de dĂ©bit en sĂ©lectionnant le dĂ©bit dans le menu dĂ©roulant du schĂ©ma de couleurs et en dĂ©plaçant le curseur horizontal sur les lignes du schĂ©ma PA. Le chiffre doit ĂȘtre visible en bas de la page. La valeur idĂ©ale du PA devrait diminuer au fur et Ă mesure que le dĂ©bit volumĂ©trique augmente. Si ce nâest pas le cas, vĂ©rifiez que votre extrudeur fonctionne correctement. Plus vous imprimez lentement et avec peu dâaccĂ©lĂ©ration, plus la plage des valeurs PA acceptables est grande. Si aucune diffĂ©rence nâest visible, utilisez la valeur PA du test le plus rapide.3 Entrez les triplets de valeurs PA, de dĂ©bit et dâaccĂ©lĂ©rations dans la zone de texte ici et sauvegardez votre profil de filament.\n"
msgid "Enable adaptive pressure advance for overhangs (beta)"
-msgstr ""
-"Activation de lâavance de pression adaptative pour les surplombs (beta)"
+msgstr "Activation de lâavance de pression adaptative pour les surplombs (beta)"
-msgid ""
-"Enable adaptive PA for overhangs as well as when flow changes within the "
-"same feature. This is an experimental option, as if the PA profile is not "
-"set accurately, it will cause uniformity issues on the external surfaces "
-"before and after overhangs.\n"
-msgstr ""
-"Activer le PA adaptatif pour les surplombs ainsi que pour les changements de "
-"dĂ©bit au sein dâun mĂȘme Ă©lĂ©ment. Il sâagit dâune option expĂ©rimentale, car "
-"si le profil PA nâest pas dĂ©fini avec prĂ©cision, il entraĂźnera des problĂšmes "
-"dâuniformitĂ© sur les surfaces externes avant et aprĂšs les surplombs.\n"
+msgid "Enable adaptive PA for overhangs as well as when flow changes within the same feature. This is an experimental option, as if the PA profile is not set accurately, it will cause uniformity issues on the external surfaces before and after overhangs.\n"
+msgstr "Activer le PA adaptatif pour les surplombs ainsi que pour les changements de dĂ©bit au sein dâun mĂȘme Ă©lĂ©ment. Il sâagit dâune option expĂ©rimentale, car si le profil PA nâest pas dĂ©fini avec prĂ©cision, il entraĂźnera des problĂšmes dâuniformitĂ© sur les surfaces externes avant et aprĂšs les surplombs.\n"
msgid "Pressure advance for bridges"
msgstr "Avance de pression pour les ponts"
@@ -11128,74 +9402,43 @@ msgstr "Avance de pression pour les ponts"
msgid ""
"Pressure advance value for bridges. Set to 0 to disable. \n"
"\n"
-" A lower PA value when printing bridges helps reduce the appearance of "
-"slight under extrusion immediately after bridges. This is caused by the "
-"pressure drop in the nozzle when printing in the air and a lower PA helps "
-"counteract this."
+" A lower PA value when printing bridges helps reduce the appearance of slight under extrusion immediately after bridges. This is caused by the pressure drop in the nozzle when printing in the air and a lower PA helps counteract this."
msgstr ""
"Valeur de lâavance de pression pour les ponts. RĂ©gler Ă 0 pour dĂ©sactiver. \n"
"\n"
-" Une valeur PA plus faible lors de lâimpression de ponts permet de rĂ©duire "
-"lâapparition dâune lĂ©gĂšre sous-extrusion immĂ©diatement aprĂšs les ponts. Ce "
-"phĂ©nomĂšne est dĂ» Ă la chute de pression dans la buse lors de lâimpression "
-"dans lâair et une valeur PA plus faible permet dây remĂ©dier."
+" Une valeur PA plus faible lors de lâimpression de ponts permet de rĂ©duire lâapparition dâune lĂ©gĂšre sous-extrusion immĂ©diatement aprĂšs les ponts. Ce phĂ©nomĂšne est dĂ» Ă la chute de pression dans la buse lors de lâimpression dans lâair et une valeur PA plus faible permet dây remĂ©dier."
-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 ""
-"Largeur de ligne par défaut si les autres largeurs de ligne sont fixées à 0. "
-"Si elle est exprimée en %, elle sera calculée sur le diamÚtre de la buse."
+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 "Largeur de ligne par défaut si les autres largeurs de ligne sont fixées à 0. Si elle est exprimée en %, elle sera calculée sur le diamÚtre de la buse."
msgid "Keep fan always on"
msgstr "Garder le ventilateur toujours actif"
-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 ""
-"Si ce paramÚtre est activé, le ventilateur de refroidissement des piÚces ne "
-"sera jamais arrĂȘtĂ© et fonctionnera au moins Ă la vitesse minimale pour "
-"rĂ©duire la frĂ©quence de dĂ©marrage et d'arrĂȘt"
+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 "Si ce paramĂštre est activĂ©, le ventilateur de refroidissement des piĂšces ne sera jamais arrĂȘtĂ© et fonctionnera au moins Ă la vitesse minimale pour rĂ©duire la frĂ©quence de dĂ©marrage et d'arrĂȘt"
msgid "Don't slow down outer walls"
msgstr "Ne pas ralentir sur les parois extérieures"
msgid ""
-"If enabled, this setting will ensure external perimeters are not slowed down "
-"to meet the minimum layer time. This is particularly helpful in the below "
-"scenarios:\n"
+"If enabled, this setting will ensure external perimeters are not slowed down to meet the minimum layer time. This is particularly helpful in the below scenarios:\n"
"\n"
" 1. To avoid changes in shine when printing glossy filaments \n"
-"2. To avoid changes in external wall speed which may create slight wall "
-"artefacts that appear like z banding \n"
-"3. To avoid printing at speeds which cause VFAs (fine artefacts) on the "
-"external walls\n"
+"2. To avoid changes in external wall speed which may create slight wall artefacts that appear like z banding \n"
+"3. To avoid printing at speeds which cause VFAs (fine artefacts) on the external walls\n"
"\n"
msgstr ""
-"Sâil est activĂ©, ce paramĂštre garantit que les pĂ©rimĂštres externes ne sont "
-"pas ralentis pour respecter la durée minimale de la couche. Ceci est "
-"particuliÚrement utile dans les scénarios suivants :\n"
+"Sâil est activĂ©, ce paramĂštre garantit que les pĂ©rimĂštres externes ne sont pas ralentis pour respecter la durĂ©e minimale de la couche. Ceci est particuliĂšrement utile dans les scĂ©narios suivants :\n"
"\n"
-" 1. Pour Ă©viter les changements de brillance lors de lâimpression de "
-"filaments brillants \n"
-"2. Pour éviter les changements de vitesse des parois externes qui peuvent "
-"créer de légers artefacts de paroi qui apparaissent comme des bandes en z. \n"
-"3. Pour Ă©viter dâimprimer Ă des vitesses qui provoquent des VFA (artefacts "
-"fins) sur les parois externes.\n"
+" 1. Pour Ă©viter les changements de brillance lors de lâimpression de filaments brillants \n"
+"2. Pour éviter les changements de vitesse des parois externes qui peuvent créer de légers artefacts de paroi qui apparaissent comme des bandes en z. \n"
+"3. Pour Ă©viter dâimprimer Ă des vitesses qui provoquent des VFA (artefacts fins) sur les parois externes.\n"
msgid "Layer time"
msgstr "Temps de couche"
-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 ""
-"Le ventilateur de refroidissement des piÚces sera activé pour les couches "
-"dont le temps estimé est inférieur à cette valeur. La vitesse du ventilateur "
-"est interpolée entre les vitesses minimale et maximale du ventilateur en "
-"fonction du temps d'impression de la couche"
+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 "Le ventilateur de refroidissement des piÚces sera activé pour les couches dont le temps estimé est inférieur à cette valeur. La vitesse du ventilateur est interpolée entre les vitesses minimale et maximale du ventilateur en fonction du temps d'impression de la couche"
msgid "Default color"
msgstr "Couleur par défaut"
@@ -11212,22 +9455,11 @@ msgstr "Vous pouvez mettre vos notes concernant le filament ici."
msgid "Required nozzle HRC"
msgstr "Buse HRC requise"
-msgid ""
-"Minimum HRC of nozzle required to print the filament. Zero means no checking "
-"of nozzle's HRC."
-msgstr ""
-"Dureté HRC minimum de la buse requis pour imprimer le filament. Une valeur "
-"de 0 signifie qu'il n'y a pas de vérification de la dureté HRC de la buse."
+msgid "Minimum HRC of nozzle required to print the filament. Zero means no checking of nozzle's HRC."
+msgstr "Dureté HRC minimum de la buse requis pour imprimer le filament. Une valeur de 0 signifie qu'il n'y a pas de vérification de la dureté HRC de la buse."
-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 ""
-"Ce paramĂštre correspond au volume de filament qui peut ĂȘtre fondu et extrudĂ© "
-"par seconde. La vitesse d'impression sera limitée par la vitesse "
-"volumétrique maximale en cas de réglage de vitesse déraisonnablement trop "
-"Ă©levĂ©. Cette valeur ne peut pas ĂȘtre nulle."
+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 "Ce paramĂštre correspond au volume de filament qui peut ĂȘtre fondu et extrudĂ© par seconde. La vitesse d'impression sera limitĂ©e par la vitesse volumĂ©trique maximale en cas de rĂ©glage de vitesse dĂ©raisonnablement trop Ă©levĂ©. Cette valeur ne peut pas ĂȘtre nulle."
msgid "mmÂł/s"
msgstr "mmÂł/s"
@@ -11235,43 +9467,37 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "Temps de chargement du filament"
-msgid "Time to load new filament when switch filament. For statistics only"
-msgstr ""
-"Il est temps de charger un nouveau filament lors du changement de filament. "
-"Pour les statistiques uniquement"
+msgid "Time to load new filament when switch filament. It's usually applicable for single-extruder multi-material machines. For tool changers or multi-tool machines, it's typically 0. For statistics only"
+msgstr "Temps nĂ©cessaire pour charger un nouveau filament lors dâun changement de filament. Ce paramĂštre sâapplique gĂ©nĂ©ralement aux machines multi-matĂ©riaux Ă un seul extrudeur. La valeur est gĂ©nĂ©ralement de 0 pour les changeurs dâoutils ou les machines multi-outils. Pour les statistiques uniquement."
msgid "Filament unload time"
msgstr "Temps de déchargement du filament"
-msgid "Time to unload old filament when switch filament. For statistics only"
-msgstr ""
-"Il est temps de décharger l'ancien filament lorsque vous changez de "
-"filament. Pour les statistiques uniquement"
+msgid "Time to unload old filament when switch filament. It's usually applicable for single-extruder multi-material machines. For tool changers or multi-tool machines, it's typically 0. For statistics only"
+msgstr "Temps nĂ©cessaire pour dĂ©charger lâancien filament lors du changement de filament. Ce paramĂštre sâapplique gĂ©nĂ©ralement aux machines multi-matĂ©riaux Ă un seul extrudeur. Pour les changeurs dâoutils ou les machines multi-outils, il est gĂ©nĂ©ralement Ă©gal Ă 0. Pour les statistiques uniquement."
-msgid ""
-"Filament diameter is used to calculate extrusion in gcode, so it's important "
-"and should be accurate"
-msgstr ""
-"Le diamÚtre du filament est utilisé pour calculer les variables d'extrusion "
-"dans le G-code, il est donc important qu'il soit exact et précis."
+msgid "Tool change time"
+msgstr "DĂ©lais nĂ©cessaire au changement dâoutil"
+
+msgid "Time taken to switch tools. It's usually applicable for tool changers or multi-tool machines. For single-extruder multi-material machines, it's typically 0. For statistics only"
+msgstr "DurĂ©e nĂ©cessaire pour changer dâoutil. Il sâapplique gĂ©nĂ©ralement aux changeurs dâoutils ou aux machines multi-outils. Pour les machines multi-matĂ©riaux mono-extrudeuses, il est gĂ©nĂ©ralement Ă©gal Ă 0. Pour les statistiques uniquement."
+
+msgid "Filament diameter is used to calculate extrusion in gcode, so it's important and should be accurate"
+msgstr "Le diamÚtre du filament est utilisé pour calculer les variables d'extrusion dans le G-code, il est donc important qu'il soit exact et précis."
msgid "Pellet flow coefficient"
msgstr "Coefficient dâĂ©coulement des pellets"
msgid ""
-"Pellet flow coefficient is emperically derived and allows for volume "
-"calculation for pellet printers.\n"
+"Pellet flow coefficient is emperically derived and allows for volume calculation for pellet printers.\n"
"\n"
-"Internally it is converted to filament_diameter. All other volume "
-"calculations remain the same.\n"
+"Internally it is converted to filament_diameter. All other volume calculations remain the same.\n"
"\n"
"filament_diameter = sqrt( (4 * pellet_flow_coefficient) / PI )"
msgstr ""
-"Le coefficient dâĂ©coulement des pellets est dĂ©rivĂ© de maniĂšre empirique et "
-"permet de calculer le volume des imprimantes Ă pellets.\n"
+"Le coefficient dâĂ©coulement des pellets est dĂ©rivĂ© de maniĂšre empirique et permet de calculer le volume des imprimantes Ă pellets.\n"
"\n"
-"En interne, il est converti en diamĂštre de filament. Tous les autres calculs "
-"de volume restent inchangés.\n"
+"En interne, il est converti en diamÚtre de filament. Tous les autres calculs de volume restent inchangés.\n"
"\n"
"filament_diameter = sqrt( (4 * pellet_flow_coefficient) / PI )"
@@ -11280,18 +9506,11 @@ msgstr "Pourcentage de retrait"
#, 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."
+"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 ""
-"Entrez le pourcentage de rétrécissement que le filament obtiendra aprÚs "
-"refroidissement (94% si vous mesurez 94mm au lieu de 100mm). La piĂšce sera "
-"mise Ă lâĂ©chelle en xy pour compenser. Seul le filament utilisĂ© pour le "
-"périmÚtre est pris en compte.\n"
-"Veillez Ă laisser suffisamment dâespace entre les objets, car cette "
-"compensation est effectuée aprÚs les contrÎles."
+"Entrez le pourcentage de rĂ©trĂ©cissement que le filament obtiendra aprĂšs refroidissement (94% si vous mesurez 94mm au lieu de 100mm). La piĂšce sera mise Ă lâĂ©chelle en xy pour compenser. Seul le filament utilisĂ© pour le pĂ©rimĂštre est pris en compte.\n"
+"Veillez Ă laisser suffisamment dâespace entre les objets, car cette compensation est effectuĂ©e aprĂšs les contrĂŽles."
msgid "Loading speed"
msgstr "Vitesse de chargement"
@@ -11308,43 +9527,26 @@ msgstr "Vitesse utilisée au tout début de la phase de chargement."
msgid "Unloading speed"
msgstr "Vitesse de déchargement"
-msgid ""
-"Speed used for unloading the filament on the wipe tower (does not affect "
-"initial part of unloading just after ramming)."
-msgstr ""
-"Vitesse utilisĂ©e pour le dĂ©chargement du filament sur la tour dâessuyage "
-"(nâaffecte pas la partie initiale de retrait juste aprĂšs le pilonnage)."
+msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming)."
+msgstr "Vitesse utilisĂ©e pour le dĂ©chargement du filament sur la tour dâessuyage (nâaffecte pas la partie initiale de retrait juste aprĂšs le pilonnage)."
msgid "Unloading speed at the start"
msgstr "Vitesse de déchargement au démarrage"
-msgid ""
-"Speed used for unloading the tip of the filament immediately after ramming."
-msgstr ""
-"Vitesse utilisée pour décharger la pointe du filament immédiatement aprÚs le "
-"pilonnage."
+msgid "Speed used for unloading the tip of the filament immediately after ramming."
+msgstr "Vitesse utilisée pour décharger la pointe du filament immédiatement aprÚs le pilonnage."
msgid "Delay after unloading"
msgstr "Délai aprÚs déchargement"
-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 ""
-"Délai une fois le filament déchargé. Peut aider à obtenir des changements "
-"dâoutils fiables avec des matĂ©riaux flexibles qui peuvent nĂ©cessiter plus de "
-"temps pour revenir aux dimensions dâorigine."
+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 "DĂ©lai une fois le filament dĂ©chargĂ©. Peut aider Ă obtenir des changements dâoutils fiables avec des matĂ©riaux flexibles qui peuvent nĂ©cessiter plus de temps pour revenir aux dimensions dâorigine."
msgid "Number of cooling moves"
msgstr "Nombre de mouvements de refroidissement"
-msgid ""
-"Filament is cooled by being moved back and forth in the cooling tubes. "
-"Specify desired number of these moves."
-msgstr ""
-"Le filament est refroidi en Ă©tant dĂ©placĂ© dâavant en arriĂšre dans les tubes "
-"de refroidissement. Précisez le nombre souhaité de ces mouvements."
+msgid "Filament is cooled by being moved back and forth in the cooling tubes. Specify desired number of these moves."
+msgstr "Le filament est refroidi en Ă©tant dĂ©placĂ© dâavant en arriĂšre dans les tubes de refroidissement. PrĂ©cisez le nombre souhaitĂ© de ces mouvements."
msgid "Stamping loading speed"
msgstr "Vitesse de chargement du marquage"
@@ -11353,97 +9555,40 @@ msgid "Speed used for stamping."
msgstr "Vitesse utilisée pour le marquage."
msgid "Stamping distance measured from the center of the cooling tube"
-msgstr ""
-"Distance de marquage mesurée à partir du centre du tube de refroidissement"
+msgstr "Distance de marquage mesurée à partir du centre du tube de refroidissement"
-msgid ""
-"If set to nonzero value, filament is moved toward the nozzle between the "
-"individual cooling moves (\"stamping\"). This option configures how long "
-"this movement should be before the filament is retracted again."
-msgstr ""
-"Si la valeur est différente de zéro, le filament est déplacé vers la buse "
-"entre les différents mouvements de refroidissement (« marquage »). Cette "
-"option permet de configurer la durée de ce mouvement avant que le filament "
-"ne soit à nouveau rétracté."
+msgid "If set to nonzero value, filament is moved toward the nozzle between the individual cooling moves (\"stamping\"). This option configures how long this movement should be before the filament is retracted again."
+msgstr "Si la valeur est différente de zéro, le filament est déplacé vers la buse entre les différents mouvements de refroidissement (« marquage »). Cette option permet de configurer la durée de ce mouvement avant que le filament ne soit à nouveau rétracté."
msgid "Speed of the first cooling move"
msgstr "Vitesse du premier mouvement de refroidissement"
msgid "Cooling moves are gradually accelerating beginning at this speed."
-msgstr ""
-"Les mouvements de refroidissement sâaccĂ©lĂšrent progressivement Ă partir de "
-"cette vitesse."
+msgstr "Les mouvements de refroidissement sâaccĂ©lĂšrent progressivement Ă partir de cette vitesse."
msgid "Minimal purge on wipe tower"
msgstr "Purge minimale sur la tour dâessuyage"
-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 ""
-"AprĂšs un changement dâoutil, la position exacte du filament nouvellement "
-"chargĂ© Ă lâintĂ©rieur de la buse peut ne pas ĂȘtre connue et la pression du "
-"filament nâest probablement pas encore stable. Avant de purger la tĂȘte "
-"dâimpression dans un remplissage ou un objet, Orca Slicer amorcera toujours "
-"cette quantitĂ© de matĂ©riau dans la tour dâessuyage pour purger dans les "
-"remplissages ou objets de maniĂšre fiable."
+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 "AprĂšs un changement dâoutil, la position exacte du filament nouvellement chargĂ© Ă lâintĂ©rieur de la buse peut ne pas ĂȘtre connue et la pression du filament nâest probablement pas encore stable. Avant de purger la tĂȘte dâimpression dans un remplissage ou un objet, Orca Slicer amorcera toujours cette quantitĂ© de matĂ©riau dans la tour dâessuyage pour purger dans les remplissages ou objets de maniĂšre fiable."
msgid "Speed of the last cooling move"
msgstr "Vitesse du dernier mouvement de refroidissement"
msgid "Cooling moves are gradually accelerating towards this speed."
-msgstr ""
-"Les mouvements de refroidissement sâaccĂ©lĂšrent progressivement vers cette "
-"vitesse."
-
-msgid ""
-"Time for the printer firmware (or the Multi Material Unit 2.0) to load a new "
-"filament during a tool change (when executing the T code). This time is "
-"added to the total print time by the G-code time estimator."
-msgstr ""
-"Temps nĂ©cessaire au firmware de lâimprimante (ou au Multi Material Unit 2.0) "
-"pour charger un nouveau filament lors dâun changement dâoutil (lors de "
-"lâexĂ©cution du code T). Ce temps est ajoutĂ© au temps dâimpression total par "
-"lâestimateur de temps du G-code."
+msgstr "Les mouvements de refroidissement sâaccĂ©lĂšrent progressivement vers cette vitesse."
msgid "Ramming parameters"
msgstr "ParamĂštres de pilonnage"
-msgid ""
-"This string is edited by RammingDialog and contains ramming specific "
-"parameters."
-msgstr ""
-"Cette chaßne est éditée par RammingDialog et contient des paramÚtres "
-"spécifiques au pilonnage."
-
-msgid ""
-"Time for the printer firmware (or the Multi Material Unit 2.0) to unload a "
-"filament during a tool change (when executing the T code). This time is "
-"added to the total print time by the G-code time estimator."
-msgstr ""
-"Temps nĂ©cessaire au firmware de lâimprimante (ou au Multi Material Unit 2.0) "
-"pour dĂ©charger un filament lors dâun changement dâoutil (lors de lâexĂ©cution "
-"du code T). Ce temps est ajoutĂ© au temps dâimpression total par lâestimateur "
-"de temps du G-code."
+msgid "This string is edited by RammingDialog and contains ramming specific parameters."
+msgstr "Cette chaßne est éditée par RammingDialog et contient des paramÚtres spécifiques au pilonnage."
msgid "Enable ramming for multitool setups"
msgstr "Activer le pilonnage pour les configurations multi-outils"
-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 ""
-"Effectuez un pilonnage lorsque vous utilisez une imprimante multi-outils "
-"(câest-Ă -dire lorsque lâoption âMulti-matĂ©riau Ă extrudeur uniqueâ dans les "
-"paramĂštres de lâimprimante nâest pas cochĂ©e). Une fois vĂ©rifiĂ©, une petite "
-"quantitĂ© de filament est rapidement extrudĂ©e sur la tour dâessuyage juste "
-"avant le changement dâoutil. Cette option nâest utilisĂ©e que lorsque la tour "
-"dâessuyage est activĂ©e."
+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 "Effectuez un pilonnage lorsque vous utilisez une imprimante multi-outils (câest-Ă -dire lorsque lâoption âMulti-matĂ©riau Ă extrudeur uniqueâ dans les paramĂštres de lâimprimante nâest pas cochĂ©e). Une fois vĂ©rifiĂ©, une petite quantitĂ© de filament est rapidement extrudĂ©e sur la tour dâessuyage juste avant le changement dâoutil. Cette option nâest utilisĂ©e que lorsque la tour dâessuyage est activĂ©e."
msgid "Multitool ramming volume"
msgstr "Volume du pilonnage multi-outils"
@@ -11472,33 +9617,20 @@ msgstr "Le type de matériau du filament"
msgid "Soluble material"
msgstr "Matériau soluble"
-msgid ""
-"Soluble material is commonly used to print support and support interface"
-msgstr ""
-"Le matériau soluble est couramment utilisé pour imprimer le support et "
-"l'interface de support"
+msgid "Soluble material is commonly used to print support and support interface"
+msgstr "Le matériau soluble est couramment utilisé pour imprimer le support et l'interface de support"
msgid "Support material"
msgstr "Supports"
-msgid ""
-"Support material is commonly used to print support and support interface"
-msgstr ""
-"Le matériau de support est généralement utilisé pour imprimer le support et "
-"les interfaces de support."
+msgid "Support material is commonly used to print support and support interface"
+msgstr "Le matériau de support est généralement utilisé pour imprimer le support et les interfaces de support."
msgid "Softening temperature"
msgstr "Température de vitrification"
-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 ""
-"TempĂ©rature oĂč le matĂ©riau se ramollit. Lorsque la tempĂ©rature du plateau "
-"est Ă©gale ou supĂ©rieure Ă celle-ci, il est fortement recommandĂ© dâouvrir la "
-"porte avant et/ou de retirer la vitre supérieure pour éviter les problÚmes "
-"dâobstruction."
+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 "TempĂ©rature oĂč le matĂ©riau se ramollit. Lorsque la tempĂ©rature du plateau est Ă©gale ou supĂ©rieure Ă celle-ci, il est fortement recommandĂ© dâouvrir la porte avant et/ou de retirer la vitre supĂ©rieure pour Ă©viter les problĂšmes dâobstruction."
msgid "Price"
msgstr "Tarif"
@@ -11521,40 +9653,27 @@ msgstr "(Indéfini)"
msgid "Sparse infill direction"
msgstr "Direction du remplissage"
-msgid ""
-"Angle for sparse 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 "Angle for sparse 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 "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 "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."
+msgstr "Faire pivoter la direction du remplissage solide de 90° pour chaque couche."
msgid "Sparse infill density"
msgstr "Densité de remplissage"
#, 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 ""
-"Densité du remplissage interne, 100% transforme tous les remplissages en "
-"remplissages pleins et le modÚle de remplissage interne sera utilisé."
+msgid "Density of internal sparse infill, 100% turns all sparse infill into solid infill and internal solid infill pattern will be used"
+msgstr "Densité du remplissage interne, 100% transforme tous les remplissages en remplissages pleins et le modÚle de remplissage interne sera utilisé."
msgid "Sparse infill pattern"
msgstr "Motif de remplissage"
@@ -11599,26 +9718,11 @@ msgid "Sparse infill anchor length"
msgstr "Longueur de lâancrage de remplissage interne"
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 ""
-"Connecter une ligne de remplissage à un périmÚtre interne avec un court "
-"segment de pĂ©rimĂštre supplĂ©mentaire. Sâil est exprimĂ© en pourcentage "
-"(exemple : 15%), il est calculĂ© sur la largeur de lâextrusion de "
-"remplissage. Si aucun segment de périmÚtre plus court que infill_anchor_max "
-"nâest trouvĂ©, la ligne de remplissage est connectĂ©e Ă un segment de "
-"pĂ©rimĂštre dâun seul cĂŽtĂ© et la longueur du segment de pĂ©rimĂštre pris est "
-"limitée à ce paramÚtre, mais pas plus long que anchor_length_max.\n"
-"Une valeur Ă 0 dĂ©sactive les pĂ©rimĂštres dâancrage connectĂ©s Ă une seule "
-"ligne de remplissage."
+"Connecter une ligne de remplissage Ă un pĂ©rimĂštre interne avec un court segment de pĂ©rimĂštre supplĂ©mentaire. Sâil est exprimĂ© en pourcentage (exemple : 15%), il est calculĂ© sur la largeur de lâextrusion de remplissage. Si aucun segment de pĂ©rimĂštre plus court que infill_anchor_max nâest trouvĂ©, la ligne de remplissage est connectĂ©e Ă un segment de pĂ©rimĂštre dâun seul cĂŽtĂ© et la longueur du segment de pĂ©rimĂštre pris est limitĂ©e Ă ce paramĂštre, mais pas plus long que anchor_length_max.\n"
+"Une valeur Ă 0 dĂ©sactive les pĂ©rimĂštres dâancrage connectĂ©s Ă une seule ligne de remplissage."
msgid "0 (no open anchors)"
msgstr "0 (aucune ancre ouverte)"
@@ -11630,28 +9734,11 @@ msgid "Maximum length of the infill anchor"
msgstr "Longueur maximale de lâancrage de remplissage"
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 ""
-"Connecter une ligne de remplissage à un périmÚtre interne avec un court "
-"segment de pĂ©rimĂštre supplĂ©mentaire. Sâil est exprimĂ© en pourcentage "
-"(exemple : 15 %), il est calculĂ© sur la largeur de lâextrusion de "
-"remplissage. Orca Slicer essaie de connecter deux lignes de remplissage "
-"proches à un court segment de périmÚtre. Si aucun segment de périmÚtre plus "
-"court que ce paramĂštre nâest trouvĂ©, la ligne de remplissage est connectĂ©e Ă "
-"un segment de périmÚtre sur un seul cÎté et la longueur du segment de "
-"périmÚtre pris est limitée à infill_anchor, mais pas plus longue que ce "
-"paramĂštre.\n"
-"Sâil est dĂ©fini sur 0, lâancien algorithme de connexion de remplissage sera "
-"utilisĂ©, il devrait crĂ©er le mĂȘme rĂ©sultat quâavec 1000 et 0."
+"Connecter une ligne de remplissage Ă un pĂ©rimĂštre interne avec un court segment de pĂ©rimĂštre supplĂ©mentaire. Sâil est exprimĂ© en pourcentage (exemple : 15 %), il est calculĂ© sur la largeur de lâextrusion de remplissage. Orca Slicer essaie de connecter deux lignes de remplissage proches Ă un court segment de pĂ©rimĂštre. Si aucun segment de pĂ©rimĂštre plus court que ce paramĂštre nâest trouvĂ©, la ligne de remplissage est connectĂ©e Ă un segment de pĂ©rimĂštre sur un seul cĂŽtĂ© et la longueur du segment de pĂ©rimĂštre pris est limitĂ©e Ă infill_anchor, mais pas plus longue que ce paramĂštre.\n"
+"Sâil est dĂ©fini sur 0, lâancien algorithme de connexion de remplissage sera utilisĂ©, il devrait crĂ©er le mĂȘme rĂ©sultat quâavec 1000 et 0."
msgid "0 (Simple connect)"
msgstr "0 (connexions simples)"
@@ -11665,53 +9752,26 @@ msgstr "Accélération des parois intérieures"
msgid "Acceleration of travel moves"
msgstr "Accélération des déplacements"
-msgid ""
-"Acceleration of top surface infill. Using a lower value may improve top "
-"surface quality"
-msgstr ""
-"Il s'agit de l'accélération de la surface supérieure du remplissage. "
-"Utiliser une valeur plus petite pourrait améliorer la qualité de la surface "
-"supérieure."
+msgid "Acceleration of top surface infill. Using a lower value may improve top surface quality"
+msgstr "Il s'agit de l'accélération de la surface supérieure du remplissage. Utiliser une valeur plus petite pourrait améliorer la qualité de la surface supérieure."
msgid "Acceleration of outer wall. Using a lower value can improve quality"
-msgstr ""
-"Accélération de la paroi extérieur : l'utilisation d'une valeur inférieure "
-"peut améliorer la qualité."
+msgstr "Accélération de la paroi extérieur : l'utilisation d'une valeur inférieure peut améliorer la qualité."
-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 ""
-"Accélération des ponts. Si la valeur est exprimée en pourcentage (par "
-"exemple 50%), elle sera calculĂ©e en fonction de lâaccĂ©lĂ©ration de la paroi "
-"extérieure."
+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 "AccĂ©lĂ©ration des ponts. Si la valeur est exprimĂ©e en pourcentage (par exemple 50%), elle sera calculĂ©e en fonction de lâaccĂ©lĂ©ration de la paroi extĂ©rieure."
msgid "mm/sÂČ or %"
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 ""
-"Accélération du remplissage interne. Si la valeur est exprimée en "
-"pourcentage (par exemple 100%), elle sera calculée en fonction de "
-"lâaccĂ©lĂ©ration par dĂ©faut."
+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 "AccĂ©lĂ©ration du remplissage interne. Si la valeur est exprimĂ©e en pourcentage (par exemple 100%), elle sera calculĂ©e en fonction de lâaccĂ©lĂ©ration par dĂ©faut."
-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 ""
-"Accélération du remplissage interne. Si la valeur est exprimée en "
-"pourcentage (par exemple 100%), elle sera calculée en fonction de "
-"lâaccĂ©lĂ©ration par dĂ©faut."
+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 "AccĂ©lĂ©ration du remplissage interne. Si la valeur est exprimĂ©e en pourcentage (par exemple 100%), elle sera calculĂ©e en fonction de lâaccĂ©lĂ©ration par dĂ©faut."
-msgid ""
-"Acceleration of initial layer. Using a lower value can improve build plate "
-"adhesive"
-msgstr ""
-"Accélération de la couche initiale. L'utilisation d'une valeur plus basse "
-"peut améliorer l'adhérence sur le plateau"
+msgid "Acceleration of initial layer. Using a lower value can improve build plate adhesive"
+msgstr "Accélération de la couche initiale. L'utilisation d'une valeur plus basse peut améliorer l'adhérence sur le plateau"
msgid "Enable accel_to_decel"
msgstr "Activer lâaccĂ©lĂ©ration Ă la dĂ©cĂ©lĂ©ration"
@@ -11723,10 +9783,8 @@ msgid "accel_to_decel"
msgstr "Ajuster lâaccĂ©lĂ©ration Ă la dĂ©cĂ©lĂ©ration"
#, c-format, boost-format
-msgid ""
-"Klipper's max_accel_to_decel will be adjusted to this %% of acceleration"
-msgstr ""
-"Le paramÚtre max_accel_to_decel de Klipper sera ajusté à %% d'accélération"
+msgid "Klipper's max_accel_to_decel will be adjusted to this %% of acceleration"
+msgstr "Le paramÚtre max_accel_to_decel de Klipper sera ajusté à %% d'accélération"
msgid "Jerk of outer walls"
msgstr "Jerk des parois extérieures"
@@ -11746,22 +9804,14 @@ msgstr "Jerk de la couche initiale"
msgid "Jerk for travel"
msgstr "Jerk des déplacements"
-msgid ""
-"Line width of initial layer. If expressed as a %, it will be computed over "
-"the nozzle diameter."
-msgstr ""
-"Largeur de la ligne de la couche initiale. Si elle est exprimée en %, elle "
-"sera calculée sur le diamÚtre de la buse."
+msgid "Line width of initial layer. If expressed as a %, it will be computed over the nozzle diameter."
+msgstr "Largeur de la ligne de la couche initiale. Si elle est exprimée en %, elle sera calculée sur le diamÚtre de la buse."
msgid "Initial layer height"
msgstr "Hauteur de couche initiale"
-msgid ""
-"Height of initial layer. Making initial layer height to be thick slightly "
-"can improve build plate adhesion"
-msgstr ""
-"Il s'agit de la hauteur de la premiĂšre couche. L'augmentation de la hauteur "
-"de la premiÚre couche peut améliorer l'adhérence sur le plateau."
+msgid "Height of initial layer. Making initial layer height to be thick slightly can improve build plate adhesion"
+msgstr "Il s'agit de la hauteur de la premiÚre couche. L'augmentation de la hauteur de la premiÚre couche peut améliorer l'adhérence sur le plateau."
msgid "Speed of initial layer except the solid infill part"
msgstr "Vitesse de la couche initiale Ă l'exception du remplissage"
@@ -11781,38 +9831,20 @@ msgstr "Vitesse de déplacement de la couche initiale"
msgid "Number of slow layers"
msgstr "Nombre de couches lentes"
-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 ""
-"Les premiÚres couches sont imprimées plus lentement que la normale. La "
-"vitesse augmente progressivement de maniÚre linéaire sur le nombre de "
-"couches spécifié."
+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 "Les premiÚres couches sont imprimées plus lentement que la normale. La vitesse augmente progressivement de maniÚre linéaire sur le nombre de couches spécifié."
msgid "Initial layer nozzle temperature"
msgstr "Température de la buse de couche initiale"
msgid "Nozzle temperature to print initial layer when using this filament"
-msgstr ""
-"Température de la buse pour imprimer la couche initiale lors de "
-"l'utilisation de ce filament"
+msgstr "Température de la buse pour imprimer la couche initiale lors de l'utilisation de ce filament"
msgid "Full fan speed at layer"
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."
-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 "
-"\"full_fan_speed_layer\". \"full_fan_speed_layer\" sera ignorĂ© sâil est "
-"inférieur à \"close_fan_the_first_x_layers\", auquel cas le ventilateur "
-"fonctionnera à la vitesse maximale autorisée à la couche "
-"\"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 "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 \"full_fan_speed_layer\". \"full_fan_speed_layer\" sera ignorĂ© sâil est infĂ©rieur Ă \"close_fan_the_first_x_layers\", auquel cas le ventilateur fonctionnera Ă la vitesse maximale autorisĂ©e Ă la couche \"close_fan_the_first_x_layers\" + 1."
msgid "layer"
msgstr "couche"
@@ -11821,23 +9853,16 @@ msgid "Support interface fan speed"
msgstr "Vitesse du ventilateur"
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 ""
-"Cette vitesse de ventilateur est appliquée pendant toutes les interfaces de "
-"support, pour pouvoir affaiblir leur liaison avec une vitesse de ventilateur "
-"élevée.\n"
+"Cette vitesse de ventilateur est appliquée pendant toutes les interfaces de support, pour pouvoir affaiblir leur liaison avec une vitesse de ventilateur élevée.\n"
"Réglez sur -1 pour désactiver ce remplacement.\n"
"Ne peut ĂȘtre remplacĂ© que par 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 ""
-"Gigue aléatoire lors de l'impression de la paroi, de sorte que la surface "
-"ait un aspect rugueux. Ce réglage contrÎle la position irréguliÚre"
+msgid "Randomly jitter while printing the wall, so that the surface has a rough look. This setting controls the fuzzy position"
+msgstr "Gigue aléatoire lors de l'impression de la paroi, de sorte que la surface ait un aspect rugueux. Ce réglage contrÎle la position irréguliÚre"
msgid "Contour"
msgstr "Contour"
@@ -11851,22 +9876,14 @@ msgstr "Toutes les parois"
msgid "Fuzzy skin thickness"
msgstr "Ăpaisseur de la surface IrrĂ©guliĂšre"
-msgid ""
-"The width within which to jitter. It's adversed to be below outer wall line "
-"width"
-msgstr ""
-"La largeur Ă l'intĂ©rieur de laquelle jitter. Il est dĂ©conseillĂ© d'ĂȘtre en "
-"dessous de la largeur de la ligne de la paroi extérieure"
+msgid "The width within which to jitter. It's adversed to be below outer wall line width"
+msgstr "La largeur Ă l'intĂ©rieur de laquelle jitter. Il est dĂ©conseillĂ© d'ĂȘtre en dessous de la largeur de la ligne de la paroi extĂ©rieure"
msgid "Fuzzy skin point distance"
msgstr "Distance de point de la surface irréguliÚre"
-msgid ""
-"The average diatance between the random points introducded on each line "
-"segment"
-msgstr ""
-"La distance moyenne entre les points aléatoires introduits sur chaque "
-"segment de ligne"
+msgid "The average diatance between the random points introducded on each line segment"
+msgstr "La distance moyenne entre les points aléatoires introduits sur chaque segment de ligne"
msgid "Apply fuzzy skin to first layer"
msgstr "Appliquer la surface irréguliÚre sur la premiÚre couche"
@@ -11880,78 +9897,47 @@ msgstr "Filtrer les petits espaces"
msgid "Layers and Perimeters"
msgstr "Couches et PérimÚtres"
-msgid "Filter out gaps smaller than the threshold specified"
-msgstr "Filtrer les petits espaces au seuil spécifié."
+msgid "Don't print gap fill with a length is smaller than the threshold specified (in mm). This setting applies to top, bottom and solid infill and, if using the classic perimeter generator, to wall gap fill. "
+msgstr "Ne pas imprimer le remplissage des espaces dont la longueur est infĂ©rieure au seuil spĂ©cifiĂ© (en mm). Ce paramĂštre sâapplique aux remplissages supĂ©rieur, infĂ©rieur et solide et, si vous utilisez le gĂ©nĂ©rateur de pĂ©rimĂštre classique, pour le remplissage de la paroi. "
-msgid ""
-"Speed of gap infill. Gap usually has irregular line width and should be "
-"printed more slowly"
-msgstr ""
-"Vitesse de remplissage des espaces. Lâespace a gĂ©nĂ©ralement une largeur de "
-"ligne irrĂ©guliĂšre et doit ĂȘtre imprimĂ© plus lentement"
+msgid "Speed of gap infill. Gap usually has irregular line width and should be printed more slowly"
+msgstr "Vitesse de remplissage des espaces. Lâespace a gĂ©nĂ©ralement une largeur de ligne irrĂ©guliĂšre et doit ĂȘtre imprimĂ© plus lentement"
msgid "Precise Z height"
msgstr "Hauteur précise du 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 ""
-"Activez cette option pour obtenir une hauteur z prĂ©cise de lâobjet aprĂšs la "
-"dĂ©coupe. La hauteur prĂ©cise de lâobjet sera obtenue en affinant les hauteurs "
-"des derniĂšres couches. Notez quâil sâagit dâun paramĂštre expĂ©rimental."
+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 "Activez cette option pour obtenir une hauteur z prĂ©cise de lâobjet aprĂšs la dĂ©coupe. La hauteur prĂ©cise de lâobjet sera obtenue en affinant les hauteurs des derniĂšres couches. Notez quâil sâagit dâun paramĂštre expĂ©rimental."
msgid "Arc fitting"
msgstr "Tracer des arcs"
msgid ""
-"Enable this to get a G-code file which has G2 and G3 moves. The fitting "
-"tolerance is same as the resolution. \n"
+"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 ""
-"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"
+"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."
+"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"
msgid "Enable this to add line number(Nx) at the beginning of each G-Code line"
-msgstr ""
-"Activez cette option pour ajouter un numéro de ligne (Nx) au début de chaque "
-"ligne G-Code"
+msgstr "Activez cette option pour ajouter un numéro de ligne (Nx) au début de chaque ligne G-Code"
msgid "Scan first layer"
msgstr "Analyser la premiĂšre couche"
-msgid ""
-"Enable this to enable the camera on printer to check the quality of first "
-"layer"
-msgstr ""
-"Activez cette option pour permettre Ă l'appareil photo de l'imprimante de "
-"vérifier la qualité de la premiÚre couche"
+msgid "Enable this to enable the camera on printer to check the quality of first layer"
+msgstr "Activez cette option pour permettre à l'appareil photo de l'imprimante de vérifier la qualité de la premiÚre couche"
msgid "Nozzle type"
msgstr "Type de buse"
-msgid ""
-"The metallic material of nozzle. This determines the abrasive resistance of "
-"nozzle, and what kind of filament can be printed"
-msgstr ""
-"Le matériau métallique de la buse. Cela détermine la résistance à l'abrasion "
-"de la buse et le type de filament pouvant ĂȘtre imprimĂ©"
+msgid "The metallic material of nozzle. This determines the abrasive resistance of nozzle, and what kind of filament can be printed"
+msgstr "Le matĂ©riau mĂ©tallique de la buse. Cela dĂ©termine la rĂ©sistance Ă l'abrasion de la buse et le type de filament pouvant ĂȘtre imprimĂ©"
msgid "Undefine"
msgstr "Non défini"
@@ -11968,12 +9954,8 @@ msgstr "Laiton"
msgid "Nozzle HRC"
msgstr "Dureté HRC buse"
-msgid ""
-"The nozzle's hardness. Zero means no checking for nozzle's hardness during "
-"slicing."
-msgstr ""
-"La dureté de la buse. Zéro signifie qu'il n'est pas nécessaire de vérifier "
-"la dureté de la buse pendant la découpe."
+msgid "The nozzle's hardness. Zero means no checking for nozzle's hardness during slicing."
+msgstr "La dureté de la buse. Zéro signifie qu'il n'est pas nécessaire de vérifier la dureté de la buse pendant la découpe."
msgid "HRC"
msgstr "HRC"
@@ -12000,37 +9982,20 @@ msgid "Best object position"
msgstr "Meilleure position dâorganisation automatique"
msgid "Best auto arranging position in range [0,1] w.r.t. bed shape."
-msgstr ""
-"Meilleure position dâorganisation automatique dans la plage [0,1] par "
-"rapport Ă forme du plateau."
+msgstr "Meilleure position dâorganisation automatique dans la plage [0,1] par rapport Ă forme du plateau."
+
+msgid "Enable this option if machine has auxiliary part cooling fan. G-code command: M106 P2 S(0-255)."
+msgstr "Activer cette option si lâimprimante est Ă©quipĂ©e d'un ventilateur de refroidissement auxiliaire. Commande 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 ""
-"Activer cette option si lâimprimante est Ă©quipĂ©e d'un ventilateur de "
-"refroidissement auxiliaire. Commande 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"
+"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 ""
-"Démarrer le ventilateur plus tÎt de ce nombre de secondes par rapport au "
-"démarrage cible (vous pouvez utiliser des fractions de secondes). Cela "
-"suppose une accélération infinie pour cette estimation de durée et ne prend "
-"en compte que les mouvements G1 et G0 (lâajustement arc nâest pas pris en "
-"charge).\n"
-"Cela ne déplacera pas les commandes de ventilateur des G-codes personnalisés "
-"(ils agissent comme une sorte de \"barriĂšre\").\n"
-"Cela ne déplacera pas les commandes de ventilateur dans le G-code de "
-"dĂ©marrage si seul le âG-code de dĂ©marrage personnalisĂ©â est activĂ©.\n"
+"DĂ©marrer le ventilateur plus tĂŽt de ce nombre de secondes par rapport au dĂ©marrage cible (vous pouvez utiliser des fractions de secondes). Cela suppose une accĂ©lĂ©ration infinie pour cette estimation de durĂ©e et ne prend en compte que les mouvements G1 et G0 (lâajustement arc nâest pas pris en charge).\n"
+"Cela ne déplacera pas les commandes de ventilateur des G-codes personnalisés (ils agissent comme une sorte de \"barriÚre\").\n"
+"Cela ne dĂ©placera pas les commandes de ventilateur dans le G-code de dĂ©marrage si seul le âG-code de dĂ©marrage personnalisĂ©â est activĂ©.\n"
"Utiliser 0 pour désactiver."
msgid "Only overhangs"
@@ -12043,18 +10008,12 @@ msgid "Fan kick-start time"
msgstr "Durée de démarrage du ventilateur"
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 ""
-"Ămettre une commande de vitesse maximale du ventilateur pendant ce nombre de "
-"secondes avant de réduire à la vitesse cible pour démarrer le ventilateur de "
-"refroidissement.\n"
-"Ceci est utile pour les ventilateurs oĂč un faible PWM/puissance peut ĂȘtre "
-"insuffisant pour redĂ©marrer le ventilateur aprĂšs un arrĂȘt, ou pour faire "
-"démarrer le ventilateur plus rapidement.\n"
+"Ămettre une commande de vitesse maximale du ventilateur pendant ce nombre de secondes avant de rĂ©duire Ă la vitesse cible pour dĂ©marrer le ventilateur de refroidissement.\n"
+"Ceci est utile pour les ventilateurs oĂč un faible PWM/puissance peut ĂȘtre insuffisant pour redĂ©marrer le ventilateur aprĂšs un arrĂȘt, ou pour faire dĂ©marrer le ventilateur plus rapidement.\n"
"Mettre à 0 pour désactiver."
msgid "Time cost"
@@ -12073,8 +10032,7 @@ 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 du caisson\n"
+"Activez cette option si la machine prend en charge le contrÎle de la température du caisson\n"
"Commande de G-code : M141 S(0-255)"
msgid "Support air filtration"
@@ -12100,105 +10058,57 @@ msgid "Pellet Modded Printer"
msgstr "Imprimante Ă pellets"
msgid "Enable this option if your printer uses pellets instead of filaments"
-msgstr ""
-"Activez cette option si votre imprimante utilise des pellets au lieu de "
-"filaments."
+msgstr "Activez cette option si votre imprimante utilise des pellets au lieu de filaments."
msgid "Support multi bed types"
msgstr "Prise en charge de plusieurs types de plateaux"
msgid "Enable this option if you want to use multiple bed types"
-msgstr ""
-"Activez cette option si vous souhaitez utiliser plusieurs types de plateaux."
+msgstr "Activez cette option si vous souhaitez utiliser plusieurs types de plateaux."
msgid "Label objects"
msgstr "Label Objects"
-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 ""
-"Permet dâajouter des commentaires dans le G-code sur les mouvements "
-"dâimpression de lâobjet auquel ils appartiennent, ce qui est utile pour le "
-"plug-in Octoprint CancelObject. Ce paramĂštre nâest PAS compatible avec la "
-"configuration multi-matériaux avec un seul extrudeur et Essuyer dans "
-"lâobjet / Essuyer dans le remplissage."
+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 "Permet dâajouter des commentaires dans le G-code sur les mouvements dâimpression de lâobjet auquel ils appartiennent, ce qui est utile pour le plug-in Octoprint CancelObject. Ce paramĂštre nâest PAS compatible avec la configuration multi-matĂ©riaux avec un seul extrudeur et Essuyer dans lâobjet / Essuyer dans le remplissage."
msgid "Exclude objects"
msgstr "Exclure des objets"
msgid "Enable this option to add EXCLUDE OBJECT command in g-code"
-msgstr ""
-"Activer cette option pour ajouter la commande EXCLUDE OBJECT dans le G-code"
+msgstr "Activer cette option pour ajouter la commande EXCLUDE OBJECT dans le G-code"
msgid "Verbose G-code"
msgstr "G-code commenté"
-msgid ""
-"Enable this to get a commented G-code file, with each line explained by a "
-"descriptive text. If you print from SD card, the additional weight of the "
-"file could make your firmware slow down."
-msgstr ""
-"Activez cette option pour obtenir un fichier G-code commenté, chaque ligne "
-"Ă©tant expliquĂ©e par un texte descriptif. Si vous imprimez Ă partir dâune "
-"carte SD, le poids supplémentaire du fichier pourrait ralentir le firmware."
+msgid "Enable this to get a commented G-code file, with each line explained by a descriptive text. If you print from SD card, the additional weight of the file could make your firmware slow down."
+msgstr "Activez cette option pour obtenir un fichier G-code commentĂ©, chaque ligne Ă©tant expliquĂ©e par un texte descriptif. Si vous imprimez Ă partir dâune carte SD, le poids supplĂ©mentaire du fichier pourrait ralentir le firmware."
msgid "Infill combination"
msgstr "Combinaison de remplissage"
-msgid ""
-"Automatically Combine sparse infill of several layers to print together to "
-"reduce time. Wall is still printed with original layer height."
-msgstr ""
-"Combinez automatiquement le remplissage de plusieurs couches pour imprimer "
-"ensemble afin de réduire le temps. La paroi est toujours imprimée avec la "
-"hauteur de couche d'origine."
+msgid "Automatically Combine sparse infill of several layers to print together to reduce time. Wall is still printed with original layer height."
+msgstr "Combinez automatiquement le remplissage de plusieurs couches pour imprimer ensemble afin de réduire le temps. La paroi est toujours imprimée avec la hauteur de couche d'origine."
msgid "Filament to print internal sparse infill."
msgstr "Filament pour imprimer un remplissage interne."
-msgid ""
-"Line width of internal sparse infill. If expressed as a %, it will be "
-"computed over the nozzle diameter."
-msgstr ""
-"Largeur de ligne du remplissage interne. Si elle est exprimée en %, elle "
-"sera calculée sur le diamÚtre de la buse."
+msgid "Line width of internal sparse infill. If expressed as a %, it will be computed over the nozzle diameter."
+msgstr "Largeur de ligne du remplissage interne. Si elle est exprimée en %, elle sera calculée sur le diamÚtre de la buse."
msgid "Infill/Wall overlap"
msgstr "Chevauchement de remplissage/paroi"
#, 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 ""
-"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 "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. 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 "
-"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 "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 du remplissage."
msgid "Speed of internal sparse infill"
msgstr "Vitesse de remplissage interne"
@@ -12206,48 +10116,26 @@ msgstr "Vitesse de remplissage interne"
msgid "Interface shells"
msgstr "Coque des interfaces"
-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 ""
-"Forcer la génération de coques solides entre matériaux/volumes adjacents. "
-"Utile pour les impressions multi-extrudeuses avec des matériaux translucides "
-"ou un matériau de support soluble"
+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 "Forcer la génération de coques solides entre matériaux/volumes adjacents. Utile pour les impressions multi-extrudeuses avec des matériaux translucides ou un matériau de support soluble"
msgid "Maximum width of a segmented region"
msgstr "Largeur maximale dâune rĂ©gion segmentĂ©e"
msgid "Maximum width of a segmented region. Zero disables this feature."
-msgstr ""
-"Largeur maximale dâune rĂ©gion segmentĂ©e. ZĂ©ro dĂ©sactive cette fonction."
+msgstr "Largeur maximale dâune rĂ©gion segmentĂ©e. ZĂ©ro dĂ©sactive cette fonction."
msgid "Interlocking depth of a segmented region"
msgstr "Profondeur dâemboĂźtement dâune rĂ©gion segmentĂ©e"
-msgid ""
-"Interlocking depth of a segmented region. It will be ignored if "
-"\"mmu_segmented_region_max_width\" is zero or if "
-"\"mmu_segmented_region_interlocking_depth\"is bigger then "
-"\"mmu_segmented_region_max_width\". Zero disables this feature."
-msgstr ""
-"Profondeur dâimbrication dâune rĂ©gion segmentĂ©e. Elle sera ignorĂ©e si "
-"« mmu_segmented_region_max_width » est égal à zéro ou si "
-"« mmu_segmented_region_interlocking_depth » est supérieur à "
-"« mmu_segmented_region_max_width ». La valeur zéro désactive cette "
-"fonctionnalité."
+msgid "Interlocking depth of a segmented region. It will be ignored if \"mmu_segmented_region_max_width\" is zero or if \"mmu_segmented_region_interlocking_depth\"is bigger then \"mmu_segmented_region_max_width\". Zero disables this feature."
+msgstr "Profondeur dâimbrication dâune rĂ©gion segmentĂ©e. Elle sera ignorĂ©e si « mmu_segmented_region_max_width » est Ă©gal Ă zĂ©ro ou si « mmu_segmented_region_interlocking_depth » est supĂ©rieur à « mmu_segmented_region_max_width ». La valeur zĂ©ro dĂ©sactive cette fonctionnalitĂ©."
msgid "Use beam interlocking"
msgstr "Utiliser lâemboĂźtement des poutres"
-msgid ""
-"Generate interlocking beam structure at the locations where different "
-"filaments touch. This improves the adhesion between filaments, especially "
-"models printed in different materials."
-msgstr ""
-"GĂ©nĂšre une structure de poutres imbriquĂ©es aux endroits oĂč les diffĂ©rents "
-"filaments se touchent. Cela amĂ©liore lâadhĂ©rence entre les filaments, en "
-"particulier pour les modÚles imprimés dans des matériaux différents."
+msgid "Generate interlocking beam structure at the locations where different filaments touch. This improves the adhesion between filaments, especially models printed in different materials."
+msgstr "GĂ©nĂšre une structure de poutres imbriquĂ©es aux endroits oĂč les diffĂ©rents filaments se touchent. Cela amĂ©liore lâadhĂ©rence entre les filaments, en particulier pour les modĂšles imprimĂ©s dans des matĂ©riaux diffĂ©rents."
msgid "Interlocking beam width"
msgstr "Largeur du faisceau dâemboĂźtement"
@@ -12264,45 +10152,26 @@ msgstr "Orientation des poutres de verrouillage."
msgid "Interlocking beam layers"
msgstr "Couches de poutres emboßtées"
-msgid ""
-"The height of the beams of the interlocking structure, measured in number of "
-"layers. Less layers is stronger, but more prone to defects."
-msgstr ""
-"La hauteur des poutres de la structure dâemboĂźtement, mesurĂ©e en nombre de "
-"couches. Moins il y a de couches, plus la structure est solide, mais plus "
-"elle est sujette à des défauts."
+msgid "The height of the beams of the interlocking structure, measured in number of layers. Less layers is stronger, but more prone to defects."
+msgstr "La hauteur des poutres de la structure dâemboĂźtement, mesurĂ©e en nombre de couches. Moins il y a de couches, plus la structure est solide, mais plus elle est sujette Ă des dĂ©fauts."
msgid "Interlocking depth"
msgstr "Profondeur dâemboĂźtement"
-msgid ""
-"The distance from the boundary between filaments to generate interlocking "
-"structure, measured in cells. Too few cells will result in poor adhesion."
-msgstr ""
-"La distance de la limite entre les filaments pour générer une structure "
-"imbriquée, mesurée en cellules. Un nombre insuffisant de cellules entraßne "
-"une mauvaise adhérence."
+msgid "The distance from the boundary between filaments to generate interlocking structure, measured in cells. Too few cells will result in poor adhesion."
+msgstr "La distance de la limite entre les filaments pour générer une structure imbriquée, mesurée en cellules. Un nombre insuffisant de cellules entraßne une mauvaise adhérence."
msgid "Interlocking boundary avoidance"
msgstr "Ăvitement des limites de lâimbrication"
-msgid ""
-"The distance from the outside of a model where interlocking structures will "
-"not be generated, measured in cells."
-msgstr ""
-"La distance Ă partir de lâextĂ©rieur dâun modĂšle oĂč les structures imbriquĂ©es "
-"ne seront pas générées, mesurée en cellules."
+msgid "The distance from the outside of a model where interlocking structures will not be generated, measured in cells."
+msgstr "La distance Ă partir de lâextĂ©rieur dâun modĂšle oĂč les structures imbriquĂ©es ne seront pas gĂ©nĂ©rĂ©es, mesurĂ©e en cellules."
msgid "Ironing Type"
msgstr "Type de lissage"
-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 ""
-"Le lissage utilise un petit dĂ©bit pour imprimer Ă nouveau sur la mĂȘme "
-"hauteur de surface pour rendre la surface plane plus lisse. Ce paramĂštre "
-"contrÎle quelle couche est repassée"
+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 "Le lissage utilise un petit dĂ©bit pour imprimer Ă nouveau sur la mĂȘme hauteur de surface pour rendre la surface plane plus lisse. Ce paramĂštre contrĂŽle quelle couche est repassĂ©e"
msgid "No ironing"
msgstr "Pas de lissage"
@@ -12323,15 +10192,10 @@ msgid "The pattern that will be used when ironing"
msgstr "Motif qui sera utilisé lors du lissage"
msgid "Ironing flow"
-msgstr "Flux de lissage"
+msgstr "Débit de lissage"
-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 ""
-"La quantité de matiÚre à extruder lors du lissage. Relatif au débit de la "
-"hauteur de couche normale. Une valeur trop élevée entraßne une surextrusion "
-"en surface"
+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 "La quantité de matiÚre à extruder lors du lissage. Relatif au débit de la hauteur de couche normale. Une valeur trop élevée entraßne une surextrusion en surface"
msgid "Ironing line spacing"
msgstr "Espacement des lignes de lissage"
@@ -12348,27 +10212,17 @@ msgstr "Vitesse d'impression des lignes de lissage"
msgid "Ironing angle"
msgstr "Angle de lissage"
-msgid ""
-"The angle ironing is done at. A negative number disables this function and "
-"uses the default method."
-msgstr ""
-"Angle auquel le lissage se fait. Un nombre négatif désactive cette fonction "
-"et utilise la méthode par défaut."
+msgid "The angle ironing is done at. A negative number disables this function and uses the default method."
+msgstr "Angle auquel le lissage se fait. Un nombre négatif désactive cette fonction et utilise la méthode par défaut."
msgid "This gcode part is inserted at every layer change after lift z"
-msgstr ""
-"Cette partie G-code est insérée à chaque changement de couche aprÚs le "
-"levage du Z"
+msgstr "Cette partie G-code est insérée à chaque changement de couche aprÚs le levage du Z"
msgid "Supports silent mode"
msgstr "Prend en charge le mode silencieux"
-msgid ""
-"Whether the machine supports silent mode in which machine use lower "
-"acceleration to print"
-msgstr ""
-"Si la machine prend en charge le mode silencieux dans lequel la machine "
-"utilise une accélération plus faible pour imprimer"
+msgid "Whether the machine supports silent mode in which machine use lower acceleration to print"
+msgstr "Si la machine prend en charge le mode silencieux dans lequel la machine utilise une accélération plus faible pour imprimer"
msgid "Emit limits to G-code"
msgstr "Emission des limites vers le G-code"
@@ -12380,17 +10234,11 @@ 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 ""
-"Si cette option est activée, les limites de la machine seront émises dans un "
-"fichier G-code.\n"
+"Si cette option est activée, les limites de la machine seront émises dans un fichier G-code.\n"
"Cette option sera ignorée si la version du G-code est définie sur 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 ""
-"Ce G-code sera utilisé comme code pour la pause d'impression. Les "
-"utilisateurs peuvent insérer un G-code de pause dans la visionneuse 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 "Ce G-code sera utilisé comme code pour la pause d'impression. Les utilisateurs peuvent insérer un G-code de pause dans la visionneuse de G-code."
msgid "This G-code will be used as a custom code"
msgstr "Ce G-code sera utilisé comme code personnalisé"
@@ -12399,23 +10247,13 @@ msgid "Small area flow compensation (beta)"
msgstr "Compensation du débit des petites zones (beta)"
msgid "Enable flow compensation for small infill areas"
-msgstr ""
-"Activer la compensation des débits pour les petites zones de remplissage"
+msgstr "Activer la compensation des débits pour les petites zones de remplissage"
msgid "Flow Compensation Model"
msgstr "ModÚle de compensation de débit"
-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 ""
-"ModÚle de compensation du débit, utilisé pour ajuster le débit pour les "
-"petites zones de remplissage. Le modĂšle est exprimĂ© sous la forme dâune "
-"paire de valeurs sĂ©parĂ©es par des virgules pour la longueur dâextrusion et "
-"les facteurs de correction du débit, une par ligne, dans le format suivant : "
-"« 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 "ModĂšle de compensation du dĂ©bit, utilisĂ© pour ajuster le dĂ©bit pour les petites zones de remplissage. Le modĂšle est exprimĂ© sous la forme dâune paire de valeurs sĂ©parĂ©es par des virgules pour la longueur dâextrusion et les facteurs de correction du dĂ©bit, une par ligne, dans le format suivant : « 1.234,5.678 »"
msgid "Maximum speed X"
msgstr "Vitesse maximale X"
@@ -12517,87 +10355,46 @@ msgid "Maximum acceleration for travel"
msgstr "Accélération maximale pour le déplacement"
msgid "Maximum acceleration for travel (M204 T), it only applies to Marlin 2"
-msgstr ""
-"AccĂ©lĂ©ration maximale de dĂ©placement (M204 T), cela ne sâapplique quâĂ "
-"Marlin 2"
+msgstr "AccĂ©lĂ©ration maximale de dĂ©placement (M204 T), cela ne sâapplique quâĂ 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 ""
-"La vitesse du ventilateur de refroidissement des piĂšces peut ĂȘtre augmentĂ©e "
-"lorsque le refroidissement automatique est activé. Il s'agit de la "
-"limitation de vitesse maximale du ventilateur de refroidissement partiel"
+msgid "Part cooling fan speed may be increased when auto cooling is enabled. This is the maximum speed limitation of part cooling fan"
+msgstr "La vitesse du ventilateur de refroidissement des piĂšces peut ĂȘtre augmentĂ©e lorsque le refroidissement automatique est activĂ©. Il s'agit de la limitation de vitesse maximale du ventilateur de refroidissement partiel"
msgid "Max"
msgstr "Maximum"
-msgid ""
-"The largest printable layer height for extruder. Used tp limits the maximum "
-"layer hight when enable adaptive layer height"
-msgstr ""
-"La plus grande hauteur de couche imprimable pour l'extrudeur. Utilisé tp "
-"limite la hauteur de couche maximale lorsque la hauteur de couche adaptative "
-"est activée"
+msgid "The largest printable layer height for extruder. Used tp limits the maximum layer hight when enable adaptive layer height"
+msgstr "La plus grande hauteur de couche imprimable pour l'extrudeur. Utilisé tp limite la hauteur de couche maximale lorsque la hauteur de couche adaptative est activée"
msgid "Extrusion rate smoothing"
msgstr "Lissage du taux dâextrusion"
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 ""
-"Ce paramĂštre attĂ©nue les changements soudains du taux dâextrusion qui se "
-"produisent lorsque lâimprimante passe dâune impression Ă haut dĂ©bit (vitesse "
-"élevée / largeur de ligne plus grande) à une extrusion à débit plus faible "
-"(vitesse plus faible / largeur de ligne plus petite) et vice versa.\n"
+"Ce paramĂštre attĂ©nue les changements soudains du taux dâextrusion qui se produisent lorsque lâimprimante passe dâune impression Ă haut dĂ©bit (vitesse Ă©levĂ©e / largeur de ligne plus grande) Ă une extrusion Ă dĂ©bit plus faible (vitesse plus faible / largeur de ligne plus petite) et vice versa.\n"
"\n"
-"Il définit le taux maximum auquel le débit volumétrique extrudé en mm3/sec "
-"peut varier dans le temps. Des valeurs plus élevées signifient que des "
-"changements du taux dâextrusion plus Ă©levĂ©s sont autorisĂ©s, ce qui entraĂźne "
-"des transitions de vitesse plus rapides.\n"
+"Il dĂ©finit le taux maximum auquel le dĂ©bit volumĂ©trique extrudĂ© en mm3/sec peut varier dans le temps. Des valeurs plus Ă©levĂ©es signifient que des changements du taux dâextrusion plus Ă©levĂ©s sont autorisĂ©s, ce qui entraĂźne des transitions de vitesse plus rapides.\n"
"\n"
"Une valeur de 0 désactive la fonctionnalité.\n"
"\n"
-"Pour une imprimante direct drive à grande vitesse et à haut débit (comme "
-"BambuLab ou Voron), cette valeur nâest gĂ©nĂ©ralement pas nĂ©cessaire. "
-"Cependant, cela peut apporter un avantage marginal dans certains cas oĂč les "
-"vitesses varient considérablement. Par exemple, en cas de ralentissements "
-"agressifs dus Ă des surplombs. Dans ces cas, une valeur Ă©levĂ©e dâenviron "
-"300-350 mm3/s2 est recommandée car elle permet un lissage juste suffisant "
-"pour aider lâaugmentation de la pression pour obtenir une transition de "
-"débit plus douce.\n"
+"Pour une imprimante direct drive Ă grande vitesse et Ă haut dĂ©bit (comme BambuLab ou Voron), cette valeur nâest gĂ©nĂ©ralement pas nĂ©cessaire. Cependant, cela peut apporter un avantage marginal dans certains cas oĂč les vitesses varient considĂ©rablement. Par exemple, en cas de ralentissements agressifs dus Ă des surplombs. Dans ces cas, une valeur Ă©levĂ©e dâenviron 300-350 mm3/s2 est recommandĂ©e car elle permet un lissage juste suffisant pour aider lâaugmentation de la pression pour obtenir une transition de dĂ©bit plus douce.\n"
"\n"
-"Pour les imprimantes plus lentes sans fonction de pressure advance, la "
-"valeur doit ĂȘtre rĂ©glĂ©e beaucoup plus bas. Une valeur de 10-15 mm3/s2 est un "
-"bon point de départ en direct drive et de 5-10 mm3/s2 en Bowden.\n"
+"Pour les imprimantes plus lentes sans fonction de pressure advance, la valeur doit ĂȘtre rĂ©glĂ©e beaucoup plus bas. Une valeur de 10-15 mm3/s2 est un bon point de dĂ©part en direct drive et de 5-10 mm3/s2 en Bowden.\n"
"\n"
-"Cette fonctionnalité est connue sous le nom de Pressure Equalizer dans Prusa "
-"Slicer.\n"
+"Cette fonctionnalité est connue sous le nom de Pressure Equalizer dans Prusa Slicer.\n"
"\n"
"Remarque : ce paramÚtre désactive la fonction Arc."
@@ -12608,22 +10405,15 @@ msgid "Smoothing segment length"
msgstr "Longueur du segment de lissage"
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 ""
-"Une valeur infĂ©rieure entraĂźne des transitions du taux dâextrusion plus "
-"douces. Cependant, cela entraĂźne un fichier G-code beaucoup plus volumineux "
-"et davantage dâinstructions Ă traiter par lâimprimante.\n"
+"Une valeur infĂ©rieure entraĂźne des transitions du taux dâextrusion plus douces. Cependant, cela entraĂźne un fichier G-code beaucoup plus volumineux et davantage dâinstructions Ă traiter par lâimprimante.\n"
"\n"
-"La valeur 3 par défaut fonctionne bien dans la plupart des cas. Si votre "
-"imprimante a du mal à suivre, augmentez cette valeur pour réduire le nombre "
-"de réglages effectués\n"
+"La valeur 3 par défaut fonctionne bien dans la plupart des cas. Si votre imprimante a du mal à suivre, augmentez cette valeur pour réduire le nombre de réglages effectués\n"
"\n"
"Valeurs autorisées : 1-5"
@@ -12631,40 +10421,23 @@ msgid "Minimum speed for part cooling fan"
msgstr "Vitesse minimale du ventilateur de refroidissement des piĂšces"
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 ""
-"Vitesse du ventilateur de refroidissement auxiliaire. Le ventilateur "
-"auxiliaire fonctionnera Ă cette vitesse pendant l'impression, Ă l'exception "
-"des premiÚres couches définies sans refroidissement.\n"
-"Veuillez activer auxiliaire_fan dans les paramĂštres de lâimprimante pour "
-"utiliser cette fonctionnalité. Commande G-code : M106 P2 S(0-255)"
+"Vitesse du ventilateur de refroidissement auxiliaire. Le ventilateur auxiliaire fonctionnera à cette vitesse pendant l'impression, à l'exception des premiÚres couches définies sans refroidissement.\n"
+"Veuillez activer auxiliaire_fan dans les paramĂštres de lâimprimante pour utiliser cette fonctionnalitĂ©. Commande G-code : M106 P2 S(0-255)"
msgid "Min"
msgstr "Minimum"
-msgid ""
-"The lowest printable layer height for extruder. Used tp limits the minimum "
-"layer hight when enable adaptive layer height"
-msgstr ""
-"La hauteur de couche imprimable la plus basse pour l'extrudeur. Utilisé tp "
-"limite la hauteur de couche minimale lorsque la hauteur de couche adaptative "
-"est activée"
+msgid "The lowest printable layer height for extruder. Used tp limits the minimum layer hight when enable adaptive layer height"
+msgstr "La hauteur de couche imprimable la plus basse pour l'extrudeur. Utilisé tp limite la hauteur de couche minimale lorsque la hauteur de couche adaptative est activée"
msgid "Min print speed"
msgstr "Vitesse d'impression minimale"
-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 ""
-"Vitesse dâimpression minimale Ă laquelle lâimprimante ralentira pour tenter "
-"de maintenir le temps de couche minimal ci-dessus, lorsque la fonction de "
-"ralentissement pour un meilleur refroidissement de la couche est activée."
+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 "Vitesse dâimpression minimale Ă laquelle lâimprimante ralentira pour tenter de maintenir le temps de couche minimal ci-dessus, lorsque la fonction de ralentissement pour un meilleur refroidissement de la couche est activĂ©e."
msgid "Diameter of nozzle"
msgstr "DiamĂštre de la buse"
@@ -12672,120 +10445,71 @@ msgstr "DiamĂštre de la buse"
msgid "Configuration notes"
msgstr "Notes de la configuration"
-msgid ""
-"You can put here your personal notes. This text will be added to the G-code "
-"header comments."
-msgstr ""
-"Vous pouvez mettre ici vos notes personnelles. Ce texte sera ajouté aux "
-"commentaires dâen-tĂȘte du G-code."
+msgid "You can put here your personal notes. This text will be added to the G-code header comments."
+msgstr "Vous pouvez mettre ici vos notes personnelles. Ce texte sera ajoutĂ© aux commentaires dâen-tĂȘte du G-code."
msgid "Host Type"
msgstr "Type d'hĂŽte"
-msgid ""
-"Orca Slicer can upload G-code files to a printer host. This field must "
-"contain the kind of the host."
-msgstr ""
-"Orca Slicer peut téléverser des fichiers G-code sur une imprimante hÎte. Ce "
-"champ doit contenir le type d'hĂŽte."
+msgid "Orca Slicer can upload G-code files to a printer host. This field must contain the kind of the host."
+msgstr "Orca Slicer peut téléverser des fichiers G-code sur une imprimante hÎte. Ce champ doit contenir le type d'hÎte."
msgid "Nozzle volume"
msgstr "Volume de la buse"
msgid "Volume of nozzle between the cutter and the end of nozzle"
-msgstr ""
-"Volume de la buse entre le coupeur de filament et l'extrémité de la buse"
+msgstr "Volume de la buse entre le coupeur de filament et l'extrémité de la buse"
msgid "Cooling tube position"
msgstr "Position du tube de refroidissement"
msgid "Distance of the center-point of the cooling tube from the extruder tip."
-msgstr ""
-"Distance entre le point central du tube de refroidissement et la pointe de "
-"lâextrudeur."
+msgstr "Distance entre le point central du tube de refroidissement et la pointe de lâextrudeur."
msgid "Cooling tube length"
msgstr "Longueur du tube de refroidissement"
msgid "Length of the cooling tube to limit space for cooling moves inside it."
-msgstr ""
-"Longueur du tube de refroidissement pour limiter lâespace Ă lâintĂ©rieur du "
-"tube de refroidissement."
+msgstr "Longueur du tube de refroidissement pour limiter lâespace Ă lâintĂ©rieur du tube de refroidissement."
msgid "High extruder current on filament swap"
msgstr "Courant de lâextrudeur Ă©levĂ© lors du changement de filament"
-msgid ""
-"It may be beneficial to increase the extruder motor current during the "
-"filament exchange sequence to allow for rapid ramming feed rates and to "
-"overcome resistance when loading a filament with an ugly shaped tip."
-msgstr ""
-"Il peut ĂȘtre avantageux dâaugmenter le courant du moteur de lâextrudeur "
-"pendant la sĂ©quence dâĂ©change de filament pour permettre des vitesses "
-"dâalimentation rapides et pour surmonter la rĂ©sistance lors du chargement "
-"dâun filament."
+msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip."
+msgstr "Il peut ĂȘtre avantageux dâaugmenter le courant du moteur de lâextrudeur pendant la sĂ©quence dâĂ©change de filament pour permettre des vitesses dâalimentation rapides et pour surmonter la rĂ©sistance lors du chargement dâun filament."
msgid "Filament parking position"
msgstr "Position de stationnement du filament"
-msgid ""
-"Distance of the extruder tip from the position where the filament is parked "
-"when unloaded. This should match the value in printer firmware."
-msgstr ""
-"Distance entre la pointe de lâextrudeur et la position oĂč le filament est "
-"parqué une fois déchargé. Cela doit correspondre à la valeur du firmware de "
-"lâimprimante."
+msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware."
+msgstr "Distance entre la pointe de lâextrudeur et la position oĂč le filament est parquĂ© une fois dĂ©chargĂ©. Cela doit correspondre Ă la valeur du firmware de lâimprimante."
msgid "Extra loading distance"
msgstr "Distance de chargement supplémentaire"
-msgid ""
-"When set to zero, the distance the filament is moved from parking position "
-"during load is exactly the same as it was moved back during unload. When "
-"positive, it is loaded further, if negative, the loading move is shorter "
-"than unloading."
-msgstr ""
-"Lorsquâil est rĂ©glĂ© sur zĂ©ro, la distance Ă laquelle le filament est dĂ©placĂ© "
-"depuis la position de stationnement pendant le chargement est exactement la "
-"mĂȘme que celle Ă laquelle il a Ă©tĂ© dĂ©placĂ© pendant le dĂ©chargement. "
-"Lorsquâil est positif, il est chargĂ© davantage, sâil est nĂ©gatif, le "
-"mouvement de chargement est plus court que le déchargement."
+msgid "When set to zero, the distance the filament is moved from parking position during load is exactly the same as it was moved back during unload. When positive, it is loaded further, if negative, the loading move is shorter than unloading."
+msgstr "Lorsquâil est rĂ©glĂ© sur zĂ©ro, la distance Ă laquelle le filament est dĂ©placĂ© depuis la position de stationnement pendant le chargement est exactement la mĂȘme que celle Ă laquelle il a Ă©tĂ© dĂ©placĂ© pendant le dĂ©chargement. Lorsquâil est positif, il est chargĂ© davantage, sâil est nĂ©gatif, le mouvement de chargement est plus court que le dĂ©chargement."
msgid "Start end points"
msgstr "Points de départ et d'arrivée"
msgid "The start and end points which is from cutter area to garbage can."
-msgstr ""
-"Les points de départ et d'arrivée qui se situent entre la zone de coupe et "
-"la goulotte d'évacuation."
+msgstr "Les points de départ et d'arrivée qui se situent entre la zone de coupe et la goulotte d'évacuation."
msgid "Reduce infill retraction"
msgstr "Réduire la rétraction du remplissage"
-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 ""
-"Ne pas effectuer de rétraction lors de déplacement en zone de remplissage "
-"car mĂȘme si lâextrudeur suinte, les coulures ne seraient pas visibles. Cela "
-"peut réduire les rétractions pour les modÚles complexes et économiser du "
-"temps dâimpression, mais ralentit la dĂ©coupe et la gĂ©nĂ©ration du 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 "Ne pas effectuer de rĂ©traction lors de dĂ©placement en zone de remplissage car mĂȘme si lâextrudeur suinte, les coulures ne seraient pas visibles. Cela peut rĂ©duire les rĂ©tractions pour les modĂšles complexes et Ă©conomiser du temps dâimpression, mais ralentit la dĂ©coupe et la gĂ©nĂ©ration du G-code."
-msgid ""
-"This option will drop the temperature of the inactive extruders to prevent "
-"oozing."
-msgstr ""
-"Cette option permet dâabaisser la tempĂ©rature des extrudeurs inactifs afin "
-"dâĂ©viter le suintement."
+msgid "This option will drop the temperature of the inactive extruders to prevent oozing."
+msgstr "Cette option permet dâabaisser la tempĂ©rature des extrudeurs inactifs afin dâĂ©viter le suintement."
msgid "Filename format"
msgstr "Format du nom de fichier"
msgid "User can self-define the project file name when export"
-msgstr ""
-"L'utilisateur peut dĂ©finir lui-mĂȘme le nom du fichier de projet lors de "
-"l'exportation"
+msgstr "L'utilisateur peut dĂ©finir lui-mĂȘme le nom du fichier de projet lors de l'exportation"
msgid "Make overhangs printable"
msgstr "Rendre les surplombs imprimables"
@@ -12796,26 +10520,14 @@ msgstr "Modifier la géométrie pour imprimer les surplombs sans support."
msgid "Make overhangs printable - Maximum angle"
msgstr "Rendre les surplombs imprimables - Angle maximal"
-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 ""
-"Angle maximal des surplombs Ă autoriser aprĂšs avoir rendu imprimables les "
-"surplombs plus raides. Une valeur de 90° ne changera pas du tout le modÚle "
-"et nâautorisera aucun surplomb, tandis que 0 remplacera tous les surplombs "
-"par un matériau conique."
+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 "Angle maximal des surplombs Ă autoriser aprĂšs avoir rendu imprimables les surplombs plus raides. Une valeur de 90° ne changera pas du tout le modĂšle et nâautorisera aucun surplomb, tandis que 0 remplacera tous les surplombs par un matĂ©riau conique."
msgid "Make overhangs printable - Hole area"
msgstr "Rendre les surplombs imprimables - Zone de trous"
-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 ""
-"Aire maximale dâun trou dans la base du modĂšle avant quâil ne soit rempli "
-"par un matériau conique. Une valeur de 0 remplira tous les trous dans la "
-"base du modĂšle."
+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 "Aire maximale dâun trou dans la base du modĂšle avant quâil ne soit rempli par un matĂ©riau conique. Une valeur de 0 remplira tous les trous dans la base du modĂšle."
msgid "mmÂČ"
msgstr "mmÂČ"
@@ -12824,23 +10536,14 @@ msgid "Detect overhang wall"
msgstr "Détecter une paroi en surplomb"
#, 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 ""
-"Détectez le pourcentage de surplomb par rapport à la largeur de la ligne et "
-"utilisez une vitesse différente pour imprimer. Pour un surplomb de 100%% la "
-"vitesse du pont est utilisée."
+msgid "Detect the overhang percentage relative to line width and use different speed to print. For 100%% overhang, bridge speed is used."
+msgstr "Détectez le pourcentage de surplomb par rapport à la largeur de la ligne et utilisez une vitesse différente pour imprimer. Pour un surplomb de 100%% la vitesse du pont est utilisée."
msgid "Filament to print walls"
msgstr "Filament pour imprimer les parois"
-msgid ""
-"Line width of inner wall. If expressed as a %, it will be computed over the "
-"nozzle diameter."
-msgstr ""
-"Largeur de ligne de la paroi intérieure. Si elle est exprimée en %, elle "
-"sera calculée sur le diamÚtre de la buse."
+msgid "Line width of inner wall. If expressed as a %, it will be computed over the nozzle diameter."
+msgstr "Largeur de ligne de la paroi intérieure. Si elle est exprimée en %, elle sera calculée sur le diamÚtre de la buse."
msgid "Speed of inner wall"
msgstr "Vitesse de la paroi intérieure"
@@ -12852,38 +10555,20 @@ msgid "Alternate extra wall"
msgstr "Paroi supplémentaire alternée"
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 ""
-"Ce paramÚtre ajoute une paroi supplémentaire à chaque couche. De cette "
-"maniÚre, le remplissage est coincé verticalement entre les parois, ce qui "
-"permet dâobtenir des impressions plus solides. \n"
+"Ce paramĂštre ajoute une paroi supplĂ©mentaire Ă chaque couche. De cette maniĂšre, le remplissage est coincĂ© verticalement entre les parois, ce qui permet dâobtenir des impressions plus solides. \n"
"\n"
-"Lorsque cette option est activĂ©e, lâoption « assurer lâĂ©paisseur verticale "
-"de la coque » doit ĂȘtre dĂ©sactivĂ©e. \n"
+"Lorsque cette option est activĂ©e, lâoption « assurer lâĂ©paisseur verticale de la coque » doit ĂȘtre dĂ©sactivĂ©e. \n"
"\n"
-"Il nâest pas recommandĂ© dâutiliser le remplissage par Ă©clairs avec cette "
-"option, car il y a peu de remplissage pour ancrer les périmÚtres "
-"supplémentaires."
+"Il nâest pas recommandĂ© dâutiliser le remplissage par Ă©clairs avec cette option, car il y a peu de remplissage pour ancrer les pĂ©rimĂštres supplĂ©mentaires."
-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 ""
-"Si vous souhaitez traiter le G-code de sortie via des scripts personnalisés, "
-"indiquez simplement leurs chemins absolus ici. Séparez plusieurs scripts par "
-"un point-virgule. Les scripts recevront le chemin absolu vers le fichier G-"
-"code comme premier argument, et ils peuvent accéder aux paramÚtres de "
-"configuration Orca Slicer en lisant les variables dâenvironnement."
+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 "Si vous souhaitez traiter le G-code de sortie via des scripts personnalisĂ©s, indiquez simplement leurs chemins absolus ici. SĂ©parez plusieurs scripts par un point-virgule. Les scripts recevront le chemin absolu vers le fichier G-code comme premier argument, et ils peuvent accĂ©der aux paramĂštres de configuration Orca Slicer en lisant les variables dâenvironnement."
msgid "Printer type"
msgstr "Type dâimprimante"
@@ -12922,48 +10607,28 @@ msgid "Initial layer expansion"
msgstr "Extension de la couche initiale"
msgid "Expand the first raft or support layer to improve bed plate adhesion"
-msgstr ""
-"Développez le premier radeau ou couche de support pour améliorer l'adhérence "
-"du plateau"
+msgstr "Développez le premier radeau ou couche de support pour améliorer l'adhérence du plateau"
msgid "Raft layers"
msgstr "Couches du radeau"
-msgid ""
-"Object will be raised by this number of support layers. Use this function to "
-"avoid wrapping when print ABS"
-msgstr ""
-"L'objet sera élevé par ce nombre de couches de support. Utilisez cette "
-"fonction pour éviter l'emballage lors de l'impression ABS"
+msgid "Object will be raised by this number of support layers. Use this function to avoid wrapping when print ABS"
+msgstr "L'objet sera élevé par ce nombre de couches de support. Utilisez cette fonction pour éviter l'emballage lors de l'impression 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 ""
-"Le chemin du G-code est généré aprÚs avoir simplifié le contour du modÚle "
-"pour éviter trop de points et de lignes G-code dans le fichier G-code. Une "
-"valeur plus petite signifie une résolution plus élevée et plus de temps pour "
-"découper"
+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 "Le chemin du G-code est généré aprÚs avoir simplifié le contour du modÚle pour éviter trop de points et de lignes G-code dans le fichier G-code. Une valeur plus petite signifie une résolution plus élevée et plus de temps pour découper"
msgid "Travel distance threshold"
msgstr "Seuil de distance parcourue"
-msgid ""
-"Only trigger retraction when the travel distance is longer than this "
-"threshold"
-msgstr ""
-"Ne déclencher la rétraction que lorsque la distance parcourue est supérieure "
-"Ă ce seuil"
+msgid "Only trigger retraction when the travel distance is longer than this threshold"
+msgstr "Ne déclencher la rétraction que lorsque la distance parcourue est supérieure à ce seuil"
msgid "Retract amount before wipe"
msgstr "Quantité de rétraction avant essuyage"
-msgid ""
-"The length of fast retraction before wipe, relative to retraction length"
-msgstr ""
-"La longueur de la rĂ©traction rapide avant lâessuyage, par rapport Ă la "
-"longueur de la rétraction"
+msgid "The length of fast retraction before wipe, relative to retraction length"
+msgstr "La longueur de la rĂ©traction rapide avant lâessuyage, par rapport Ă la longueur de la rĂ©traction"
msgid "Retract when change layer"
msgstr "Rétracter lors de changement de couche"
@@ -12974,71 +10639,38 @@ msgstr "Cela force une rétraction sur les changements de couche."
msgid "Retraction Length"
msgstr "Longueur de Rétraction"
-msgid ""
-"Some amount of material in extruder is pulled back to avoid ooze during long "
-"travel. Set zero to disable retraction"
-msgstr ""
-"Une certaine quantité de matériau dans l'extrudeur est retirée pour éviter "
-"le suintement pendant les longs trajets. Définir zéro pour désactiver la "
-"rétraction"
+msgid "Some amount of material in extruder is pulled back to avoid ooze during long travel. Set zero to disable retraction"
+msgstr "Une certaine quantité de matériau dans l'extrudeur est retirée pour éviter le suintement pendant les longs trajets. Définir zéro pour désactiver la rétraction"
msgid "Long retraction when cut(experimental)"
msgstr "Longue rétraction lors de la coupe (expérimental)"
-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 ""
-"Fonction expérimentale : rétracter et couper le filament à une plus grande "
-"distance pendant les changements pour minimiser la purge. Bien que cela "
-"réduise considérablement la purge, cela peut également augmenter le risque "
-"de bouchage des buses ou dâautres problĂšmes dâimpression."
+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 "Fonction expĂ©rimentale : rĂ©tracter et couper le filament Ă une plus grande distance pendant les changements pour minimiser la purge. Bien que cela rĂ©duise considĂ©rablement la purge, cela peut Ă©galement augmenter le risque de bouchage des buses ou dâautres problĂšmes dâimpression."
msgid "Retraction distance when cut"
msgstr "Distance de rétraction lors de la coupe"
-msgid ""
-"Experimental feature.Retraction length before cutting off during filament "
-"change"
-msgstr ""
-"Fonction expérimentale : longueur de rétraction avant la coupure lors du "
-"changement de filament."
+msgid "Experimental feature.Retraction length before cutting off during filament change"
+msgstr "Fonction expérimentale : longueur de rétraction avant la coupure lors du changement de filament."
msgid "Z hop when retract"
msgstr "Décalage du Z lors de la rétraction"
-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 ""
-"Chaque fois que la rétraction est effectuée, la buse est légÚrement soulevée "
-"pour crĂ©er un espace entre la buse et l'impression. Il empĂȘche la buse de "
-"toucher l'impression lors du déplacement. L'utilisation d'une ligne en "
-"spirale pour soulever z peut empĂȘcher l'enfilage"
+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 "Chaque fois que la rĂ©traction est effectuĂ©e, la buse est lĂ©gĂšrement soulevĂ©e pour crĂ©er un espace entre la buse et l'impression. Il empĂȘche la buse de toucher l'impression lors du dĂ©placement. L'utilisation d'une ligne en spirale pour soulever z peut empĂȘcher l'enfilage"
msgid "Z hop lower boundary"
msgstr "Limite inférieure du saut de Z"
-msgid ""
-"Z hop will only come into effect when Z is above this value and is below the "
-"parameter: \"Z hop upper boundary\""
-msgstr ""
-"Le saut de Z ne sera effectif que si Z est supérieur à cette valeur et "
-"inférieur au paramÚtre : « Limite supérieure du saut de Z »"
+msgid "Z hop will only come into effect when Z is above this value and is below the parameter: \"Z hop upper boundary\""
+msgstr "Le saut de Z ne sera effectif que si Z est supérieur à cette valeur et inférieur au paramÚtre : « Limite supérieure du saut de Z »"
msgid "Z hop upper boundary"
msgstr "Limite supérieure du saut de 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 ""
-"Si cette valeur est positive, le saut de Z ne sera effectif que si Z est "
-"supĂ©rieur au paramĂštre : « Limite infĂ©rieure de Z hop » et quâil est "
-"inférieur à cette valeur."
+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 "Si cette valeur est positive, le saut de Z ne sera effectif que si Z est supĂ©rieur au paramĂštre : « Limite infĂ©rieure de Z hop » et quâil est infĂ©rieur Ă cette valeur."
msgid "Z hop type"
msgstr "Type de décalage en Z"
@@ -13052,42 +10684,26 @@ msgstr "Spirale"
msgid "Traveling angle"
msgstr "Angle de déplacement"
-msgid ""
-"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results "
-"in Normal Lift"
-msgstr ""
-"Angle de déplacement pour les sauts en Z en pente et en spirale. En le "
-"réglant sur 90°, on obtient une levée normale."
+msgid "Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results in Normal Lift"
+msgstr "Angle de déplacement pour les sauts en Z en pente et en spirale. En le réglant sur 90°, on obtient une levée normale."
msgid "Only lift Z above"
msgstr "Décalage en Z au-dessus uniquement"
-msgid ""
-"If you set this to a positive value, Z lift will only take place above the "
-"specified absolute Z."
-msgstr ""
-"Si dĂ©finie sur une valeur positive, lâĂ©lĂ©vation Z nâaura lieu quâau-dessus "
-"du Z absolu spécifié."
+msgid "If you set this to a positive value, Z lift will only take place above the specified absolute Z."
+msgstr "Si dĂ©finie sur une valeur positive, lâĂ©lĂ©vation Z nâaura lieu quâau-dessus du Z absolu spĂ©cifiĂ©."
msgid "Only lift Z below"
msgstr "Décalage en Z en dessous uniquement"
-msgid ""
-"If you set this to a positive value, Z lift will only take place below the "
-"specified absolute Z."
-msgstr ""
-"Si dĂ©finie sur une valeur positive, lâĂ©lĂ©vation Z nâaura lieu quâen dessous "
-"du Z absolu spécifié."
+msgid "If you set this to a positive value, Z lift will only take place below the specified absolute Z."
+msgstr "Si dĂ©finie sur une valeur positive, lâĂ©lĂ©vation Z nâaura lieu quâen dessous du Z absolu spĂ©cifiĂ©."
msgid "On surfaces"
msgstr "Sur les surfaces"
-msgid ""
-"Enforce Z Hop behavior. This setting is impacted by the above settings (Only "
-"lift Z above/below)."
-msgstr ""
-"Appliquer le comportement du décalage en Z. Ce paramÚtre est impacté par les "
-"paramÚtres ci-dessus (décalage en Z au-dessus/en dessous uniquement)."
+msgid "Enforce Z Hop behavior. This setting is impacted by the above settings (Only lift Z above/below)."
+msgstr "Appliquer le comportement du décalage en Z. Ce paramÚtre est impacté par les paramÚtres ci-dessus (décalage en Z au-dessus/en dessous uniquement)."
msgid "All Surfaces"
msgstr "Toutes les surfaces"
@@ -13104,20 +10720,11 @@ msgstr "Supérieures et Inférieures"
msgid "Extra length on restart"
msgstr "Longueur supplémentaire"
-msgid ""
-"When the retraction is compensated after the travel move, the extruder will "
-"push this additional amount of filament. This setting is rarely needed."
-msgstr ""
-"Lorsque la rétraction est compensée aprÚs le mouvement de déplacement, "
-"lâextrudeuse poussera cette quantitĂ© supplĂ©mentaire de filament. Ce "
-"paramÚtre est rarement nécessaire."
+msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
+msgstr "Lorsque la rĂ©traction est compensĂ©e aprĂšs le mouvement de dĂ©placement, lâextrudeuse poussera cette quantitĂ© supplĂ©mentaire de filament. Ce paramĂštre est rarement nĂ©cessaire."
-msgid ""
-"When the retraction is compensated after changing tool, the extruder will "
-"push this additional amount of filament."
-msgstr ""
-"Lorsque la rĂ©traction est compensĂ©e aprĂšs le changement dâoutil, lâextrudeur "
-"poussera cette quantité supplémentaire de filament."
+msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
+msgstr "Lorsque la rĂ©traction est compensĂ©e aprĂšs le changement dâoutil, lâextrudeur poussera cette quantitĂ© supplĂ©mentaire de filament."
msgid "Retraction Speed"
msgstr "Vitesse de Rétraction"
@@ -13128,23 +10735,14 @@ msgstr "Vitesse de rétraction"
msgid "Deretraction Speed"
msgstr "Vitesse de réinsertion"
-msgid ""
-"Speed for reloading filament into extruder. Zero means same speed with "
-"retraction"
-msgstr ""
-"Vitesse de rechargement du filament dans l'extrudeur. ZĂ©ro signifie mĂȘme "
-"vitesse avec rétraction"
+msgid "Speed for reloading filament into extruder. Zero means same speed with retraction"
+msgstr "Vitesse de rechargement du filament dans l'extrudeur. ZĂ©ro signifie mĂȘme vitesse avec rĂ©traction"
msgid "Use firmware retraction"
msgstr "Utiliser la rétraction 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 ""
-"Ce paramÚtre expérimental utilise les commandes G10 et G11 pour que le "
-"firmware gĂšre la rĂ©traction. Ceci nâest pris en charge que dans une version "
-"de Marlin récente."
+msgid "This experimental setting uses G10 and G11 commands to have the firmware handle the retraction. This is only supported in recent Marlin."
+msgstr "Ce paramĂštre expĂ©rimental utilise les commandes G10 et G11 pour que le firmware gĂšre la rĂ©traction. Ceci nâest pris en charge que dans une version de Marlin rĂ©cente."
msgid "Show auto-calibration marks"
msgstr "Afficher les marques de calibration"
@@ -13152,18 +10750,14 @@ msgstr "Afficher les marques de calibration"
msgid "Disable set remaining print time"
msgstr "DĂ©sactiver le rĂ©glage du temps dâimpression restant"
-msgid ""
-"Disable generating of the M73: Set remaining print time in the final gcode"
-msgstr ""
-"DĂ©sactiver la gĂ©nĂ©ration du M73 : DĂ©finir le temps dâimpression restant dans "
-"le gcode final"
+msgid "Disable generating of the M73: Set remaining print time in the final gcode"
+msgstr "DĂ©sactiver la gĂ©nĂ©ration du M73 : DĂ©finir le temps dâimpression restant dans le gcode final"
msgid "Seam position"
msgstr "Position de la couture"
msgid "The start position to print each part of outer wall"
-msgstr ""
-"La position de départ pour imprimer chaque partie de la paroi extérieure"
+msgstr "La position de départ pour imprimer chaque partie de la paroi extérieure"
msgid "Nearest"
msgstr "La plus proche"
@@ -13180,121 +10774,69 @@ msgstr "Aléatoire"
msgid "Staggered inner seams"
msgstr "Coutures intérieures décalées"
-msgid ""
-"This option causes the inner seams to be shifted backwards based on their "
-"depth, forming a zigzag pattern."
-msgstr ""
-"Cette option entraĂźne le dĂ©calage des coutures intĂ©rieures vers lâarriĂšre en "
-"fonction de leur profondeur, formant un motif en zigzag."
+msgid "This option causes the inner seams to be shifted backwards based on their depth, forming a zigzag pattern."
+msgstr "Cette option entraĂźne le dĂ©calage des coutures intĂ©rieures vers lâarriĂšre en fonction de leur profondeur, formant un motif en zigzag."
msgid "Seam gap"
msgstr "Ăcart de couture"
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 ""
-"Afin de réduire la visibilité de la couture dans une extrusion en boucle "
-"fermĂ©e, la boucle est interrompue et raccourcie dâune valeur spĂ©cifiĂ©e.\n"
-"Cette quantitĂ© peut ĂȘtre spĂ©cifiĂ©e en millimĂštres ou en pourcentage du "
-"diamÚtre actuel de la buse. La valeur par défaut de ce paramÚtre est 10%."
+"Afin de rĂ©duire la visibilitĂ© de la couture dans une extrusion en boucle fermĂ©e, la boucle est interrompue et raccourcie dâune valeur spĂ©cifiĂ©e.\n"
+"Cette quantitĂ© peut ĂȘtre spĂ©cifiĂ©e en millimĂštres ou en pourcentage du diamĂštre actuel de la buse. La valeur par dĂ©faut de ce paramĂštre est 10%."
msgid "Scarf joint seam (beta)"
msgstr "Couture en biseau (beta)"
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
-msgstr ""
-"Utiliser une couture en biseau pour minimiser la visibilité de la couture et "
-"augmenter sa solidité."
+msgstr "Utiliser une couture en biseau pour minimiser la visibilité de la couture et augmenter sa solidité."
msgid "Conditional scarf joint"
msgstr "Couture en biseau conditionnelle"
-msgid ""
-"Apply scarf joints only to smooth perimeters where traditional seams do not "
-"conceal the seams at sharp corners effectively."
-msgstr ""
-"Nâappliquer les couture en biseau que sur les pĂ©rimĂštres lisses, lorsque les "
-"coutures traditionnelles ne permettent pas de dissimuler efficacement les "
-"coutures dans les angles saillants."
+msgid "Apply scarf joints only to smooth perimeters where traditional seams do not conceal the seams at sharp corners effectively."
+msgstr "Nâappliquer les couture en biseau que sur les pĂ©rimĂštres lisses, lorsque les coutures traditionnelles ne permettent pas de dissimuler efficacement les coutures dans les angles saillants."
msgid "Conditional angle threshold"
msgstr "Seuil dâangle conditionnel"
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 ""
-"Cette option dĂ©finit lâangle seuil pour lâapplication dâune couture en "
-"biseau conditionnelle.\n"
-"Si lâangle maximal Ă lâintĂ©rieur de la boucle pĂ©rimĂ©trique dĂ©passe cette "
-"valeur (indiquant lâabsence dâangles vifs), une couture en biseau sera "
-"utilisée. La valeur par défaut est de 155°."
+"Cette option dĂ©finit lâangle seuil pour lâapplication dâune couture en biseau conditionnelle.\n"
+"Si lâangle maximal Ă lâintĂ©rieur de la boucle pĂ©rimĂ©trique dĂ©passe cette valeur (indiquant lâabsence dâangles vifs), une couture en biseau sera utilisĂ©e. La valeur par dĂ©faut est de 155°."
msgid "Conditional overhang threshold"
msgstr "Seuil de dépassement conditionnel"
#, 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 ""
-"Cette option dĂ©termine le seuil de surplomb pour lâapplication des coutures "
-"en écharpe. Si la partie non soutenue du périmÚtre est inférieure à ce "
-"seuil, des coutures en biseau seront appliquées. Le seuil par défaut est "
-"fixé à 40 % de la largeur de la paroi extérieure. Pour des raisons de "
-"performance, le degré de surplomb est estimé."
+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 "Cette option dĂ©termine le seuil de surplomb pour lâapplication des coutures en Ă©charpe. Si la partie non soutenue du pĂ©rimĂštre est infĂ©rieure Ă ce seuil, des coutures en biseau seront appliquĂ©es. Le seuil par dĂ©faut est fixĂ© Ă 40 % de la largeur de la paroi extĂ©rieure. Pour des raisons de performance, le degrĂ© de surplomb est estimĂ©."
msgid "Scarf joint speed"
msgstr "Vitesse de la couture en biseau"
-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 ""
-"Cette option dĂ©finit la vitesse dâimpression des coutures en biseau. Il est "
-"recommandĂ© dâimprimer les coutures en biseau Ă une vitesse lente (moins de "
-"100 mm/s). Il est Ă©galement conseillĂ© dâactiver lâoption « Lissage de la "
-"vitesse dâextrusion » si la vitesse dĂ©finie varie de maniĂšre significative "
-"par rapport à la vitesse des parois extérieures ou intérieures. Si la "
-"vitesse spécifiée ici est supérieure à la vitesse des parois extérieures ou "
-"intĂ©rieures, lâimprimante prendra par dĂ©faut la plus lente des deux "
-"vitesses. Lorsquâelle est spĂ©cifiĂ©e sous forme de pourcentage (par exemple, "
-"80 %), la vitesse est calculée sur la base de la vitesse de la paroi "
-"extérieure ou intérieure. La valeur par défaut est fixée à 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 "Cette option dĂ©finit la vitesse dâimpression des coutures en biseau. Il est recommandĂ© dâimprimer les coutures en biseau Ă une vitesse lente (moins de 100 mm/s). Il est Ă©galement conseillĂ© dâactiver lâoption « Lissage de la vitesse dâextrusion » si la vitesse dĂ©finie varie de maniĂšre significative par rapport Ă la vitesse des parois extĂ©rieures ou intĂ©rieures. Si la vitesse spĂ©cifiĂ©e ici est supĂ©rieure Ă la vitesse des parois extĂ©rieures ou intĂ©rieures, lâimprimante prendra par dĂ©faut la plus lente des deux vitesses. Lorsquâelle est spĂ©cifiĂ©e sous forme de pourcentage (par exemple, 80 %), la vitesse est calculĂ©e sur la base de la vitesse de la paroi extĂ©rieure ou intĂ©rieure. La valeur par dĂ©faut est fixĂ©e Ă 100 %."
msgid "Scarf joint flow ratio"
msgstr "Ratio de débit de la couture en biseau"
msgid "This factor affects the amount of material for scarf joints."
-msgstr ""
-"Ce facteur influe sur la quantité de matériau pour les coutures en biseau."
+msgstr "Ce facteur influe sur la quantité de matériau pour les coutures en biseau."
msgid "Scarf start height"
msgstr "Hauteur de départ du biseau"
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 ""
"Hauteur de départ du biseau.\n"
-"Cette hauteur peut ĂȘtre spĂ©cifiĂ©e en millimĂštres ou en pourcentage de la "
-"hauteur de la couche actuelle. La valeur par défaut de ce paramÚtre est 0."
+"Cette hauteur peut ĂȘtre spĂ©cifiĂ©e en millimĂštres ou en pourcentage de la hauteur de la couche actuelle. La valeur par dĂ©faut de ce paramĂštre est 0."
msgid "Scarf around entire wall"
msgstr "Biseau sur toute la paroi"
@@ -13305,12 +10847,8 @@ msgstr "Le biseau sâĂ©tend sur toute la longueur de la paroi."
msgid "Scarf length"
msgstr "Longueur du biseau"
-msgid ""
-"Length of the scarf. Setting this parameter to zero effectively disables the "
-"scarf."
-msgstr ""
-"Longueur du biseau. La mise à zéro de ce paramÚtre désactive automatiquement "
-"le biseau."
+msgid "Length of the scarf. Setting this parameter to zero effectively disables the scarf."
+msgstr "Longueur du biseau. La mise à zéro de ce paramÚtre désactive automatiquement le biseau."
msgid "Scarf steps"
msgstr "Ătapes du biseau"
@@ -13327,66 +10865,32 @@ msgstr "Utiliser également un joint en biseau pour les parois intérieures."
msgid "Role base wipe speed"
msgstr "Vitesse dâessuyage basĂ©e sur la vitesse dâextrusion"
-msgid ""
-"The wipe speed is determined by the speed of the current extrusion role.e.g. "
-"if a wipe action is executed immediately following an outer wall extrusion, "
-"the speed of the outer wall extrusion will be utilized for the wipe action."
-msgstr ""
-"La vitesse dâessuyage est identique Ă la vitesse dâextrusion actuelle. Par "
-"exemple, si lâaction dâessuyage est suivie dâune extrusion de paroi "
-"extérieure, la vitesse de la paroi extérieure sera utilisée pour cette "
-"action dâessuyage."
+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 "La vitesse dâessuyage est identique Ă la vitesse dâextrusion actuelle. Par exemple, si lâaction dâessuyage est suivie dâune extrusion de paroi extĂ©rieure, la vitesse de la paroi extĂ©rieure sera utilisĂ©e pour cette action dâessuyage."
msgid "Wipe on loops"
msgstr "Essuyer sur les boucles"
-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 ""
-"Pour minimiser la visibilité de la couture dans une extrusion en boucle "
-"fermĂ©e, un petit mouvement vers lâintĂ©rieur est exĂ©cutĂ© avant que la buse ne "
-"quitte la boucle."
+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 "Pour minimiser la visibilitĂ© de la couture dans une extrusion en boucle fermĂ©e, un petit mouvement vers lâintĂ©rieur est exĂ©cutĂ© avant que la buse ne quitte la boucle."
msgid "Wipe before external loop"
msgstr "Essuyer avant la boucle externe"
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 ""
-"Pour minimiser la visibilitĂ© dâune Ă©ventuelle surextrusion au dĂ©but dâun "
-"pĂ©rimĂštre extĂ©rieur lors de lâimpression avec lâordre dâimpression de paroi "
-"extérieure/intérieure ou intérieure/extérieure/intérieure, la dérétraction "
-"est effectuĂ©e lĂ©gĂšrement sur lâintĂ©rieur Ă partir du dĂ©but du pĂ©rimĂštre "
-"extérieur. De cette maniÚre, toute sur-extrusion potentielle est cachée de "
-"la surface extérieure. \n"
+"Pour minimiser la visibilitĂ© dâune Ă©ventuelle surextrusion au dĂ©but dâun pĂ©rimĂštre extĂ©rieur lors de lâimpression avec lâordre dâimpression de paroi extĂ©rieure/intĂ©rieure ou intĂ©rieure/extĂ©rieure/intĂ©rieure, la dĂ©rĂ©traction est effectuĂ©e lĂ©gĂšrement sur lâintĂ©rieur Ă partir du dĂ©but du pĂ©rimĂštre extĂ©rieur. De cette maniĂšre, toute sur-extrusion potentielle est cachĂ©e de la surface extĂ©rieure. \n"
"\n"
-"Ceci est utile lors de lâimpression avec lâordre dâimpression de la paroi "
-"extérieure/intérieure ou intérieure/extérieure/intérieure, car dans ces "
-"modes, il est plus probable quâun pĂ©rimĂštre extĂ©rieur soit imprimĂ© "
-"immédiatement aprÚs un mouvement de dérétraction."
+"Ceci est utile lors de lâimpression avec lâordre dâimpression de la paroi extĂ©rieure/intĂ©rieure ou intĂ©rieure/extĂ©rieure/intĂ©rieure, car dans ces modes, il est plus probable quâun pĂ©rimĂštre extĂ©rieur soit imprimĂ© immĂ©diatement aprĂšs un mouvement de dĂ©rĂ©traction."
msgid "Wipe speed"
msgstr "Vitesse dâessuyage"
-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 ""
-"La vitesse dâessuyage est dĂ©terminĂ©e par le paramĂštre de vitesse spĂ©cifiĂ© "
-"dans cette configuration. Si la valeur est exprimée en pourcentage (par "
-"exemple 80%), elle sera calculée en fonction du paramÚtre de vitesse de "
-"déplacement ci-dessus. La valeur par défaut de ce paramÚtre est 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 "La vitesse dâessuyage est dĂ©terminĂ©e par le paramĂštre de vitesse spĂ©cifiĂ© dans cette configuration. Si la valeur est exprimĂ©e en pourcentage (par exemple 80%), elle sera calculĂ©e en fonction du paramĂštre de vitesse de dĂ©placement ci-dessus. La valeur par dĂ©faut de ce paramĂštre est 80%"
msgid "Skirt distance"
msgstr "Distance de la jupe"
@@ -13404,33 +10908,21 @@ msgid "Draft shield"
msgstr "Paravent"
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"
+"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"
+"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 ""
-"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"
+"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"
+"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"
+"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 "Limité"
@@ -13448,43 +10940,28 @@ msgid "Skirt speed"
msgstr "Vitesse de la jupe"
msgid "Speed of skirt, in mm/s. Zero means use default layer extrusion speed."
-msgstr ""
-"Vitesse de la jupe, en mm/s. Une valeur Ă 0 signifie que la vitesse "
-"dâextrusion par dĂ©faut est utilisĂ©e."
+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 "Longueur minimale dâextrusion de la jupe"
msgid ""
-"Minimum filament extrusion length in mm when printing the skirt. Zero means "
-"this feature is disabled.\n"
+"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."
+"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"
+"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."
+"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 "
-"layer time is shorter than this value, to get better cooling for these layers"
-msgstr ""
-"La vitesse d'impression dans le G-code exporté sera ralentie, lorsque le "
-"temps de couche estimé est plus court que cette valeur, pour obtenir un "
-"meilleur refroidissement pour ces couches"
+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 "La vitesse d'impression dans le G-code exporté sera ralentie, lorsque le temps de couche estimé est plus court que cette valeur, pour obtenir un meilleur refroidissement pour ces couches"
msgid "Minimum sparse infill threshold"
msgstr "Seuil minimum de remplissage"
-msgid ""
-"Sparse infill area which is smaller than threshold value is replaced by "
-"internal solid infill"
-msgstr ""
-"La zone de remplissage inférieure à la valeur seuil est remplacée par un "
-"remplissage plein interne"
+msgid "Sparse infill area which is smaller than threshold value is replaced by internal solid infill"
+msgstr "La zone de remplissage inférieure à la valeur seuil est remplacée par un remplissage plein interne"
msgid "Solid infill"
msgstr "Remplissage solide"
@@ -13492,67 +10969,29 @@ msgstr "Remplissage solide"
msgid "Filament to print solid infill"
msgstr "Filament pour lâimpression de remplissage solide"
-msgid ""
-"Line width of internal solid infill. If expressed as a %, it will be "
-"computed over the nozzle diameter."
-msgstr ""
-"Largeur de ligne du remplissage plein interne. Si elle est exprimée en %, "
-"elle sera calculée sur le diamÚtre de la buse."
+msgid "Line width of internal solid infill. If expressed as a %, it will be computed over the nozzle diameter."
+msgstr "Largeur de ligne du remplissage plein interne. Si elle est exprimée en %, elle sera calculée sur le diamÚtre de la buse."
msgid "Speed of internal solid infill, not the top and bottom surface"
-msgstr ""
-"Vitesse du remplissage plein interne, pas de la surface supérieure et "
-"inférieure"
+msgstr "Vitesse du remplissage plein interne, pas de la surface supérieure et inférieure"
-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 ""
-"Spiralize lisse les mouvements z du contour extérieur. Et transforme un "
-"modÚle plein en une impression à paroi unique avec des couches inférieures "
-"solides. Le modÚle généré final n'a pas de couture."
+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 "Spiralize lisse les mouvements z du contour extérieur. Et transforme un modÚle plein en une impression à paroi unique avec des couches inférieures solides. Le modÚle généré final n'a pas de couture."
msgid "Smooth Spiral"
msgstr "Spirale lisse"
-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 ""
-"« Spirale lisse » lisse Ă©galement les mouvements X et Y, de sorte quâaucune "
-"couture nâest visible, mĂȘme dans les directions XY sur des parois qui ne "
-"sont pas verticales."
+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 "« Spirale lisse » lisse Ă©galement les mouvements X et Y, de sorte quâaucune couture nâest visible, mĂȘme dans les directions XY sur des parois qui ne sont pas verticales."
msgid "Max XY Smoothing"
msgstr "Lissage Max 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 ""
-"Distance maximale pour dĂ©placer les points dans lâaxe XY afin dâobtenir une "
-"spirale lisse. Si elle est exprimée en %, elle sera calculée par rapport au "
-"diamĂštre de la buse."
+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 "Distance maximale pour dĂ©placer les points dans lâaxe XY afin dâobtenir une spirale lisse. Si elle est exprimĂ©e en %, elle sera calculĂ©e par rapport au diamĂštre de la buse."
-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 ""
-"Si le mode fluide ou traditionnel est sélectionné, une vidéo en timelapse "
-"sera générée pour chaque impression. à chaque couche imprimée, un instantané "
-"est pris avec la caméra intégrée. Tous ces instantanés seront assemblés dans "
-"une vidéo timelapse une fois l'impression terminée. Si le mode lisse est "
-"sélectionné, l'extrudeur se déplace vers la goulotte d'évacuation à chaque "
-"couche imprimĂ©e, puis prend un clichĂ©. Ătant donnĂ© que le filament fondu "
-"peut s'échapper de la buse pendant la prise de vue, une tour de purge est "
-"requise en mode lisse pour essuyer la buse."
+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 "Si le mode fluide ou traditionnel est sĂ©lectionnĂ©, une vidĂ©o en timelapse sera gĂ©nĂ©rĂ©e pour chaque impression. Ă chaque couche imprimĂ©e, un instantanĂ© est pris avec la camĂ©ra intĂ©grĂ©e. Tous ces instantanĂ©s seront assemblĂ©s dans une vidĂ©o timelapse une fois l'impression terminĂ©e. Si le mode lisse est sĂ©lectionnĂ©, l'extrudeur se dĂ©place vers la goulotte d'Ă©vacuation Ă chaque couche imprimĂ©e, puis prend un clichĂ©. Ătant donnĂ© que le filament fondu peut s'Ă©chapper de la buse pendant la prise de vue, une tour de purge est requise en mode lisse pour essuyer la buse."
msgid "Traditional"
msgstr "Traditionnel"
@@ -13561,40 +11000,20 @@ msgid "Temperature variation"
msgstr "Variation de température"
#. TRN PrintSettings : "Ooze prevention" > "Temperature variation"
-msgid ""
-"Temperature difference to be applied when an extruder is not active. The "
-"value is not used when 'idle_temperature' in filament settings is set to non "
-"zero value."
-msgstr ""
-"DiffĂ©rence de tempĂ©rature Ă appliquer lorsquâun extrudeur nâest pas actif. "
-"La valeur nâest pas utilisĂ©e lorsque âidle_temperatureâ dans les paramĂštres "
-"du filament est réglé sur une valeur non nulle."
+msgid "Temperature difference to be applied when an extruder is not active. The value is not used when 'idle_temperature' in filament settings is set to non zero value."
+msgstr "DiffĂ©rence de tempĂ©rature Ă appliquer lorsquâun extrudeur nâest pas actif. La valeur nâest pas utilisĂ©e lorsque âidle_temperatureâ dans les paramĂštres du filament est rĂ©glĂ© sur une valeur non nulle."
msgid "Preheat time"
msgstr "Durée du préchauffage"
-msgid ""
-"To reduce the waiting time after tool change, Orca can preheat the next tool "
-"while the current tool is still in use. This setting specifies the time in "
-"seconds to preheat the next tool. Orca will insert a M104 command to preheat "
-"the tool in advance."
-msgstr ""
-"Pour rĂ©duire le temps dâattente aprĂšs un changement dâoutil, Orca peut "
-"prĂ©chauffer lâoutil suivant pendant que lâoutil actuel est encore en cours "
-"dâutilisation. Ce paramĂštre spĂ©cifie le temps en secondes pour prĂ©chauffer "
-"lâoutil suivant. Orca insĂšre une commande M104 pour prĂ©chauffer lâoutil Ă "
-"lâavance."
+msgid "To reduce the waiting time after tool change, Orca can preheat the next tool while the current tool is still in use. This setting specifies the time in seconds to preheat the next tool. Orca will insert a M104 command to preheat the tool in advance."
+msgstr "Pour rĂ©duire le temps dâattente aprĂšs un changement dâoutil, Orca peut prĂ©chauffer lâoutil suivant pendant que lâoutil actuel est encore en cours dâutilisation. Ce paramĂštre spĂ©cifie le temps en secondes pour prĂ©chauffer lâoutil suivant. Orca insĂšre une commande M104 pour prĂ©chauffer lâoutil Ă lâavance."
msgid "Preheat steps"
msgstr "Ătapes de prĂ©chauffage"
-msgid ""
-"Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For "
-"other printers, please set it to 1."
-msgstr ""
-"Insérer plusieurs commandes de préchauffage (par exemple M104.1). Uniquement "
-"utile pour la Prusa XL. Pour les autres imprimantes, veuillez le régler sur "
-"1."
+msgid "Insert multiple preheat commands(e.g. M104.1). Only useful for Prusa XL. For other printers, please set it to 1."
+msgstr "Insérer plusieurs commandes de préchauffage (par exemple M104.1). Uniquement utile pour la Prusa XL. Pour les autres imprimantes, veuillez le régler sur 1."
msgid "Start G-code"
msgstr "G-code de démarrage"
@@ -13614,18 +11033,8 @@ msgstr "Utiliser une seule buse pour imprimer plusieurs filaments"
msgid "Manual Filament Change"
msgstr "Changement manuel du filament"
-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 ""
-"Activez cette option pour omettre le G-code de changement de filament "
-"personnalisĂ© uniquement au dĂ©but de lâimpression. La commande de changement "
-"dâoutil (par exemple, T0) sera ignorĂ©e tout au long de lâimpression. Ceci "
-"est utile pour lâimpression manuelle multi-matĂ©riaux, oĂč nous utilisons M600/"
-"PAUSE pour dĂ©clencher lâaction de changement manuel de filament."
+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 "Activez cette option pour omettre le G-code de changement de filament personnalisĂ© uniquement au dĂ©but de lâimpression. La commande de changement dâoutil (par exemple, T0) sera ignorĂ©e tout au long de lâimpression. Ceci est utile pour lâimpression manuelle multi-matĂ©riaux, oĂč nous utilisons M600/PAUSE pour dĂ©clencher lâaction de changement manuel de filament."
msgid "Purge in prime tower"
msgstr "Purge dans la tour de purge"
@@ -13639,50 +11048,26 @@ msgstr "Activer le pilonnage du filament"
msgid "No sparse layers (beta)"
msgstr "Pas de couches éparses (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 ""
-"Si cette option est activĂ©e, la tour dâessuyage ne sera pas imprimĂ©e sur les "
-"couches sans changement dâoutil. Sur les couches avec changement dâoutil, "
-"lâextrudeur se dĂ©placera vers le bas pour imprimer la tour dâessuyage. "
-"Lâutilisateur est responsable de sâassurer quâil nây a pas de collision avec "
-"lâimpression."
+msgid "If enabled, the wipe tower will not be printed on layers with no toolchanges. On layers with a toolchange, extruder will travel downward to print the wipe tower. User is responsible for ensuring there is no collision with the print."
+msgstr "Si cette option est activĂ©e, la tour dâessuyage ne sera pas imprimĂ©e sur les couches sans changement dâoutil. Sur les couches avec changement dâoutil, lâextrudeur se dĂ©placera vers le bas pour imprimer la tour dâessuyage. Lâutilisateur est responsable de sâassurer quâil nây a pas de collision avec lâimpression."
msgid "Prime all printing extruders"
msgstr "Amorcer tous les extrudeurs dâimpression"
-msgid ""
-"If enabled, all printing extruders will be primed at the front edge of the "
-"print bed at the start of the print."
-msgstr ""
-"Si cette option est activĂ©e, tous les extrudeurs dâimpression seront amorcĂ©s "
-"sur le bord avant du plateau au dĂ©but de lâimpression."
+msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
+msgstr "Si cette option est activĂ©e, tous les extrudeurs dâimpression seront amorcĂ©s sur le bord avant du plateau au dĂ©but de lâimpression."
msgid "Slice gap closing radius"
msgstr "Rayon de fermeture de lâĂ©cart des tranches"
-msgid ""
-"Cracks smaller than 2x gap closing radius are being filled during the "
-"triangle mesh slicing. The gap closing operation may reduce the final print "
-"resolution, therefore it is advisable to keep the value reasonably low."
-msgstr ""
-"Les fissures plus petites que 2x le rayon de fermeture de lâespace sont "
-"remplies pendant la dĂ©coupe du maillage. LâopĂ©ration de fermeture de "
-"lâespace peut rĂ©duire la rĂ©solution finale de lâimpression, il est donc "
-"conseillé de maintenir cette valeur à un niveau raisonnablement bas."
+msgid "Cracks smaller than 2x gap closing radius are being filled during the triangle mesh slicing. The gap closing operation may reduce the final print resolution, therefore it is advisable to keep the value reasonably low."
+msgstr "Les fissures plus petites que 2x le rayon de fermeture de lâespace sont remplies pendant la dĂ©coupe du maillage. LâopĂ©ration de fermeture de lâespace peut rĂ©duire la rĂ©solution finale de lâimpression, il est donc conseillĂ© de maintenir cette valeur Ă un niveau raisonnablement bas."
msgid "Slicing Mode"
msgstr "Mode de découpe"
-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."
+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."
msgid "Regular"
msgstr "Standard"
@@ -13696,16 +11081,8 @@ msgstr "Combler les trous"
msgid "Z offset"
msgstr "Décalage 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 ""
-"Cette valeur sera ajoutée (ou soustraite) de toutes les coordonnées Z dans "
-"le G-code de sortie. Il est utilisé pour compenser une mauvaise position de "
-"la butée Z : par exemple, si votre zéro de butée laisse réellement la buse à "
-"0,3 mm du plateau, réglez-le sur -0,3 (ou corrigez votre butée)."
+msgid "This value will be added (or subtracted) from all the Z coordinates in the output G-code. It is used to compensate for bad Z endstop position: for example, if your endstop zero actually leaves the nozzle 0.3mm far from the print bed, set this to -0.3 (or fix your endstop)."
+msgstr "Cette valeur sera ajoutée (ou soustraite) de toutes les coordonnées Z dans le G-code de sortie. Il est utilisé pour compenser une mauvaise position de la butée Z : par exemple, si votre zéro de butée laisse réellement la buse à 0,3 mm du plateau, réglez-le sur -0,3 (ou corrigez votre butée)."
msgid "Enable support"
msgstr "Activer les supports"
@@ -13713,14 +11090,8 @@ msgstr "Activer les supports"
msgid "Enable support generation."
msgstr "Activer la génération de support."
-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 ""
-"Normaux (auto) et Arborescents (auto) sont utilisés pour générer "
-"automatiquement un support. Si vous sélectionnez Normaux (manuel) ou "
-"Arborescents (manuel), seuls les générateurs de support manuels sont générés"
+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 "Normaux (auto) et Arborescents (auto) sont utilisés pour générer automatiquement un support. Si vous sélectionnez Normaux (manuel) ou Arborescents (manuel), seuls les générateurs de support manuels sont générés"
msgid "normal(auto)"
msgstr "Normaux (auto)"
@@ -13744,33 +11115,25 @@ msgid "Pattern angle"
msgstr "Angle du motif"
msgid "Use this setting to rotate the support pattern on the horizontal plane."
-msgstr ""
-"Utilisez ce paramĂštre pour faire pivoter le motif de support sur le plan "
-"horizontal."
+msgstr "Utilisez ce paramĂštre pour faire pivoter le motif de support sur le plan horizontal."
msgid "On build plate only"
msgstr "Sur plateau uniquement"
msgid "Don't create support on model surface, only on build plate"
-msgstr ""
-"Ce paramÚtre génÚre uniquement les supports qui commencent sur le plateau."
+msgstr "Ce paramÚtre génÚre uniquement les supports qui commencent sur le plateau."
msgid "Support critical regions only"
msgstr "Ne supporter que les régions critiques"
-msgid ""
-"Only create support for critical regions including sharp tail, cantilever, "
-"etc."
-msgstr ""
-"Créez un support uniquement pour les zones critiques notamment les pointes, "
-"les surplombs, etc."
+msgid "Only create support for critical regions including sharp tail, cantilever, etc."
+msgstr "Créez un support uniquement pour les zones critiques notamment les pointes, les surplombs, etc."
msgid "Remove small overhangs"
msgstr "Supprimer les petits surplombs"
msgid "Remove small overhangs that possibly need no supports."
-msgstr ""
-"Supprimer les petits surplombs qui nâont peut-ĂȘtre pas besoin de supports."
+msgstr "Supprimer les petits surplombs qui nâont peut-ĂȘtre pas besoin de supports."
msgid "Top Z distance"
msgstr "Distance Z supérieure"
@@ -13787,49 +11150,29 @@ msgstr "L'écart Z entre l'interface du support inférieur et l'objet"
msgid "Support/raft base"
msgstr "Support/base du radeau"
-msgid ""
-"Filament to print support base and raft. \"Default\" means no specific "
-"filament for support and current filament is used"
-msgstr ""
-"Filament pour imprimer les supports et radeaux. « Par défaut » signifie "
-"qu'aucun filament spécifique n'est utilisé comme support et que le filament "
-"actuel est utilisé"
+msgid "Filament to print support base and raft. \"Default\" means no specific filament for support and current filament is used"
+msgstr "Filament pour imprimer les supports et radeaux. « Par défaut » signifie qu'aucun filament spécifique n'est utilisé comme support et que le filament actuel est utilisé"
msgid "Avoid interface filament for base"
msgstr "RĂ©duire le filament dâinterface pour la base"
-msgid ""
-"Avoid using support interface filament to print support base if possible."
-msgstr ""
-"Ăviter dâutiliser le filament de lâinterface du support pour imprimer la "
-"base du support"
+msgid "Avoid using support interface filament to print support base if possible."
+msgstr "Ăviter dâutiliser le filament de lâinterface du support pour imprimer la base du support"
-msgid ""
-"Line width of support. If expressed as a %, it will be computed over the "
-"nozzle diameter."
-msgstr ""
-"Largeur de ligne des supports. Si elle est exprimée en %, elle sera calculée "
-"sur le diamĂštre de la buse."
+msgid "Line width of support. If expressed as a %, it will be computed over the nozzle diameter."
+msgstr "Largeur de ligne des supports. Si elle est exprimée en %, elle sera calculée sur le diamÚtre de la buse."
msgid "Interface use loop pattern"
msgstr "ModĂšle de boucle d'utilisation d'interface"
-msgid ""
-"Cover the top contact layer of the supports with loops. Disabled by default."
-msgstr ""
-"Recouvrir la couche de contact supérieure des supports avec des boucles. "
-"Désactivé par défaut."
+msgid "Cover the top contact layer of the supports with loops. Disabled by default."
+msgstr "Recouvrir la couche de contact supérieure des supports avec des boucles. Désactivé par défaut."
msgid "Support/raft interface"
msgstr "Support/base d'interface"
-msgid ""
-"Filament to print support interface. \"Default\" means no specific filament "
-"for support interface and current filament is used"
-msgstr ""
-"Filament pour l'impression des interfaces de support. \"Défaut\" signifie "
-"qu'il n'y a pas de filament spécifique pour l'interface de support et que le "
-"filament actuel est utilisé."
+msgid "Filament to print support interface. \"Default\" means no specific filament for support interface and current filament is used"
+msgstr "Filament pour l'impression des interfaces de support. \"Défaut\" signifie qu'il n'y a pas de filament spécifique pour l'interface de support et que le filament actuel est utilisé."
msgid "Top interface layers"
msgstr "Couches d'interface supérieures"
@@ -13856,9 +11199,7 @@ msgid "Bottom interface spacing"
msgstr "Espacement de l'interface inférieure"
msgid "Spacing of bottom interface lines. Zero means solid interface"
-msgstr ""
-"Espacement des lignes d'interface inférieures. Zéro signifie une interface "
-"solide"
+msgstr "Espacement des lignes d'interface inférieures. Zéro signifie une interface solide"
msgid "Speed of support interface"
msgstr "Vitesse pour l'interface des supports"
@@ -13878,14 +11219,8 @@ msgstr "Creux"
msgid "Interface pattern"
msgstr "Motif d'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 ""
-"ModÚle de ligne de l'interface de support. Le modÚle par défaut pour "
-"l'interface de support non soluble est rectiligne, tandis que le modĂšle par "
-"défaut pour l'interface de support soluble est concentrique"
+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 "ModÚle de ligne de l'interface de support. Le modÚle par défaut pour l'interface de support non soluble est rectiligne, tandis que le modÚle par défaut pour l'interface de support soluble est concentrique"
msgid "Rectilinear Interlaced"
msgstr "Rectiligne Entrelacé"
@@ -13906,22 +11241,11 @@ msgid "Speed of support"
msgstr "Vitesse pour les supports"
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 ""
-"Style et forme des supports. Pour les supports normaux, une grille réguliÚre "
-"créera des supports plus stables (par défaut), tandis que des tours de "
-"supports bien ajustées économiseront du matériel et réduiront les marques "
-"sur les objets.\n"
-"Pour les supports arborescents, le style mince et organique fusionnera les "
-"branches de maniÚre plus agressive et économisera beaucoup de matiÚre "
-"(organique par défaut), tandis que le style hybride créera une structure "
-"similaire aux supports normaux sous de grands surplombs plats."
+"Style et forme des supports. Pour les supports normaux, une grille réguliÚre créera des supports plus stables (par défaut), tandis que des tours de supports bien ajustées économiseront du matériel et réduiront les marques sur les objets.\n"
+"Pour les supports arborescents, le style mince et organique fusionnera les branches de maniÚre plus agressive et économisera beaucoup de matiÚre (organique par défaut), tandis que le style hybride créera une structure similaire aux supports normaux sous de grands surplombs plats."
msgid "Snug"
msgstr "Ajusté"
@@ -13941,106 +11265,58 @@ msgstr "Arborescents Organiques"
msgid "Independent support layer height"
msgstr "Hauteur de la couche de support indépendante"
-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 ""
-"La couche de support utilise la hauteur de la couche indépendamment de la "
-"couche objet. Cela permet de personnaliser lâĂ©cart de Z et de gagner du "
-"temps d'impression. Cette option ne sera pas valide lorsque la tour de purge "
-"sera activée."
+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 "La couche de support utilise la hauteur de la couche indĂ©pendamment de la couche objet. Cela permet de personnaliser lâĂ©cart de Z et de gagner du temps d'impression. Cette option ne sera pas valide lorsque la tour de purge sera activĂ©e."
msgid "Threshold angle"
msgstr "Angle de seuil"
-msgid ""
-"Support will be generated for overhangs whose slope angle is below the "
-"threshold."
-msgstr ""
-"Un support sera généré pour les surplombs dont l'angle de pente est "
-"inférieur au seuil."
+msgid "Support will be generated for overhangs whose slope angle is below the threshold."
+msgstr "Un support sera généré pour les surplombs dont l'angle de pente est inférieur au seuil."
msgid "Tree support branch angle"
msgstr "Angle de branche support arborescent"
-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 ""
-"Ce paramÚtre détermine l'angle des surplombs maximum que les branches du "
-"support arborescent peuvent faire. Si l'angle est augmenté, les branches "
-"peuvent ĂȘtre imprimĂ©es plus horizontalement, ce qui leur permet d'aller plus "
-"loin."
+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 "Ce paramĂštre dĂ©termine l'angle des surplombs maximum que les branches du support arborescent peuvent faire. Si l'angle est augmentĂ©, les branches peuvent ĂȘtre imprimĂ©es plus horizontalement, ce qui leur permet d'aller plus loin."
msgid "Preferred Branch Angle"
msgstr "Angle des branches préféré"
#. 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 ""
-"Angle prĂ©fĂ©rĂ© des branches, lorsquâelles ne doivent pas Ă©viter le modĂšle. "
-"Utilisez un angle inférieur pour les rendre plus verticaux et plus stables. "
-"Utilisez un angle plus élevé pour que les branches fusionnent plus "
-"rapidement."
+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 "Angle prĂ©fĂ©rĂ© des branches, lorsquâelles ne doivent pas Ă©viter le modĂšle. Utilisez un angle infĂ©rieur pour les rendre plus verticaux et plus stables. Utilisez un angle plus Ă©levĂ© pour que les branches fusionnent plus rapidement."
msgid "Tree support branch distance"
msgstr "Distance de branche de support arborescent"
-msgid ""
-"This setting determines the distance between neighboring tree support nodes."
-msgstr ""
-"Ce paramĂštre dĂ©termine la distance entre les nĆuds de support arborescents "
-"voisins."
+msgid "This setting determines the distance between neighboring tree support nodes."
+msgstr "Ce paramĂštre dĂ©termine la distance entre les nĆuds de support arborescents voisins."
msgid "Branch Density"
msgstr "Densité des branches"
#. 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 ""
-"Ajuste la densité de la structure des supports utilisée pour générer les "
-"pointes des branches. Une valeur plus élevée donne de meilleurs surplombs, "
-"mais les supports sont plus difficiles à supprimer. Il est donc recommandé "
-"dâactiver les interfaces de support supĂ©rieures au lieu dâune valeur de "
-"densité de branches élevée si des interfaces denses sont nécessaires."
+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 "Ajuste la densitĂ© de la structure des supports utilisĂ©e pour gĂ©nĂ©rer les pointes des branches. Une valeur plus Ă©levĂ©e donne de meilleurs surplombs, mais les supports sont plus difficiles Ă supprimer. Il est donc recommandĂ© dâactiver les interfaces de support supĂ©rieures au lieu dâune valeur de densitĂ© de branches Ă©levĂ©e si des interfaces denses sont nĂ©cessaires."
msgid "Adaptive layer height"
msgstr "Hauteur de couche adaptative"
-msgid ""
-"Enabling this option means the height of tree support layer except the "
-"first will be automatically calculated "
-msgstr ""
-"Lâactivation de cette option signifie que la hauteur de couche des supports "
-"arborescents, Ă lâexception de la premiĂšre, sera automatiquement calculĂ©e "
+msgid "Enabling this option means the height of tree support layer except the first will be automatically calculated "
+msgstr "Lâactivation de cette option signifie que la hauteur de couche des supports arborescents, Ă lâexception de la premiĂšre, sera automatiquement calculĂ©e "
msgid "Auto brim width"
msgstr "Largeur de la bordure automatique"
-msgid ""
-"Enabling this option means the width of the brim for tree support will be "
-"automatically calculated"
-msgstr ""
-"Lâactivation de cette option signifie que la largeur de la bordure des "
-"supports arborescents sera automatiquement calculée"
+msgid "Enabling this option means the width of the brim for tree support will be automatically calculated"
+msgstr "Lâactivation de cette option signifie que la largeur de la bordure des supports arborescents sera automatiquement calculĂ©e"
msgid "Tree support brim width"
msgstr "Largeur de bordure du support arborescent"
msgid "Distance from tree branch to the outermost brim line"
-msgstr ""
-"Distance entre la branche du support arborescent et la ligne la plus externe "
-"de la bordure"
+msgstr "Distance entre la branche du support arborescent et la ligne la plus externe de la bordure"
msgid "Tip Diameter"
msgstr "DiamĂštre de la pointe"
@@ -14060,29 +11336,15 @@ msgid "Branch Diameter Angle"
msgstr "Angle du diamĂštre des branches"
#. 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 ""
-"Angle du diamĂštre des branches Ă mesure quâelles deviennent progressivement "
-"plus épaisses vers leurs bases. Un angle de 0 donnera aux branches une "
-"épaisseur uniforme sur toute leur longueur. Un léger angle peut augmenter la "
-"stabilité des supports organiques."
+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 "Angle du diamĂštre des branches Ă mesure quâelles deviennent progressivement plus Ă©paisses vers leurs bases. Un angle de 0 donnera aux branches une Ă©paisseur uniforme sur toute leur longueur. Un lĂ©ger angle peut augmenter la stabilitĂ© des supports organiques."
msgid "Branch Diameter with double walls"
msgstr "DiamĂštre des branches Ă double parois"
#. 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 ""
-"Les branches dont la superficie est supĂ©rieure Ă la superficie dâun cercle "
-"de ce diamÚtre seront imprimées avec des doubles parois pour plus de "
-"stabilité. Définissez cette valeur sur zéro pour éviter la double paroi."
+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 "Les branches dont la superficie est supĂ©rieure Ă la superficie dâun cercle de ce diamĂštre seront imprimĂ©es avec des doubles parois pour plus de stabilitĂ©. DĂ©finissez cette valeur sur zĂ©ro pour Ă©viter la double paroi."
msgid "Support wall loops"
msgstr "Boucles de paroi de support"
@@ -14093,45 +11355,37 @@ msgstr "Ce paramÚtre spécifie le nombre de parois autour du support"
msgid "Tree support with infill"
msgstr "Support arborescent avec remplissage"
-msgid ""
-"This setting specifies whether to add infill inside large hollows of tree "
-"support"
-msgstr ""
-"Ce paramÚtre spécifie s'il faut ajouter un remplissage à l'intérieur des "
-"grands creux du support arborescent"
+msgid "This setting specifies whether to add infill inside large hollows of tree support"
+msgstr "Ce paramÚtre spécifie s'il faut ajouter un remplissage à l'intérieur des grands creux du support arborescent"
msgid "Activate temperature control"
msgstr "Activer le contrÎle de la température"
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)"
+"Enable this option for automated chamber temperature control. This option activates the emitting of an M191 command before the \"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In addition, it emits an M141 command at the end of the print to turn off the chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands either via macros or natively and is usually used when an active chamber heater is installed."
msgstr ""
-"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)"
+"Activer cette option pour le contrĂŽle automatisĂ© de la tempĂ©rature du caisson. Cette option active le lancement dâune commande M191 avant le code « machine_start_gcode », qui fixe la tempĂ©rature de la chambre et attend quâelle soit atteinte. En outre, elle dĂ©clenche une commande M141 Ă la fin de lâimpression pour Ă©teindre le chauffage de la chambre, le cas Ă©chĂ©ant. \n"
+"\n"
+"Cette option repose sur la prise en charge des commandes M191 et M141 par le micrologiciel, soit via des macros, soit de maniĂšre native, et est gĂ©nĂ©ralement utilisĂ©e lorsquâun chauffage de chambre actif est installĂ©."
msgid "Chamber temperature"
msgstr "Température du caisson"
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber temperature can help suppress or reduce warping and potentially lead to higher interlayer bonding strength. However, at the same time, a higher chamber temperature will reduce the efficiency of air filtration for ABS and ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option should be disabled (set to 0) as the chamber temperature should be low to avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named chamber_temperature, which can be used to pass the desired chamber temperature to your print start macro, or a heat soak macro like this: PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may be useful if your printer does not support M141/M191 commands, or if you desire to handle heat soaking in the print start macro if no active chamber heater is installed."
msgstr ""
-"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 du caisson ne "
-"doit pas ĂȘtre Ă©levĂ©e pour Ă©viter les bouchages, donc la valeur 0 qui "
-"signifie éteindre est fortement recommandé."
+"Pour les matĂ©riaux Ă haute tempĂ©rature tels que lâABS, lâASA, le PC et le PA, une tempĂ©rature de caisson plus Ă©levĂ©e peut contribuer Ă supprimer ou Ă rĂ©duire la dĂ©formation et, Ă©ventuellement, Ă augmenter la force de liaison entre les couches. Cependant, dans le mĂȘme temps, une tempĂ©rature de chambre plus Ă©levĂ©e rĂ©duira lâefficacitĂ© de la filtration de lâair pour lâABS et lâASA. \n"
+"\n"
+"Pour le PLA, le PETG, le TPU, le PVA et dâautres matĂ©riaux Ă basse tempĂ©rature, cette option doit ĂȘtre dĂ©sactivĂ©e (rĂ©glĂ©e sur 0) car la tempĂ©rature de la chambre doit ĂȘtre basse pour Ă©viter lâengorgement de lâextrudeuse causĂ© par le ramollissement du matĂ©riau au niveau du heatbreak.\n"
+"\n"
+"Sâil est activĂ©, ce paramĂštre dĂ©finit Ă©galement une variable gcode nommĂ©e chamber_temperature, qui peut ĂȘtre utilisĂ©e pour transmettre la tempĂ©rature de la chambre souhaitĂ©e Ă votre macro de dĂ©marrage de lâimpression, ou Ă une macro de trempe thermique comme celle-ci : PRINT_START (autres variables) CHAMBER_TEMP=[chamber_temperature]. Cela peut ĂȘtre utile si votre imprimante ne prend pas en charge les commandes M141/M191, ou si vous souhaitez gĂ©rer le prĂ©chauffage dans la macro de dĂ©marrage de lâimpression si aucun chauffage de chambre actif nâest installĂ©."
msgid "Nozzle temperature for layers after the initial one"
msgstr "Température de la buse pour les couches aprÚs la premiÚre"
@@ -14139,30 +11393,17 @@ msgstr "Température de la buse pour les couches aprÚs la premiÚre"
msgid "Detect thin wall"
msgstr "Détecter les parois fines"
-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 ""
-"Détecte les parois fines qui ne peuvent pas contenir deux largeurs de ligne. "
-"Et utilisez une seule ligne pour imprimer. Peut ne pas ĂȘtre trĂšs bien "
-"imprimé, car ce n'est pas en boucle fermée"
+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 "DĂ©tecte les parois fines qui ne peuvent pas contenir deux largeurs de ligne. Et utilisez une seule ligne pour imprimer. Peut ne pas ĂȘtre trĂšs bien imprimĂ©, car ce n'est pas en boucle fermĂ©e"
-msgid ""
-"This gcode is inserted when change filament, including T command to trigger "
-"tool change"
-msgstr ""
-"Ce G-code est inséré lors du changement de filament, y compris la commande T "
-"pour déclencher le changement d'outil"
+msgid "This gcode is inserted when change filament, including T command to trigger tool change"
+msgstr "Ce G-code est inséré lors du changement de filament, y compris la commande T pour déclencher le changement d'outil"
msgid "This gcode is inserted when the extrusion role is changed"
msgstr "Ce G-code est insĂ©rĂ© lorsque le rĂŽle dâextrusion est modifiĂ©"
-msgid ""
-"Line width for top surfaces. If expressed as a %, it will be computed over "
-"the nozzle diameter."
-msgstr ""
-"Largeur de ligne pdes surfaces supérieures. Si elle est exprimée en %, elle "
-"sera calculée sur le diamÚtre de la buse."
+msgid "Line width for top surfaces. If expressed as a %, it will be computed over the nozzle diameter."
+msgstr "Largeur de ligne pdes surfaces supérieures. Si elle est exprimée en %, elle sera calculée sur le diamÚtre de la buse."
msgid "Speed of top surface infill which is solid"
msgstr "Vitesse de remplissage de la surface supérieure qui est solide"
@@ -14170,15 +11411,8 @@ msgstr "Vitesse de remplissage de la surface supérieure qui est solide"
msgid "Top shell layers"
msgstr "Couches de coque supérieures"
-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 ""
-"Il s'agit du nombre de couches solides de la coque supérieure, y compris la "
-"couche de surface supérieure. Lorsque l'épaisseur calculée par cette valeur "
-"est plus fine que l'épaisseur de la coque supérieure, les couches de la "
-"coque supérieure seront augmentées"
+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 "Il s'agit du nombre de couches solides de la coque supérieure, y compris la couche de surface supérieure. Lorsque l'épaisseur calculée par cette valeur est plus fine que l'épaisseur de la coque supérieure, les couches de la coque supérieure seront augmentées"
msgid "Top solid layers"
msgstr "Couches solides supérieures"
@@ -14186,19 +11420,8 @@ msgstr "Couches solides supérieures"
msgid "Top shell thickness"
msgstr "Ăpaisseur de la coque supĂ©rieure"
-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 ""
-"Le nombre de couches solides supérieures est augmenté lors du découpage si "
-"l'épaisseur calculée par les couches de coque supérieures est inférieure à "
-"cette valeur. Cela peut éviter d'avoir une coque trop fine lorsque la "
-"hauteur de couche est faible. 0 signifie que ce paramÚtre est désactivé et "
-"que l'épaisseur de la coque supérieure est absolument déterminée par les "
-"couches de coque supérieures"
+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 "Le nombre de couches solides supérieures est augmenté lors du découpage si l'épaisseur calculée par les couches de coque supérieures est inférieure à cette valeur. Cela peut éviter d'avoir une coque trop fine lorsque la hauteur de couche est faible. 0 signifie que ce paramÚtre est désactivé et que l'épaisseur de la coque supérieure est absolument déterminée par les couches de coque supérieures"
msgid "Speed of travel which is faster and without extrusion"
msgstr "Vitesse de déplacement plus rapide et sans extrusion"
@@ -14206,47 +11429,27 @@ msgstr "Vitesse de déplacement plus rapide et sans extrusion"
msgid "Wipe while retracting"
msgstr "Essuyer lors des rétractions"
-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 ""
-"Déplacez la buse le long du dernier chemin d'extrusion lors de la rétraction "
-"pour nettoyer la fuite de matériau sur la buse. Cela peut minimiser les "
-"taches lors de l'impression d'une nouvelle piĂšce aprĂšs le trajet"
+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 "Déplacez la buse le long du dernier chemin d'extrusion lors de la rétraction pour nettoyer la fuite de matériau sur la buse. Cela peut minimiser les taches lors de l'impression d'une nouvelle piÚce aprÚs le trajet"
msgid "Wipe Distance"
msgstr "Distance dâessuyage"
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 ""
-"Décrire la durée pendant laquelle la buse se déplacera le long de la "
-"derniÚre trajectoire lors de la rétraction. \n"
+"Décrire la durée pendant laquelle la buse se déplacera le long de la derniÚre trajectoire lors de la rétraction. \n"
"\n"
-"En fonction de la durĂ©e de lâopĂ©ration dâessuyage, de la vitesse et de la "
-"longueur des rĂ©glages de rĂ©traction de lâextrudeuse/filament, un mouvement "
-"de rĂ©traction peut ĂȘtre nĂ©cessaire pour rĂ©tracter le filament restant. \n"
+"En fonction de la durĂ©e de lâopĂ©ration dâessuyage, de la vitesse et de la longueur des rĂ©glages de rĂ©traction de lâextrudeuse/filament, un mouvement de rĂ©traction peut ĂȘtre nĂ©cessaire pour rĂ©tracter le filament restant. \n"
"\n"
-"Le rĂ©glage dâune valeur dans le paramĂštre de quantitĂ© de rĂ©traction avant "
-"essuyage ci-dessous permet dâeffectuer toute rĂ©traction excĂ©dentaire avant "
-"lâessuyage, sinon elle sera effectuĂ©e aprĂšs lâessuyage."
+"Le rĂ©glage dâune valeur dans le paramĂštre de quantitĂ© de rĂ©traction avant essuyage ci-dessous permet dâeffectuer toute rĂ©traction excĂ©dentaire avant lâessuyage, sinon elle sera effectuĂ©e aprĂšs lâessuyage."
-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 ""
-"La tour de purge peut ĂȘtre utilisĂ©e pour nettoyer les rĂ©sidus sur la buse et "
-"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 "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 "La tour de purge peut ĂȘtre utilisĂ©e pour nettoyer les rĂ©sidus sur la buse et 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"
@@ -14254,12 +11457,8 @@ msgstr "Volumes de purge"
msgid "Flush multiplier"
msgstr "Multiplicateur de purge"
-msgid ""
-"The actual flushing volumes is equal to the flush multiplier multiplied by "
-"the flushing volumes in the table."
-msgstr ""
-"Les volumes de purge actuels sont égaux à la valeur du multiplicateur de "
-"purge multiplié par les volumes de purge dans le tableau."
+msgid "The actual flushing volumes is equal to the flush multiplier multiplied by the flushing volumes in the table."
+msgstr "Les volumes de purge actuels sont égaux à la valeur du multiplicateur de purge multiplié par les volumes de purge dans le tableau."
msgid "Prime volume"
msgstr "Premier volume"
@@ -14279,109 +11478,50 @@ msgstr "Angle de rotation de la tour dâessuyage par rapport Ă lâaxe X."
msgid "Stabilization cone apex angle"
msgstr "Angle au sommet du cĂŽne de stabilisation"
-msgid ""
-"Angle at the apex of the cone that is used to stabilize the wipe tower. "
-"Larger angle means wider base."
-msgstr ""
-"Angle au sommet du cĂŽne utilisĂ© pour stabiliser la tour dâessuyage. Un angle "
-"plus grand signifie une base plus large."
+msgid "Angle at the apex of the cone that is used to stabilize the wipe tower. Larger angle means wider base."
+msgstr "Angle au sommet du cĂŽne utilisĂ© pour stabiliser la tour dâessuyage. Un angle plus grand signifie une base plus large."
msgid "Maximum wipe tower print speed"
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 "
-"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"
+"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"
+"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"
+"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"
+"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."
+"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"
+"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"
+"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"
+"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"
+"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."
+"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 ""
-"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 ""
-"Lâextrudeur Ă utiliser lors de lâimpression du pĂ©rimĂštre de la tour "
-"dâessuyage. RĂ©glez sur 0 pour utiliser celui qui est disponible (un non-"
-"soluble serait préféré)."
+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 "Lâextrudeur Ă utiliser lors de lâimpression du pĂ©rimĂštre de la tour dâessuyage. RĂ©glez sur 0 pour utiliser celui qui est disponible (un non-soluble serait prĂ©fĂ©rĂ©)."
msgid "Purging volumes - load/unload volumes"
msgstr "Volumes de purge - Volume de Chargement/Déchargement"
-msgid ""
-"This vector saves required volumes to change from/to each tool used on the "
-"wipe tower. These values are used to simplify creation of the full purging "
-"volumes below."
-msgstr ""
-"Ce vecteur enregistre les volumes requis pour passer de/vers chaque outil "
-"utilisĂ© sur la tour dâessuyage. Ces valeurs sont utilisĂ©es pour simplifier "
-"la création des volumes de purge complets ci-dessous."
+msgid "This vector saves required volumes to change from/to each tool used on the wipe tower. These values are used to simplify creation of the full purging volumes below."
+msgstr "Ce vecteur enregistre les volumes requis pour passer de/vers chaque outil utilisĂ© sur la tour dâessuyage. Ces valeurs sont utilisĂ©es pour simplifier la crĂ©ation des volumes de purge complets ci-dessous."
-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 ""
-"La purge aprÚs le changement de filament sera effectuée à l'intérieur des "
-"matériaux de remplissage des objets. Cela peut réduire la quantité de "
-"déchets et le temps d'impression. Si les parois sont imprimées avec un "
-"filament transparent, le remplissage de couleurs mélangées sera visible. "
-"Cela ne prendra effet que si la tour de purge est activée."
+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 "La purge aprÚs le changement de filament sera effectuée à l'intérieur des matériaux de remplissage des objets. Cela peut réduire la quantité de déchets et le temps d'impression. Si les parois sont imprimées avec un filament transparent, le remplissage de couleurs mélangées sera visible. Cela ne prendra effet que si la tour de purge est activée."
-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 ""
-"La purge aprÚs le changement de filament se fera à l'intérieur du support "
-"des objets. Cela peut réduire la quantité de déchets et le temps "
-"d'impression. Cela ne prendra effet que si une tour de purge est activée."
+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 "La purge aprÚs le changement de filament se fera à l'intérieur du support des objets. Cela peut réduire la quantité de déchets et le temps d'impression. Cela ne prendra effet que si une tour de purge est activée."
-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 ""
-"Cet objet sera utilisé pour purger la buse aprÚs un changement de filament "
-"afin d'économiser du filament et de réduire le temps d'impression. Les "
-"couleurs des objets seront mélangées en conséquence. Cela ne prendra effet "
-"que si la tour de purge est activée."
+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 "Cet objet sera utilisé pour purger la buse aprÚs un changement de filament afin d'économiser du filament et de réduire le temps d'impression. Les couleurs des objets seront mélangées en conséquence. Cela ne prendra effet que si la tour de purge est activée."
msgid "Maximal bridging distance"
msgstr "Distance de pont maximale"
@@ -14398,67 +11538,35 @@ msgstr "Espacement des lignes de purge sur la tour dâessuyage."
msgid "Extra flow for purging"
msgstr "Débit supplémentaire pour purger"
-msgid ""
-"Extra flow used for the purging lines on the wipe tower. This makes the "
-"purging lines thicker or narrower than they normally would be. The spacing "
-"is adjusted automatically."
-msgstr ""
-"DĂ©bit supplĂ©mentaire utilisĂ© pour les lignes de purge de la tour dâessuyage. "
-"Cela rend les lignes de purge plus Ă©paisses ou plus Ă©troites quâelles ne le "
-"seraient normalement. Lâespacement est ajustĂ© automatiquement."
+msgid "Extra flow used for the purging lines on the wipe tower. This makes the purging lines thicker or narrower than they normally would be. The spacing is adjusted automatically."
+msgstr "DĂ©bit supplĂ©mentaire utilisĂ© pour les lignes de purge de la tour dâessuyage. Cela rend les lignes de purge plus Ă©paisses ou plus Ă©troites quâelles ne le seraient normalement. Lâespacement est ajustĂ© automatiquement."
msgid "Idle temperature"
msgstr "Température au repos"
-msgid ""
-"Nozzle temperature when the tool is currently not used in multi-tool setups."
-"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
-"0 to disable."
-msgstr ""
-"TempĂ©rature de la buse lorsque lâoutil nâest pas utilisĂ© dans les "
-"configurations multi-outils. Cette fonction nâest utilisĂ©e que lorsque la "
-"fonction « Prévention des suintements » est activée dans les paramÚtres "
-"dâimpression. RĂ©gler Ă 0 pour dĂ©sactiver."
+msgid "Nozzle temperature when the tool is currently not used in multi-tool setups.This is only used when 'Ooze prevention' is active in Print Settings. Set to 0 to disable."
+msgstr "TempĂ©rature de la buse lorsque lâoutil nâest pas utilisĂ© dans les configurations multi-outils. Cette fonction nâest utilisĂ©e que lorsque la fonction « PrĂ©vention des suintements » est activĂ©e dans les paramĂštres dâimpression. RĂ©gler Ă 0 pour dĂ©sactiver."
msgid "X-Y hole compensation"
msgstr "Compensation de trou 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 ""
-"Les trous de l'objet seront agrandis ou rétrécis dans le plan XY par la "
-"valeur configurée. Une valeur positive agrandit les trous. Une valeur "
-"négative rend les trous plus petits. Cette fonction est utilisée pour "
-"ajuster légÚrement la taille lorsque l'objet a un problÚme d'assemblage"
+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 "Les trous de l'objet seront agrandis ou rétrécis dans le plan XY par la valeur configurée. Une valeur positive agrandit les trous. Une valeur négative rend les trous plus petits. Cette fonction est utilisée pour ajuster légÚrement la taille lorsque l'objet a un problÚme d'assemblage"
msgid "X-Y contour compensation"
msgstr "Compensation de contour 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 ""
-"Le contour de l'objet sera agrandi ou rétréci dans le plan XY par la valeur "
-"configurée. Une valeur positive agrandit le contour. Une valeur négative "
-"rend le contour plus petit. Cette fonction est utilisée pour ajuster "
-"légÚrement la taille lorsque l'objet a un problÚme d'assemblage"
+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 "Le contour de l'objet sera agrandi ou rétréci dans le plan XY par la valeur configurée. Une valeur positive agrandit le contour. Une valeur négative rend le contour plus petit. Cette fonction est utilisée pour ajuster légÚrement la taille lorsque l'objet a un problÚme d'assemblage"
msgid "Convert holes to polyholes"
msgstr "Convertir les trous en trous polygones"
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 ""
-"Rechercher les trous presque circulaires qui sâĂ©tendent sur plusieurs "
-"couches et convertir la géométrie en trous polygones. Utilise la taille de "
-"la buse et le (plus grand) diamĂštre pour calculer le trou polygone.\n"
+"Rechercher les trous presque circulaires qui sâĂ©tendent sur plusieurs couches et convertir la gĂ©omĂ©trie en trous polygones. Utilise la taille de la buse et le (plus grand) diamĂštre pour calculer le trou polygone.\n"
"Voir http://hydraraptor.blogspot.com/2011/02/polyholes.html"
msgid "Polyhole detection margin"
@@ -14467,15 +11575,11 @@ msgstr "Marge de détection des trous polygones"
#, 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 ""
"DĂ©fection maximale dâun point par rapport au rayon estimĂ© du cercle.\n"
-"Comme les cylindres sont souvent exportés sous forme de triangles de taille "
-"variable, les points peuvent ne pas se trouver sur la circonférence du "
-"cercle. Ce paramĂštre vous permet dâĂ©largir la dĂ©tection.\n"
+"Comme les cylindres sont souvent exportĂ©s sous forme de triangles de taille variable, les points peuvent ne pas se trouver sur la circonfĂ©rence du cercle. Ce paramĂštre vous permet dâĂ©largir la dĂ©tection.\n"
"En mm ou en % du rayon."
msgid "Polyhole twist"
@@ -14487,47 +11591,23 @@ msgstr "Faites pivoter le trou polygone Ă chaque couche."
msgid "G-code thumbnails"
msgstr "Vignette G-code"
-msgid ""
-"Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the "
-"following format: \"XxY, XxY, ...\""
-msgstr ""
-"Tailles des images Ă stocker dans les fichiers .gcode et .sl1/.sl1s, au "
-"format suivant : \"XxY, XxY, ...\""
+msgid "Picture sizes to be stored into a .gcode and .sl1 / .sl1s files, in the following format: \"XxY, XxY, ...\""
+msgstr "Tailles des images Ă stocker dans les fichiers .gcode et .sl1/.sl1s, au format suivant : \"XxY, XxY, ...\""
msgid "Format of G-code thumbnails"
msgstr "Format des vignettes G-code"
-msgid ""
-"Format of G-code thumbnails: PNG for best quality, JPG for smallest size, "
-"QOI for low memory firmware"
-msgstr ""
-"Format des vignettes G-code : PNG pour la meilleure qualité, JPG pour la "
-"plus petite taille, QOI pour les firmwares à faible mémoire"
+msgid "Format of G-code thumbnails: PNG for best quality, JPG for smallest size, QOI for low memory firmware"
+msgstr "Format des vignettes G-code : PNG pour la meilleure qualité, JPG pour la plus petite taille, QOI pour les firmwares à faible mémoire"
msgid "Use relative E distances"
msgstr "Utiliser lâextrusion relative"
-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 ""
-"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"
+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 "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"
-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 ""
-"Le générateur de paroi classique produit des parois avec une largeur "
-"dâextrusion constante et, pour les zones trĂšs fines, il utilise le "
-"remplissage dâespace. Le moteur Arachne produit des parois avec une largeur "
-"dâextrusion variable."
+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 "Le gĂ©nĂ©rateur de paroi classique produit des parois avec une largeur dâextrusion constante et, pour les zones trĂšs fines, il utilise le remplissage dâespace. Le moteur Arachne produit des parois avec une largeur dâextrusion variable."
msgid "Classic"
msgstr "Classique"
@@ -14538,144 +11618,62 @@ msgstr "Arachné"
msgid "Wall transition length"
msgstr "Longueur de la paroi de transition"
-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 ""
-"Lorsque vous passez d'un nombre différent de parois à un autre lorsque la "
-"piÚce s'amincit, un certain espace est alloué pour séparer ou joindre les "
-"segments de la paroi. Exprimé en pourcentage par rapport au diamÚtre de la "
-"buse."
+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 "Lorsque vous passez d'un nombre différent de parois à un autre lorsque la piÚce s'amincit, un certain espace est alloué pour séparer ou joindre les segments de la paroi. Exprimé en pourcentage par rapport au diamÚtre de la buse."
msgid "Wall transitioning filter margin"
msgstr "Marge du filtre de transition de paroi"
-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 ""
-"EmpĂȘchez les allers-retours entre une paroi supplĂ©mentaire et une paroi de "
-"moins. Cette marge étend la plage de largeurs d'extrusion qui suit jusqu'à "
-"[Largeur de paroi minimale - marge, 2* Largeur de paroi minimale + marge]. "
-"L'augmentation de cette marge réduit le nombre de transitions, ce qui réduit "
-"le nombre de dĂ©marrages/arrĂȘts d'extrusion et le temps de trajet. Cependant, "
-"une variation importante de la largeur d'extrusion peut entraĂźner des "
-"problÚmes de sous-extrusion ou de surextrusion. Il est exprimé en "
-"pourcentage par rapport au diamĂštre de la buse"
+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 "EmpĂȘchez les allers-retours entre une paroi supplĂ©mentaire et une paroi de moins. Cette marge Ă©tend la plage de largeurs d'extrusion qui suit jusqu'Ă [Largeur de paroi minimale - marge, 2* Largeur de paroi minimale + marge]. L'augmentation de cette marge rĂ©duit le nombre de transitions, ce qui rĂ©duit le nombre de dĂ©marrages/arrĂȘts d'extrusion et le temps de trajet. Cependant, une variation importante de la largeur d'extrusion peut entraĂźner des problĂšmes de sous-extrusion ou de surextrusion. Il est exprimĂ© en pourcentage par rapport au diamĂštre de la buse"
msgid "Wall transitioning threshold angle"
msgstr "Angle du seuil de transition de la paroi"
-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 ""
-"Quand créer des transitions entre les nombres pairs et impairs de parois. "
-"Une forme cunéiforme dont l'angle est supérieur à ce paramÚtre n'aura pas de "
-"transitions et aucune paroi ne sera imprimé au centre pour remplir l'espace "
-"restant. En réduisant ce paramÚtre, vous réduisez le nombre et la longueur "
-"de ces parois centrales, mais vous risquez de laisser des espaces vides ou "
-"de surextruder les parois."
+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 "Quand créer des transitions entre les nombres pairs et impairs de parois. Une forme cunéiforme dont l'angle est supérieur à ce paramÚtre n'aura pas de transitions et aucune paroi ne sera imprimé au centre pour remplir l'espace restant. En réduisant ce paramÚtre, vous réduisez le nombre et la longueur de ces parois centrales, mais vous risquez de laisser des espaces vides ou de surextruder les parois."
msgid "Wall distribution count"
msgstr "Nombre de parois distribuées"
-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 ""
-"Nombre de parois, comptées à partir du centre, sur lesquelles la variation "
-"doit ĂȘtre rĂ©partie. Des valeurs plus faibles signifient que la largeur des "
-"parois extérieures ne change pas"
+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 "Nombre de parois, comptĂ©es Ă partir du centre, sur lesquelles la variation doit ĂȘtre rĂ©partie. Des valeurs plus faibles signifient que la largeur des parois extĂ©rieures ne change pas"
msgid "Minimum feature size"
msgstr "Taille minimale de l'élément"
-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 ""
-"Ăpaisseur minimale des Ă©lĂ©ments fins. Les caractĂ©ristiques du modĂšle qui "
-"sont plus fines que cette valeur ne seront pas imprimées, tandis que les "
-"entités plus épaisses que la taille minimale seront élargies jusqu'à la "
-"largeur de paroi minimale. Exprimée en pourcentage par rapport au diamÚtre "
-"de la buse"
+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 "Ăpaisseur minimale des Ă©lĂ©ments fins. Les caractĂ©ristiques du modĂšle qui sont plus fines que cette valeur ne seront pas imprimĂ©es, tandis que les entitĂ©s plus Ă©paisses que la taille minimale seront Ă©largies jusqu'Ă la largeur de paroi minimale. ExprimĂ©e en pourcentage par rapport au diamĂštre de la buse"
msgid "Minimum wall length"
msgstr "Longueur minimale de la paroi"
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 ""
-"Ajustez cette valeur pour éviter que des parois courtes et non fermées "
-"soient imprimĂ©es, ce qui pourrait augmenter le temps dâimpression. Des "
-"valeurs plus élevées suppriment des parois plus nombreuses et plus longues.\n"
+"Ajustez cette valeur pour Ă©viter que des parois courtes et non fermĂ©es soient imprimĂ©es, ce qui pourrait augmenter le temps dâimpression. Des valeurs plus Ă©levĂ©es suppriment des parois plus nombreuses et plus longues.\n"
"\n"
-"REMARQUE : les surfaces inférieures et supérieures ne sont pas affectées par "
-"cette valeur afin dâĂ©viter les lacunes visuelles sur le cĂŽtĂ© du modĂšle. "
-"RĂ©glez le « seuil dâune paroi » dans les paramĂštres avancĂ©s ci-dessous pour "
-"ajuster la sensibilité de ce qui est considéré comme une surface supérieure. "
-"Le « seuil dâune paroi » nâest visible que si ce paramĂštre est supĂ©rieur Ă "
-"la valeur par dĂ©faut de 0,5 ou si lâoption « surfaces supĂ©rieures Ă une "
-"paroi » est activée."
+"REMARQUE : les surfaces infĂ©rieures et supĂ©rieures ne sont pas affectĂ©es par cette valeur afin dâĂ©viter les lacunes visuelles sur le cĂŽtĂ© du modĂšle. RĂ©glez le « seuil dâune paroi » dans les paramĂštres avancĂ©s ci-dessous pour ajuster la sensibilitĂ© de ce qui est considĂ©rĂ© comme une surface supĂ©rieure. Le « seuil dâune paroi » nâest visible que si ce paramĂštre est supĂ©rieur Ă la valeur par dĂ©faut de 0,5 ou si lâoption « surfaces supĂ©rieures Ă une paroi » est activĂ©e."
msgid "First layer minimum wall width"
msgstr "Largeur minimale de la paroi de la premiĂšre couche"
-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 ""
-"Il est recommandé de définir la largeur minimale de paroi à utiliser pour la "
-"premiĂšre couche sur la mĂȘme taille que la buse. Cet ajustement devrait "
-"amĂ©liorer lâadhĂ©rence."
+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 "Il est recommandĂ© de dĂ©finir la largeur minimale de paroi Ă utiliser pour la premiĂšre couche sur la mĂȘme taille que la buse. Cet ajustement devrait amĂ©liorer lâadhĂ©rence."
msgid "Minimum wall width"
msgstr "Largeur minimale de la paroi"
-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 ""
-"Largeur de la paroi qui remplacera les éléments fins (selon la taille "
-"minimale des éléments) du modÚle. Si la largeur minimale de la paroi est "
-"inférieure à l'épaisseur de l'élément, la paroi deviendra aussi épaisse que "
-"l'Ă©lĂ©ment lui-mĂȘme. Elle est exprimĂ©e en pourcentage par rapport au diamĂštre "
-"de la buse"
+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 "Largeur de la paroi qui remplacera les Ă©lĂ©ments fins (selon la taille minimale des Ă©lĂ©ments) du modĂšle. Si la largeur minimale de la paroi est infĂ©rieure Ă l'Ă©paisseur de l'Ă©lĂ©ment, la paroi deviendra aussi Ă©paisse que l'Ă©lĂ©ment lui-mĂȘme. Elle est exprimĂ©e en pourcentage par rapport au diamĂštre de la buse"
msgid "Detect narrow internal solid infill"
msgstr "Détecter un remplissage plein interne étroit"
-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 ""
-"Cette option détectera automatiquement la zone de remplissage plein interne "
-"étroite. S'il est activé, un motif concentrique sera utilisé pour la zone "
-"afin d'accélérer l'impression. Sinon, le motif rectiligne est utilisé par "
-"défaut."
+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 "Cette option détectera automatiquement la zone de remplissage plein interne étroite. S'il est activé, un motif concentrique sera utilisé pour la zone afin d'accélérer l'impression. Sinon, le motif rectiligne est utilisé par défaut."
msgid "invalid value "
msgstr "Valeur invalide "
@@ -14699,18 +11697,13 @@ msgid "No check"
msgstr "Pas de vérification"
msgid "Do not run any validity checks, such as gcode path conflicts check."
-msgstr ""
-"Ne pas effectuer de contrÎle de validité, tel que le contrÎle des conflits "
-"de parcours de G-code."
+msgstr "Ne pas effectuer de contrÎle de validité, tel que le contrÎle des conflits de parcours de G-code."
msgid "Ensure on bed"
msgstr "Assurer sur le plateau"
-msgid ""
-"Lift the object above the bed when it is partially below. Disabled by default"
-msgstr ""
-"Placer lâobjet sur le plateau lorsquâil est partiellement en dessous. "
-"Désactivé par défaut"
+msgid "Lift the object above the bed when it is partially below. Disabled by default"
+msgstr "Placer lâobjet sur le plateau lorsquâil est partiellement en dessous. DĂ©sactivĂ© par dĂ©faut"
msgid "Orient Options"
msgstr "Options dâorientation"
@@ -14730,14 +11723,8 @@ msgstr "Angle de rotation autour de lâaxe Y en degrĂ©s."
msgid "Data directory"
msgstr "Répertoire de données"
-msgid ""
-"Load and store settings at the given directory. This is useful for "
-"maintaining different profiles or including configurations from a network "
-"storage."
-msgstr ""
-"Charger et stocker les paramÚtres dans le répertoire donné. Ceci est utile "
-"pour maintenir différents profils ou inclure des configurations à partir "
-"dâun stockage rĂ©seau."
+msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage."
+msgstr "Charger et stocker les paramĂštres dans le rĂ©pertoire donnĂ©. Ceci est utile pour maintenir diffĂ©rents profils ou inclure des configurations Ă partir dâun stockage rĂ©seau."
msgid "Load custom gcode"
msgstr "Charger un G-code personnalisé"
@@ -14751,42 +11738,23 @@ msgstr "Saut en z actuel"
msgid "Contains z-hop present at the beginning of the custom G-code block."
msgstr "Contient le saut en z présent au début du bloc de G-code personnalisé."
-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 ""
-"Position de lâextrudeuse au dĂ©but du bloc de G-code personnalisĂ©. Si le G-"
-"code personnalisé se déplace ailleurs, il doit écrire dans cette variable "
-"afin que PrusaSlicer sache dâoĂč il se dĂ©place lorsquâil reprend le contrĂŽle."
+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 "Position de lâextrudeuse au dĂ©but du bloc de G-code personnalisĂ©. Si le G-code personnalisĂ© se dĂ©place ailleurs, il doit Ă©crire dans cette variable afin que PrusaSlicer sache dâoĂč il se dĂ©place lorsquâil reprend le contrĂŽle."
-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 ""
-"Ătat de rĂ©traction au dĂ©but du bloc de G-code personnalisĂ©. Si le G-code "
-"personnalisĂ© dĂ©place lâaxe de lâextrudeuse, il doit Ă©crire dans cette "
-"variable pour que PrusaSlicer se rĂ©tracte correctement lorsquâil reprend le "
-"contrĂŽle."
+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 "Ătat de rĂ©traction au dĂ©but du bloc de G-code personnalisĂ©. Si le G-code personnalisĂ© dĂ©place lâaxe de lâextrudeuse, il doit Ă©crire dans cette variable pour que PrusaSlicer se rĂ©tracte correctement lorsquâil reprend le contrĂŽle."
msgid "Extra deretraction"
msgstr "Dérétraction supplémentaire"
msgid "Currently planned extra extruder priming after deretraction."
-msgstr ""
-"Lâamorçage supplĂ©mentaire de lâextrudeuse aprĂšs la dĂ©rĂ©traction est "
-"actuellement prévu."
+msgstr "Lâamorçage supplĂ©mentaire de lâextrudeuse aprĂšs la dĂ©rĂ©traction est actuellement prĂ©vu."
msgid "Absolute E position"
msgstr "Position E absolue"
-msgid ""
-"Current position of the extruder axis. Only used with absolute extruder "
-"addressing."
-msgstr ""
-"Position actuelle de lâaxe de lâextrudeuse. UtilisĂ© uniquement avec "
-"lâadressage absolu de de Iâextrudeur."
+msgid "Current position of the extruder axis. Only used with absolute extruder addressing."
+msgstr "Position actuelle de lâaxe de lâextrudeuse. UtilisĂ© uniquement avec lâadressage absolu de de Iâextrudeur."
msgid "Current extruder"
msgstr "Extrudeur actuel"
@@ -14797,12 +11765,8 @@ msgstr "Index Ă base zĂ©ro de lâextrudeur actuellement utilisĂ©."
msgid "Current object index"
msgstr "Index de lâobjet actuel"
-msgid ""
-"Specific for sequential printing. Zero-based index of currently printed "
-"object."
-msgstr ""
-"SpĂ©cifique Ă lâimpression sĂ©quentielle. Index basĂ© sur zĂ©ro de lâobjet en "
-"cours dâimpression."
+msgid "Specific for sequential printing. Zero-based index of currently printed object."
+msgstr "SpĂ©cifique Ă lâimpression sĂ©quentielle. Index basĂ© sur zĂ©ro de lâobjet en cours dâimpression."
msgid "Has wipe tower"
msgstr "PossĂšde une tour dâessuyage"
@@ -14813,46 +11777,32 @@ msgstr "Indique si la tour dâessuyage est gĂ©nĂ©rĂ©e ou non dans lâimpressio
msgid "Initial extruder"
msgstr "Extrudeur initial"
-msgid ""
-"Zero-based index of the first extruder used in the print. Same as "
-"initial_tool."
-msgstr ""
-"Index basĂ© sur zĂ©ro du premier extrudeur utilisĂ© dans lâimpression. "
-"Identique Ă initial_tool."
+msgid "Zero-based index of the first extruder used in the print. Same as initial_tool."
+msgstr "Index basĂ© sur zĂ©ro du premier extrudeur utilisĂ© dans lâimpression. Identique Ă initial_tool."
msgid "Initial tool"
msgstr "Outil de départ"
-msgid ""
-"Zero-based index of the first extruder used in the print. Same as "
-"initial_extruder."
-msgstr ""
-"Index basĂ© sur zĂ©ro du premier extrudeur utilisĂ© dans lâimpression. "
-"Identique Ă initial_extruder."
+msgid "Zero-based index of the first extruder used in the print. Same as initial_extruder."
+msgstr "Index basĂ© sur zĂ©ro du premier extrudeur utilisĂ© dans lâimpression. Identique Ă initial_extruder."
msgid "Is extruder used?"
msgstr "Lâextrudeur est-il utilisĂ© ?"
msgid "Vector of bools stating whether a given extruder is used in the print."
-msgstr ""
-"Vecteur de bools indiquant si un extrudeur donné est utilisé dans "
-"lâimpression."
+msgstr "Vecteur de bools indiquant si un extrudeur donnĂ© est utilisĂ© dans lâimpression."
msgid "Has single extruder MM priming"
msgstr "Dispose dâun seul extrudeur MM dâamorçage"
msgid "Are the extra multi-material priming regions used in this print?"
-msgstr ""
-"Les rĂ©gions dâamorçage multimatĂ©riaux supplĂ©mentaires sont-elles utilisĂ©es "
-"dans cette impression ?"
+msgstr "Les rĂ©gions dâamorçage multimatĂ©riaux supplĂ©mentaires sont-elles utilisĂ©es dans cette impression ?"
msgid "Volume per extruder"
msgstr "Volume par extrudeur"
msgid "Total filament volume extruded per extruder during the entire print."
-msgstr ""
-"Volume total de filament extrudé par extrudeur pendant toute la durée de "
-"lâimpression."
+msgstr "Volume total de filament extrudĂ© par extrudeur pendant toute la durĂ©e de lâimpression."
msgid "Total toolchanges"
msgstr "Nombre total de changements dâoutils"
@@ -14864,28 +11814,19 @@ msgid "Total volume"
msgstr "Volume total"
msgid "Total volume of filament used during the entire print."
-msgstr ""
-"Volume total de filament utilisĂ© pendant toute la durĂ©e de lâimpression."
+msgstr "Volume total de filament utilisĂ© pendant toute la durĂ©e de lâimpression."
msgid "Weight per extruder"
msgstr "Poids par extrudeur"
-msgid ""
-"Weight per extruder extruded during the entire print. Calculated from "
-"filament_density value in Filament Settings."
-msgstr ""
-"Poids par extrudeur extrudĂ© pendant toute la durĂ©e de lâimpression. CalculĂ© "
-"Ă partir de la valeur filament_density dans Filament Settings."
+msgid "Weight per extruder extruded during the entire print. Calculated from filament_density value in Filament Settings."
+msgstr "Poids par extrudeur extrudĂ© pendant toute la durĂ©e de lâimpression. CalculĂ© Ă partir de la valeur filament_density dans Filament Settings."
msgid "Total weight"
msgstr "Poids total"
-msgid ""
-"Total weight of the print. Calculated from filament_density value in "
-"Filament Settings."
-msgstr ""
-"Poids total de lâimpression. CalculĂ© Ă partir de la valeur filament_density "
-"dans Filament Settings."
+msgid "Total weight of the print. Calculated from filament_density value in Filament Settings."
+msgstr "Poids total de lâimpression. CalculĂ© Ă partir de la valeur filament_density dans Filament Settings."
msgid "Total layer count"
msgstr "Nombre total de couches"
@@ -14903,22 +11844,16 @@ msgid "Number of instances"
msgstr "Nombre dâinstances"
msgid "Total number of object instances in the print, summed over all objects."
-msgstr ""
-"Nombre total dâinstances dâobjets dans lâimpression, additionnĂ© Ă tous les "
-"objets."
+msgstr "Nombre total dâinstances dâobjets dans lâimpression, additionnĂ© Ă tous les objets."
msgid "Scale per object"
msgstr "Mise Ă lâĂ©chelle par objet"
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 ""
-"Contient une chaĂźne de caractĂšres contenant des informations sur la mise Ă "
-"lâĂ©chelle appliquĂ©e aux diffĂ©rents objets. Lâindexation des objets est basĂ©e "
-"sur le zĂ©ro (le premier objet a lâindex 0).\n"
+"Contient une chaĂźne de caractĂšres contenant des informations sur la mise Ă lâĂ©chelle appliquĂ©e aux diffĂ©rents objets. Lâindexation des objets est basĂ©e sur le zĂ©ro (le premier objet a lâindex 0).\n"
"Exemple : « x:100% y:50% z:100 »."
msgid "Input filename without extension"
@@ -14927,32 +11862,20 @@ msgstr "Nom du fichier dâentrĂ©e sans extension"
msgid "Source filename of the first object, without extension."
msgstr "Nom du fichier source du premier objet, sans extension."
-msgid ""
-"The vector has two elements: x and y coordinate of the point. Values in mm."
-msgstr ""
-"Le vecteur a deux éléments : les coordonnées x et y du point. Valeurs en mm."
+msgid "The vector has two elements: x and y coordinate of the point. Values in mm."
+msgstr "Le vecteur a deux éléments : les coordonnées x et y du point. Valeurs en mm."
-msgid ""
-"The vector has two elements: x and y dimension of the bounding box. Values "
-"in mm."
-msgstr ""
-"Le vecteur a deux éléments : les dimensions x et y de la boßte de "
-"délimitation. Valeurs en mm."
+msgid "The vector has two elements: x and y dimension of the bounding box. Values in mm."
+msgstr "Le vecteur a deux éléments : les dimensions x et y de la boßte de délimitation. Valeurs en mm."
msgid "First layer convex hull"
msgstr "Coque convexe de la premiĂšre couche"
-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 ""
-"Vecteur de points de la premiÚre couche de la coque convexe. Chaque élément "
-"a le format suivant : â[x, y]â (x et y sont des nombres Ă virgule flottante "
-"en 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 "Vecteur de points de la premiĂšre couche de la coque convexe. Chaque Ă©lĂ©ment a le format suivant : â[x, y]â (x et y sont des nombres Ă virgule flottante en mm)."
msgid "Bottom-left corner of first layer bounding box"
-msgstr ""
-"Coin inférieur gauche de la boßte de délimitation de la premiÚre couche"
+msgstr "Coin inférieur gauche de la boßte de délimitation de la premiÚre couche"
msgid "Top-right corner of first layer bounding box"
msgstr "Coin supérieur droit de la boßte de délimitation de la premiÚre couche"
@@ -14964,8 +11887,7 @@ msgid "Bottom-left corner of print bed bounding box"
msgstr "Coin infĂ©rieur gauche de la boĂźte de dĂ©limitation du lit dâimpression"
msgid "Top-right corner of print bed bounding box"
-msgstr ""
-"Coin supĂ©rieur droit de la boĂźte de dĂ©limitation du plateau dâimpression"
+msgstr "Coin supĂ©rieur droit de la boĂźte de dĂ©limitation du plateau dâimpression"
msgid "Size of the print bed bounding box"
msgstr "Taille du plateau dâimpression"
@@ -14994,12 +11916,8 @@ msgstr "Nom du prĂ©rĂ©glage dâimpression utilisĂ© pour le dĂ©coupage."
msgid "Filament preset name"
msgstr "Nom du préréglage du filament"
-msgid ""
-"Names of the filament presets used for slicing. The variable is a vector "
-"containing one name for each extruder."
-msgstr ""
-"Noms des préréglages de filaments utilisés pour le découpage. La variable "
-"est un vecteur contenant un nom pour chaque extrudeur."
+msgid "Names of the filament presets used for slicing. The variable is a vector containing one name for each extruder."
+msgstr "Noms des préréglages de filaments utilisés pour le découpage. La variable est un vecteur contenant un nom pour chaque extrudeur."
msgid "Printer preset name"
msgstr "Nom du prĂ©rĂ©glage de lâimprimante"
@@ -15016,30 +11934,20 @@ msgstr "Nom de lâimprimante physique utilisĂ© pour la dĂ©coupe."
msgid "Number of extruders"
msgstr "Nombre dâextrudeurs"
-msgid ""
-"Total number of extruders, regardless of whether they are used in the "
-"current print."
-msgstr ""
-"Nombre total dâextrudeurs, quâils soient ou non utilisĂ©es dans lâimpression "
-"en cours."
+msgid "Total number of extruders, regardless of whether they are used in the current print."
+msgstr "Nombre total dâextrudeurs, quâils soient ou non utilisĂ©es dans lâimpression en cours."
msgid "Layer number"
msgstr "Numéro de couche"
msgid "Index of the current layer. One-based (i.e. first layer is number 1)."
-msgstr ""
-"Indice de la couche actuelle. Base unitaire (câest-Ă -dire que la premiĂšre "
-"couche porte le numéro 1)."
+msgstr "Indice de la couche actuelle. Base unitaire (câest-Ă -dire que la premiĂšre couche porte le numĂ©ro 1)."
msgid "Layer z"
msgstr "Couche z"
-msgid ""
-"Height of the current layer above the print bed, measured to the top of the "
-"layer."
-msgstr ""
-"Hauteur de la couche actuelle au-dessus du plateau dâimpression, mesurĂ©e "
-"jusquâau sommet de la couche."
+msgid "Height of the current layer above the print bed, measured to the top of the layer."
+msgstr "Hauteur de la couche actuelle au-dessus du plateau dâimpression, mesurĂ©e jusquâau sommet de la couche."
msgid "Maximal layer z"
msgstr "Couche maximale z"
@@ -15084,12 +11992,8 @@ msgid "large overhangs"
msgstr "grands surplombs"
#, c-format, boost-format
-msgid ""
-"It seems object %s has %s. Please re-orient the object or enable support "
-"generation."
-msgstr ""
-"Il semble que l'objet %s possÚde %s. Veuillez réorienter l'objet ou activer "
-"la génération de support."
+msgid "It seems object %s has %s. Please re-orient the object or enable support generation."
+msgstr "Il semble que l'objet %s possÚde %s. Veuillez réorienter l'objet ou activer la génération de support."
msgid "Optimizing toolpath"
msgstr "Optimisation du parcours d'outil"
@@ -15097,22 +12001,15 @@ msgstr "Optimisation du parcours d'outil"
msgid "Slicing mesh"
msgstr "Découpe du maillage"
-msgid ""
-"No layers were detected. You might want to repair your STL file(s) or check "
-"their size or thickness and retry.\n"
-msgstr ""
-"Aucune couche n'a été détectée. Vous pouvez réparer vos STL, vérifier leur "
-"taille ou leur épaisseur et réessayer.\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 "Aucune couche n'a été détectée. Vous pouvez réparer vos STL, vérifier leur taille ou leur épaisseur et réessayer.\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 ""
-"La compensation de la taille XY d'un objet ne sera pas utilisée parce qu'il "
-"est également peint en couleur.\n"
-"La compensation de la taille XY ne peut pas ĂȘtre combinĂ©e avec la peinture "
-"couleur."
+"La compensation de la taille XY d'un objet ne sera pas utilisée parce qu'il est également peint en couleur.\n"
+"La compensation de la taille XY ne peut pas ĂȘtre combinĂ©e avec la peinture couleur."
#, c-format, boost-format
msgid "Support: generate toolpath at layer %d"
@@ -15145,11 +12042,8 @@ msgstr "Support : Correction des trous dans la couche %d"
msgid "Support: propagate branches at layer %d"
msgstr "Support : propagation des branches Ă la couche %d"
-msgid ""
-"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
-msgstr ""
-"Format de fichier inconnu : le fichier d'entrée doit porter l'extension ."
-"stl, .obj ou .amf (.xml)."
+msgid "Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
+msgstr "Format de fichier inconnu : le fichier d'entrée doit porter l'extension .stl, .obj ou .amf (.xml)."
msgid "Loading of a model file failed."
msgstr "Le chargement du fichier modÚle a échoué."
@@ -15158,9 +12052,7 @@ msgid "The supplied file couldn't be read because it's empty"
msgstr "Le fichier fourni n'a pas pu ĂȘtre lu car il est vide."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
-msgstr ""
-"Format de fichier inconnu : le fichier d'entrée doit porter "
-"l'extension .3mf, .zip ou .amf."
+msgstr "Format de fichier inconnu : le fichier d'entrée doit porter l'extension .3mf, .zip ou .amf."
msgid "Canceled"
msgstr "Annulé"
@@ -15219,18 +12111,14 @@ msgstr "Terminer"
msgid "How to use calibration result?"
msgstr "Comment utiliser le résultat de la calibration ?"
-msgid ""
-"You could change the Flow Dynamics Calibration Factor in material editing"
-msgstr ""
-"Vous pouvez modifier le facteur de calibration dynamique du débit dans les "
-"paramĂštres du filament"
+msgid "You could change the Flow Dynamics Calibration Factor in material editing"
+msgstr "Vous pouvez modifier le facteur de calibration dynamique du débit dans les paramÚtres du filament"
msgid ""
"The current firmware version of the printer does not support calibration.\n"
"Please upgrade the printer firmware."
msgstr ""
-"La version actuelle du firmware de l'imprimante ne prend pas en charge la "
-"calibration.\n"
+"La version actuelle du firmware de l'imprimante ne prend pas en charge la calibration.\n"
"Veuillez mettre Ă jour le firmware de l'imprimante."
msgid "Calibration not supported"
@@ -15281,11 +12169,8 @@ msgstr "Le nom est le mĂȘme quâun autre nom de prĂ©rĂ©glage existant"
msgid "create new preset failed."
msgstr "La crĂ©ation dâun nouveau prĂ©rĂ©glage a Ă©chouĂ©."
-msgid ""
-"Are you sure to cancel the current calibration and return to the home page?"
-msgstr ""
-"Voulez-vous vraiment annuler la calibration en cours et revenir Ă la page "
-"dâaccueil ?"
+msgid "Are you sure to cancel the current calibration and return to the home page?"
+msgstr "Voulez-vous vraiment annuler la calibration en cours et revenir Ă la page dâaccueil ?"
msgid "No Printer Connected!"
msgstr "Aucune imprimante connectée !"
@@ -15300,16 +12185,10 @@ msgid "The input value size must be 3."
msgstr "La valeur saisie doit ĂȘtre 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 ""
-"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"
+"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..."
@@ -15319,27 +12198,15 @@ msgid "The failed test result has been dropped."
msgstr "Le résultat du test ayant échoué a été supprimé."
msgid "Flow Dynamics Calibration result has been saved to the printer"
-msgstr ""
-"Le résultat de la calibration dynamique du débit a été enregistré sur "
-"lâimprimante"
+msgstr "Le rĂ©sultat de la calibration dynamique du dĂ©bit a Ă©tĂ© enregistrĂ© sur lâimprimante"
#, 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 ""
-"Il existe dĂ©jĂ un rĂ©sultat dâĂ©talonnage antĂ©rieur portant le mĂȘme nom : %s. "
-"Un seul des rĂ©sultats portant le mĂȘme nom est sauvegardĂ©. Ătes-vous sĂ»r de "
-"vouloir remplacer le résultat antérieur ?"
+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 "Il existe dĂ©jĂ un rĂ©sultat dâĂ©talonnage antĂ©rieur portant le mĂȘme nom : %s. Un seul des rĂ©sultats portant le mĂȘme nom est sauvegardĂ©. Ătes-vous sĂ»r de vouloir remplacer le rĂ©sultat antĂ©rieur ?"
#, c-format, boost-format
-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 "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"
@@ -15348,36 +12215,24 @@ msgid "Please select at least one filament for calibration"
msgstr "Veuillez sélectionner au moins un filament pour la calibration"
msgid "Flow rate calibration result has been saved to preset"
-msgstr ""
-"Le résultat de la calibration du débit a été enregistré dans le préréglage"
+msgstr "Le résultat de la calibration du débit a été enregistré dans le préréglage"
msgid "Max volumetric speed calibration result has been saved to preset"
-msgstr ""
-"Le résultat de la calibration de la vitesse volumétrique maximale a été "
-"enregistré dans le préréglage"
+msgstr "Le résultat de la calibration de la vitesse volumétrique maximale a été enregistré dans le préréglage"
msgid "When do you need Flow Dynamics Calibration"
msgstr "Nécessité de la calibration dynamique du débit"
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 ""
-"Nous avons maintenant ajouté l'auto-calibration pour différents filaments, "
-"qui est entiÚrement automatisée et le résultat sera enregistré dans "
-"l'imprimante pour une utilisation future. Vous n'avez besoin d'effectuer la "
-"calibration que dans les cas limités suivants :\n"
-"1. Si vous utilisez un nouveau filament de marques/modÚles différents ou si "
-"le filament est humide\n"
+"Nous avons maintenant ajouté l'auto-calibration pour différents filaments, qui est entiÚrement automatisée et le résultat sera enregistré dans l'imprimante pour une utilisation future. Vous n'avez besoin d'effectuer la calibration que dans les cas limités suivants :\n"
+"1. Si vous utilisez un nouveau filament de marques/modÚles différents ou si le filament est humide\n"
"2. Si la buse est usée ou remplacée par une neuve\n"
-"3. Si la vitesse volumétrique maximale ou la température d'impression est "
-"modifiée dans les préréglages du filament."
+"3. Si la vitesse volumétrique maximale ou la température d'impression est modifiée dans les préréglages du filament."
msgid "About this calibration"
msgstr "Ă propos de cette calibration"
@@ -15385,134 +12240,54 @@ msgstr "Ă propos de cette calibration"
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 that there are a few cases that can make the calibration results "
-"unreliable, such as insufficient adhesion on the build plate. Improving "
-"adhesion can be achieved by washing the build plate or applying glue. For "
-"more information on this topic, please refer to our Wiki.\n"
+"Please note that there are a few cases that can make the calibration results unreliable, such as insufficient adhesion on the build plate. Improving adhesion can be achieved by washing the build plate or applying glue. For more information on this topic, please refer to 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 ""
-"Vous trouverez les détails de l'étalonnage de la dynamique des flux dans "
-"notre wiki.\n"
+"Vous trouverez les détails de l'étalonnage de la dynamique des débits dans notre wiki.\n"
"\n"
-"En gĂ©nĂ©ral, la calibration nâest pas nĂ©cessaire. Lorsque vous dĂ©marrez une "
-"impression mono-couleur/matĂ©riau, avec lâoption « calibration de la "
-"dynamique de flux » cochĂ©e dans le menu de dĂ©marrage de lâimpression, "
-"lâimprimante suivra lâancienne mĂ©thode, en calibrant le filament avant "
-"lâimpression ; Lorsque vous dĂ©marrez une impression multi-couleur/matĂ©riau, "
-"lâimprimante utilisera le paramĂštre de compensation par dĂ©faut pour le "
-"filament lors de chaque changement de filament, ce qui donnera un bon "
-"résultat dans la plupart des cas.\n"
+"En gĂ©nĂ©ral, la calibration nâest pas nĂ©cessaire. Lorsque vous dĂ©marrez une impression mono-couleur/matĂ©riau, avec lâoption « calibration de la dynamique de flux » cochĂ©e dans le menu de dĂ©marrage de lâimpression, lâimprimante suivra lâancienne mĂ©thode, en calibrant le filament avant lâimpression ; Lorsque vous dĂ©marrez une impression multi-couleur/matĂ©riau, lâimprimante utilisera le paramĂštre de compensation par dĂ©faut pour le filament lors de chaque changement de filament, ce qui donnera un bon rĂ©sultat dans la plupart des cas.\n"
"\n"
-"Veuillez noter quâil existe quelques cas qui peuvent rendre les rĂ©sultats de "
-"la calibration peu fiables, tels quâune adhĂ©rence insuffisante sur le "
-"plateau. Il est possible dâamĂ©liorer lâadhĂ©rence en lavant la plaque de "
-"construction ou en appliquant de la colle. Pour plus dâinformations Ă ce "
-"sujet, veuillez consulter notre Wiki.\n"
+"Veuillez noter quâil existe quelques cas qui peuvent rendre les rĂ©sultats de la calibration peu fiables, tels quâune adhĂ©rence insuffisante sur le plateau. Il est possible dâamĂ©liorer lâadhĂ©rence en lavant la plaque de construction ou en appliquant de la colle. Pour plus dâinformations Ă ce sujet, veuillez consulter notre Wiki.\n"
"\n"
-"Les rĂ©sultats de la calibration prĂ©sentent une fluctuation dâenviron 10 % "
-"dans notre test, ce qui peut entraßner une différence entre les résultats de "
-"chaque calibration. Nous continuons dâĂ©tudier la cause premiĂšre afin "
-"dâapporter des amĂ©liorations lors des nouvelles mises Ă jour."
+"Les rĂ©sultats de la calibration prĂ©sentent une fluctuation dâenviron 10 % dans notre test, ce qui peut entraĂźner une diffĂ©rence entre les rĂ©sultats de chaque calibration. Nous continuons dâĂ©tudier la cause premiĂšre afin dâapporter des amĂ©liorations lors des nouvelles mises Ă jour."
msgid "When to use Flow Rate Calibration"
msgstr "Nécessité de la calibration du débit"
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 ""
-"AprÚs avoir utilisé la calibration dynamique du débit, il peut encore y "
-"avoir des problĂšmes d'extrusion, tels que :\n"
-"1. Sur-extrusion : ExcÚs de matiÚre sur votre objet imprimé, formant des "
-"gouttes ou des boutons, ou si les couches semblent plus épaisses que prévu "
-"et non uniformes.\n"
-"2. Sous-extrusion : Couches trÚs fines, une faible solidité du remplissage "
-"ou des espaces dans la couche supĂ©rieure du modĂšle, mĂȘme si l'impression est "
-"lente\n"
-"3. Mauvaise qualité de surface : Si la surface de vos impressions semble "
-"rugueuse ou inégale.\n"
-"4. Faible intégrité structurelle : Impressions qui cassent facilement ou ne "
-"semblent pas aussi solides qu'elles le devraient."
+"AprÚs avoir utilisé la calibration dynamique du débit, il peut encore y avoir des problÚmes d'extrusion, tels que :\n"
+"1. Sur-extrusion : ExcÚs de matiÚre sur votre objet imprimé, formant des gouttes ou des boutons, ou si les couches semblent plus épaisses que prévu et non uniformes.\n"
+"2. Sous-extrusion : Couches trĂšs fines, une faible soliditĂ© du remplissage ou des espaces dans la couche supĂ©rieure du modĂšle, mĂȘme si l'impression est lente\n"
+"3. Mauvaise qualité de surface : Si la surface de vos impressions semble rugueuse ou inégale.\n"
+"4. Faible intégrité structurelle : Impressions qui cassent facilement ou ne semblent pas aussi solides qu'elles le devraient."
+
+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 "De plus, la calibration du débit est cruciale pour les matériaux dotés de la technologie de mousse active comme le LW-PLA utilisés dans les avions RC. Ces matériaux se dilatent considérablement lorsqu'ils sont chauffés et la calibration fournit un débit de référence utile."
+
+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 "La calibration du dĂ©bit mesure le ratio entre les volumes dâextrusion attendus et rĂ©els. Le rĂ©glage par dĂ©faut fonctionne bien sur les imprimantes Bambu Lab et les filaments officiels car ils ont Ă©tĂ© prĂ©-calibrĂ©s et affinĂ©s. Pour un filament ordinaire, vous nâaurez gĂ©nĂ©ralement pas besoin dâeffectuer une calibration du dĂ©bit Ă moins que vous ne voyiez toujours les dĂ©fauts rĂ©pertoriĂ©s aprĂšs avoir effectuĂ© dâautres calibrations. Pour plus de dĂ©tails, veuillez consulter lâarticle du wiki."
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."
+"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 ""
-"De plus, la calibration du débit est cruciale pour les matériaux dotés de la "
-"technologie de mousse active comme le LW-PLA utilisés dans les avions RC. "
-"Ces matériaux se dilatent considérablement lorsqu'ils sont chauffés et la "
-"calibration fournit un débit de référence utile."
-
-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 ""
-"La calibration du dĂ©bit mesure le ratio entre les volumes dâextrusion "
-"attendus et réels. Le réglage par défaut fonctionne bien sur les imprimantes "
-"Bambu Lab et les filaments officiels car ils ont été pré-calibrés et "
-"affinĂ©s. Pour un filament ordinaire, vous nâaurez gĂ©nĂ©ralement pas besoin "
-"dâeffectuer une calibration du dĂ©bit Ă moins que vous ne voyiez toujours les "
-"dĂ©fauts rĂ©pertoriĂ©s aprĂšs avoir effectuĂ© dâautres calibrations. Pour plus de "
-"dĂ©tails, veuillez consulter lâarticle du 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"
+"La calibration automatique du dĂ©bit utilise la technologie Micro-Lidar de Bambu Lab, mesurant directement les modĂšles de calibration. Cependant, veuillez noter que lâefficacitĂ© et la prĂ©cision de cette mĂ©thode peuvent ĂȘtre compromises avec des types de matĂ©riaux spĂ©cifiques. En particulier, les filaments qui sont transparents ou semi-transparents, Ă particules scintillantes ou qui ont une finition hautement rĂ©flĂ©chissante peuvent ne pas convenir Ă cette calibration et peuvent produire des rĂ©sultats moins que souhaitables.\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"
+"Les rĂ©sultats dâĂ©talonnage peuvent varier entre chaque calibration ou filament. Nous amĂ©liorons toujours la prĂ©cision et la compatibilitĂ© de cette calibration grĂące aux mises Ă jour du firmware au fil du temps.\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 ""
-"La calibration automatique du débit utilise la technologie Micro-Lidar de "
-"Bambu Lab, mesurant directement les modĂšles de calibration. Cependant, "
-"veuillez noter que lâefficacitĂ© et la prĂ©cision de cette mĂ©thode peuvent "
-"ĂȘtre compromises avec des types de matĂ©riaux spĂ©cifiques. En particulier, "
-"les filaments qui sont transparents ou semi-transparents, Ă particules "
-"scintillantes ou qui ont une finition hautement réfléchissante peuvent ne "
-"pas convenir à cette calibration et peuvent produire des résultats moins que "
-"souhaitables.\n"
-"\n"
-"Les rĂ©sultats dâĂ©talonnage peuvent varier entre chaque calibration ou "
-"filament. Nous améliorons toujours la précision et la compatibilité de cette "
-"calibration grĂące aux mises Ă jour du firmware au fil du temps.\n"
-"\n"
-"Attention : la calibration du débit est un processus avancé, qui ne doit "
-"ĂȘtre tentĂ© que par ceux qui comprennent parfaitement son objectif et ses "
-"implications. Une utilisation incorrecte peut entraĂźner des impressions de "
-"qualitĂ© infĂ©rieure ou endommager lâimprimante. Assurez-vous de lire "
-"attentivement et de comprendre le processus avant de le faire."
+"Attention : la calibration du dĂ©bit est un processus avancĂ©, qui ne doit ĂȘtre tentĂ© que par ceux qui comprennent parfaitement son objectif et ses implications. Une utilisation incorrecte peut entraĂźner des impressions de qualitĂ© infĂ©rieure ou endommager lâimprimante. Assurez-vous de lire attentivement et de comprendre le processus avant de le faire."
msgid "When you need Max Volumetric Speed Calibration"
msgstr "Nécessité de la calibration de la vitesse volumétrique maximale"
@@ -15521,9 +12296,7 @@ msgid "Over-extrusion or under extrusion"
msgstr "Sur-extrusion ou sous-extrusion"
msgid "Max Volumetric Speed calibration is recommended when you print with:"
-msgstr ""
-"La calibration de la vitesse volumétrique maximale est recommandée lorsque "
-"vous imprimez avec :"
+msgstr "La calibration de la vitesse volumétrique maximale est recommandée lorsque vous imprimez avec :"
msgid "material with significant thermal shrinkage/expansion, such as..."
msgstr "un matĂ©riau avec un retrait/dilatation thermique important, tel queâŠ"
@@ -15532,39 +12305,25 @@ msgid "materials with inaccurate filament diameter"
msgstr "des matériaux avec un diamÚtre de filament imprécis"
msgid "We found the best Flow Dynamics Calibration Factor"
-msgstr ""
-"Nous avons trouvé le meilleur facteur de calibration dynamique du débit"
+msgstr "Nous avons trouvé le meilleur facteur de calibration dynamique du débit"
-msgid ""
-"Part of the calibration failed! You may clean the plate and retry. The "
-"failed test result would be dropped."
-msgstr ""
-"Une partie de la calibration a échoué ! Vous pouvez nettoyer le plateau et "
-"réessayer. Le résultat du test échoué serai abandonné."
+msgid "Part of the calibration failed! You may clean the plate and retry. The failed test result would be dropped."
+msgstr "Une partie de la calibration a échoué ! Vous pouvez nettoyer le plateau et réessayer. Le résultat du test échoué serai abandonné."
-msgid ""
-"*We recommend you to add brand, materia, type, and even humidity level in "
-"the Name"
-msgstr ""
-"*Nous vous recommandons dâajouter la marque, la matiĂšre, le type et mĂȘme le "
-"niveau dâhumiditĂ© dans le nom"
+msgid "*We recommend you to add brand, materia, type, and even humidity level in the Name"
+msgstr "*Nous vous recommandons dâajouter la marque, la matiĂšre, le type et mĂȘme le niveau dâhumiditĂ© dans le nom"
msgid "Failed"
msgstr "ĂchouĂ©"
msgid "Please enter the name you want to save to printer."
-msgstr ""
-"Veuillez saisir le nom que vous souhaitez enregistrer sur lâimprimante."
+msgstr "Veuillez saisir le nom que vous souhaitez enregistrer sur lâimprimante."
msgid "The name cannot exceed 40 characters."
msgstr "Le nom ne peut pas dépasser 40 caractÚres."
-msgid ""
-"Only one of the results with the same name will be saved. Are you sure you "
-"want to override the other results?"
-msgstr ""
-"Seul un des rĂ©sultats portant le mĂȘme nom sera enregistrĂ©. Ătes-vous sĂ»r de "
-"vouloir annuler les autres résultats ?"
+msgid "Only one of the results with the same name will be saved. Are you sure you want to override the other results?"
+msgstr "Seul un des rĂ©sultats portant le mĂȘme nom sera enregistrĂ©. Ătes-vous sĂ»r de vouloir annuler les autres rĂ©sultats ?"
msgid "Please find the best line on your plate"
msgstr "Veuillez trouver la meilleure ligne sur votre plateau"
@@ -15606,9 +12365,7 @@ msgid "Please find the best object on your plate"
msgstr "Veuillez trouver le meilleur objet sur votre plateau"
msgid "Fill in the value above the block with smoothest top surface"
-msgstr ""
-"Remplissez la valeur au-dessus du bloc avec la surface supérieure la plus "
-"lisse"
+msgstr "Remplissez la valeur au-dessus du bloc avec la surface supérieure la plus lisse"
msgid "Skip Calibration2"
msgstr "Ignorer la Calibration 2"
@@ -15624,8 +12381,7 @@ msgid "Please choose a block with smoothest top surface."
msgstr "Veuillez choisir un bloc avec la surface supérieure la plus lisse."
msgid "Please input a valid value (0 <= Max Volumetric Speed <= 60)"
-msgstr ""
-"Veuillez entrer une valeur valide (0 <= Vitesse volumétrique max <= 60)"
+msgstr "Veuillez entrer une valeur valide (0 <= Vitesse volumétrique max <= 60)"
msgid "Calibration Type"
msgstr "Type de calibration"
@@ -15639,12 +12395,8 @@ msgstr "Calibration précise basée sur le ratio du débit"
msgid "Title"
msgstr "Titre"
-msgid ""
-"A test model will be printed. Please clear the build plate and place it back "
-"to the hot bed before calibration."
-msgstr ""
-"Un modÚle de test sera imprimé. Veuillez nettoyer le plateau avant la "
-"calibration."
+msgid "A test model will be printed. Please clear the build plate and place it back to the hot bed before calibration."
+msgstr "Un modÚle de test sera imprimé. Veuillez nettoyer le plateau avant la calibration."
msgid "Printing Parameters"
msgstr "ParamĂštres dâimpression"
@@ -15668,8 +12420,7 @@ msgid ""
msgstr ""
"Conseils pour le matériau de calibration :\n"
"- MatĂ©riaux pouvant partager la mĂȘme tempĂ©rature du plateau\n"
-"- Différentes marques et familles de filaments (Marque = Bambu, Famille = "
-"Basique, Mat)"
+"- Différentes marques et familles de filaments (Marque = Bambu, Famille = Basique, Mat)"
msgid "Pattern"
msgstr "Motif"
@@ -15697,9 +12448,7 @@ msgid "Step value"
msgstr "Intervalle"
msgid "The nozzle diameter has been synchronized from the printer Settings"
-msgstr ""
-"Le diamÚtre de la buse a été synchronisé à partir des paramÚtres de "
-"lâimprimante"
+msgstr "Le diamĂštre de la buse a Ă©tĂ© synchronisĂ© Ă partir des paramĂštres de lâimprimante"
msgid "From Volumetric Speed"
msgstr "Depuis la vitesse volumétrique"
@@ -15727,8 +12476,7 @@ 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."
+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"
@@ -15924,9 +12672,7 @@ msgid "Upload to Printer Host with the following filename:"
msgstr "Envoyer vers lâimprimante avec le nom de fichier suivant :"
msgid "Use forward slashes ( / ) as a directory separator if needed."
-msgstr ""
-"Utilisez des barres obliques ( / ) comme séparateur de répertoire si "
-"nécessaire."
+msgstr "Utilisez des barres obliques ( / ) comme séparateur de répertoire si nécessaire."
msgid "Upload to storage"
msgstr "Envoyer vers le stockage"
@@ -15936,9 +12682,7 @@ msgstr "Passer Ă lâonglet Appareil aprĂšs le tĂ©lĂ©chargement."
#, c-format, boost-format
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
-msgstr ""
-"Le nom du fichier envoyé ne se termine pas par \"%s\". Souhaitez-vous "
-"continuer ?"
+msgstr "Le nom du fichier envoyé ne se termine pas par \"%s\". Souhaitez-vous continuer ?"
msgid "Upload"
msgstr "Envoyer"
@@ -15981,8 +12725,7 @@ msgid "Error uploading to print host"
msgstr "Erreur lors de lâenvoi vers lâhĂŽte dâimpression"
msgid "Unable to perform boolean operation on selected parts"
-msgstr ""
-"Impossible dâeffectuer une opĂ©ration boolĂ©enne sur les piĂšces sĂ©lectionnĂ©es"
+msgstr "Impossible dâeffectuer une opĂ©ration boolĂ©enne sur les piĂšces sĂ©lectionnĂ©es"
msgid "Mesh Boolean"
msgstr "Opérations booléennes"
@@ -16075,9 +12818,7 @@ msgid "Add Filament Preset under this filament"
msgstr "Ajouter un préréglage de filament sous ce filament"
msgid "We could create the filament presets for your following printer:"
-msgstr ""
-"Nous pourrions créer les préréglages de filaments pour votre imprimante "
-"suivante :"
+msgstr "Nous pourrions créer les préréglages de filaments pour votre imprimante suivante :"
msgid "Select Vendor"
msgstr "Sélectionner le fournisseur"
@@ -16107,60 +12848,39 @@ msgid "Create"
msgstr "Créer"
msgid "Vendor is not selected, please reselect vendor."
-msgstr ""
-"Le fournisseur nâest pas sĂ©lectionnĂ©, veuillez le sĂ©lectionner Ă nouveau."
+msgstr "Le fournisseur nâest pas sĂ©lectionnĂ©, veuillez le sĂ©lectionner Ă nouveau."
msgid "Custom vendor is not input, please input custom vendor."
-msgstr ""
-"Le fournisseur personnalisĂ© nâest pas saisi, veuillez saisir le fournisseur "
-"personnalisé."
+msgstr "Le fournisseur personnalisĂ© nâest pas saisi, veuillez saisir le fournisseur personnalisĂ©."
-msgid ""
-"\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments."
-msgstr ""
-"« Bambu » ou « GĂ©nĂ©rique » ne peuvent pas ĂȘtre utilisĂ©s comme fournisseur de "
-"filaments personnalisés."
+msgid "\"Bambu\" or \"Generic\" can not be used as a Vendor for custom filaments."
+msgstr "« Bambu » ou « GĂ©nĂ©rique » ne peuvent pas ĂȘtre utilisĂ©s comme fournisseur de filaments personnalisĂ©s."
msgid "Filament type is not selected, please reselect type."
-msgstr ""
-"Le type de filament nâest pas sĂ©lectionnĂ©, veuillez resĂ©lectionner le type."
+msgstr "Le type de filament nâest pas sĂ©lectionnĂ©, veuillez resĂ©lectionner le type."
msgid "Filament serial is not inputed, please input serial."
-msgstr ""
-"Le numĂ©ro de sĂ©rie du filament nâest pas saisi, veuillez saisir le numĂ©ro de "
-"série."
+msgstr "Le numĂ©ro de sĂ©rie du filament nâest pas saisi, veuillez saisir le numĂ©ro de sĂ©rie."
-msgid ""
-"There may be escape characters in the vendor or serial input of filament. "
-"Please delete and re-enter."
-msgstr ""
-"Il peut y avoir des caractĂšres dâĂ©chappement dans lâentrĂ©e du fournisseur ou "
-"du numéro de série du filament. Veuillez les supprimer et les saisir à "
-"nouveau."
+msgid "There may be escape characters in the vendor or serial input of filament. Please delete and re-enter."
+msgstr "Il peut y avoir des caractĂšres dâĂ©chappement dans lâentrĂ©e du fournisseur ou du numĂ©ro de sĂ©rie du filament. Veuillez les supprimer et les saisir Ă nouveau."
msgid "All inputs in the custom vendor or serial are spaces. Please re-enter."
-msgstr ""
-"Toutes les entrées dans le vendeur ou le numéro de série personnalisé sont "
-"des espaces. Veuillez les saisir Ă nouveau."
+msgstr "Toutes les entrées dans le vendeur ou le numéro de série personnalisé sont des espaces. Veuillez les saisir à nouveau."
msgid "The vendor can not be a number. Please re-enter."
msgstr "Le vendeur ne peut pas ĂȘtre un numĂ©ro. Veuillez le saisir Ă nouveau."
-msgid ""
-"You have not selected a printer or preset yet. Please select at least one."
-msgstr ""
-"Vous nâavez pas encore sĂ©lectionnĂ© dâimprimante ou de prĂ©rĂ©glage. Veuillez "
-"en sélectionner au moins un."
+msgid "You have not selected a printer or preset yet. Please select at least one."
+msgstr "Vous nâavez pas encore sĂ©lectionnĂ© dâimprimante ou de prĂ©rĂ©glage. Veuillez en sĂ©lectionner au moins un."
#, 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 ""
"Le nom de filament %s que vous avez créé existe déjà . \n"
-"Si vous continuez la création, le réglage créé sera affiché avec son nom "
-"complet. Voulez-vous continuer ?"
+"Si vous continuez la création, le réglage créé sera affiché avec son nom complet. Voulez-vous continuer ?"
msgid "Some existing presets have failed to be created, as follows:\n"
msgstr "Certains prĂ©rĂ©glages existants nâont pas Ă©tĂ© créés, comme suit :\n"
@@ -16173,14 +12893,11 @@ 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 "
-"selected ». \n"
-"Pour ajouter des prĂ©rĂ©glages pour dâautres imprimantes, veuillez aller Ă la "
-"sĂ©lection de lâimprimante."
+"Nous renommerions les préréglages en « Vendor Type Serial @printer you selected ». \n"
+"Pour ajouter des prĂ©rĂ©glages pour dâautres imprimantes, veuillez aller Ă la sĂ©lection de lâimprimante."
msgid "Create Printer/Nozzle"
msgstr "Créer une imprimante/buse"
@@ -16244,14 +12961,10 @@ msgid "The file exceeds %d MB, please import again."
msgstr "Le fichier dépasse %d MB, veuillez réimporter."
msgid "Exception in obtaining file size, please import again."
-msgstr ""
-"Exception dans lâobtention de la taille du fichier, veuillez importer Ă "
-"nouveau."
+msgstr "Exception dans lâobtention de la taille du fichier, veuillez importer Ă nouveau."
msgid "Preset path is not find, please reselect vendor."
-msgstr ""
-"Le chemin dâaccĂšs prĂ©dĂ©fini nâest pas trouvĂ©, veuillez resĂ©lectionner le "
-"vendeur."
+msgstr "Le chemin dâaccĂšs prĂ©dĂ©fini nâest pas trouvĂ©, veuillez resĂ©lectionner le vendeur."
msgid "The printer model was not found, please reselect."
msgstr "Le modĂšle dâimprimante nâa pas Ă©tĂ© trouvĂ©, veuillez resĂ©lectionner."
@@ -16277,40 +12990,24 @@ msgstr "ModÚle de préréglage de traitement"
msgid "Back Page 1"
msgstr "Retour Ă la 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 ""
-"Vous nâavez pas encore choisi le prĂ©rĂ©glage de lâimprimante sur lequel "
-"crĂ©er. Veuillez choisir le fournisseur et le modĂšle de lâimprimante"
+msgid "You have not yet chosen which printer preset to create based on. Please choose the vendor and model of the printer"
+msgstr "Vous nâavez pas encore choisi le prĂ©rĂ©glage de lâimprimante sur lequel crĂ©er. Veuillez choisir le fournisseur et le modĂšle de lâimprimante"
-msgid ""
-"You have entered an illegal input in the printable area section on the first "
-"page. Please check before creating it."
-msgstr ""
-"Vous avez introduit une donnée illégale dans la section « zone imprimable » "
-"de la premiÚre page. Veuillez vérifier avant de la créer."
+msgid "You have entered an illegal input in the printable area section on the first page. Please check before creating it."
+msgstr "Vous avez introduit une donnée illégale dans la section « zone imprimable » de la premiÚre page. Veuillez vérifier avant de la créer."
msgid "The custom printer or model is not inputed, place input."
-msgstr ""
-"Lâimprimante ou le modĂšle personnalisĂ© nâest pas saisi, placer la saisie."
+msgstr "Lâimprimante ou le modĂšle personnalisĂ© nâest pas saisi, placer la saisie."
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 ""
-"Le prĂ©rĂ©glage dâimprimante que vous avez créé possĂšde dĂ©jĂ un prĂ©rĂ©glage "
-"portant le mĂȘme nom. Voulez-vous lâĂ©craser ?\n"
-"\tOui : Ă©craser le prĂ©rĂ©glage dâimprimante portant le mĂȘme nom, et les "
-"prĂ©rĂ©glages de filament et de traitement portant le mĂȘme nom de prĂ©rĂ©glage "
-"seront recréés. \n"
-"et les prĂ©rĂ©glages de filament et de processus sans le mĂȘme nom de "
-"préréglage seront réservés.\n"
+"Le prĂ©rĂ©glage dâimprimante que vous avez créé possĂšde dĂ©jĂ un prĂ©rĂ©glage portant le mĂȘme nom. Voulez-vous lâĂ©craser ?\n"
+"\tOui : Ă©craser le prĂ©rĂ©glage dâimprimante portant le mĂȘme nom, et les prĂ©rĂ©glages de filament et de traitement portant le mĂȘme nom de prĂ©rĂ©glage seront recréés. \n"
+"et les prĂ©rĂ©glages de filament et de processus sans le mĂȘme nom de prĂ©rĂ©glage seront rĂ©servĂ©s.\n"
"\tAnnuler : Ne pas crĂ©er de prĂ©rĂ©glage, revenir Ă lâinterface de crĂ©ation."
msgid "You need to select at least one filament preset."
@@ -16331,36 +13028,20 @@ msgstr "Le vendeur nâest pas trouvĂ©, veuillez resĂ©lectionner."
msgid "Current vendor has no models, please reselect."
msgstr "Le vendeur actuel nâa pas de modĂšle, veuillez resĂ©lectionner."
-msgid ""
-"You have not selected the vendor and model or inputed the custom vendor and "
-"model."
-msgstr ""
-"Vous nâavez pas sĂ©lectionnĂ© le fournisseur et le modĂšle ou introduit le "
-"fournisseur et le modÚle personnalisés."
+msgid "You have not selected the vendor and model or inputed the custom vendor and model."
+msgstr "Vous nâavez pas sĂ©lectionnĂ© le fournisseur et le modĂšle ou introduit le fournisseur et le modĂšle personnalisĂ©s."
-msgid ""
-"There may be escape characters in the custom printer vendor or model. Please "
-"delete and re-enter."
-msgstr ""
-"Il peut y avoir des caractĂšres dâĂ©chappement dans le fournisseur ou le "
-"modĂšle de lâimprimante personnalisĂ©e. Veuillez les supprimer et les saisir Ă "
-"nouveau."
+msgid "There may be escape characters in the custom printer vendor or model. Please delete and re-enter."
+msgstr "Il peut y avoir des caractĂšres dâĂ©chappement dans le fournisseur ou le modĂšle de lâimprimante personnalisĂ©e. Veuillez les supprimer et les saisir Ă nouveau."
-msgid ""
-"All inputs in the custom printer vendor or model are spaces. Please re-enter."
-msgstr ""
-"Toutes les entrĂ©es dans le modĂšle ou le fournisseur de lâimprimante "
-"personnalisée sont des espaces. Veuillez les saisir à nouveau."
+msgid "All inputs in the custom printer vendor or model are spaces. Please re-enter."
+msgstr "Toutes les entrĂ©es dans le modĂšle ou le fournisseur de lâimprimante personnalisĂ©e sont des espaces. Veuillez les saisir Ă nouveau."
msgid "Please check bed printable shape and origin input."
-msgstr ""
-"Veuillez vĂ©rifier la forme imprimable du plateau et lâentrĂ©e de lâorigine."
+msgstr "Veuillez vĂ©rifier la forme imprimable du plateau et lâentrĂ©e de lâorigine."
-msgid ""
-"You have not yet selected the printer to replace the nozzle, please choose."
-msgstr ""
-"Vous nâavez pas encore sĂ©lectionnĂ© lâimprimante pour remplacer la buse, "
-"veuillez choisir."
+msgid "You have not yet selected the printer to replace the nozzle, please choose."
+msgstr "Vous nâavez pas encore sĂ©lectionnĂ© lâimprimante pour remplacer la buse, veuillez choisir."
msgid "Create Printer Successful"
msgstr "CrĂ©ation dâune imprimante rĂ©ussie"
@@ -16372,40 +13053,28 @@ msgid "Printer Created"
msgstr "Imprimante créée"
msgid "Please go to printer settings to edit your presets"
-msgstr ""
-"Veuillez aller dans les paramĂštres de lâimprimante pour modifier vos "
-"préréglages."
+msgstr "Veuillez aller dans les paramĂštres de lâimprimante pour modifier vos prĂ©rĂ©glages."
msgid "Filament Created"
msgstr "Filament créé"
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."
+"Please note that nozzle temperature, hot bed temperature, and maximum volumetric speed has a significant impact on printing quality. Please set them carefully."
msgstr ""
-"Si vous le souhaitez, vous pouvez modifier vos préréglages dans les "
-"paramĂštres du filament.\n"
-"Veuillez noter que la température de la buse, la température du plateau "
-"chaud et la vitesse volumétrique maximale ont un impact significatif sur la "
-"qualitĂ© dâimpression. Veuillez les rĂ©gler avec soin."
+"Si vous le souhaitez, vous pouvez modifier vos préréglages dans les paramÚtres du filament.\n"
+"Veuillez noter que la tempĂ©rature de la buse, la tempĂ©rature du plateau chaud et la vitesse volumĂ©trique maximale ont un impact significatif sur la qualitĂ© dâimpression. Veuillez les rĂ©gler avec soin."
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"
+"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 a détecté que la fonction de synchronisation des réglages utilisateur "
-"nâest pas activĂ©e, ce qui peut entraĂźner lâĂ©chec des rĂ©glages du filament "
-"sur la page Device. \n"
-"Cliquez sur « Synchroniser les rĂ©glages prĂ©dĂ©finis de lâutilisateur « pour "
-"activer la fonction de synchronisation."
+"Studio a dĂ©tectĂ© que la fonction de synchronisation des rĂ©glages utilisateur nâest pas activĂ©e, ce qui peut entraĂźner lâĂ©chec des rĂ©glages du filament sur la page Device. \n"
+"Cliquez sur « Synchroniser les rĂ©glages prĂ©dĂ©finis de lâutilisateur « pour activer la fonction de synchronisation."
msgid "Printer Setting"
msgstr "RĂ©glage de lâimprimante"
@@ -16445,22 +13114,17 @@ msgstr "Exportation réussie"
#, 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 ""
-"Le dossier â%sâ existe dĂ©jĂ dans le rĂ©pertoire actuel. Voulez-vous lâeffacer "
-"et le reconstruire ?\n"
-"Si ce nâest pas le cas, un suffixe temporel sera ajoutĂ©, et vous pourrez "
-"modifier le nom aprÚs la création."
+"Le dossier â%sâ existe dĂ©jĂ dans le rĂ©pertoire actuel. Voulez-vous lâeffacer et le reconstruire ?\n"
+"Si ce nâest pas le cas, un suffixe temporel sera ajoutĂ©, et vous pourrez modifier le nom aprĂšs la crĂ©ation."
msgid ""
"Printer and all the filament&&process presets that belongs to the printer. \n"
"Can be shared with others."
msgstr ""
-"Imprimante et tous les préréglages de filament et de traitement qui "
-"appartiennent Ă lâimprimante. \n"
+"Imprimante et tous les prĂ©rĂ©glages de filament et de traitement qui appartiennent Ă lâimprimante. \n"
"Peut ĂȘtre partagĂ© avec dâautres."
msgid ""
@@ -16470,45 +13134,28 @@ msgstr ""
"PrĂ©rĂ©glage du remplissage par lâutilisateur. \n"
"Peut ĂȘtre partagĂ© avec dâautres."
-msgid ""
-"Only display printer names with changes to printer, filament, and process "
-"presets."
-msgstr ""
-"Nâafficher que les noms dâimprimantes avec les modifications apportĂ©es aux "
-"prĂ©rĂ©glages de lâimprimante, du filament et du traitement."
+msgid "Only display printer names with changes to printer, filament, and process presets."
+msgstr "Nâafficher que les noms dâimprimantes avec les modifications apportĂ©es aux prĂ©rĂ©glages de lâimprimante, du filament et du traitement."
msgid "Only display the filament names with changes to filament presets."
-msgstr ""
-"Nâaffichez que les noms des filaments lorsque vous modifiez les prĂ©rĂ©glages "
-"des filaments."
+msgstr "Nâaffichez que les noms des filaments lorsque vous modifiez les prĂ©rĂ©glages des filaments."
-msgid ""
-"Only printer names with user printer presets will be displayed, and each "
-"preset you choose will be exported as a zip."
-msgstr ""
-"Seuls les noms dâimprimantes avec des prĂ©rĂ©glages dâimprimante utilisateur "
-"seront affichés, et chaque préréglage que vous choisissez sera exporté sous "
-"forme de fichier zip."
+msgid "Only printer names with user printer presets will be displayed, and each preset you choose will be exported as a zip."
+msgstr "Seuls les noms dâimprimantes avec des prĂ©rĂ©glages dâimprimante utilisateur seront affichĂ©s, et chaque prĂ©rĂ©glage que vous choisissez sera exportĂ© sous forme de fichier 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 ""
-"Seuls les noms de filaments contenant des préréglages de filaments "
-"utilisateur seront affichés, \n"
-"et tous les prĂ©rĂ©glages de filament dâutilisateur dans chaque nom de "
-"filament que vous sélectionnez seront exportés sous forme de fichier zip."
+"Seuls les noms de filaments contenant des préréglages de filaments utilisateur seront affichés, \n"
+"et tous les prĂ©rĂ©glages de filament dâutilisateur dans chaque nom de filament que vous sĂ©lectionnez seront exportĂ©s sous forme de fichier 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 ""
-"Seuls les noms dâimprimantes dont les prĂ©rĂ©glages de traitement ont Ă©tĂ© "
-"modifiés seront affichés, \n"
-"et tous les prĂ©rĂ©glages de processus de lâutilisateur dans chaque nom "
-"dâimprimante que vous sĂ©lectionnez seront exportĂ©s sous forme de fichier zip."
+"Seuls les noms dâimprimantes dont les prĂ©rĂ©glages de traitement ont Ă©tĂ© modifiĂ©s seront affichĂ©s, \n"
+"et tous les prĂ©rĂ©glages de processus de lâutilisateur dans chaque nom dâimprimante que vous sĂ©lectionnez seront exportĂ©s sous forme de fichier zip."
msgid "Please select at least one printer or filament."
msgstr "Veuillez sélectionner au moins une imprimante ou un filament."
@@ -16517,9 +13164,7 @@ msgid "Please select a type you want to export"
msgstr "Veuillez sélectionner le type de produit que vous souhaitez exporter"
msgid "Failed to create temporary folder, please try Export Configs again."
-msgstr ""
-"Ăchec de la crĂ©ation dâun dossier temporaire, veuillez rĂ©essayer dâexporter "
-"les configurations."
+msgstr "Ăchec de la crĂ©ation dâun dossier temporaire, veuillez rĂ©essayer dâexporter les configurations."
msgid "Edit Filament"
msgstr "Modifier le filament"
@@ -16527,16 +13172,11 @@ msgstr "Modifier le filament"
msgid "Filament presets under this filament"
msgstr "Préréglages du filament sous ce filament"
-msgid ""
-"Note: If the only preset under this filament is deleted, the filament will "
-"be deleted after exiting the dialog."
-msgstr ""
-"Remarque : si le seul préréglage sous ce filament est supprimé, le filament "
-"sera supprimé aprÚs avoir quitté la boßte de dialogue."
+msgid "Note: If the only preset under this filament is deleted, the filament will be deleted after exiting the dialog."
+msgstr "Remarque : si le seul préréglage sous ce filament est supprimé, le filament sera supprimé aprÚs avoir quitté la boßte de dialogue."
msgid "Presets inherited by other presets can not be deleted"
-msgstr ""
-"Les prĂ©rĂ©glages hĂ©ritĂ©s dâautres prĂ©rĂ©glages ne peuvent pas ĂȘtre supprimĂ©s."
+msgstr "Les prĂ©rĂ©glages hĂ©ritĂ©s dâautres prĂ©rĂ©glages ne peuvent pas ĂȘtre supprimĂ©s."
msgid "The following presets inherits this preset."
msgid_plural "The following preset inherits this preset."
@@ -16560,13 +13200,10 @@ msgstr "Supprimer le 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 ""
-"Tous les préréglages de filaments appartenant à ce filament seront "
-"supprimés. \n"
-"Si vous utilisez ce filament sur votre imprimante, veuillez réinitialiser "
-"les informations relatives au filament pour cet emplacement."
+"Tous les préréglages de filaments appartenant à ce filament seront supprimés. \n"
+"Si vous utilisez ce filament sur votre imprimante, veuillez réinitialiser les informations relatives au filament pour cet emplacement."
msgid "Delete filament"
msgstr "Supprimer le filament"
@@ -16581,9 +13218,7 @@ msgid "Copy preset from filament"
msgstr "Copier le préréglage du filament"
msgid "The filament choice not find filament preset, please reselect it"
-msgstr ""
-"Le choix du filament ne correspond pas à la présélection du filament, "
-"veuillez le resélectionner."
+msgstr "Le choix du filament ne correspond pas à la présélection du filament, veuillez le resélectionner."
msgid "[Delete Required]"
msgstr "[Suppression requise]"
@@ -16604,12 +13239,8 @@ msgstr "Astuces quotidiennes"
msgid "nozzle memorized: %.1f %s"
msgstr "buse mémorisée : %.1f %s"
-msgid ""
-"Your nozzle diameter in preset is not consistent with memorized nozzle "
-"diameter. Did you change your nozzle lately?"
-msgstr ""
-"Le diamÚtre de la buse dans le préréglage ne correspond pas au diamÚtre de "
-"la buse mémorisé. Avez-vous changé de buse récemment ?"
+msgid "Your nozzle diameter in preset is not consistent with memorized nozzle diameter. Did you change your nozzle lately?"
+msgstr "Le diamÚtre de la buse dans le préréglage ne correspond pas au diamÚtre de la buse mémorisé. Avez-vous changé de buse récemment ?"
#, c-format, boost-format
msgid "*Printing %s material with %s may cause nozzle damage"
@@ -16621,12 +13252,8 @@ msgstr "Nécessité de sélectionner une imprimante"
msgid "The start, end or step is not valid value."
msgstr "Le dĂ©but, la fin ou lâintervalle nâest pas une valeur valide."
-msgid ""
-"Unable to calibrate: maybe because the set calibration value range is too "
-"large, or the step is too small"
-msgstr ""
-"Impossible de calibrer : il est possible que la plage de valeurs de "
-"calibrage dĂ©finie est trop grande ou que lâintervalle est trop petit"
+msgid "Unable to calibrate: maybe because the set calibration value range is too large, or the step is too small"
+msgstr "Impossible de calibrer : il est possible que la plage de valeurs de calibrage dĂ©finie est trop grande ou que lâintervalle est trop petit"
msgid "Physical Printer"
msgstr "Imprimante Physique"
@@ -16647,47 +13274,32 @@ msgid "Refresh Printers"
msgstr "Actualiser les imprimantes"
msgid "View print host webui in Device tab"
-msgstr ""
-"Afficher lâinterface web de lâhĂŽte dâimpression dans lâonglet PĂ©riphĂ©rique"
+msgstr "Afficher lâinterface web de lâhĂŽte dâimpression dans lâonglet PĂ©riphĂ©rique"
msgid "Replace the BambuLab's device tab with print host webui"
msgstr "Remplacer lâonglet device de BambuLab par print host webui"
-msgid ""
-"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
-"signed certificate."
-msgstr ""
-"Le fichier CA HTTPS est facultatif. Il n'est nécessaire que si vous utilisez "
-"HTTPS avec un certificat auto-signé."
+msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate."
+msgstr "Le fichier CA HTTPS est facultatif. Il n'est nécessaire que si vous utilisez HTTPS avec un certificat auto-signé."
msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
-msgstr ""
-"Fichiers de certificat (*.crt, *.pem)|*.crt;*.pem|Tous les fichiers|*.*"
+msgstr "Fichiers de certificat (*.crt, *.pem)|*.crt;*.pem|Tous les fichiers|*.*"
msgid "Open CA certificate file"
msgstr "Ouvrir le fichier de certificat CA"
#, c-format, boost-format
-msgid ""
-"On this system, %s uses HTTPS certificates from the system Certificate Store "
-"or Keychain."
-msgstr ""
-"Sur ce systĂšme, %s utilise les certificats HTTPS du magasin de certificats "
-"du systĂšme ou du trousseau."
+msgid "On this system, %s uses HTTPS certificates from the system Certificate Store or Keychain."
+msgstr "Sur ce systĂšme, %s utilise les certificats HTTPS du magasin de certificats du systĂšme ou du trousseau."
-msgid ""
-"To use a custom CA file, please import your CA file into Certificate Store / "
-"Keychain."
-msgstr ""
-"Pour utiliser un certificat personnalisé, veuillez importer votre fichier "
-"dans magasin de certificats / trousseau."
+msgid "To use a custom CA file, please import your CA file into Certificate Store / Keychain."
+msgstr "Pour utiliser un certificat personnalisé, veuillez importer votre fichier dans magasin de certificats / trousseau."
msgid "Login/Test"
msgstr "Connexion/Test"
msgid "Connection to printers connected via the print host failed."
-msgstr ""
-"La connexion aux imprimantes connectĂ©es via lâhĂŽte dâimpression a Ă©chouĂ©."
+msgstr "La connexion aux imprimantes connectĂ©es via lâhĂŽte dâimpression a Ă©chouĂ©."
#, c-format, boost-format
msgid "Mismatched type of print host: %s"
@@ -16721,19 +13333,13 @@ msgid "Upload not enabled on FlashAir card."
msgstr "Le tĂ©lĂ©chargement nâest pas activĂ© sur la carte FlashAir."
msgid "Connection to FlashAir works correctly and upload is enabled."
-msgstr ""
-"La connexion à FlashAir fonctionne correctement et le téléchargement est "
-"activé."
+msgstr "La connexion à FlashAir fonctionne correctement et le téléchargement est activé."
msgid "Could not connect to FlashAir"
msgstr "Impossible de se connecter Ă FlashAir"
-msgid ""
-"Note: FlashAir with firmware 2.00.02 or newer and activated upload function "
-"is required."
-msgstr ""
-"Note : FlashAir avec le firmware 2.00.02 ou plus récent et la fonction de "
-"téléchargement activée sont nécessaires."
+msgid "Note: FlashAir with firmware 2.00.02 or newer and activated upload function is required."
+msgstr "Note : FlashAir avec le firmware 2.00.02 ou plus récent et la fonction de téléchargement activée sont nécessaires."
msgid "Connection to MKS works correctly."
msgstr "La connexion Ă MKS fonctionne correctement."
@@ -16778,9 +13384,7 @@ msgstr "%1% : pas dâespace libre"
#. TRN %1% = host
#, boost-format
msgid "Upload has failed. There is no suitable storage found at %1%."
-msgstr ""
-"Le tĂ©lĂ©chargement a Ă©chouĂ©. Aucun espace de stockage appropriĂ© nâa Ă©tĂ© "
-"trouvé à %1%."
+msgstr "Le tĂ©lĂ©chargement a Ă©chouĂ©. Aucun espace de stockage appropriĂ© nâa Ă©tĂ© trouvĂ© Ă %1%."
msgid "Connection to Prusa Connect works correctly."
msgstr "La connexion Ă Prusa Connect fonctionne correctement."
@@ -16825,285 +13429,89 @@ msgstr ""
"Corps du message : « %1% »\n"
"Erreur : « %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 ""
-"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 "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 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 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 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 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 "
-"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 ""
-"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 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 "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 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 "
-"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 ""
-"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 "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 "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 "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 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 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 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 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 "
-"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 ""
-"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, 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 "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 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 "
-"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 ""
-"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, 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 "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 "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 "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 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 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 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 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 "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 "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 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 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 "
-"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 ""
-"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 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 "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 "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 !"
@@ -17124,9 +13532,7 @@ msgid "Unknown error"
msgstr "Erreur inconnue"
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
-msgstr ""
-"Le compte SimplyPrint nâest pas liĂ©. Allez dans les options de connexion "
-"pour le configurer."
+msgstr "Le compte SimplyPrint nâest pas liĂ©. Allez dans les options de connexion pour le configurer."
msgid "Connection to Flashforge works correctly."
msgstr "La connexion Ă Flashforge fonctionne correctement."
@@ -17138,18 +13544,382 @@ msgid "The provided state is not correct."
msgstr "LâĂ©tat communiquĂ© nâest pas correct."
msgid "Please give the required permissions when authorizing this application."
-msgstr ""
-"Veuillez donner les autorisations nécessaires lorsque vous autorisez cette "
-"application."
+msgstr "Veuillez donner les autorisations nécessaires lorsque vous autorisez cette application."
msgid "Something unexpected happened when trying to log in, please try again."
-msgstr ""
-"Un Ă©vĂ©nement inattendu sâest produit lors de la connexion, veuillez "
-"réessayer."
+msgstr "Un Ă©vĂ©nement inattendu sâest produit lors de la connexion, veuillez rĂ©essayer."
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 du caisson\n"
+"Saviez-vous quâOrcaSlicer prend en charge la tempĂ©rature du caisson ?"
+
+#: 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 "Your object appears to be too large. It will be scaled down to fit the heat bed automatically."
+#~ msgstr "Votre objet est trop grand. Il sera automatiquement rĂ©duit pour sâadapter au plateau."
+
+#~ msgid "Shift+G"
+#~ msgstr "Shift+G"
+
+#~ msgid "Any arrow"
+#~ msgstr "Toutes les flĂšches"
+
+#~ 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"
+#~ "3. Nowhere: Disables gap fill\n"
+#~ msgstr ""
+#~ "Active le remplissage des trous pour les surfaces sĂ©lectionnĂ©es. La longueur minimale du trou qui sera comblĂ© peut ĂȘtre contrĂŽlĂ©e Ă lâaide de lâoption « Filtrer les petits trous » ci-dessous.\n"
+#~ "\n"
+#~ "Options :\n"
+#~ "1. Partout : Applique le remplissage des trous aux surfaces pleines supérieures, inférieures et internes.\n"
+#~ "2. Surfaces supérieure et inférieure : Remplissage des trous uniquement sur les surfaces supérieures et inférieures.\n"
+#~ "3. Nulle part : Désactive le remplissage des trous\n"
+
+#~ msgid "Decrease this value slightly(for example 0.9) to reduce the amount of material for bridge, to improve sag"
+#~ msgstr "Diminuez légÚrement cette valeur (par exemple 0,9) pour réduire la quantité de matériaux pour le pont, pour améliorer l'affaissement"
+
+#~ 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 "Cette valeur dĂ©termine lâĂ©paisseur de la couche des ponts internes. Il sâagit de la premiĂšre couche sur le remplissage. Diminuez lĂ©gĂšrement cette valeur (par exemple 0.9) pour amĂ©liorer la qualitĂ© de la surface sur le remplissage."
+
+#~ msgid "This factor affects the amount of material for top solid infill. You can decrease it slightly to have smooth surface finish"
+#~ msgstr "Ce facteur affecte la quantité de matériau pour le remplissage plein supérieur. Vous pouvez le diminuer légÚrement pour avoir une finition de surface lisse"
+
+#~ msgid "This factor affects the amount of material for bottom solid infill"
+#~ msgstr "Ce facteur affecte la quantité de matériau pour le remplissage plein du dessous"
+
+#~ msgid "Enable this option to slow printing down in areas where potential curled perimeters may exist"
+#~ msgstr "Activer cette option pour ralentir lâimpression dans les zones oĂč des pĂ©rimĂštres potentiellement courbĂ©es peuvent exister."
+
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "Il s'agit de la vitesse pour les ponts et les parois en surplomb Ă 100 %."
+
+#~ 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 "Vitesse des ponts internes. Si la valeur est exprimée en pourcentage, elle sera calculée en fonction de bridge_speed. La valeur par défaut est 150%."
+
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr "Il est temps de charger un nouveau filament lors du changement de filament. Pour les statistiques uniquement"
+
+#~ msgid "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr "Il est temps de décharger l'ancien filament lorsque vous changez de filament. Pour les statistiques uniquement"
+
+#~ msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to load a new filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator."
+#~ msgstr "Temps nĂ©cessaire au firmware de lâimprimante (ou au Multi Material Unit 2.0) pour charger un nouveau filament lors dâun changement dâoutil (lors de lâexĂ©cution du code T). Ce temps est ajoutĂ© au temps dâimpression total par lâestimateur de temps du 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 "Temps nĂ©cessaire au firmware de lâimprimante (ou au Multi Material Unit 2.0) pour dĂ©charger un filament lors dâun changement dâoutil (lors de lâexĂ©cution du code T). Ce temps est ajoutĂ© au temps dâimpression total par lâestimateur de temps du G-code."
+
+#~ msgid "Filter out gaps smaller than the threshold specified"
+#~ msgstr "Filtrer les petits espaces au seuil spécifié."
+
+#~ 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 ""
+#~ "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 "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 "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 du caisson ne doit pas ĂȘtre Ă©levĂ©e pour Ă©viter les bouchages, donc la valeur 0 qui signifie Ă©teindre est fortement recommandĂ©."
+
#~ msgid "Current association: "
#~ msgstr "Association actuelle : "
@@ -17159,414 +13929,32 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgid "Not associated to any application"
#~ msgstr "Nâest associĂ© Ă aucune application"
-#~ msgid ""
-#~ "Associate OrcaSlicer with prusaslicer:// links so that Orca can open "
-#~ "models from Printable.com"
-#~ msgstr ""
-#~ "Associer OrcaSlicer aux liens prusaslicer:// afin quâOrca puisse ouvrir "
-#~ "des modĂšles provenant de Printable.com"
+#~ msgid "Associate OrcaSlicer with prusaslicer:// links so that Orca can open models from Printable.com"
+#~ msgstr "Associer OrcaSlicer aux liens prusaslicer:// afin quâOrca puisse ouvrir des modĂšles provenant de Printable.com"
#~ msgid "Associate bambustudio://"
#~ msgstr "Associer bambustudio://"
-#~ msgid ""
-#~ "Associate OrcaSlicer with bambustudio:// links so that Orca can open "
-#~ "models from makerworld.com"
-#~ msgstr ""
-#~ "Associer OrcaSlicer aux liens bambustudio:// afin quâOrca puisse ouvrir "
-#~ "des modĂšles provenant de makerworld.com"
+#~ msgid "Associate OrcaSlicer with bambustudio:// links so that Orca can open models from makerworld.com"
+#~ msgstr "Associer OrcaSlicer aux liens bambustudio:// afin quâOrca puisse ouvrir des modĂšles provenant de makerworld.com"
#~ msgid "Associate cura://"
#~ msgstr "Associer cura://"
-#~ msgid ""
-#~ "Associate OrcaSlicer with cura:// links so that Orca can open models from "
-#~ "thingiverse.com"
-#~ msgstr ""
-#~ "Associer OrcaSlicer aux liens cura:// pour quâOrca puisse ouvrir les "
-#~ "modĂšles de thingiverse.com"
+#~ msgid "Associate OrcaSlicer with cura:// links so that Orca can open models from thingiverse.com"
+#~ msgstr "Associer OrcaSlicer aux liens cura:// pour quâOrca puisse ouvrir les modĂšles de thingiverse.com"
#~ msgid "Internel error"
#~ msgstr "Erreur interne"
-#~ 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 du caisson\n"
-#~ "Saviez-vous quâOrcaSlicer prend en charge la tempĂ©rature du caisson ?"
-
-#~ 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 ""
-#~ "File size exceeds the 100MB upload limit. Please upload your file through "
-#~ "the panel."
-#~ msgstr ""
-#~ "La taille du fichier dépasse la limite de téléchargement de 100 Mo. "
-#~ "Veuillez télécharger votre fichier via le panneau."
+#~ msgid "File size exceeds the 100MB upload limit. Please upload your file through the panel."
+#~ msgstr "La taille du fichier dépasse la limite de téléchargement de 100 Mo. Veuillez télécharger votre fichier via le panneau."
#~ msgid "Please input a valid value (K in 0~0.3)"
#~ msgstr "Veuillez saisir une valeur valide (K entre 0 et 0,3)"
#~ msgid "Please input a valid value (K in 0~0.3, N in 0.6~2.0)"
-#~ msgstr ""
-#~ "Veuillez saisir une valeur valide (K entre 0 et 0,3, N entre 0,6 et 2,0)."
+#~ msgstr "Veuillez saisir une valeur valide (K entre 0 et 0,3, N entre 0,6 et 2,0)."
#~ msgid "Select connected printetrs (0/6)"
#~ msgstr "Sélectionner les imprimantes connectées (0/6)"
@@ -17584,71 +13972,28 @@ msgstr "Lâutilisateur a annulĂ©."
#~ 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 ""
-#~ "Veuillez trouver les détails de la calibration dynamique du débit sur "
-#~ "notre Wiki.\n"
+#~ "Veuillez trouver les détails de la calibration dynamique du débit sur notre 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"
-#~ "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 des cas.\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"
+#~ "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 des cas.\n"
#~ "\n"
-#~ "Veuillez noter qu'il y a quelques cas qui rendront le résultat de "
-#~ "calibration non fiable : utiliser un plateau texturé pour faire la "
-#~ "calibration, utiliser un plateau qui n'a pas une bonne adhérence "
-#~ "(veuillez dans ce cas laver la plaque de construction ou appliquer de la "
-#~ "colle)⊠Vous pouvez trouver d'autres cas sur notre Wiki.\n"
-#~ "Veuillez noter qu'il y a quelques cas qui rendront le résultat de "
-#~ "calibration non fiable : utiliser un plateau texturé pour faire la "
-#~ "calibration, utiliser un plateau qui n'a pas une bonne adhérence "
-#~ "(veuillez dans ce cas laver la plaque de construction ou appliquer de la "
-#~ "colle)⊠Vous pouvez trouver d'autres cas sur notre Wiki.\n"
+#~ "Veuillez noter qu'il y a quelques cas qui rendront le résultat de calibration non fiable : utiliser un plateau texturé pour faire la calibration, utiliser un plateau qui n'a pas une bonne adhérence (veuillez dans ce cas laver la plaque de construction ou appliquer de la colle)⊠Vous pouvez trouver d'autres cas sur notre Wiki.\n"
+#~ "Veuillez noter qu'il y a quelques cas qui rendront le résultat de calibration non fiable : utiliser un plateau texturé pour faire la calibration, utiliser un plateau qui n'a pas une bonne adhérence (veuillez dans ce cas laver la plaque de construction ou appliquer de la colle)⊠Vous pouvez trouver d'autres cas sur notre Wiki.\n"
#~ "\n"
-#~ "Les résultats de calibration ont environ 10 % d'écart dans nos tests, ce "
-#~ "qui peut faire en sorte que le rĂ©sultat ne soit pas exactement le mĂȘme Ă "
-#~ "chaque calibration. Nous enquĂȘtons toujours sur la cause premiĂšre pour "
-#~ "apporter des améliorations avec de nouvelles mises à jour.Les résultats "
-#~ "de calibration ont environ 10 % d'écart dans nos tests, ce qui peut faire "
-#~ "en sorte que le rĂ©sultat ne soit pas exactement le mĂȘme Ă chaque "
-#~ "calibration. Nous enquĂȘtons toujours sur la cause premiĂšre pour apporter "
-#~ "des améliorations avec de nouvelles mises à jour."
+#~ "Les rĂ©sultats de calibration ont environ 10 % d'Ă©cart dans nos tests, ce qui peut faire en sorte que le rĂ©sultat ne soit pas exactement le mĂȘme Ă chaque calibration. Nous enquĂȘtons toujours sur la cause premiĂšre pour apporter des amĂ©liorations avec de nouvelles mises Ă jour.Les rĂ©sultats de calibration ont environ 10 % d'Ă©cart dans nos tests, ce qui peut faire en sorte que le rĂ©sultat ne soit pas exactement le mĂȘme Ă chaque calibration. Nous enquĂȘtons toujours sur la cause premiĂšre pour apporter des amĂ©liorations avec de nouvelles mises Ă jour."
-#~ msgid ""
-#~ "Only one of the results with the same name will be saved. Are you sure "
-#~ "you want to overrides the other results?"
-#~ msgstr ""
-#~ "Un seul des rĂ©sultats portant le mĂȘme nom sera enregistrĂ©. Voulez-vous "
-#~ "vraiment remplacer les autres résultats ?"
+#~ msgid "Only one of the results with the same name will be saved. Are you sure you want to overrides the other results?"
+#~ msgstr "Un seul des rĂ©sultats portant le mĂȘme nom sera enregistrĂ©. Voulez-vous vraiment remplacer les autres rĂ©sultats ?"
#, 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 ""
-#~ "Il existe dĂ©jĂ un rĂ©sultat de calibration portant le mĂȘme nom : %s. Un "
-#~ "seul des rĂ©sultats portant le mĂȘme nom est enregistrĂ©. Voulez-vous "
-#~ "vraiment remplacer le résultat précédent ?"
+#~ 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 "Il existe dĂ©jĂ un rĂ©sultat de calibration portant le mĂȘme nom : %s. Un seul des rĂ©sultats portant le mĂȘme nom est enregistrĂ©. Voulez-vous vraiment remplacer le rĂ©sultat prĂ©cĂ©dent ?"
#~ msgid "Please find the cornor with perfect degree of extrusion"
#~ msgstr "Veuillez trouver le coin avec un degrĂ© dâextrusion parfait"
@@ -17659,33 +14004,17 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgid "Y"
#~ msgstr "Y"
-#~ 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 "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 ""
-#~ "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 ""
-#~ "Ordre des parois/remplissages. Lorsque la case nâest pas cochĂ©e, les "
-#~ "parois sont imprimées en premier, ce qui fonctionne le mieux dans la "
-#~ "plupart des cas.\n"
+#~ "Ordre des parois/remplissages. Lorsque la case nâest pas cochĂ©e, les parois sont imprimĂ©es en premier, ce qui fonctionne le mieux dans la plupart des cas.\n"
#~ "\n"
-#~ "Lâimpression des parois en premier peut sâavĂ©rer utile en cas de "
-#~ "surplombs extrĂȘmes, car les parois ont le remplissage voisin auquel "
-#~ "adhérer. Cependant, le remplissage repoussera légÚrement les parois "
-#~ "imprimĂ©es Ă lâendroit oĂč il est fixĂ©, ce qui se traduira par une moins "
-#~ "bonne finition de la surface extérieure. Cela peut également faire "
-#~ "briller le remplissage Ă travers les surfaces externes de la piĂšce."
+#~ "Lâimpression des parois en premier peut sâavĂ©rer utile en cas de surplombs extrĂȘmes, car les parois ont le remplissage voisin auquel adhĂ©rer. Cependant, le remplissage repoussera lĂ©gĂšrement les parois imprimĂ©es Ă lâendroit oĂč il est fixĂ©, ce qui se traduira par une moins bonne finition de la surface extĂ©rieure. Cela peut Ă©galement faire briller le remplissage Ă travers les surfaces externes de la piĂšce."
#~ msgid "V"
#~ msgstr "V"
@@ -17694,69 +14023,27 @@ msgstr "Lâutilisateur a annulĂ©."
#~ 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."
+#~ "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."
+#~ "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 "
-#~ "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 "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."
+#~ 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 "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 "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"
@@ -17764,21 +14051,11 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgid "Infill direction"
#~ msgstr "Sens de remplissage"
-#~ 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"
+#~ 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"
-#~ 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."
+#~ 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."
#~ msgid "Actions For Unsaved Changes"
#~ msgstr "Actions pour les changements non enregistrés"
@@ -17807,28 +14084,20 @@ msgstr "Lâutilisateur a annulĂ©."
#~ 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"
-#~ "Souhaitez-vous conserver ces paramÚtres modifiés (valeur modifiée) aprÚs "
-#~ "avoir changé de préréglage ?"
+#~ "Souhaitez-vous conserver ces paramÚtres modifiés (valeur modifiée) aprÚs avoir changé de préréglage ?"
-#~ msgid ""
-#~ "You have previously modified your settings and are about to overwrite "
-#~ "them with new ones."
-#~ msgstr ""
-#~ "Vous avez prĂ©cĂ©demment modifiĂ© vos paramĂštres et vous ĂȘtes sur le point "
-#~ "de les remplacer par de nouveaux."
+#~ msgid "You have previously modified your settings and are about to overwrite them with new ones."
+#~ msgstr "Vous avez prĂ©cĂ©demment modifiĂ© vos paramĂštres et vous ĂȘtes sur le point de les remplacer par de nouveaux."
#~ msgid ""
#~ "\n"
-#~ "Do you want to keep your current modified settings, or use preset "
-#~ "settings?"
+#~ "Do you want to keep your current modified settings, or use preset settings?"
#~ msgstr ""
#~ "\n"
-#~ "Souhaitez-vous conserver vos paramÚtres modifiés actuels ou utiliser des "
-#~ "paramÚtres prédéfinis ?"
+#~ "Souhaitez-vous conserver vos paramÚtres modifiés actuels ou utiliser des paramÚtres prédéfinis ?"
#~ msgid ""
#~ "\n"
@@ -17840,12 +14109,8 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgid "Unload Filament"
#~ msgstr "Déchargement"
-#~ msgid ""
-#~ "Choose an AMS slot then press \"Load\" or \"Unload\" button to "
-#~ "automatically load or unload filiament."
-#~ msgstr ""
-#~ "Choisissez un emplacement AMS puis appuyez sur le bouton correspondant "
-#~ "pour Charger ou Décharger le filament."
+#~ msgid "Choose an AMS slot then press \"Load\" or \"Unload\" button to automatically load or unload filiament."
+#~ msgstr "Choisissez un emplacement AMS puis appuyez sur le bouton correspondant pour Charger ou Décharger le filament."
#~ msgid "MC"
#~ msgstr "MC"
@@ -17874,12 +14139,8 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgid "New Flow Dynamics Calibration"
#~ msgstr "Nouvelle calibration de la dynamique du flux"
-#~ 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 Beta et est plus récente que la version "
-#~ "actuelle dâOrcaSlicer."
+#~ 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 Beta et est plus rĂ©cente que la version actuelle dâOrcaSlicer."
#~ msgid "active"
#~ msgstr "actif"
@@ -17890,43 +14151,20 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgid "Cabin humidity"
#~ msgstr "Humidité dans l'AMS"
-#~ msgid ""
-#~ "Green means that AMS humidity is normal, orange represent humidity is "
-#~ "high, red represent humidity is too high.(Hygrometer: lower the better.)"
-#~ msgstr ""
-#~ "Le vert signifie que l'humidité de l'AMS est normale, l'orange signifie "
-#~ "que l'humidité est élevée et le rouge signifie que l'humidité est trop "
-#~ "élevée. (HygromÚtre : plus c'est bas, mieux c'est.)"
+#~ msgid "Green means that AMS humidity is normal, orange represent humidity is high, red represent humidity is too high.(Hygrometer: lower the better.)"
+#~ msgstr "Le vert signifie que l'humidité de l'AMS est normale, l'orange signifie que l'humidité est élevée et le rouge signifie que l'humidité est trop élevée. (HygromÚtre : plus c'est bas, mieux c'est.)"
#~ msgid "Desiccant status"
#~ msgstr "Ătat du dĂ©shydratant"
-#~ msgid ""
-#~ "A desiccant status lower than two bars indicates that desiccant may be "
-#~ "inactive. Please change the desiccant.(The bars: higher the better.)"
-#~ msgstr ""
-#~ "Un état du dessicateur inférieur à deux barres indique que le dessicateur "
-#~ "est peut-ĂȘtre inactif. Veuillez changer le dĂ©shydratant. (Plus c'est "
-#~ "élevé, mieux c'est.)"
+#~ msgid "A desiccant status lower than two bars indicates that desiccant may be inactive. Please change the desiccant.(The bars: higher the better.)"
+#~ msgstr "Un Ă©tat du dessicateur infĂ©rieur Ă deux barres indique que le dessicateur est peut-ĂȘtre inactif. Veuillez changer le dĂ©shydratant. (Plus c'est Ă©levĂ©, mieux c'est.)"
-#~ 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 ""
-#~ "Remarque: Lorsque le couvercle est ouvert ou que le sachet de dessicateur "
-#~ "est changé, cela peut prendre plusieurs heures ou une nuit pour absorber "
-#~ "l'humidité. Les basses températures ralentissent également le processus. "
-#~ "Pendant ce temps, l'indicateur pourrait ne pas représenter l'humidité "
-#~ "dans l'AMS avec précision."
+#~ 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 "Remarque: Lorsque le couvercle est ouvert ou que le sachet de dessicateur est changé, cela peut prendre plusieurs heures ou une nuit pour absorber l'humidité. Les basses températures ralentissent également le processus. Pendant ce temps, l'indicateur pourrait ne pas représenter l'humidité dans l'AMS avec précision."
-#~ msgid ""
-#~ "Note: if new filament is inserted during printing, the AMS will not "
-#~ "automatically read any information until printing is completed."
-#~ msgstr ""
-#~ "Remarque : si un nouveau filament est inséré pendant l'impression, l'AMS "
-#~ "ne lira automatiquement aucune information avant la fin de l'impression."
+#~ msgid "Note: if new filament is inserted during printing, the AMS will not automatically read any information until printing is completed."
+#~ msgstr "Remarque : si un nouveau filament est inséré pendant l'impression, l'AMS ne lira automatiquement aucune information avant la fin de l'impression."
#, boost-format
#~ msgid "Succeed to export G-code to %1%"
@@ -17938,22 +14176,17 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgid "Initialize failed (No Camera Device)!"
#~ msgstr "L'initialisation a échoué (Pas de caméra)!"
-#~ msgid ""
-#~ "Printer is busy downloading, Please wait for the downloading to finish."
-#~ msgstr ""
-#~ "L'imprimante est occupée à télécharger, veuillez attendre la fin du "
-#~ "téléchargement."
+#~ msgid "Printer is busy downloading, Please wait for the downloading to finish."
+#~ msgstr "L'imprimante est occupée à télécharger, veuillez attendre la fin du téléchargement."
#~ msgid "Initialize failed (Not supported on the current printer version)!"
-#~ msgstr ""
-#~ "Ăchec de l'initialisation (non pris en charge par l'imprimante actuelle) !"
+#~ msgstr "Ăchec de l'initialisation (non pris en charge par l'imprimante actuelle) !"
#~ msgid "Initialize failed (Not accessible in LAN-only mode)!"
#~ msgstr "L'initialisation a échoué (Non accessible en mode LAN uniquement) !"
#~ msgid "Initialize failed (Missing LAN ip of printer)!"
-#~ msgstr ""
-#~ "Ăchec de l'initialisation (adresse IP rĂ©seau manquante de l'imprimante) !"
+#~ msgstr "Ăchec de l'initialisation (adresse IP rĂ©seau manquante de l'imprimante) !"
#, c-format, boost-format
#~ msgid "Stopped [%d]!"
@@ -17972,8 +14205,7 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgstr "Ăchec du chargement [%d]"
#~ msgid "Failed to fetching model infomations from printer."
-#~ msgstr ""
-#~ "Impossible de récupérer les informations du modÚle depuis l'imprimante."
+#~ msgstr "Impossible de récupérer les informations du modÚle depuis l'imprimante."
#~ msgid "Failed to parse model infomations."
#~ msgstr "Impossible d'analyser les informations du modĂšle."
@@ -17984,46 +14216,33 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgid "File not exists."
#~ msgstr "Le fichier n'existe pas."
-#~ msgid ""
-#~ "Unable to perform boolean operation on model meshes. Only positive parts "
-#~ "will be exported."
-#~ msgstr ""
-#~ "Impossible d'effectuer une opération booléenne sur les maillages du "
-#~ "modÚle. Seules les parties positives seront exportées."
+#~ msgid "Unable to perform boolean operation on model meshes. Only positive parts will be exported."
+#~ msgstr "Impossible d'effectuer une opération booléenne sur les maillages du modÚle. Seules les parties positives seront exportées."
#, 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 ""
#~ "Vous avez modifié certains paramÚtres du préréglage \"%1%\". \n"
-#~ "Souhaitez-vous conserver ces paramÚtres modifiés (nouvelle valeur) aprÚs "
-#~ "avoir changé de préréglage ?"
+#~ "Souhaitez-vous conserver ces paramÚtres modifiés (nouvelle valeur) aprÚs avoir changé de préréglage ?"
#~ 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 ""
#~ "Vous avez modifié certains paramÚtres prédéfinis. \n"
-#~ "Souhaitez-vous conserver ces paramÚtres modifiés (nouvelle valeur) aprÚs "
-#~ "avoir changé de préréglage ?"
+#~ "Souhaitez-vous conserver ces paramÚtres modifiés (nouvelle valeur) aprÚs avoir changé de préréglage ?"
#~ 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 ""
-#~ "Si vous le souhaitez, vous pouvez modifier vos préréglages dans les "
-#~ "paramĂštres du filament.\n"
-#~ "Veuillez noter que la température de la buse, la température du plateau "
-#~ "et la vitesse volumétrique maximale ont un impact significatif sur la "
-#~ "qualitĂ© de lâimpression. Veuillez les rĂ©gler avec soin."
+#~ "Si vous le souhaitez, vous pouvez modifier vos préréglages dans les paramÚtres du filament.\n"
+#~ "Veuillez noter que la tempĂ©rature de la buse, la tempĂ©rature du plateau et la vitesse volumĂ©trique maximale ont un impact significatif sur la qualitĂ© de lâimpression. Veuillez les rĂ©gler avec soin."
#~ msgid "Studio Version:"
#~ msgstr "Version de Studio :"
@@ -18065,64 +14284,40 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgstr "Test de lâenvoi du stockage"
#~ 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 ""
-#~ "Le rĂ©glage de la vitesse dĂ©passe la vitesse maximale de lâimprimante "
-#~ "(machine_max_speed_x/machine_max_speed_y).\n"
-#~ "Orca plafonne automatiquement la vitesse dâimpression pour sâassurer "
-#~ "quâelle ne dĂ©passe pas les capacitĂ©s de lâimprimante.\n"
-#~ "Vous pouvez ajuster le paramĂštre de vitesse maximale dans la "
-#~ "configuration de votre imprimante pour obtenir des vitesses plus élevées."
+#~ "Le rĂ©glage de la vitesse dĂ©passe la vitesse maximale de lâimprimante (machine_max_speed_x/machine_max_speed_y).\n"
+#~ "Orca plafonne automatiquement la vitesse dâimpression pour sâassurer quâelle ne dĂ©passe pas les capacitĂ©s de lâimprimante.\n"
+#~ "Vous pouvez ajuster le paramÚtre de vitesse maximale dans la configuration de votre imprimante pour obtenir des vitesses plus élevées."
-#~ msgid ""
-#~ "Alternate extra wall only works with ensure vertical shell thickness "
-#~ "disabled. "
-#~ msgstr ""
-#~ "La paroi supplémentaire alternée ne fonctionne que si « Assurer "
-#~ "lâĂ©paisseur verticale de la coque » est dĂ©sactivĂ©. "
+#~ msgid "Alternate extra wall only works with ensure vertical shell thickness disabled. "
+#~ msgstr "La paroi supplĂ©mentaire alternĂ©e ne fonctionne que si « Assurer lâĂ©paisseur verticale de la coque » est dĂ©sactivĂ©. "
#~ msgid ""
#~ "Change these settings automatically? \n"
-#~ "Yes - Disable ensure vertical shell thickness and enable alternate extra "
-#~ "wall\n"
+#~ "Yes - Disable ensure vertical shell thickness and enable alternate extra wall\n"
#~ "No - Dont use alternate extra wall"
#~ msgstr ""
#~ "Modifier ces paramĂštres automatiquement ? \n"
-#~ "Oui - DĂ©sactiver « Assurer lâĂ©paisseur verticale de la coque » et activer "
-#~ "« Paroi supplémentaire alternée »\n"
+#~ "Oui - DĂ©sactiver « Assurer lâĂ©paisseur verticale de la coque » et activer « Paroi supplĂ©mentaire alternĂ©e »\n"
#~ "Non - Ne pas utiliser « Paroi supplémentaire alternée »"
-#~ msgid ""
-#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
-#~ "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)."
+#~ msgid "Add solid infill near sloping surfaces to guarantee the vertical shell 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)."
#~ msgid "Further reduce solid infill on walls (beta)"
#~ msgstr "Réduire davantage le remplissage solide des parois (expérimental)"
#~ 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 ""
-#~ "Réduit encore davantage les remplissages solides appliqués aux parois. "
-#~ "Ătant donnĂ© que le remplissage des surfaces solides sera trĂšs limitĂ©, "
-#~ "assurez-vous que vous utilisez un nombre suffisant de parois pour "
-#~ "soutenir la partie sur les surfaces inclinées.\n"
+#~ "RĂ©duit encore davantage les remplissages solides appliquĂ©s aux parois. Ătant donnĂ© que le remplissage des surfaces solides sera trĂšs limitĂ©, assurez-vous que vous utilisez un nombre suffisant de parois pour soutenir la partie sur les surfaces inclinĂ©es.\n"
#~ "\n"
-#~ "Pour les surfaces fortement inclinĂ©es, cette option nâest pas adaptĂ©e car "
-#~ "elle gĂ©nĂšre une couche supĂ©rieure trop fine et doit ĂȘtre dĂ©sactivĂ©e."
+#~ "Pour les surfaces fortement inclinĂ©es, cette option nâest pas adaptĂ©e car elle gĂ©nĂšre une couche supĂ©rieure trop fine et doit ĂȘtre dĂ©sactivĂ©e."
#~ msgid "Text-Rotate"
#~ msgstr "Rotation du texte"
@@ -18136,29 +14331,17 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgid "Configuration package updated to "
#~ msgstr "Package de configuration mis Ă jour en "
-#~ msgid ""
-#~ "The minimum printing speed for the filament when slow down for better "
-#~ "layer cooling is enabled, when printing overhangs and when feature speeds "
-#~ "are not specified explicitly."
-#~ msgstr ""
-#~ "La vitesse dâimpression minimale lors du ralentissement pour un meilleur "
-#~ "refroidissement des couches est activĂ©e, lors de lâimpression des "
-#~ "surplombs et lorsque les fonctionnalités de vitesses ne sont pas "
-#~ "spécifiées explicitement."
+#~ msgid "The minimum printing speed for the filament when slow down for better layer cooling is enabled, when printing overhangs and when feature speeds are not specified explicitly."
+#~ msgstr "La vitesse dâimpression minimale lors du ralentissement pour un meilleur refroidissement des couches est activĂ©e, lors de lâimpression des surplombs et lorsque les fonctionnalitĂ©s de vitesses ne sont pas spĂ©cifiĂ©es explicitement."
#~ msgid " "
#~ msgstr " "
#~ msgid "Small Area Infill Flow Compensation (beta)"
-#~ msgstr ""
-#~ "Compensation des débits de remplissage des petites zones (expérimental)"
+#~ msgstr "Compensation des débits de remplissage des petites zones (expérimental)"
-#~ msgid ""
-#~ "Improve shell precision by adjusting outer wall spacing. This also "
-#~ "improves layer consistency."
-#~ msgstr ""
-#~ "AmĂ©liorer la prĂ©cision de la coque en ajustant lâespacement des parois "
-#~ "extérieures. Cela améliore également la consistance des couches."
+#~ msgid "Improve shell precision by adjusting outer wall spacing. This also improves layer consistency."
+#~ msgstr "AmĂ©liorer la prĂ©cision de la coque en ajustant lâespacement des parois extĂ©rieures. Cela amĂ©liore Ă©galement la consistance des couches."
#~ msgid "Enable Flow Compensation"
#~ msgstr "Activer la compensation de débit"
@@ -18176,21 +14359,10 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgstr "La configuration ne peut pas ĂȘtre chargĂ©e."
#~ msgid "The 3mf is generated by old Orca Slicer, load geometry data only."
-#~ msgstr ""
-#~ "Le fichier 3mf a été généré par une ancienne version de Orca Slicer, "
-#~ "chargement des données de géométrie uniquement."
+#~ msgstr "Le fichier 3mf a été généré par une ancienne version de Orca Slicer, chargement des données de géométrie uniquement."
-#~ 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 always "
-#~ "enabled on BambuLab 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 dĂ©cochĂ©e (mode dâextrusion absolu). La tour dâessuyage nâest "
-#~ "compatible quâavec le mode relatif. Il est toujours activĂ© sur les "
-#~ "imprimantes BambuLab. La valeur par défaut est cochée"
+#~ 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 always enabled on BambuLab 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 dĂ©cochĂ©e (mode dâextrusion absolu). La tour dâessuyage nâest compatible quâavec le mode relatif. Il est toujours activĂ© sur les imprimantes BambuLab. La valeur par dĂ©faut est cochĂ©e"
#~ msgid "Movement:"
#~ msgstr "Mouvement:"
@@ -18229,26 +14401,14 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgid "Recalculate"
#~ msgstr "Recalculer"
-#~ msgid ""
-#~ "Orca recalculates your flushing volumes everytime the filament colors "
-#~ "change. You can change this behavior in Preferences."
-#~ msgstr ""
-#~ "Orca recalcule vos volumes de purge Ă chaque fois que les couleurs des "
-#~ "filaments changent. Vous pouvez modifier ce comportement dans les "
-#~ "préférences."
+#~ msgid "Orca recalculates your flushing volumes everytime the filament colors change. You can change this behavior in Preferences."
+#~ msgstr "Orca recalcule vos volumes de purge à chaque fois que les couleurs des filaments changent. Vous pouvez modifier ce comportement dans les préférences."
-#~ msgid ""
-#~ "The printer timed out while receiving a print job. Please check if the "
-#~ "network is functioning properly and send the print again."
-#~ msgstr ""
-#~ "L'imprimante s'est arrĂȘtĂ©e pendant la rĂ©ception d'un travail "
-#~ "d'impression. Vérifiez que le réseau fonctionne correctement et relancez "
-#~ "l'impression."
+#~ msgid "The printer timed out while receiving a print job. Please check if the network is functioning properly and send the print again."
+#~ msgstr "L'imprimante s'est arrĂȘtĂ©e pendant la rĂ©ception d'un travail d'impression. VĂ©rifiez que le rĂ©seau fonctionne correctement et relancez l'impression."
#~ msgid "The beginning of the vendor can not be a number. Please re-enter."
-#~ msgstr ""
-#~ "Le dĂ©but du nom du vendeur ne peut pas ĂȘtre un numĂ©ro. Veuillez les "
-#~ "saisir Ă nouveau."
+#~ msgstr "Le dĂ©but du nom du vendeur ne peut pas ĂȘtre un numĂ©ro. Veuillez les saisir Ă nouveau."
#~ msgid "Edit Text"
#~ msgstr "Modifier texte"
@@ -18283,43 +14443,29 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgid "Quick"
#~ msgstr "Rapide"
-#~ msgid ""
-#~ "Discribe how long the nozzle will move along the last path when retracting"
-#~ msgstr ""
-#~ "Décrire combien de temps la buse se déplacera le long du dernier chemin "
-#~ "lors de la rétraction"
+#~ msgid "Discribe how long the nozzle will move along the last path when retracting"
+#~ msgstr "Décrire combien de temps la buse se déplacera le long du dernier chemin lors de la rétraction"
#~ 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 ""
#~ "Simplifier le modĂšle\n"
-#~ "Saviez-vous que vous pouvez réduire le nombre de triangles dans un "
-#~ "maillage Ă l'aide de la fonction Simplifier le maillage ? Cliquez avec le "
-#~ "bouton droit sur le modÚle et sélectionnez Simplifier le modÚle. Pour en "
-#~ "savoir plus, consultez la documentation."
+#~ "Saviez-vous que vous pouvez réduire le nombre de triangles dans un maillage à l'aide de la fonction Simplifier le maillage ? Cliquez avec le bouton droit sur le modÚle et sélectionnez Simplifier le modÚle. Pour en savoir plus, consultez la documentation."
#~ 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 ""
#~ "Soustraire une partie\n"
-#~ "Saviez-vous que vous pouvez 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. Plus d'informations dans la documentation."
+#~ "Saviez-vous que vous pouvez 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. Plus d'informations dans la documentation."
#~ msgid "Filling bed "
#~ msgstr "Remplir le plateau"
#, boost-format
#~ msgid "%1% infill pattern doesn't support 100%% density."
-#~ msgstr ""
-#~ "Le motif de remplissage %1% ne prend pas en charge une densité de 100%%."
+#~ msgstr "Le motif de remplissage %1% ne prend pas en charge une densité de 100%%."
#~ msgid ""
#~ "Switch to rectilinear pattern?\n"
@@ -18331,9 +14477,7 @@ msgstr "Lâutilisateur a annulĂ©."
#~ "Non - Réinitialise automatiquement la densité à la valeur par défaut"
#~ msgid "Please heat the nozzle to above 170 degree before loading filament."
-#~ msgstr ""
-#~ "Veuillez chauffer la buse à plus de 170 degrés avant de charger le "
-#~ "filament."
+#~ msgstr "Veuillez chauffer la buse à plus de 170 degrés avant de charger le filament."
#~ msgid "Show g-code window"
#~ msgstr "Afficher la fenĂȘtre G-code"
@@ -18349,8 +14493,7 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgstr "Nombre de parois support arborescent"
#~ msgid "This setting specify the count of walls around tree support"
-#~ msgstr ""
-#~ "Ce paramÚtre spécifie le nombre de murs autour du support arborescent"
+#~ msgstr "Ce paramÚtre spécifie le nombre de murs autour du support arborescent"
#, c-format, boost-format
#~ msgid " doesn't work at 100%% density "
@@ -18372,16 +14515,13 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgstr "Veuillez saisir une valeur valide (K entre 0 et 0,5)"
#~ msgid "Please input a valid value (K in 0~0.5, N in 0.6~2.0)"
-#~ msgstr ""
-#~ "Veuillez saisir une valeur valide (K entre 0 et 0,5, N entre 0,6 et 2,0)"
+#~ msgstr "Veuillez saisir une valeur valide (K entre 0 et 0,5, N entre 0,6 et 2,0)"
#~ msgid "Export all objects as STL"
#~ msgstr "Exporter tous les objets au format STL"
#~ msgid "The 3mf is not compatible, load geometry data only!"
-#~ msgstr ""
-#~ "Le 3mf n'est pas compatible, chargement des données géométriques "
-#~ "uniquement!"
+#~ msgstr "Le 3mf n'est pas compatible, chargement des données géométriques uniquement!"
#~ msgid "Incompatible 3mf"
#~ msgstr "Fichier 3mf incompatible"
@@ -18403,9 +14543,7 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgstr "Ordre de mur intérieur/extérieur/remplissage"
#~ msgid "Print sequence of inner wall, outer wall and infill. "
-#~ msgstr ""
-#~ "Séquence d'impression du mur intérieur, du mur extérieur et du "
-#~ "remplissage."
+#~ msgstr "Séquence d'impression du mur intérieur, du mur extérieur et du remplissage."
#~ msgid "inner/outer/infill"
#~ msgstr "intérieur/extérieur/remplissage"
@@ -18438,15 +14576,13 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgstr "Charger les données de tranchage"
#~ msgid "Load cached slicing data from directory"
-#~ msgstr ""
-#~ "Charger les données de tranchage mises en cache à partir du répertoire"
+#~ msgstr "Charger les données de tranchage mises en cache à partir du répertoire"
#~ msgid "Slice"
#~ msgstr "Découper"
#~ msgid "Slice the plates: 0-all plates, i-plate i, others-invalid"
-#~ msgstr ""
-#~ "Trancher toutes les plaques : 0-toutes, i-plaque i, autres-invalides"
+#~ msgstr "Trancher toutes les plaques : 0-toutes, i-plaque i, autres-invalides"
#~ msgid "Show command help."
#~ msgstr "Afficher l'aide de la commande."
@@ -18455,9 +14591,7 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgstr "Ă jour"
#~ msgid "Update the configs values of 3mf to latest."
-#~ msgstr ""
-#~ "Mettez Ă jour les valeurs de configuration 3mf Ă la version la plus "
-#~ "récente."
+#~ msgstr "Mettez à jour les valeurs de configuration 3mf à la version la plus récente."
#~ msgid "mtcpp"
#~ msgstr "mtcpp"
@@ -18514,16 +14648,13 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgstr "Charger les paramÚtres généraux"
#~ msgid "Load process/machine settings from the specified file"
-#~ msgstr ""
-#~ "Charger les paramÚtres de processus/machine à partir du fichier spécifié"
+#~ msgstr "Charger les paramÚtres de processus/machine à partir du fichier spécifié"
#~ msgid "Load Filament Settings"
#~ msgstr "Charger les paramĂštres de filament"
#~ msgid "Load filament settings from the specified file list"
-#~ msgstr ""
-#~ "Charger les paramĂštres de filament Ă partir de la liste de fichiers "
-#~ "spécifiée"
+#~ msgstr "Charger les paramÚtres de filament à partir de la liste de fichiers spécifiée"
#~ msgid "Skip Objects"
#~ msgstr "Ignorer les Objets"
@@ -18540,120 +14671,71 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgid "Debug level"
#~ msgstr "Niveau de débogage"
-#~ msgid ""
-#~ "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
-#~ "trace\n"
-#~ msgstr ""
-#~ "Définit le niveau de journalisation du débogage. 0 :fatal, 1 :erreur, 2 :"
-#~ "avertissement, 3 :info, 4 :débogage, 5 :trace\n"
+#~ msgid "Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:trace\n"
+#~ msgstr "Définit le niveau de journalisation du débogage. 0 :fatal, 1 :erreur, 2 :avertissement, 3 :info, 4 :débogage, 5 :trace\n"
#~ 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 ""
#~ "Opérations dans une scÚne 3D\n"
-#~ "Savez-vous comment contrÎler la vue et la sélection des objets/piÚces "
-#~ "avec la souris et l'écran tactile dans la scÚne 3D ?"
+#~ "Savez-vous comment contrÎler la vue et la sélection des objets/piÚces avec la souris et l'écran tactile dans la scÚne 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 ""
#~ "Réparer le ModÚle\n"
-#~ "Saviez-vous que vous pouvez réparer un modÚle 3D corrompu pour éviter de "
-#~ "nombreux problÚmes de découpage ?"
+#~ "Saviez-vous que vous pouvez réparer un modÚle 3D corrompu pour éviter de nombreux problÚmes de découpage ?"
#~ msgid "Embeded"
#~ msgstr "Intégré"
-#~ msgid ""
-#~ "OrcaSlicer configuration file may be corrupted and is not abled to be "
-#~ "parsed.Please delete the file and try again."
-#~ msgstr ""
-#~ "Le fichier de configuration de Orca Slicer est peut-ĂȘtre corrompu et ne "
-#~ "peut pas ĂȘtre analysĂ©. Veuillez supprimer le fichier et rĂ©essayer."
+#~ msgid "OrcaSlicer configuration file may be corrupted and is not abled to be parsed.Please delete the file and try again."
+#~ msgstr "Le fichier de configuration de Orca Slicer est peut-ĂȘtre corrompu et ne peut pas ĂȘtre analysĂ©. Veuillez supprimer le fichier et rĂ©essayer."
#~ msgid "Online Models"
#~ msgstr "ModĂšles en ligne"
#~ msgid "Show online staff-picked models on the home page"
-#~ msgstr ""
-#~ "Afficher les modÚles en ligne sélectionnés par le staff sur la page "
-#~ "d'accueil"
+#~ msgstr "Afficher les modÚles en ligne sélectionnés par le staff sur la page d'accueil"
#~ msgid "The minimum printing speed when slow down for cooling"
-#~ msgstr ""
-#~ "La vitesse d'impression minimale lors du ralentissement pour le "
-#~ "refroidissement"
+#~ msgstr "La vitesse d'impression minimale lors du ralentissement pour le refroidissement"
#~ 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 ""
-#~ "Il n'existe actuellement aucun consommable de rechange identique, et le "
-#~ "réapprovisionnement automatique n'est actuellement pas possible. \n"
-#~ "(Prise en charge actuelle de la fourniture automatique de consommables de "
-#~ "la mĂȘme marque, du mĂȘme type de matĂ©riau et de la mĂȘme couleur)"
+#~ "Il n'existe actuellement aucun consommable de rechange identique, et le réapprovisionnement automatique n'est actuellement pas possible. \n"
+#~ "(Prise en charge actuelle de la fourniture automatique de consommables de la mĂȘme marque, du mĂȘme type de matĂ©riau et de la mĂȘme couleur)"
#~ msgid "Invalid nozzle diameter"
#~ msgstr "DiamĂštre de la buse non valide"
-#~ msgid ""
-#~ "The bed temperature exceeds filament's vitrification temperature. Please "
-#~ "open the front door of printer before printing to avoid nozzle clog."
-#~ msgstr ""
-#~ "La température du plateau dépasse la température de vitrification du "
-#~ "filament. Veuillez ouvrir la porte avant de l'imprimante avant "
-#~ "l'impression pour éviter le bouchage de la buse."
+#~ msgid "The bed temperature exceeds filament's vitrification temperature. Please open the front door of printer before printing to avoid nozzle clog."
+#~ msgstr "La température du plateau dépasse la température de vitrification du filament. Veuillez ouvrir la porte avant de l'imprimante avant l'impression pour éviter le bouchage de la buse."
#~ msgid "Temperature of vitrificaiton"
#~ msgstr "Température de vitrification"
-#~ msgid ""
-#~ "Material becomes soft at this temperature. Thus the heatbed cannot be "
-#~ "hotter than this tempature"
-#~ msgstr ""
-#~ "Le matériau devient mou à cette température. Ainsi, le lit chauffant ne "
-#~ "peut pas ĂȘtre plus chaud que cette tempĂ©rature"
+#~ msgid "Material becomes soft at this temperature. Thus the heatbed cannot be hotter than this tempature"
+#~ msgstr "Le matĂ©riau devient mou Ă cette tempĂ©rature. Ainsi, le lit chauffant ne peut pas ĂȘtre plus chaud que cette tempĂ©rature"
#~ msgid "Enable this option if machine has auxiliary part cooling fan"
-#~ msgstr ""
-#~ "Activez cette option si la machine est équipée d'un ventilateur de "
-#~ "refroidissement de piĂšce auxiliaire"
+#~ msgstr "Activez cette option si la machine est équipée d'un ventilateur de refroidissement de piÚce auxiliaire"
-#~ 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 ""
-#~ "Vitesse du ventilateur de refroidissement de la partie auxiliaire. Le "
-#~ "ventilateur auxiliaire fonctionnera Ă cette vitesse pendant l'impression, "
-#~ "à l'exception des premiÚres couches qui sont définies par aucune couche "
-#~ "de refroidissement"
+#~ 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 "Vitesse du ventilateur de refroidissement de la partie auxiliaire. Le ventilateur auxiliaire fonctionnera à cette vitesse pendant l'impression, à l'exception des premiÚres couches qui sont définies par aucune couche de refroidissement"
-#~ msgid ""
-#~ "Bed temperature for layers except the initial one. Value 0 means the "
-#~ "filament does not support to print on the High Temp"
-#~ msgstr ""
-#~ "Température du plateau de toutes les couches à l'exception de la "
-#~ "premiĂšre. La valeur 0 signifie que le filament ne prend pas en charge "
-#~ "l'impression sur le plateau High Temperature"
+#~ msgid "Bed temperature for layers except the initial one. Value 0 means the filament does not support to print on the High Temp"
+#~ msgstr "Température du plateau de toutes les couches à l'exception de la premiÚre. La valeur 0 signifie que le filament ne prend pas en charge l'impression sur le plateau High Temperature"
-#~ msgid ""
-#~ "Filter out gaps smaller than the threshold specified. This setting won't "
-#~ "affect top/bottom layers"
-#~ msgstr ""
-#~ "Filtrer les petits espaces au seuil spĂ©cifiĂ©. Ce paramĂštre nâaffectera "
-#~ "pas les couches supérieures/inférieures"
+#~ msgid "Filter out gaps smaller than the threshold specified. This setting won't affect top/bottom layers"
+#~ msgstr "Filtrer les petits espaces au seuil spĂ©cifiĂ©. Ce paramĂštre nâaffectera pas les couches supĂ©rieures/infĂ©rieures"
#~ msgid "Empty layers around bottom are replaced by nearest normal layers."
-#~ msgstr ""
-#~ "Les couches vides situées en bas sont remplacées par les couches normales "
-#~ "les plus proches."
+#~ msgstr "Les couches vides situées en bas sont remplacées par les couches normales les plus proches."
#~ msgid "The model has too many empty layers."
#~ msgstr "Le modĂšle a trop de couches vides."
@@ -18669,28 +14751,18 @@ msgstr "Lâutilisateur a annulĂ©."
#, 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 ""
-#~ "La température du plateau des autres couches est inférieure à la "
-#~ "température du plateau de la couche initiale de plus de %d degrés. Cela "
-#~ "peut entraßner la séparation du modÚle du plateau pendant l'impression"
+#~ msgstr "La température du plateau des autres couches est inférieure à la température du plateau de la couche initiale de plus de %d degrés. Cela peut entraßner la séparation du modÚle du plateau pendant l'impression"
#~ 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 ""
-#~ "La température du lit est supérieure à la température de vitrification de "
-#~ "ce filament.\n"
-#~ "Cela peut provoquer un blocage de la buse et une défaillance de "
-#~ "l'impression.\n"
-#~ "Veuillez laisser l'imprimante ouverte pendant le processus d'impression "
-#~ "afin de garantir la circulation de l'air ou de réduire la température du "
-#~ "plateau."
+#~ "La température du lit est supérieure à la température de vitrification de ce filament.\n"
+#~ "Cela peut provoquer un blocage de la buse et une défaillance de l'impression.\n"
+#~ "Veuillez laisser l'imprimante ouverte pendant le processus d'impression afin de garantir la circulation de l'air ou de réduire la température du plateau."
#~ msgid "Total Time Estimation"
#~ msgstr "Estimation du temps total"
@@ -18719,40 +14791,22 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgid "High Temp Plate"
#~ msgstr "Plaque haute température"
-#~ 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 ""
-#~ "Il s'agit de la température du plateau lorsque le plateau haute "
-#~ "température (\"Cool plate\") est installé. Une valeur à 0 signifie que ce "
-#~ "filament ne peut pas ĂȘtre imprimĂ© sur le plateau haute tempĂ©rature."
+#~ 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 "Il s'agit de la tempĂ©rature du plateau lorsque le plateau haute tempĂ©rature (\"Cool plate\") est installĂ©. Une valeur Ă 0 signifie que ce filament ne peut pas ĂȘtre imprimĂ© sur le plateau haute tempĂ©rature."
#~ msgid "Internal bridge support thickness"
#~ msgstr "Ăpaisseur du support interne du pont"
#, fuzzy, c-format, boost-format
-#~ msgid ""
-#~ "Klipper's max_accel_to_decel will be adjusted to this % of acceleration"
-#~ msgstr ""
-#~ "Le paramÚtre max_accel_to_decel de Klipper sera ajusté à ce pourcentage "
-#~ "dâaccĂ©lĂ©ration"
+#~ msgid "Klipper's max_accel_to_decel will be adjusted to this % of acceleration"
+#~ msgstr "Le paramĂštre max_accel_to_decel de Klipper sera ajustĂ© Ă ce pourcentage dâaccĂ©lĂ©ration"
#~ 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 ""
-#~ "Style et forme du support. Pour un support normal, la projection des "
-#~ "supports sur une grille réguliÚre créera des supports plus stables (par "
-#~ "défaut), tandis que des tours de support bien ajustées permettront "
-#~ "d'économiser du matériau et de réduire les cicatrices sur les objets.\n"
-#~ "Pour les supports Arborescent, le style mince fusionnera les branches de "
-#~ "maniÚre plus agressive et économisera beaucoup de matiÚre (par défaut), "
-#~ "tandis que le style hybride créera une structure similaire à celle d'un "
-#~ "support normal placé sous de grands surplombs plats."
+#~ "Style et forme du support. Pour un support normal, la projection des supports sur une grille réguliÚre créera des supports plus stables (par défaut), tandis que des tours de support bien ajustées permettront d'économiser du matériau et de réduire les cicatrices sur les objets.\n"
+#~ "Pour les supports Arborescent, le style mince fusionnera les branches de maniÚre plus agressive et économisera beaucoup de matiÚre (par défaut), tandis que le style hybride créera une structure similaire à celle d'un support normal placé sous de grands surplombs plats."
#~ msgid "Target chamber temperature"
#~ msgstr "Température cible de la chambre"
@@ -18760,15 +14814,8 @@ msgstr "Lâutilisateur a annulĂ©."
#~ msgid "Bed temperature difference"
#~ msgstr "Différence de température du lit"
-#~ 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 ""
-#~ "Il n'est pas recommandé que la température du plateau des autres couches "
-#~ "soit inférieure à celle de la premiÚre couche d'un niveau supérieur à ce "
-#~ "seuil. Une température de base trop basse de l'autre couche peut "
-#~ "provoquer le détachement du modÚle."
+#~ 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 "Il n'est pas recommandé que la température du plateau des autres couches soit inférieure à celle de la premiÚre couche d'un niveau supérieur à ce seuil. Une température de base trop basse de l'autre couche peut provoquer le détachement du modÚle."
#~ msgid "Orient the model"
#~ msgstr "Orienter le modĂšle"
diff --git a/localization/i18n/hu/OrcaSlicer_hu.po b/localization/i18n/hu/OrcaSlicer_hu.po
index c6abe9ecb4..ebcfec825a 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-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -71,6 +71,9 @@ msgstr "Okos kitöltési szög"
msgid "On overhangs only"
msgstr "Csak tĂșlnyĂșlĂĄsokon"
+msgid "Auto support threshold angle: "
+msgstr "Automatikus tåmasz szögének hatårértéke: "
+
msgid "Circle"
msgstr "Kör"
@@ -90,9 +93,6 @@ msgstr "Csak a(z) â%1%â ĂĄltal kijelölt felĂŒleteken törtĂ©nik festĂ©s"
msgid "Highlight faces according to overhang angle."
msgstr "FelĂŒletek kiemelĂ©se a tĂșlnyĂșlĂĄsi szögnek megfelelĆen."
-msgid "Auto support threshold angle: "
-msgstr "Automatikus tåmasz szögének hatårértéke: "
-
msgid "No auto support"
msgstr "Nincs automatikus tĂĄmasz"
@@ -1932,6 +1932,9 @@ msgstr "Modell egyszerƱsĂtĂ©se"
msgid "Center"
msgstr "Közép"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "FolyamatbeĂĄllĂtĂĄsok szerkesztĂ©se"
@@ -4082,6 +4085,15 @@ msgstr "Teljes idĆ"
msgid "Total cost"
msgstr "Total cost"
+msgid "up to"
+msgstr "legfeljebb"
+
+msgid "above"
+msgstr "felett"
+
+msgid "from"
+msgstr "ettĆl"
+
msgid "Color Scheme"
msgstr "SzĂnsĂ©ma"
@@ -4145,12 +4157,12 @@ msgstr "Filamentcserék szåma"
msgid "Cost"
msgstr "Költség"
-msgid "Print"
-msgstr "NyomtatĂĄs"
-
msgid "Color change"
msgstr "SzĂnvĂĄltĂĄs"
+msgid "Print"
+msgstr "NyomtatĂĄs"
+
msgid "Printer"
msgstr "NyomtatĂł"
@@ -4334,7 +4346,7 @@ msgstr "Térfogat:"
msgid "Size:"
msgstr "Méret:"
-#, 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)."
@@ -4774,6 +4786,18 @@ msgstr "2. menet"
msgid "Flow rate test - Pass 2"
msgstr "AnyagĂĄramlĂĄs teszt - 2. menet"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "AnyagĂĄramlĂĄs"
@@ -6036,14 +6060,6 @@ msgstr "Több rĂ©szbĆl ĂĄllĂł objektumot Ă©szleltĂŒnk"
msgid "The file does not contain any geometry data."
msgstr "A fĂĄjl nem tartalmaz geometriai adatokat."
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-
-msgid "Object too large"
-msgstr "Az objektum tĂșl nagy"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
@@ -6051,6 +6067,9 @@ msgstr ""
"Ăgy tƱnik, hogy az objektum tĂșl nagy. SzeretnĂ©d ĂĄtmĂ©retezni, hogy "
"illeszkedjen a nyomtatótér méretéhez?"
+msgid "Object too large"
+msgstr "Az objektum tĂșl nagy"
+
msgid "Export STL file:"
msgstr "STL fĂĄjl exportĂĄlĂĄsa:"
@@ -6418,6 +6437,9 @@ msgstr "Szeretnéd folytatni?"
msgid "Language selection"
msgstr "Nyelv kivĂĄlasztĂĄsa"
+msgid "Switching application language while some presets are modified."
+msgstr "AlkalmazĂĄs nyelvĂ©nek ĂĄtvĂĄltĂĄsa, miközben egyes beĂĄllĂtĂĄsok mĂłdosultak."
+
msgid "Changing application language"
msgstr "Alkalmazås nyelvének megvåltoztatåsa"
@@ -7528,8 +7550,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add Primitive"
-"\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add "
+"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Ha a nyomtatĂłfej nĂ©lkĂŒli timelapse engedĂ©lyezve van, javasoljuk, hogy "
"helyezz el a tĂĄlcĂĄn egy âTimelapse törlĆtornyotâ. Ehhez kattints jobb "
@@ -8384,8 +8406,11 @@ msgstr "Objektumok listĂĄja"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
-msgid "Shift+G"
-msgstr ""
+msgid "â+Shift+G"
+msgstr "â+Shift+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Ctrl+Shift+G"
msgid "Paste from clipboard"
msgstr "Beillesztés a vågólapról"
@@ -8435,18 +8460,33 @@ msgstr "Shift+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "Az oldalsåv összecsukåsa/kinyitåsa"
-msgid "Any arrow"
-msgstr ""
+msgid "â+Any arrow"
+msgstr "â+BĂĄrmilyen nyĂl gomb"
msgid "Movement in camera space"
msgstr "Mozgås a kameratérben"
+msgid "â„+Left mouse button"
+msgstr "â„+Bal egĂ©rgomb"
+
msgid "Select a part"
msgstr "VĂĄlassz egy tĂĄrgyat"
+msgid "â+Left mouse button"
+msgstr "â+Bal egĂ©rgomb"
+
msgid "Select multiple objects"
msgstr "Több objektum kijelölése"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl+BĂĄrmelyik nyĂlgomb"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt+bal egérgomb"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl+Bal egérgomb"
+
msgid "Shift+Left mouse button"
msgstr "Shift+Bal egérgomb"
@@ -8549,12 +8589,24 @@ msgstr "Plater"
msgid "Move: press to snap by 1mm"
msgstr "Move: press to snap by 1mm"
+msgid "â+Mouse wheel"
+msgstr "â+EgĂ©rgörgĆ"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "TĂĄmasz/SzĂnfestĂ©s: toll mĂ©retĂ©nek beĂĄllĂtĂĄsa"
+msgid "â„+Mouse wheel"
+msgstr "â„+EgĂ©rgörgĆ"
+
msgid "Support/Color Painting: adjust section position"
msgstr "TĂĄmasz/SzĂnfestĂ©s: metszet pozĂciĂłjĂĄnak beĂĄllĂtĂĄsa"
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl+EgĂ©rgörgĆ"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+EgĂ©rgörgĆ"
+
msgid "Gizmo"
msgstr "Gizmo"
@@ -9585,14 +9637,31 @@ msgid "Apply gap fill"
msgstr ""
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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
-"only\n"
-"3. Nowhere: Disables gap fill\n"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
+"\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
msgstr ""
msgid "Everywhere"
@@ -9667,10 +9736,11 @@ msgstr "ĂthidalĂĄs ĂĄramlĂĄsi sebessĂ©ge"
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Csökkentsd kicsit ezt az értéket (példåul 0,9-re), hogy ezzel csökkentsd az "
-"åthidalåshoz hasznålt anyag mennyiségét, és a megereszkedést"
msgid "Internal bridge flow ratio"
msgstr ""
@@ -9678,7 +9748,11 @@ msgstr ""
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
msgid "Top surface flow ratio"
@@ -9686,15 +9760,20 @@ 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"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
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 ""
-msgid "This factor affects the amount of material for bottom solid infill"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
msgid "Precise wall"
@@ -9828,9 +9907,25 @@ msgstr ""
msgid "Slow down for curled perimeters"
msgstr ""
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
msgstr ""
msgid "mm/s or %"
@@ -9839,8 +9934,14 @@ msgstr "mm/s vagy %"
msgid "External"
msgstr ""
-msgid "Speed of bridge and completely overhang wall"
-msgstr "Az ĂĄthidalĂĄsok Ă©s a teljesen tĂșlnyĂșlĂł falak nyomtatĂĄsi sebessĂ©ge"
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "mm/s"
@@ -9849,8 +9950,8 @@ msgid "Internal"
msgstr ""
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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
msgid "Brim width"
@@ -10378,6 +10479,17 @@ msgstr ""
"Ă©rtĂ©knek a vĂĄltoztatĂĄsĂĄval szĂ©p sĂk felĂŒletet kaphatsz, ha Ășgy tapasztalod, "
"hogy tĂșl sok vagy kevĂ©s az anyagĂĄramlĂĄs."
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "NyomĂĄselĆtolĂĄs engedĂ©lyezĂ©se"
@@ -10552,18 +10664,29 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "Filament betöltĂ©si idĆ"
-msgid "Time to load new filament when switch filament. For statistics only"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
msgstr ""
-"Az Ășj filament betöltĂ©sĂ©nek ideje filament vĂĄltĂĄskor, csak statisztikai "
-"célokra van hasznålva."
msgid "Filament unload time"
msgstr "Filament kitöltĂ©si idĆ"
-msgid "Time to unload old filament when switch filament. For statistics only"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
msgstr ""
-"A régi filament kitöltésének ideje filament våltåskor, csak statisztikai "
-"célokra van hasznålva."
msgid ""
"Filament diameter is used to calculate extrusion in gcode, so it's important "
@@ -10686,15 +10809,6 @@ msgstr "Az utolsó hƱtési lépés sebessége"
msgid "Cooling moves are gradually accelerating towards this speed."
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 "TömörĂtĂ©si paramĂ©terek"
@@ -10705,16 +10819,6 @@ 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 ""
@@ -11041,10 +11145,10 @@ msgstr "Teljes ventilåtor fordulatszåm ennél a rétegnél"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
-"\". \"full_fan_speed_layer\" will be ignored if lower than "
-"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
-"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer "
+"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
+"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
+"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
msgid "layer"
@@ -11107,7 +11211,10 @@ msgstr "Apró rések szƱrése"
msgid "Layers and Perimeters"
msgstr "Rétegek és peremek"
-msgid "Filter out gaps smaller than the threshold specified"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
msgstr ""
msgid ""
@@ -13030,29 +13137,40 @@ msgid "Activate temperature control"
msgstr ""
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)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
msgid "Chamber temperature"
msgstr "Kamra hĆmĂ©rsĂ©klete"
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
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"
@@ -14876,8 +14994,8 @@ msgstr ""
"SzeretnĂ©d felĂŒlĂrni?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you selected"
-"\". \n"
+"We would rename the presets as \"Vendor Type Serial @printer you "
+"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
@@ -16118,54 +16236,70 @@ msgstr ""
"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 "up to"
-#~ msgstr "legfeljebb"
-
-#~ msgid "above"
-#~ msgstr "felett"
-
-#~ msgid "from"
-#~ msgstr "ettĆl"
-
-#~ msgid "Switching application language while some presets are modified."
+#~ msgid ""
+#~ "Decrease this value slightly(for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag"
#~ msgstr ""
-#~ "AlkalmazĂĄs nyelvĂ©nek ĂĄtvĂĄltĂĄsa, miközben egyes beĂĄllĂtĂĄsok mĂłdosultak."
+#~ "Csökkentsd kicsit ezt az értéket (példåul 0,9-re), hogy ezzel csökkentsd "
+#~ "az åthidalåshoz hasznålt anyag mennyiségét, és a megereszkedést"
-#~ msgid "â+Shift+G"
-#~ msgstr "â+Shift+G"
+#~ 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 "Ctrl+Shift+G"
-#~ msgstr "Ctrl+Shift+G"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "Az ĂĄthidalĂĄsok Ă©s a teljesen tĂșlnyĂșlĂł falak nyomtatĂĄsi sebessĂ©ge"
-#~ msgid "â+Any arrow"
-#~ msgstr "â+BĂĄrmilyen nyĂl gomb"
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Az Ășj filament betöltĂ©sĂ©nek ideje filament vĂĄltĂĄskor, csak statisztikai "
+#~ "célokra van hasznålva."
-#~ msgid "â„+Left mouse button"
-#~ msgstr "â„+Bal egĂ©rgomb"
+#~ msgid ""
+#~ "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "A régi filament kitöltésének ideje filament våltåskor, csak statisztikai "
+#~ "célokra van hasznålva."
-#~ msgid "â+Left mouse button"
-#~ msgstr "â+Bal egĂ©rgomb"
+#~ 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 "Ctrl+Any arrow"
-#~ msgstr "Ctrl+BĂĄrmelyik nyĂlgomb"
+#~ 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 "Alt+Left mouse button"
-#~ msgstr "Alt+bal egérgomb"
-
-#~ msgid "Ctrl+Left mouse button"
-#~ msgstr "Ctrl+Bal egérgomb"
-
-#~ msgid "â+Mouse wheel"
-#~ msgstr "â+EgĂ©rgörgĆ"
-
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„+EgĂ©rgörgĆ"
-
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "Ctrl+EgĂ©rgörgĆ"
-
-#~ msgid "Alt+Mouse wheel"
-#~ msgstr "Alt+EgĂ©rgörgĆ"
+#~ 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 ""
+#~ "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 ""
#~ "Different nozzle diameters and different filament diameters is not "
diff --git a/localization/i18n/it/OrcaSlicer_it.po b/localization/i18n/it/OrcaSlicer_it.po
index ec66aa6dd4..bb1ee27c0c 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-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -74,6 +74,9 @@ msgstr "Angolo riempimento intelligente"
msgid "On overhangs only"
msgstr "Solo sulle sporgenze"
+msgid "Auto support threshold angle: "
+msgstr "Angolo di soglia per supporto automatico: "
+
msgid "Circle"
msgstr "Cerchio"
@@ -93,9 +96,6 @@ msgstr "Consente di pitturare solo sulle sfaccettature selezionate da: \"%1%\""
msgid "Highlight faces according to overhang angle."
msgstr "Evidenziare le facce in base all'angolo di sporgenza."
-msgid "Auto support threshold angle: "
-msgstr "Angolo di soglia per supporto automatico: "
-
msgid "No auto support"
msgstr "Nessun supporto automatico"
@@ -1995,6 +1995,9 @@ msgstr "Semplifica Modello"
msgid "Center"
msgstr "Centro"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "Modifica le impostazioni del processo"
@@ -4181,6 +4184,15 @@ msgstr "Tempo totale"
msgid "Total cost"
msgstr "Costo totale"
+msgid "up to"
+msgstr "fino a"
+
+msgid "above"
+msgstr "sopra"
+
+msgid "from"
+msgstr "da"
+
msgid "Color Scheme"
msgstr "Schema Colore"
@@ -4244,12 +4256,12 @@ msgstr "Tempi cambio filamento"
msgid "Cost"
msgstr "Costo"
-msgid "Print"
-msgstr "Stampa"
-
msgid "Color change"
msgstr "Cambio colore"
+msgid "Print"
+msgstr "Stampa"
+
msgid "Printer"
msgstr "Stampante"
@@ -4433,7 +4445,7 @@ msgstr "Volume:"
msgid "Size:"
msgstr "Dimensione:"
-#, 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)."
@@ -4875,6 +4887,18 @@ msgstr "Passaggio 2"
msgid "Flow rate test - Pass 2"
msgstr "Test di portata - Pass 2"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "Flusso"
@@ -6165,14 +6189,6 @@ msgstr "Ă stato rilevato un oggetto con piĂč parti"
msgid "The file does not contain any geometry data."
msgstr "Il file non contiene dati geometrici."
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-
-msgid "Object too large"
-msgstr "Oggetto troppo grande"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
@@ -6180,6 +6196,9 @@ msgstr ""
"L'oggetto sembra troppo grande. Vuoi ridimensionarlo per adattarlo "
"automaticamente al piatto di stampa?"
+msgid "Object too large"
+msgstr "Oggetto troppo grande"
+
msgid "Export STL file:"
msgstr "Esporta file STL:"
@@ -6558,6 +6577,9 @@ msgstr "Vuoi continuare?"
msgid "Language selection"
msgstr "Selezione lingua"
+msgid "Switching application language while some presets are modified."
+msgstr "Cambio lingua applicazione durante la modifica di alcuni preset."
+
msgid "Changing application language"
msgstr "Modifica lingua applicazione"
@@ -7680,8 +7702,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 ""
"Quando si registra un timelapse senza testa di stampa, si consiglia di "
"aggiungere un \"Timelapse Torre di pulizia\"\n"
@@ -8555,8 +8577,11 @@ msgstr "Elenco oggetti"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importa geometrie da file STL/STEP/3MF/OBJ/AMF."
-msgid "Shift+G"
-msgstr ""
+msgid "â+Shift+G"
+msgstr "â+Shift+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Ctrl+Shift+G"
msgid "Paste from clipboard"
msgstr "Incolla dagli appunti"
@@ -8608,18 +8633,33 @@ msgstr "Shift+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "Riduci/Espandi barra laterale"
-msgid "Any arrow"
-msgstr ""
+msgid "â+Any arrow"
+msgstr "â+Freccia qualsiasi"
msgid "Movement in camera space"
msgstr "Movimento nello spazio della camera"
+msgid "â„+Left mouse button"
+msgstr "â„+Tasto sinistro mouse"
+
msgid "Select a part"
msgstr "Seleziona parte"
+msgid "â+Left mouse button"
+msgstr "â+Tasto sinistro del mouse"
+
msgid "Select multiple objects"
msgstr "Seleziona piĂč oggetti"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl+qualsiasi freccia"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt+tasto sinistro del mouse"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl+Tasto sinistro del mouse"
+
msgid "Shift+Left mouse button"
msgstr "Shift+tasto sinistro mouse"
@@ -8722,12 +8762,24 @@ msgstr "Piano"
msgid "Move: press to snap by 1mm"
msgstr "Sposta: premi per muovere di 1 mm"
+msgid "â+Mouse wheel"
+msgstr "â+Rotella mouse"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "Supporto/Pittura a colori: regolare il raggio della penna"
+msgid "â„+Mouse wheel"
+msgstr "â„+Rotella mouse"
+
msgid "Support/Color Painting: adjust section position"
msgstr "Supporto/Pittura a colori: regolare la posizione della sezione"
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl+Rotellina del mouse"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+Rotella del mouse"
+
msgid "Gizmo"
msgstr "Gizmo"
@@ -8937,8 +8989,8 @@ msgid ""
msgstr ""
"Ă stato rilevato un aggiornamento importante che deve essere eseguito prima "
"che la stampa possa continuare. Si desidera aggiornare ora? Ă possibile "
-"effettuare l'aggiornamento anche in un secondo momento da \"Aggiorna firmware"
-"\"."
+"effettuare l'aggiornamento anche in un secondo momento da \"Aggiorna "
+"firmware\"."
msgid ""
"The firmware version is abnormal. Repairing and updating are required before "
@@ -9812,25 +9864,32 @@ msgid "Apply gap fill"
msgstr "Applicare il riempimento degli spazi vuoti"
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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
-"only\n"
-"3. Nowhere: Disables gap fill\n"
-msgstr ""
-"Abilita il riempimento degli spazi vuoti per le superfici selezionate. La "
-"lunghezza minima degli spazi vuoti che verranno riempiti puĂČ essere "
-"controllata dall'opzione Filtra piccoli spazi vuoti di seguito.\n"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
"\n"
-"Opzioni:\n"
-"1. Ovunque: applica il riempimento degli spazi vuoti alle superfici solide "
-"superiori, inferiori e interne\n"
-"2. Superfici superiore e inferiore: applica il riempimento degli spazi vuoti "
-"solo alle superfici superiore e inferiore\n"
-"3. Da nessuna parte: disabilita il riempimento degli spazi vuoti\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
+msgstr ""
msgid "Everywhere"
msgstr "Ovunque"
@@ -9905,10 +9964,11 @@ msgstr "Flusso del Bridge"
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Diminuire leggermente questo valore (ad esempio 0.9) per ridurre la quantitĂ "
-"di materiale per il ponte e migliorare l'abbassamento dello stesso"
msgid "Internal bridge flow ratio"
msgstr "Rapporto Flusso del bridge interno"
@@ -9916,30 +9976,33 @@ msgstr "Rapporto Flusso del bridge interno"
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
-"Questo valore governa lo spessore dello strato del bridge interno. Questo Ăš "
-"il primo strato sopra il riempimento. Riduci leggermente questo valore (ad "
-"esempio 0.9) per migliorare la qualitĂ della superficie sopra il riempimento."
msgid "Top surface flow ratio"
msgstr "Rapporto di portata superficiale superiore"
msgid ""
"This factor affects the amount of material for top solid infill. You can "
-"decrease it slightly to have smooth surface finish"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Questo fattore influisce sulla quantitĂ di materiale per il riempimento "
-"solido superiore. Puoi diminuirlo leggermente per avere una finitura "
-"superficiale liscia"
msgid "Bottom surface flow ratio"
msgstr "Rapporto di flusso della superficie inferiore"
-msgid "This factor affects the amount of material for bottom solid infill"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Questo fattore influisce sulla quantitĂ di materiale per il riempimento "
-"solido inferiore"
msgid "Precise wall"
msgstr "Parete precisa"
@@ -10118,12 +10181,26 @@ msgstr ""
msgid "Slow down for curled perimeters"
msgstr "Rallenta per perimetri arricciati"
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
msgstr ""
-"Attivare questa opzione per rallentare la stampa nelle aree in cui possono "
-"esistere potenziali perimetri arricciati"
msgid "mm/s or %"
msgstr "mm/s o %"
@@ -10131,8 +10208,14 @@ msgstr "mm/s o %"
msgid "External"
msgstr "Esterno"
-msgid "Speed of bridge and completely overhang wall"
-msgstr "Indica la velocitĂ per i bridge e le pareti completamente a sbalzo."
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "mm/s"
@@ -10141,11 +10224,9 @@ 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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
-"VelocitĂ del ponte interno. Se il valore Ăš espresso in percentuale, verrĂ "
-"calcolato in base al bridge_speed. Il valore predefinito Ăš 150%."
msgid "Brim width"
msgstr "Larghezza brim"
@@ -10801,6 +10882,17 @@ msgstr ""
"regolare questo valore per ottenere una superficie piatta se si verifica una "
"leggera sovra-estrusione o sotto-estrusione."
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "Abilita l'avanzamento della pressione"
@@ -10980,18 +11072,29 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "Durata caricamento filamento"
-msgid "Time to load new filament when switch filament. For statistics only"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
msgstr ""
-"Tempo di caricamento del nuovo filamento quando si cambia filamento, solo a "
-"fini statistici."
msgid "Filament unload time"
msgstr "Durata scaricamento filamento"
-msgid "Time to unload old filament when switch filament. For statistics only"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
msgstr ""
-"Tempo di scarico vecchio filamento quando si cambia filamento, solo a fini "
-"statistici."
msgid ""
"Filament diameter is used to calculate extrusion in gcode, so it's important "
@@ -11131,16 +11234,6 @@ msgid "Cooling moves are gradually accelerating towards this speed."
msgstr ""
"I movimenti di raffreddamento accelerano gradualmente verso questa velocitĂ ."
-msgid ""
-"Time for the printer firmware (or the Multi Material Unit 2.0) to load a new "
-"filament during a tool change (when executing the T code). This time is "
-"added to the total print time by the G-code time estimator."
-msgstr ""
-"Tempo per il firmware della stampante (o per l'unitĂ Multi Material 2.0) per "
-"il caricamento del nuovo filamento durante il cambio strumento (quando viene "
-"eseguito il T code). Questa durata viene aggiunta alla stima del tempo "
-"totale di stampa del G-code."
-
msgid "Ramming parameters"
msgstr "Parametri del ramming"
@@ -11151,16 +11244,6 @@ msgstr ""
"Questa stringa viene controllata da RammingDialog e contiene parametri "
"specifici del 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 ""
-"Tempo per il firmware della stampante (o per l'unitĂ Multi Material 2.0) per "
-"lo scaricamento del nuovo filamento durante il cambio strumento (quando "
-"viene eseguito il T code). Questa durata viene aggiunta alla stima del tempo "
-"totale di stampa del G-code."
-
msgid "Enable ramming for multitool setups"
msgstr "Abilita ramming per configurazioni multitool"
@@ -11532,16 +11615,17 @@ msgstr "Massima velocitĂ della ventola al layer"
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 velocitĂ della ventola aumenterĂ linearmente da zero al livello "
-"\"close_fan_the_first_x_layers\" al massimo al livello \"full_fan_speed_layer"
-"\". \"full_fan_speed_layer\" verrĂ ignorato se inferiore a "
-"\"close_fan_the_first_x_layers\", nel qual caso la ventola funzionerĂ alla "
-"massima velocitĂ consentita al livello \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" al massimo al livello "
+"\"full_fan_speed_layer\". \"full_fan_speed_layer\" verrĂ ignorato se "
+"inferiore a \"close_fan_the_first_x_layers\", nel qual caso la ventola "
+"funzionerĂ alla massima velocitĂ consentita al livello "
+"\"close_fan_the_first_x_layers\" + 1."
msgid "layer"
msgstr ""
@@ -11609,8 +11693,11 @@ msgstr "Filtra i piccoli spazi vuoti"
msgid "Layers and Perimeters"
msgstr "Layer e Perimetri"
-msgid "Filter out gaps smaller than the threshold specified"
-msgstr "Filtra gli spazi piĂč piccoli della soglia specificata"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
+msgstr ""
msgid ""
"Speed of gap infill. Gap usually has irregular line width and should be "
@@ -13742,34 +13829,40 @@ msgid "Activate temperature control"
msgstr "Attiva il controllo della temperatura"
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)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
-"Abilitare questa opzione per il controllo della temperatura della camera. Un "
-"comando M191 verrĂ aggiunto prima di \"machine_start_gcode\"\n"
-"Comandi G-code: M141/M191 S(0-255)"
msgid "Chamber temperature"
msgstr "Temperatura della camera di stampa"
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
msgstr ""
-"Una temperatura della camera piĂč elevata puĂČ aiutare a sopprimere o ridurre "
-"la deformazione e potenzialmente portare a una maggiore forza di adesione "
-"tra gli strati per materiali ad alta temperatura come ABS, ASA, PC, PA e "
-"cosĂŹ via. Allo stesso tempo, la filtrazione dell'aria di ABS e ASA "
-"peggiorerĂ . Mentre per PLA, PETG, TPU, PVA e altri materiali a bassa "
-"temperatura, la temperatura effettiva della camera non dovrebbe essere "
-"elevata per evitare intasamenti, quindi 0 che sta per spegnimento Ăš "
-"altamente raccomandato"
msgid "Nozzle temperature for layers after the initial one"
msgstr "Temperatura del nozzle dopo il primo layer"
@@ -15744,8 +15837,8 @@ msgstr ""
"Vuoi riscriverlo?"
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 ""
"Rinomineremo le preimpostazioni come \"Tipo di fornitore seriale @printer "
@@ -17061,53 +17154,137 @@ msgstr ""
"aumentare in modo appropriato la temperatura del piano riscaldato puĂČ "
"ridurre la probabilitĂ di deformazione."
-#~ msgid "up to"
-#~ msgstr "fino a"
+#~ 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"
+#~ "3. Nowhere: Disables gap fill\n"
+#~ msgstr ""
+#~ "Abilita il riempimento degli spazi vuoti per le superfici selezionate. La "
+#~ "lunghezza minima degli spazi vuoti che verranno riempiti puĂČ essere "
+#~ "controllata dall'opzione Filtra piccoli spazi vuoti di seguito.\n"
+#~ "\n"
+#~ "Opzioni:\n"
+#~ "1. Ovunque: applica il riempimento degli spazi vuoti alle superfici "
+#~ "solide superiori, inferiori e interne\n"
+#~ "2. Superfici superiore e inferiore: applica il riempimento degli spazi "
+#~ "vuoti solo alle superfici superiore e inferiore\n"
+#~ "3. Da nessuna parte: disabilita il riempimento degli spazi vuoti\n"
-#~ msgid "above"
-#~ msgstr "sopra"
+#~ msgid ""
+#~ "Decrease this value slightly(for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag"
+#~ msgstr ""
+#~ "Diminuire leggermente questo valore (ad esempio 0.9) per ridurre la "
+#~ "quantitĂ di materiale per il ponte e migliorare l'abbassamento dello "
+#~ "stesso"
-#~ msgid "from"
-#~ msgstr "da"
+#~ 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 ""
+#~ "Questo valore governa lo spessore dello strato del bridge interno. Questo "
+#~ "Ăš il primo strato sopra il riempimento. Riduci leggermente questo valore "
+#~ "(ad esempio 0.9) per migliorare la qualitĂ della superficie sopra il "
+#~ "riempimento."
-#~ msgid "Switching application language while some presets are modified."
-#~ msgstr "Cambio lingua applicazione durante la modifica di alcuni preset."
+#~ msgid ""
+#~ "This factor affects the amount of material for top solid infill. You can "
+#~ "decrease it slightly to have smooth surface finish"
+#~ msgstr ""
+#~ "Questo fattore influisce sulla quantitĂ di materiale per il riempimento "
+#~ "solido superiore. Puoi diminuirlo leggermente per avere una finitura "
+#~ "superficiale liscia"
-#~ msgid "â+Shift+G"
-#~ msgstr "â+Shift+G"
+#~ msgid "This factor affects the amount of material for bottom solid infill"
+#~ msgstr ""
+#~ "Questo fattore influisce sulla quantitĂ di materiale per il riempimento "
+#~ "solido inferiore"
-#~ msgid "Ctrl+Shift+G"
-#~ msgstr "Ctrl+Shift+G"
+#~ msgid ""
+#~ "Enable this option to slow printing down in areas where potential curled "
+#~ "perimeters may exist"
+#~ msgstr ""
+#~ "Attivare questa opzione per rallentare la stampa nelle aree in cui "
+#~ "possono esistere potenziali perimetri arricciati"
-#~ msgid "â+Any arrow"
-#~ msgstr "â+Freccia qualsiasi"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "Indica la velocitĂ per i bridge e le pareti completamente a sbalzo."
-#~ msgid "â„+Left mouse button"
-#~ msgstr "â„+Tasto sinistro mouse"
+#~ 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 ""
+#~ "VelocitĂ del ponte interno. Se il valore Ăš espresso in percentuale, verrĂ "
+#~ "calcolato in base al bridge_speed. Il valore predefinito Ăš 150%."
-#~ msgid "â+Left mouse button"
-#~ msgstr "â+Tasto sinistro del mouse"
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Tempo di caricamento del nuovo filamento quando si cambia filamento, solo "
+#~ "a fini statistici."
-#~ msgid "Ctrl+Any arrow"
-#~ msgstr "Ctrl+qualsiasi freccia"
+#~ msgid ""
+#~ "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Tempo di scarico vecchio filamento quando si cambia filamento, solo a "
+#~ "fini statistici."
-#~ msgid "Alt+Left mouse button"
-#~ msgstr "Alt+tasto sinistro del mouse"
+#~ msgid ""
+#~ "Time for the printer firmware (or the Multi Material Unit 2.0) to load a "
+#~ "new filament during a tool change (when executing the T code). This time "
+#~ "is added to the total print time by the G-code time estimator."
+#~ msgstr ""
+#~ "Tempo per il firmware della stampante (o per l'unitĂ Multi Material 2.0) "
+#~ "per il caricamento del nuovo filamento durante il cambio strumento "
+#~ "(quando viene eseguito il T code). Questa durata viene aggiunta alla "
+#~ "stima del tempo totale di stampa del G-code."
-#~ msgid "Ctrl+Left mouse button"
-#~ msgstr "Ctrl+Tasto sinistro del mouse"
+#~ msgid ""
+#~ "Time for the printer firmware (or the Multi Material Unit 2.0) to unload "
+#~ "a filament during a tool change (when executing the T code). This time is "
+#~ "added to the total print time by the G-code time estimator."
+#~ msgstr ""
+#~ "Tempo per il firmware della stampante (o per l'unitĂ Multi Material 2.0) "
+#~ "per lo scaricamento del nuovo filamento durante il cambio strumento "
+#~ "(quando viene eseguito il T code). Questa durata viene aggiunta alla "
+#~ "stima del tempo totale di stampa del G-code."
-#~ msgid "â+Mouse wheel"
-#~ msgstr "â+Rotella mouse"
+#~ msgid "Filter out gaps smaller than the threshold specified"
+#~ msgstr "Filtra gli spazi piĂč piccoli della soglia specificata"
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„+Rotella mouse"
+#~ 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 ""
+#~ "Abilitare questa opzione per il controllo della temperatura della camera. "
+#~ "Un comando M191 verrĂ aggiunto prima di \"machine_start_gcode\"\n"
+#~ "Comandi G-code: M141/M191 S(0-255)"
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "Ctrl+Rotellina del mouse"
-
-#~ msgid "Alt+Mouse wheel"
-#~ msgstr "Alt+Rotella del mouse"
+#~ 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 ""
+#~ "Una temperatura della camera piĂč elevata puĂČ aiutare a sopprimere o "
+#~ "ridurre la deformazione e potenzialmente portare a una maggiore forza di "
+#~ "adesione tra gli strati per materiali ad alta temperatura come ABS, ASA, "
+#~ "PC, PA e cosĂŹ via. Allo stesso tempo, la filtrazione dell'aria di ABS e "
+#~ "ASA peggiorerĂ . Mentre per PLA, PETG, TPU, PVA e altri materiali a bassa "
+#~ "temperatura, la temperatura effettiva della camera non dovrebbe essere "
+#~ "elevata per evitare intasamenti, quindi 0 che sta per spegnimento Ăš "
+#~ "altamente raccomandato"
#~ msgid ""
#~ "Different nozzle diameters and different filament diameters is not "
@@ -17164,12 +17341,13 @@ msgstr ""
#~ "nostro wiki.\n"
#~ "\n"
#~ "Di solito la calibrazione non Ăš necessaria. Quando si avvia una stampa a "
-#~ "singolo colore/materiale, con l'opzione \"calibrazione dinamica del flusso"
-#~ "\" selezionata nel menu di avvio della stampa, la stampante seguirĂ il "
-#~ "vecchio modo, calibrando il filamento prima della stampa; Quando si avvia "
-#~ "una stampa multicolore/materiale, la stampante utilizzerĂ il parametro di "
-#~ "compensazione predefinito per il filamento durante ogni cambio di "
-#~ "filamento, che avrĂ un buon risultato nella maggior parte dei casi.\n"
+#~ "singolo colore/materiale, con l'opzione \"calibrazione dinamica del "
+#~ "flusso\" selezionata nel menu di avvio della stampa, la stampante seguirĂ "
+#~ "il vecchio modo, calibrando il filamento prima della stampa; Quando si "
+#~ "avvia una stampa multicolore/materiale, la stampante utilizzerĂ il "
+#~ "parametro di compensazione predefinito per il filamento durante ogni "
+#~ "cambio di filamento, che avrĂ un buon risultato nella maggior parte dei "
+#~ "casi.\n"
#~ "\n"
#~ "Si prega di notare che ci sono alcuni casi che renderanno il risultato "
#~ "della calibrazione non affidabile: utilizzo di una piastra di texture per "
@@ -17566,8 +17744,8 @@ msgstr ""
#~ msgstr "Nessun layer sparso (SPERIMENTALE)"
#~ 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 ""
#~ "Rinomineremo le impostazioni predefinite come \"Tipo di fornitore seriale "
diff --git a/localization/i18n/ja/OrcaSlicer_ja.po b/localization/i18n/ja/OrcaSlicer_ja.po
index 16b11846d9..83e11fca49 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-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -74,6 +74,9 @@ msgstr "èȘćć
楫è§ćșŠ"
msgid "On overhangs only"
msgstr "ăȘăŒăăŒăăłă°ăźăż"
+msgid "Auto support threshold angle: "
+msgstr "èȘćă”ăăŒăè§ćșŠéŸć€"
+
msgid "Circle"
msgstr "ććœą"
@@ -93,9 +96,6 @@ msgstr "%1%ă§éžæăăéąă ăăăă€ăłăăă"
msgid "Highlight faces according to overhang angle."
msgstr "ăȘăŒăăŒăăłă°ăźè§ćșŠă«ăăăă€ă©ă€ă"
-msgid "Auto support threshold angle: "
-msgstr "èȘćă”ăăŒăè§ćșŠéŸć€"
-
msgid "No auto support"
msgstr "èȘćă”ăăŒăçĄă"
@@ -1942,6 +1942,9 @@ msgstr "ăąăă«ăç°Ąç„ć"
msgid "Center"
msgstr "ă»ăłăżăŒ"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "ăăă»ăčèšćźăç·šé"
@@ -4023,6 +4026,15 @@ msgstr "ç·æé"
msgid "Total cost"
msgstr "Total cost"
+msgid "up to"
+msgstr "æć€§"
+
+msgid "above"
+msgstr "仄äž"
+
+msgid "from"
+msgstr "from"
+
msgid "Color Scheme"
msgstr "é
èČăčăăŒă "
@@ -4086,12 +4098,12 @@ msgstr "ăăŁă©ăĄăłăäș€æćæ°"
msgid "Cost"
msgstr "ăłăčă"
-msgid "Print"
-msgstr "é ćœąăă"
-
msgid "Color change"
msgstr "èČ〿Ž"
+msgid "Print"
+msgstr "é ćœąăă"
+
msgid "Printer"
msgstr "ăăȘăłăżăŒ"
@@ -4275,7 +4287,7 @@ msgstr "ăăȘă„ăŒă "
msgid "Size:"
msgstr "ă”ă€ăș:"
-#, 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)."
@@ -4711,6 +4723,18 @@ msgstr "Pass 2"
msgid "Flow rate test - Pass 2"
msgstr "Flow rate test - Pass 2"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "Flow rate"
@@ -5951,19 +5975,14 @@ msgstr "è€æ°ăźăăŒăăć«ăăȘăăžă§ăŻăăæ€ćșăăăŸăă"
msgid "The file does not contain any geometry data."
msgstr "ăăźăăĄă€ă«ă«ăŻăžăȘăĄăăȘăăŒăżăć«ăŸăăŠăăŸăăă"
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-
-msgid "Object too large"
-msgstr "ăȘăăžă§ăŻăă性ăăăăŸă"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
msgstr "ăȘăăžă§ăŻăă性ăăăăźăăă§ăăăăăă«ćăăăŠăčă±ăŒă«ăăŸăăïŒ"
+msgid "Object too large"
+msgstr "ăȘăăžă§ăŻăă性ăăăăŸă"
+
msgid "Export STL file:"
msgstr "STLăăĄă€ă«ăăšăŻăčăăŒă:"
@@ -6333,6 +6352,9 @@ msgstr "ç¶èĄăăŸăăïŒ"
msgid "Language selection"
msgstr "èšèȘéžæ"
+msgid "Switching application language while some presets are modified."
+msgstr "ăąăăȘă±ăŒă·ă§ăłèšèȘăćăæżăăæă«ăăăȘă»ăăăźć€æŽăăăăŸă"
+
msgid "Changing application language"
msgstr "èšèȘă〿Ž"
@@ -7398,8 +7420,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 ""
"ăăăçĄăăźăżă€ă ă©ăăčăăăȘăéČç»ăăæă«ăăăżă€ă ă©ăăčăă©ă€ă ăżăŻăŒă"
"ăèżœć ăăŠăă ăăăăăŹăŒăă§ćłăŻăȘăăŻăăŠăăăăȘăăăŁăăèżœć ăâăăżă€ă "
@@ -8230,8 +8252,11 @@ msgstr "ăȘăăžă§ăŻăäžèЧ"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
-msgid "Shift+G"
-msgstr ""
+msgid "â+Shift+G"
+msgstr "â+Shift+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Ctrl+Shift+G"
msgid "Paste from clipboard"
msgstr "èČŒăä»ă"
@@ -8278,18 +8303,33 @@ msgstr "Shift+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "ă”ă€ăăăŒăć±é/é ă"
-msgid "Any arrow"
-msgstr ""
+msgid "â+Any arrow"
+msgstr "â+ââââ"
msgid "Movement in camera space"
msgstr "ăȘăăžă§ăŻăç§»ć"
+msgid "â„+Left mouse button"
+msgstr "â„+ăăŠăčć·Šăăżăł"
+
msgid "Select a part"
msgstr "ăăŒăăéžæ"
+msgid "â+Left mouse button"
+msgstr "â+ăăŠăčć·Šăăżăł"
+
msgid "Select multiple objects"
msgstr "è€æ°ăźăȘăăžă§ăŻăăéžæ"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl+ââââ"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt+ăăŠăčć·Šăăżăł"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl+ăăŠăčć·Šăăżăł"
+
msgid "Shift+Left mouse button"
msgstr "Shift + ăăŠăčć·Šăăżăł"
@@ -8392,12 +8432,24 @@ msgstr "æșć"
msgid "Move: press to snap by 1mm"
msgstr "1mmćäœă§ç§»ć"
+msgid "â+Mouse wheel"
+msgstr "â+ăăŠăčăă€ăŒă«"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "ă”ăăŒă/èČćĄă: ććŸăźă”ă€ăș"
+msgid "â„+Mouse wheel"
+msgstr "â„+ăăŠăčăă€ăŒă«"
+
msgid "Support/Color Painting: adjust section position"
msgstr "ă”ăăŒă/èČćĄă: æéąăźäœçœź"
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl+ăăŠăčăă€ăŒă«"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+ăăŠăčăă€ăŒă«"
+
msgid "Gizmo"
msgstr "Gizmo"
@@ -9382,14 +9434,31 @@ msgid "Apply gap fill"
msgstr ""
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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
-"only\n"
-"3. Nowhere: Disables gap fill\n"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
+"\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
msgstr ""
msgid "Everywhere"
@@ -9459,10 +9528,11 @@ msgstr "ăăȘăăžæ”é"
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"ăăźć€ăć°ă (äŸăă° 0.9) ć°ăăăăăăȘăăžçšă«æŒćșăéăæžăăăăăăżăéČ"
-"ăăŸăă"
msgid "Internal bridge flow ratio"
msgstr ""
@@ -9470,7 +9540,11 @@ msgstr ""
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
msgid "Top surface flow ratio"
@@ -9478,15 +9552,20 @@ 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"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
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 ""
-msgid "This factor affects the amount of material for bottom solid infill"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
msgid "Precise wall"
@@ -9618,9 +9697,25 @@ msgstr ""
msgid "Slow down for curled perimeters"
msgstr ""
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
msgstr ""
msgid "mm/s or %"
@@ -9629,8 +9724,14 @@ msgstr "mm/s or %"
msgid "External"
msgstr ""
-msgid "Speed of bridge and completely overhang wall"
-msgstr "ăăȘăăžăé ćœąăăæă«éćșŠă§ăă"
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "mm/s"
@@ -9639,8 +9740,8 @@ msgid "Internal"
msgstr ""
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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
msgid "Brim width"
@@ -10153,6 +10254,17 @@ msgstr ""
"ăăŁă©ăĄăłăăŻæž©ćșŠă«ăăäœç©ăć€ăăăŸăăăăźèšćźă§æŒćșæ”éăæŻäŸçă«èȘżæŽă"
"ăŸăă 0.95 ïœ 1.05ăźéă§èšćźăăŠăăă ăăă"
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "Enable pressure advance"
@@ -10320,18 +10432,29 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "ăăŁă©ăĄăłăăăŒăæé"
-msgid "Time to load new filament when switch filament. For statistics only"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
msgstr ""
-"ăăŁă©ăĄăłăăć
„ăæżăăæă«ăăăŁă©ăĄăłăăăăŒăăăæéă§ăăç”±èšçźçă«äœż"
-"çšăăăŠăăŸăă"
msgid "Filament unload time"
msgstr "ăăŁă©ăĄăłăăąăłăăŒăæé"
-msgid "Time to unload old filament when switch filament. For statistics only"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
msgstr ""
-"ăăŁă©ăĄăłăăć
„ăæżăăæă«ăăăŁă©ăĄăłăăăąăłăăŒăăăæéă§ăăç”±èšçźç"
-"ă«äœżçšăăăŠăăŸăă"
msgid ""
"Filament diameter is used to calculate extrusion in gcode, so it's important "
@@ -10454,15 +10577,6 @@ msgstr "æćŸăźć·ćŽç§»ćăźéćșŠ"
msgid "Cooling moves are gradually accelerating towards this speed."
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 "ă©ăăłă°ăă©ăĄăŒăżăŒ"
@@ -10473,15 +10587,6 @@ 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 "ăă«ăăăŒă«ăźă»ăăăąăăă§ă©ăăłă°ăæćčă«ăă"
@@ -10801,10 +10906,10 @@ msgstr "æć€§ćè»ąéćșŠăźç©ć±€"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
-"\". \"full_fan_speed_layer\" will be ignored if lower than "
-"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
-"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer "
+"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
+"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
+"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
msgid "layer"
@@ -10864,7 +10969,10 @@ msgstr "Filter out tiny gaps"
msgid "Layers and Perimeters"
msgstr "ç©ć±€ăšćąç"
-msgid "Filter out gaps smaller than the threshold specified"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
msgstr ""
msgid ""
@@ -12730,29 +12838,40 @@ msgid "Activate temperature control"
msgstr ""
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)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
msgid "Chamber temperature"
msgstr "Chamber temperature"
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
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ć±€çźćŸăźăășă«æž©ćșŠ"
@@ -14575,8 +14694,8 @@ msgstr ""
"Do you want to rewrite it?"
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 ""
@@ -15794,53 +15913,68 @@ msgstr ""
"ABS, appropriately increasing the heatbed temperature can reduce the "
"probability of warping?"
-#~ msgid "up to"
-#~ msgstr "æć€§"
+#~ msgid ""
+#~ "Decrease this value slightly(for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag"
+#~ msgstr ""
+#~ "ăăźć€ăć°ă (äŸăă° 0.9) ć°ăăăăăăȘăăžçšă«æŒćșăéăæžăăăăăăżă"
+#~ "éČăăŸăă"
-#~ msgid "above"
-#~ msgstr "仄äž"
+#~ 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 "from"
-#~ msgstr "from"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "ăăȘăăžăé ćœąăăæă«éćșŠă§ăă"
-#~ msgid "Switching application language while some presets are modified."
-#~ msgstr "ăąăăȘă±ăŒă·ă§ăłèšèȘăćăæżăăæă«ăăăȘă»ăăăźć€æŽăăăăŸă"
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "ăăŁă©ăĄăłăăć
„ăæżăăæă«ăăăŁă©ăĄăłăăăăŒăăăæéă§ăăç”±èšçźçă«"
+#~ "äœżçšăăăŠăăŸăă"
-#~ msgid "â+Shift+G"
-#~ msgstr "â+Shift+G"
+#~ msgid ""
+#~ "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "ăăŁă©ăĄăłăăć
„ăæżăăæă«ăăăŁă©ăĄăłăăăąăłăăŒăăăæéă§ăăç”±èšçź"
+#~ "çă«äœżçšăăăŠăăŸăă"
-#~ msgid "Ctrl+Shift+G"
-#~ msgstr "Ctrl+Shift+G"
+#~ 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 "â+Any arrow"
-#~ 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 "â„+Left mouse button"
-#~ msgstr "â„+ăăŠăčć·Šăăżăł"
-
-#~ msgid "â+Left mouse button"
-#~ msgstr "â+ăăŠăčć·Šăăżăł"
-
-#~ msgid "Ctrl+Any arrow"
-#~ msgstr "Ctrl+ââââ"
-
-#~ msgid "Alt+Left mouse button"
-#~ msgstr "Alt+ăăŠăčć·Šăăżăł"
-
-#~ msgid "Ctrl+Left mouse button"
-#~ msgstr "Ctrl+ăăŠăčć·Šăăżăł"
-
-#~ msgid "â+Mouse wheel"
-#~ msgstr "â+ăăŠăčăă€ăŒă«"
-
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„+ăăŠăčăă€ăŒă«"
-
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "Ctrl+ăăŠăčăă€ăŒă«"
-
-#~ msgid "Alt+Mouse wheel"
-#~ msgstr "Alt+ăăŠăčăă€ăŒă«"
+#~ 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 ""
+#~ "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 ""
#~ "Different nozzle diameters and different filament diameters is not "
diff --git a/localization/i18n/ko/OrcaSlicer_ko.po b/localization/i18n/ko/OrcaSlicer_ko.po
index d9d2118ec3..27b80dc0f3 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-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: 2024-05-31 23:33+0900\n"
"Last-Translator: ElectricalBoy <15651807+ElectricalBoy@users.noreply.github."
"com>\n"
@@ -79,6 +79,9 @@ msgstr "ì€ë§íž ì±ì°êž° ê°ë"
msgid "On overhangs only"
msgstr "ëì¶ë¶ìë§ ìč íêž°"
+msgid "Auto support threshold angle: "
+msgstr "ìë ì§ì§ë ìêłê° ê°ë: "
+
msgid "Circle"
msgstr "ì"
@@ -98,9 +101,6 @@ msgstr "\"%1%\"ìì ì íí ìììë§ ìč íêž° íì©"
msgid "Highlight faces according to overhang angle."
msgstr "ëì¶ë¶ ê°ëì ë°ëŒ 멎ì ê°ìĄ° íìí©ëë€."
-msgid "Auto support threshold angle: "
-msgstr "ìë ì§ì§ë ìêłê° ê°ë: "
-
msgid "No auto support"
msgstr "ìë ì§ì§ë ëčíì±"
@@ -1962,6 +1962,9 @@ msgstr "ëȘšëž ëšìí"
msgid "Center"
msgstr "ì€ì"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "íëĄìžì€ ì€ì ìì ížì§"
@@ -4052,6 +4055,15 @@ msgstr "ìê° í©êł"
msgid "Total cost"
msgstr "ìŽ ëčì©"
+msgid "up to"
+msgstr "êčì§"
+
+msgid "above"
+msgstr "ìì"
+
+msgid "from"
+msgstr "ë¶í°"
+
msgid "Color Scheme"
msgstr "ì ê”Źì±í"
@@ -4115,12 +4127,12 @@ msgstr "íëŒë©íž ëłêČœ ìê°"
msgid "Cost"
msgstr "ëčì©"
-msgid "Print"
-msgstr "ì¶ë „"
-
msgid "Color change"
msgstr "ì ëłêČœ"
+msgid "Print"
+msgstr "ì¶ë „"
+
msgid "Printer"
msgstr "í늰í°"
@@ -4304,7 +4316,7 @@ msgstr "ì©ë:"
msgid "Size:"
msgstr "íŹêž°:"
-#, 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)."
@@ -4744,6 +4756,18 @@ msgstr "2ì°š í
ì€íž"
msgid "Flow rate test - Pass 2"
msgstr "ì ë í
ì€íž - 2ì°š"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "ì ë"
@@ -5998,19 +6022,14 @@ msgstr "ìŹëŹ ë¶íìŒëĄ ê”Źì±ë ê°ìČŽê° ê°ì§ëìì”ëë€"
msgid "The file does not contain any geometry data."
msgstr "íìŒì íì ë°ìŽí°ê° íŹíšëìŽ ìì§ ìì”ëë€."
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-
-msgid "Object too large"
-msgstr "ê°ìČŽê° ë돎 íŒ"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
msgstr "ê°ìČŽê° ë돎 íœëë€. ìëìŒëĄ êł ìš ëČ ëì ë§êČ íŹêž°ë„Œ ì€ìŽìêČ ì”ëêč?"
+msgid "Object too large"
+msgstr "ê°ìČŽê° ë돎 íŒ"
+
msgid "Export STL file:"
msgstr "STL íìŒ ëŽëłŽëŽêž°:"
@@ -6380,6 +6399,9 @@ msgstr "êłìíìêČ ì”ëêč?"
msgid "Language selection"
msgstr "ìžìŽ ì í"
+msgid "Switching application language while some presets are modified."
+msgstr "ìŒë¶ ìŹì ì€ì ìŽ ìì ëë ëì ìì© íëĄê·žëš ìžìŽë„Œ ì íí©ëë€."
+
msgid "Changing application language"
msgstr "ìì© íëĄê·žëš ìžìŽ ëłêČœ"
@@ -7460,8 +7482,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"
@@ -8312,8 +8334,11 @@ msgstr "ê°ìČŽ ëȘ©ëĄ"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "STL/STEP/3MF/OBJ/AMF íìŒìì íì ë°ìŽí° ê°ì žì€êž°"
-msgid "Shift+G"
-msgstr ""
+msgid "â+Shift+G"
+msgstr "â+Shift+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Ctrl+Shift+G"
msgid "Paste from clipboard"
msgstr "íŽëŠœëłŽëìì ë¶ìŹëŁêž°"
@@ -8363,18 +8388,33 @@ msgstr "Shift+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "ìŹìŽëë° ì êž°/íŒìčêž°"
-msgid "Any arrow"
-msgstr ""
+msgid "â+Any arrow"
+msgstr "â+ì돎 íìŽí"
msgid "Movement in camera space"
msgstr "ìčŽë©ëŒ êł”ê°ìì ìŽë"
+msgid "â„+Left mouse button"
+msgstr "â„+ë§ì°ì€ ìŒìȘœ ëČíŒ"
+
msgid "Select a part"
msgstr "ë¶í ì í"
+msgid "â+Left mouse button"
+msgstr "â+ë§ì°ì€ ìŒìȘœ ëČíŒ"
+
msgid "Select multiple objects"
msgstr "ìŹëŹ ê°ìČŽ ì í"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl+íìŽí"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt+ë§ì°ì€ ìŒìȘœ ëČíŒ"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl+ë§ì°ì€ ìŒìȘœ ëČíŒ"
+
msgid "Shift+Left mouse button"
msgstr "Shift+ë§ì°ì€ ìŒìȘœ ëČíŒ"
@@ -8477,12 +8517,24 @@ msgstr "ì¶ë „í"
msgid "Move: press to snap by 1mm"
msgstr "ìŽë: ëëŹì 1mmì© ìŽë"
+msgid "â+Mouse wheel"
+msgstr "â+ë§ì°ì€ í "
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "ì§ì§ë/ìì ìč íêž°: í ë°êČœ ìĄ°ì "
+msgid "â„+Mouse wheel"
+msgstr "â„+ë§ì°ì€ í "
+
msgid "Support/Color Painting: adjust section position"
msgstr "ì§ì§ë/ìì ìč íêž°: ëšë©Ž ììč ìĄ°ì "
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl+ë§ì°ì€ í "
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+ë§ì°ì€ í "
+
msgid "Gizmo"
msgstr "ëê”Ź ìì"
@@ -9502,22 +9554,32 @@ msgid "Apply gap fill"
msgstr "ê°êČ© ì±ì°êž° ì ì©"
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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
-"only\n"
-"3. Nowhere: Disables gap fill\n"
-msgstr ""
-"ì íí í멎ì ëíŽ ê°êČ© ì±ì°êž°ë„Œ íì±íí©ëë€. ì±ìì§ ì”ì ê°êČ© êžžìŽë ìë"
-"ì ìì ê°êČ© íí°ë§ ì”ì
ìì ì ìŽí ì ìì”ëë€.\n"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
"\n"
-"ì”ì
:\n"
-"1. ìŽëììë: ìëš, íëš ë° ëŽë¶ ì늏ë í멎ì ê°êČ© ì±ì°êž°ë„Œ ì ì©í©ëë€.\n"
-"2. ìëš ë° íëš í멎: ìëš ë° íëš í멎ìë§ ê°êČ© ì±ì°êž°ë„Œ ì ì©í©ëë€.\n"
-"3. ì돎ë°ë: ê°êČ© ì±ì°êž°ë„Œ ëčíì±íí©ëë€.\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
+msgstr ""
msgid "Everywhere"
msgstr "ìŽëìë"
@@ -9588,8 +9650,11 @@ msgstr "ëžëŠżì§ ì ë ëčìš"
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
-msgstr "ìŽ ê°ì ìœê°(ì: 0.9) ì€ìŹ ëžëŠżì§ì ìì¶ëì ì€ìŹ ìČì§ì ê°ì í©ëë€"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
msgid "Internal bridge flow ratio"
msgstr "ëŽë¶ ëžëŠżì§ ì ë ëčìš"
@@ -9597,27 +9662,33 @@ msgstr "ëŽë¶ ëžëŠżì§ ì ë ëčìš"
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
-"ìŽ ê°ì ëŽë¶ ëžëŠżì§ ë ìŽìŽì ëê»ë„Œ êȰì í©ëë€. ìŽêČì ë돞 ì±ì°êž° ìì ìČ« ëČ"
-"ì§ž ë ìŽìŽì
ëë€. ë돞 ì±ì°êž°ëłŽë€ í멎 íì§ì í„ììí€ë €ë©Ž ìŽ ê°ì ìœê°(ì: "
-"0.9) ì€ì
ëë€."
msgid "Top surface flow ratio"
msgstr "ìëš í멎 ì ë ëčìš"
msgid ""
"This factor affects the amount of material for top solid infill. You can "
-"decrease it slightly to have smooth surface finish"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"ìŽ ê°ì ìëš êœì°Ź ëŽë¶ ì±ì°êž°ì ìŹëŁì ìì ìí„ì 믞ìč©ëë€. ë¶ëëŹìŽ í멎 ë§"
-"ê°ì ìíŽ ìœê° ì€ìŹë ë©ëë€"
msgid "Bottom surface flow ratio"
msgstr "íëš í멎 ì ë ëčìš"
-msgid "This factor affects the amount of material for bottom solid infill"
-msgstr "ìŽ ê°ì íëš êœì°Ź ëŽë¶ ì±ì°êž°ì ìŹëŁì ìì ìí„ì 믞ìč©ëë€"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
msgid "Precise wall"
msgstr "ì ë°í ëČœ"
@@ -9784,12 +9855,26 @@ msgstr "ëì¶ë¶ ì ëì ë°ëŒ ì¶ë „ ìë넌 ëźì¶ë €ë©Ž ìŽ ì”ì
ì
msgid "Slow down for curled perimeters"
msgstr "êșŸìŹ ìë ëë ìì ê°ì"
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
msgstr ""
-"êșŸìŹ ìë ëë ê° ìì ì ìë ìììì ì¶ë „ ìë넌 ëźì¶ë €ë©Ž ìŽ ì”ì
ì íì±í"
-"íìžì"
msgid "mm/s or %"
msgstr "mm/s ëë %"
@@ -9797,8 +9882,14 @@ msgstr "mm/s ëë %"
msgid "External"
msgstr "ìžë¶"
-msgid "Speed of bridge and completely overhang wall"
-msgstr "ëžëŠżì§ì ëì¶ë¶ ëČœì ìë"
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "mm/s"
@@ -9807,11 +9898,9 @@ msgid "Internal"
msgstr "ëŽë¶"
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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
-"ëŽë¶ ëžëŠżì§ ìë. ê°ì ë°±ë¶ìšëĄ íìí멎 ìžë¶ ëžëŠżì§ ìë넌 êž°ì€ìŒëĄ êłì°ë©ë"
-"ë€. êž°ëłžê°ì 150%ì
ëë€."
msgid "Brim width"
msgstr "ëžëŠŒ ëëč"
@@ -10420,6 +10509,17 @@ msgstr ""
"ëČìë 0.95ì 1.05 ìŹìŽì
ëë€. ìœê°ì êłŒëìì¶ ëë êłŒììì¶ìŽ ìì ë ìŽ ê°"
"ì ìĄ°ì íìŹ ííí í멎ì ì»ì ì ìì”ëë€"
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "íë ì
ìŽëë°Žì€ íì±í"
@@ -10601,15 +10701,29 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "íëŒë©íž ëŁêž° ìê°"
-msgid "Time to load new filament when switch filament. For statistics only"
-msgstr "íëŒë©íž ê”ìČŽ ì ì íëŒë©ížë„Œ ëŁë ìê°ì
ëë€. í”êłìë§ ìŹì©ë©ëë€"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
msgid "Filament unload time"
msgstr "íëŒë©íž ëčŒêž° ìê°"
-msgid "Time to unload old filament when switch filament. For statistics only"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
msgstr ""
-"íëŒë©ížë„Œ ê”ìČŽí ë êž°ìĄŽ íëŒë©ížë„Œ ëčŒë ìê°ì
ëë€. í”êłìë§ ìŹì©ë©ëë€"
msgid ""
"Filament diameter is used to calculate extrusion in gcode, so it's important "
@@ -10747,15 +10861,6 @@ msgstr "ë§ì§ë§ ëê° ìŽë ìë"
msgid "Cooling moves are gradually accelerating towards this speed."
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 "ëë° ë§€ê°ëłì"
@@ -10765,15 +10870,6 @@ msgid ""
msgstr ""
"ìŽ ëŹžììŽì RammingDialogì ìíŽ ížì§ëë©° ëë° êŽë š ë§€ê°ëłì넌 íŹíší©ëë€."
-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 "ë€ì€ ìì¶êž° ì€ì ì ìí ëë° íì±í"
@@ -11120,10 +11216,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\"ê° "
@@ -11191,8 +11287,11 @@ msgstr "ìì ê°êČ© íí°ë§"
msgid "Layers and Perimeters"
msgstr "ë ìŽìŽì ì€êłœì "
-msgid "Filter out gaps smaller than the threshold specified"
-msgstr "ì§ì ë ìêłê°ëłŽë€ ìì ê°êČ©ì íí°ë§í©ëë€"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
+msgstr ""
msgid ""
"Speed of gap infill. Gap usually has irregular line width and should be "
@@ -13238,31 +13337,40 @@ msgid "Activate temperature control"
msgstr "ìšë ì ìŽ íì±í"
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)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
-"ì±ëČ ìšë ì ìŽë„Œ ìíŽ ìŽ ì”ì
ì íì±íí©ëë€. M191 ëȘ
ë čìŽ "
-"\"machine_start_gcode\" ìì ì¶ê°ë©ëë€.\n"
-"Gìœë ëȘ
ë č: M141/M191 S(0-255)"
msgid "Chamber temperature"
msgstr "ì±ëČ ìšë"
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
msgstr ""
-"ì±ëČ ìšëê° ëììëĄ ë€í늌ì ì”ì íê±°ë ì€ìŽë ë° ëììŽ ë ì ììŒë©° ì ìŹì "
-"ìŒëĄ ABS, ASA, PC, PA ë±êłŒ ê°ì êł ìš ìŹëŁì ìž”ê° êČ°í© ê°ëê° ëìì§ ì ìì”ë"
-"ë€. ëìì ABS ë° ASAì êł”êž° ìŹêłŒë ëì± ì
íë©ëë€. PLA, PETG, TPU, PVA ë° "
-"êž°í ì ìš ìŹëŁì êČœì° ë§íì ë°©ì§íë €ë©Ž ì€ì ì±ëČ ìšëê° ëì§ ìììŒ íëŻëĄ "
-"êșŒì§ì ì믞íë 0ì ì ê·č ê¶ì„í©ëë€"
msgid "Nozzle temperature for layers after the initial one"
msgstr "ìŽêž° ë ìŽìŽ ìŽíì ë
žìŠ ìšë"
@@ -15157,8 +15265,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"
@@ -16422,53 +16530,120 @@ msgstr ""
"ABSì ê°ìŽ ë€íëŠŒìŽ ë°ìíêž° ìŹìŽ ììŹë„Œ ì¶ë „í ë, íížëČ ë ìšë넌 ì ì íêČ "
"ëìŽë©Ž ë€í늌 ê°ë„ì±ì ì€ìŒ ì ìë€ë ìŹì€ì ìêł êłì
šëì?"
-#~ msgid "up to"
-#~ msgstr "êčì§"
+#~ 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"
+#~ "3. Nowhere: Disables gap fill\n"
+#~ msgstr ""
+#~ "ì íí í멎ì ëíŽ ê°êČ© ì±ì°êž°ë„Œ íì±íí©ëë€. ì±ìì§ ì”ì ê°êČ© êžžìŽë ì"
+#~ "ëì ìì ê°êČ© íí°ë§ ì”ì
ìì ì ìŽí ì ìì”ëë€.\n"
+#~ "\n"
+#~ "ì”ì
:\n"
+#~ "1. ìŽëììë: ìëš, íëš ë° ëŽë¶ ì늏ë í멎ì ê°êČ© ì±ì°êž°ë„Œ ì ì©í©ë"
+#~ "ë€.\n"
+#~ "2. ìëš ë° íëš í멎: ìëš ë° íëš í멎ìë§ ê°êČ© ì±ì°êž°ë„Œ ì ì©í©ëë€.\n"
+#~ "3. ì돎ë°ë: ê°êČ© ì±ì°êž°ë„Œ ëčíì±íí©ëë€.\n"
-#~ msgid "above"
-#~ msgstr "ìì"
+#~ msgid ""
+#~ "Decrease this value slightly(for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag"
+#~ msgstr "ìŽ ê°ì ìœê°(ì: 0.9) ì€ìŹ ëžëŠżì§ì ìì¶ëì ì€ìŹ ìČì§ì ê°ì í©ëë€"
-#~ msgid "from"
-#~ msgstr "ë¶í°"
+#~ 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 ""
+#~ "ìŽ ê°ì ëŽë¶ ëžëŠżì§ ë ìŽìŽì ëê»ë„Œ êȰì í©ëë€. ìŽêČì ë돞 ì±ì°êž° ìì "
+#~ "ìČ« ëČì§ž ë ìŽìŽì
ëë€. ë돞 ì±ì°êž°ëłŽë€ í멎 íì§ì í„ììí€ë €ë©Ž ìŽ ê°ì ìœ"
+#~ "ê°(ì: 0.9) ì€ì
ëë€."
-#~ msgid "Switching application language while some presets are modified."
-#~ msgstr "ìŒë¶ ìŹì ì€ì ìŽ ìì ëë ëì ìì© íëĄê·žëš ìžìŽë„Œ ì íí©ëë€."
+#~ msgid ""
+#~ "This factor affects the amount of material for top solid infill. You can "
+#~ "decrease it slightly to have smooth surface finish"
+#~ msgstr ""
+#~ "ìŽ ê°ì ìëš êœì°Ź ëŽë¶ ì±ì°êž°ì ìŹëŁì ìì ìí„ì 믞ìč©ëë€. ë¶ëëŹìŽ í"
+#~ "멎 ë§ê°ì ìíŽ ìœê° ì€ìŹë ë©ëë€"
-#~ msgid "â+Shift+G"
-#~ msgstr "â+Shift+G"
+#~ msgid "This factor affects the amount of material for bottom solid infill"
+#~ msgstr "ìŽ ê°ì íëš êœì°Ź ëŽë¶ ì±ì°êž°ì ìŹëŁì ìì ìí„ì 믞ìč©ëë€"
-#~ msgid "Ctrl+Shift+G"
-#~ msgstr "Ctrl+Shift+G"
+#~ msgid ""
+#~ "Enable this option to slow printing down in areas where potential curled "
+#~ "perimeters may exist"
+#~ msgstr ""
+#~ "êșŸìŹ ìë ëë ê° ìì ì ìë ìììì ì¶ë „ ìë넌 ëźì¶ë €ë©Ž ìŽ ì”ì
ì íì±"
+#~ "ííìžì"
-#~ msgid "â+Any arrow"
-#~ msgstr "â+ì돎 íìŽí"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "ëžëŠżì§ì ëì¶ë¶ ëČœì ìë"
-#~ msgid "â„+Left mouse button"
-#~ msgstr "â„+ë§ì°ì€ ìŒìȘœ ëČíŒ"
+#~ 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 ""
+#~ "ëŽë¶ ëžëŠżì§ ìë. ê°ì ë°±ë¶ìšëĄ íìí멎 ìžë¶ ëžëŠżì§ ìë넌 êž°ì€ìŒëĄ êłì°"
+#~ "ë©ëë€. êž°ëłžê°ì 150%ì
ëë€."
-#~ msgid "â+Left mouse button"
-#~ msgstr "â+ë§ì°ì€ ìŒìȘœ ëČíŒ"
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr "íëŒë©íž ê”ìČŽ ì ì íëŒë©ížë„Œ ëŁë ìê°ì
ëë€. í”êłìë§ ìŹì©ë©ëë€"
-#~ msgid "Ctrl+Any arrow"
-#~ msgstr "Ctrl+íìŽí"
+#~ msgid ""
+#~ "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "íëŒë©ížë„Œ ê”ìČŽí ë êž°ìĄŽ íëŒë©ížë„Œ ëčŒë ìê°ì
ëë€. í”êłìë§ ìŹì©ë©ëë€"
-#~ msgid "Alt+Left mouse button"
-#~ msgstr "Alt+ë§ì°ì€ ìŒìȘœ ëČíŒ"
+#~ 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 "Ctrl+Left mouse button"
-#~ msgstr "Ctrl+ë§ì°ì€ ìŒìȘœ ëČíŒ"
+#~ 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 "â+Mouse wheel"
-#~ msgstr "â+ë§ì°ì€ í "
+#~ msgid "Filter out gaps smaller than the threshold specified"
+#~ msgstr "ì§ì ë ìêłê°ëłŽë€ ìì ê°êČ©ì íí°ë§í©ëë€"
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„+ë§ì°ì€ í "
+#~ 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 ""
+#~ "ì±ëČ ìšë ì ìŽë„Œ ìíŽ ìŽ ì”ì
ì íì±íí©ëë€. M191 ëȘ
ë čìŽ "
+#~ "\"machine_start_gcode\" ìì ì¶ê°ë©ëë€.\n"
+#~ "Gìœë ëȘ
ë č: M141/M191 S(0-255)"
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "Ctrl+ë§ì°ì€ í "
-
-#~ msgid "Alt+Mouse wheel"
-#~ msgstr "Alt+ë§ì°ì€ í "
+#~ 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 ""
+#~ "ì±ëČ ìšëê° ëììëĄ ë€í늌ì ì”ì íê±°ë ì€ìŽë ë° ëììŽ ë ì ììŒë©° ì "
+#~ "ìŹì ìŒëĄ ABS, ASA, PC, PA ë±êłŒ ê°ì êł ìš ìŹëŁì ìž”ê° êČ°í© ê°ëê° ëìì§ "
+#~ "ì ìì”ëë€. ëìì ABS ë° ASAì êł”êž° ìŹêłŒë ëì± ì
íë©ëë€. PLA, PETG, "
+#~ "TPU, PVA ë° êž°í ì ìš ìŹëŁì êČœì° ë§íì ë°©ì§íë €ë©Ž ì€ì ì±ëČ ìšëê° ëì§ "
+#~ "ìììŒ íëŻëĄ êșŒì§ì ì믞íë 0ì ì ê·č ê¶ì„í©ëë€"
#~ msgid ""
#~ "Different nozzle diameters and different filament diameters is not "
@@ -16913,8 +17088,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 a34760c9bc..8b0635b100 100644
--- a/localization/i18n/nl/OrcaSlicer_nl.po
+++ b/localization/i18n/nl/OrcaSlicer_nl.po
@@ -3,13 +3,16 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
+"PO-Revision-Date: \n"
+"Last-Translator: \n"
+"Language-Team: \n"
"Language: nl\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) ? 0 : 1;\n"
-"X-Generator: Localazy (https://localazy.com)\n"
+"X-Generator: Poedit 3.4.4\n"
msgid "Supports Painting"
msgstr "Ondersteuning (Support) tekenen"
@@ -71,6 +74,9 @@ msgstr "Slim vullen hoek"
msgid "On overhangs only"
msgstr "Alleen op overhangen"
+msgid "Auto support threshold angle: "
+msgstr "Maximale hoek automatische ondersteuning: "
+
msgid "Circle"
msgstr "Cirkel"
@@ -90,9 +96,6 @@ msgstr "Staat alleen schilderen toe op facetten geselecteerd met: \"%1%\""
msgid "Highlight faces according to overhang angle."
msgstr "Gebieden markeren op basis van overhangende hoek."
-msgid "Auto support threshold angle: "
-msgstr "Maximale hoek automatische ondersteuning: "
-
msgid "No auto support"
msgstr "Geen automatische ondersteuning"
@@ -103,7 +106,7 @@ msgid "Gizmo-Place on Face"
msgstr "Plaats op vlak"
msgid "Lay on face"
-msgstr "Op deze zijde neerleggen."
+msgstr "Op zijde leggen"
#, boost-format
msgid ""
@@ -254,7 +257,7 @@ msgid "World coordinates"
msgstr "Wereldcoördinaten"
msgid "Object coordinates"
-msgstr ""
+msgstr "Objectcoördinaten"
msgid "°"
msgstr "°"
@@ -267,7 +270,7 @@ msgid "%"
msgstr "%"
msgid "uniform scale"
-msgstr "Uniform schalen"
+msgstr "uniform schalen"
msgid "Planar"
msgstr "Planair"
@@ -291,7 +294,7 @@ msgid "Snap"
msgstr "Snap"
msgid "Prism"
-msgstr ""
+msgstr "Prisma"
msgid "Frustum"
msgstr "Frustum"
@@ -309,7 +312,7 @@ msgid "Place on cut"
msgstr "Op kniplijn plaatsen"
msgid "Flip upside down"
-msgstr ""
+msgstr "Draai ondersteboven"
msgid "Connectors"
msgstr "Verbindingen"
@@ -520,7 +523,7 @@ msgstr "Snij met behulp van vlak"
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 "
+"hiet-gevormde randen worden veroorzaakt door snijgereedschap: wil je dit nu "
"herstellen?"
msgid "Repairing model object"
@@ -668,11 +671,11 @@ msgstr "Tekstvorm"
#. TRN - Title in Undo/Redo stack after rotate with text around emboss axe
msgid "Text rotate"
-msgstr ""
+msgstr "Text draaien"
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
msgid "Text move"
-msgstr ""
+msgstr "Text verplaatsen"
msgid "Set Mirror"
msgstr "Stel spiegeling in"
@@ -750,16 +753,16 @@ msgstr ""
#, boost-format
msgid "Font \"%1%\" can't be selected."
-msgstr ""
+msgstr "Lettertype \"%1%\" kan niet worden geselecteerd."
msgid "Operation"
msgstr ""
msgid "Join"
-msgstr ""
+msgstr "Samenvoegen"
msgid "Click to change text into object part."
-msgstr ""
+msgstr "Klik om tekst in objectgedeelte te veranderen."
msgid "You can't change a type of the last solid part of the object."
msgstr ""
@@ -770,7 +773,7 @@ msgid "Cut"
msgstr "Knippen"
msgid "Click to change part type into negative volume."
-msgstr ""
+msgstr "Klik om het onderdeeltype te wijzigen naar een negatief volume."
msgid "Modifier"
msgstr "Aanpasser"
@@ -783,80 +786,80 @@ msgstr ""
#, boost-format
msgid "Rename style(%1%) for embossing text"
-msgstr ""
+msgstr "Stijl(%1%) hernoemen voor reliëftekst"
msgid "Name can't be empty."
-msgstr ""
+msgstr "Naam mag niet leeg zijn."
msgid "Name has to be unique."
-msgstr ""
+msgstr "Naam moet uniek zijn."
msgid "OK"
-msgstr "Offline"
+msgstr "OK"
msgid "Rename style"
-msgstr ""
+msgstr "Stijl hernoemen"
msgid "Rename current style."
-msgstr ""
+msgstr "Huidige stijl hernoemen."
msgid "Can't rename temporary style."
-msgstr ""
+msgstr "Kan tijdelijke stijl niet hernoemen."
msgid "First Add style to list."
-msgstr ""
+msgstr "Voeg eerst een stijl toe aan de lijst."
#, boost-format
msgid "Save %1% style"
-msgstr ""
+msgstr "Bewaar %1% stijl"
msgid "No changes to save."
-msgstr ""
+msgstr "Geen wijzigingen om op te slaan."
msgid "New name of style"
-msgstr ""
+msgstr "Nieuwe naam van stijl"
msgid "Save as new style"
-msgstr ""
+msgstr "Opslaan als nieuwe stijl"
msgid "Only valid font can be added to style."
-msgstr ""
+msgstr "Alleen geldige lettertypen kunnen aan de stijl worden toegevoegd."
msgid "Add style to my list."
-msgstr ""
+msgstr "Voeg stijl toe aan mijn lijst."
msgid "Save as new style."
-msgstr ""
+msgstr "Opslaan als nieuwe stijl."
msgid "Remove style"
-msgstr ""
+msgstr "Stijl verwijderen"
msgid "Can't remove the last existing style."
-msgstr ""
+msgstr "Kan de laatst bestaande stijl niet verwijderen."
#, boost-format
msgid "Are you sure you want to permanently remove the \"%1%\" style?"
-msgstr ""
+msgstr "Weet u zeker dat u de stijl \"%1%\" permanent wilt verwijderen?"
#, boost-format
msgid "Delete \"%1%\" style."
-msgstr ""
+msgstr "Stijl \"%1%\" verwijderen."
#, boost-format
msgid "Can't delete \"%1%\". It is last style."
-msgstr ""
+msgstr "Kan \"%1%\" niet verwijderen. Het is de laatste stijl."
#, boost-format
msgid "Can't delete temporary style \"%1%\"."
-msgstr ""
+msgstr "Kan tijdelijke stijl \"%1%\" niet verwijderen."
#, boost-format
msgid "Modified style \"%1%\""
-msgstr ""
+msgstr "Gewijzigde stijl \"%1%\""
#, boost-format
msgid "Current style is \"%1%\""
-msgstr ""
+msgstr "Huidige stijl is \"%1%\""
#, boost-format
msgid ""
@@ -864,13 +867,17 @@ msgid ""
"\n"
"Would you like to continue anyway?"
msgstr ""
+"Stijl wijzigen naar \"%1%\" zal de huidige stijlwijziging ongedaan maken.\n"
+"\n"
+"Wilt u toch doorgaan?"
msgid "Not valid style."
-msgstr ""
+msgstr "Ongeldige stijl."
#, boost-format
msgid "Style \"%1%\" can't be used and will be removed from a list."
msgstr ""
+"Stijl \"%1%\" kan niet worden gebruikt en wordt uit de lijst verwijderd."
msgid "Unset italic"
msgstr ""
@@ -925,18 +932,18 @@ msgstr "Bovenste"
msgctxt "Alignment"
msgid "Middle"
-msgstr ""
+msgstr "Midden"
msgctxt "Alignment"
msgid "Bottom"
msgstr "Onderste"
msgid "Revert alignment."
-msgstr ""
+msgstr "Uitlijning terugdraaien."
#. TRN EmbossGizmo: font units
msgid "points"
-msgstr ""
+msgstr "punten"
msgid "Revert gap between characters"
msgstr ""
@@ -994,6 +1001,9 @@ msgid ""
"Can't load exactly same font(\"%1%\"). Application selected a similar "
"one(\"%2%\"). You have to specify font for enable edit text."
msgstr ""
+"Kan niet exact hetzelfde lettertype laden(\"%1%\"). Er is een vergelijkbaar "
+"lettertype(\"%2%\") geselecteerd. U moet een lettertype opgeven om tekst te "
+"kunnen bewerken."
msgid "No symbol"
msgstr ""
@@ -1002,7 +1012,7 @@ msgid "Loading"
msgstr "Laden"
msgid "In queue"
-msgstr ""
+msgstr "In wachtrij"
#. TRN - Input label. Be short as possible
#. Height of one text line - Font Ascent
@@ -1077,7 +1087,7 @@ msgid "Leave SVG gizmo"
msgstr ""
msgid "SVG actions"
-msgstr ""
+msgstr "SVG acties"
msgid "SVG"
msgstr "SVG"
@@ -1468,7 +1478,7 @@ 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 ""
+msgstr "Kies ZIP bestand"
msgid "Choose one file (gcode/3mf):"
msgstr "Kies één bestand (gcode/3mf):"
@@ -1514,7 +1524,7 @@ msgid "Sync user presets"
msgstr "Synchroniseer gebruikersvoorinstellingen"
msgid "Loading user preset"
-msgstr "Voorinstelling voor gebruiker laden"
+msgstr "Gebruikersvoorinstelling laden"
msgid "Switching application language"
msgstr "De taal van de applicatie wordt aangepast"
@@ -1772,7 +1782,7 @@ msgid "Filament %d"
msgstr "Filament %d"
msgid "current"
-msgstr "Huidige"
+msgstr "huidige"
msgid "Scale to build volume"
msgstr "Schalen naar bruikbaar volume"
@@ -1942,6 +1952,9 @@ msgstr "Model vereenvoudigen"
msgid "Center"
msgstr "Centreren"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "Procesinstellingen bewerken"
@@ -2262,13 +2275,13 @@ msgid "More"
msgstr "Meer"
msgid "Open Preferences."
-msgstr "Voorkeuren openen"
+msgstr "Voorkeuren openen."
msgid "Open next tip."
-msgstr "Volgende tip openen"
+msgstr "Volgende tip openen."
msgid "Open Documentation in web browser."
-msgstr "Documentatie openen in een webbrowser"
+msgstr "Documentatie openen in een webbrowser."
msgid "Color"
msgstr "Kleur"
@@ -2301,7 +2314,7 @@ msgid "Jump to Layer"
msgstr "Spring naar laag"
msgid "Please enter the layer number"
-msgstr "Voer het laagnummer in."
+msgstr "Voer het laagnummer in"
msgid "Add Pause"
msgstr "Pauze toevoegen"
@@ -2322,7 +2335,7 @@ msgid "Insert template custom G-code at the beginning of this layer."
msgstr "Insert template custom G-code at the beginning of this layer."
msgid "Filament "
-msgstr "Filament"
+msgstr "Filament "
msgid "Change filament at the beginning of this layer."
msgstr "Change filament at the beginning of this layer."
@@ -2376,7 +2389,7 @@ msgid "Connecting..."
msgstr "Verbinden..."
msgid "?"
-msgstr " ?"
+msgstr "?"
msgid "/"
msgstr "/"
@@ -2429,13 +2442,13 @@ msgid "Idling..."
msgstr "Inactief..."
msgid "Heat the nozzle"
-msgstr "Verwarm de nozzle"
+msgstr "Verwarm het mondstuk"
msgid "Cut filament"
msgstr "Filament afsnijden"
msgid "Pull back current filament"
-msgstr "huidig filament terugtrekken"
+msgstr "Huidig filament terugtrekken"
msgid "Push new filament into extruder"
msgstr "Nieuw filament in de extruder laden"
@@ -2486,7 +2499,7 @@ msgid "Arranging..."
msgstr "Rangschikken..."
msgid "Arranging"
-msgstr "Rangschikken..."
+msgstr "Rangschikken"
msgid "Arranging canceled."
msgstr "Rangschikken geannuleerd."
@@ -2531,10 +2544,10 @@ msgstr ""
"Het is niet mogelijk om automatisch te orienteren op dit printbed."
msgid "Orienting..."
-msgstr "Oriënteren "
+msgstr "Oriënteren..."
msgid "Orienting"
-msgstr "Oriënteren "
+msgstr "Oriënteren"
msgid "Orienting canceled."
msgstr ""
@@ -2706,7 +2719,7 @@ msgid "Cancelled"
msgstr "Geannuleerd"
msgid "Install successfully."
-msgstr "Succesvol geĂŻnstalleerd"
+msgstr "Succesvol geĂŻnstalleerd."
msgid "Installing"
msgstr "Installeren"
@@ -2786,7 +2799,7 @@ msgid ""
"Nozzle\n"
"Temperature"
msgstr ""
-"Nozzle\n"
+"Mondstuk\n"
"temperatuur"
msgid "max"
@@ -2850,19 +2863,19 @@ msgid ""
"results. Please fill in the same values as the actual printing. They can be "
"auto-filled by selecting a filament preset."
msgstr ""
-"De temperatuur van de nozzle en de maximale volumetrische snelheid zijn van "
-"invloed op de kalibratieresultaten. Voer dezelfde waarden in als bij de "
+"De temperatuur van het mondstuk en de maximale volumetrische snelheid zijn "
+"van invloed op de kalibratieresultaten. Voer dezelfde waarden in als bij de "
"daadwerkelijke afdruk. Ze kunnen automatisch worden gevuld door een "
"voorinstelling voor filamenten te selecteren."
msgid "Nozzle Diameter"
-msgstr "Diameter van de nozzle"
+msgstr "Mondstukdiameter"
msgid "Bed Type"
msgstr "Bed type"
msgid "Nozzle temperature"
-msgstr "Nozzle temperatuur"
+msgstr "Mondstuk temperatuur"
msgid "Bed Temperature"
msgstr "Bed Temperatuur"
@@ -3450,10 +3463,10 @@ msgid "Name is invalid;"
msgstr "Naam is ongeldig;"
msgid "illegal characters:"
-msgstr "Niet toegestande karakters:"
+msgstr "niet toegestane karakters:"
msgid "illegal suffix:"
-msgstr "Ongeldig achtervoegsel:"
+msgstr "ongeldig achtervoegsel:"
msgid "The name is not allowed to be empty."
msgstr "Het is niet toegestaand om de naam leeg te laten."
@@ -3562,7 +3575,7 @@ msgid ""
"Please make sure whether to use the temperature to print.\n"
"\n"
msgstr ""
-"Het kan zijn dat de nozzle verstopt raakt indien er geprint wordt met een "
+"Het kan zijn dat het mondstuk verstopt raakt indien er geprint wordt met een "
"temperatuur buiten de voorgestelde range.\n"
"Controleer en bevestig de temperatuur voordat u verder gaat met printen.\n"
"\n"
@@ -3572,8 +3585,8 @@ msgid ""
"Recommended nozzle temperature of this filament type is [%d, %d] degree "
"centigrade"
msgstr ""
-"De geadviseerde nozzle temperatuur voor dit type filament is [%d, %d] graden "
-"Celcius"
+"De aanbevolen mondstuk temperatuur voor dit type filament is [%d, %d] graden "
+"Celsius"
msgid ""
"Too small max volumetric speed.\n"
@@ -3588,9 +3601,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"
+"De huidige kamertemperatuur is hoger dan de veilige temperatuur van het "
+"materiaal; dit kan leiden tot verzachting van het materiaal en verstoppingen "
+"van het mondstuk. De maximale veilige temperatuur voor het materiaal is %d"
msgid ""
"Too small layer height.\n"
@@ -3764,7 +3777,7 @@ msgid "Homing toolhead"
msgstr "Printkop naar beginpositie"
msgid "Cleaning nozzle tip"
-msgstr "Nozzle wordt schoongemaakt"
+msgstr "Mondstuk wordt schoongemaakt"
msgid "Checking extruder temperature"
msgstr "Extruder temperatuur wordt gecontroleerd"
@@ -3782,7 +3795,7 @@ msgid "Calibrating extrusion flow"
msgstr "De extrusieflow kalibreren"
msgid "Paused due to nozzle temperature malfunction"
-msgstr "Onderbroken vanwege storing in de nozzle temperatuur"
+msgstr "Onderbroken vanwege storing in de temperatuur van het mondstuk"
msgid "Paused due to heat bed temperature malfunction"
msgstr "Onderbroken vanwege storing in de temperatuur van het printbed"
@@ -3819,7 +3832,7 @@ msgid "Motor noise showoff"
msgstr "Motorgeluid showoff"
msgid "Nozzle filament covered detected pause"
-msgstr "Nozzle filament bedekt gedetecteerde pauze"
+msgstr "Mondstuk filament bedekt gedetecteerde pauze"
msgid "Cutter error pause"
msgstr "Pauze bij snijfout"
@@ -4059,13 +4072,13 @@ msgid "Layer Time (log)"
msgstr "Laagtijd (logboek)"
msgid "Height: "
-msgstr "Hoogte:"
+msgstr "Hoogte: "
msgid "Width: "
-msgstr "Breedte:"
+msgstr "Breedte: "
msgid "Speed: "
-msgstr "Snelheid:"
+msgstr "Snelheid: "
msgid "Flow: "
msgstr "Flow: "
@@ -4112,6 +4125,15 @@ msgstr "Totale tijd"
msgid "Total cost"
msgstr "Total cost"
+msgid "up to"
+msgstr "tot"
+
+msgid "above"
+msgstr "Boven"
+
+msgid "from"
+msgstr "Van"
+
msgid "Color Scheme"
msgstr "Kleurschema"
@@ -4175,12 +4197,12 @@ msgstr "Filamentwisseltijden"
msgid "Cost"
msgstr "Kosten"
-msgid "Print"
-msgstr "Print"
-
msgid "Color change"
msgstr "Kleur veranderen"
+msgid "Print"
+msgstr "Print"
+
msgid "Printer"
msgstr "Printer"
@@ -4364,7 +4386,7 @@ msgstr "Volume:"
msgid "Size:"
msgstr "Maat:"
-#, 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)."
@@ -4804,6 +4826,18 @@ msgstr "Fase 2"
msgid "Flow rate test - Pass 2"
msgstr "Stroomsnelheidstest - Fase 2"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "Flowrate"
@@ -5090,7 +5124,7 @@ msgid "Reload file list from printer."
msgstr "Reload file list from printer."
msgid "No printers."
-msgstr "Geen printers"
+msgstr "Geen printers."
#, c-format, boost-format
msgid "Connect failed [%d]!"
@@ -5211,7 +5245,7 @@ msgid "Error code: %d"
msgstr "Foutcode: %d"
msgid "Speed:"
-msgstr "Snelheid"
+msgstr "Snelheid:"
msgid "Deadzone:"
msgstr "Deadzone:"
@@ -5554,10 +5588,10 @@ msgid "Update your Orca Slicer could enable all functionality in the 3mf file."
msgstr ""
msgid "Current Version: "
-msgstr "Huidige versie:"
+msgstr "Huidige versie: "
msgid "Latest Version: "
-msgstr "Laatste versie:"
+msgstr "Laatste versie: "
msgid "Not for now"
msgstr "Not for now"
@@ -5581,7 +5615,7 @@ msgid "Undo integration was successful."
msgstr "Het ongedaan maken van de integratie is gelukt."
msgid "New network plug-in available."
-msgstr "Nieuwe netwerk plug-in beschikbaar"
+msgstr "Nieuwe netwerk plug-in beschikbaar."
msgid "Details"
msgstr "Détails"
@@ -5596,10 +5630,10 @@ msgid "Undo integration failed."
msgstr "Het ongedaan maken van de integratie is mislukt."
msgid "Exporting."
-msgstr "Exporteren"
+msgstr "Exporteren."
msgid "Software has New version."
-msgstr "Er is een update beschikbaar!"
+msgstr "Er is een update beschikbaar."
msgid "Goto download page."
msgstr "Ga naar de download pagina."
@@ -5758,13 +5792,15 @@ msgid "Filament Tangle Detect"
msgstr "Filament Tangle Detection"
msgid "Nozzle Clumping Detection"
-msgstr "Nozzle Clumping Detection"
+msgstr "Detectie van klontvorming in mondstuk"
msgid "Check if the nozzle is clumping by filament or other foreign objects."
-msgstr "Check if the nozzle is clumping by filament or other foreign objects."
+msgstr ""
+"Controleer of er klonten in het mondstuk zitten door filament of andere "
+"vreemde voorwerpen."
msgid "Nozzle Type"
-msgstr "Nozzle Type"
+msgstr "Mondstuk Type"
msgid "Stainless Steel"
msgstr "Roestvrij staal"
@@ -5941,18 +5977,18 @@ 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."
+"De huidige warmtebedtemperatuur is relatief hoog. Het mondstuk kan verstopt "
+"raken bij het printen van dit filament in een gesloten omgeving. Open de "
+"voordeur en/of verwijder het bovenste glas."
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 ""
-"De door het filament vereiste hardheid van de nozzle is hoger dan de "
-"standaard hardheid van de nozzle van de printer. Vervang de geharde nozzle "
-"of het filament, anders raakt de nozzle versleten of beschadigd."
+"De door het filament vereiste hardheid van het mondstuk is hoger dan de "
+"standaard hardheid van het mondstuk van de printer. Vervang het geharde "
+"mondstuk of het filament, anders raakt het mondstuk versleten of beschadigd."
msgid ""
"Enabling traditional timelapse photography may cause surface imperfections. "
@@ -6089,14 +6125,6 @@ msgstr "Er is een object met meerdere onderdelen gedetecteerd"
msgid "The file does not contain any geometry data."
msgstr "Het bestand bevat geen geometriegegevens."
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-
-msgid "Object too large"
-msgstr "Object te groot"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
@@ -6104,6 +6132,9 @@ msgstr ""
"Uw object lijkt te groot. Wilt u het verkleinen zodat het automatisch op het "
"printbed past?"
+msgid "Object too large"
+msgstr "Object te groot"
+
msgid "Export STL file:"
msgstr "Exporteer STL bestand:"
@@ -6164,7 +6195,7 @@ msgid "Please select a file"
msgstr "Selecteer een bestand"
msgid "Do you want to replace it"
-msgstr "Do you want to replace it?"
+msgstr "Wilt u deze vervangen?"
msgid "Message"
msgstr "Bericht"
@@ -6265,7 +6296,7 @@ msgid "The selected file"
msgstr "Het geselecteerde bestand"
msgid "does not contain valid gcode."
-msgstr "Bevat geen geldige Gcode"
+msgstr "Bevat geen geldige G-code"
msgid "Error occurs while loading G-code file"
msgstr "Er is een fout opgetreden tijdens het laden van het G-codebestand."
@@ -6273,16 +6304,18 @@ 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 ""
+msgstr "Het laden van een ZIP-archief op pad %1% is mislukt."
#. TRN: First argument = path to file, second argument = error description
#, boost-format
msgid "Failed to unzip file to %1%: %2%"
-msgstr ""
+msgstr "Kan het bestand niet uitpakken naar %1%: %2%"
#, boost-format
msgid "Failed to find unzipped file at %1%. Unzipping of file has failed."
msgstr ""
+"Kan het uitgepakte bestand op %1% niet vinden. Het uitpakken van het bestand "
+"is mislukt."
msgid "Drop project file"
msgstr "Projectbestand neerzetten"
@@ -6453,6 +6486,8 @@ msgid ""
"\"Fix Model\" feature is currently only on Windows. Please repair the model "
"on Orca Slicer(windows) or CAD softwares."
msgstr ""
+"De functie \"Model repareren\" is momenteel alleen beschikbaar op Windows. "
+"Repareer het model met OrcaSlicer (Windows) of andere CAD-software."
#, c-format, boost-format
msgid ""
@@ -6474,6 +6509,11 @@ msgstr "Wilt u doorgaan?"
msgid "Language selection"
msgstr "Taal selectie"
+msgid "Switching application language while some presets are modified."
+msgstr ""
+"De taal van de toepassing aanpaasen terwijl sommige voorinstellingen zijn "
+"aangepast."
+
msgid "Changing application language"
msgstr "Taal van de applicatie wijzigen"
@@ -6484,7 +6524,7 @@ msgid "Region selection"
msgstr "Regio selectie"
msgid "Second"
-msgstr "Seconde"
+msgstr "seconde(n)"
msgid "Browse"
msgstr "Browsen"
@@ -6493,19 +6533,19 @@ msgid "Choose Download Directory"
msgstr "Kies Downloadmap"
msgid "Associate"
-msgstr ""
+msgstr "Associeer"
msgid "with OrcaSlicer so that Orca can open models from"
-msgstr ""
+msgstr "met OrcaSlicer zodat Orca modellen kan openen van"
msgid "Current Association: "
-msgstr ""
+msgstr "Huidige associatie: "
msgid "Current Instance"
-msgstr ""
+msgstr "Huidige instantie"
msgid "Current Instance Path: "
-msgstr ""
+msgstr "Huidig instancepad: "
msgid "General Settings"
msgstr "Algemene instellingen"
@@ -6529,21 +6569,24 @@ msgid "Login Region"
msgstr "Inlogregio"
msgid "Stealth Mode"
-msgstr ""
+msgstr "Stealth-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 ""
+"Hiermee wordt het versturen van gegevens naar Bambu's cloudservices gestopt. "
+"Gebruikers die geen BambuLab-machines gebruiken of alleen de LAN-modus "
+"gebruiken, kunnen deze functie veilig inschakelen."
msgid "Enable network plugin"
-msgstr ""
+msgstr "Netwerkplug-in inschakelen"
msgid "Check for stable updates only"
-msgstr ""
+msgstr "Alleen op stabiele updates controleren"
msgid "Metric"
-msgstr "Metriek"
+msgstr "Metrisch"
msgid "Imperial"
msgstr "Imperiaal"
@@ -6552,14 +6595,14 @@ msgid "Units"
msgstr "Eenheden"
msgid "Allow only one OrcaSlicer instance"
-msgstr ""
+msgstr "Sta slechts één OrcaSlicer-instantie toe"
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 ""
-"Op OSX is er standaard altijd maar één instantie van een app actief. Het is "
+"In 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."
@@ -6569,37 +6612,42 @@ msgid ""
"same OrcaSlicer is already running, that instance will be reactivated "
"instead."
msgstr ""
+"Als deze optie is ingeschakeld, wordt OrcaSlicer opnieuw geactiveerd wanneer "
+"er al een ander exemplaar van OrcaSlicer is gestart."
msgid "Home"
msgstr "Thuis"
msgid "Default Page"
-msgstr ""
+msgstr "Startpagina"
msgid "Set the page opened on startup."
-msgstr ""
+msgstr "Stel de pagina in die wordt geopend bij het opstarten."
msgid "Touchpad"
-msgstr ""
+msgstr "Touchpad"
msgid "Camera style"
-msgstr ""
+msgstr "Camera stijl"
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 ""
+"Selecteer cameranavigatiestijl.\n"
+"Standaard: LMB+bewegen voor rotatie, RMB/MMB+bewegen voor pannen.\n"
+"Touchpad: Alt+bewegen voor rotatie, Shift+bewegen voor pannen."
msgid "Zoom to mouse position"
-msgstr "Zoom to mouse position"
+msgstr "Zoomen naar muispositie"
msgid ""
"Zoom in towards the mouse pointer's position in the 3D view, rather than the "
"2D window center."
msgstr ""
-"Zoom in towards the mouse pointer's position in the 3D view, rather than the "
-"2D window center."
+"Zoom in op de positie van de muisaanwijzer in de 3D-weergave, in plaats van "
+"op het midden van het venster."
msgid "Use free camera"
msgstr "Gebruik vrij beweegbare camera"
@@ -6610,16 +6658,18 @@ msgstr ""
"vaste camera."
msgid "Reverse mouse zoom"
-msgstr ""
+msgstr "Omgekeerde muiszoom"
msgid "If enabled, reverses the direction of zoom with mouse wheel."
msgstr ""
+"Als deze optie is ingeschakeld, wordt de zoomrichting met het muiswiel "
+"omgedraaid."
msgid "Show splash screen"
msgstr "Toon startscherm"
msgid "Show the splash screen during startup."
-msgstr ""
+msgstr "Toon het opstartscherm tijdens het opstarten."
msgid "Show \"Tip of the day\" notification after start"
msgstr "Toon de melding 'Tip van de dag' na het starten"
@@ -6639,21 +6689,27 @@ msgstr ""
msgid ""
"Flushing volumes: Auto-calculate every time when the filament is changed."
-msgstr "Flushing volumes: Auto-calculate every time the filament is changed."
+msgstr ""
+"Spoelvolumes: Automatisch berekenen telkens wanneer het filament wordt "
+"vervangen."
msgid "If enabled, auto-calculate every time when filament is changed"
-msgstr "If enabled, auto-calculate every time filament is changed"
+msgstr ""
+"Als dit is ingeschakeld, wordt er automatisch berekend telkens wanneer het "
+"filament wordt verwisseld"
msgid "Remember printer configuration"
-msgstr ""
+msgstr "Printerconfiguratie onthouden"
msgid ""
"If enabled, Orca will remember and switch filament/process configuration for "
"each printer automatically."
msgstr ""
+"Als dit is ingeschakeld, onthoudt Orca automatisch de filament-/"
+"procesconfiguratie voor elke printer en schakelt deze automatisch om."
msgid "Multi-device Management(Take effect after restarting Orca)."
-msgstr ""
+msgstr "Beheer van meerdere apparaten (Werkt nadat Orca opnieuw is opgestart)."
msgid ""
"With this option enabled, you can send a task to multiple devices at the "
@@ -6663,10 +6719,10 @@ msgstr ""
"same time and manage multiple devices."
msgid "Auto arrange plate after cloning"
-msgstr ""
+msgstr "Plaat automatisch rangschikken na het klonen"
msgid "Auto arrange plate after object cloning"
-msgstr ""
+msgstr "Automatische rangschikking van de plaat na het klonen van een object"
msgid "Network"
msgstr "Netwerk"
@@ -6680,73 +6736,73 @@ msgid "User Sync"
msgstr "Gebruiker synchroniseren"
msgid "Update built-in Presets automatically."
-msgstr "Update built-in presets automatically."
+msgstr "Ingebouwde voorinstellingen automatisch bijwerken."
msgid "System Sync"
-msgstr "System Sync"
+msgstr "Systeemsync"
msgid "Clear my choice on the unsaved presets."
-msgstr "Clear my choice on the unsaved presets."
+msgstr "Wis keuze voor niet-opgeslagen presets."
msgid "Associate files to OrcaSlicer"
-msgstr "Koppel bestanden aan Orca Slicer"
+msgstr "Koppel bestanden aan OrcaSlicer"
msgid "Associate .3mf files to OrcaSlicer"
-msgstr "Koppel .3mf-bestanden aan Orca Slicer"
+msgstr "Koppel .3mf-bestanden aan OrcaSlicer"
msgid "If enabled, sets OrcaSlicer as default application to open .3mf files"
msgstr ""
-"Indien ingeschakeld, wordt Orca Slicer ingesteld als de standaardtoepassing "
+"Indien ingeschakeld, wordt OrcaSlicer ingesteld als de standaardtoepassing "
"om .3mf-bestanden te openen"
msgid "Associate .stl files to OrcaSlicer"
-msgstr "Koppel .stl-bestanden aan Orca Slicer"
+msgstr "Koppel .stl-bestanden aan OrcaSlicer"
msgid "If enabled, sets OrcaSlicer as default application to open .stl files"
msgstr ""
-"Indien ingeschakeld, wordt Orca Slicer ingesteld als de standaardtoepassing "
+"Indien ingeschakeld, wordt OrcaSlicer ingesteld als de standaardtoepassing "
"om .stl-bestanden te openen"
msgid "Associate .step/.stp files to OrcaSlicer"
-msgstr "Koppel .step/.stp bestanden aan Orca Slicer"
+msgstr "Koppel .step/.stp bestanden aan OrcaSlicer"
msgid "If enabled, sets OrcaSlicer as default application to open .step files"
msgstr ""
-"Indien ingeschakeld, wordt Orca Slicer ingesteld als de standaardtoepassing "
+"Indien ingeschakeld, wordt OrcaSlicer ingesteld als de standaardtoepassing "
"om .step-bestanden te openen"
msgid "Associate web links to OrcaSlicer"
-msgstr ""
+msgstr "Koppel weblinks aan OrcaSlicer"
msgid "Associate URLs to OrcaSlicer"
-msgstr ""
+msgstr "Koppel URL's aan OrcaSlicer"
msgid "Maximum recent projects"
-msgstr "Maximum recent projects"
+msgstr "Maximale recente projecten"
msgid "Maximum count of recent projects"
-msgstr "Maximum count of recent projects"
+msgstr "Maximaal aantal recente projecten"
msgid "Clear my choice on the unsaved projects."
-msgstr "Clear my choice on the unsaved projects."
+msgstr "Wis keuze voor niet-opgeslagen projecten."
msgid "No warnings when loading 3MF with modified G-codes"
-msgstr "No warnings when loading 3MF with modified G-code"
+msgstr "Geen waarschuwingen bij het laden van 3MF met aangepaste G-codes"
msgid "Auto-Backup"
-msgstr "Automatisch backup maken"
+msgstr "Automatisch een back-up maken"
msgid ""
"Backup your project periodically for restoring from the occasional crash."
msgstr ""
-"Backup your project periodically to help with restoring from an occasional "
-"crash."
+"Maak regelmatig een back-up van uw project, zodat u het kunt herstellen na "
+"een incidentele crash."
msgid "every"
-msgstr "every"
+msgstr "elke"
msgid "The peroid of backup in seconds."
-msgstr "The period of backup in seconds."
+msgstr "De periode van de back-up in seconden."
msgid "Downloads"
msgstr "Downloads"
@@ -6761,7 +6817,7 @@ msgid "Develop mode"
msgstr "Ontwikkelmodus"
msgid "Skip AMS blacklist check"
-msgstr "Skip AMS blacklist check"
+msgstr "AMS-zwartelijstcontrole overslaan"
msgid "Home page and daily tips"
msgstr "Startpagina en dagelijkse tips"
@@ -6812,19 +6868,19 @@ msgid "Log Level"
msgstr "Log level"
msgid "fatal"
-msgstr "Fataal"
+msgstr "fataal"
msgid "error"
-msgstr "Fout"
+msgstr "fout"
msgid "warning"
msgstr "waarschuwing"
msgid "debug"
-msgstr "Debuggen"
+msgstr "debug"
msgid "trace"
-msgstr "Traceren"
+msgstr "trace"
msgid "Host Setting"
msgstr "Host-instelling"
@@ -6842,10 +6898,10 @@ msgid "Product host"
msgstr "Producthost"
msgid "debug save button"
-msgstr "Debuggen opslaan knop"
+msgstr "debug opslaan knop"
msgid "save debug settings"
-msgstr "Bewaar debug instellingen"
+msgstr "bewaar debug instellingen"
msgid "DEBUG settings have saved successfully!"
msgstr "De debug instellingen zijn succesvol opgeslagen!"
@@ -6902,13 +6958,13 @@ msgid "Customize"
msgstr "Aanpassen"
msgid "Other layer filament sequence"
-msgstr "Other layer filament sequence"
+msgstr "Filamentvolgorde van andere lagen"
msgid "Please input layer value (>= 2)."
-msgstr "Please input layer value (>= 2)."
+msgstr "Voer de laagwaarde in (>= 2)."
msgid "Plate name"
-msgstr "Plate name"
+msgstr "Plaat naam"
msgid "Same as Global Print Sequence"
msgstr "Same as Global Print Sequence"
@@ -6917,10 +6973,10 @@ msgid "Print sequence"
msgstr "Afdrukvolgorde"
msgid "Same as Global"
-msgstr "Same as Global"
+msgstr "Hetzelfde als globaal"
msgid "Disable"
-msgstr "Disable"
+msgstr "Uitschakelen"
msgid "Spiral vase"
msgstr "Spiraalvaas"
@@ -6935,16 +6991,16 @@ msgid "Same as Global Bed Type"
msgstr "Hetzelfde als Global Bed Type"
msgid "By Layer"
-msgstr "By Layer"
+msgstr "Op laag"
msgid "By Object"
-msgstr "By Object"
+msgstr "Op object"
msgid "Accept"
-msgstr "Accept"
+msgstr "Accepteer"
msgid "Log Out"
-msgstr "Log Out"
+msgstr "Uitloggen"
msgid "Slice all plate to obtain time and filament estimation"
msgstr ""
@@ -6987,13 +7043,13 @@ msgid "User Preset"
msgstr "Gebruikersvoorinstelling"
msgid "Preset Inside Project"
-msgstr "Voorinstelling Project Inside"
+msgstr "Voorinstelling binnen project"
msgid "Name is unavailable."
msgstr "Naam is niet beschikbaar."
msgid "Overwrite a system profile is not allowed"
-msgstr "Het overschrijven van een systeem profiel is niet toegestaand"
+msgstr "Het overschrijven van een systeem profiel is niet toegestaan"
#, boost-format
msgid "Preset \"%1%\" already exists."
@@ -7018,7 +7074,7 @@ msgstr "Bewaar voorinstelling"
msgctxt "PresetName"
msgid "Copy"
-msgstr "Kopie"
+msgstr "Kopiëren"
#, boost-format
msgid "Printer \"%1%\" is selected with preset \"%2%\""
@@ -7072,22 +7128,22 @@ msgid "Busy"
msgstr "Bezet"
msgid "Bambu Cool Plate"
-msgstr "Bambu Cool (koude) Plate"
+msgstr "Bambu koelplaat"
msgid "PLA Plate"
-msgstr "PLA Plate"
+msgstr "PLA plaat"
msgid "Bambu Engineering Plate"
-msgstr "Bambu Engineering (technische) plate"
+msgstr "Bambu Engineering plaat"
msgid "Bambu Smooth PEI Plate"
-msgstr ""
+msgstr "Bambu gladde PEI-plaat"
msgid "High temperature Plate"
-msgstr "Plaat op hoge temperatuur"
+msgstr "Hoge temperatuur plaat"
msgid "Bambu Textured PEI Plate"
-msgstr ""
+msgstr "Bambu getextureerde PEI-plaat"
msgid "Send print job to"
msgstr "Stuur de printtaak naar"
@@ -7099,7 +7155,7 @@ msgid "Click here if you can't connect to the printer"
msgstr "Klik hier als je geen verbinding kunt maken met de printer"
msgid "send completed"
-msgstr "Versturen gelukt"
+msgstr "versturen gelukt"
msgid "Error code"
msgstr "Error code"
@@ -7128,7 +7184,7 @@ msgstr ""
"dit is voltooid"
msgid "The printer is busy on other print job"
-msgstr "De printer is bezig met een andere printtaak."
+msgstr "De printer is bezig met een andere printtaak"
#, c-format, boost-format
msgid ""
@@ -7204,7 +7260,7 @@ msgstr ""
"worden bijgewerkt."
msgid "Cannot send the print job for empty plate"
-msgstr "Kan geen afdruktaak verzenden voor een lege plaat."
+msgstr "Kan geen afdruktaak verzenden voor een lege plaat"
msgid "This printer does not support printing all plates"
msgstr ""
@@ -7227,7 +7283,7 @@ msgid "Errors"
msgstr "Fouten"
msgid "Please check the following:"
-msgstr "Please check the following:"
+msgstr "Controleer het volgende:"
msgid ""
"The printer type selected when generating G-Code is not consistent with the "
@@ -7260,17 +7316,17 @@ 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."
+"De dieameter van het mondstuk in het bestand komt niet overeen met het "
+"opgeslagen mondstuk. Als u uw mondstuk onlangs hebt gewijzigd, ga dan naar "
+"Apparaat > Printeronderdelen om de instellingen te wijzigen."
#, 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"
+"Het printen van materiaal met een hoge temperatuur (%s materiaal) met %s kan "
+"schade aan het mondstuk veroorzaken"
msgid "Please fix the error above, otherwise printing cannot continue."
msgstr "Please fix the error above, otherwise printing cannot continue."
@@ -7299,7 +7355,7 @@ msgid "Modifying the device name"
msgstr "De naam van het apparaat wijzigen"
msgid "Bind with Pin Code"
-msgstr "Bind with Pin Code"
+msgstr "Koppelen met pincode"
msgid "Send to Printer SD card"
msgstr "Verzenden naar de MicroSD-kaart in de printer"
@@ -7325,34 +7381,34 @@ msgstr ""
"van de printer."
msgid "Slice ok."
-msgstr "Slice gelukt"
+msgstr "Slice gelukt."
msgid "View all Daily tips"
msgstr "Bekijk alle dagelijkse tips"
msgid "Failed to create socket"
-msgstr "Failed to create socket"
+msgstr "Kan socket niet maken"
msgid "Failed to connect socket"
-msgstr "Failed to connect socket"
+msgstr "Kan niet verbinden met socket"
msgid "Failed to publish login request"
-msgstr "Failed to publish login request"
+msgstr "Kan loginverzoek niet publiceren"
msgid "Get ticket from device timeout"
-msgstr "Timeout getting ticket from device"
+msgstr "Time-out bij het ophalen van ticket van apparaat"
msgid "Get ticket from server timeout"
-msgstr "Timeout getting ticket from server"
+msgstr "Time-out bij het ophalen van ticket van server"
msgid "Failed to post ticket to server"
-msgstr "Failed to post ticket to server"
+msgstr "Het is niet gelukt om het ticket naar de server te plaatsen"
msgid "Failed to parse login report reason"
-msgstr "Failed to parse login report reason"
+msgstr "Kan de reden van het loginrapport niet parseren"
msgid "Receive login report timeout"
-msgstr "Receive login report timeout"
+msgstr "Time-out voor loginrapport ontvangen"
msgid "Unknown Failure"
msgstr "Onbekende fout"
@@ -7361,23 +7417,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."
+"Zoek de pincode op de accountpagina op het printerscherm,\n"
+" en typ hieronder de pincode."
msgid "Can't find Pin Code?"
-msgstr "Can't find Pin Code?"
+msgstr "Pincode niet gevonden?"
msgid "Pin Code"
-msgstr "Pin Code"
+msgstr "Pincode"
msgid "Binding..."
msgstr "Binding..."
msgid "Please confirm on the printer screen"
-msgstr "Please confirm on the printer screen"
+msgstr "Bevestig dit op het printerscherm"
msgid "Log in failed. Please check the Pin Code."
-msgstr "Log in failed. Please check the Pin Code."
+msgstr "Inloggen mislukt. Controleer de pincode."
msgid "Log in printer"
msgstr "Inloggen op printer"
@@ -7386,13 +7442,13 @@ msgid "Would you like to log in this printer with current account?"
msgstr "Wil je met het huidige account inloggen op de printer?"
msgid "Check the reason"
-msgstr "Check the reason"
+msgstr "Controleer de reden"
msgid "Read and accept"
-msgstr "Read and accept"
+msgstr "Lezen en accepteren"
msgid "Terms and Conditions"
-msgstr "Terms and Conditions"
+msgstr "Algemene voorwaarden"
msgid ""
"Thank you for purchasing a Bambu Lab device.Before using your Bambu Lab "
@@ -7408,10 +7464,10 @@ msgstr ""
"Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services."
msgid "and"
-msgstr "and"
+msgstr "en"
msgid "Privacy Policy"
-msgstr "Privacy Policy"
+msgstr "Privacybeleid"
msgid "We ask for your help to improve everyone's printer"
msgstr "We ask for your help to improve everyone's printer"
@@ -7519,8 +7575,8 @@ msgid ""
"No - Do not change these settings for me"
msgstr ""
"Deze instellingen automatisch wijzigen? \n"
-"Ja - Wijzig deze instellingen automatisch.\n"
-"Nee - Wijzig deze instellingen niet voor mij."
+"Ja - Wijzig deze instellingen automatisch\n"
+"Nee - Wijzig deze instellingen niet voor mij"
msgid ""
"For \"Tree Strong\" and \"Tree Hybrid\" styles, we recommend the following "
@@ -7547,14 +7603,20 @@ msgid ""
"precise dimensions or is part of an assembly, it's important to double-check "
"whether this change in geometry impacts the functionality of your print."
msgstr ""
+"Als u deze optie inschakelt, wordt de vorm van het model aangepast. Als uw "
+"afdruk precieze afmetingen vereist of deel uitmaakt van een samenstelling, "
+"is het belangrijk om te controleren of deze geometrie verandering van "
+"invloed is op de functionaliteit van uw afdruk."
msgid "Are you sure you want to enable this option?"
-msgstr ""
+msgstr "Weet u zeker dat u deze optie wilt inschakelen?"
msgid ""
"Layer height is too small.\n"
"It will set to min_layer_height\n"
msgstr ""
+"Laaghoogte is te klein.\n"
+"Het zal worden ingesteld op min_layer_height\n"
msgid ""
"Layer height exceeds the limit in Printer Settings -> Extruder -> Layer "
@@ -7578,10 +7640,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."
+"Experimentele functie: Het filament op grotere afstand terugtrekken en "
+"afsnijden tijdens filamentwisselingen om flush te minimaliseren. Hoewel het "
+"het doorspoelen aanzienlijk kan verminderen, kan het ook het risico op een "
+"verstopt mondstuk of andere printcomplicaties vergroten."
msgid ""
"Experimental feature: Retracting and cutting off the filament at a greater "
@@ -7589,16 +7651,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 ""
-"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."
+"Experimentele functie: Het filament op grotere afstand terugtrekken en "
+"afsnijden tijdens filamentwisselingen om flush te minimaliseren. Hoewel het "
+"het doorspoelen aanzienlijk kan verminderen, kan het ook het risico op een "
+"verstopt mondstuk of andere printcomplicaties vergroten. Gebruik dit met de "
+"nieuwste printerfirmware."
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add Primitive"
-"\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add "
+"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Bij het opnemen van timelapse zonder toolhead is het aan te raden om een "
"âTimelapse Wipe Towerâ toe te voegen \n"
@@ -7618,13 +7681,13 @@ msgid "Wall generator"
msgstr "Wandgenerator"
msgid "Walls and surfaces"
-msgstr ""
+msgstr "Wanden en oppervlakten"
msgid "Bridging"
-msgstr ""
+msgstr "Overbruggen"
msgid "Overhangs"
-msgstr ""
+msgstr "Overhangen"
msgid "Walls"
msgstr "Wanden"
@@ -7649,13 +7712,13 @@ msgstr ""
"Dit is de snelheid voor diverse overhanggraden. Overhanggraden worden "
"uitgedrukt als een percentage van de laag breedte. 0 betekend dat er niet "
"afgeremd wordt voor overhanggraden en dat dezelfde snelheid als voor wanden "
-"gebruikt wordt."
+"gebruikt wordt"
msgid "Bridge"
msgstr "Brug"
msgid "Set speed for external and internal bridges"
-msgstr ""
+msgstr "Snelheid instellen voor externe en interne bruggen"
msgid "Travel speed"
msgstr "Verplaatsing-sneleheid"
@@ -7676,7 +7739,7 @@ msgid "Tree supports"
msgstr ""
msgid "Multimaterial"
-msgstr ""
+msgstr "Multimateriaal"
msgid "Prime tower"
msgstr "Prime toren"
@@ -7700,7 +7763,7 @@ msgid "Post-processing Scripts"
msgstr "Post-processing Scripts"
msgid "Notes"
-msgstr "Notes"
+msgstr "Opmerkingen"
msgid "Frequent"
msgstr "Veelgebruikt"
@@ -7717,11 +7780,11 @@ msgid_plural ""
msgstr[0] ""
"De volgende regel %s bevat gereserveerde trefwoorden.\n"
"Verwijder deze woorden alstublieft, anders overschrijven deze de G-code-"
-"visualisatie en de schatting van de afdruktijd.@"
+"visualisatie en de schatting van de afdruktijd."
msgstr[1] ""
"De volgende regel %s bevat gereserveerde trefwoorden.\n"
"Verwijder deze woorden alstublieft, anders overschrijven deze de G-code-"
-"visualisatie en de schatting van de afdruktijd.@"
+"visualisatie en de schatting van de afdruktijd."
msgid "Reserved keywords found"
msgstr "Gereserveerde zoekworden gevonden"
@@ -7733,15 +7796,15 @@ msgid "Retraction"
msgstr "Terugtrekken (retraction)"
msgid "Basic information"
-msgstr "Basis informatie"
+msgstr "Basisinformatie"
msgid "Recommended nozzle temperature"
-msgstr "Aanbevolen nozzle temperatuur"
+msgstr "Aanbevolen mondstuk temperatuur"
msgid "Recommended nozzle temperature range of this filament. 0 means no set"
msgstr ""
-"De geadviseerde nozzle temperatuur voor dit filament. 0 betekend dat er geen "
-"voorgestelde waarde is "
+"De geadviseerde mondstuk temperatuur voor dit filament. 0 betekend dat er "
+"geen waarde is"
msgid "Flow ratio and Pressure Advance"
msgstr ""
@@ -7753,13 +7816,13 @@ msgid "Print temperature"
msgstr "Print temperatuur"
msgid "Nozzle"
-msgstr "Nozzle"
+msgstr "Mondstuk"
msgid "Nozzle temperature when printing"
-msgstr "Nozzle temperatuur tijdens printen"
+msgstr "Mondstuk temperatuur tijdens printen"
msgid "Cool plate"
-msgstr "Cool (koud) printbed"
+msgstr "Koudeplaat"
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
@@ -7769,7 +7832,7 @@ msgstr ""
"van 0 betekent dat het filament printen op de Cool Plate niet ondersteunt."
msgid "Engineering plate"
-msgstr "Engineering plate (technisch printbed)"
+msgstr "Engineering plaat"
msgid ""
"Bed temperature when engineering plate is installed. Value 0 means the "
@@ -7780,7 +7843,7 @@ msgstr ""
"niet ondersteunt."
msgid "Smooth PEI Plate / High Temp Plate"
-msgstr "Gladde PEI Plaat / Hoge Temp Plaat"
+msgstr "Gladde PEI-plaat / Hoge temperatuurplaat"
msgid ""
"Bed temperature when Smooth PEI Plate/High temperature plate is installed. "
@@ -7792,7 +7855,7 @@ msgstr ""
"afdrukken op de gladde PEI-plaat/hoge temperatuurplaat."
msgid "Textured PEI Plate"
-msgstr "PEI plaat met structuur"
+msgstr "Getextureerde PEI-plaat"
msgid ""
"Bed temperature when Textured PEI Plate is installed. Value 0 means the "
@@ -7957,7 +8020,7 @@ msgid ""
msgstr ""
msgid "Nozzle diameter"
-msgstr "Nozzle diameter"
+msgstr "Mondstuk diameter"
msgid "Wipe tower"
msgstr "Afveegblok"
@@ -8462,8 +8525,11 @@ msgstr "Object lijst"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
-msgid "Shift+G"
-msgstr ""
+msgid "â+Shift+G"
+msgstr "â+Shift+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Ctrl+Shift+G"
msgid "Paste from clipboard"
msgstr "Plakken vanuit klembord"
@@ -8515,18 +8581,33 @@ msgstr "Shift+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "De menubalk in-/uitschuiven"
-msgid "Any arrow"
-msgstr ""
+msgid "â+Any arrow"
+msgstr "â+willekeurige pijl"
msgid "Movement in camera space"
msgstr "Beweging in cameragebied"
+msgid "â„+Left mouse button"
+msgstr "â„+Linker muisknop"
+
msgid "Select a part"
msgstr "Selecteer een onderdeel"
+msgid "â+Left mouse button"
+msgstr "â+Linker muisknop"
+
msgid "Select multiple objects"
msgstr "Selecteer meerdere objecten"
+msgid "Ctrl+Any arrow"
+msgstr "CTRL+willekeurige pijl"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt+Linker muisknop"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl+Linker muisknop"
+
msgid "Shift+Left mouse button"
msgstr "Shift+Linker muisknop"
@@ -8629,12 +8710,24 @@ msgstr "Plaat"
msgid "Move: press to snap by 1mm"
msgstr "Verplaatsen: druk om 1 mm te verplaatsen"
+msgid "â+Mouse wheel"
+msgstr "â+muiswiel"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "Support/kleur intekenen: pas de pen diameter aan"
+msgid "â„+Mouse wheel"
+msgstr "â„+Muiswiel"
+
msgid "Support/Color Painting: adjust section position"
msgstr "Support/kleur intekenen: pas de sectie positie aan"
+msgid "Ctrl+Mouse wheel"
+msgstr "CTRL+muiswiel"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+muiswiel"
+
msgid "Gizmo"
msgstr "Gizmo"
@@ -8810,7 +8903,7 @@ msgid "Serial:"
msgstr "Serienummer:"
msgid "Version:"
-msgstr "Versie"
+msgstr "Versie:"
msgid "Update firmware"
msgstr "Firmware bijwerken"
@@ -8822,7 +8915,7 @@ msgid "Latest version"
msgstr "Nieuwste versie"
msgid "Updating"
-msgstr "BijwerkenâŠ"
+msgstr "Bijwerken"
msgid "Updating failed"
msgstr "Bijwerken mislukt"
@@ -9154,8 +9247,8 @@ msgid ""
"during printing"
msgstr ""
"Het is niet mogelijk om met meerdere filamenten te printen die een groot "
-"temperatuurverschil hebben. Anders kunnen de extruder en de nozzle tijdens "
-"het afdrukken worden geblokkeerd of beschadigd"
+"temperatuurverschil hebben. Anders kunnen de extruder en het mondstuk "
+"tijdens het afdrukken worden geblokkeerd of beschadigd"
msgid "No extrusions under current settings."
msgstr "Geen extrusion onder de huidige instellingen"
@@ -9296,7 +9389,7 @@ msgstr ""
"support in."
msgid "Layer height cannot exceed nozzle diameter"
-msgstr "De laaghoogte kan niet groter zijn dan de diameter van de nozzle"
+msgstr "De laaghoogte kan niet groter zijn dan de diameter van het mondstuk"
msgid ""
"Relative extruder addressing requires resetting the extruder position at "
@@ -9401,7 +9494,7 @@ msgstr ""
"effect te compenseren."
msgid "Elephant foot compensation layers"
-msgstr ""
+msgstr "\"Elephant foot\" compensatielagen"
msgid ""
"The number of layers on which the elephant foot compensation will be active. "
@@ -9409,6 +9502,10 @@ msgid ""
"the next layers will be linearly shrunk less, up to the layer indicated by "
"this value."
msgstr ""
+"Het aantal lagen waarop de \"elephant foot\" compensatie actief zal zijn. De "
+"eerste laag zal worden verkleind met de \"elephant foot\" compensatiewaarde, "
+"daarna zullen de volgende lagen lineair minder worden verkleind, tot aan de "
+"laag die wordt aangegeven door deze waarde."
msgid "layers"
msgstr "Lagen"
@@ -9429,7 +9526,7 @@ msgstr ""
"printer"
msgid "Preferred orientation"
-msgstr ""
+msgstr "Voorkeursoriëntatie"
msgid "Automatically orient stls on the Z-axis upon initial import"
msgstr ""
@@ -9438,10 +9535,10 @@ msgid "Printer preset names"
msgstr "Namen van printer voorinstellingen"
msgid "Use 3rd-party print host"
-msgstr ""
+msgstr "Gebruik een printhost van derden"
msgid "Allow controlling BambuLab's printer through 3rd party print hosts"
-msgstr ""
+msgstr "Toestaan om een BambuLab printer te besturen via printhosts van derden"
msgid "Hostname, IP or URL"
msgstr "Hostnaam, IP of URL"
@@ -9676,24 +9773,41 @@ msgid "Apply gap fill"
msgstr ""
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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
-"only\n"
-"3. Nowhere: Disables gap fill\n"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
+"\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
msgstr ""
msgid "Everywhere"
msgstr "Overal"
msgid "Top and bottom surfaces"
-msgstr ""
+msgstr "Boven- en onderoppervlakken"
msgid "Nowhere"
-msgstr ""
+msgstr "Nergens"
msgid "Force cooling for overhang and bridge"
msgstr "Forceer koeling voor overhangende delen en bruggen (bridge)"
@@ -9735,7 +9849,7 @@ msgstr ""
"overhanggraad."
msgid "Bridge infill direction"
-msgstr ""
+msgstr "Bruginvulling richting"
msgid ""
"Bridging angle override. If left to zero, the bridging angle will be "
@@ -9747,20 +9861,23 @@ msgstr ""
"externe bruggen. Gebruik 180° voor een hoek van nul."
msgid "Bridge density"
-msgstr ""
+msgstr "Brugdichtheid"
msgid "Density of external bridges. 100% means solid bridge. Default is 100%."
msgstr ""
+"Dichtheid van externe bruggen. 100% betekent massieve brug. Standaard is "
+"100%."
msgid "Bridge flow ratio"
msgstr "Brugflow"
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Verlaag deze waarde iets (bijvoorbeeld 0,9) om de hoeveelheid materiaal voor "
-"bruggen te verminderen, dit om doorzakken te voorkomen."
msgid "Internal bridge flow ratio"
msgstr ""
@@ -9768,7 +9885,11 @@ msgstr ""
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
msgid "Top surface flow ratio"
@@ -9776,15 +9897,20 @@ 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"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
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 ""
-msgid "This factor affects the amount of material for bottom solid infill"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
msgid "Precise wall"
@@ -9839,7 +9965,7 @@ msgid ""
msgstr ""
msgid "Reverse on odd"
-msgstr ""
+msgstr "Overhang omkering"
msgid "Overhang reversal"
msgstr ""
@@ -9918,9 +10044,25 @@ msgstr ""
msgid "Slow down for curled perimeters"
msgstr ""
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
msgstr ""
msgid "mm/s or %"
@@ -9929,8 +10071,14 @@ msgstr "mm/s of %"
msgid "External"
msgstr ""
-msgid "Speed of bridge and completely overhang wall"
-msgstr "Dit is de snelheid voor bruggen en 100% overhangende wanden."
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "mm/s"
@@ -9939,8 +10087,8 @@ msgid "Internal"
msgstr ""
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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
msgid "Brim width"
@@ -10379,8 +10527,8 @@ msgid ""
"Distance of the nozzle tip to the lower rod. Used for collision avoidance in "
"by-object printing."
msgstr ""
-"Afstand van de punt van de nozzle tot de onderste stang. Wordt gebruikt om "
-"botsingen te voorkomen bij het afdrukken op basis van objecten."
+"Afstand van de punt van het mondstuk tot de onderste stang. Wordt gebruikt "
+"om botsingen te voorkomen bij het afdrukken op basis van objecten."
msgid "Height to lid"
msgstr "Hoogte tot deksel"
@@ -10389,7 +10537,7 @@ msgid ""
"Distance of the nozzle tip to the lid. Used for collision avoidance in by-"
"object printing."
msgstr ""
-"Afstand van de punt van de nozzle tot het deksel. Wordt gebruikt om "
+"Afstand van de punt van het mondstuk tot het deksel. Wordt gebruikt om "
"botsingen te voorkomen bij het afdrukken op basis van objecten."
msgid ""
@@ -10475,6 +10623,17 @@ msgstr ""
"mogelijk optimaliseren om een mooi vlak oppervlak te krijgen als er een "
"lichte over- of onderflow is."
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "Pressure advance inschakelen"
@@ -10624,14 +10783,14 @@ msgid "You can put your notes regarding the filament here."
msgstr "You can put your notes regarding the filament here."
msgid "Required nozzle HRC"
-msgstr "Vereiste nozzle HRC"
+msgstr "Vereiste mondstuk HRC"
msgid ""
"Minimum HRC of nozzle required to print the filament. Zero means no checking "
"of nozzle's HRC."
msgstr ""
-"Minimale HRC van de nozzle die nodig is om het filament te printen. Een "
-"waarde van 0 betekent geen controle van de HRC van de spuitdop."
+"Minimale HRC van het mondstuk die nodig is om het filament te printen. Een "
+"waarde van 0 betekent geen controle van de HRC van het mondstuk."
msgid ""
"This setting stands for how much volume of filament can be melted and "
@@ -10649,18 +10808,29 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "Filament laadt tijd"
-msgid "Time to load new filament when switch filament. For statistics only"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
msgstr ""
-"Tijd welke nodig is om nieuw filament te laden tijdens het wisselen. Enkel "
-"voor statistieken."
msgid "Filament unload time"
msgstr "Tijd die nodig is om filament te ontladen"
-msgid "Time to unload old filament when switch filament. For statistics only"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
msgstr ""
-"Tijd welke nodig is om oud filament te lossen tijdens het wisselen. Enkel "
-"voor statistieken."
msgid ""
"Filament diameter is used to calculate extrusion in gcode, so it's important "
@@ -10786,15 +10956,6 @@ msgstr "Snelheid voor de laatste koelbeweging"
msgid "Cooling moves are gradually accelerating towards this speed."
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 "Rammingparameters"
@@ -10805,15 +10966,6 @@ 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 ""
@@ -11131,11 +11283,11 @@ msgid ""
msgstr ""
msgid "Initial layer nozzle temperature"
-msgstr "Nozzle temperatuur voor de eerste laag"
+msgstr "Mondstuk temperatuur voor de eerste laag"
msgid "Nozzle temperature to print initial layer when using this filament"
msgstr ""
-"Nozzle temperatuur om de eerste laag mee te printen bij gebruik van dit "
+"Mondstuk temperatuur om de eerste laag mee te printen bij gebruik van dit "
"filament"
msgid "Full fan speed at layer"
@@ -11143,10 +11295,10 @@ msgstr "Volledige snelheid op laag"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
-"\". \"full_fan_speed_layer\" will be ignored if lower than "
-"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
-"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer "
+"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
+"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
+"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
msgid "layer"
@@ -11211,7 +11363,10 @@ msgstr "Kleine openingen wegfilteren"
msgid "Layers and Perimeters"
msgstr "Lagen en perimeters"
-msgid "Filter out gaps smaller than the threshold specified"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
msgstr ""
msgid ""
@@ -11266,14 +11421,14 @@ msgstr ""
"kan controleren."
msgid "Nozzle type"
-msgstr "Nozzle type"
+msgstr "Mondstuk type"
msgid ""
"The metallic material of nozzle. This determines the abrasive resistance of "
"nozzle, and what kind of filament can be printed"
msgstr ""
-"Het type metaal van de nozzle. Dit bepaalt de slijtvastheid van de nozzle en "
-"wat voor soort filament kan worden geprint"
+"Het type metaal van het mondstuk. Dit bepaalt de slijtvastheid van het "
+"mondstuk en wat voor soort filament kan worden geprint"
msgid "Undefine"
msgstr "Undefined"
@@ -11288,14 +11443,14 @@ msgid "Brass"
msgstr "Messing"
msgid "Nozzle HRC"
-msgstr "Nozzle HRC"
+msgstr "Mondstuk HRC"
msgid ""
"The nozzle's hardness. Zero means no checking for nozzle's hardness during "
"slicing."
msgstr ""
-"De hardheid van de nozzle. Nul betekent geen controle op de hardheid van het "
-"mondstuk tijdens het slicen."
+"De hardheid van het mondstuk. Nul betekent geen controle op de hardheid van "
+"het mondstuk tijdens het slicen."
msgid "HRC"
msgstr "HRC"
@@ -11865,7 +12020,7 @@ msgid ""
msgstr ""
msgid "Diameter of nozzle"
-msgstr "Diameter van de nozzle"
+msgstr "Diameter van het mondstuk"
msgid "Configuration notes"
msgstr "Configuratie-opmerkingen"
@@ -11888,17 +12043,18 @@ msgstr ""
"het type host bevatten."
msgid "Nozzle volume"
-msgstr "Nozzle volume"
+msgstr "Mondstuk volume"
msgid "Volume of nozzle between the cutter and the end of nozzle"
msgstr ""
-"Volume van de nozzle tussen de filamentsnijder en het uiteinde van de nozzle"
+"Volume van het mondstuk tussen de filamentsnijder en het uiteinde van het "
+"mondstuk"
msgid "Cooling tube position"
msgstr "Koelbuispositie"
msgid "Distance of the center-point of the cooling tube from the extruder tip."
-msgstr "Afstand vanaf de nozzle tot het middelpunt van de koelbuis."
+msgstr "Afstand vanaf het mondstuk tot het middelpunt van de koelbuis."
msgid "Cooling tube length"
msgstr "Koelbuislengte"
@@ -11927,9 +12083,9 @@ 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."
+"Afstand van de punt van het mondstuk 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 "Extra laadafstand"
@@ -12162,10 +12318,10 @@ 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."
+"Experimentele functie: Het filament wordt tijdens het wisselen over een "
+"grotere afstand teruggetrokken en afgesneden om de spoeling tot een minimum "
+"te beperken. Dit vermindert de spoeling aanzienlijk, maar vergroot mogelijk "
+"ook het risico op verstoppingen in het mondstuk of andere printproblemen."
msgid "Retraction distance when cut"
msgstr "Retraction distance when cut"
@@ -12185,10 +12341,10 @@ msgid ""
"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 ""
-"Wanneer er een terugtrekking (retracction) is, wordt de nozzle een beetje "
-"opgetild om ruimte te creëren tussen de nozzle en de print. Dit voorkomt dat "
-"de nozzle de print raakt bij veplaatsen. Het gebruik van spiraallijnen om Z "
-"op te tillen kan stringing voorkomen."
+"Wanneer er een terugtrekking (retraction) is, wordt het mondstuk een beetje "
+"opgetild om ruimte te creëren tussen het mondstuk en de print. Dit voorkomt "
+"dat het mondstuk de print raakt bij verplaatsen. Het gebruik van "
+"spiraallijnen om Z op te tillen kan stringing voorkomen."
msgid "Z hop lower boundary"
msgstr "Z hop ondergrens"
@@ -12617,8 +12773,9 @@ 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"
+"Maximale afstand om punten in XY te verplaatsen om te proberen een gladde "
+"spiraal te bereiken. Als het wordt uitgedrukt als een %, wordt het berekend "
+"over de diameter van het mondstuk"
msgid ""
"If smooth or traditional mode is selected, a timelapse video will be "
@@ -12636,9 +12793,9 @@ msgstr ""
"samengevoegd tot een timelapse-video wanneer het afdrukken is voltooid. Als "
"de vloeiende modus is geselecteerd, beweegt de gereedschapskop naar de "
"afvoer chute nadat iedere laag is afgedrukt en maakt vervolgens een "
-"momentopname. Aangezien het gesmolten filament uit de nozzle kan lekken "
+"momentopname. Aangezien het gesmolten filament uit het mondstuk kan lekken "
"tijdens het maken van een momentopname, is voor de soepele modus een "
-"primetoren nodig om de nozzle schoon te vegen."
+"primetoren nodig om het mondstuk schoon te vegen."
msgid "Traditional"
msgstr "Traditioneel"
@@ -12771,10 +12928,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 ""
-"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."
+"Deze waarde wordt toegevoegd (of afgetrokken) van alle Z-coördinaten in de "
+"uitvoer-G-code. Het wordt gebruikt om een ââslechte Z-eindstoppositie te "
+"compenseren. Bijvoorbeeld, als de eindstopnul eigenlijk 0,3 mm overlaat "
+"tussen het mondstuk en het printbed, stelt u dit in op -0,3 (of maak uw "
+"eindstop goed vast)."
msgid "Enable support"
msgstr "Support inschakelen"
@@ -13138,35 +13296,46 @@ msgstr ""
"holtes van de tree support."
msgid "Activate temperature control"
-msgstr ""
+msgstr "Temperatuurregeling activeren"
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)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
msgid "Chamber temperature"
msgstr "Kamertemperatuur"
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
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"
+msgstr "Mondstuk temperatuur voor de lagen na de eerste laag"
msgid "Detect thin wall"
msgstr "Detecteer dunne wanden"
@@ -13239,10 +13408,10 @@ 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 ""
-"Dit beweegt de nozzle langs het laatste extrusiepad bij het terugtrekken "
+"Dit beweegt het mondstuk langs het laatste extrusiepad bij het terugtrekken "
"(retraction) om eventueel gelekt materiaal op het mondstuk te reinigen. Dit "
"kan \"blobs\" minimaliseren bij het printen van een nieuw onderdeel na het "
-"verplaatsen."
+"verplaatsen"
msgid "Wipe Distance"
msgstr "Veeg afstand"
@@ -13264,9 +13433,9 @@ msgid ""
"stabilize the chamber pressure inside the nozzle, in order to avoid "
"appearance defects when printing objects."
msgstr ""
-"The wiping tower can be used to clean up residue on the nozzle and stabilize "
-"the chamber pressure inside the nozzle in order to avoid appearance defects "
-"when printing objects."
+"De veegtoren kan worden gebruikt om resten op het mondstuk te verwijderen en "
+"de druk in het mondstuk te stabiliseren om uiterlijke gebreken bij het "
+"printen van objecten te voorkomen."
msgid "Purging volumes"
msgstr "Volumes opschonen"
@@ -13372,10 +13541,10 @@ msgid ""
"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 ""
-"Dit object wordt gebruikt om de nozzle te reinigen nadat het filament is "
+"Dit object wordt gebruikt om het mondstuk te reinigen nadat het filament is "
"vervangen om filament te besparen en de printtijd te verkorten. Als "
"resultaat worden de kleuren van de objecten gemengd. Het wordt niet van "
-"kracht tenzij de prime tower is ingeschakeld."
+"kracht tenzij de prime toren is ingeschakeld."
msgid "Maximal bridging distance"
msgstr "Maximale brugafstand"
@@ -13489,6 +13658,11 @@ msgid ""
"Wipe tower is only compatible with relative mode. It is recommended on most "
"printers. Default is checked"
msgstr ""
+"Relatieve extrusie wordt aanbevolen bij gebruik van de optie "
+"\"label_objects\". Sommige extruders werken beter als deze optie niet is "
+"aangevinkt (absolute extrusiemodus). Wipe tower is alleen compatibel met "
+"relatieve modus. Het wordt aanbevolen op de meeste printers. Standaard is "
+"aangevinkt"
msgid ""
"Classic wall generator produces walls with constant extrusion width and for "
@@ -13516,7 +13690,7 @@ msgstr ""
"Bij de overgang tussen verschillende aantallen muren naarmate het onderdeel "
"dunner wordt, wordt een bepaalde hoeveelheid ruimte toegewezen om de "
"wandsegmenten te splitsen of samen te voegen. Dit wordt uitgedrukt als een "
-"percentage ten opzichte van de diameter van de nozzle."
+"percentage ten opzichte van de diameter van het mondstuk."
msgid "Wall transitioning filter margin"
msgstr "Marge van het filter voor wandovergang"
@@ -13536,7 +13710,7 @@ msgstr ""
"vergroten, wordt het aantal overgangen verminderd, waardoor het aantal "
"extrusie-starts/-stops en travel tijd wordt verminderd. Grote variaties in "
"de extrusiebreedte kunnen echter leiden tot onder- of overextrusieproblemen. "
-"Het wordt uitgedrukt als een percentage over de diameter van de nozzle"
+"Het wordt uitgedrukt als een percentage over de diameter van het mondstuk"
msgid "Wall transitioning threshold angle"
msgstr "Drempelhoek voor wandovergang"
@@ -13581,7 +13755,7 @@ msgstr ""
"diameter van het mondstuk"
msgid "Minimum wall length"
-msgstr ""
+msgstr "Minimale wandlengte"
msgid ""
"Adjust this value to prevent short, unclosed walls from being printed, which "
@@ -13593,15 +13767,29 @@ msgid ""
"top-surface. 'One wall threshold' is only visibile if this setting is set "
"above the default value of 0.5, or if single-wall top surfaces is enabled."
msgstr ""
+"Pas deze waarde aan om te voorkomen dat korte, niet-gesloten wanden worden "
+"geprint, wat de printtijd kan verlengen. Hogere waarden verwijderen meer en "
+"langere wanden.\n"
+"\n"
+"OPMERKING: Onder- en bovenoppervlakken worden niet beĂŻnvloed door deze "
+"waarde om visuele gaten aan de buitenkant van het model te voorkomen. Pas "
+"'One wall threshold' aan in de geavanceerde instellingen hieronder om de "
+"gevoeligheid van wat als een bovenoppervlak wordt beschouwd aan te passen. "
+"'One wall threshold' is alleen zichtbaar als deze instelling boven de "
+"standaardwaarde van 0,5 is ingesteld of als enkelwandige bovenoppervlakken "
+"zijn ingeschakeld."
msgid "First layer minimum wall width"
-msgstr ""
+msgstr "Eerste laag minimale wandbreedte"
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 ""
+"De minimale wandbreedte die voor de eerste laag moet worden gebruikt, wordt "
+"aanbevolen om op dezelfde grootte als het mondstuk te worden ingesteld. Deze "
+"aanpassing zal naar verwachting de hechting verbeteren."
msgid "Minimum wall width"
msgstr "Minimale wandbreedte"
@@ -13615,7 +13803,7 @@ msgstr ""
"Breedte van de muur die dunne delen (volgens de minimale functiegrootte) van "
"het model zal vervangen. Als de minimale wandbreedte dunner is dan de dikte "
"van het element, wordt de muur net zo dik als het object zelf. Dit wordt "
-"uitgedrukt als een percentage ten opzichte van de diameter van de nozzle"
+"uitgedrukt als een percentage ten opzichte van de diameter van het mondstuk"
msgid "Detect narrow internal solid infill"
msgstr "Detecteer dichte interne solide vulling (infill)"
@@ -13649,7 +13837,7 @@ msgid "export 3mf with minimum size."
msgstr ""
msgid "No check"
-msgstr "No check"
+msgstr "Geen controle"
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."
@@ -13662,10 +13850,10 @@ msgid ""
msgstr ""
msgid "Orient Options"
-msgstr ""
+msgstr "Oriëntatieopties"
msgid "Orient options: 0-disable, 1-enable, others-auto"
-msgstr ""
+msgstr "Oriëntatieopties: 0-uitschakelen, 1-inschakelen, andere-automatisch"
msgid "Rotation angle around the Z axis in degrees."
msgstr "Rotatiehoek rond de Z-as in graden."
@@ -13689,13 +13877,13 @@ msgstr ""
"netwerkopslag."
msgid "Load custom gcode"
-msgstr ""
+msgstr "Laad aangepaste gcode"
msgid "Load custom gcode from json"
-msgstr ""
+msgstr "Laad aangepaste gcode vanuit json"
msgid "Current z-hop"
-msgstr ""
+msgstr "Huidige z-hop"
msgid "Contains z-hop present at the beginning of the custom G-code block."
msgstr ""
@@ -13878,19 +14066,19 @@ msgid "Size of the print bed bounding box"
msgstr ""
msgid "Timestamp"
-msgstr ""
+msgstr "Tijdstempel"
msgid "String containing current time in yyyyMMdd-hhmmss format."
msgstr ""
msgid "Day"
-msgstr ""
+msgstr "Dag"
msgid "Hour"
-msgstr ""
+msgstr "Uur"
msgid "Minute"
-msgstr ""
+msgstr "Minuut"
msgid "Print preset name"
msgstr ""
@@ -14202,11 +14390,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?"
+"Dit type machine kan slechts 16 historische resultaten per mondstuk "
+"bevatten. U kunt de bestaande historische resultaten verwijderen en "
+"vervolgens de kalibratie starten. Of u kunt doorgaan met de kalibratie, maar "
+"u kunt geen nieuwe historische kalibratieresultaten maken.\n"
+"Wilt u de kalibratie nog steeds voortzetten?"
msgid "Connecting to printer..."
msgstr "Aansluiten op de printer..."
@@ -14232,8 +14420,8 @@ 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."
+"Dit type machine kan slechts %d historische resultaten per mondstuk "
+"bevatten. Dit resultaat wordt niet opgeslagen."
msgid "Internal Error"
msgstr "Interne fout"
@@ -14270,7 +14458,7 @@ msgstr ""
"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"
+"2. Als het mondstuk versleten is of vervangen is door een nieuwe;\n"
"3. Als de maximale volumetrische snelheid of printtemperatuur is gewijzigd "
"in de filamentinstelling."
@@ -14557,7 +14745,7 @@ msgid "To k Value"
msgstr "Naar k Waarde"
msgid "Step value"
-msgstr ""
+msgstr "Stap waarde"
msgid "The nozzle diameter has been synchronized from the printer Settings"
msgstr ""
@@ -14589,7 +14777,8 @@ msgstr "Actie"
#, c-format, boost-format
msgid "This machine type can only hold %d history results per nozzle."
-msgstr "This machine type can only hold %d historical results per nozzle."
+msgstr ""
+"Dit type machine kan slechts %d historische resultaten per mondstuk bevatten."
msgid "Edit Flow Dynamics Calibration"
msgstr "Flow Dynamics-kalibratie bewerken"
@@ -14625,25 +14814,27 @@ msgid "Finished"
msgstr "Voltooid"
msgid "Multiple resolved IP addresses"
-msgstr ""
+msgstr "Meerdere vastgestelde IP-adressen"
#, boost-format
msgid ""
"There are several IP addresses resolving to hostname %1%.\n"
"Please select one that should be used."
msgstr ""
+"Er zijn meerdere IP-adressen die verwijzen naar hostname %1%.\n"
+"Selecteer er een die gebruikt moet worden."
msgid "PA Calibration"
msgstr "PA-kalibratie"
msgid "DDE"
-msgstr ""
+msgstr "DDE"
msgid "Bowden"
msgstr "Bowden"
msgid "Extruder type"
-msgstr ""
+msgstr "Extrudertype"
msgid "PA Tower"
msgstr "PA-toren"
@@ -14690,7 +14881,7 @@ msgid "PETG"
msgstr "PETG"
msgid "PCTG"
-msgstr ""
+msgstr "PCTG"
msgid "TPU"
msgstr "TPU"
@@ -14775,10 +14966,10 @@ msgstr ""
"Gebruik indien nodig schuine strepen (/) als scheidingsteken voor mappen."
msgid "Upload to storage"
-msgstr ""
+msgstr "Uploaden naar opslag"
msgid "Switch to Device tab after upload."
-msgstr ""
+msgstr "Na het uploaden naar het tabblad Apparaat gaan."
#, c-format, boost-format
msgid "Upload filename doesn't end with \"%s\". Do you wish to continue?"
@@ -14801,7 +14992,7 @@ msgstr "Host"
msgctxt "OfFile"
msgid "Size"
-msgstr "Maat"
+msgstr "Grootte"
msgid "Filename"
msgstr "Bestandsnaam"
@@ -14822,7 +15013,7 @@ msgid "Cancelling"
msgstr "Annuleren"
msgid "Error uploading to print host"
-msgstr ""
+msgstr "Fout bij uploaden naar printhost"
msgid "Unable to perform boolean operation on selected parts"
msgstr "Kan geen booleaanse bewerking uitvoeren op geselecteerde onderdelen"
@@ -14876,7 +15067,7 @@ msgid "Export Log"
msgstr "Logboek exporteren"
msgid "OrcaSlicer Version:"
-msgstr ""
+msgstr "OrcaSlicer-versie:"
msgid "System Version:"
msgstr "Systeemversie:"
@@ -15006,8 +15197,8 @@ msgstr ""
"Wil je het herschrijven?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you selected"
-"\". \n"
+"We would rename the presets as \"Vendor Type Serial @printer you "
+"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
@@ -15057,7 +15248,7 @@ msgid "Hot Bed STL"
msgstr "Warm bed STL"
msgid "Load stl"
-msgstr "Stl laden"
+msgstr "STL laden"
msgid "Hot Bed SVG"
msgstr "Warm bed SVG"
@@ -15082,7 +15273,7 @@ msgid "The printer model was not found, please reselect."
msgstr "Het printermodel is niet gevonden, selecteer opnieuw."
msgid "The nozzle diameter is not found, place reselect."
-msgstr "The nozzle diameter was not found; please reselect."
+msgstr "De diameter van het mondstuk is niet gevonden. Selecteer opnieuw."
msgid "The printer preset is not found, place reselect."
msgstr "The printer preset was not found; please reselect."
@@ -15184,10 +15375,10 @@ msgstr ""
"geselecteerd; kies een printer."
msgid "Create Printer Successful"
-msgstr "Printer succesvol maken"
+msgstr "Printer succesvol gemaakt"
msgid "Create Filament Successful"
-msgstr "Filament Created Successfully"
+msgstr "Filament succesvol gemaakt"
msgid "Printer Created"
msgstr "Printer gemaakt"
@@ -15218,6 +15409,13 @@ msgid ""
"page. \n"
"Click \"Sync user presets\" to enable the synchronization function."
msgstr ""
+"\n"
+"\n"
+"Orca heeft gedetecteerd dat de synchronisatiefunctie voor uw "
+"gebruikersinstellingen niet is ingeschakeld, wat kan resulteren in mislukte "
+"Filament-instellingen op de pagina Apparaat.\n"
+"Klik op \"Gebruikersinstellingen synchroniseren\" om de "
+"synchronisatiefunctie in te schakelen."
msgid "Printer Setting"
msgstr "Printerinstelling"
@@ -15253,7 +15451,7 @@ msgid "open zip written fail"
msgstr "open zip geschreven mislukt"
msgid "Export successful"
-msgstr "Export succesvol"
+msgstr "Exporteren is gelukt"
#, c-format, boost-format
msgid ""
@@ -15327,7 +15525,7 @@ msgid "Edit Filament"
msgstr "Bewerk filament"
msgid "Filament presets under this filament"
-msgstr "Presets onder deze gloeidraad"
+msgstr "Voorinstellingen voor filament onder dit filament"
msgid ""
"Note: If the only preset under this filament is deleted, the filament will "
@@ -15342,8 +15540,8 @@ msgstr ""
msgid "The following presets inherits this preset."
msgid_plural "The following preset inherits this preset."
-msgstr[0] ""
-msgstr[1] ""
+msgstr[0] "De volgende voorinstellingen nemen deze voorinstelling over."
+msgstr[1] "De volgende voorinstelling neemt deze voorinstelling over."
msgid "Delete Preset"
msgstr "Preset verwijderen"
@@ -15395,7 +15593,7 @@ msgid "For more information, please check out Wiki"
msgstr "For more information, please check out our Wiki"
msgid "Collapse"
-msgstr "Instorten"
+msgstr "Inklappen"
msgid "Daily Tips"
msgstr "Dagelijkse tips"
@@ -15408,12 +15606,14 @@ 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?"
+"Uw mondstuk diameter in preset komt niet overeen met de opgeslagen mondstuk "
+"diameter. Heeft u uw mondstuk veranderd?"
#, c-format, boost-format
msgid "*Printing %s material with %s may cause nozzle damage"
-msgstr "*Afdrukken%s materiaal mee%s kan schade aan het mondstuk veroorzaken"
+msgstr ""
+"*Het afdrukken van %s materiaal met %s kan schade aan het mondstuk "
+"veroorzaken"
msgid "Need select printer"
msgstr "Printer selecteren"
@@ -15441,16 +15641,16 @@ msgid "Success!"
msgstr "Succes!"
msgid "Are you sure to log out?"
-msgstr ""
+msgstr "Weet u zeker dat u wilt uitloggen?"
msgid "Refresh Printers"
msgstr "Printers vernieuwen"
msgid "View print host webui in Device tab"
-msgstr ""
+msgstr "Bekijk de printhost webui op het tabblad Apparaat"
msgid "Replace the BambuLab's device tab with print host webui"
-msgstr ""
+msgstr "Vervang het apparaattabblad van BambuLab door de printhost webui"
msgid ""
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
@@ -15481,7 +15681,7 @@ msgstr ""
"Certificate Store / Keychain."
msgid "Login/Test"
-msgstr ""
+msgstr "Inloggen/Test"
msgid "Connection to printers connected via the print host failed."
msgstr "Verbinding met printers aangesloten via de printhost mislukt."
@@ -15558,31 +15758,31 @@ msgid "Could not connect to PrusaLink"
msgstr "Kan geen verbinding maken met PrusaLink"
msgid "Storages found"
-msgstr ""
+msgstr "Gevonden opslagplaatsen"
#. TRN %1% = storage path
#, boost-format
msgid "%1% : read only"
-msgstr ""
+msgstr "%1% : alleen lezen"
#. TRN %1% = storage path
#, boost-format
msgid "%1% : no free space"
-msgstr ""
+msgstr "%1% : geen vrije ruimte"
#. TRN %1% = host
#, boost-format
msgid "Upload has failed. There is no suitable storage found at %1%."
-msgstr ""
+msgstr "Upload is mislukt. Er is geen geschikte opslag gevonden op %1%."
msgid "Connection to Prusa Connect works correctly."
-msgstr ""
+msgstr "De verbinding met Prusa Connect werkt goed."
msgid "Could not connect to Prusa Connect"
-msgstr ""
+msgstr "Kon geen verbinding maken met Prusa Connect"
msgid "Connection to Repetier works correctly."
-msgstr "Connection to Repetier is working correctly."
+msgstr "De verbinding met Repetier werkt goed."
msgid "Could not connect to Repetier"
msgstr "Kan geen verbinding maken met Repetier"
@@ -15622,17 +15822,19 @@ 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."
+"Het heeft een kleine laaghoogte en resulteert in bijna verwaarloosbare "
+"laaglijnen en een hoge afdrukkwaliteit. Het is geschikt voor de meeste "
+"algemene afdrukgevallen."
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."
+"Vergeleken met het standaardprofiel van een 0,2 mm mondstuk, heeft het "
+"lagere snelheden en acceleratie, en het spaarzame infill patroon is Gyroid. "
+"Dit resulteert in een veel hogere printkwaliteit maar ook een veel langere "
+"printtijd."
msgid ""
"Compared with the default profile of a 0.2 mm nozzle, it has a slightly "
@@ -15695,8 +15897,8 @@ 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."
+"Het heeft een normale laaghoogte en resulteert in gemiddelde laaglijnen en "
+"afdrukkwaliteit. Het is geschikt voor de meeste afdrukgevallen."
msgid ""
"Compared with the default profile of a 0.4 mm nozzle, it has more wall loops "
@@ -15777,8 +15979,8 @@ 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."
+"De laagdikte is groot, wat resulteert in zichtbare laaglijnen en een normale "
+"afdrukkwaliteit en afdruktijd."
msgid ""
"Compared with the default profile of a 0.6 mm nozzle, it has more wall loops "
@@ -15829,8 +16031,8 @@ 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."
+"De laagdikte is erg groot, wat resulteert in duidelijke lijnen, een lage "
+"afdrukkwaliteit en een kortere afdruktijd."
msgid ""
"Compared with the default profile of a 0.8 mm nozzle, it has a bigger layer "
@@ -15865,9 +16067,10 @@ msgid ""
"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."
+"Vergeleken met het standaardprofiel van een 0,8 mm mondstuk, heeft het een "
+"kleinere laaghoogte. Dit resulteert in minder maar nog steeds zichtbare "
+"laaglijnen en een iets hogere printkwaliteit, maar in sommige gevallen een "
+"langere printtijd."
msgid "Connected to Obico successfully!"
msgstr ""
@@ -15882,10 +16085,10 @@ msgid "Could not connect to SimplyPrint"
msgstr ""
msgid "Internal error"
-msgstr ""
+msgstr "Interne fout"
msgid "Unknown error"
-msgstr ""
+msgstr "Onbekende fout"
msgid "SimplyPrint account not linked. Go to Connect options to set it up."
msgstr ""
@@ -15900,13 +16103,13 @@ msgid "The provided state is not correct."
msgstr ""
msgid "Please give the required permissions when authorizing this application."
-msgstr ""
+msgstr "Geef de vereiste machtigingen wanneer u deze toepassing autoriseert."
msgid "Something unexpected happened when trying to log in, please try again."
-msgstr ""
+msgstr "Er is iets onverwachts gebeurd bij het inloggen. Probeer het opnieuw."
msgid "User cancelled."
-msgstr ""
+msgstr "Gebruiker geannuleerd."
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
@@ -15914,6 +16117,9 @@ msgid ""
"Did you know that turning on precise wall can improve precision and layer "
"consistency?"
msgstr ""
+"Precieze muur\n"
+"Wist u dat het inschakelen van de precieze muur de precisie en consistentie "
+"van de laag kan verbeteren?"
#: resources/data/hints.ini: [hint:Sandwich mode]
msgid ""
@@ -15922,12 +16128,18 @@ msgid ""
"precision and layer consistency if your model doesn't have very steep "
"overhangs?"
msgstr ""
+"Sandwichmodus\n"
+"Wist u dat u de sandwichmodus (binnen-buiten-binnen) kunt gebruiken om de "
+"precisie en consistentie van de laag te verbeteren als uw model geen erg "
+"steile overhangen heeft?"
#: resources/data/hints.ini: [hint:Chamber temperature]
msgid ""
"Chamber temperature\n"
"Did you know that OrcaSlicer supports chamber temperature?"
msgstr ""
+"Kamertemperatuur\n"
+"Wist je dat OrcaSlicer kamertemperatuur ondersteunt?"
#: resources/data/hints.ini: [hint:Calibration]
msgid ""
@@ -15935,24 +16147,34 @@ msgid ""
"Did you know that calibrating your printer can do wonders? Check out our "
"beloved calibration solution in OrcaSlicer."
msgstr ""
+"Kalibratie\n"
+"Wist u dat het kalibreren van uw printer wonderen kan doen? Bekijk onze "
+"geliefde kalibratieoplossing in OrcaSlicer."
#: resources/data/hints.ini: [hint:Auxiliary fan]
msgid ""
"Auxiliary fan\n"
"Did you know that OrcaSlicer supports Auxiliary part cooling fan?"
msgstr ""
+"Hulpventilator\n"
+"Wist u dat OrcaSlicer eventuele extra onderdeel koelventilator ondersteunt?"
#: 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 ""
+"Luchtfiltratie/Afzuigventilator\n"
+"Wist u dat OrcaSlicer eventuele luchtfiltratie/afzuigventilator ondersteunt?"
#: 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 ""
+"G-codevenster\n"
+"U kunt het G-codevenster in- of uitschakelen door op de C-toets te "
+"drukken."
#: resources/data/hints.ini: [hint:Switch workspaces]
msgid ""
@@ -15960,6 +16182,9 @@ msgid ""
"You can switch between Prepare and Preview workspaces by "
"pressing the Tab key."
msgstr ""
+"Werkruimten wisselen\n"
+"U kunt schakelen tussen de werkruimten Voorbereiden en "
+"Voorvertoning door op de Tab-toets te drukken."
#: resources/data/hints.ini: [hint:How to use keyboard shortcuts]
msgid ""
@@ -15967,6 +16192,9 @@ msgid ""
"Did you know that Orca Slicer offers a wide range of keyboard shortcuts and "
"3D scene operations."
msgstr ""
+"Hoe sneltoetsen te gebruiken\n"
+"Wist u dat Orca Slicer een breed scala aan sneltoetsen en 3D-"
+"scĂšnebewerkingen biedt."
#: resources/data/hints.ini: [hint:Reverse on odd]
msgid ""
@@ -15974,6 +16202,9 @@ msgid ""
"Did you know that Reverse on odd feature can significantly improve "
"the surface quality of your overhangs?"
msgstr ""
+"Achteruit op oneven\n"
+"Wist u dat de functie Achteruit op oneven de oppervlaktekwaliteit van "
+"uw overhangen aanzienlijk kan verbeteren?"
#: resources/data/hints.ini: [hint:Cut Tool]
msgid ""
@@ -16049,6 +16280,9 @@ msgid ""
"Did you know that you use the Search tool to quickly find a specific Orca "
"Slicer setting?"
msgstr ""
+"Zoekfunctionaliteit\n"
+"Wist u dat u de zoekfunctie gebruikt om snel een specifieke Orca Slicer-"
+"instelling te vinden?"
#: resources/data/hints.ini: [hint:Simplify Model]
msgid ""
@@ -16056,6 +16290,10 @@ msgid ""
"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 ""
+"Model vereenvoudigen\n"
+"Wist u dat u het aantal driehoeken in een mesh kunt verminderen met de mesh "
+"functie Vereenvoudigen? Klik met de rechtermuisknop op het model en "
+"selecteer Model vereenvoudigen."
#: resources/data/hints.ini: [hint:Slicing Parameter Table]
msgid ""
@@ -16084,6 +16322,10 @@ msgid ""
"part modifier? That way you can, for example, create easily resizable holes "
"directly in Orca Slicer."
msgstr ""
+"Een deel aftrekken\n"
+"Wist u dat u een mesh van een andere kunt aftrekken met de Negatief deel "
+"aanpasser? Zo kunt u bijvoorbeeld gemakkelijk aanpasbare gaten rechtstreeks "
+"in Orca Slicer maken."
#: resources/data/hints.ini: [hint:STEP]
msgid ""
@@ -16093,6 +16335,11 @@ msgid ""
"Orca Slicer supports slicing STEP files, providing smoother results than a "
"lower resolution STL. Give it a try!"
msgstr ""
+"STEP\n"
+"Wist u dat u uw afdrukkwaliteit kunt verbeteren door een STEP-bestand te "
+"slicen in plaats van een STL?\n"
+"Orca Slicer ondersteunt het slicen van STEP-bestanden, wat vloeiendere "
+"resultaten oplevert dan een STL met een lagere resolutie. Probeer het eens!"
#: resources/data/hints.ini: [hint:Z seam location]
msgid ""
@@ -16251,55 +16498,68 @@ msgstr ""
"kromtrekken, zoals ABS, een juiste verhoging van de temperatuur van het "
"warmtebed de kans op kromtrekken kan verkleinen?"
-#~ msgid "up to"
-#~ msgstr "tot"
-
-#~ msgid "above"
-#~ msgstr "Boven"
-
-#~ msgid "from"
-#~ msgstr "Van"
-
-#~ msgid "Switching application language while some presets are modified."
+#~ msgid ""
+#~ "Decrease this value slightly(for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag"
#~ msgstr ""
-#~ "De taal van de toepassing aanpaasen terwijl sommige voorinstellingen zijn "
-#~ "aangepast."
+#~ "Verlaag deze waarde iets (bijvoorbeeld 0,9) om de hoeveelheid materiaal "
+#~ "voor bruggen te verminderen, dit om doorzakken te voorkomen."
-#~ msgid "â+Shift+G"
-#~ msgstr "â+Shift+G"
+#~ 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 "Ctrl+Shift+G"
-#~ msgstr "Ctrl+Shift+G"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "Dit is de snelheid voor bruggen en 100% overhangende wanden."
-#~ msgid "â+Any arrow"
-#~ msgstr "â+willekeurige pijl"
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Tijd welke nodig is om nieuw filament te laden tijdens het wisselen. "
+#~ "Enkel voor statistieken."
-#~ msgid "â„+Left mouse button"
-#~ msgstr "â„+Linker muisknop"
+#~ msgid ""
+#~ "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Tijd welke nodig is om oud filament te lossen tijdens het wisselen. Enkel "
+#~ "voor statistieken."
-#~ msgid "â+Left mouse button"
-#~ msgstr "â+Linker muisknop"
+#~ 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 "Ctrl+Any arrow"
-#~ msgstr "CTRL+willekeurige pijl"
+#~ 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 "Alt+Left mouse button"
-#~ msgstr "Alt+Linker muisknop"
-
-#~ msgid "Ctrl+Left mouse button"
-#~ msgstr "Ctrl+Linker muisknop"
-
-#~ msgid "â+Mouse wheel"
-#~ msgstr "â+muiswiel"
-
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„+Muiswiel"
-
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "CTRL+muiswiel"
-
-#~ msgid "Alt+Mouse wheel"
-#~ msgstr "Alt+muiswiel"
+#~ 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 ""
+#~ "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 ""
#~ "Different nozzle diameters and different filament diameters is not "
diff --git a/localization/i18n/pl/OrcaSlicer_pl.po b/localization/i18n/pl/OrcaSlicer_pl.po
index 0c821ac093..01cdea0bf8 100644
--- a/localization/i18n/pl/OrcaSlicer_pl.po
+++ b/localization/i18n/pl/OrcaSlicer_pl.po
@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: OrcaSlicer 2.1\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: \n"
"Last-Translator: Krzysztof Morga \n"
"Language-Team: \n"
@@ -75,6 +75,9 @@ msgstr "KÄ
t inteligentnego wypeĆniania"
msgid "On overhangs only"
msgstr "Tylko na nawisach"
+msgid "Auto support threshold angle: "
+msgstr "Automatyczny kÄ
t progowy podpory: "
+
msgid "Circle"
msgstr "KoĆo"
@@ -94,9 +97,6 @@ msgstr "Pozwala malowaÄ tylko na wybranych powierzchniach za pomocÄ
: \"%1%\""
msgid "Highlight faces according to overhang angle."
msgstr "PodĆwietl Ćciany zgodnie z kÄ
tem nawisu."
-msgid "Auto support threshold angle: "
-msgstr "Automatyczny kÄ
t progowy podpory: "
-
msgid "No auto support"
msgstr "Brak automatycznej podpory"
@@ -1982,6 +1982,9 @@ msgstr "UproĆÄ model"
msgid "Center"
msgstr "WyĆrodkuj"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "Edytuj ustawienia procesu"
@@ -4163,6 +4166,15 @@ msgstr "Czas caĆkowity"
msgid "Total cost"
msgstr "Koszt caĆkowity"
+msgid "up to"
+msgstr "do"
+
+msgid "above"
+msgstr "powyĆŒej"
+
+msgid "from"
+msgstr "od"
+
msgid "Color Scheme"
msgstr "Schemat kolorĂłw"
@@ -4226,12 +4238,12 @@ msgstr "Liczba zmian filamentu"
msgid "Cost"
msgstr "Koszt"
-msgid "Print"
-msgstr "Drukuj"
-
msgid "Color change"
msgstr "Zmiana koloru"
+msgid "Print"
+msgstr "Drukuj"
+
msgid "Printer"
msgstr "Drukarka"
@@ -4415,7 +4427,7 @@ msgstr "ObjÄtoĆÄ:"
msgid "Size:"
msgstr "Rozmiar:"
-#, 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)."
@@ -4857,6 +4869,18 @@ msgstr "Procedura 2"
msgid "Flow rate test - Pass 2"
msgstr "Test natÄĆŒenia przepĆywu - Procedura 2"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "NatÄĆŒenie przepĆywu"
@@ -6159,16 +6183,6 @@ 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. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-"TwĂłj obiekt wydaje siÄ byÄ zbyt duĆŒy. Zostanie on automatycznie zmniejszony, "
-"aby pasowaĆ do powierzchni roboczej."
-
-msgid "Object too large"
-msgstr "Obiekt jest zbyt duĆŒy"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
@@ -6176,6 +6190,9 @@ 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"
+
msgid "Export STL file:"
msgstr "Eksportuj plik STL:"
@@ -6553,6 +6570,11 @@ msgstr "Czy chcesz kontynuowaÄ?"
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."
+
msgid "Changing application language"
msgstr "Zmiana jÄzyka aplikacji"
@@ -8571,8 +8593,11 @@ msgstr "Lista obiektĂłw"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Import danych geometrycznych z plikĂłw STL/STEP/3MF/OBJ/AMF"
-msgid "Shift+G"
-msgstr "Shift+G"
+msgid "â+Shift+G"
+msgstr "â+Shift+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Ctrl+Shift+G"
msgid "Paste from clipboard"
msgstr "Wklej z schowka"
@@ -8622,18 +8647,33 @@ msgstr "Shift+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "ZwiĆ/RozwiĆ pasek boczny"
-msgid "Any arrow"
-msgstr "Dowolna strzaĆka"
+msgid "â+Any arrow"
+msgstr ""
msgid "Movement in camera space"
msgstr "Ruch w przestrzeni kamery"
+msgid "â„+Left mouse button"
+msgstr "â„+Lewy przycisk myszy"
+
msgid "Select a part"
msgstr "Wybierz czÄĆÄ"
+msgid "â+Left mouse button"
+msgstr "â+Lewy przycisk myszy"
+
msgid "Select multiple objects"
msgstr "Wybierz wiele obiektĂłw"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl+Dowolna strzaĆka"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt+Lewy przycisk myszy"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl+Lewy przycisk myszy"
+
msgid "Shift+Left mouse button"
msgstr "Shift+Lewy przycisk myszy"
@@ -8736,12 +8776,24 @@ msgstr "PĆyta"
msgid "Move: press to snap by 1mm"
msgstr "PrzesuĆ: naciĆnij, aby przyciÄ
gnÄ
Ä co 1 mm"
+msgid "â+Mouse wheel"
+msgstr "â+KĂłĆko myszy"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "Podpory/Kolorowanie: dostosuj promieĆ pÄdzla"
+msgid "â„+Mouse wheel"
+msgstr "â„+KĂłĆko myszy"
+
msgid "Support/Color Painting: adjust section position"
msgstr "Podpory/Kolorowanie: dostosuj pozycjÄ sekcji"
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl+KĂłĆko myszy"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+KĂłĆko myszy"
+
msgid "Gizmo"
msgstr "Uchwyt"
@@ -9823,25 +9875,32 @@ 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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\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"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \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"
-"3. Nigdzie: WyĆÄ
cza wypeĆnienie\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
+msgstr ""
msgid "Everywhere"
msgstr "WszÄdzie"
@@ -9916,10 +9975,11 @@ 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"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
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"
@@ -9927,29 +9987,33 @@ 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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
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"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
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"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
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"
@@ -10127,12 +10191,26 @@ msgstr "WĆÄ
cz tÄ opcjÄ, aby zwolniÄ drukowanie dla rĂłĆŒnych stopni nawisu"
msgid "Slow down for curled perimeters"
msgstr "Zwalnienie na Ćukach"
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
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 %"
@@ -10140,8 +10218,14 @@ msgstr "mm/s lub %"
msgid "External"
msgstr "Zewn."
-msgid "Speed of bridge and completely overhang wall"
-msgstr "PrÄdkoĆÄ mostu i caĆkowicie nawisajÄ
cej Ćciany"
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "mm/s"
@@ -10150,11 +10234,9 @@ 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%."
+"Speed of internal bridges. 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"
@@ -10810,6 +10892,17 @@ msgstr ""
"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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "WĆÄ
cz wzrost ciĆnienia (PA)"
@@ -11049,18 +11142,29 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "Czas Ćadowania filamentu"
-msgid "Time to load new filament when switch filament. For statistics only"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
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"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
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 "
@@ -11208,15 +11312,6 @@ 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 "Ramming parameters"
msgstr "Parametry wyciskania"
@@ -11227,15 +11322,6 @@ 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 "Enable ramming for multitool setups"
msgstr "WĆÄ
cz wyciskanie przy multi-tool"
@@ -11682,8 +11768,11 @@ msgstr "Filtruj wÄ
skie szczeliny"
msgid "Layers and Perimeters"
msgstr "Warstwy i obwody"
-msgid "Filter out gaps smaller than the threshold specified"
-msgstr "Filtruj szczeliny mniejsze niĆŒ podany prĂłg"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
+msgstr ""
msgid ""
"Speed of gap infill. Gap usually has irregular line width and should be "
@@ -13870,32 +13959,40 @@ 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"
-"G-code commands: M141/M191 S(0-255)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
-"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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
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"
@@ -17216,52 +17313,143 @@ msgstr ""
"takimi jak ABS, odpowiednie zwiÄkszenie temperatury podgrzewanej pĆyty moĆŒe "
"zmniejszyÄ prawdopodobieĆstwo odksztaĆceĆ."
-#~ msgid "up to"
-#~ msgstr "do"
-
-#~ msgid "above"
-#~ msgstr "powyĆŒej"
-
-#~ msgid "from"
-#~ msgstr "od"
-
-#~ msgid "Switching application language while some presets are modified."
+#~ msgid ""
+#~ "Your object appears to be too large. It will be scaled down to fit the "
+#~ "heat bed automatically."
#~ msgstr ""
-#~ "Zmiana jÄzyka aplikacji przy jednoczesnym istniejÄ
cych zmodyfikowanych "
-#~ "ustawieniach."
+#~ "TwĂłj obiekt wydaje siÄ byÄ zbyt duĆŒy. Zostanie on automatycznie "
+#~ "zmniejszony, aby pasowaĆ do powierzchni roboczej."
-#~ msgid "â+Shift+G"
-#~ msgstr "â+Shift+G"
+#~ msgid "Shift+G"
+#~ msgstr "Shift+G"
-#~ msgid "Ctrl+Shift+G"
-#~ msgstr "Ctrl+Shift+G"
+#~ msgid "Any arrow"
+#~ msgstr "Dowolna strzaĆka"
-#~ msgid "â„+Left mouse button"
-#~ msgstr "â„+Lewy przycisk myszy"
+#~ 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"
+#~ "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"
+#~ "\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"
+#~ "3. Nigdzie: WyĆÄ
cza wypeĆnienie\n"
-#~ msgid "â+Left mouse button"
-#~ msgstr "â+Lewy przycisk myszy"
+#~ 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 "Ctrl+Any arrow"
-#~ msgstr "Ctrl+Dowolna strzaĆka"
+#~ 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 "Alt+Left mouse button"
-#~ msgstr "Alt+Lewy przycisk myszy"
+#~ 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 "Ctrl+Left mouse button"
-#~ msgstr "Ctrl+Lewy przycisk myszy"
+#~ 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"
-#~ msgid "â+Mouse wheel"
-#~ msgstr "â+KĂłĆko myszy"
+#~ 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 "â„+Mouse wheel"
-#~ msgstr "â„+KĂłĆko myszy"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "PrÄdkoĆÄ mostu i caĆkowicie nawisajÄ
cej Ćciany"
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "Ctrl+KĂłĆko myszy"
+#~ 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 "Alt+Mouse wheel"
-#~ msgstr "Alt+KĂłĆko myszy"
+#~ 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"
+
+#~ 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"
+
+#~ 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 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 "Filter out gaps smaller than the threshold specified"
+#~ msgstr "Filtruj szczeliny mniejsze niĆŒ podany prĂłg"
+
+#~ 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 ""
+#~ "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 ""
+#~ "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 ""
#~ "Interlocking depth of a segmented region. Zero disables this feature."
diff --git a/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po b/localization/i18n/pt_BR/OrcaSlicer_pt_BR.po
index 42ecd5c780..76f37e4280 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 ""
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: 2024-06-01 21:51-0300\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
@@ -80,6 +80,9 @@ msgstr ""
msgid "On overhangs only"
msgstr "Apenas em 'overhangs'"
+msgid "Auto support threshold angle: "
+msgstr "Ăngulo max. do suporte automĂĄtico: "
+
msgid "Circle"
msgstr "CĂrculo"
@@ -99,9 +102,6 @@ msgstr "Permite pintura apenas em facetas selecionadas por: \"%1%\""
msgid "Highlight faces according to overhang angle."
msgstr "Realçar faces conforme a inclinação."
-msgid "Auto support threshold angle: "
-msgstr "Ăngulo max. do suporte automĂĄtico: "
-
msgid "No auto support"
msgstr "Sem suporte automĂĄtico"
@@ -1989,6 +1989,9 @@ msgstr "Simplificar Modelo"
msgid "Center"
msgstr "Centralizar"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "Editar ConfiguraçÔes de Processo"
@@ -4163,6 +4166,15 @@ msgstr "Tempo total"
msgid "Total cost"
msgstr "Custo total"
+msgid "up to"
+msgstr "até"
+
+msgid "above"
+msgstr "acima"
+
+msgid "from"
+msgstr "de"
+
msgid "Color Scheme"
msgstr "Esquema de Cores"
@@ -4226,12 +4238,12 @@ msgstr "Quantidade de trocas de filamento"
msgid "Cost"
msgstr "Custo"
-msgid "Print"
-msgstr "Imprimir"
-
msgid "Color change"
msgstr "Mudança de Cor"
+msgid "Print"
+msgstr "Imprimir"
+
msgid "Printer"
msgstr "Impressora"
@@ -4415,7 +4427,7 @@ msgstr "Volume:"
msgid "Size:"
msgstr "Tamanho:"
-#, 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)."
@@ -4856,6 +4868,18 @@ msgstr "Passo 2"
msgid "Flow rate test - Pass 2"
msgstr "Teste de fluxo - Passo 2"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "Fluxo"
@@ -6157,14 +6181,6 @@ 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. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-
-msgid "Object too large"
-msgstr "Objeto muito grande"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
@@ -6172,6 +6188,9 @@ 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"
+
msgid "Export STL file:"
msgstr "Exportar arquivo STL:"
@@ -6550,6 +6569,10 @@ msgstr "VocĂȘ deseja continuar?"
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."
+
msgid "Changing application language"
msgstr "Alterando o idioma do aplicativo"
@@ -7680,8 +7703,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add Primitive"
-"\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add "
+"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"Ao gravar um timelapse sem o hotend aparecer, Ă© recomendĂĄvel adicionar uma "
"\"Torre Prime para Timelapse\" \n"
@@ -8546,8 +8569,11 @@ msgstr "Lista de objetos"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importar dados de geometria de arquivos STL/STEP/3MF/OBJ/AMF"
-msgid "Shift+G"
-msgstr ""
+msgid "â+Shift+G"
+msgstr "â+Shift+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Ctrl+Shift+G"
msgid "Paste from clipboard"
msgstr "Colar da ĂĄrea de transferĂȘncia"
@@ -8597,18 +8623,33 @@ msgstr "Shift+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "Recolher/Expandir a barra lateral"
-msgid "Any arrow"
-msgstr ""
+msgid "â+Any arrow"
+msgstr "â+Qualquer seta"
msgid "Movement in camera space"
msgstr "Movimento no espaço da cùmera"
+msgid "â„+Left mouse button"
+msgstr "BotĂŁo esquerdo do mouse â„+"
+
msgid "Select a part"
msgstr "Selecionar uma peça"
+msgid "â+Left mouse button"
+msgstr "BotĂŁo esquerdo do mouse â+"
+
msgid "Select multiple objects"
msgstr "Selecionar vĂĄrios objetos"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl+Qualquer seta"
+
+msgid "Alt+Left mouse button"
+msgstr "BotĂŁo esquerdo do mouse Alt+"
+
+msgid "Ctrl+Left mouse button"
+msgstr "BotĂŁo esquerdo do mouse Ctrl+"
+
msgid "Shift+Left mouse button"
msgstr "BotĂŁo esquerdo do mouse Shift+"
@@ -8711,12 +8752,24 @@ msgstr "Mesa"
msgid "Move: press to snap by 1mm"
msgstr "Mover: pressione para ajustar em 1mm"
+msgid "â+Mouse wheel"
+msgstr "â+Roda do mouse"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "Suporte/Pintura em cores: ajustar o raio da caneta"
+msgid "â„+Mouse wheel"
+msgstr "â„+Roda do mouse"
+
msgid "Support/Color Painting: adjust section position"
msgstr "Suporte/Pintura em cores: ajustar a posição da seção"
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl+Roda do mouse"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+Roda do mouse"
+
msgid "Gizmo"
msgstr "Gizmo"
@@ -9781,25 +9834,32 @@ 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"
+"Enables gap fill for the selected solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\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"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \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"
-"3. Em nenhum lugar: Desativa o preenchimento de s\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
+msgstr ""
msgid "Everywhere"
msgstr "Sempre"
@@ -9873,10 +9933,11 @@ msgstr "Fluxo em ponte"
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
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"
@@ -9884,31 +9945,33 @@ 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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
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"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
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"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Este fator afeta a quantidade de material para o preenchimento sĂłlido "
-"inferior"
msgid "Precise wall"
msgstr "Parede precisa"
@@ -10085,12 +10148,26 @@ msgstr ""
msgid "Slow down for curled perimeters"
msgstr "Reduzir vel. para perĂmetros encurvados"
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
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 %"
@@ -10098,8 +10175,14 @@ msgstr "mm/s ou %"
msgid "External"
msgstr "Externo"
-msgid "Speed of bridge and completely overhang wall"
-msgstr "Velocidade de ponte e paredes compostas completamente de overhangs"
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "mm/s"
@@ -10108,11 +10191,9 @@ 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%."
+"Speed of internal bridges. 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"
@@ -10764,6 +10845,17 @@ msgstr ""
"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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "Habilitar Pressure advance"
@@ -10943,18 +11035,29 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "Tempo de carga do filamento"
-msgid "Time to load new filament when switch filament. For statistics only"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
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"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
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 "
@@ -11095,16 +11198,6 @@ 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 "Ramming parameters"
msgstr "ParĂąmetros de moldeamento"
@@ -11115,16 +11208,6 @@ msgstr ""
"Esta frase Ă© editada pelo RammingDialog e contĂ©m parĂąmetros especĂficos de "
"moldeamento."
-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 moldeamento para configuraçÔes de multi-extrusora"
@@ -11494,10 +11577,10 @@ msgstr "Velocidade total do ventilador na camada"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
-"\". \"full_fan_speed_layer\" will be ignored if lower than "
-"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
-"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer "
+"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
+"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
+"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"A velocidade do ventilador aumentarĂĄ linearmente de zero na camada "
"\"close_fan_the_first_x_layers\" para o mĂĄximo na camada "
@@ -11573,8 +11656,11 @@ msgstr "Filtrar vazios pequenos"
msgid "Layers and Perimeters"
msgstr "Camadas e PerĂmetros"
-msgid "Filter out gaps smaller than the threshold specified"
-msgstr "Filtrar vazios menores que o limite especificado"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
+msgstr ""
msgid ""
"Speed of gap infill. Gap usually has irregular line width and should be "
@@ -13718,33 +13804,40 @@ 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"
-"G-code commands: M141/M191 S(0-255)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
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"
@@ -15701,8 +15794,8 @@ msgstr ""
"VocĂȘ deseja reescrevĂȘ-lo?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you selected"
-"\". \n"
+"We would rename the presets as \"Vendor Type Serial @printer you "
+"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
"RenomearĂamos os presets como \"Fornecedor Tipo Serial @ impressora que vocĂȘ "
@@ -17029,55 +17122,135 @@ msgstr ""
"aumentar adequadamente a temperatura da mesa aquecida pode reduzir a "
"probabilidade de empenamento?"
-#~ msgid "up to"
-#~ msgstr "até"
-
-#~ msgid "above"
-#~ msgstr "acima"
-
-#~ msgid "from"
-#~ msgstr "de"
-
-#~ msgid "Switching application language while some presets are modified."
+#~ 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"
+#~ "3. Nowhere: Disables gap fill\n"
#~ msgstr ""
-#~ "A mudança do idioma do aplicativo enquanto alguns presets estão "
-#~ "modificados."
+#~ "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"
+#~ "3. Em nenhum lugar: Desativa o preenchimento de s\n"
-#~ msgid "â+Shift+G"
-#~ msgstr "â+Shift+G"
+#~ 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 "Ctrl+Shift+G"
-#~ msgstr "Ctrl+Shift+G"
+#~ 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 "â+Any arrow"
-#~ msgstr "â+Qualquer seta"
+#~ 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 "â„+Left mouse button"
-#~ msgstr "BotĂŁo esquerdo do mouse â„+"
+#~ 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"
-#~ msgid "â+Left mouse button"
-#~ msgstr "BotĂŁo esquerdo do mouse â+"
+#~ 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 "Ctrl+Any arrow"
-#~ msgstr "Ctrl+Qualquer seta"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "Velocidade de ponte e paredes compostas completamente de overhangs"
-#~ msgid "Alt+Left mouse button"
-#~ msgstr "BotĂŁo esquerdo do mouse Alt+"
+#~ 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 "Ctrl+Left mouse button"
-#~ msgstr "BotĂŁo esquerdo do mouse Ctrl+"
+#~ 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"
-#~ msgid "â+Mouse wheel"
-#~ msgstr "â+Roda do mouse"
+#~ 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"
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„+Roda do mouse"
+#~ 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 "Ctrl+Mouse wheel"
-#~ msgstr "Ctrl+Roda do mouse"
+#~ 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 "Alt+Mouse wheel"
-#~ msgstr "Alt+Roda do mouse"
+#~ msgid "Filter out gaps smaller than the threshold specified"
+#~ msgstr "Filtrar vazios menores que o limite especificado"
+
+#~ 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"
+#~ "Comandos G-code: M141/M191 S(0-255)"
+
+#~ 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 ""
#~ "Different nozzle diameters and different filament diameters is not "
diff --git a/localization/i18n/ru/OrcaSlicer_ru.po b/localization/i18n/ru/OrcaSlicer_ru.po
index 04def26dcd..6f89ee3416 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-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: 2024-06-19 16:50+0700\n"
"Last-Translator: \n"
"Language-Team: andylg@yandex.ru\n"
@@ -15,8 +15,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
"X-Generator: Poedit 3.4.2\n"
msgid "Supports Painting"
@@ -79,6 +79,9 @@ msgstr "ĐŁĐłĐŸĐ» ĐŽĐ»Ń ŃĐŒĐœĐŸĐč залОĐČĐșĐž"
msgid "On overhangs only"
msgstr "ĐąĐŸĐ»ŃĐșĐŸ ĐœĐ° ŃĐČĐ”ŃаŃ
"
+msgid "Auto support threshold angle: "
+msgstr "ĐĐŸŃĐŸĐłĐŸĐČŃĐč ŃĐłĐŸĐ» аĐČŃĐŸĐżĐŸĐŽĐŽĐ”ŃжĐșĐž: "
+
msgid "Circle"
msgstr "ĐĐșŃŃĐ¶ĐœĐŸŃŃŃ"
@@ -98,9 +101,6 @@ msgstr "ĐĐŸĐ·ĐČĐŸĐ»ŃĐ”Ń ŃĐžŃĐŸĐČаŃŃ ĐœĐ° ĐČŃбŃĐ°ĐœĐœŃŃ
ĐłŃĐ°ĐœŃŃ
msgid "Highlight faces according to overhang angle."
msgstr "ĐŃĐŽĐ”Đ»Đ”ĐœĐžĐ” ĐłŃĐ°ĐœĐ”Đč ĐżĐŸ ŃĐłĐ»Ń ŃĐČĐ”Ńа."
-msgid "Auto support threshold angle: "
-msgstr "ĐĐŸŃĐŸĐłĐŸĐČŃĐč ŃĐłĐŸĐ» аĐČŃĐŸĐżĐŸĐŽĐŽĐ”ŃжĐșĐž: "
-
msgid "No auto support"
msgstr "ĐŃĐșĐ». аĐČŃĐŸĐżĐŸĐŽĐŽĐ”ŃжĐșŃ"
@@ -1988,6 +1988,9 @@ msgstr "ĐŁĐżŃĐŸŃŃĐžŃŃ ĐżĐŸĐ»ĐžĐłĐŸĐœĐ°Đ»ŃĐœŃŃ ŃĐ”ŃĐșŃ"
msgid "Center"
msgstr "ĐĐŸ ŃĐ”ĐœŃŃŃ"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "РДЎаĐșŃĐžŃĐŸĐČаŃŃ ĐœĐ°ŃŃŃĐŸĐčĐșĐž ĐżŃĐŸŃĐ”ŃŃа пДŃаŃĐž"
@@ -4193,6 +4196,15 @@ msgstr "ĐбŃДД ĐČŃĐ”ĐŒŃ ĐżĐ”ŃаŃĐž"
msgid "Total cost"
msgstr "ĐбŃĐ°Ń ŃŃĐŸĐžĐŒĐŸŃŃŃ"
+msgid "up to"
+msgstr "ĐŽĐŸ"
+
+msgid "above"
+msgstr "ĐżĐŸŃлД"
+
+msgid "from"
+msgstr "Ń"
+
msgid "Color Scheme"
msgstr "ĐŠĐČĐ”ŃĐŸĐČĐ°Ń ŃŃ
Đ”ĐŒĐ°"
@@ -4256,12 +4268,12 @@ msgstr "ĐŃĐ”ĐŒŃ ŃĐŒĐ”ĐœŃ ĐżŃŃŃĐșа"
msgid "Cost"
msgstr "ĐĄŃĐŸĐžĐŒĐŸŃŃŃ"
-msgid "Print"
-msgstr "ĐĐ”ŃаŃŃ"
-
msgid "Color change"
msgstr "ĐĄĐŒĐ”ĐœĐ° ŃĐČĐ”Ńа"
+msgid "Print"
+msgstr "ĐĐ”ŃаŃŃ"
+
msgid "Printer"
msgstr "ĐŃĐŸŃĐžĐ»Ń ĐżŃĐžĐœŃĐ”Ńа"
@@ -4445,7 +4457,7 @@ msgstr "ĐбŃŃĐŒ:"
msgid "Size:"
msgstr "Đ Đ°Đ·ĐŒĐ”Ń:"
-#, 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)."
@@ -4890,6 +4902,18 @@ msgstr "ĐŃĐŸŃ
ĐŸĐŽ 2"
msgid "Flow rate test - Pass 2"
msgstr "йДŃŃ ŃĐșĐŸŃĐŸŃŃĐž ĐżĐŸŃĐŸĐșа - 2-ĐŸĐč ĐżŃĐŸŃ
ĐŸĐŽ"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "ĐĄĐșĐŸŃĐŸŃŃŃ ĐżĐŸŃĐŸĐșа"
@@ -6197,14 +6221,6 @@ msgstr "ĐĐ±ĐœĐ°ŃŃĐ¶Đ”ĐœĐ° ĐŒĐŸĐŽĐ”Đ»Ń, ŃĐŸŃŃĐŸŃŃĐ°Ń ĐžĐ· ĐœĐ”ŃĐșĐŸĐ»
msgid "The file does not contain any geometry data."
msgstr "ЀаĐčĐ» ĐœĐ” ŃĐŸĐŽĐ”ŃĐ¶ĐžŃ ĐœĐžĐșаĐșĐžŃ
ĐłĐ”ĐŸĐŒĐ”ŃŃĐžŃĐ”ŃĐșĐžŃ
ĐŽĐ°ĐœĐœŃŃ
."
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-
-msgid "Object too large"
-msgstr "ĐĐŸĐŽĐ”Đ»Ń ŃлОŃĐșĐŸĐŒ Đ±ĐŸĐ»ŃŃаŃ"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
@@ -6213,6 +6229,9 @@ msgstr ""
"Đ„ĐŸŃĐžŃĐ” аĐČŃĐŸĐŒĐ°ŃĐžŃĐ”ŃĐșĐž ŃĐŒĐ”ĐœŃŃĐžŃŃ Đ”Ń ĐŒĐ°ŃŃŃаб, \n"
"ŃŃĐŸĐ±Ń ĐŸĐœĐ° ŃĐŒĐ”ŃŃОлаŃŃ ĐœĐ° ŃŃĐŸĐ»Đ”?"
+msgid "Object too large"
+msgstr "ĐĐŸĐŽĐ”Đ»Ń ŃлОŃĐșĐŸĐŒ Đ±ĐŸĐ»ŃŃаŃ"
+
msgid "Export STL file:"
msgstr "ĐĐșŃĐżĐŸŃŃ ĐČ STL ŃаĐčĐ»:"
@@ -6586,6 +6605,9 @@ msgstr "Đ„ĐŸŃĐžŃĐ” ĐżŃĐŸĐŽĐŸĐ»Đ¶ĐžŃŃ?"
msgid "Language selection"
msgstr "ĐŃĐ±ĐŸŃ ŃĐ·ŃĐșа"
+msgid "Switching application language while some presets are modified."
+msgstr "ĐĄĐŒĐ”ĐœĐ° ŃĐ·ŃĐșа ĐżŃĐžĐ»ĐŸĐ¶Đ”ĐœĐžŃ ĐżŃĐž ĐžĐ·ĐŒĐ”ĐœĐ”ĐœĐžĐž ĐœĐ”ĐșĐŸŃĐŸŃŃŃ
ĐżŃĐŸŃОлДĐč."
+
msgid "Changing application language"
msgstr "ĐĐ·ĐŒĐ”ĐœĐ”ĐœĐžĐ” ŃĐ·ŃĐșа ĐżŃĐžĐ»ĐŸĐ¶Đ”ĐœĐžŃ"
@@ -7534,8 +7556,8 @@ msgid ""
"Bambu Lab Privacy Policy, please do not use Bambu Lab equipment and services."
msgstr ""
"ĐĐ”ŃДЎ ĐžŃĐżĐŸĐ»ŃĐ·ĐŸĐČĐ°ĐœĐžĐ”ĐŒ ŃŃŃŃĐŸĐčŃŃĐČа Bambu Lab ĐŸĐ·ĐœĐ°ĐșĐŸĐŒŃŃĐ”ŃŃ Ń ĐżŃаĐČĐžĐ»Đ°ĐŒĐž Đž "
-"ŃŃĐ»ĐŸĐČĐžŃĐŒĐž. ĐĐ°Đ¶ĐžĐŒĐ°Ń ĐœĐ° ĐșĐœĐŸĐżĐșŃ \"ĐĄĐŸĐłĐ»Đ°ŃОД ĐœĐ° ĐžŃĐżĐŸĐ»ŃĐ·ĐŸĐČĐ°ĐœĐžĐ” ŃŃŃŃĐŸĐčŃŃĐČа Bambu Lab"
-"\", ĐČŃ ŃĐŸĐłĐ»Đ°ŃаДŃĐ”ŃŃ ŃĐŸĐ±Đ»ŃЎаŃŃ ĐĐŸĐ»ĐžŃĐžĐșŃ ĐșĐŸĐœŃĐžĐŽĐ”ĐœŃОалŃĐœĐŸŃŃĐž Đž ĐŁŃĐ»ĐŸĐČĐžŃ "
+"ŃŃĐ»ĐŸĐČĐžŃĐŒĐž. ĐĐ°Đ¶ĐžĐŒĐ°Ń ĐœĐ° ĐșĐœĐŸĐżĐșŃ \"ĐĄĐŸĐłĐ»Đ°ŃОД ĐœĐ° ĐžŃĐżĐŸĐ»ŃĐ·ĐŸĐČĐ°ĐœĐžĐ” ŃŃŃŃĐŸĐčŃŃĐČа Bambu "
+"Lab\", ĐČŃ ŃĐŸĐłĐ»Đ°ŃаДŃĐ”ŃŃ ŃĐŸĐ±Đ»ŃЎаŃŃ ĐĐŸĐ»ĐžŃĐžĐșŃ ĐșĐŸĐœŃĐžĐŽĐ”ĐœŃОалŃĐœĐŸŃŃĐž Đž ĐŁŃĐ»ĐŸĐČĐžŃ "
"ĐžŃĐżĐŸĐ»ŃĐ·ĐŸĐČĐ°ĐœĐžŃ (ЎалДД - \"ĐŁŃĐ»ĐŸĐČĐžŃ\"). ĐŃлО ĐČŃ ĐœĐ” ŃĐŸĐ±Đ»ŃЎаДŃĐ” ОлО ĐœĐ” ŃĐŸĐłĐ»Đ°ŃĐœŃ Ń "
"ĐĐŸĐ»ĐžŃĐžĐșĐŸĐč ĐșĐŸĐœŃĐžĐŽĐ”ĐœŃОалŃĐœĐŸŃŃĐž Bambu Lab, ĐżĐŸĐ¶Đ°Đ»ŃĐčŃŃа, ĐœĐ” ĐżĐŸĐ»ŃĐ·ŃĐčŃĐ”ŃŃ "
"ĐŸĐ±ĐŸŃŃĐŽĐŸĐČĐ°ĐœĐžĐ”ĐŒ Đž ŃŃĐ»ŃĐłĐ°ĐŒĐž Bambu Lab."
@@ -7739,8 +7761,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"
@@ -8643,8 +8665,11 @@ msgstr "ХпОŃĐŸĐș ĐŒĐŸĐŽĐ”Đ»Đ”Đč"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "ĐĐŒĐżĐŸŃŃ ĐłĐ”ĐŸĐŒĐ”ŃŃĐžŃĐ”ŃĐșĐžŃ
ĐŽĐ°ĐœĐœŃŃ
Оз STL/STEP/3MF/OBJ/AMF ŃаĐčĐ»ĐŸĐČ"
-msgid "Shift+G"
-msgstr ""
+msgid "â+Shift+G"
+msgstr "â+Shift+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Ctrl+Shift+G"
msgid "Paste from clipboard"
msgstr "ĐŃŃаĐČĐžŃŃ ĐžĐ· бŃŃĐ”Ńа ĐŸĐ±ĐŒĐ”ĐœĐ°"
@@ -8694,18 +8719,33 @@ msgstr "Shift+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "ĐĄĐČĐ”ŃĐœŃŃŃ/РазĐČĐ”ŃĐœŃŃŃ Đ±ĐŸĐșĐŸĐČŃŃ ĐżĐ°ĐœĐ”Đ»Ń"
-msgid "Any arrow"
-msgstr ""
+msgid "â+Any arrow"
+msgstr "â + ĐŃĐ±Đ°Ń ŃŃŃДлĐșа"
msgid "Movement in camera space"
msgstr "ĐĐ”ŃĐ”ĐŒĐ”ŃĐ”ĐœĐžĐ” ĐČŃбŃĐ°ĐœĐœĐŸĐłĐŸ ĐżĐŸ ĐŸŃĐœĐŸŃĐ”ĐœĐžŃ Đș ĐșĐ°ĐŒĐ”ŃĐ”"
+msgid "â„+Left mouse button"
+msgstr "â„ + ĐĐ”ĐČĐ°Ń ĐșĐœĐŸĐżĐșа ĐŒŃŃĐž"
+
msgid "Select a part"
msgstr "ĐŃĐ±ĐŸŃ ŃаŃŃĐž ĐŒĐŸĐŽĐ”Đ»Đž"
+msgid "â+Left mouse button"
+msgstr "â + ĐĐ”ĐČĐ°Ń ĐșĐœĐŸĐżĐșа ĐŒŃŃĐž"
+
msgid "Select multiple objects"
msgstr "ĐŃĐ±ĐŸŃ ĐœĐ”ŃĐșĐŸĐ»ŃĐșĐžŃ
ĐŒĐŸĐŽĐ”Đ»Đ”Đč"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl + ĐŃĐ±Đ°Ń ŃŃŃДлĐșа"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt + ĐĐ”ĐČĐ°Ń ĐșĐœĐŸĐżĐșа ĐŒŃŃĐž"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl + ĐĐ”ĐČĐ°Ń ĐșĐœĐŸĐżĐșа ĐŒŃŃĐž"
+
msgid "Shift+Left mouse button"
msgstr "Shift + ĐĐ”ĐČĐ°Ń ĐșĐœĐŸĐżĐșа ĐŒŃŃĐž"
@@ -8808,12 +8848,24 @@ msgstr "ĐĐ”ŃаŃĐœĐ°Ń ĐżĐ»Đ°ŃŃĐžĐœĐ°"
msgid "Move: press to snap by 1mm"
msgstr "ĐĐ”ŃĐ”ĐŒĐ”ŃĐ”ĐœĐžĐ”: ЀОĐșŃаŃĐžŃ ĐżĐ”ŃĐ”ĐŒĐ”ŃĐ”ĐœĐžŃ ĐœĐ° 1 ĐŒĐŒ"
+msgid "â+Mouse wheel"
+msgstr "â + ĐĐŸĐ»Đ”ŃĐŸ ĐŒŃŃĐž"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "Đ ĐžŃĐŸĐČĐ°ĐœĐžĐ” ĐżĐŸĐŽĐŽĐ”ŃжĐșĐž/ĐšĐČа/ĐĐŸĐșŃаŃĐșĐž: ŃДгŃлОŃĐŸĐČĐșа ŃаЎОŃŃа ĐșĐžŃŃĐž"
+msgid "â„+Mouse wheel"
+msgstr "â„ + ĐĐŸĐ»Đ”ŃĐŸ ĐŒŃŃĐž"
+
msgid "Support/Color Painting: adjust section position"
msgstr "Đ ĐžŃĐŸĐČĐ°ĐœĐžĐ” ĐżĐŸĐŽĐŽĐ”ŃжĐșĐž/ĐšĐČа/ĐĐŸĐșŃаŃĐșĐž: ŃДгŃлОŃĐŸĐČĐșа ĐżĐŸĐ»ĐŸĐ¶Đ”ĐœĐžŃ ŃĐ”ŃĐ”ĐœĐžŃ"
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl + ĐĐŸĐ»Đ”ŃĐŸ ĐŒŃŃĐž"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt + ĐĐŸĐ»Đ”ŃĐŸ ĐŒŃŃĐž"
+
msgid "Gizmo"
msgstr "ĐĐžĐ·ĐŒĐŸ"
@@ -9894,24 +9946,32 @@ msgid "Apply gap fill"
msgstr "ĐĐ°ĐżĐŸĐ»ĐœŃŃŃ ĐżŃĐŸĐ±Đ”Đ»Ń"
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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
-"only\n"
-"3. Nowhere: Disables gap fill\n"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
+"\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
msgstr ""
-"ĐĐșĐ»ŃŃĐ°Đ”Ń Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžĐ” ĐżŃĐŸĐ±Đ”Đ»ĐŸĐČ ĐŽĐ»Ń ĐČŃбŃĐ°ĐœĐœŃŃ
ĐżĐŸĐČĐ”ŃŃ
ĐœĐŸŃŃĐ”Đč. ĐĐžĐœĐžĐŒĐ°Đ»ŃĐœĐŸĐč ĐŽĐ»ĐžĐœĐŸĐč "
-"ĐżŃĐŸĐ±Đ”Đ»Đ°, ĐșĐŸŃĐŸŃŃĐč бŃĐŽĐ”Ń Đ·Đ°ĐżĐŸĐ»ĐœĐ”Đœ, ĐŒĐŸĐ¶ĐœĐŸ ŃĐżŃаĐČĐ»ŃŃŃ Ń ĐżĐŸĐŒĐŸŃŃŃ ĐœĐžĐ¶Đ”ŃаŃĐżĐŸĐ»ĐŸĐ¶Đ”ĐœĐœĐŸĐč "
-"ĐŸĐżŃОО «ĐĐłĐœĐŸŃĐžŃĐŸĐČаŃŃ ĐœĐ”Đ±ĐŸĐ»ŃŃОД ĐżŃĐŸĐ±Đ”Đ»Ń».\n"
-"ĐĐŸŃŃŃĐżĐœŃĐ” ŃĐ”Đ¶ĐžĐŒŃ:\n"
-"1. ĐДзЎД (Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžĐ” ĐżŃĐŸĐ±Đ”Đ»ĐŸĐČ ĐżŃĐžĐŒĐ”ĐœŃĐ”ŃŃŃ ĐœĐ° ĐČĐ”ŃŃ
ĐœĐžŃ
, ĐœĐžĐ¶ĐœĐžŃ
Đž ĐČĐœŃŃŃĐ”ĐœĐœĐžŃ
"
-"ŃĐżĐ»ĐŸŃĐœŃŃ
ĐżĐŸĐČĐ”ŃŃ
ĐœĐŸŃŃŃŃ
)\n"
-"2. ĐĐ”ŃŃ
ĐœŃŃ Đž ĐœĐžĐ¶ĐœŃŃ ĐżĐŸĐČĐ”ŃŃ
ĐœĐŸŃŃĐž (Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžĐ” ĐżŃĐŸĐ±Đ”Đ»ĐŸĐČ ĐżŃĐžĐŒĐ”ĐœŃĐ”ŃŃŃ ŃĐŸĐ»ŃĐșĐŸ Đș "
-"ĐČĐ”ŃŃ
ĐœĐ”Đč Đž ĐœĐžĐ¶ĐœĐ”Đč ĐżĐŸĐČĐ”ŃŃ
ĐœĐŸŃŃŃĐŒ)\n"
-"3. ĐОгЎД (Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžĐ” ĐżŃĐŸĐ±Đ”Đ»ĐŸĐČ ĐŸŃĐșĐ»ŃŃĐ”ĐœĐŸ)\n"
msgid "Everywhere"
msgstr "ĐДзЎД"
@@ -9984,12 +10044,11 @@ msgstr "ĐĐŸŃŃŃĐžŃĐžĐ”ĐœŃ ĐżĐŸĐŽĐ°ŃĐž плаŃŃĐžĐșа ĐżŃĐž пДŃаŃĐž
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"ĐаŃĐ°ĐŒĐ”ŃŃ Đ·Đ°ĐŽĐ°ŃŃ ĐșĐŸĐ»ĐžŃĐ”ŃŃĐČĐŸ плаŃŃĐžĐșа, заŃŃаŃĐžĐČĐ°Đ”ĐŒĐŸĐ” ĐŽĐ»Ń ĐżĐŸŃŃŃĐŸĐ”ĐœĐžŃ ĐŒĐŸŃŃĐŸĐČ. Đ "
-"Đ±ĐŸĐ»ŃŃĐžĐœŃŃĐČĐ” ŃĐ»ŃŃаДĐČ ĐœĐ°ŃŃŃĐŸĐ”Đș ĐżĐŸ ŃĐŒĐŸĐ»ŃĐ°ĐœĐžŃ ĐŽĐŸŃŃаŃĐŸŃĐœĐŸ, ŃĐ”ĐŒ ĐœĐ” ĐŒĐ”ĐœĐ”Đ”, ĐżŃĐž "
-"пДŃаŃĐž ĐœĐ”ĐșĐŸŃĐŸŃŃŃ
ĐŒĐŸĐŽĐ”Đ»Đ”Đč ŃĐŒĐ”ĐœŃŃĐ”ĐœĐžĐ” паŃĐ°ĐŒĐ”ŃŃа ĐŒĐŸĐ¶Đ”Ń ŃĐŸĐșŃаŃĐžŃŃ ĐżŃĐŸĐČĐžŃĐ°ĐœĐžĐ” "
-"плаŃŃĐžĐșа ĐżŃĐž пДŃаŃĐž ĐŒĐŸŃŃĐŸĐČ."
msgid "Internal bridge flow ratio"
msgstr "ĐĐŸŃĐŸĐș ĐČĐœŃŃŃĐ”ĐœĐœĐ”ĐłĐŸ ĐŒĐŸŃŃа"
@@ -9997,31 +10056,33 @@ msgstr "ĐĐŸŃĐŸĐș ĐČĐœŃŃŃĐ”ĐœĐœĐ”ĐłĐŸ ĐŒĐŸŃŃа"
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
-"ĐŃĐŸ Đ·ĐœĐ°ŃĐ”ĐœĐžĐ” ĐŸĐżŃДЎДлŃĐ”Ń ŃĐŸĐ»ŃĐžĐœŃ ŃĐ»ĐŸŃ ĐČĐœŃŃŃĐ”ĐœĐœĐ”ĐłĐŸ ĐŒĐŸŃŃа, пДŃаŃĐ°Đ”ĐŒĐŸĐłĐŸ ĐżĐŸĐČĐ”ŃŃ
"
-"ŃазŃĐ”Đ¶Đ”ĐœĐœĐŸĐłĐŸ Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžŃ. ĐĐ”ĐŒĐœĐŸĐłĐŸ ŃĐŒĐ”ĐœŃŃĐžŃĐ” ŃŃĐŸ Đ·ĐœĐ°ŃĐ”ĐœĐžĐ” (ĐœĐ°ĐżŃĐžĐŒĐ”Ń 0,9), "
-"ŃŃĐŸĐ±Ń ŃĐ»ŃŃŃĐžŃŃ ĐșаŃĐ”ŃŃĐČĐŸ ĐżĐŸĐČĐ”ŃŃ
ĐœĐŸŃŃĐž пДŃаŃĐ°Đ”ĐŒĐŸĐč ĐżĐŸĐČĐ”ŃŃ
ŃазŃĐ”Đ¶Đ”ĐœĐœĐŸĐłĐŸ "
-"Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžŃ."
msgid "Top surface flow ratio"
msgstr "ĐĐŸŃŃŃĐžŃĐžĐ”ĐœŃ ĐżĐŸŃĐŸĐșа ĐœĐ° ĐČĐ”ŃŃ
ĐœĐ”Đč ĐżĐŸĐČĐ”ŃŃ
ĐœĐŸŃŃĐž"
msgid ""
"This factor affects the amount of material for top solid infill. You can "
-"decrease it slightly to have smooth surface finish"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"ĐŃĐŸŃ ĐżĐ°ŃĐ°ĐŒĐ”ŃŃ Đ·Đ°ĐŽĐ°ŃŃ ĐșĐŸĐ»ĐžŃĐ”ŃŃĐČĐŸ ĐČŃЎаĐČлОĐČĐ°Đ”ĐŒĐŸĐłĐŸ ĐŒĐ°ŃĐ”ŃОала ĐŽĐ»Ń ĐČĐ”ŃŃ
ĐœĐ”ĐłĐŸ "
-"ŃĐżĐ»ĐŸŃĐœĐŸĐłĐŸ ŃĐ»ĐŸŃ Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžŃ. ĐŃ ĐŒĐŸĐ¶Đ”ŃĐ” ĐœĐ”ĐŒĐœĐŸĐłĐŸ ŃĐŒĐ”ĐœŃŃĐžŃŃ Đ”ĐłĐŸ, ŃŃĐŸĐ±Ń ĐżĐŸĐ»ŃŃĐžŃŃ "
-"Đ±ĐŸĐ»Đ”Đ” глаЎĐșŃŃ ĐżĐŸĐČĐ”ŃŃ
ĐœĐŸŃŃŃ."
msgid "Bottom surface flow ratio"
msgstr "ĐĐŸŃŃŃĐžŃĐžĐ”ĐœŃ ĐżĐŸŃĐŸĐșа ĐœĐ° ĐœĐžĐ¶ĐœĐ”Đč ĐżĐŸĐČĐ”ŃŃ
ĐœĐŸŃŃĐž"
-msgid "This factor affects the amount of material for bottom solid infill"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"ĐŃĐŸŃ ĐżĐ°ŃĐ°ĐŒĐ”ŃŃ Đ·Đ°ĐŽĐ°ŃŃ ĐșĐŸĐ»ĐžŃĐ”ŃŃĐČĐŸ ĐČŃЎаĐČлОĐČĐ°Đ”ĐŒĐŸĐłĐŸ ĐŒĐ°ŃĐ”ŃОала ĐŽĐ»Ń ĐœĐžĐ¶ĐœĐ”ĐłĐŸ "
-"ŃĐżĐ»ĐŸŃĐœĐŸĐłĐŸ ŃĐ»ĐŸŃ Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžŃ."
msgid "Precise wall"
msgstr "ĐąĐŸŃĐœŃĐ” пДŃĐžĐŒĐ”ŃŃŃ"
@@ -10198,12 +10259,26 @@ msgstr "ĐĐșĐ»ŃŃĐ”ĐœĐžĐ” ĐŽĐžĐœĐ°ĐŒĐžŃĐ”ŃĐșĐŸĐłĐŸ ŃĐżŃаĐČĐ»Đ”ĐœĐžŃ ŃĐș
msgid "Slow down for curled perimeters"
msgstr "ĐĐ°ĐŒĐ”ĐŽĐ»ŃŃŃŃŃ ĐœĐ° ĐžĐ·ĐŸĐłĐœŃŃŃŃ
пДŃĐžĐŒĐ”ŃŃаŃ
"
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
msgstr ""
-"ĐĐșĐ»ŃŃĐžŃĐ” ŃŃŃ ĐŸĐżŃĐžŃ ĐŽĐ»Ń Đ·Đ°ĐŒĐ”ĐŽĐ»Đ”ĐœĐžŃ ĐżĐ”ŃаŃĐž ĐČ ŃĐ”Ń
ĐŸĐ±Đ»Đ°ŃŃŃŃ
, гЎД ĐżĐŸŃĐ”ĐœŃОалŃĐœĐŸ "
-"ĐŒĐŸĐłŃŃ ĐČĐŸĐ·ĐœĐžĐșаŃŃ ĐžĐ·ĐŸĐłĐœŃŃŃĐ” пДŃĐžĐŒĐ”ŃŃŃ."
msgid "mm/s or %"
msgstr "ĐŒĐŒ/Ń ĐžĐ»Đž %"
@@ -10211,8 +10286,14 @@ msgstr "ĐŒĐŒ/Ń ĐžĐ»Đž %"
msgid "External"
msgstr "ĐĐœĐ”ŃĐœĐžĐ”"
-msgid "Speed of bridge and completely overhang wall"
-msgstr "ĐĄĐșĐŸŃĐŸŃŃŃ ĐżĐ”ŃаŃĐž ĐŒĐŸŃŃĐŸĐČ Đž пДŃĐžĐŒĐ”ŃŃĐŸĐČ Ń ĐżĐŸĐ»ĐœŃĐŒ ĐœĐ°ĐČĐžŃĐ°ĐœĐžĐ”ĐŒ."
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "ĐŒĐŒ/Ń"
@@ -10221,12 +10302,9 @@ msgid "Internal"
msgstr "ĐĐœŃŃŃĐ”ĐœĐœĐžĐ”"
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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
-"ĐĄĐșĐŸŃĐŸŃŃŃ ĐżĐ”ŃаŃĐž ĐČĐœŃŃŃĐ”ĐœĐœĐ”ĐłĐŸ ĐŒĐŸŃŃа. ĐŃлО Đ·Đ°ĐŽĐ°ĐœĐŸ ĐČ ĐżŃĐŸŃĐ”ĐœŃаŃ
, ŃĐŸ Đ·ĐœĐ°ŃĐ”ĐœĐžĐ” "
-"ĐČŃŃĐžŃĐ»ŃŃŃŃŃ ĐŸŃĐœĐŸŃĐžŃДлŃĐœĐŸ ŃĐșĐŸŃĐŸŃŃĐž ĐČĐœĐ”ŃĐœĐ”ĐłĐŸ ĐŒĐŸŃŃа (bridge_speed). ĐĐœĐ°ŃĐ”ĐœĐžĐ” ĐżĐŸ "
-"ŃĐŒĐŸĐ»ŃĐ°ĐœĐžŃ ŃаĐČĐœĐŸ 150%."
msgid "Brim width"
msgstr "КОŃĐžĐœĐ° ĐșаĐčĐŒŃ"
@@ -10876,6 +10954,17 @@ msgstr ""
"ĐŃĐž ĐœĐ”Đ±ĐŸĐ»ŃŃĐŸĐŒ пДŃДлОĐČĐ” ОлО ĐœĐ”ĐŽĐŸĐ»ĐžĐČĐ” ĐœĐ° ĐżĐŸĐČĐ”ŃŃ
ĐœĐŸŃŃĐž, ĐșĐŸŃŃĐ”ĐșŃĐžŃĐŸĐČĐșа ŃŃĐŸĐłĐŸ "
"паŃĐ°ĐŒĐ”ŃŃа ĐżĐŸĐŒĐŸĐ¶Đ”Ń ĐżĐŸĐ»ŃŃĐžŃŃ Ń
ĐŸŃĐŸŃŃŃ ĐłĐ»Đ°ĐŽĐșŃŃ ĐżĐŸĐČĐ”ŃŃ
ĐœĐŸŃŃŃ."
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "ĐĐșĐ»ŃŃĐžŃŃ Pressure advance"
@@ -11067,16 +11156,29 @@ msgstr "ĐŒĐŒÂł/Ń"
msgid "Filament load time"
msgstr "ĐŃĐ”ĐŒŃ Đ·Đ°ĐłŃŃĐ·ĐșĐž ĐżŃŃŃĐșа"
-msgid "Time to load new filament when switch filament. For statistics only"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
msgstr ""
-"ĐŃĐ”ĐŒŃ Đ·Đ°ĐłŃŃĐ·ĐșĐž ĐœĐŸĐČĐŸĐč плаŃŃĐžĐșĐŸĐČĐŸĐč ĐœĐžŃĐž ĐżŃĐž Đ”Ń ŃĐŒĐ”ĐœĐ”. ĐąĐŸĐ»ŃĐșĐŸ ĐŽĐ»Ń ŃŃаŃĐžŃŃĐžĐșĐž."
msgid "Filament unload time"
msgstr "ĐŃĐ”ĐŒŃ ĐČŃĐłŃŃĐ·ĐșĐž ĐżŃŃŃĐșа"
-msgid "Time to unload old filament when switch filament. For statistics only"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
msgstr ""
-"ĐŃĐ”ĐŒŃ ĐČŃĐłŃŃĐ·ĐșĐž ŃŃаŃĐŸĐč плаŃŃĐžĐșĐŸĐČĐŸĐč ĐœĐžŃĐž ĐżŃĐž Đ”Ń ŃĐŒĐ”ĐœĐ”. ĐąĐŸĐ»ŃĐșĐŸ ĐŽĐ»Ń ŃŃаŃĐžŃŃĐžĐșĐž."
msgid ""
"Filament diameter is used to calculate extrusion in gcode, so it's important "
@@ -11212,16 +11314,6 @@ msgstr "ĐĄĐșĐŸŃĐŸŃŃŃ ĐżĐŸŃĐ»Đ”ĐŽĐœĐ”ĐłĐŸ ĐŸŃ
лажЎаŃŃĐ”ĐłĐŸ ĐŽĐČОж
msgid "Cooling moves are gradually accelerating towards this speed."
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 "ĐаŃĐ°ĐŒĐ”ŃŃŃ ŃŃĐŒĐŒĐžĐœĐłĐ°"
@@ -11232,16 +11324,6 @@ 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 "ĐĐșĐ»ŃŃĐžŃŃ ŃŃĐŒĐŒĐžĐœĐł ĐŽĐ»Ń ĐŒŃĐ»ŃŃĐžĐžĐœŃŃŃŃĐŒĐ”ĐœŃалŃĐœŃŃ
ŃŃŃŃĐŸĐčŃŃĐČ"
@@ -11460,8 +11542,8 @@ msgstr ""
"ĐŽĐČĐ” блОжаĐčŃОД Đ»ĐžĐœĐžĐž Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžŃ Ń ĐșĐŸŃĐŸŃĐșĐžĐŒ ĐŸŃŃДзĐșĐŸĐŒ пДŃĐžĐŒĐ”ŃŃа. ĐŃлО ĐœĐ” "
"ĐœĐ°ĐčĐŽĐ”ĐœĐŸ ŃаĐșĐŸĐłĐŸ ĐŸŃŃДзĐșа пДŃĐžĐŒĐ”ŃŃа ĐșĐŸŃĐŸŃĐ” ŃŃĐŸĐłĐŸ паŃĐ°ĐŒĐ”ŃŃа, Đ»ĐžĐœĐžŃ Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžŃ "
"ŃĐŸĐ”ĐŽĐžĐœŃĐ”ŃŃŃ Ń ĐŸŃŃДзĐșĐŸĐŒ пДŃĐžĐŒĐ”ŃŃа ŃĐŸĐ»ŃĐșĐŸ Ń ĐŸĐŽĐœĐŸĐč ŃŃĐŸŃĐŸĐœŃ, а ĐŽĐ»ĐžĐœĐ° ĐŸŃŃДзĐșа "
-"пДŃĐžĐŒĐ”ŃŃа ĐŸĐłŃĐ°ĐœĐžŃĐ”ĐœĐ° Đ·ĐœĐ°ŃĐ”ĐœĐžĐ”ĐŒ «ĐĐ»ĐžĐœĐ° ĐżŃĐžĐČŃĐ·ĐŸĐș ŃазŃĐ”Đ¶Đ”ĐœĐœĐŸĐłĐŸ "
-"Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžŃ» (infill_anchor), ĐœĐŸ ĐœĐ” Đ±ĐŸĐ»ŃŃĐ” ŃŃĐŸĐłĐŸ паŃĐ°ĐŒĐ”ŃŃа.\n"
+"пДŃĐžĐŒĐ”ŃŃа ĐŸĐłŃĐ°ĐœĐžŃĐ”ĐœĐ° Đ·ĐœĐ°ŃĐ”ĐœĐžĐ”ĐŒ «ĐĐ»ĐžĐœĐ° ĐżŃĐžĐČŃĐ·ĐŸĐș ŃазŃĐ”Đ¶Đ”ĐœĐœĐŸĐłĐŸ Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžŃ» "
+"(infill_anchor), ĐœĐŸ ĐœĐ” Đ±ĐŸĐ»ŃŃĐ” ŃŃĐŸĐłĐŸ паŃĐ°ĐŒĐ”ŃŃа.\n"
"ĐŃлО ŃŃŃĐ°ĐœĐŸĐČĐžŃŃ 0, ŃĐŸ бŃĐŽĐ”Ń ĐžŃĐżĐŸĐ»ŃĐ·ĐŸĐČаŃŃŃŃ ŃŃаŃŃĐč Đ°Đ»ĐłĐŸŃĐžŃĐŒ ĐŽĐ»Ń ŃĐŸĐ”ĐŽĐžĐœĐ”ĐœĐžŃ "
"Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžŃ, ĐșĐŸŃĐŸŃŃĐč ЎаŃŃ ŃаĐșĐŸĐč жД ŃДзŃĐ»ŃŃаŃ, ĐșаĐș Đž ĐżŃĐž Đ·ĐœĐ°ŃĐ”ĐœĐžŃŃ
1000 Đž 0."
@@ -11616,17 +11698,17 @@ msgstr "ĐĐŸĐ»ĐœĐ°Ń ŃĐșĐŸŃĐŸŃŃŃ ĐČĐ”ĐœŃОлŃŃĐŸŃа ĐœĐ° ŃĐ»ĐŸĐ”"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
-"\". \"full_fan_speed_layer\" will be ignored if lower than "
-"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
-"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer "
+"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
+"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
+"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"ĐĄĐșĐŸŃĐŸŃŃŃ ĐČĐ”ĐœŃОлŃŃĐŸŃа бŃĐŽĐ”Ń ĐœĐ°ŃаŃŃаŃŃ Đ»ĐžĐœĐ”ĐčĐœĐŸ ĐŸŃ ĐœŃĐ»Ń ĐœĐ° ŃĐ»ĐŸĐ” "
-"\"close_fan_the_first_x_layers\" ĐŽĐŸ ĐŒĐ°ĐșŃĐžĐŒŃĐŒĐ° ĐœĐ° ŃĐ»ĐŸĐ” \"full_fan_speed_layer"
-"\". ĐĐœĐ°ŃĐ”ĐœĐžĐ” \"full_fan_speed_layer\" бŃĐŽĐ”Ń ĐžĐłĐœĐŸŃĐžŃĐŸĐČаŃŃŃŃ, Đ”ŃлО ĐŸĐœĐŸ ĐŒĐ”ĐœŃŃĐ” "
-"Đ·ĐœĐ°ŃĐ”ĐœĐžŃ \"close_fan_the_first_x_layers\", ĐČ ŃŃĐŸĐŒ ŃĐ»ŃŃаД ĐČĐ”ĐœŃОлŃŃĐŸŃ Đ±ŃĐŽĐ”Ń "
-"ŃĐ°Đ±ĐŸŃаŃŃ ĐœĐ° ĐŒĐ°ĐșŃĐžĐŒĐ°Đ»ŃĐœĐŸ ĐŽĐŸĐżŃŃŃĐžĐŒĐŸĐč ŃĐșĐŸŃĐŸŃŃĐž ĐœĐ° ŃĐ»ĐŸĐ” "
-"\"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" ĐŽĐŸ ĐŒĐ°ĐșŃĐžĐŒŃĐŒĐ° ĐœĐ° ŃĐ»ĐŸĐ” "
+"\"full_fan_speed_layer\". ĐĐœĐ°ŃĐ”ĐœĐžĐ” \"full_fan_speed_layer\" бŃĐŽĐ”Ń "
+"ĐžĐłĐœĐŸŃĐžŃĐŸĐČаŃŃŃŃ, Đ”ŃлО ĐŸĐœĐŸ ĐŒĐ”ĐœŃŃĐ” Đ·ĐœĐ°ŃĐ”ĐœĐžŃ \"close_fan_the_first_x_layers\", ĐČ "
+"ŃŃĐŸĐŒ ŃĐ»ŃŃаД ĐČĐ”ĐœŃОлŃŃĐŸŃ Đ±ŃĐŽĐ”Ń ŃĐ°Đ±ĐŸŃаŃŃ ĐœĐ° ĐŒĐ°ĐșŃĐžĐŒĐ°Đ»ŃĐœĐŸ ĐŽĐŸĐżŃŃŃĐžĐŒĐŸĐč ŃĐșĐŸŃĐŸŃŃĐž ĐœĐ° "
+"ŃĐ»ĐŸĐ” \"close_fan_the_first_x_layers\" + 1."
msgid "layer"
msgstr "ŃĐ»ĐŸĐč"
@@ -11694,8 +11776,11 @@ msgstr "ĐĐłĐœĐŸŃĐžŃĐŸĐČаŃŃ ĐœĐ”Đ±ĐŸĐ»ŃŃОД ĐżŃĐŸĐ±Đ”Đ»Ń"
msgid "Layers and Perimeters"
msgstr "ĐĄĐ»ĐŸĐž Đž пДŃĐžĐŒĐ”ŃŃŃ"
-msgid "Filter out gaps smaller than the threshold specified"
-msgstr "ĐĐ”Đ±ĐŸĐ»ŃŃОД ĐżŃĐŸĐŒĐ”Đ¶ŃŃĐșĐž ĐŒĐ”ĐœŃŃĐ” ŃĐșĐ°Đ·Đ°ĐœĐœĐŸĐłĐŸ ĐżĐŸŃĐŸĐłĐ° ĐœĐ” бŃĐŽŃŃ Đ·Đ°ĐżĐŸĐ»ĐœŃŃŃŃŃ."
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
+msgstr ""
msgid ""
"Speed of gap infill. Gap usually has irregular line width and should be "
@@ -13865,34 +13950,40 @@ msgid "Activate temperature control"
msgstr "ĐĐșĐ». ĐșĐŸĐœŃŃĐŸĐ»Ń ŃĐ”ĐŒĐżĐ”ŃаŃŃŃŃ"
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)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
-"ĐĐ»Ń ĐșĐŸĐœŃŃĐŸĐ»Ń ŃĐ”ĐŒĐżĐ”ŃаŃŃŃŃ ĐČ ĐșĐ°ĐŒĐ”ŃĐ” ĐżŃĐžĐœŃĐ”Ńа ĐČĐșĐ»ŃŃĐžŃĐ” ŃŃŃ ĐŸĐżŃĐžŃ. ĐĐŸĐŒĐ°ĐœĐŽĐ° M191 "
-"бŃĐŽĐ”Ń ĐŽĐŸĐ±Đ°ĐČĐ»Đ”ĐœĐ° пДŃДЎ ŃŃаŃŃĐŸĐČŃĐč G-ĐșĐŸĐŽĐŸĐŒ ĐżŃĐžĐœŃĐ”Ńа (machine_start_gcode).\n"
-"G-ĐșĐŸĐŽ ĐșĐŸĐŒĐ°ĐœĐŽĐ°: M141/M191 S(0-255)"
msgid "Chamber temperature"
msgstr "ĐąĐ”ĐŒĐżĐ”ŃаŃŃŃа ŃĐ”ŃĐŒĐŸĐșĐ°ĐŒĐ”ŃŃ"
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
msgstr ""
-"ĐĐŸĐ»Đ”Đ” ĐČŃŃĐŸĐșĐ°Ń ŃĐ”ĐŒĐżĐ”ŃаŃŃŃа ĐČ ĐșĐ°ĐŒĐ”ŃĐ” ĐŒĐŸĐ¶Đ”Ń ĐżĐŸĐŒĐŸŃŃ ŃĐŒĐ”ĐœŃŃĐžŃŃ ĐžĐ»Đž ЎажД ĐžŃĐșĐ»ŃŃĐžŃŃ "
-"ĐșĐŸŃĐŸĐ±Đ»Đ”ĐœĐžĐ” ĐŒĐ°ŃĐ”ŃОала. йаĐș жД ŃŃĐŸ ŃĐ»ŃŃŃĐ°Đ”Ń ĐŒĐ”Đ¶ŃĐ»ĐŸĐčĐœĐŸĐ” ŃĐŸĐ”ĐŽĐžĐœĐ”ĐœĐžŃ Ń "
-"ĐČŃŃĐŸĐșĐŸŃĐ”ĐŒĐżĐ”ŃаŃŃŃĐœŃŃ
ĐŒĐ°ŃĐ”ŃĐžĐ°Đ»ĐŸĐČ, ŃаĐșĐžŃ
ĐșаĐș ABS, ASA, PC, PA Đž Ń.ĐŽ. (ĐČ ŃĐŸ жД "
-"ĐČŃĐ”ĐŒŃ ŃОлŃŃŃаŃĐžŃ ĐČĐŸĐ·ĐŽŃŃ
а ĐżŃĐž пДŃаŃĐž ABS Đž ASA ŃĐŽĐ”Đ»Đ°Đ”Ń Đ”Ń Ń
ŃжД). ĐĐ»Ń "
-"ĐœĐžĐ·ĐșĐŸŃĐ”ĐŒĐżĐ”ŃаŃŃŃĐœŃŃ
ĐŒĐ°ŃĐ”ŃĐžĐ°Đ»ĐŸĐČ, ŃаĐșĐžŃ
ĐșаĐș PLA, PETG, TPU, PVA Đž Ń. ĐŽ., "
-"ŃаĐșŃĐžŃĐ”ŃĐșĐ°Ń ŃĐ”ĐŒĐżĐ”ŃаŃŃŃа ĐČ ĐșĐ°ĐŒĐ”ŃĐ” ĐœĐ” ĐŽĐŸĐ»Đ¶ĐœĐ° бŃŃŃ ŃлОŃĐșĐŸĐŒ ĐČŃŃĐŸĐșĐŸĐč, ŃŃĐŸĐ±Ń "
-"ОзбДжаŃŃ Đ·Đ°ŃĐŸŃĐ”ĐœĐžŃ ŃĐŸĐżĐ»Đ°, ĐżĐŸŃŃĐŸĐŒŃ ĐœĐ°ŃŃĐŸŃŃДлŃĐœĐŸ ŃĐ”ĐșĐŸĐŒĐ”ĐœĐŽŃĐ”ŃŃŃ ŃŃŃĐ°ĐœĐŸĐČĐžŃŃ "
-"ŃĐ”ĐŒĐżĐ”ŃаŃŃŃŃ ĐČ ĐșĐ°ĐŒĐ”ŃĐ” ŃаĐČĐœĐŸĐč 0°C."
msgid "Nozzle temperature for layers after the initial one"
msgstr "ĐąĐ”ĐŒĐżĐ”ŃаŃŃŃа ŃĐŸĐżĐ»Đ° ĐżŃĐž пДŃаŃĐž ĐŽĐ»Ń ŃĐ»ĐŸŃĐČ ĐżĐŸŃлД пДŃĐČĐŸĐłĐŸ."
@@ -15878,8 +15969,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"
@@ -17198,53 +17289,138 @@ msgstr ""
"ABS, ĐżĐŸĐČŃŃĐ”ĐœĐžĐ” ŃĐ”ĐŒĐżĐ”ŃаŃŃŃŃ ĐżĐŸĐŽĐŸĐłŃĐ”ĐČĐ°Đ”ĐŒĐŸĐłĐŸ ŃŃĐŸĐ»Đ° ĐŒĐŸĐ¶Đ”Ń ŃĐœĐžĐ·ĐžŃŃ ŃŃŃ "
"ĐČĐ”ŃĐŸŃŃĐœĐŸŃŃŃ?"
-#~ msgid "up to"
-#~ msgstr "ĐŽĐŸ"
+#~ 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"
+#~ "3. Nowhere: Disables gap fill\n"
+#~ msgstr ""
+#~ "ĐĐșĐ»ŃŃĐ°Đ”Ń Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžĐ” ĐżŃĐŸĐ±Đ”Đ»ĐŸĐČ ĐŽĐ»Ń ĐČŃбŃĐ°ĐœĐœŃŃ
ĐżĐŸĐČĐ”ŃŃ
ĐœĐŸŃŃĐ”Đč. ĐĐžĐœĐžĐŒĐ°Đ»ŃĐœĐŸĐč "
+#~ "ĐŽĐ»ĐžĐœĐŸĐč ĐżŃĐŸĐ±Đ”Đ»Đ°, ĐșĐŸŃĐŸŃŃĐč бŃĐŽĐ”Ń Đ·Đ°ĐżĐŸĐ»ĐœĐ”Đœ, ĐŒĐŸĐ¶ĐœĐŸ ŃĐżŃаĐČĐ»ŃŃŃ Ń ĐżĐŸĐŒĐŸŃŃŃ "
+#~ "ĐœĐžĐ¶Đ”ŃаŃĐżĐŸĐ»ĐŸĐ¶Đ”ĐœĐœĐŸĐč ĐŸĐżŃОО «ĐĐłĐœĐŸŃĐžŃĐŸĐČаŃŃ ĐœĐ”Đ±ĐŸĐ»ŃŃОД ĐżŃĐŸĐ±Đ”Đ»Ń».\n"
+#~ "ĐĐŸŃŃŃĐżĐœŃĐ” ŃĐ”Đ¶ĐžĐŒŃ:\n"
+#~ "1. ĐДзЎД (Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžĐ” ĐżŃĐŸĐ±Đ”Đ»ĐŸĐČ ĐżŃĐžĐŒĐ”ĐœŃĐ”ŃŃŃ ĐœĐ° ĐČĐ”ŃŃ
ĐœĐžŃ
, ĐœĐžĐ¶ĐœĐžŃ
Đž ĐČĐœŃŃŃĐ”ĐœĐœĐžŃ
"
+#~ "ŃĐżĐ»ĐŸŃĐœŃŃ
ĐżĐŸĐČĐ”ŃŃ
ĐœĐŸŃŃŃŃ
)\n"
+#~ "2. ĐĐ”ŃŃ
ĐœŃŃ Đž ĐœĐžĐ¶ĐœŃŃ ĐżĐŸĐČĐ”ŃŃ
ĐœĐŸŃŃĐž (Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžĐ” ĐżŃĐŸĐ±Đ”Đ»ĐŸĐČ ĐżŃĐžĐŒĐ”ĐœŃĐ”ŃŃŃ ŃĐŸĐ»ŃĐșĐŸ Đș "
+#~ "ĐČĐ”ŃŃ
ĐœĐ”Đč Đž ĐœĐžĐ¶ĐœĐ”Đč ĐżĐŸĐČĐ”ŃŃ
ĐœĐŸŃŃŃĐŒ)\n"
+#~ "3. ĐОгЎД (Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžĐ” ĐżŃĐŸĐ±Đ”Đ»ĐŸĐČ ĐŸŃĐșĐ»ŃŃĐ”ĐœĐŸ)\n"
-#~ msgid "above"
-#~ msgstr "ĐżĐŸŃлД"
+#~ msgid ""
+#~ "Decrease this value slightly(for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag"
+#~ msgstr ""
+#~ "ĐаŃĐ°ĐŒĐ”ŃŃ Đ·Đ°ĐŽĐ°ŃŃ ĐșĐŸĐ»ĐžŃĐ”ŃŃĐČĐŸ плаŃŃĐžĐșа, заŃŃаŃĐžĐČĐ°Đ”ĐŒĐŸĐ” ĐŽĐ»Ń ĐżĐŸŃŃŃĐŸĐ”ĐœĐžŃ ĐŒĐŸŃŃĐŸĐČ. "
+#~ "Đ Đ±ĐŸĐ»ŃŃĐžĐœŃŃĐČĐ” ŃĐ»ŃŃаДĐČ ĐœĐ°ŃŃŃĐŸĐ”Đș ĐżĐŸ ŃĐŒĐŸĐ»ŃĐ°ĐœĐžŃ ĐŽĐŸŃŃаŃĐŸŃĐœĐŸ, ŃĐ”ĐŒ ĐœĐ” ĐŒĐ”ĐœĐ”Đ”, ĐżŃĐž "
+#~ "пДŃаŃĐž ĐœĐ”ĐșĐŸŃĐŸŃŃŃ
ĐŒĐŸĐŽĐ”Đ»Đ”Đč ŃĐŒĐ”ĐœŃŃĐ”ĐœĐžĐ” паŃĐ°ĐŒĐ”ŃŃа ĐŒĐŸĐ¶Đ”Ń ŃĐŸĐșŃаŃĐžŃŃ ĐżŃĐŸĐČĐžŃĐ°ĐœĐžĐ” "
+#~ "плаŃŃĐžĐșа ĐżŃĐž пДŃаŃĐž ĐŒĐŸŃŃĐŸĐČ."
-#~ msgid "from"
-#~ msgstr "Ń"
+#~ 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 ""
+#~ "ĐŃĐŸ Đ·ĐœĐ°ŃĐ”ĐœĐžĐ” ĐŸĐżŃДЎДлŃĐ”Ń ŃĐŸĐ»ŃĐžĐœŃ ŃĐ»ĐŸŃ ĐČĐœŃŃŃĐ”ĐœĐœĐ”ĐłĐŸ ĐŒĐŸŃŃа, пДŃаŃĐ°Đ”ĐŒĐŸĐłĐŸ "
+#~ "ĐżĐŸĐČĐ”ŃŃ
ŃазŃĐ”Đ¶Đ”ĐœĐœĐŸĐłĐŸ Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžŃ. ĐĐ”ĐŒĐœĐŸĐłĐŸ ŃĐŒĐ”ĐœŃŃĐžŃĐ” ŃŃĐŸ Đ·ĐœĐ°ŃĐ”ĐœĐžĐ” (ĐœĐ°ĐżŃĐžĐŒĐ”Ń "
+#~ "0,9), ŃŃĐŸĐ±Ń ŃĐ»ŃŃŃĐžŃŃ ĐșаŃĐ”ŃŃĐČĐŸ ĐżĐŸĐČĐ”ŃŃ
ĐœĐŸŃŃĐž пДŃаŃĐ°Đ”ĐŒĐŸĐč ĐżĐŸĐČĐ”ŃŃ
ŃазŃĐ”Đ¶Đ”ĐœĐœĐŸĐłĐŸ "
+#~ "Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžŃ."
-#~ msgid "Switching application language while some presets are modified."
-#~ msgstr "ĐĄĐŒĐ”ĐœĐ° ŃĐ·ŃĐșа ĐżŃĐžĐ»ĐŸĐ¶Đ”ĐœĐžŃ ĐżŃĐž ĐžĐ·ĐŒĐ”ĐœĐ”ĐœĐžĐž ĐœĐ”ĐșĐŸŃĐŸŃŃŃ
ĐżŃĐŸŃОлДĐč."
+#~ msgid ""
+#~ "This factor affects the amount of material for top solid infill. You can "
+#~ "decrease it slightly to have smooth surface finish"
+#~ msgstr ""
+#~ "ĐŃĐŸŃ ĐżĐ°ŃĐ°ĐŒĐ”ŃŃ Đ·Đ°ĐŽĐ°ŃŃ ĐșĐŸĐ»ĐžŃĐ”ŃŃĐČĐŸ ĐČŃЎаĐČлОĐČĐ°Đ”ĐŒĐŸĐłĐŸ ĐŒĐ°ŃĐ”ŃОала ĐŽĐ»Ń ĐČĐ”ŃŃ
ĐœĐ”ĐłĐŸ "
+#~ "ŃĐżĐ»ĐŸŃĐœĐŸĐłĐŸ ŃĐ»ĐŸŃ Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžŃ. ĐŃ ĐŒĐŸĐ¶Đ”ŃĐ” ĐœĐ”ĐŒĐœĐŸĐłĐŸ ŃĐŒĐ”ĐœŃŃĐžŃŃ Đ”ĐłĐŸ, ŃŃĐŸĐ±Ń "
+#~ "ĐżĐŸĐ»ŃŃĐžŃŃ Đ±ĐŸĐ»Đ”Đ” глаЎĐșŃŃ ĐżĐŸĐČĐ”ŃŃ
ĐœĐŸŃŃŃ."
-#~ msgid "â+Shift+G"
-#~ msgstr "â+Shift+G"
+#~ msgid "This factor affects the amount of material for bottom solid infill"
+#~ msgstr ""
+#~ "ĐŃĐŸŃ ĐżĐ°ŃĐ°ĐŒĐ”ŃŃ Đ·Đ°ĐŽĐ°ŃŃ ĐșĐŸĐ»ĐžŃĐ”ŃŃĐČĐŸ ĐČŃЎаĐČлОĐČĐ°Đ”ĐŒĐŸĐłĐŸ ĐŒĐ°ŃĐ”ŃОала ĐŽĐ»Ń ĐœĐžĐ¶ĐœĐ”ĐłĐŸ "
+#~ "ŃĐżĐ»ĐŸŃĐœĐŸĐłĐŸ ŃĐ»ĐŸŃ Đ·Đ°ĐżĐŸĐ»ĐœĐ”ĐœĐžŃ."
-#~ msgid "Ctrl+Shift+G"
-#~ msgstr "Ctrl+Shift+G"
+#~ msgid ""
+#~ "Enable this option to slow printing down in areas where potential curled "
+#~ "perimeters may exist"
+#~ msgstr ""
+#~ "ĐĐșĐ»ŃŃĐžŃĐ” ŃŃŃ ĐŸĐżŃĐžŃ ĐŽĐ»Ń Đ·Đ°ĐŒĐ”ĐŽĐ»Đ”ĐœĐžŃ ĐżĐ”ŃаŃĐž ĐČ ŃĐ”Ń
ĐŸĐ±Đ»Đ°ŃŃŃŃ
, гЎД ĐżĐŸŃĐ”ĐœŃОалŃĐœĐŸ "
+#~ "ĐŒĐŸĐłŃŃ ĐČĐŸĐ·ĐœĐžĐșаŃŃ ĐžĐ·ĐŸĐłĐœŃŃŃĐ” пДŃĐžĐŒĐ”ŃŃŃ."
-#~ msgid "â+Any arrow"
-#~ msgstr "â + ĐŃĐ±Đ°Ń ŃŃŃДлĐșа"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "ĐĄĐșĐŸŃĐŸŃŃŃ ĐżĐ”ŃаŃĐž ĐŒĐŸŃŃĐŸĐČ Đž пДŃĐžĐŒĐ”ŃŃĐŸĐČ Ń ĐżĐŸĐ»ĐœŃĐŒ ĐœĐ°ĐČĐžŃĐ°ĐœĐžĐ”ĐŒ."
-#~ msgid "â„+Left mouse button"
-#~ msgstr "â„ + ĐĐ”ĐČĐ°Ń ĐșĐœĐŸĐżĐșа ĐŒŃŃĐž"
+#~ 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 ""
+#~ "ĐĄĐșĐŸŃĐŸŃŃŃ ĐżĐ”ŃаŃĐž ĐČĐœŃŃŃĐ”ĐœĐœĐ”ĐłĐŸ ĐŒĐŸŃŃа. ĐŃлО Đ·Đ°ĐŽĐ°ĐœĐŸ ĐČ ĐżŃĐŸŃĐ”ĐœŃаŃ
, ŃĐŸ Đ·ĐœĐ°ŃĐ”ĐœĐžĐ” "
+#~ "ĐČŃŃĐžŃĐ»ŃŃŃŃŃ ĐŸŃĐœĐŸŃĐžŃДлŃĐœĐŸ ŃĐșĐŸŃĐŸŃŃĐž ĐČĐœĐ”ŃĐœĐ”ĐłĐŸ ĐŒĐŸŃŃа (bridge_speed). ĐĐœĐ°ŃĐ”ĐœĐžĐ” "
+#~ "ĐżĐŸ ŃĐŒĐŸĐ»ŃĐ°ĐœĐžŃ ŃаĐČĐœĐŸ 150%."
-#~ msgid "â+Left mouse button"
-#~ msgstr "â + ĐĐ”ĐČĐ°Ń ĐșĐœĐŸĐżĐșа ĐŒŃŃĐž"
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "ĐŃĐ”ĐŒŃ Đ·Đ°ĐłŃŃĐ·ĐșĐž ĐœĐŸĐČĐŸĐč плаŃŃĐžĐșĐŸĐČĐŸĐč ĐœĐžŃĐž ĐżŃĐž Đ”Ń ŃĐŒĐ”ĐœĐ”. ĐąĐŸĐ»ŃĐșĐŸ ĐŽĐ»Ń ŃŃаŃĐžŃŃĐžĐșĐž."
-#~ msgid "Ctrl+Any arrow"
-#~ msgstr "Ctrl + ĐŃĐ±Đ°Ń ŃŃŃДлĐșа"
+#~ msgid ""
+#~ "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "ĐŃĐ”ĐŒŃ ĐČŃĐłŃŃĐ·ĐșĐž ŃŃаŃĐŸĐč плаŃŃĐžĐșĐŸĐČĐŸĐč ĐœĐžŃĐž ĐżŃĐž Đ”Ń ŃĐŒĐ”ĐœĐ”. ĐąĐŸĐ»ŃĐșĐŸ ĐŽĐ»Ń "
+#~ "ŃŃаŃĐžŃŃĐžĐșĐž."
-#~ msgid "Alt+Left mouse button"
-#~ msgstr "Alt + ĐĐ”ĐČĐ°Ń ĐșĐœĐŸĐżĐșа ĐŒŃŃĐž"
+#~ 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 "Ctrl+Left mouse button"
-#~ msgstr "Ctrl + ĐĐ”ĐČĐ°Ń ĐșĐœĐŸĐżĐșа ĐŒŃŃĐž"
+#~ 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 "â+Mouse wheel"
-#~ msgstr "â + ĐĐŸĐ»Đ”ŃĐŸ ĐŒŃŃĐž"
+#~ msgid "Filter out gaps smaller than the threshold specified"
+#~ msgstr "ĐĐ”Đ±ĐŸĐ»ŃŃОД ĐżŃĐŸĐŒĐ”Đ¶ŃŃĐșĐž ĐŒĐ”ĐœŃŃĐ” ŃĐșĐ°Đ·Đ°ĐœĐœĐŸĐłĐŸ ĐżĐŸŃĐŸĐłĐ° ĐœĐ” бŃĐŽŃŃ Đ·Đ°ĐżĐŸĐ»ĐœŃŃŃŃŃ."
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„ + ĐĐŸĐ»Đ”ŃĐŸ ĐŒŃŃĐž"
+#~ 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 ""
+#~ "ĐĐ»Ń ĐșĐŸĐœŃŃĐŸĐ»Ń ŃĐ”ĐŒĐżĐ”ŃаŃŃŃŃ ĐČ ĐșĐ°ĐŒĐ”ŃĐ” ĐżŃĐžĐœŃĐ”Ńа ĐČĐșĐ»ŃŃĐžŃĐ” ŃŃŃ ĐŸĐżŃĐžŃ. ĐĐŸĐŒĐ°ĐœĐŽĐ° "
+#~ "M191 бŃĐŽĐ”Ń ĐŽĐŸĐ±Đ°ĐČĐ»Đ”ĐœĐ° пДŃДЎ ŃŃаŃŃĐŸĐČŃĐč G-ĐșĐŸĐŽĐŸĐŒ ĐżŃĐžĐœŃĐ”Ńа "
+#~ "(machine_start_gcode).\n"
+#~ "G-ĐșĐŸĐŽ ĐșĐŸĐŒĐ°ĐœĐŽĐ°: M141/M191 S(0-255)"
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "Ctrl + ĐĐŸĐ»Đ”ŃĐŸ ĐŒŃŃĐž"
-
-#~ msgid "Alt+Mouse wheel"
-#~ msgstr "Alt + ĐĐŸĐ»Đ”ŃĐŸ ĐŒŃŃĐž"
+#~ 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 ""
+#~ "ĐĐŸĐ»Đ”Đ” ĐČŃŃĐŸĐșĐ°Ń ŃĐ”ĐŒĐżĐ”ŃаŃŃŃа ĐČ ĐșĐ°ĐŒĐ”ŃĐ” ĐŒĐŸĐ¶Đ”Ń ĐżĐŸĐŒĐŸŃŃ ŃĐŒĐ”ĐœŃŃĐžŃŃ ĐžĐ»Đž ЎажД "
+#~ "ĐžŃĐșĐ»ŃŃĐžŃŃ ĐșĐŸŃĐŸĐ±Đ»Đ”ĐœĐžĐ” ĐŒĐ°ŃĐ”ŃОала. йаĐș жД ŃŃĐŸ ŃĐ»ŃŃŃĐ°Đ”Ń ĐŒĐ”Đ¶ŃĐ»ĐŸĐčĐœĐŸĐ” ŃĐŸĐ”ĐŽĐžĐœĐ”ĐœĐžŃ "
+#~ "Ń ĐČŃŃĐŸĐșĐŸŃĐ”ĐŒĐżĐ”ŃаŃŃŃĐœŃŃ
ĐŒĐ°ŃĐ”ŃĐžĐ°Đ»ĐŸĐČ, ŃаĐșĐžŃ
ĐșаĐș ABS, ASA, PC, PA Đž Ń.ĐŽ. (ĐČ ŃĐŸ "
+#~ "жД ĐČŃĐ”ĐŒŃ ŃОлŃŃŃаŃĐžŃ ĐČĐŸĐ·ĐŽŃŃ
а ĐżŃĐž пДŃаŃĐž ABS Đž ASA ŃĐŽĐ”Đ»Đ°Đ”Ń Đ”Ń Ń
ŃжД). ĐĐ»Ń "
+#~ "ĐœĐžĐ·ĐșĐŸŃĐ”ĐŒĐżĐ”ŃаŃŃŃĐœŃŃ
ĐŒĐ°ŃĐ”ŃĐžĐ°Đ»ĐŸĐČ, ŃаĐșĐžŃ
ĐșаĐș PLA, PETG, TPU, PVA Đž Ń. ĐŽ., "
+#~ "ŃаĐșŃĐžŃĐ”ŃĐșĐ°Ń ŃĐ”ĐŒĐżĐ”ŃаŃŃŃа ĐČ ĐșĐ°ĐŒĐ”ŃĐ” ĐœĐ” ĐŽĐŸĐ»Đ¶ĐœĐ° бŃŃŃ ŃлОŃĐșĐŸĐŒ ĐČŃŃĐŸĐșĐŸĐč, ŃŃĐŸĐ±Ń "
+#~ "ОзбДжаŃŃ Đ·Đ°ŃĐŸŃĐ”ĐœĐžŃ ŃĐŸĐżĐ»Đ°, ĐżĐŸŃŃĐŸĐŒŃ ĐœĐ°ŃŃĐŸŃŃДлŃĐœĐŸ ŃĐ”ĐșĐŸĐŒĐ”ĐœĐŽŃĐ”ŃŃŃ ŃŃŃĐ°ĐœĐŸĐČĐžŃŃ "
+#~ "ŃĐ”ĐŒĐżĐ”ŃаŃŃŃŃ ĐČ ĐșĐ°ĐŒĐ”ŃĐ” ŃаĐČĐœĐŸĐč 0°C."
#~ msgid ""
#~ "Different nozzle diameters and different filament diameters is not "
diff --git a/localization/i18n/sv/OrcaSlicer_sv.po b/localization/i18n/sv/OrcaSlicer_sv.po
index ee52d153f3..4d30adcc06 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-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -71,6 +71,9 @@ msgstr "Smart fyllningsvinkel"
msgid "On overhangs only"
msgstr "Endast pÄ överhÀng"
+msgid "Auto support threshold angle: "
+msgstr "Automatisk support tröskelsvinkel: "
+
msgid "Circle"
msgstr "Cirkel"
@@ -90,9 +93,6 @@ msgstr "TillĂ„ter mĂ„lning endast pĂ„ fasetter som valts av: â%1%â"
msgid "Highlight faces according to overhang angle."
msgstr "Markera ytor enligt överhÀngs vinkeln."
-msgid "Auto support threshold angle: "
-msgstr "Automatisk support tröskelsvinkel: "
-
msgid "No auto support"
msgstr "Ingen auto support"
@@ -1924,6 +1924,9 @@ msgstr "Förenkla modellen"
msgid "Center"
msgstr "Center"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "Redigera Process InstÀllningar"
@@ -4053,6 +4056,15 @@ msgstr "Total tid"
msgid "Total cost"
msgstr "Total cost"
+msgid "up to"
+msgstr "upp till"
+
+msgid "above"
+msgstr "över"
+
+msgid "from"
+msgstr "frÄn"
+
msgid "Color Scheme"
msgstr "FĂ€rgschema"
@@ -4116,12 +4128,12 @@ msgstr "Filament bytes tider"
msgid "Cost"
msgstr "Kostnad"
-msgid "Print"
-msgstr "Skriv ut"
-
msgid "Color change"
msgstr "FĂ€rg byte"
+msgid "Print"
+msgstr "Skriv ut"
+
msgid "Printer"
msgstr "Skrivare"
@@ -4305,7 +4317,7 @@ msgstr "Volym:"
msgid "Size:"
msgstr "Storlek:"
-#, 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)."
@@ -4744,6 +4756,18 @@ msgstr "Pass 2"
msgid "Flow rate test - Pass 2"
msgstr "Test av flödeshastighet - GodkÀnt 2"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "Flödeshastighet"
@@ -6002,14 +6026,6 @@ msgstr "Ett objekt med multipla delar har upptÀckts"
msgid "The file does not contain any geometry data."
msgstr "Filen innehÄller ingen geometrisk data."
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-
-msgid "Object too large"
-msgstr "Objektet Àr för stort"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
@@ -6017,6 +6033,9 @@ msgstr ""
"Objektet verkar vara för stort, vill du skala ner det sÄ att det passar "
"byggplattan automatiskt?"
+msgid "Object too large"
+msgstr "Objektet Àr för stort"
+
msgid "Export STL file:"
msgstr "Exportera STL-fil:"
@@ -6381,6 +6400,9 @@ msgstr "FortsÀtta?"
msgid "Language selection"
msgstr "SprÄkval"
+msgid "Switching application language while some presets are modified."
+msgstr "Byter sprÄk medans instÀllningarna Àndras."
+
msgid "Changing application language"
msgstr "Byter sprÄk"
@@ -7106,8 +7128,8 @@ msgstr ""
msgid ""
"Timelapse is not supported because Print sequence is set to \"By object\"."
msgstr ""
-"Timelapse stöds inte eftersom utskrifts sekvensen Àr instÀlld pÄ \"Per objekt"
-"\"."
+"Timelapse stöds inte eftersom utskrifts sekvensen Àr instÀlld pÄ \"Per "
+"objekt\"."
msgid "Errors"
msgstr "Fel"
@@ -7479,8 +7501,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add Primitive"
-"\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add "
+"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"NÀr du spelar in timelapse utan verktygshuvud rekommenderas att du lÀgger "
"till ett \"Timelapse Wipe Tower\".\n"
@@ -8326,8 +8348,11 @@ msgstr "Objektlista"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "Importera geometri data frÄn STL/STEP/3MF/OBJ/AMF filer"
-msgid "Shift+G"
-msgstr ""
+msgid "â+Shift+G"
+msgstr "â+Shift+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Ctrl+Skift+G"
msgid "Paste from clipboard"
msgstr "Klistra in ifrÄn urklipp"
@@ -8376,18 +8401,33 @@ msgstr "Shift+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "Dölj/Visa meny"
-msgid "Any arrow"
-msgstr ""
+msgid "â+Any arrow"
+msgstr "â+Valfri pil"
msgid "Movement in camera space"
msgstr "Rörelse i kamera omrÄde"
+msgid "â„+Left mouse button"
+msgstr "â„+VĂ€nster musknapp"
+
msgid "Select a part"
msgstr "VĂ€lj del"
+msgid "â+Left mouse button"
+msgstr "â+VĂ€nster musknapp"
+
msgid "Select multiple objects"
msgstr "VĂ€lj flera objekt"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl+Valfri pil"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt+VĂ€nster musknapp"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl+vÀnster musknapp"
+
msgid "Shift+Left mouse button"
msgstr "Shift+VĂ€nster musknapp"
@@ -8490,12 +8530,24 @@ msgstr "PlÀtering/Förgyllning"
msgid "Move: press to snap by 1mm"
msgstr "Flytta: tryck för att lÄsa med 1mm"
+msgid "â+Mouse wheel"
+msgstr "â+Mushjul"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "Support/FÀrglÀggning: justera penn radie"
+msgid "â„+Mouse wheel"
+msgstr "â„+Mushjul"
+
msgid "Support/Color Painting: adjust section position"
msgstr "Support/FÀrglÀggning:justera sektions positionen"
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl+mushjul"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+Mushjul"
+
msgid "Gizmo"
msgstr "Gizmo"
@@ -9491,14 +9543,31 @@ msgid "Apply gap fill"
msgstr ""
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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
-"only\n"
-"3. Nowhere: Disables gap fill\n"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
+"\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
msgstr ""
msgid "Everywhere"
@@ -9571,10 +9640,11 @@ msgstr "Bridge/Brygg flöde"
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Minska detta vÀrde nÄgot (tex 0.9) för att minska material ÄtgÄng för "
-"bridges/bryggor, detta för att förbÀttra kvaliteten"
msgid "Internal bridge flow ratio"
msgstr ""
@@ -9582,7 +9652,11 @@ msgstr ""
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
msgid "Top surface flow ratio"
@@ -9590,15 +9664,20 @@ 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"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
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 ""
-msgid "This factor affects the amount of material for bottom solid infill"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
msgid "Precise wall"
@@ -9731,9 +9810,25 @@ msgstr ""
msgid "Slow down for curled perimeters"
msgstr ""
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
msgstr ""
msgid "mm/s or %"
@@ -9742,8 +9837,14 @@ msgstr "mm/s eller %."
msgid "External"
msgstr ""
-msgid "Speed of bridge and completely overhang wall"
-msgstr "Hastighet för bridges/bryggor och hela överhÀngs vÀggar"
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "mm/s"
@@ -9752,8 +9853,8 @@ msgid "Internal"
msgstr ""
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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
msgid "Brim width"
@@ -9849,9 +9950,9 @@ msgid ""
"quality for needle and small details"
msgstr ""
"Aktivera detta val för att sÀnka utskifts hastigheten för att göra den sista "
-"lager tiden inte kortare Àn lager tidströskeln \"Max flÀkthastighets tröskel"
-"\", detta sÄ att lager kan kylas under en lÀngre tid. Detta kan förbÀttra "
-"kylnings kvaliteten för smÄ detaljer"
+"lager tiden inte kortare Àn lager tidströskeln \"Max flÀkthastighets "
+"tröskel\", detta sÄ att lager kan kylas under en lÀngre tid. Detta kan "
+"förbÀttra kylnings kvaliteten för smÄ detaljer"
msgid "Normal printing"
msgstr "Normal utskrift"
@@ -10279,6 +10380,17 @@ msgstr ""
"vÀrdet Àr mellan 0.95 och 1.05. Du kan finjustera detta vÀrde för att fÄ en "
"fin flat yta nÀr visst överflöde eller underflöde finns"
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "Aktivera pressure advance"
@@ -10451,17 +10563,29 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "Inmatningstid för filament"
-msgid "Time to load new filament when switch filament. For statistics only"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
msgstr ""
-"Ladda nytt filament vid byte av filament, endast för statistiska ÀndamÄl"
msgid "Filament unload time"
msgstr "Utmatningstid för filament"
-msgid "Time to unload old filament when switch filament. For statistics only"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
msgstr ""
-"Ladda ur gammalt filament vid byte av filament, endast för statistiska "
-"ÀndamÄl"
msgid ""
"Filament diameter is used to calculate extrusion in gcode, so it's important "
@@ -10577,12 +10701,6 @@ msgstr ""
msgid "Cooling moves are gradually accelerating towards this speed."
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 ""
-
msgid "Ramming parameters"
msgstr ""
@@ -10591,12 +10709,6 @@ msgid ""
"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 ""
-
msgid "Enable ramming for multitool setups"
msgstr ""
@@ -10921,10 +11033,10 @@ msgstr "Full flÀkthastighet vid lager"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
-"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
-"\". \"full_fan_speed_layer\" will be ignored if lower than "
-"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
-"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
+"\"close_fan_the_first_x_layers\" to maximum at layer "
+"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
+"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
+"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
msgid "layer"
@@ -10989,7 +11101,10 @@ msgstr "Filtrera bort smÄ luckor"
msgid "Layers and Perimeters"
msgstr "Lager och perimetrar"
-msgid "Filter out gaps smaller than the threshold specified"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
msgstr ""
msgid ""
@@ -12862,29 +12977,40 @@ msgid "Activate temperature control"
msgstr ""
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)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
msgid "Chamber temperature"
msgstr "Kammarens temperatur"
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
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"
@@ -14707,8 +14833,8 @@ msgstr ""
"Vill du skriva om det?"
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you selected"
-"\". \n"
+"We would rename the presets as \"Vendor Type Serial @printer you "
+"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
@@ -15951,53 +16077,49 @@ msgstr ""
"ABS, kan en lÀmplig ökning av vÀrmebÀddens temperatur minska sannolikheten "
"för vridning."
-#~ msgid "up to"
-#~ msgstr "upp till"
+#~ msgid ""
+#~ "Decrease this value slightly(for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag"
+#~ msgstr ""
+#~ "Minska detta vÀrde nÄgot (tex 0.9) för att minska material ÄtgÄng för "
+#~ "bridges/bryggor, detta för att förbÀttra kvaliteten"
-#~ msgid "above"
-#~ msgstr "över"
+#~ 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 "from"
-#~ msgstr "frÄn"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "Hastighet för bridges/bryggor och hela överhÀngs vÀggar"
-#~ msgid "Switching application language while some presets are modified."
-#~ msgstr "Byter sprÄk medans instÀllningarna Àndras."
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Ladda nytt filament vid byte av filament, endast för statistiska ÀndamÄl"
-#~ msgid "â+Shift+G"
-#~ msgstr "â+Shift+G"
+#~ msgid ""
+#~ "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Ladda ur gammalt filament vid byte av filament, endast för statistiska "
+#~ "ÀndamÄl"
-#~ msgid "Ctrl+Shift+G"
-#~ msgstr "Ctrl+Skift+G"
-
-#~ msgid "â+Any arrow"
-#~ msgstr "â+Valfri pil"
-
-#~ msgid "â„+Left mouse button"
-#~ msgstr "â„+VĂ€nster musknapp"
-
-#~ msgid "â+Left mouse button"
-#~ msgstr "â+VĂ€nster musknapp"
-
-#~ msgid "Ctrl+Any arrow"
-#~ msgstr "Ctrl+Valfri pil"
-
-#~ msgid "Alt+Left mouse button"
-#~ msgstr "Alt+VĂ€nster musknapp"
-
-#~ msgid "Ctrl+Left mouse button"
-#~ msgstr "Ctrl+vÀnster musknapp"
-
-#~ msgid "â+Mouse wheel"
-#~ msgstr "â+Mushjul"
-
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„+Mushjul"
-
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "Ctrl+mushjul"
-
-#~ msgid "Alt+Mouse wheel"
-#~ msgstr "Alt+Mushjul"
+#~ 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 ""
+#~ "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 ""
#~ "Different nozzle diameters and different filament diameters is not "
diff --git a/localization/i18n/tr/OrcaSlicer_tr.po b/localization/i18n/tr/OrcaSlicer_tr.po
index 37922c257d..14d4a64384 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-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: 2024-08-04 11:24+0300\n"
"Last-Translator: Olcay ĂREN\n"
"Language-Team: \n"
@@ -74,6 +74,9 @@ msgstr "Akıllı doldurma açısı"
msgid "On overhangs only"
msgstr "Yalnızca çıkıntılarda"
+msgid "Auto support threshold angle: "
+msgstr "Otomatik destek eĆik açısı: "
+
msgid "Circle"
msgstr "Daire"
@@ -94,9 +97,6 @@ msgstr ""
msgid "Highlight faces according to overhang angle."
msgstr "YĂŒzleri çıkıntı açısına göre vurgulayın."
-msgid "Auto support threshold angle: "
-msgstr "Otomatik destek eĆik açısı: "
-
msgid "No auto support"
msgstr "Otomatik destek yok"
@@ -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."
@@ -1013,9 +1013,9 @@ msgid ""
"Can't load exactly same font(\"%1%\"). Application 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"
@@ -1816,16 +1816,16 @@ msgid "Scale an object to fit the build volume"
msgstr "Bir nesneyi yapı hacmine uyacak Ćekilde ölçeklendirin"
msgid "Flush Options"
-msgstr "Hizalama Seçenekleri"
+msgstr "Akıtma Seçenekleri"
msgid "Flush into objects' infill"
-msgstr "Nesnelerin dolgusuna hizalayın"
+msgstr "Nesnelerin dolgusuna akıtın"
msgid "Flush into this object"
-msgstr "Bu nesnenin içine hizala"
+msgstr "Bu nesneye akıt"
msgid "Flush into objects' support"
-msgstr "Nesnelerin desteÄine hizalayın"
+msgstr "Nesnelerin desteÄine akıt"
msgid "Edit in Parameter Table"
msgstr "Parametre tablosunda dĂŒzenle"
@@ -1974,6 +1974,9 @@ msgstr "Modeli basitleĆtir"
msgid "Center"
msgstr "Merkez"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "İĆlem ayarlarını dĂŒzenle"
@@ -2091,8 +2094,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"
@@ -2155,7 +2158,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."
@@ -2512,14 +2516,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"
@@ -2619,7 +2625,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 "
@@ -2675,8 +2682,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."
@@ -2688,8 +2695,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ı."
@@ -2746,8 +2753,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"
@@ -2761,7 +2768,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 ""
@@ -2840,7 +2848,8 @@ msgstr "LĂŒtfen geçerli bir deÄer girin (K %.1f~%.1f içinde)"
#, c-format, boost-format
msgid "Please input a valid value (K in %.1f~%.1f, N in %.1f~%.1f)"
-msgstr "LĂŒtfen geçerli bir deÄer girin (K %.1f~%.1f içinde, N %.1f~%.1f içinde)"
+msgstr ""
+"LĂŒtfen geçerli bir deÄer girin (K %.1f~%.1f içinde, N %.1f~%.1f içinde)"
msgid "Other Color"
msgstr "DiÄer renk"
@@ -2852,9 +2861,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 "
@@ -2989,7 +2998,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"
@@ -3027,8 +3037,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."
@@ -3051,16 +3061,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."
@@ -3074,8 +3085,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"
@@ -3107,8 +3118,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 "
@@ -3196,8 +3207,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 ""
@@ -3430,8 +3441,8 @@ msgid "Send to"
msgstr "Gönderildi"
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."
@@ -3538,8 +3549,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 "
@@ -3576,13 +3587,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"
@@ -3636,16 +3647,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"
@@ -3722,7 +3733,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"
@@ -3855,9 +3867,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) "
@@ -3884,7 +3896,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"
@@ -3909,12 +3922,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."
@@ -4109,6 +4122,15 @@ msgstr "Toplam sĂŒre"
msgid "Total cost"
msgstr "Toplam tutar"
+msgid "up to"
+msgstr "kadar"
+
+msgid "above"
+msgstr "ĂŒstĂŒnde"
+
+msgid "from"
+msgstr "itibaren"
+
msgid "Color Scheme"
msgstr "Renk Ćeması"
@@ -4172,12 +4194,12 @@ msgstr "Filament deÄiĆim sĂŒreleri"
msgid "Cost"
msgstr "Maliyet"
-msgid "Print"
-msgstr "Yazdır"
-
msgid "Color change"
msgstr "Renk deÄiĆimi"
+msgid "Print"
+msgstr "Yazdır"
+
msgid "Printer"
msgstr "Yazıcı"
@@ -4361,7 +4383,7 @@ msgstr "Hacim:"
msgid "Size:"
msgstr "Boyut:"
-#, 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)."
@@ -4803,6 +4825,18 @@ msgstr "GeçiĆ 2"
msgid "Flow rate test - Pass 2"
msgstr "Akıà hızı testi - GeçiĆ 2"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "Akıà hızı"
@@ -4920,8 +4954,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 "
@@ -4970,7 +5004,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."
@@ -4981,7 +5016,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."
@@ -4996,8 +5032,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."
@@ -5140,7 +5176,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"
@@ -5200,8 +5237,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."
@@ -5284,8 +5321,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"
@@ -5881,8 +5918,8 @@ msgstr "Peletler"
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"
@@ -5895,7 +5932,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?"
@@ -5910,13 +5948,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%\"?"
@@ -5941,13 +5979,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 "
@@ -6010,8 +6048,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 "
@@ -6088,16 +6126,6 @@ msgstr "Birden fazla parçaya sahip nesne algılandı"
msgid "The file does not contain any geometry data."
msgstr "Dosya herhangi bir geometri verisi içermiyor."
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-"Nesneniz çok bĂŒyĂŒk görĂŒnĂŒyor. Plakaya otomatik olarak uyacak Ćekilde "
-"kĂŒĂ§ĂŒltĂŒlecektir."
-
-msgid "Object too large"
-msgstr "Nesne çok bĂŒyĂŒk"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
@@ -6105,6 +6133,9 @@ msgstr ""
"Nesneniz çok bĂŒyĂŒk görĂŒnĂŒyor. Plakaya sıÄacak Ćekilde otomatik olarak "
"kĂŒĂ§ĂŒltmek istiyor musunuz?"
+msgid "Object too large"
+msgstr "Nesne çok bĂŒyĂŒk"
+
msgid "Export STL file:"
msgstr "STL dosyasını dıĆa aktar:"
@@ -6252,8 +6283,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."
@@ -6341,15 +6372,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 again."
+"Unable to perform boolean operation on model meshes. Only positive parts "
+"will be kept. You may fix the meshes and try again."
msgstr ""
"Model aÄlarında boole iĆlemi gerçekleĆtirilemiyor. Yalnızca olumlu kısımlar "
"tutulacaktır. Kafesleri dĂŒzeltip tekrar deneyebilirsiniz."
@@ -6463,8 +6494,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 "
@@ -6479,6 +6510,9 @@ msgstr "Devam etmek istiyor musun?"
msgid "Language selection"
msgstr "Dil seçimi"
+msgid "Switching application language while some presets are modified."
+msgstr "Bazı ön ayarlar deÄiĆtirilirken uygulama dilinin deÄiĆtirilmesi."
+
msgid "Changing application language"
msgstr "Dil deÄiĆtiriliyor"
@@ -6564,8 +6598,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 "
@@ -6573,8 +6607,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 "
@@ -6666,11 +6701,12 @@ 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."
@@ -6750,8 +6786,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"
@@ -7108,7 +7144,8 @@ msgid "Error code"
msgstr "Hata kodu"
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"
@@ -7176,7 +7213,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."
@@ -7237,8 +7275,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 "
@@ -7270,7 +7308,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."
@@ -7421,11 +7460,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. "
@@ -7476,16 +7515,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 "
@@ -7514,11 +7553,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 ""
@@ -7557,8 +7596,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"
@@ -7572,8 +7611,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 "
@@ -7595,8 +7634,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"
@@ -7645,8 +7684,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ĂŒ"
@@ -7758,11 +7797,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ı"
@@ -7945,13 +7984,13 @@ msgstr "Yazıcının ekstruder sayısı."
msgid ""
"Single Extruder Multi Material is selected, \n"
"and all extruders must have the same diameter.\n"
-"Do you want to change the diameter for all extruders to first extruder nozzle "
-"diameter value?"
+"Do you want to change the diameter for all extruders to first extruder "
+"nozzle diameter value?"
msgstr ""
"Tek Ekstruder Ăoklu Malzeme seçilir, \n"
"ve tĂŒm ekstrĂŒderlerin aynı çapa sahip olması gerekir.\n"
-"TĂŒm ekstruderlerin çapını ilk ekstruder bozul çapı deÄerine deÄiĆtirmek ister "
-"misiniz?"
+"TĂŒm ekstruderlerin çapını ilk ekstruder bozul çapı deÄerine deÄiĆtirmek "
+"ister misiniz?"
msgid "Nozzle diameter"
msgstr "Nozul çapı"
@@ -8112,16 +8151,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:"
@@ -8155,8 +8194,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ı"
@@ -8180,19 +8219,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."
@@ -8333,11 +8372,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."
@@ -8422,15 +8461,15 @@ msgstr ""
"âWindows Media Playerâı etkinleĆtirmek istiyor musunuz?"
msgid ""
-"BambuSource has not correctly been registered for media playing! Press Yes to "
-"re-register it. You will be promoted twice"
+"BambuSource has not correctly been registered for media playing! Press Yes "
+"to re-register it. You will be promoted twice"
msgstr ""
"BambuSource medya oynatımı için doÄru Ćekilde kaydedilmemiĆ! Yeniden "
"kaydetmek için Evetâe basın."
msgid ""
-"Missing BambuSource component registered for media playing! Please re-install "
-"BambuStutio or seek after-sales help."
+"Missing BambuSource component registered for media playing! Please re-"
+"install BambuStutio or seek after-sales help."
msgstr ""
"Medya oynatma için kayıtlı BambuSource bileĆeni eksik! LĂŒtfen BambuStutioâyu "
"yeniden yĂŒkleyin veya satıà sonrası yardım isteyin."
@@ -8443,9 +8482,9 @@ msgstr ""
"çalıĆmayabilir! DĂŒzeltmek için Evetâe basın."
msgid ""
-"Your system is missing H.264 codecs for GStreamer, which are required to play "
-"video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-libav "
-"packages, then restart Orca Slicer?)"
+"Your system is missing H.264 codecs for GStreamer, which are required to "
+"play video. (Try installing the gstreamer1.0-plugins-bad or gstreamer1.0-"
+"libav packages, then restart Orca Slicer?)"
msgstr ""
"Sisteminizde video oynatmak için gerekli olan GStreamer H.264 codec "
"bileĆenleri eksik. (gstreamer1.0-plugins-bad veya gstreamer1.0-libav "
@@ -8475,8 +8514,11 @@ msgstr "Nesne listesi"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "STL/STEP/3MF/OBJ/AMF dosyalarından geometri verilerini içe aktarın"
-msgid "Shift+G"
-msgstr "Shift+G"
+msgid "â+Shift+G"
+msgstr "â+Shift+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Ctrl+Shift+G"
msgid "Paste from clipboard"
msgstr "Panodan yapıĆtır"
@@ -8526,18 +8568,33 @@ msgstr "Shift+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "Kenar çubuÄunu daralt/geniĆlet"
-msgid "Any arrow"
-msgstr "Herhangi bir ok"
+msgid "â+Any arrow"
+msgstr "â+Herhangi bir ok"
msgid "Movement in camera space"
msgstr "Kamera alanında hareket"
+msgid "â„+Left mouse button"
+msgstr "â„+Sol fare dĂŒÄmesi"
+
msgid "Select a part"
msgstr "Parça seçin"
+msgid "â+Left mouse button"
+msgstr "â+Sol fare dĂŒÄmesi"
+
msgid "Select multiple objects"
msgstr "Birden fazla nesne seç"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl+Herhangi bir yön tuĆu"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt+Sol fare dĂŒÄmesi"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl+Sol fare dĂŒÄmesi"
+
msgid "Shift+Left mouse button"
msgstr "Shift+Sol fare dĂŒÄmesi"
@@ -8640,12 +8697,24 @@ msgstr "Plakacı"
msgid "Move: press to snap by 1mm"
msgstr "Hareket Ettir: 1 mm kadar yaslamak için basın"
+msgid "â+Mouse wheel"
+msgstr "â+Fare tekerleÄi"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "Destek/Renkli Boyama: kalem yarıçapını ayarlayın"
+msgid "â„+Mouse wheel"
+msgstr "â„+Fare tekerleÄi"
+
msgid "Support/Color Painting: adjust section position"
msgstr "Destek/Renkli Boyama: bölĂŒm konumunu ayarlayın"
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl+Fare tekerleÄi"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+Fare tekerleÄi"
+
msgid "Gizmo"
msgstr "Gizmo"
@@ -8710,8 +8779,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?"
@@ -8768,7 +8837,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."
@@ -8837,8 +8907,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."
@@ -8857,9 +8927,10 @@ 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ı"
@@ -9017,8 +9088,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"
@@ -9151,8 +9222,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"
@@ -9185,8 +9256,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."
@@ -9202,9 +9273,9 @@ msgid "Variable layer height is not supported with Organic supports."
msgstr "DeÄiĆken katman yĂŒksekliÄi Organik desteklerle desteklenmez."
msgid ""
-"Different nozzle diameters and different filament diameters may not work well "
-"when the prime tower is enabled. It's very experimental, so please proceed "
-"with caution."
+"Different nozzle diameters and different filament diameters may not work "
+"well when the prime tower is enabled. It's very experimental, so please "
+"proceed with caution."
msgstr ""
"Farklı pĂŒskĂŒrtme ucu çapları ve farklı filaman çapları, ana kule "
"etkinleĆtirildiÄinde iyi çalıĆmayabilir. Oldukça deneysel olduÄundan lĂŒtfen "
@@ -9238,8 +9309,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 ""
@@ -9247,11 +9318,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"
@@ -9264,8 +9336,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"
@@ -9279,7 +9351,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 "
@@ -9292,8 +9365,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 "
@@ -9310,20 +9383,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 "
@@ -9362,8 +9435,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"
@@ -9424,7 +9497,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"
@@ -9483,15 +9557,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ĂŒ"
@@ -9499,7 +9573,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"
@@ -9508,8 +9583,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ı"
@@ -9519,8 +9595,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 "
@@ -9571,10 +9647,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 %"
@@ -9583,8 +9659,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"
@@ -9593,22 +9669,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"
@@ -9690,11 +9766,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"
@@ -9703,23 +9779,32 @@ msgid "Apply gap fill"
msgstr "BoĆluk doldurmayı uygula"
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 solid 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"
-"3. Nowhere: Disables gap fill\n"
-msgstr ""
-"Seçilen yĂŒzeyler için boĆluk doldurmayı etkinleĆtirir. Doldurulacak minimum "
-"boĆluk uzunluÄu aĆaÄıdaki kĂŒĂ§ĂŒk boĆlukları filtrele seçeneÄinden kontrol "
-"edilebilir.\n"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
+"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
"\n"
-"Seçenekler:\n"
-"1. Her Yerde: Ăst, alt ve iç katı yĂŒzeylere boĆluk doldurma uygular\n"
-"2. Ăst ve Alt yĂŒzeyler: BoĆluk doldurmayı yalnızca ĂŒst ve alt yĂŒzeylere "
-"uygular\n"
-"3. Hiçbir Yerde: BoĆluk doldurmayı devre dıĆı bırakır\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
+msgstr ""
msgid "Everywhere"
msgstr "Her yerde"
@@ -9734,19 +9819,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ı "
@@ -9758,9 +9843,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 "
@@ -9792,10 +9877,11 @@ msgstr "KöprĂŒlerde akıà oranı"
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
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)"
msgid "Internal bridge flow ratio"
msgstr "İç köprĂŒ akıà oranı"
@@ -9803,27 +9889,33 @@ msgstr "İç köprĂŒ akıà oranı"
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
-"Bu deÄer iç köprĂŒ katmanının kalınlıÄını belirler. Bu, seyrek dolgunun "
-"ĂŒzerindeki ilk katmandır. Seyrek dolguya göre yĂŒzey kalitesini iyileĆtirmek "
-"için bu deÄeri biraz azaltın (örneÄin 0,9)."
msgid "Top surface flow ratio"
msgstr "Ăst katı dolgu akıà oranı"
msgid ""
"This factor affects the amount of material for top solid infill. You can "
-"decrease it slightly to have smooth surface finish"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"Bu faktör ĂŒst katı dolgu için malzeme miktarını etkiler. PĂŒrĂŒzsĂŒz bir yĂŒzey "
-"elde etmek için biraz azaltabilirsiniz"
msgid "Bottom surface flow ratio"
msgstr "Alt katı dolgu akıà oranı"
-msgid "This factor affects the amount of material for bottom solid infill"
-msgstr "Bu faktör alt katı dolgu için malzeme miktarını etkiler"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
msgid "Precise wall"
msgstr "Hassas duvar"
@@ -9863,11 +9955,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."
@@ -9899,9 +9991,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."
@@ -9923,7 +10015,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 "
@@ -9955,7 +10048,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"
@@ -9997,12 +10091,26 @@ msgstr ""
msgid "Slow down for curled perimeters"
msgstr "KıvrılmÄ±Ć Ă§evre çizgilerinde yavaĆlat"
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
msgstr ""
-"Potansiyel kıvrılmÄ±Ć Ă§evrelerin bulunabileceÄi alanlarda yazdırmayı "
-"yavaĆlatmak için bu seçeneÄi etkinleĆtirin"
msgid "mm/s or %"
msgstr "mm/s veya %"
@@ -10010,8 +10118,14 @@ msgstr "mm/s veya %"
msgid "External"
msgstr "Harici"
-msgid "Speed of bridge and completely overhang wall"
-msgstr "KöprĂŒ hızı ve tamamen sarkan duvar"
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "mm/s"
@@ -10020,11 +10134,9 @@ msgid "Internal"
msgstr "Dahili"
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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
-"Dahili köprĂŒnĂŒn hızı. DeÄer yĂŒzde olarak ifade edilirse köprĂŒ_hızına göre "
-"hesaplanacaktır. Varsayılan deÄer %150'dir."
msgid "Brim width"
msgstr "Kenar geniĆliÄi"
@@ -10075,8 +10187,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 "
@@ -10125,10 +10237,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ı"
@@ -10137,7 +10249,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ÂČ"
@@ -10181,8 +10294,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"
@@ -10223,8 +10336,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 "
@@ -10239,16 +10352,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"
@@ -10400,8 +10513,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)"
@@ -10430,8 +10543,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"
@@ -10462,14 +10575,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"
" "
@@ -10491,9 +10604,9 @@ msgid ""
"\n"
"Printing 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."
+"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 kutusu iĆaretlenmediÄinde duvarlar önce yazdırılır, "
"bu çoÄu durumda en iyi Ćekilde çalıĆır.\n"
@@ -10511,8 +10624,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."
@@ -10520,8 +10633,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."
@@ -10549,8 +10662,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 "
@@ -10573,19 +10686,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Äı"
@@ -10595,19 +10709,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"
@@ -10624,8 +10739,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."
@@ -10645,9 +10760,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 "
@@ -10655,6 +10770,17 @@ msgstr ""
"arasındadır. Belki hafif taĆma veya taĆma olduÄunda gĂŒzel dĂŒz bir yĂŒzey elde "
"etmek için bu deÄeri ayarlayabilirsiniz"
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "Basınç Avansı (PA)"
@@ -10671,6 +10797,7 @@ msgstr "Basınç avansı (Klipper) DoÄrusal ilerleme faktörĂŒ (Marlin)"
msgid "Enable adaptive pressure advance (beta)"
msgstr "Uyarlanabilir basınç ilerlemesini etkinleĆtir (beta)"
+#, fuzzy, c-format, boost-format
msgid ""
"With increasing print speeds (and hence increasing volumetric flow through "
"the nozzle) and increasing accelerations, it has been observed that the "
@@ -10679,12 +10806,12 @@ msgid ""
"used that does not cause too much bulging on features with lower flow speed "
"and accelerations while also not causing gaps on faster features.\n"
"\n"
-"This feature aims to address this limitation by modeling the response of your "
-"printer's extrusion system depending on the volumetric flow speed and "
+"This feature aims to address this limitation by modeling the response of "
+"your printer's extrusion system depending on the volumetric flow speed and "
"acceleration it is printing at. Internally, it generates a fitted model that "
"can extrapolate the needed pressure advance for any given volumetric flow "
-"speed and acceleration, which is then emmited to the printer depending on the "
-"current print conditions.\n"
+"speed and acceleration, which is then emmited to the printer depending on "
+"the current print conditions.\n"
"\n"
"When enabled, the pressure advance value above is overriden. However, a "
"reasonable default value above is strongly recomended to act as a fallback "
@@ -10725,24 +10852,24 @@ msgid ""
"1. Run the pressure advance test for at least 3 speeds per acceleration "
"value. It is recommended that the test is run for at least the speed of the "
"external perimeters, the speed of the internal perimeters and the fastest "
-"feature print speed in your profile (usually its the sparse or solid infill). "
-"Then run them for the same speeds for the slowest and fastest print "
+"feature print speed in your profile (usually its the sparse or solid "
+"infill). Then run them for the same speeds for the slowest and fastest print "
"accelerations,and no faster than the recommended maximum acceleration as "
"given by the klipper input shaper.\n"
"2. Take note of the optimal PA value for each volumetric flow speed and "
"acceleration. You can find the flow number by selecting flow from the color "
"scheme drop down and move the horizontal slider over the PA pattern lines. "
"The number should be visible at the bottom of the page. The ideal PA value "
-"should be decreasing the higher the volumetric flow is. If it is not, confirm "
-"that your extruder is functioning correctly.The slower and with less "
+"should be decreasing the higher the volumetric flow is. If it is not, "
+"confirm that your extruder is functioning correctly.The slower and with less "
"acceleration you print, the larger the range of acceptable PA values. If no "
"difference is visible, use the PA value from the faster test.3. Enter the "
"triplets of PA values, Flow and Accelerations in the text box here and save "
"your filament profile\n"
"\n"
msgstr ""
-"Basınç ilerlemesi (basınç) deÄerlerinin setlerini, hacimsel akıà hızlarını ve "
-"ölĂ§ĂŒldĂŒkleri ivmeleri virgĂŒlle ayırarak ekleyin. Satır baĆına bir deÄer "
+"Basınç ilerlemesi (basınç) deÄerlerinin setlerini, hacimsel akıà hızlarını "
+"ve ölĂ§ĂŒldĂŒkleri ivmeleri virgĂŒlle ayırarak ekleyin. Satır baĆına bir deÄer "
"kĂŒmesi. ĂrneÄin\n"
"0.04,3.96,3000\n"
"0,033,3,96,10000\n"
@@ -10764,18 +10891,18 @@ msgstr ""
"olursa o kadar azalmalıdır. DeÄilse, ekstruderinizin doÄru Ćekilde "
"çalıĆtıÄını doÄrulayın. Ne kadar yavaĆ ve daha az ivmeyle yazdırırsanız, "
"kabul edilebilir PA deÄerleri aralıÄı o kadar geniĆ olur. Hiçbir fark "
-"görĂŒnmĂŒyorsa, daha hızlı olan testteki PA deÄerini kullanın.3. Buradaki metin "
-"kutusuna PA deÄerleri, Akıà ve Hızlanma ĂŒĂ§lĂŒsĂŒnĂŒ girin ve filament "
+"görĂŒnmĂŒyorsa, daha hızlı olan testteki PA deÄerini kullanın.3. Buradaki "
+"metin kutusuna PA deÄerleri, Akıà ve Hızlanma ĂŒĂ§lĂŒsĂŒnĂŒ girin ve filament "
"profilinizi kaydedin\n"
msgid "Enable adaptive pressure advance for overhangs (beta)"
msgstr "Ăıkıntılar için uyarlanabilir basınç ilerlemesini etkinleĆtirin (beta)"
msgid ""
-"Enable adaptive PA for overhangs as well as when flow changes within the same "
-"feature. This is an experimental option, as if the PA profile is not set "
-"accurately, it will cause uniformity issues on the external surfaces before "
-"and after overhangs.\n"
+"Enable adaptive PA for overhangs as well as when flow changes within the "
+"same feature. This is an experimental option, as if the PA profile is not "
+"set accurately, it will cause uniformity issues on the external surfaces "
+"before and after overhangs.\n"
msgstr ""
"Aynı özellik içinde akıà deÄiĆtiÄinde ve çıkıntılar için uyarlanabilir PAâyı "
"etkinleĆtirin. Bu deneysel bir seçenektir, sanki basınç profili doÄru "
@@ -10788,10 +10915,10 @@ msgstr "KöprĂŒler için basınç ilerlemesi"
msgid ""
"Pressure advance value for bridges. Set to 0 to disable. \n"
"\n"
-" A lower PA value when printing bridges helps reduce the appearance of slight "
-"under extrusion immediately after bridges. This is caused by the pressure "
-"drop in the nozzle when printing in the air and a lower PA helps counteract "
-"this."
+" A lower PA value when printing bridges helps reduce the appearance of "
+"slight under extrusion immediately after bridges. This is caused by the "
+"pressure drop in the nozzle when printing in the air and a lower PA helps "
+"counteract this."
msgstr ""
"KöprĂŒler için basınç ilerleme deÄeri. Devre dıĆı bırakmak için 0âa "
"ayarlayın. \n"
@@ -10802,8 +10929,8 @@ msgstr ""
"basınç, bunu önlemeye yardımcı olur."
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."
@@ -10812,8 +10939,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 "
@@ -10894,18 +11021,29 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "Filament yĂŒkleme sĂŒresi"
-msgid "Time to load new filament when switch filament. For statistics only"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
msgstr ""
-"Filamenti deÄiĆtirdiÄinizde yeni filament yĂŒkleme zamanı. Yalnızca "
-"istatistikler için"
msgid "Filament unload time"
msgstr "Filament boĆaltma sĂŒresi"
-msgid "Time to unload old filament when switch filament. For statistics only"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
msgstr ""
-"Filamenti deÄiĆtirdiÄinizde eski filamenti boĆaltma zamanı. Yalnızca "
-"istatistikler için"
msgid ""
"Filament diameter is used to calculate extrusion in gcode, so it's important "
@@ -10945,11 +11083,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ı"
@@ -11000,8 +11138,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 "Stamping loading speed"
msgstr "Damgalama yĂŒkleme hızı"
@@ -11014,8 +11152,8 @@ msgstr "SoÄutma tĂŒpĂŒnĂŒn merkezinden ölĂ§ĂŒlen damgalama mesafesi"
msgid ""
"If set to nonzero value, filament is moved toward the nozzle between the "
-"individual cooling moves (\"stamping\"). This option configures how long this "
-"movement should be before the filament is retracted again."
+"individual cooling moves (\"stamping\"). This option configures how long "
+"this movement should be before the filament is retracted again."
msgstr ""
"Sıfırdan farklı bir deÄere ayarlanırsa filaman bireysel soÄutma hareketleri "
"arasında (âdamgalamaâ) nĂŒzule doÄru hareket ettirilir. Bu seçenek, filamanın "
@@ -11034,9 +11172,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. "
@@ -11051,15 +11189,6 @@ msgstr "Son soÄutma hareketi hızı"
msgid "Cooling moves are gradually accelerating towards this speed."
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."
-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."
-
msgid "Ramming parameters"
msgstr "SıkıĆtırma parametreleri"
@@ -11070,15 +11199,6 @@ msgstr ""
"Bu dize RammingDialog tarafından dĂŒzenlenir ve ramming'e özgĂŒ parametreleri "
"içerir."
-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 ""
-"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 "
-"sĂŒre tahmincisi tarafından toplam baskı sĂŒresine eklenir."
-
msgid "Enable ramming for multitool setups"
msgstr "Ăoklu araç kurulumları için sıkıĆtırmayı etkinleĆtirin"
@@ -11121,7 +11241,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"
@@ -11129,7 +11250,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"
@@ -11177,8 +11299,8 @@ msgid "Solid infill direction"
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ı"
@@ -11196,8 +11318,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"
@@ -11245,22 +11367,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)"
@@ -11275,22 +11398,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ı)"
@@ -11308,8 +11432,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 ""
@@ -11319,8 +11443,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 %"
@@ -11357,7 +11481,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"
@@ -11390,8 +11515,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 adhesion"
+"Height of initial layer. Making initial layer height to be thick slightly "
+"can improve build plate adhesion"
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"
@@ -11439,9 +11564,10 @@ msgid ""
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 "layer"
msgstr "katman"
@@ -11507,8 +11633,11 @@ msgstr "KĂŒĂ§ĂŒk boĆlukları filtrele"
msgid "Layers and Perimeters"
msgstr "Katmanlar ve Ăevreler"
-msgid "Filter out gaps smaller than the threshold specified"
-msgstr "Belirtilen eĆikten daha kĂŒĂ§ĂŒk boĆlukları filtrele"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
+msgstr ""
msgid ""
"Speed of gap infill. Gap usually has irregular line width and should be "
@@ -11537,11 +11666,11 @@ 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"
@@ -11578,8 +11707,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"
@@ -11631,8 +11760,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)."
@@ -11675,8 +11804,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"
@@ -11722,7 +11851,8 @@ msgid "Pellet Modded Printer"
msgstr "Pelet Modlu Yazıcı"
msgid "Enable this option if your printer uses pellets instead of filaments"
-msgstr "Yazıcınız filament yerine pellet kullanıyorsa bu seçeneÄi etkinleĆtirin"
+msgstr ""
+"Yazıcınız filament yerine pellet kullanıyorsa bu seçeneÄi etkinleĆtirin"
msgid "Support multi bed types"
msgstr "Ăoklu tabla"
@@ -11736,20 +11866,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"
@@ -11789,10 +11920,10 @@ 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ı "
@@ -11805,8 +11936,8 @@ 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 ""
@@ -11824,12 +11955,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"
@@ -11851,7 +11982,8 @@ msgstr ""
"BölĂŒmlere ayrılmıà bir bölgenin birbirine kenetlenen derinliÄi. "
"âmmu_segmented_region_max_widthâ sıfırsa veya "
"âmmu_segmented_region_interlocking_lengthâ, âmmu_segmented_region_max_widthâ "
-"deÄerinden bĂŒyĂŒkse göz ardı edilecektir. Sıfır bu özelliÄi devre dıĆı bırakır."
+"deÄerinden bĂŒyĂŒkse göz ardı edilecektir. Sıfır bu özelliÄi devre dıĆı "
+"bırakır."
msgid "Use beam interlocking"
msgstr "IĆın kilitlemeyi kullanın"
@@ -11895,7 +12027,8 @@ msgid ""
"structure, measured in cells. Too few cells will result in poor adhesion."
msgstr ""
"HĂŒcrelerde ölĂ§ĂŒlen, birbirine kenetlenen yapıyı oluĆturmak için filamentler "
-"arasındaki sınırdan mesafe. Ăok az hĂŒcre yapıĆmanın zayıf olmasına neden olur."
+"arasındaki sınırdan mesafe. Ăok az hĂŒcre yapıĆmanın zayıf olmasına neden "
+"olur."
msgid "Interlocking boundary avoidance"
msgstr "Birbirine kenetlenen sınırdan kaçınma"
@@ -11996,8 +12129,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"
@@ -12128,8 +12261,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"
@@ -12149,8 +12282,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"
@@ -12161,11 +12294,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 "
@@ -12187,13 +12321,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 "
@@ -12287,8 +12421,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"
@@ -12329,8 +12463,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"
@@ -12357,8 +12491,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 "
@@ -12402,11 +12536,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ÂČ"
@@ -12416,11 +12550,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 "Filament to print walls"
msgstr "Duvarları yazdırmak için filament"
@@ -12445,8 +12579,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."
@@ -12467,10 +12601,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 type"
msgstr "Yazıcı tĂŒrĂŒ"
@@ -12491,7 +12626,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"
@@ -12520,8 +12656,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 "
@@ -12536,7 +12672,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"
@@ -12544,7 +12681,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"
@@ -12635,8 +12773,8 @@ msgid "Traveling angle"
msgstr "Seyahat açısı"
msgid ""
-"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results in "
-"Normal Lift"
+"Traveling angle for Slope and Spiral Z hop type. Setting it to 90° results "
+"in Normal Lift"
msgstr ""
"EÄim ve Spiral Z atlama tipi için ilerleme açısı. 90°âye ayarlamak normal "
"kaldırmayla sonuçlanır"
@@ -12771,13 +12909,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."
@@ -12786,8 +12924,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"
@@ -12805,9 +12943,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"
@@ -12822,8 +12960,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 "
@@ -12837,22 +12975,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ı"
@@ -12866,8 +13004,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 "
@@ -12886,8 +13024,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"
@@ -12928,15 +13066,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, "
@@ -12945,8 +13083,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ı"
@@ -13012,7 +13150,8 @@ 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ı"
@@ -13063,8 +13202,8 @@ msgid "Filament to print solid infill"
msgstr "Katı dolguyu yazdırmak için filament"
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."
@@ -13078,8 +13217,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"
@@ -13104,11 +13243,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ĂŒ "
@@ -13203,9 +13343,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 "
@@ -13230,16 +13371,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."
@@ -13263,9 +13404,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"
@@ -13319,7 +13461,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"
@@ -13356,7 +13499,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 "
@@ -13431,8 +13575,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 "
@@ -13461,11 +13605,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 "
@@ -13514,8 +13659,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ı "
@@ -13547,10 +13692,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 "
@@ -13562,8 +13708,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 "
@@ -13618,8 +13764,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 "
@@ -13645,33 +13791,40 @@ msgid "Activate temperature control"
msgstr "Sıcaklık kontrolĂŒnĂŒ etkinleĆtirin"
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)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
-"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"
msgstr "Bölme sıcaklıÄı"
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
msgstr ""
-"Daha yĂŒksek hazne sıcaklıÄı, eÄrilmeyi bastırmaya veya azaltmaya yardımcı "
-"olabilir ve ABS, ASA, PC, PA ve benzeri gibi yĂŒksek sıcaklıktaki malzemeler "
-"için potansiyel olarak daha yĂŒksek ara katman yapıĆmasına yol açabilir Aynı "
-"zamanda, ABS ve ASA'nın hava filtrasyonu daha da kötĂŒleĆecektir. PLA, PETG, "
-"TPU, PVA ve diÄer dĂŒĆĂŒk sıcaklıktaki malzemeler için, tıkanmaları önlemek "
-"için gerçek hazne sıcaklıÄı yĂŒksek olmamalıdır, bu nedenle kapatma anlamına "
-"gelen 0 Ćiddetle tavsiye edilir"
msgid "Nozzle temperature for layers after the initial one"
msgstr "İlk katmandan sonraki katmanlar için nozul sıcaklıÄı"
@@ -13728,11 +13881,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"
@@ -13755,11 +13908,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."
@@ -13767,9 +13921,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 "
@@ -13819,8 +13973,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 "Maximum wipe tower print speed"
msgstr "Maksimum silme kulesi yazdırma hızı"
@@ -13882,8 +14036,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 "
@@ -13907,13 +14061,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"
@@ -13922,8 +14076,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 "Wipe tower purge lines spacing"
msgstr "Silme kulesi temizleme hatları aralıÄı"
@@ -13936,8 +14090,8 @@ msgstr "Temizleme için ekstra akıĆ"
msgid ""
"Extra flow used for the purging lines on the wipe tower. This makes the "
-"purging lines thicker or narrower than they normally would be. The spacing is "
-"adjusted automatically."
+"purging lines thicker or narrower than they normally would be. The spacing "
+"is adjusted automatically."
msgstr ""
"Silme kulesindeki temizleme hatları için ekstra akıà kullanılır. Bu, "
"temizleme hatlarının normalde olduÄundan daha kalın veya daha dar olmasına "
@@ -13978,8 +14132,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"
@@ -14003,14 +14157,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"
@@ -14033,8 +14187,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"
@@ -14055,11 +14209,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"
@@ -14086,19 +14240,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ı"
@@ -14110,11 +14265,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ı"
@@ -14130,9 +14285,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 "
@@ -14149,27 +14304,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ı "
@@ -14194,8 +14350,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 "
@@ -14241,7 +14397,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ı."
@@ -14286,13 +14443,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"
@@ -14393,18 +14550,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ı"
@@ -14453,8 +14610,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."
@@ -14466,8 +14623,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"
@@ -14534,8 +14691,8 @@ msgid "Number of extruders"
msgstr "Ekstruder sayısı"
msgid ""
-"Total number of extruders, regardless of whether they are used in the current "
-"print."
+"Total number of extruders, regardless of whether they are used in the "
+"current print."
msgstr ""
"Geçerli baskıda kullanılıp kullanılmadıÄına bakılmaksızın ekstrĂŒderlerin "
"toplam sayısı."
@@ -14673,7 +14830,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"
@@ -14795,7 +14953,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!"
@@ -14810,16 +14969,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..."
@@ -14833,9 +14992,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 "
@@ -14846,8 +15005,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"
@@ -14866,10 +15025,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."
@@ -14891,10 +15050,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 that there are a few cases that can make the calibration results "
"unreliable, such as insufficient adhesion on the build plate. Improving "
@@ -14910,9 +15069,9 @@ msgstr ""
"Genellikle kalibrasyon gereksizdir. Baskı baĆlatma menĂŒsĂŒnde \"akıà "
"dinamikleri kalibrasyonu\" seçeneÄi iĆaretliyken tek renkli/malzemeli bir "
"baskı baĆlattıÄınızda, yazıcı eski yolu izleyecek, baskıdan önce filamenti "
-"kalibre edecektir; Ăok renkli/malzemeli bir baskı baĆlattıÄınızda, yazıcı her "
-"filament deÄiĆimi sırasında filament için varsayılan telafi parametresini "
-"kullanacaktır ve bu da çoÄu durumda iyi bir sonuç verecektir.\n"
+"kalibre edecektir; Ăok renkli/malzemeli bir baskı baĆlattıÄınızda, yazıcı "
+"her filament deÄiĆimi sırasında filament için varsayılan telafi "
+"parametresini kullanacaktır ve bu da çoÄu durumda iyi bir sonuç verecektir.\n"
"\n"
"Yapı plakası ĂŒzerinde yetersiz yapıĆma gibi kalibrasyon sonuçlarını "
"gĂŒvenilmez hale getirebilecek birkaç durum olduÄunu lĂŒtfen unutmayın. "
@@ -14962,10 +15121,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 "
@@ -14980,12 +15139,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 "
@@ -14996,8 +15156,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 "
@@ -15006,8 +15166,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"
@@ -15029,15 +15189,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"
@@ -15626,8 +15786,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"
@@ -15743,15 +15903,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."
@@ -15768,7 +15928,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."
@@ -15814,7 +15975,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ı"
@@ -15897,8 +16059,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 ""
@@ -15937,8 +16099,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"
@@ -15946,13 +16108,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 "
@@ -15976,8 +16138,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."
@@ -16095,7 +16257,8 @@ msgstr "Aygıt sekmesinde yazdırma ana bilgisayarı web arayĂŒzĂŒnĂŒ görĂŒntĂŒ
msgid "Replace the BambuLab's device tab with print host webui"
msgstr ""
-"BambuLabâın aygıt sekmesini yazdırma ana bilgisayarı web arayĂŒzĂŒyle deÄiĆtirin"
+"BambuLabâın aygıt sekmesini yazdırma ana bilgisayarı web arayĂŒzĂŒyle "
+"deÄiĆtirin"
msgid ""
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
@@ -16115,8 +16278,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 / "
@@ -16266,30 +16429,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 "
@@ -16327,8 +16491,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 "
@@ -16379,12 +16543,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 "
@@ -16422,7 +16586,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 "
@@ -16457,8 +16622,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 "
@@ -16477,16 +16642,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."
@@ -16498,8 +16663,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 "
@@ -16508,8 +16673,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 "
@@ -16517,10 +16682,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 "
@@ -16592,7 +16757,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 ""
@@ -16654,14 +16820,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 ""
"Tersine çevir\n"
"Tersine çevir özelliÄinin çıkıntılarınızın yĂŒzey kalitesini önemli "
@@ -16684,8 +16850,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 ""
@@ -16818,9 +16984,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 "
@@ -16854,8 +17020,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, "
@@ -16960,57 +17126,146 @@ msgstr ""
"sıcaklıÄının uygun Ćekilde arttırılmasının bĂŒkĂŒlme olasılıÄını "
"azaltabileceÄini biliyor muydunuz?"
-#~ msgid "up to"
-#~ msgstr "kadar"
+#~ msgid ""
+#~ "Your object appears to be too large. It will be scaled down to fit the "
+#~ "heat bed automatically."
+#~ msgstr ""
+#~ "Nesneniz çok bĂŒyĂŒk görĂŒnĂŒyor. Plakaya otomatik olarak uyacak Ćekilde "
+#~ "kĂŒĂ§ĂŒltĂŒlecektir."
-#~ msgid "above"
-#~ msgstr "ĂŒstĂŒnde"
+#~ msgid "Shift+G"
+#~ msgstr "Shift+G"
-#~ msgid "from"
-#~ msgstr "itibaren"
-
-#~ msgid "Switching application language while some presets are modified."
-#~ msgstr "Bazı ön ayarlar deÄiĆtirilirken uygulama dilinin deÄiĆtirilmesi."
-
-#~ msgid "â+Shift+G"
-#~ msgstr "â+Shift+G"
-
-#~ msgid "Ctrl+Shift+G"
-#~ msgstr "Ctrl+Shift+G"
-
-#~ msgid "â+Any arrow"
-#~ msgstr "â+Herhangi bir ok"
-
-#~ msgid "â„+Left mouse button"
-#~ msgstr "â„+Sol fare dĂŒÄmesi"
-
-#~ msgid "â+Left mouse button"
-#~ msgstr "â+Sol fare dĂŒÄmesi"
-
-#~ msgid "Ctrl+Any arrow"
-#~ msgstr "Ctrl+Herhangi bir yön tuĆu"
-
-#~ msgid "Alt+Left mouse button"
-#~ msgstr "Alt+Sol fare dĂŒÄmesi"
-
-#~ msgid "Ctrl+Left mouse button"
-#~ msgstr "Ctrl+Sol fare dĂŒÄmesi"
-
-#~ msgid "â+Mouse wheel"
-#~ msgstr "â+Fare tekerleÄi"
-
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„+Fare tekerleÄi"
-
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "Ctrl+Fare tekerleÄi"
-
-#~ msgid "Alt+Mouse wheel"
-#~ msgstr "Alt+Fare tekerleÄi"
+#~ msgid "Any arrow"
+#~ msgstr "Herhangi bir ok"
#~ msgid ""
-#~ "Different nozzle diameters and different filament diameters is not allowed "
-#~ "when prime tower is enabled."
+#~ "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"
+#~ "3. Nowhere: Disables gap fill\n"
+#~ msgstr ""
+#~ "Seçilen yĂŒzeyler için boĆluk doldurmayı etkinleĆtirir. Doldurulacak "
+#~ "minimum boĆluk uzunluÄu aĆaÄıdaki kĂŒĂ§ĂŒk boĆlukları filtrele seçeneÄinden "
+#~ "kontrol edilebilir.\n"
+#~ "\n"
+#~ "Seçenekler:\n"
+#~ "1. Her Yerde: Ăst, alt ve iç katı yĂŒzeylere boĆluk doldurma uygular\n"
+#~ "2. Ăst ve Alt yĂŒzeyler: BoĆluk doldurmayı yalnızca ĂŒst ve alt yĂŒzeylere "
+#~ "uygular\n"
+#~ "3. Hiçbir Yerde: BoĆluk doldurmayı devre dıĆı bırakır\n"
+
+#~ 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)"
+
+#~ 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 ""
+#~ "Bu deÄer iç köprĂŒ katmanının kalınlıÄını belirler. Bu, seyrek dolgunun "
+#~ "ĂŒzerindeki ilk katmandır. Seyrek dolguya göre yĂŒzey kalitesini "
+#~ "iyileĆtirmek için bu deÄeri biraz azaltın (örneÄin 0,9)."
+
+#~ msgid ""
+#~ "This factor affects the amount of material for top solid infill. You can "
+#~ "decrease it slightly to have smooth surface finish"
+#~ msgstr ""
+#~ "Bu faktör ĂŒst katı dolgu için malzeme miktarını etkiler. PĂŒrĂŒzsĂŒz bir "
+#~ "yĂŒzey elde etmek için biraz azaltabilirsiniz"
+
+#~ msgid "This factor affects the amount of material for bottom solid infill"
+#~ msgstr "Bu faktör alt katı dolgu için malzeme miktarını etkiler"
+
+#~ msgid ""
+#~ "Enable this option to slow printing down in areas where potential curled "
+#~ "perimeters may exist"
+#~ msgstr ""
+#~ "Potansiyel kıvrılmÄ±Ć Ă§evrelerin bulunabileceÄi alanlarda yazdırmayı "
+#~ "yavaĆlatmak için bu seçeneÄi etkinleĆtirin"
+
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "KöprĂŒ hızı ve tamamen sarkan duvar"
+
+#~ 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 ""
+#~ "Dahili köprĂŒnĂŒn hızı. DeÄer yĂŒzde olarak ifade edilirse köprĂŒ_hızına göre "
+#~ "hesaplanacaktır. Varsayılan deÄer %150'dir."
+
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Filamenti deÄiĆtirdiÄinizde yeni filament yĂŒkleme zamanı. Yalnızca "
+#~ "istatistikler için"
+
+#~ msgid ""
+#~ "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Filamenti deÄiĆtirdiÄinizde eski filamenti boĆaltma zamanı. Yalnızca "
+#~ "istatistikler için"
+
+#~ 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 ""
+#~ "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."
+
+#~ 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 ""
+#~ "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 sĂŒre tahmincisi tarafından toplam baskı sĂŒresine eklenir."
+
+#~ msgid "Filter out gaps smaller than the threshold specified"
+#~ msgstr "Belirtilen eĆikten daha kĂŒĂ§ĂŒk boĆlukları filtrele"
+
+#~ 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 ""
+#~ "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 ""
+#~ "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 ""
+#~ "Daha yĂŒksek hazne sıcaklıÄı, eÄrilmeyi bastırmaya veya azaltmaya yardımcı "
+#~ "olabilir ve ABS, ASA, PC, PA ve benzeri gibi yĂŒksek sıcaklıktaki "
+#~ "malzemeler için potansiyel olarak daha yĂŒksek ara katman yapıĆmasına yol "
+#~ "açabilir Aynı zamanda, ABS ve ASA'nın hava filtrasyonu daha da "
+#~ "kötĂŒleĆecektir. PLA, PETG, TPU, PVA ve diÄer dĂŒĆĂŒk sıcaklıktaki "
+#~ "malzemeler için, tıkanmaları önlemek için gerçek hazne sıcaklıÄı yĂŒksek "
+#~ "olmamalıdır, bu nedenle kapatma anlamına gelen 0 Ćiddetle tavsiye edilir"
+
+#~ msgid ""
+#~ "Different nozzle diameters and different filament diameters is not "
+#~ "allowed when prime tower is enabled."
#~ msgstr ""
#~ "Ana kule etkinleĆtirildiÄinde farklı nozul çaplarına ve farklı filament "
#~ "çaplarına izin verilmez."
@@ -17023,10 +17278,11 @@ msgstr ""
#~ "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"
+#~ "İlk katmanın yĂŒksekliÄi. İlk katman yĂŒksekliÄini biraz kalın yapmak, "
+#~ "baskı plakasının yapıĆmasını iyileĆtirebilir"
-#~ msgid "Interlocking depth of a segmented region. Zero disables this feature."
+#~ 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."
@@ -17104,11 +17360,12 @@ msgstr ""
#~ "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"
+#~ "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 "
+#~ "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 "
@@ -17119,11 +17376,12 @@ msgstr ""
#~ "bulabilirsiniz.\n"
#~ "\n"
#~ "Genellikle kalibrasyon gereksizdir. Yazdırma baĆlat menĂŒsĂŒndeki \"akıà "
-#~ "dinamiÄi kalibrasyonu\" seçeneÄi iĆaretliyken tek renkli/malzeme baskısını "
-#~ "baĆlattıÄınızda, yazıcı eski yöntemi izleyecek, yazdırmadan önce filamenti "
-#~ "kalibre edecektir; Ăok renkli/malzeme baskısını baĆlattıÄınızda, yazıcı "
-#~ "her filament deÄiĆiminde filament için varsayılan dengeleme parametresini "
-#~ "kullanacaktır ve bu çoÄu durumda iyi bir sonuç verecektir.\n"
+#~ "dinamiÄi kalibrasyonu\" seçeneÄi iĆaretliyken tek renkli/malzeme "
+#~ "baskısını baĆlattıÄınızda, yazıcı eski yöntemi izleyecek, yazdırmadan "
+#~ "önce filamenti kalibre edecektir; Ăok renkli/malzeme baskısını "
+#~ "baĆlattıÄınızda, yazıcı her filament deÄiĆiminde filament için varsayılan "
+#~ "dengeleme parametresini kullanacaktır ve bu çoÄu durumda iyi bir sonuç "
+#~ "verecektir.\n"
#~ "\n"
#~ "Kalibrasyon sonucunun gĂŒvenilir olmamasına yol açacak birkaç durum "
#~ "olduÄunu lĂŒtfen unutmayın: kalibrasyonu yapmak için doku plakası "
@@ -17131,14 +17389,14 @@ msgstr ""
#~ "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 "
+#~ "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 ""
-#~ "Only one of the results with the same name will be saved. Are you sure you "
-#~ "want to overrides the other results?"
+#~ "Only one of the results with the same name will be saved. Are you sure "
+#~ "you want to overrides the other results?"
#~ msgstr ""
#~ "Aynı ada sahip sonuçlardan yalnızca biri kaydedilecektir. DiÄer sonuçları "
#~ "geçersiz kılmak istediÄinizden emin misiniz?"
@@ -17146,11 +17404,11 @@ 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?"
+#~ "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 "
+#~ "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 "
#~ "istediÄinizden emin misiniz?"
#~ msgid "Please find the cornor with perfect degree of extrusion"
@@ -17173,11 +17431,11 @@ msgstr ""
#~ "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 ""
#~ "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"
@@ -17192,9 +17450,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 "
@@ -17265,15 +17523,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ıà "
@@ -17293,8 +17552,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"
@@ -17334,8 +17593,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."
@@ -17362,9 +17621,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"
@@ -17374,14 +17633,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. "
@@ -17479,14 +17738,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ĂŒ:"
@@ -17531,8 +17790,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 "
@@ -17540,8 +17799,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."
@@ -17567,8 +17826,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)"
@@ -17622,8 +17881,8 @@ 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)"
@@ -17649,8 +17908,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 ""
@@ -17780,8 +18039,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 "
@@ -17797,7 +18056,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 ""
@@ -18038,8 +18298,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"
@@ -18086,8 +18346,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"
@@ -18101,8 +18361,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"
@@ -18134,7 +18394,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"
@@ -18162,7 +18423,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."
@@ -18180,8 +18442,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"
@@ -18201,7 +18464,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 1c0db33441..68eed7af73 100644
--- a/localization/i18n/uk/OrcaSlicer_uk.po
+++ b/localization/i18n/uk/OrcaSlicer_uk.po
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2024-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: 2024-06-30 23:05+0300\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -16,8 +16,8 @@ msgstr ""
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
-"%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
+"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
+"n%10<=4 && (n%100<12 || n%100>14) ? 1 : 2);\n"
"X-Generator: Poedit 3.4.4\n"
msgid "Supports Painting"
@@ -80,6 +80,9 @@ msgstr "Đ ĐŸĐ·ŃĐŒĐœĐžĐč ĐșŃŃ Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃ"
msgid "On overhangs only"
msgstr "ĐĐžŃĐ” ĐœĐ° Đ·ĐČĐžŃаŃ
"
+msgid "Auto support threshold angle: "
+msgstr "ĐĐŸŃĐŸĐłĐŸĐČĐžĐč ĐșŃŃ Đ°ĐČŃĐŸĐŒĐ°ŃĐžŃĐœĐŸŃ ĐżŃĐŽŃŃĐžĐŒĐșĐž: "
+
msgid "Circle"
msgstr "ĐĐŸĐ»ĐŸ"
@@ -99,9 +102,6 @@ msgstr "ĐалŃĐČĐ°ĐœĐœŃ Đ»ĐžŃĐ” ĐœĐ° ĐČОбŃĐ°ĐœĐžŃ
ĐłŃĐ°ĐœŃŃ
: \"%1%\""
msgid "Highlight faces according to overhang angle."
msgstr "ĐОЎŃлОŃĐž ĐŒĐ”Đ¶Ń Đ· ĐČŃĐŽĐżĐŸĐČŃĐŽĐœĐžĐŒ ĐșŃŃĐŸĐŒ ĐČĐžŃŃŃĐżŃ."
-msgid "Auto support threshold angle: "
-msgstr "ĐĐŸŃĐŸĐłĐŸĐČĐžĐč ĐșŃŃ Đ°ĐČŃĐŸĐŒĐ°ŃĐžŃĐœĐŸŃ ĐżŃĐŽŃŃĐžĐŒĐșĐž: "
-
msgid "No auto support"
msgstr "ĐĐ”ĐŒĐ°Ń Đ°ĐČŃĐŸĐŒĐ°ŃĐžŃĐœĐŸŃ ĐżŃĐŽŃŃĐžĐŒĐșĐž"
@@ -1981,6 +1981,9 @@ msgstr "ĐĄĐżŃĐŸŃŃĐžŃĐž ĐŒĐŸĐŽĐ”Đ»Ń"
msgid "Center"
msgstr "ĐŠĐ”ĐœŃŃ"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "РДЎагŃĐČаŃĐž ĐœĐ°Đ»Đ°ŃŃŃĐČĐ°ĐœĐœŃ ĐżŃĐŸŃĐ”ŃŃ ĐŽŃŃĐșŃ"
@@ -4151,6 +4154,15 @@ msgstr "ĐагалŃĐœĐžĐč ŃаŃ"
msgid "Total cost"
msgstr "ĐагалŃĐœĐ° ĐČаŃŃŃŃŃŃ"
+msgid "up to"
+msgstr "аж ĐŽĐŸ"
+
+msgid "above"
+msgstr "ĐČĐžŃĐ”"
+
+msgid "from"
+msgstr "ĐČŃĐŽ"
+
msgid "Color Scheme"
msgstr "ĐĐŸĐ»ŃŃĐœĐ° ŃŃ
Đ”ĐŒĐ°"
@@ -4214,12 +4226,12 @@ msgstr "Đ§Đ°Ń Đ·ĐŒŃĐœĐž ŃŃĐ»Đ°ĐŒĐ”ĐœŃŃ"
msgid "Cost"
msgstr "ĐĐžŃŃаŃа"
-msgid "Print"
-msgstr "ĐŃŃĐș"
-
msgid "Color change"
msgstr "ĐĐŒŃĐœĐ° ĐșĐŸĐ»ŃĐŸŃŃ"
+msgid "Print"
+msgstr "ĐŃŃĐș"
+
msgid "Printer"
msgstr "ĐŃĐžĐœŃĐ”Ń"
@@ -4403,7 +4415,7 @@ msgstr "Đб'ŃĐŒ:"
msgid "Size:"
msgstr "Đ ĐŸĐ·ĐŒŃŃ:"
-#, 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)."
@@ -4844,6 +4856,18 @@ msgstr "ĐŃĐŸŃ
ŃĐŽ 2"
msgid "Flow rate test - Pass 2"
msgstr "йДŃŃ ĐČĐžŃŃаŃĐž - ĐŃĐŸĐčĐŽĐ”ĐœĐŸ 2"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "ĐšĐČОЎĐșŃŃŃŃ ĐżĐŸŃĐŸĐșŃ"
@@ -6151,14 +6175,6 @@ msgstr "ĐĐžŃĐČĐ»Đ”ĐœĐŸ ĐŸĐ±'ŃĐșŃ, ŃĐŸ ŃĐșлаЎаŃŃŃŃŃ Đ· ĐșŃĐ»ŃĐș
msgid "The file does not contain any geometry data."
msgstr "ЀаĐčĐ» ĐœĐ” ĐŒŃŃŃĐžŃŃ ĐłĐ”ĐŸĐŒĐ”ŃŃĐžŃĐœĐžŃ
ĐŽĐ°ĐœĐžŃ
."
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-
-msgid "Object too large"
-msgstr "Đб'ŃĐșŃ Đ·Đ°ĐœĐ°ĐŽŃĐŸ ĐČДлОĐșĐžĐč"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
@@ -6167,6 +6183,9 @@ msgstr ""
"ĐČŃĐŽĐżĐŸĐČŃЎаĐČ ŃĐŸĐ·ĐŒŃŃŃ?\n"
"ĐżŃĐŽŃĐłŃŃĐČ ŃŃĐŸĐ»Ń Đ°ĐČŃĐŸĐŒĐ°ŃĐžŃĐœĐŸ?"
+msgid "Object too large"
+msgstr "Đб'ŃĐșŃ Đ·Đ°ĐœĐ°ĐŽŃĐŸ ĐČДлОĐșĐžĐč"
+
msgid "Export STL file:"
msgstr "ĐĐșŃĐżĐŸŃŃ ŃаĐčĐ»Ń STL:"
@@ -6543,6 +6562,9 @@ msgstr "ĐĐž Ń
ĐŸŃĐ”ŃĐ” ĐżŃĐŸĐŽĐŸĐČжŃĐČаŃĐž?"
msgid "Language selection"
msgstr "ĐОбŃŃ ĐŒĐŸĐČĐž"
+msgid "Switching application language while some presets are modified."
+msgstr "ĐĐ”ŃĐ”ĐșĐ»ŃŃĐ”ĐœĐœŃ ĐŒĐŸĐČĐž ĐżŃĐŸĐłŃĐ°ĐŒĐž ĐżŃĐž Đ·ĐŒŃĐœŃ ĐŽĐ”ŃĐșĐžŃ
ĐżŃĐ”ŃĐ”ŃŃĐČ."
+
msgid "Changing application language"
msgstr "ĐĐŒŃĐœĐ° ĐŒĐŸĐČĐž ĐżŃĐŸĐłŃĐ°ĐŒĐž"
@@ -7669,8 +7691,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
-"by right-click the empty position of build plate and choose \"Add Primitive"
-"\"->\"Timelapse Wipe Tower\"."
+"by right-click the empty position of build plate and choose \"Add "
+"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"ĐŃĐž запОŃŃ ŃаĐčĐŒĐ»Đ°ĐżŃŃ Đ±Đ”Đ· ŃĐœŃŃŃŃĐŒĐ”ĐœŃалŃĐœĐŸŃ ĐłĐŸĐ»ĐŸĐČĐșĐž ŃĐ”ĐșĐŸĐŒĐ”ĐœĐŽŃŃŃŃŃŃ ĐŽĐŸĐŽĐ°ŃĐž "
"âTimelapse Wipe Towerâ \n"
@@ -8554,8 +8576,11 @@ msgstr "ХпОŃĐŸĐș ĐŸĐ±'ŃĐșŃŃĐČ"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "ĐĐŒĐżĐŸŃŃ ĐłĐ”ĐŸĐŒĐ”ŃŃĐžŃĐœĐžŃ
ĐŽĐ°ĐœĐžŃ
ŃĐ· ŃаĐčĐ»ŃĐČ STL/STEP/3MF/OBJ/AMF"
-msgid "Shift+G"
-msgstr ""
+msgid "â+Shift+G"
+msgstr "â+Shift+G"
+
+msgid "Ctrl+Shift+G"
+msgstr "Ctrl+Shift+G"
msgid "Paste from clipboard"
msgstr "ĐŃŃаĐČĐžŃĐž Đ· бŃŃĐ”Ńа ĐŸĐ±ĐŒŃĐœŃ"
@@ -8605,18 +8630,33 @@ msgstr "Shift+Tab"
msgid "Collapse/Expand the sidebar"
msgstr "ĐĐłĐŸŃĐœŃŃĐž/ŃĐŸĐ·ĐłĐŸŃĐœŃŃĐž бŃŃĐœŃ ĐżĐ°ĐœĐ”Đ»Ń"
-msgid "Any arrow"
-msgstr ""
+msgid "â+Any arrow"
+msgstr "â+бŃĐŽŃ-ŃĐșа ŃŃŃŃĐ»Đșа"
msgid "Movement in camera space"
msgstr "Đ ŃŃ
Ń ĐżŃĐŸŃŃĐŸŃŃ ĐșĐ°ĐŒĐ”ŃĐž"
+msgid "â„+Left mouse button"
+msgstr "â„+ĐŃĐČа ĐșĐœĐŸĐżĐșа ĐŒĐžŃŃ"
+
msgid "Select a part"
msgstr "ĐОбДŃŃŃŃ ŃаŃŃĐžĐœŃ"
+msgid "â+Left mouse button"
+msgstr "â+ĐŃĐČа ĐșĐœĐŸĐżĐșа ĐŒĐžŃŃ"
+
msgid "Select multiple objects"
msgstr "ĐОбŃаŃĐž ĐșŃĐ»ŃĐșа ĐŸĐ±'ŃĐșŃŃĐČ"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl+бŃĐŽŃ-ŃĐșа ŃŃŃŃĐ»Đșа"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt+ĐŃĐČа ĐșĐœĐŸĐżĐșа ĐŒĐžŃŃ"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl+ĐŃĐČа ĐșĐœĐŸĐżĐșа ĐŒĐžŃŃ"
+
msgid "Shift+Left mouse button"
msgstr "Shift+ĐŃĐČа ĐșĐœĐŸĐżĐșа ĐŒĐžŃŃ"
@@ -8719,12 +8759,24 @@ msgstr "йаŃŃĐ»Đșа"
msgid "Move: press to snap by 1mm"
msgstr "ĐĐ”ŃĐ”ĐŒŃŃĐ”ĐœĐœŃ: ĐœĐ°ŃĐžŃĐœŃŃŃ ĐŽĐ»Ń ĐżĐ”ŃĐ”ĐŒŃŃĐ”ĐœĐœŃ ĐœĐ° 1 ĐŒĐŒ"
+msgid "â+Mouse wheel"
+msgstr "â+ĐĐŸĐ»Đ”ŃĐŸ ĐŒĐžŃŃ"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "ĐŃĐŽŃŃĐžĐŒĐșа/ĐĐŸĐ»ŃŃĐœĐ” ĐŒĐ°Đ»ŃĐČĐ°ĐœĐœŃ: ŃДгŃĐ»ŃĐČĐ°ĐœĐœŃ ŃаЎŃŃŃа пДŃа"
+msgid "â„+Mouse wheel"
+msgstr "â„+ĐĐŸĐ»Đ”ŃĐŸ ĐŒĐžŃŃ"
+
msgid "Support/Color Painting: adjust section position"
msgstr "ĐŃĐŽŃŃĐžĐŒĐșа/ĐșĐŸĐ»ŃĐŸŃĐŸĐČĐ” ŃаŃбŃĐČĐ°ĐœĐœŃ: ŃДгŃĐ»ŃĐČĐ°ĐœĐœŃ ĐżĐŸĐ»ĐŸĐ¶Đ”ĐœĐœŃ ŃĐ”ĐșŃŃĐč"
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl+ĐĐŸĐ»Đ”ŃĐŸ ĐŒĐžŃŃ"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+ĐșĐŸĐ»Đ”ŃĐŸ ĐŒĐžŃŃ"
+
msgid "Gizmo"
msgstr "Gizmo"
@@ -9780,25 +9832,32 @@ msgid "Apply gap fill"
msgstr "ĐĐ°ĐżĐŸĐČĐœĐ”ĐœĐœŃ ĐżŃĐŸĐŒŃжĐșŃĐČ"
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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
-"only\n"
-"3. Nowhere: Disables gap fill\n"
-msgstr ""
-"ĐĐŒĐžĐșĐ°Ń Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃ ĐżŃĐŸĐŒŃжĐșŃĐČ ĐŽĐ»Ń ĐČОбŃĐ°ĐœĐžŃ
ĐżĐŸĐČĐ”ŃŃ
ĐŸĐœŃ. ĐŃĐœŃĐŒĐ°Đ»ŃĐœŃ ĐŽĐŸĐČĐ¶ĐžĐœŃ "
-"ĐżŃĐŸĐŒŃжĐșŃ, ŃĐșĐžĐč бŃĐŽĐ” Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐŸ, ĐŒĐŸĐ¶ĐœĐ° ĐșĐŸĐœŃŃĐŸĐ»ŃĐČаŃĐž за ĐŽĐŸĐżĐŸĐŒĐŸĐłĐŸŃ ĐŸĐżŃŃŃ "
-"\"ĐŃĐŽŃŃĐ»ŃŃŃŃĐČаŃĐž ĐșŃĐžŃ
ŃŃĐœŃ ĐżŃĐŸĐŒŃжĐșĐž\" ĐœĐžĐ¶ŃĐ”.\n"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
"\n"
-"ĐаŃĐ°ĐŒĐ”ŃŃĐž:\n"
-"1. ĐĄĐșŃŃĐ·Ń: ĐаŃŃĐŸŃĐŸĐČŃŃ Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃ ĐżŃĐŸĐŒŃжĐșŃĐČ ĐŽĐŸ ĐČĐ”ŃŃ
ĐœŃĐŸŃ, ĐœĐžĐ¶ĐœŃĐŸŃ Ńа "
-"ĐČĐœŃŃŃŃŃĐœŃŃ
ŃŃŃŃĐ»ŃĐœĐžŃ
ĐżĐŸĐČĐ”ŃŃ
ĐŸĐœŃ\n"
-"2. ĐĐ”ŃŃ
ĐœŃ Ńа ĐœĐžĐ¶ĐœŃ ĐżĐŸĐČĐ”ŃŃ
ĐœŃ: ĐаŃŃĐŸŃĐŸĐČŃŃ Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃ Đ»ĐžŃĐ” ĐŽĐŸ ĐČĐ”ŃŃ
ĐœŃĐŸŃ Ńа "
-"ĐœĐžĐ¶ĐœŃĐŸŃ ĐżĐŸĐČĐ”ŃŃ
ĐŸĐœŃ\n"
-"3. ĐŃĐŽĐ”: ĐĐžĐŒĐžĐșĐ°Ń Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃ ĐżŃĐŸĐŒŃжĐșŃĐČ\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
+msgstr ""
msgid "Everywhere"
msgstr "ĐŃŃĐŽĐž"
@@ -9873,10 +9932,11 @@ msgstr "ĐĐŸŃŃĐș ĐŒĐŸŃŃŃ"
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"ĐąŃĐŸŃ
Đž Đ·ĐŒĐ”ĐœŃŃŃŃ ŃĐ” Đ·ĐœĐ°ŃĐ”ĐœĐœŃ (ĐœĐ°ĐżŃĐžĐșлаЎ, 0.9), ŃĐŸĐ± Đ·ĐŒĐ”ĐœŃĐžŃĐž ĐșŃĐ»ŃĐșŃŃŃŃ "
-"ĐŒĐ°ŃĐ”ŃŃĐ°Đ»Ń ĐŽĐ»Ń ĐŒĐŸŃŃŃ, ŃĐŸĐ± ĐżĐŸĐșŃаŃĐžŃĐž ĐżŃĐŸĐČĐžŃĐ°ĐœĐœŃ"
msgid "Internal bridge flow ratio"
msgstr "ĐĐŸĐ”ŃŃŃŃŃĐœŃ ĐżĐŸŃĐŸĐșŃ ĐŽĐ»Ń ĐČĐœŃŃŃŃŃĐœŃŃ
ĐŒĐŸŃŃŃĐČ"
@@ -9884,30 +9944,33 @@ msgstr "ĐĐŸĐ”ŃŃŃŃŃĐœŃ ĐżĐŸŃĐŸĐșŃ ĐŽĐ»Ń ĐČĐœŃŃŃŃŃĐœŃŃ
ĐŒĐŸŃŃŃ
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
-"ĐŠĐ” Đ·ĐœĐ°ŃĐ”ĐœĐœŃ ĐČĐžĐ·ĐœĐ°ŃĐ°Ń ŃĐŸĐČŃĐžĐœŃ ĐČĐœŃŃŃŃŃĐœŃĐŸĐłĐŸ ĐŒĐŸŃŃĐŸĐČĐžĐŽĐœĐŸĐłĐŸ ŃаŃŃ. ĐŠĐ” пДŃŃĐžĐč ŃĐ°Ń "
-"ĐœĐ°ĐŽ ĐČĐœŃŃŃŃŃĐœŃĐŒ Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃĐŒ. ĐĐŒĐ”ĐœŃŃŃŃ ŃĐ” Đ·ĐœĐ°ŃĐ”ĐœĐœŃ (ĐœĐ°ĐżŃĐžĐșлаЎ, ĐŽĐŸ 0,9), ŃĐŸĐ± "
-"ĐżĐŸĐșŃаŃĐžŃĐž ŃĐșŃŃŃŃ ĐżĐŸĐČĐ”ŃŃ
ĐœŃ ĐœĐ°ĐŽ ĐČĐœŃŃŃŃŃĐœŃĐŒ Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃĐŒ."
msgid "Top surface flow ratio"
msgstr "ĐĐŸĐ”ŃŃŃŃŃĐœŃ ĐżĐŸŃĐŸĐșŃ ĐČĐ”ŃŃ
ĐœŃĐŸŃ ĐżĐŸĐČĐ”ŃŃ
ĐœŃ"
msgid ""
"This factor affects the amount of material for top solid infill. You can "
-"decrease it slightly to have smooth surface finish"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"ĐŠĐ”Đč ŃаĐșŃĐŸŃ ĐČплОĐČĐ°Ń ĐœĐ° ĐșŃĐ»ŃĐșŃŃŃŃ ĐŒĐ°ŃĐ”ŃŃĐ°Đ»Ń ĐŽĐ»Ń Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃ ĐČĐ”ŃŃ
ĐœŃĐŸĐłĐŸ "
-"ŃĐČĐ”ŃĐŽĐŸĐłĐŸŃŃла. ĐĐŸĐ¶ĐœĐ° ŃŃĐŸŃ
Đž Đ·ĐŒĐ”ĐœŃĐžŃĐž ĐčĐŸĐłĐŸ, ŃĐŸĐ± ĐŸŃŃĐžĐŒĐ°ŃĐž глаЎĐșŃ "
-"ŃĐŸŃŃŃĐșŃŃŃŃĐżĐŸĐČĐ”ŃŃ
ĐœŃ"
msgid "Bottom surface flow ratio"
msgstr "ĐĐŸĐ”ŃŃŃŃŃĐœŃ ĐżĐŸŃĐŸĐșŃ ĐœĐžĐ¶ĐœŃĐŸŃ ĐżĐŸĐČĐ”ŃŃ
ĐœŃ"
-msgid "This factor affects the amount of material for bottom solid infill"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
msgstr ""
-"ĐŠĐ”Đč ŃаĐșŃĐŸŃ ĐČплОĐČĐ°Ń ĐœĐ° ĐșŃĐ»ŃĐșŃŃŃŃ ĐŒĐ°ŃĐ”ŃŃĐ°Đ»Ń ĐŽĐ»Ń Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃ ĐœĐžĐ¶ĐœŃĐŸĐłĐŸ "
-"ŃĐČĐ”ŃĐŽĐŸĐłĐŸŃŃла"
msgid "Precise wall"
msgstr "ĐąĐŸŃĐœĐ° ŃŃŃĐœĐșа"
@@ -10081,12 +10144,26 @@ msgstr ""
msgid "Slow down for curled perimeters"
msgstr "ĐŁĐżĐŸĐČŃĐ»ŃĐœĐ”ĐœĐœŃ ĐŽĐ»Ń ĐœĐ°ĐČĐžŃаŃŃĐžŃ
пДŃĐžĐŒĐ”ŃŃŃĐČ"
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
msgstr ""
-"ĐŁĐČŃĐŒĐșĐœŃŃŃ ŃĐ”Đč паŃĐ°ĐŒĐ”ŃŃ, ŃĐŸĐ± ŃĐżĐŸĐČŃĐ»ŃĐœĐžŃĐž ĐŽŃŃĐș Ń Đ·ĐŸĐœĐ°Ń
, ĐŽĐ” ĐŒĐŸĐ¶ŃŃŃ ŃŃĐœŃĐČаŃĐž "
-"ĐżĐŸŃĐ”ĐœŃŃĐčĐœĐŸ ĐœĐ°ĐČĐžŃаŃŃŃ ĐżĐ”ŃĐžĐŒĐ”ŃŃĐž"
msgid "mm/s or %"
msgstr "ĐŒĐŒ/Ń Đ°Đ±ĐŸ %"
@@ -10094,8 +10171,14 @@ msgstr "ĐŒĐŒ/Ń Đ°Đ±ĐŸ %"
msgid "External"
msgstr "ĐĐŸĐČĐœŃŃĐœŃ"
-msgid "Speed of bridge and completely overhang wall"
-msgstr "ĐšĐČОЎĐșŃŃŃŃ ĐŒĐŸŃŃŃ Ń ĐżĐ”ŃĐžĐŒĐ”ŃŃ, ŃĐŸ ĐżĐŸĐČĐœŃŃŃŃ Đ·ĐČĐžŃаŃ"
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "ĐŒĐŒ/Ń"
@@ -10104,11 +10187,9 @@ msgid "Internal"
msgstr "ĐĐœŃŃŃŃŃĐœŃ"
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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
-"ĐšĐČОЎĐșŃŃŃŃ ĐČĐœŃŃŃŃŃĐœŃĐŸĐłĐŸ ĐŒĐŸŃŃŃ. ĐŻĐșŃĐŸ Đ·ĐœĐ°ŃĐ”ĐœĐœŃ ĐČĐžŃĐ°Đ¶Đ”ĐœĐŸ Ń ĐČŃĐŽŃĐŸŃĐșаŃ
, ĐČĐŸĐœĐŸ бŃĐŽĐ” "
-"ŃĐŸĐ·ŃаŃ
ĐŸĐČĐ°ĐœĐŸ ĐœĐ° ĐŸŃĐœĐŸĐČŃ bridge_speed. ĐĐœĐ°ŃĐ”ĐœĐœŃ Đ·Đ° Đ·Đ°ĐŒĐŸĐČŃŃĐČĐ°ĐœĐœŃĐŒ - 150%."
msgid "Brim width"
msgstr "КОŃĐžĐœĐ° ĐșаĐčĐŒĐž"
@@ -10744,6 +10825,17 @@ msgstr ""
"0,95 ĐŽĐŸ 1,05. ĐĐŸĐ¶Đ»ĐžĐČĐŸ, ĐČĐž ĐŒĐŸĐ¶Đ”ŃĐ” ĐœĐ°Đ»Đ°ŃŃŃĐČаŃĐž ŃĐ” Đ·ĐœĐ°ŃĐ”ĐœĐœŃ, ŃĐŸĐ± ĐŸŃŃĐžĐŒĐ°ŃĐž "
"Ń
ĐŸŃĐŸŃŃ ĐżĐ»ĐŸŃĐșŃ ĐżĐŸĐČĐ”ŃŃ
ĐœŃ, ĐșĐŸĐ»Đž Ń ĐœĐ”ĐČДлОĐșĐ” пДŃĐ”ĐżĐŸĐČĐœĐ”ĐœĐœŃ Đ°Đ±ĐŸ ĐœĐ”ĐŽĐŸĐ»ĐžĐČ"
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "ĐŁĐČŃĐŒĐșĐœŃŃĐž ĐČОпДŃĐ”ĐŽĐ¶Đ”ĐœĐœŃ ŃĐžŃĐșŃ PA"
@@ -10923,18 +11015,29 @@ msgstr "ĐŒĐŒÂł/Ń"
msgid "Filament load time"
msgstr "Đ§Đ°Ń Đ·Đ°ĐČĐ°ĐœŃĐ°Đ¶Đ”ĐœĐœŃ ŃŃĐ»Đ°ĐŒĐ”ĐœŃŃ"
-msgid "Time to load new filament when switch filament. For statistics only"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
msgstr ""
-"Đ§Đ°Ń Đ·Đ°ĐČĐ°ĐœŃĐ°Đ¶Đ”ĐœĐœŃ ĐœĐŸĐČĐŸĐłĐŸ ŃŃĐ»Đ°ĐŒĐ”ĐœŃŃ ĐżŃĐž пДŃĐ”ĐŒĐžĐșĐ°ĐœĐœŃ ŃŃĐ»Đ°ĐŒĐ”ĐœŃŃ. ĐąŃĐ»ŃĐșĐž ĐŽĐ»Ń "
-"ŃŃаŃĐžŃŃĐžĐșĐž"
msgid "Filament unload time"
msgstr "Đ§Đ°Ń ĐČĐžĐČĐ°ĐœŃĐ°Đ¶Đ”ĐœĐœŃ ŃŃĐ»Đ°ĐŒĐ”ĐœŃŃ"
-msgid "Time to unload old filament when switch filament. For statistics only"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
msgstr ""
-"Đ§Đ°Ń ĐČĐžĐČĐ°ĐœŃĐ°Đ¶Đ”ĐœĐœŃ ĐœĐŸĐČĐŸĐłĐŸ ŃŃĐ»Đ°ĐŒĐ”ĐœŃŃ ĐżŃĐž пДŃĐ”ĐŒĐžĐșĐ°ĐœĐœŃ ŃŃĐ»Đ°ĐŒĐ”ĐœŃŃ. ĐąŃĐ»ŃĐșĐž ĐŽĐ»Ń "
-"ŃŃаŃĐžŃŃĐžĐșĐž"
msgid ""
"Filament diameter is used to calculate extrusion in gcode, so it's important "
@@ -11073,15 +11176,6 @@ msgstr "ĐšĐČОЎĐșŃŃŃŃ ĐŸŃŃĐ°ĐœĐœŃĐŸĐłĐŸ ĐŸŃ
ĐŸĐ»ĐŸĐŽĐ¶ŃŃŃĐŸĐłĐŸ ŃŃ
msgid "Cooling moves are gradually accelerating towards this speed."
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 "ĐаŃĐ°ĐŒĐ”ŃŃĐž ŃĐ°ĐŒĐŒŃĐœĐłŃ"
@@ -11092,15 +11186,6 @@ 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 "ĐŁĐČŃĐŒĐșĐœŃŃĐž ĐœĐ°ĐșĐ°Ń ĐŽĐ»Ń Đ±Đ°ĐłĐ°ŃĐŸŃĐœŃŃŃŃĐŒĐ”ĐœŃалŃĐœĐžŃ
ŃŃŃĐ°ĐœĐŸĐČĐŸĐș"
@@ -11463,10 +11548,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» ĐŽĐŸ ĐŒĐ°ĐșŃĐžĐŒŃĐŒŃ ĐœĐ° ŃŃĐČĐœŃ "
@@ -11540,8 +11625,11 @@ msgstr "ĐŃĐŽŃŃĐ»ŃŃŃŃĐČаŃĐž ĐșŃĐžŃ
ŃŃĐœŃ Đ·Đ°Đ·ĐŸŃĐž"
msgid "Layers and Perimeters"
msgstr "КаŃĐž Ńа пДŃĐžĐŒĐ”ŃŃĐž"
-msgid "Filter out gaps smaller than the threshold specified"
-msgstr "ĐŃĐŽŃŃĐ»ŃŃŃŃĐčŃĐ” ĐżŃĐŸĐłĐ°Đ»ĐžĐœĐž, ĐŒĐ”ĐœŃŃ Đ·Đ° ĐČĐșĐ°Đ·Đ°ĐœĐžĐč ĐżĐŸŃŃĐł"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
+msgstr ""
msgid ""
"Speed of gap infill. Gap usually has irregular line width and should be "
@@ -13671,33 +13759,40 @@ msgid "Activate temperature control"
msgstr "ĐŁĐČŃĐŒĐșĐœŃŃĐž ĐșĐŸĐœŃŃĐŸĐ»Ń ŃĐ”ĐŒĐżĐ”ŃаŃŃŃĐž"
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)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
-"ĐŁĐČŃĐŒĐșĐœŃŃŃ ŃŃ ĐŸĐżŃŃŃ ĐŽĐ»Ń ĐșĐ”ŃŃĐČĐ°ĐœĐœŃ ŃĐ”ĐŒĐżĐ”ŃаŃŃŃĐŸŃ ĐČ ĐșĐ°ĐŒĐ”ŃŃ. ĐĐ”ŃДЎ "
-"\"machine_start_gcode\" бŃĐŽĐ” ĐŽĐŸĐŽĐ°ĐœĐŸ ĐșĐŸĐŒĐ°ĐœĐŽŃ M191\n"
-"ĐĐŸĐŒĐ°ĐœĐŽĐž G-ĐșĐŸĐŽŃ: M141/M191 S(0-255)"
msgid "Chamber temperature"
msgstr "ĐąĐ”ĐŒĐżĐ”ŃаŃŃŃа ĐČ ĐșĐ°ĐŒĐ”ŃŃ"
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
msgstr ""
-"ĐĐžŃа ŃĐ”ĐŒĐżĐ”ŃаŃŃŃа ĐșĐ°ĐŒĐ”ŃĐž ĐŒĐŸĐ¶Đ” ĐŽĐŸĐżĐŸĐŒĐŸĐłŃĐž ŃŃŃĐžĐŒŃĐČаŃĐž Đ°Đ±ĐŸ Đ·ĐŒĐ”ĐœŃŃĐČаŃĐž ĐŽĐ”ŃĐŸŃĐŒĐ°ŃŃŃ "
-"Ńа, ĐŒĐŸĐ¶Đ»ĐžĐČĐŸ, ĐżŃĐŽĐČĐžŃĐžŃĐž ĐŒŃŃĐœŃŃŃŃ Đ·ĐČâŃĐ·ĐșŃ ĐŒŃж ŃаŃĐ°ĐŒĐž ĐŽĐ»Ń ĐŒĐ°ŃĐ”ŃŃалŃĐČ ĐČĐžŃĐŸĐșĐŸŃ "
-"ŃĐ”ĐŒĐżĐ”ŃаŃŃŃĐž, ŃаĐșĐžŃ
ŃĐș ABS, ASA, PC, PA ŃĐŸŃĐŸ. ĐŁ ŃĐŸĐč жД ŃаŃ, ĐżĐŸĐČŃŃŃŃĐœĐ° "
-"ŃŃĐ»ŃŃŃаŃŃŃ ĐŽĐ»Ń ABS Ńа ASA ĐŒĐŸĐ¶Đ” ŃŃаŃĐž ĐłŃŃŃĐ”Ń. ĐĐŽĐœĐ°Đș ĐŽĐ»Ń PLA, PETG, TPU, PVA "
-"Ńа ŃĐœŃĐžŃ
ĐŒĐ°ŃĐ”ŃŃалŃĐČ ĐœĐžĐ·ŃĐșĐŸŃ ŃĐ”ĐŒĐżĐ”ŃаŃŃŃĐž ŃаĐșŃĐžŃĐœĐ° ŃĐ”ĐŒĐżĐ”ŃаŃŃŃа ĐșĐ°ĐŒĐ”ŃĐž ĐœĐ” "
-"ĐżĐŸĐČĐžĐœĐœĐ° бŃŃĐž ĐČĐžŃĐŸĐșĐŸŃ, ŃĐŸĐ± ŃĐœĐžĐșĐœŃŃĐž заŃĐŒŃŃĐ”ĐœĐœŃ, ŃĐŸĐŒŃ ŃĐ”ĐșĐŸĐŒĐ”ĐœĐŽŃŃŃŃŃŃ ĐČĐžĐŒĐșĐœŃŃĐž "
-"ŃĐ”ĐŒĐżĐ”ŃаŃŃŃŃ ĐșĐ°ĐŒĐ”ŃĐž (0)"
msgid "Nozzle temperature for layers after the initial one"
msgstr "ĐąĐ”ĐŒĐżĐ”ŃаŃŃŃа ŃĐŸĐżĐ»Đ° ĐŽĐ»Ń ŃаŃŃĐČ ĐżŃŃĐ»Ń ĐżĐŸŃаŃĐșĐŸĐČĐŸĐłĐŸ"
@@ -13798,9 +13893,9 @@ msgstr ""
"ĐĐ°Đ»Đ”Đ¶ĐœĐŸ ĐČŃĐŽ ŃŃĐžĐČĐ°Đ»ĐŸŃŃŃ ĐŸĐżĐ”ŃаŃŃŃ ĐČĐžŃĐžŃĐ°ĐœĐœŃ, ŃĐČОЎĐșĐŸŃŃŃ Ńа ŃŃĐžĐČĐ°Đ»ĐŸŃŃŃ "
"ĐČŃŃĐłŃĐČĐ°ĐœĐœŃ Đ”ĐșŃŃŃŃĐŽĐ”Ńа/ĐœĐžŃĐșĐž, ĐŒĐŸĐ¶Đ” Đ·ĐœĐ°ĐŽĐŸĐ±ĐžŃĐžŃŃ ŃŃŃ
ĐœĐ°ĐșаŃŃ ĐŽĐ»Ń ĐœĐžŃĐșĐž. \n"
"\n"
-"ĐŻĐșŃĐŸ ĐČŃŃĐ°ĐœĐŸĐČĐžŃĐž Đ·ĐœĐ°ŃĐ”ĐœĐœŃ Ń ĐżĐ°ŃĐ°ĐŒĐ”ŃŃŃ \"ĐŃĐ»ŃĐșŃŃŃŃ ĐČŃŃĐłŃĐČĐ°ĐœĐœŃ ĐżĐ”ŃДЎ ĐČĐžŃĐžŃĐ°ĐœĐœŃĐŒ"
-"\" ĐœĐžĐ¶ŃĐ”, ĐœĐ°ĐŽĐ»ĐžŃĐșĐŸĐČĐ” ĐČŃŃĐłŃĐČĐ°ĐœĐœŃ Đ±ŃĐŽĐ” ĐČĐžĐșĐŸĐœĐ°ĐœĐŸ пДŃДЎ ĐČĐžŃĐžŃĐ°ĐœĐœŃĐŒ, ŃĐœĐ°ĐșŃĐ” ĐČĐŸĐœĐŸ "
-"бŃĐŽĐ” ĐČĐžĐșĐŸĐœĐ°ĐœĐŸ ĐżŃŃĐ»Ń ĐœŃĐŸĐłĐŸ."
+"ĐŻĐșŃĐŸ ĐČŃŃĐ°ĐœĐŸĐČĐžŃĐž Đ·ĐœĐ°ŃĐ”ĐœĐœŃ Ń ĐżĐ°ŃĐ°ĐŒĐ”ŃŃŃ \"ĐŃĐ»ŃĐșŃŃŃŃ ĐČŃŃĐłŃĐČĐ°ĐœĐœŃ ĐżĐ”ŃДЎ "
+"ĐČĐžŃĐžŃĐ°ĐœĐœŃĐŒ\" ĐœĐžĐ¶ŃĐ”, ĐœĐ°ĐŽĐ»ĐžŃĐșĐŸĐČĐ” ĐČŃŃĐłŃĐČĐ°ĐœĐœŃ Đ±ŃĐŽĐ” ĐČĐžĐșĐŸĐœĐ°ĐœĐŸ пДŃДЎ ĐČĐžŃĐžŃĐ°ĐœĐœŃĐŒ, "
+"ŃĐœĐ°ĐșŃĐ” ĐČĐŸĐœĐŸ бŃĐŽĐ” ĐČĐžĐșĐŸĐœĐ°ĐœĐŸ ĐżŃŃĐ»Ń ĐœŃĐŸĐłĐŸ."
msgid ""
"The wiping tower can be used to clean up the residue on the nozzle and "
@@ -15649,8 +15744,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 ""
"ĐĐž б пДŃĐ”ĐčĐŒĐ”ĐœŃĐČалО ĐżĐŸĐżĐ”ŃĐ”ĐŽĐœŃ ĐœĐ°Đ»Đ°ŃŃŃĐČĐ°ĐœĐœŃ ĐœĐ° «ĐОбŃĐ°ĐœĐžĐč ĐČĐ°ĐŒĐž ŃĐ”ŃŃĐčĐœĐžĐč "
@@ -16979,53 +17074,132 @@ msgstr ""
"ABS, ĐČŃĐŽĐżĐŸĐČŃĐŽĐœĐ” ĐżŃĐŽĐČĐžŃĐ”ĐœĐœŃ ŃĐ”ĐŒĐżĐ”ŃаŃŃŃĐž гаŃŃŃĐŸĐłĐŸ Đ»ŃжĐșа ĐŒĐŸĐ¶Đ” Đ·ĐŒĐ”ĐœŃĐžŃĐž "
"ĐčĐŒĐŸĐČŃŃĐœŃŃŃŃ ĐŽĐ”ŃĐŸŃĐŒĐ°ŃŃŃ."
-#~ msgid "up to"
-#~ msgstr "аж ĐŽĐŸ"
+#~ 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"
+#~ "3. Nowhere: Disables gap fill\n"
+#~ msgstr ""
+#~ "ĐĐŒĐžĐșĐ°Ń Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃ ĐżŃĐŸĐŒŃжĐșŃĐČ ĐŽĐ»Ń ĐČОбŃĐ°ĐœĐžŃ
ĐżĐŸĐČĐ”ŃŃ
ĐŸĐœŃ. ĐŃĐœŃĐŒĐ°Đ»ŃĐœŃ ĐŽĐŸĐČĐ¶ĐžĐœŃ "
+#~ "ĐżŃĐŸĐŒŃжĐșŃ, ŃĐșĐžĐč бŃĐŽĐ” Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐŸ, ĐŒĐŸĐ¶ĐœĐ° ĐșĐŸĐœŃŃĐŸĐ»ŃĐČаŃĐž за ĐŽĐŸĐżĐŸĐŒĐŸĐłĐŸŃ ĐŸĐżŃŃŃ "
+#~ "\"ĐŃĐŽŃŃĐ»ŃŃŃŃĐČаŃĐž ĐșŃĐžŃ
ŃŃĐœŃ ĐżŃĐŸĐŒŃжĐșĐž\" ĐœĐžĐ¶ŃĐ”.\n"
+#~ "\n"
+#~ "ĐаŃĐ°ĐŒĐ”ŃŃĐž:\n"
+#~ "1. ĐĄĐșŃŃĐ·Ń: ĐаŃŃĐŸŃĐŸĐČŃŃ Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃ ĐżŃĐŸĐŒŃжĐșŃĐČ ĐŽĐŸ ĐČĐ”ŃŃ
ĐœŃĐŸŃ, ĐœĐžĐ¶ĐœŃĐŸŃ Ńа "
+#~ "ĐČĐœŃŃŃŃŃĐœŃŃ
ŃŃŃŃĐ»ŃĐœĐžŃ
ĐżĐŸĐČĐ”ŃŃ
ĐŸĐœŃ\n"
+#~ "2. ĐĐ”ŃŃ
ĐœŃ Ńа ĐœĐžĐ¶ĐœŃ ĐżĐŸĐČĐ”ŃŃ
ĐœŃ: ĐаŃŃĐŸŃĐŸĐČŃŃ Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃ Đ»ĐžŃĐ” ĐŽĐŸ ĐČĐ”ŃŃ
ĐœŃĐŸŃ Ńа "
+#~ "ĐœĐžĐ¶ĐœŃĐŸŃ ĐżĐŸĐČĐ”ŃŃ
ĐŸĐœŃ\n"
+#~ "3. ĐŃĐŽĐ”: ĐĐžĐŒĐžĐșĐ°Ń Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃ ĐżŃĐŸĐŒŃжĐșŃĐČ\n"
-#~ msgid "above"
-#~ msgstr "ĐČĐžŃĐ”"
+#~ msgid ""
+#~ "Decrease this value slightly(for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag"
+#~ msgstr ""
+#~ "ĐąŃĐŸŃ
Đž Đ·ĐŒĐ”ĐœŃŃŃŃ ŃĐ” Đ·ĐœĐ°ŃĐ”ĐœĐœŃ (ĐœĐ°ĐżŃĐžĐșлаЎ, 0.9), ŃĐŸĐ± Đ·ĐŒĐ”ĐœŃĐžŃĐž ĐșŃĐ»ŃĐșŃŃŃŃ "
+#~ "ĐŒĐ°ŃĐ”ŃŃĐ°Đ»Ń ĐŽĐ»Ń ĐŒĐŸŃŃŃ, ŃĐŸĐ± ĐżĐŸĐșŃаŃĐžŃĐž ĐżŃĐŸĐČĐžŃĐ°ĐœĐœŃ"
-#~ msgid "from"
-#~ msgstr "ĐČŃĐŽ"
+#~ 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 ""
+#~ "ĐŠĐ” Đ·ĐœĐ°ŃĐ”ĐœĐœŃ ĐČĐžĐ·ĐœĐ°ŃĐ°Ń ŃĐŸĐČŃĐžĐœŃ ĐČĐœŃŃŃŃŃĐœŃĐŸĐłĐŸ ĐŒĐŸŃŃĐŸĐČĐžĐŽĐœĐŸĐłĐŸ ŃаŃŃ. ĐŠĐ” пДŃŃĐžĐč "
+#~ "ŃĐ°Ń ĐœĐ°ĐŽ ĐČĐœŃŃŃŃŃĐœŃĐŒ Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃĐŒ. ĐĐŒĐ”ĐœŃŃŃŃ ŃĐ” Đ·ĐœĐ°ŃĐ”ĐœĐœŃ (ĐœĐ°ĐżŃĐžĐșлаЎ, ĐŽĐŸ 0,9), "
+#~ "ŃĐŸĐ± ĐżĐŸĐșŃаŃĐžŃĐž ŃĐșŃŃŃŃ ĐżĐŸĐČĐ”ŃŃ
ĐœŃ ĐœĐ°ĐŽ ĐČĐœŃŃŃŃŃĐœŃĐŒ Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃĐŒ."
-#~ msgid "Switching application language while some presets are modified."
-#~ msgstr "ĐĐ”ŃĐ”ĐșĐ»ŃŃĐ”ĐœĐœŃ ĐŒĐŸĐČĐž ĐżŃĐŸĐłŃĐ°ĐŒĐž ĐżŃĐž Đ·ĐŒŃĐœŃ ĐŽĐ”ŃĐșĐžŃ
ĐżŃĐ”ŃĐ”ŃŃĐČ."
+#~ msgid ""
+#~ "This factor affects the amount of material for top solid infill. You can "
+#~ "decrease it slightly to have smooth surface finish"
+#~ msgstr ""
+#~ "ĐŠĐ”Đč ŃаĐșŃĐŸŃ ĐČплОĐČĐ°Ń ĐœĐ° ĐșŃĐ»ŃĐșŃŃŃŃ ĐŒĐ°ŃĐ”ŃŃĐ°Đ»Ń ĐŽĐ»Ń Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃ ĐČĐ”ŃŃ
ĐœŃĐŸĐłĐŸ "
+#~ "ŃĐČĐ”ŃĐŽĐŸĐłĐŸŃŃла. ĐĐŸĐ¶ĐœĐ° ŃŃĐŸŃ
Đž Đ·ĐŒĐ”ĐœŃĐžŃĐž ĐčĐŸĐłĐŸ, ŃĐŸĐ± ĐŸŃŃĐžĐŒĐ°ŃĐž глаЎĐșŃ "
+#~ "ŃĐŸŃŃŃĐșŃŃŃŃĐżĐŸĐČĐ”ŃŃ
ĐœŃ"
-#~ msgid "â+Shift+G"
-#~ msgstr "â+Shift+G"
+#~ msgid "This factor affects the amount of material for bottom solid infill"
+#~ msgstr ""
+#~ "ĐŠĐ”Đč ŃаĐșŃĐŸŃ ĐČплОĐČĐ°Ń ĐœĐ° ĐșŃĐ»ŃĐșŃŃŃŃ ĐŒĐ°ŃĐ”ŃŃĐ°Đ»Ń ĐŽĐ»Ń Đ·Đ°ĐżĐŸĐČĐœĐ”ĐœĐœŃ ĐœĐžĐ¶ĐœŃĐŸĐłĐŸ "
+#~ "ŃĐČĐ”ŃĐŽĐŸĐłĐŸŃŃла"
-#~ msgid "Ctrl+Shift+G"
-#~ msgstr "Ctrl+Shift+G"
+#~ msgid ""
+#~ "Enable this option to slow printing down in areas where potential curled "
+#~ "perimeters may exist"
+#~ msgstr ""
+#~ "ĐŁĐČŃĐŒĐșĐœŃŃŃ ŃĐ”Đč паŃĐ°ĐŒĐ”ŃŃ, ŃĐŸĐ± ŃĐżĐŸĐČŃĐ»ŃĐœĐžŃĐž ĐŽŃŃĐș Ń Đ·ĐŸĐœĐ°Ń
, ĐŽĐ” ĐŒĐŸĐ¶ŃŃŃ ŃŃĐœŃĐČаŃĐž "
+#~ "ĐżĐŸŃĐ”ĐœŃŃĐčĐœĐŸ ĐœĐ°ĐČĐžŃаŃŃŃ ĐżĐ”ŃĐžĐŒĐ”ŃŃĐž"
-#~ msgid "â+Any arrow"
-#~ msgstr "â+бŃĐŽŃ-ŃĐșа ŃŃŃŃĐ»Đșа"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "ĐšĐČОЎĐșŃŃŃŃ ĐŒĐŸŃŃŃ Ń ĐżĐ”ŃĐžĐŒĐ”ŃŃ, ŃĐŸ ĐżĐŸĐČĐœŃŃŃŃ Đ·ĐČĐžŃаŃ"
-#~ msgid "â„+Left mouse button"
-#~ msgstr "â„+ĐŃĐČа ĐșĐœĐŸĐżĐșа ĐŒĐžŃŃ"
+#~ 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 ""
+#~ "ĐšĐČОЎĐșŃŃŃŃ ĐČĐœŃŃŃŃŃĐœŃĐŸĐłĐŸ ĐŒĐŸŃŃŃ. ĐŻĐșŃĐŸ Đ·ĐœĐ°ŃĐ”ĐœĐœŃ ĐČĐžŃĐ°Đ¶Đ”ĐœĐŸ Ń ĐČŃĐŽŃĐŸŃĐșаŃ
, ĐČĐŸĐœĐŸ "
+#~ "бŃĐŽĐ” ŃĐŸĐ·ŃаŃ
ĐŸĐČĐ°ĐœĐŸ ĐœĐ° ĐŸŃĐœĐŸĐČŃ bridge_speed. ĐĐœĐ°ŃĐ”ĐœĐœŃ Đ·Đ° Đ·Đ°ĐŒĐŸĐČŃŃĐČĐ°ĐœĐœŃĐŒ - 150%."
-#~ msgid "â+Left mouse button"
-#~ msgstr "â+ĐŃĐČа ĐșĐœĐŸĐżĐșа ĐŒĐžŃŃ"
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Đ§Đ°Ń Đ·Đ°ĐČĐ°ĐœŃĐ°Đ¶Đ”ĐœĐœŃ ĐœĐŸĐČĐŸĐłĐŸ ŃŃĐ»Đ°ĐŒĐ”ĐœŃŃ ĐżŃĐž пДŃĐ”ĐŒĐžĐșĐ°ĐœĐœŃ ŃŃĐ»Đ°ĐŒĐ”ĐœŃŃ. ĐąŃĐ»ŃĐșĐž ĐŽĐ»Ń "
+#~ "ŃŃаŃĐžŃŃĐžĐșĐž"
-#~ msgid "Ctrl+Any arrow"
-#~ msgstr "Ctrl+бŃĐŽŃ-ŃĐșа ŃŃŃŃĐ»Đșа"
+#~ msgid ""
+#~ "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr ""
+#~ "Đ§Đ°Ń ĐČĐžĐČĐ°ĐœŃĐ°Đ¶Đ”ĐœĐœŃ ĐœĐŸĐČĐŸĐłĐŸ ŃŃĐ»Đ°ĐŒĐ”ĐœŃŃ ĐżŃĐž пДŃĐ”ĐŒĐžĐșĐ°ĐœĐœŃ ŃŃĐ»Đ°ĐŒĐ”ĐœŃŃ. ĐąŃĐ»ŃĐșĐž ĐŽĐ»Ń "
+#~ "ŃŃаŃĐžŃŃĐžĐșĐž"
-#~ msgid "Alt+Left mouse button"
-#~ msgstr "Alt+ĐŃĐČа ĐșĐœĐŸĐżĐșа ĐŒĐžŃŃ"
+#~ 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 "Ctrl+Left mouse button"
-#~ msgstr "Ctrl+ĐŃĐČа ĐșĐœĐŸĐżĐșа ĐŒĐžŃŃ"
+#~ 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 "â+Mouse wheel"
-#~ msgstr "â+ĐĐŸĐ»Đ”ŃĐŸ ĐŒĐžŃŃ"
+#~ msgid "Filter out gaps smaller than the threshold specified"
+#~ msgstr "ĐŃĐŽŃŃĐ»ŃŃŃŃĐčŃĐ” ĐżŃĐŸĐłĐ°Đ»ĐžĐœĐž, ĐŒĐ”ĐœŃŃ Đ·Đ° ĐČĐșĐ°Đ·Đ°ĐœĐžĐč ĐżĐŸŃŃĐł"
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„+ĐĐŸĐ»Đ”ŃĐŸ ĐŒĐžŃŃ"
+#~ 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 ""
+#~ "ĐŁĐČŃĐŒĐșĐœŃŃŃ ŃŃ ĐŸĐżŃŃŃ ĐŽĐ»Ń ĐșĐ”ŃŃĐČĐ°ĐœĐœŃ ŃĐ”ĐŒĐżĐ”ŃаŃŃŃĐŸŃ ĐČ ĐșĐ°ĐŒĐ”ŃŃ. ĐĐ”ŃДЎ "
+#~ "\"machine_start_gcode\" бŃĐŽĐ” ĐŽĐŸĐŽĐ°ĐœĐŸ ĐșĐŸĐŒĐ°ĐœĐŽŃ M191\n"
+#~ "ĐĐŸĐŒĐ°ĐœĐŽĐž G-ĐșĐŸĐŽŃ: M141/M191 S(0-255)"
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "Ctrl+ĐĐŸĐ»Đ”ŃĐŸ ĐŒĐžŃŃ"
-
-#~ msgid "Alt+Mouse wheel"
-#~ msgstr "Alt+ĐșĐŸĐ»Đ”ŃĐŸ ĐŒĐžŃŃ"
+#~ 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 ""
+#~ "ĐĐžŃа ŃĐ”ĐŒĐżĐ”ŃаŃŃŃа ĐșĐ°ĐŒĐ”ŃĐž ĐŒĐŸĐ¶Đ” ĐŽĐŸĐżĐŸĐŒĐŸĐłŃĐž ŃŃŃĐžĐŒŃĐČаŃĐž Đ°Đ±ĐŸ Đ·ĐŒĐ”ĐœŃŃĐČаŃĐž "
+#~ "ĐŽĐ”ŃĐŸŃĐŒĐ°ŃŃŃ Ńа, ĐŒĐŸĐ¶Đ»ĐžĐČĐŸ, ĐżŃĐŽĐČĐžŃĐžŃĐž ĐŒŃŃĐœŃŃŃŃ Đ·ĐČâŃĐ·ĐșŃ ĐŒŃж ŃаŃĐ°ĐŒĐž ĐŽĐ»Ń "
+#~ "ĐŒĐ°ŃĐ”ŃŃалŃĐČ ĐČĐžŃĐŸĐșĐŸŃ ŃĐ”ĐŒĐżĐ”ŃаŃŃŃĐž, ŃаĐșĐžŃ
ŃĐș ABS, ASA, PC, PA ŃĐŸŃĐŸ. ĐŁ ŃĐŸĐč жД "
+#~ "ŃаŃ, ĐżĐŸĐČŃŃŃŃĐœĐ° ŃŃĐ»ŃŃŃаŃŃŃ ĐŽĐ»Ń ABS Ńа ASA ĐŒĐŸĐ¶Đ” ŃŃаŃĐž ĐłŃŃŃĐ”Ń. ĐĐŽĐœĐ°Đș ĐŽĐ»Ń "
+#~ "PLA, PETG, TPU, PVA Ńа ŃĐœŃĐžŃ
ĐŒĐ°ŃĐ”ŃŃалŃĐČ ĐœĐžĐ·ŃĐșĐŸŃ ŃĐ”ĐŒĐżĐ”ŃаŃŃŃĐž ŃаĐșŃĐžŃĐœĐ° "
+#~ "ŃĐ”ĐŒĐżĐ”ŃаŃŃŃа ĐșĐ°ĐŒĐ”ŃĐž ĐœĐ” ĐżĐŸĐČĐžĐœĐœĐ° бŃŃĐž ĐČĐžŃĐŸĐșĐŸŃ, ŃĐŸĐ± ŃĐœĐžĐșĐœŃŃĐž заŃĐŒŃŃĐ”ĐœĐœŃ, ŃĐŸĐŒŃ "
+#~ "ŃĐ”ĐșĐŸĐŒĐ”ĐœĐŽŃŃŃŃŃŃ ĐČĐžĐŒĐșĐœŃŃĐž ŃĐ”ĐŒĐżĐ”ŃаŃŃŃŃ ĐșĐ°ĐŒĐ”ŃĐž (0)"
#~ msgid ""
#~ "Different nozzle diameters and different filament diameters is not "
diff --git a/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po b/localization/i18n/zh_CN/OrcaSlicer_zh_CN.po
index 604c6c6d7c..c8ac4dbc22 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-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: 2024-07-28 07:12+0000\n"
"Last-Translator: Handle \n"
"Language-Team: \n"
@@ -77,6 +77,9 @@ msgstr "æșèœćĄ«ć
è§ćșŠ"
msgid "On overhangs only"
msgstr "ä»
ćŻčæŹç©șćșçæ"
+msgid "Auto support threshold angle: "
+msgstr "èȘćšæŻæè§ćșŠéćŒïŒ"
+
msgid "Circle"
msgstr "ć"
@@ -96,9 +99,6 @@ msgstr "ç»ć¶ä»
ćŻčç±%1%éäžçéąççæ"
msgid "Highlight faces according to overhang angle."
msgstr "æ čæźćœćèźŸçœźçæŹç©șè§ćșŠæ„é«äșźçéąă"
-msgid "Auto support threshold angle: "
-msgstr "èȘćšæŻæè§ćșŠéćŒïŒ"
-
msgid "No auto support"
msgstr "æ èȘćšæŻæ"
@@ -1939,6 +1939,9 @@ msgstr "çźćæšĄć"
msgid "Center"
msgstr "ć±
äž"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "çŒèŸć·„èșćæ°"
@@ -3969,6 +3972,15 @@ msgstr "æ»æ¶éŽ"
msgid "Total cost"
msgstr "æ»ææŹ"
+msgid "up to"
+msgstr "蟟ć°"
+
+msgid "above"
+msgstr "é«äș"
+
+msgid "from"
+msgstr "ä»"
+
msgid "Color Scheme"
msgstr "éąèČæčæĄ"
@@ -4032,12 +4044,12 @@ msgstr "æąææŹĄæ°"
msgid "Cost"
msgstr "ææŹ"
-msgid "Print"
-msgstr "æć°"
-
msgid "Color change"
msgstr "éąèȿ޿ą"
+msgid "Print"
+msgstr "æć°"
+
msgid "Printer"
msgstr "æć°æș"
@@ -4222,7 +4234,7 @@ msgstr "äœç§ŻïŒ"
msgid "Size:"
msgstr "ć°ș毞ïŒ"
-#, 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)."
@@ -4661,6 +4673,18 @@ msgstr "ç»è°"
msgid "Flow rate test - Pass 2"
msgstr "æ”éæ”èŻ - éèż 2"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "æ”é"
@@ -5866,19 +5890,14 @@ msgstr "æŁæ”ć°ć€é¶ä»¶ćŻčè±Ą"
msgid "The file does not contain any geometry data."
msgstr "æ€æä»¶äžć
ć«ä»»äœć äœæ°æźă"
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-
-msgid "Object too large"
-msgstr "ćŻčè±Ąć€Ș性"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
msgstr "ćŻčè±Ąçè”·æ„ć€Ș性ïŒćžæć°ćŻčè±ĄèȘćšçŒ©ć°ä»„éćșçćșćïŒ"
+msgid "Object too large"
+msgstr "ćŻčè±Ąć€Ș性"
+
msgid "Export STL file:"
msgstr "ćŻŒćș STL æä»¶ïŒ"
@@ -6234,6 +6253,9 @@ msgstr "æŻćŠç»§ç»ïŒ"
msgid "Language selection"
msgstr "èŻèšéæ©"
+msgid "Switching application language while some presets are modified."
+msgstr "ćšćæąćșçšèŻèšäčććç°æäșćæ°éąèźŸææŽæčă"
+
msgid "Changing application language"
msgstr "æŁćšäžșćșçšçšćșćæąèŻèš"
@@ -7278,8 +7300,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"
"ćłéźć㻿㰿żçç©șçœäœçœźïŒéæ©âæ·»ć æ ćæšĄćâ->âć»¶æ¶æćœ±æŠæćĄâă"
@@ -8099,7 +8121,10 @@ msgstr "ćŻčè±ĄćèĄš"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "ä»STL/STEP/3MF/OBJ/AMFæä»¶äžćŻŒć
„ć äœæ°æź"
-msgid "Shift+G"
+msgid "â+Shift+G"
+msgstr ""
+
+msgid "Ctrl+Shift+G"
msgstr ""
msgid "Paste from clipboard"
@@ -8149,18 +8174,33 @@ msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr "æ¶è”·/ć±ćŒ 䟧èŸčæ "
-msgid "Any arrow"
-msgstr ""
+msgid "â+Any arrow"
+msgstr "â+æčćéź"
msgid "Movement in camera space"
msgstr "æČżçžæșè§è§ç§»ćšćŻčè±Ą"
+msgid "â„+Left mouse button"
+msgstr "â„+éŒ æ ć·Šéź"
+
msgid "Select a part"
msgstr "éæ©ćäžȘé¶ä»¶"
+msgid "â+Left mouse button"
+msgstr "â+éŒ æ ć·Šéź"
+
msgid "Select multiple objects"
msgstr "éæ©ć€äžȘćŻčè±Ą"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl+æčćéź"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt+éŒ æ ć·Šéź"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl+éŒ æ ć·Šéź"
+
msgid "Shift+Left mouse button"
msgstr "Shift+éŒ æ ć·Šéź"
@@ -8263,12 +8303,24 @@ msgstr "ćć€"
msgid "Move: press to snap by 1mm"
msgstr "ç§»ćšïŒä»„1mmäžșæ„èżç§»ćš"
+msgid "â+Mouse wheel"
+msgstr "â+éŒ æ æ»èœź"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "æŻæ/éąèČç»ć¶ïŒè°èç»çŹććŸ"
+msgid "â„+Mouse wheel"
+msgstr "â„+éŒ æ æ»èœź"
+
msgid "Support/Color Painting: adjust section position"
msgstr "æŻæ/èČćœ©ç»ć¶ïŒè°èćéąäœçœź"
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl+éŒ æ æ»èœź"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+éŒ æ æ»èœź"
+
msgid "Gizmo"
msgstr ""
@@ -9220,14 +9272,31 @@ msgid "Apply gap fill"
msgstr "ćŻçšéŽé楫ć
"
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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
-"only\n"
-"3. Nowhere: Disables gap fill\n"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
+"\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
msgstr ""
msgid "Everywhere"
@@ -9294,8 +9363,11 @@ msgstr "æĄ„æ„æ”é"
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
-msgstr "çšćŸźćć°èżäžȘæ°ćŒïŒæŻćŠ0.9ïŒćŻä»„ćć°æĄ„æ„çææéïŒæ„æčćäžćă"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
msgid "Internal bridge flow ratio"
msgstr "ć
éšææĄ„æ”éæŻäŸ"
@@ -9303,7 +9375,11 @@ msgstr "ć
éšææĄ„æ”éæŻäŸ"
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
msgid "Top surface flow ratio"
@@ -9311,14 +9387,21 @@ msgstr "饶éšèĄšéąæ”éæŻäŸ"
msgid ""
"This factor affects the amount of material for top solid infill. You can "
-"decrease it slightly to have smooth surface finish"
-msgstr "çšćŸźćć°èżäžȘæ°ćŒïŒæŻćŠ0.97ïŒćŻä»„æ„æčć饶éąçć
æ»çšćșŠă"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
msgid "Bottom surface flow ratio"
msgstr "ćșéšèĄšéąæ”éæŻäŸ"
-msgid "This factor affects the amount of material for bottom solid infill"
-msgstr "éŠć±æ”éè°æŽçł»æ°ïŒé»èź€äžș1.0"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
msgid "Precise wall"
msgstr "çČŸćć€ćąć°ș毞"
@@ -9468,10 +9551,26 @@ msgstr "ćŻçšæ€ééĄčć°éäœäžćæŹćçšćșŠçè”°çșżçæć°éćșŠ"
msgid "Slow down for curled perimeters"
msgstr "çżèŸčéé"
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
-msgstr "ćŻçšèżäžȘééĄčïŒéäœćŻèœććšć·æČéšäœçæć°éćșŠ"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
+msgstr ""
msgid "mm/s or %"
msgstr "mm/s æ %"
@@ -9479,8 +9578,14 @@ msgstr "mm/s æ %"
msgid "External"
msgstr "ć€éš"
-msgid "Speed of bridge and completely overhang wall"
-msgstr "æĄ„æ„ććźć
šæŹç©șçć€ćąçæć°éćșŠ"
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "mm/s"
@@ -9489,11 +9594,9 @@ msgid "Internal"
msgstr "ć
éš"
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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
-"ć
éšæĄ„æ„çéćșŠăćŠæèŻ„ćŒä»„çŸćæŻèĄšç€șïŒćć°æ čæźæĄ„æ„éćșŠèżèĄèźĄçźăé»èź€ćŒäžș"
-"150%ă"
msgid "Brim width"
msgstr "BrimćźœćșŠ"
@@ -10066,6 +10169,17 @@ msgstr ""
"éăæšèçèćŽäžș0.95ć°1.05ăćç°ć€§ćčłć±æšĄćçéĄ¶éąæèœ»ćŸźççŒșææć€ææ¶ïŒæèźžćŻ"
"仄ć°èŻćŸźè°èżäžȘćæ°ă"
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "ćŻçšććæć"
@@ -10240,14 +10354,29 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "ć 蜜èæäžçæ¶éŽ"
-msgid "Time to load new filament when switch filament. For statistics only"
-msgstr "ćæąèæäžæ¶ïŒć 蜜æ°èæäžæéçæ¶éŽăćȘçšäșç»èźĄäżĄæŻă"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
msgid "Filament unload time"
msgstr "ćžèœœèæäžçæ¶éŽ"
-msgid "Time to unload old filament when switch filament. For statistics only"
-msgstr "ćæąèæäžæ¶ïŒćžèœœæ§çèæäžæéæ¶éŽăćȘçšäșç»èźĄäżĄæŻă"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
+msgstr ""
msgid ""
"Filament diameter is used to calculate extrusion in gcode, so it's important "
@@ -10370,14 +10499,6 @@ msgstr "æćäžæŹĄć·ćŽç§»ćšçéćșŠ"
msgid "Cooling moves are gradually accelerating towards this speed."
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代ç ïŒćŠT1ïŒT2ïŒïŒæć°æșćșä»¶ïŒæMulti Material Unit 2.0ïŒć 蜜"
-"æ°èæçæéæ¶éŽăèŻ„æ¶éŽć°äŒèą«G-codeæ¶éŽèŻäŒ°ćèœć ć°æ»æć°æ¶éŽäžć»ă"
-
msgid "Ramming parameters"
msgstr "ć°ç«Żæććæ°"
@@ -10386,14 +10507,6 @@ msgid ""
"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ä»Łç æ¶ćŠT1ïŒT2ïŒïŒæć°æșćșä»¶ïŒæMMU2.0ïŒćžèœœèææéæ¶éŽăèŻ„æ¶"
-"éŽć°äŒèą«G-codeæ¶éŽèŻäŒ°ćèœć ć°æ»æć°æ¶éŽäžć»ă"
-
msgid "Enable ramming for multitool setups"
msgstr "ćŻçšć€èČć°ç«ŻæćèźŸçœź"
@@ -10718,10 +10831,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 ""
"éŁæéćșŠć°ä»âçŠçšçŹŹäžć±âçé¶çșżæ§äžćć°âć
šéŁæéćșŠć±âçæć€§ăćŠæäœäșâçŠçšéŁæ"
"珏äžć±âïŒćâć
šéŁæéćșŠçŹŹäžć±âć°èą«ćżœç„ïŒćšèżç§æ
ć”äžïŒéŁæć°ćšâçŠçšéŁæçŹŹäž"
@@ -10782,8 +10895,11 @@ msgstr "ćżœç„ćŸźć°éŽé"
msgid "Layers and Perimeters"
msgstr "ć±ććą"
-msgid "Filter out gaps smaller than the threshold specified"
-msgstr "ćżœç„ć°äșæćźéćŒçéŽé"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
+msgstr ""
msgid ""
"Speed of gap infill. Gap usually has irregular line width and should be "
@@ -12677,30 +12793,40 @@ msgid "Activate temperature control"
msgstr "æżæŽ»æž©ćșŠæ§ć¶"
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)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
-"ćŻçšèŻ„ééĄč仄æ§ć¶æć°ä»æž©ćșŠïŒèżć°äŒćš\"machine_start_gcode\"äčćæ·»ć äžäžȘM191ćœ"
-"什ă\n"
-"G-codećœä»€ïŒM141/M191 S(0-255)"
msgid "Chamber temperature"
msgstr "æșçź±æž©ćșŠ"
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
msgstr ""
-"æŽé«çè
æž©ćŻä»„ćžźć©æć¶æćć°çżæČïŒćæ¶ćŻèœäŒæé«é«æž©ææïŒćŠABSăASAăPCăPA"
-"çïŒçć±éŽçČććŒșćșŠăäžæ€ćæ¶ïŒABSćASAçç©șæ°èżæ»€æ§èœäŒćć·źăèćŻčäșPLAăPETGă"
-"TPUăPVAçäœæž©ææïŒäžșäșéżć
ć ”ćĄïŒćźé
çè
æž©äžćșèŻ„èżé«ïŒć æ€ćŒșçć»șèźźäœżçš0ïŒèĄš"
-"ç€șć
łéïŒă"
msgid "Nozzle temperature for layers after the initial one"
msgstr "é€éŠć±ć€çć
¶ćźć±çć·ćŽæž©ćșŠ"
@@ -14506,8 +14632,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"
@@ -15695,47 +15821,82 @@ msgstr ""
"éżć
çżæČ\n"
"æšç„éćïŒæć°ABSèżç±»æçżæČæææ¶ïŒéćœæé«çćșæž©ćșŠćŻä»„éäœçżæČçæŠçă"
-#~ msgid "up to"
-#~ msgstr "蟟ć°"
+#~ msgid ""
+#~ "Decrease this value slightly(for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag"
+#~ msgstr "çšćŸźćć°èżäžȘæ°ćŒïŒæŻćŠ0.9ïŒćŻä»„ćć°æĄ„æ„çææéïŒæ„æčćäžćă"
-#~ msgid "above"
-#~ msgstr "é«äș"
+#~ msgid ""
+#~ "This factor affects the amount of material for top solid infill. You can "
+#~ "decrease it slightly to have smooth surface finish"
+#~ msgstr "çšćŸźćć°èżäžȘæ°ćŒïŒæŻćŠ0.97ïŒćŻä»„æ„æčć饶éąçć
æ»çšćșŠă"
-#~ msgid "from"
-#~ msgstr "ä»"
+#~ msgid "This factor affects the amount of material for bottom solid infill"
+#~ msgstr "éŠć±æ”éè°æŽçł»æ°ïŒé»èź€äžș1.0"
-#~ msgid "Switching application language while some presets are modified."
-#~ msgstr "ćšćæąćșçšèŻèšäčććç°æäșćæ°éąèźŸææŽæčă"
+#~ msgid ""
+#~ "Enable this option to slow printing down in areas where potential curled "
+#~ "perimeters may exist"
+#~ msgstr "ćŻçšèżäžȘééĄčïŒéäœćŻèœććšć·æČéšäœçæć°éćșŠ"
-#~ msgid "â+Any arrow"
-#~ msgstr "â+æčćéź"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "æĄ„æ„ććźć
šæŹç©șçć€ćąçæć°éćșŠ"
-#~ msgid "â„+Left mouse button"
-#~ msgstr "â„+éŒ æ ć·Šéź"
+#~ 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 ""
+#~ "ć
éšæĄ„æ„çéćșŠăćŠæèŻ„ćŒä»„çŸćæŻèĄšç€șïŒćć°æ čæźæĄ„æ„éćșŠèżèĄèźĄçźăé»èź€ćŒäžș"
+#~ "150%ă"
-#~ msgid "â+Left mouse button"
-#~ msgstr "â+éŒ æ ć·Šéź"
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr "ćæąèæäžæ¶ïŒć 蜜æ°èæäžæéçæ¶éŽăćȘçšäșç»èźĄäżĄæŻă"
-#~ msgid "Ctrl+Any arrow"
-#~ msgstr "Ctrl+æčćéź"
+#~ msgid ""
+#~ "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr "ćæąèæäžæ¶ïŒćžèœœæ§çèæäžæéæ¶éŽăćȘçšäșç»èźĄäżĄæŻă"
-#~ msgid "Alt+Left mouse button"
-#~ msgstr "Alt+éŒ æ ć·Šéź"
+#~ 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代ç ïŒćŠT1ïŒT2ïŒïŒæć°æșćșä»¶ïŒæMulti Material Unit 2.0ïŒć "
+#~ "蜜æ°èæçæéæ¶éŽăèŻ„æ¶éŽć°äŒèą«G-codeæ¶éŽèŻäŒ°ćèœć ć°æ»æć°æ¶éŽäžć»ă"
-#~ msgid "Ctrl+Left mouse button"
-#~ msgstr "Ctrl+éŒ æ ć·Šéź"
+#~ 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ä»Łç æ¶ćŠT1ïŒT2ïŒïŒæć°æșćșä»¶ïŒæMMU2.0ïŒćžèœœèææéæ¶éŽă"
+#~ "èŻ„æ¶éŽć°äŒèą«G-codeæ¶éŽèŻäŒ°ćèœć ć°æ»æć°æ¶éŽäžć»ă"
-#~ msgid "â+Mouse wheel"
-#~ msgstr "â+éŒ æ æ»èœź"
+#~ msgid "Filter out gaps smaller than the threshold specified"
+#~ msgstr "ćżœç„ć°äșæćźéćŒçéŽé"
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„+éŒ æ æ»èœź"
+#~ 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 ""
+#~ "ćŻçšèŻ„ééĄč仄æ§ć¶æć°ä»æž©ćșŠïŒèżć°äŒćš\"machine_start_gcode\"äčćæ·»ć äžäžȘ"
+#~ "M191ćœä»€ă\n"
+#~ "G-codećœä»€ïŒM141/M191 S(0-255)"
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "Ctrl+éŒ æ æ»èœź"
-
-#~ msgid "Alt+Mouse wheel"
-#~ msgstr "Alt+éŒ æ æ»èœź"
+#~ 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 ""
+#~ "æŽé«çè
æž©ćŻä»„ćžźć©æć¶æćć°çżæČïŒćæ¶ćŻèœäŒæé«é«æž©ææïŒćŠABSăASAăPCă"
+#~ "PAçïŒçć±éŽçČććŒșćșŠăäžæ€ćæ¶ïŒABSćASAçç©șæ°èżæ»€æ§èœäŒćć·źăèćŻčäșPLAă"
+#~ "PETGăTPUăPVAçäœæž©ææïŒäžșäșéżć
ć ”ćĄïŒćźé
çè
æž©äžćșèŻ„èżé«ïŒć æ€ćŒșçć»șèźź"
+#~ "äœżçš0ïŒèĄšç€șć
łéïŒă"
#~ msgid ""
#~ "Different nozzle diameters and different filament diameters is not "
@@ -16001,8 +16162,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/zh_TW/OrcaSlicer_zh_TW.po b/localization/i18n/zh_TW/OrcaSlicer_zh_TW.po
index 4ff1c7b512..702424b747 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-08-03 18:54+0200\n"
+"POT-Creation-Date: 2024-08-23 16:24+0200\n"
"PO-Revision-Date: 2023-11-06 14:37+0800\n"
"Last-Translator: ablegods \n"
"Language-Team: \n"
@@ -85,6 +85,9 @@ msgstr "æșæ
§ćĄ«ć
è§ćșŠ"
msgid "On overhangs only"
msgstr "ć
ć°æžç©șćçæ"
+msgid "Auto support threshold angle: "
+msgstr "èȘćæŻæè§ćșŠèšçćŒïŒ"
+
#, fuzzy
msgid "Circle"
msgstr "ććœą"
@@ -107,9 +110,6 @@ msgstr "ć
ć
èš±ćšç±ä»„äžæąä»¶éžæçćčłéąäžéČèĄçčȘèŁœïŒ%1%"
msgid "Highlight faces according to overhang angle."
msgstr "æ čææžç©șè§ćșŠçȘćș饯ç€șéąă"
-msgid "Auto support threshold angle: "
-msgstr "èȘćæŻæè§ćșŠèšçćŒïŒ"
-
msgid "No auto support"
msgstr "çĄèȘćæŻæ"
@@ -1979,6 +1979,9 @@ msgstr "ç°ĄćæšĄć"
msgid "Center"
msgstr "ć±
äž"
+msgid "Drop"
+msgstr ""
+
msgid "Edit Process Settings"
msgstr "ç·šèŒŻćć°ćæž"
@@ -4094,6 +4097,15 @@ msgstr "çžœæé"
msgid "Total cost"
msgstr "çžœææŹ"
+msgid "up to"
+msgstr "éć°"
+
+msgid "above"
+msgstr "髿Œ"
+
+msgid "from"
+msgstr "ćŸ"
+
msgid "Color Scheme"
msgstr "éĄèČæčæĄ"
@@ -4161,12 +4173,12 @@ msgstr "æŽæç·ææŹĄæž"
msgid "Cost"
msgstr "ææŹ"
-msgid "Print"
-msgstr "ćć°"
-
msgid "Color change"
msgstr "éĄèȿ޿"
+msgid "Print"
+msgstr "ćć°"
+
#, fuzzy
msgid "Printer"
msgstr "ćć°èšć"
@@ -4356,7 +4368,7 @@ msgstr "é«ç©ïŒ"
msgid "Size:"
msgstr "ć°ș毞ïŒ"
-#, fuzzy, c-format, boost-format
+#, fuzzy, boost-format
msgid ""
"Conflicts of gcode paths have been found at layer %d, z = %.2lf mm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -4815,6 +4827,18 @@ msgstr "现èȘż"
msgid "Flow rate test - Pass 2"
msgstr "æ”éæžŹè©Š - éé 2"
+msgid "YOLO (Recommended)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.01 step"
+msgstr ""
+
+msgid "YOLO (perfectionist version)"
+msgstr ""
+
+msgid "Orca YOLO flowrate calibration, 0.005 step"
+msgstr ""
+
msgid "Flow rate"
msgstr "æ”é"
@@ -6066,19 +6090,14 @@ msgstr "㔿žŹć°ć€é¶ä»¶ç©ä»¶"
msgid "The file does not contain any geometry data."
msgstr "æ€æȘæĄäžć
ć«ä»»äœćčŸäœæžæă"
-msgid ""
-"Your object appears to be too large. It will be scaled down to fit the heat "
-"bed automatically."
-msgstr ""
-
-msgid "Object too large"
-msgstr "ç©ä»¶ć€Ș性"
-
msgid ""
"Your object appears to be too large, Do you want to scale it down to fit the "
"heat bed automatically?"
msgstr "ç©ä»¶çè”·äŸć€Ș性ïŒćžæć°ç©ä»¶èȘćçžźć°ä»„驿ćć°æżćïŒ"
+msgid "Object too large"
+msgstr "ç©ä»¶ć€Ș性"
+
msgid "Export STL file:"
msgstr "ćŻćș STL æȘæĄïŒ"
@@ -6443,6 +6462,9 @@ msgstr "æŻćŠçčŒçșïŒ"
msgid "Language selection"
msgstr "èȘèšéžæ"
+msgid "Switching application language while some presets are modified."
+msgstr "ćšćææçšèȘèšäčćçŒçŸæäșćæžé èšææŽæčă"
+
msgid "Changing application language"
msgstr "æŁćšçșæçšçšćŒćæèȘèš"
@@ -7538,8 +7560,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"
"ćłé”ćźæćć°æżçç©șçœäœçœźïŒéžæâæ°ćąæšæșæšĄćâ->âçžźæéćœ±æŠæćĄâă"
@@ -8399,7 +8421,10 @@ msgstr "ç©ä»¶æž
ćź"
msgid "Import geometry data from STL/STEP/3MF/OBJ/AMF files"
msgstr "ćŸ STL/STEP/3MF/OBJ/AMF æȘæĄäžćŻć
„ćčŸäœæžæ"
-msgid "Shift+G"
+msgid "â+Shift+G"
+msgstr ""
+
+msgid "Ctrl+Shift+G"
msgstr ""
msgid "Paste from clipboard"
@@ -8453,20 +8478,35 @@ msgstr ""
msgid "Collapse/Expand the sidebar"
msgstr "æșç/ć±é ćŽéæŹ"
-msgid "Any arrow"
-msgstr ""
+msgid "â+Any arrow"
+msgstr "â+æčćé”"
#, fuzzy
msgid "Movement in camera space"
msgstr "æČżçžæ©èŠè§ç§»ćç©ä»¶"
+msgid "â„+Left mouse button"
+msgstr "â„+æ»éŒ ć·Šé”"
+
msgid "Select a part"
msgstr "éžæćźäžé¶ä»¶"
+msgid "â+Left mouse button"
+msgstr "â+æ»éŒ ć·Šé”"
+
#, fuzzy
msgid "Select multiple objects"
msgstr "éžæć€ćç©ä»¶"
+msgid "Ctrl+Any arrow"
+msgstr "Ctrl+æčćé”"
+
+msgid "Alt+Left mouse button"
+msgstr "Alt+æ»éŒ ć·Šé”"
+
+msgid "Ctrl+Left mouse button"
+msgstr "Ctrl+æ»éŒ ć·Šé”"
+
msgid "Shift+Left mouse button"
msgstr "Shift+æ»éŒ ć·Šé”"
@@ -8576,12 +8616,24 @@ msgstr "æșć"
msgid "Move: press to snap by 1mm"
msgstr "ç§»ćïŒä»„ 1mm çșćźäœæ„éČç§»ć"
+msgid "â+Mouse wheel"
+msgstr "â+æ»éŒ 滟èŒȘ"
+
msgid "Support/Color Painting: adjust pen radius"
msgstr "æŻæ/éĄèČçčȘèŁœïŒèȘżæŽçć·ććŸ"
+msgid "â„+Mouse wheel"
+msgstr "â„+æ»éŒ 滟èŒȘ"
+
msgid "Support/Color Painting: adjust section position"
msgstr "æŻæ/èČćœ©çčȘèŁœïŒèȘżæŽćéąäœçœź"
+msgid "Ctrl+Mouse wheel"
+msgstr "Ctrl+æ»éŒ 滟èŒȘ"
+
+msgid "Alt+Mouse wheel"
+msgstr "Alt+æ»éŒ 滟èŒȘ"
+
msgid "Gizmo"
msgstr ""
@@ -9568,14 +9620,31 @@ msgid "Apply gap fill"
msgstr ""
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 solid 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"
+"1. Everywhere: Applies gap fill to top, bottom and internal solid surfaces "
+"for maximum strength\n"
"2. Top and Bottom surfaces: Applies gap fill to top and bottom surfaces "
-"only\n"
-"3. Nowhere: Disables gap fill\n"
+"only, balancing print speed, reducing potential over extrusion in the solid "
+"infill and making sure the top and bottom surfaces have no pin hole gaps\n"
+"3. Nowhere: Disables gap fill for all solid infill areas. \n"
+"\n"
+"Note that if using the classic perimeter generator, gap fill may also be "
+"generated between perimeters, if a full width line cannot fit between them. "
+"That perimeter gap fill is not controlled by this setting. \n"
+"\n"
+"If you would like all gap fill, including the classic perimeter generated "
+"one, removed, set the filter out tiny gaps value to a large number, like "
+"999999. \n"
+"\n"
+"However this is not advised, as gap fill between perimeters is contributing "
+"to the model's strength. For models where excessive gap fill is generated "
+"between perimeters, a better option would be to switch to the arachne wall "
+"generator and use this option to control whether the cosmetic top and bottom "
+"surface gap fill is generated"
msgstr ""
msgid "Everywhere"
@@ -9645,11 +9714,13 @@ msgstr "ć€é𿩿„çćŻćșŠă 100% æćłèć
ćșçæ©æšă é èšćŒçș 1
msgid "Bridge flow ratio"
msgstr "æ©æ„æ”é"
-#, fuzzy
msgid ""
"Decrease this value slightly(for example 0.9) to reduce the amount of "
-"material for bridge, to improve sag"
-msgstr "çšćŸźæžć°éćæžćŒïŒæŻćŠ 0.9ïŒćŻä»„æžć°æ©æ„çç·æéïŒäŸæčćäžćă"
+"material for bridge, to improve sag. \n"
+"\n"
+"The actual bridge flow used is calculated by multiplying this value with the "
+"filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
msgid "Internal bridge flow ratio"
msgstr ""
@@ -9657,24 +9728,33 @@ msgstr ""
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."
+"0.9) to improve surface quality over sparse infill.\n"
+"\n"
+"The actual internal bridge flow used is calculated by multiplying this value "
+"with the bridge flow ratio, the filament flow ratio, and if set, the "
+"object's flow ratio."
msgstr ""
msgid "Top surface flow ratio"
msgstr "é éšèĄšéąæ”éæŻäŸ"
-#, fuzzy
msgid ""
"This factor affects the amount of material for top solid infill. You can "
-"decrease it slightly to have smooth surface finish"
-msgstr "çšćŸźæžć°éćæžćŒïŒæŻćŠ 0.97ïŒćŻä»„äŸæčćé éąçć
æ»çšćșŠă"
+"decrease it slightly to have smooth surface finish. \n"
+"\n"
+"The actual top surface flow used is calculated by multiplying this value "
+"with the filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
msgid "Bottom surface flow ratio"
msgstr "ćșéšèĄšéąæ”éæŻäŸ"
-#, fuzzy
-msgid "This factor affects the amount of material for bottom solid infill"
-msgstr "éŠć±€æ”éèȘżæŽäżæžïŒé èšçș 1.0"
+msgid ""
+"This factor affects the amount of material for bottom solid infill. \n"
+"\n"
+"The actual bottom solid infill flow used is calculated by multiplying this "
+"value with the filament flow ratio, and if set, the object's flow ratio."
+msgstr ""
#, fuzzy
msgid "Precise wall"
@@ -9815,10 +9895,26 @@ msgstr "æééćéžé
ć°éäœäžćæžćçšćșŠçè”°ç·çćć°éćșŠ"
msgid "Slow down for curled perimeters"
msgstr "çżčééé"
+#, c-format, boost-format
msgid ""
-"Enable this option to slow printing down in areas where potential curled "
-"perimeters may exist"
-msgstr "ćçšæ€éžé
éäœćŻèœććšæœćšçżčéććçćć°éćșŠ"
+"Enable this option to slow down printing in areas where perimeters may have "
+"curled upwards.For example, additional slowdown will be applied when "
+"printing overhangs on sharp corners like the front of the Benchy hull, "
+"reducing curling which compounds over multiple layers.\n"
+"\n"
+" It is generally recommended to have this option switched on unless your "
+"printer cooling is powerful enough or the print speed slow enough that "
+"perimeter curling does not happen. If printing with a high external "
+"perimeter speed, this parameter may introduce slight artifacts when slowing "
+"down due to the large variance in print speeds. If you notice artifacts, "
+"ensure your pressure advance is tuned correctly.\n"
+"\n"
+"Note: When this option is enabled, overhang perimeters are treated like "
+"overhangs, meaning the overhang speed is applied even if the overhanging "
+"perimeter is part of a bridge. For example, when the perimeters are "
+"100% overhanging, with no wall supporting them from underneath, the "
+"100% overhang speed will be applied."
+msgstr ""
msgid "mm/s or %"
msgstr "mm/s æ %"
@@ -9827,8 +9923,14 @@ msgstr "mm/s æ %"
msgid "External"
msgstr "ć€éš"
-msgid "Speed of bridge and completely overhang wall"
-msgstr "æ©æ„ććźć
šæžç©șçć€ççćć°éćșŠ"
+msgid ""
+"Speed of the externally visible bridge extrusions. \n"
+"\n"
+"In addition, if Slow down for curled perimeters is disabled or Classic "
+"overhang mode is enabled, it will be the print speed of overhang walls that "
+"are supported by less than 13%, whether they are part of a bridge or an "
+"overhang."
+msgstr ""
msgid "mm/s"
msgstr "mm/s"
@@ -9838,11 +9940,9 @@ msgid "Internal"
msgstr "ć
§éš"
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%."
+"Speed of internal bridges. If the value is expressed as a percentage, it "
+"will be calculated based on the bridge_speed. Default value is 150%."
msgstr ""
-"ć
§é𿩿„éćșŠă ćŠæè©ČćŒä»„çŸćæŻèĄšç€șïŒćææ čæ æ©æ„éćșŠ éČèĄèšçźă é èšćŒçș "
-"150%"
#, fuzzy
msgid "Brim width"
@@ -10382,6 +10482,17 @@ msgstr ""
"éăæšèŠççŻćçș 0.95 ć° 1.05ăçŒçŸć€§ćčłć±€æšĄćçé éąæèŒćŸźççŒșææć€ææïŒæèš±"
"ćŻä»„ćè©ŠćŸźèȘżéććæžă"
+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. \n"
+"\n"
+"The final object flow ratio is this value multiplied by the filament flow "
+"ratio."
+msgstr ""
+
msgid "Enable pressure advance"
msgstr "ćçšćŁćæć"
@@ -10555,14 +10666,29 @@ msgstr "mmÂł/s"
msgid "Filament load time"
msgstr "éČæçæé"
-msgid "Time to load new filament when switch filament. For statistics only"
-msgstr "ćæç·ææïŒéČææéçæéăćȘçšæŒç”±èšèłèšă"
+msgid ""
+"Time to load new filament when switch filament. It's usually applicable for "
+"single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
msgid "Filament unload time"
msgstr "éæçæé"
-msgid "Time to unload old filament when switch filament. For statistics only"
-msgstr "ćæç·ææïŒéææéæéăćȘçšæŒç”±èšèłèšă"
+msgid ""
+"Time to unload old filament when switch filament. It's usually applicable "
+"for single-extruder multi-material machines. For tool changers or multi-tool "
+"machines, it's typically 0. For statistics only"
+msgstr ""
+
+msgid "Tool change time"
+msgstr ""
+
+msgid ""
+"Time taken to switch tools. It's usually applicable for tool changers or "
+"multi-tool machines. For single-extruder multi-material machines, it's "
+"typically 0. For statistics only"
+msgstr ""
msgid ""
"Filament diameter is used to calculate extrusion in gcode, so it's important "
@@ -10690,15 +10816,6 @@ msgstr "æćŸäžæŹĄć·ć»ç§»ćçéćșŠ"
msgid "Cooling moves are gradually accelerating towards this speed."
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-code ïŒćŠ T1ïŒT2ïŒïŒćć°èšćéé«ïŒæ Multi Material Unit "
-"2.0ïŒèŒć
„æ°ç·æçæéæéăè©Čæéć°æèą« G-code æéè©äŒ°ćèœć ć°çžœćć°æéäž"
-"ć»ă"
-
msgid "Ramming parameters"
msgstr "ć°ç«Żæććæž"
@@ -10707,14 +10824,6 @@ msgid ""
"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-cide æćŠ T1ïŒT2ïŒïŒćć°èšćéé«ïŒæ Multi Material Unit "
-"2.0ïŒéćșç·ææéæéăè©Čæéć°æèą« G-code æéè©äŒ°ćèœć ć°çžœćć°æéäžć»ă"
-
msgid "Enable ramming for multitool setups"
msgstr "äœżçšć€èČć°ç«Żæćœąèšćź"
@@ -11048,10 +11157,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 ""
"éąšæéćșŠć°ćŸâçŠçšçŹŹäžć±€âçé¶ç·æ§äžćć°âć
šéąšæéćșŠć±€âçæć€§ăćŠæäœæŒâçŠçšéąšæ"
"珏äžć±€âïŒćâć
šéąšæéćșŠçŹŹäžć±€âć°èą«ćżœç„ïŒćšéçšźæ
æłäžïŒéąšæć°ćšâçŠçšéąšæçŹŹäž"
@@ -11118,8 +11227,11 @@ msgstr "ćżœç„ćŸźć°éé"
msgid "Layers and Perimeters"
msgstr "ć±€ćç"
-msgid "Filter out gaps smaller than the threshold specified"
-msgstr "ćżœç„ć°æŒæćźæžćŒçéé"
+msgid ""
+"Don't print gap fill with a length is smaller than the threshold specified "
+"(in mm). This setting applies to top, bottom and solid infill and, if using "
+"the classic perimeter generator, to wall gap fill. "
+msgstr ""
msgid ""
"Speed of gap infill. Gap usually has irregular line width and should be "
@@ -13000,27 +13112,40 @@ msgstr "æ€èšćźæ±șćźæŻćŠçșæščçæŻæć
§éšçç©șéçąç楫ć
ă"
msgid "Activate temperature control"
msgstr "ććæș«ćșŠæ§ć¶"
-#, fuzzy
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)"
+"Enable this option for automated chamber temperature control. This option "
+"activates the emitting of an M191 command before the "
+"\"machine_start_gcode\"\n"
+" which sets the chamber temperature and waits until it is reached. In "
+"addition, it emits an M141 command at the end of the print to turn off the "
+"chamber heater, if present. \n"
+"\n"
+"This option relies on the firmware supporting the M191 and M141 commands "
+"either via macros or natively and is usually used when an active chamber "
+"heater is installed."
msgstr ""
-"ćçšæ€éžé
仄æ§èŁœćć°èšćć
§éšæș«ćșŠă ćšămachine_start_gcodeăäčćć°ææ°ćąäžć"
-"M191æä»€\n"
-"GçąŒæä»€ïŒM141/M191 SïŒ0-255ïŒ"
msgid "Chamber temperature"
msgstr "æ©ç걿ș«ćșŠ"
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"
+"For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber "
+"temperature can help suppress or reduce warping and potentially lead to "
+"higher interlayer bonding strength. However, at the same time, a higher "
+"chamber temperature will reduce the efficiency of air filtration for ABS and "
+"ASA. \n"
+"\n"
+"For PLA, PETG, TPU, PVA, and other low-temperature materials, this option "
+"should be disabled (set to 0) as the chamber temperature should be low to "
+"avoid extruder clogging caused by material softening at the heat break.\n"
+"\n"
+"If enabled, this parameter also sets a gcode variable named "
+"chamber_temperature, which can be used to pass the desired chamber "
+"temperature to your print start macro, or a heat soak macro like this: "
+"PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may "
+"be useful if your printer does not support M141/M191 commands, or if you "
+"desire to handle heat soaking in the print start macro if no active chamber "
+"heater is installed."
msgstr ""
msgid "Nozzle temperature for layers after the initial one"
@@ -14831,8 +14956,8 @@ msgid ""
msgstr ""
msgid ""
-"We would rename the presets as \"Vendor Type Serial @printer you selected"
-"\". \n"
+"We would rename the presets as \"Vendor Type Serial @printer you "
+"selected\". \n"
"To add preset for more printers, Please go to printer selection"
msgstr ""
@@ -15927,47 +16052,74 @@ msgid ""
"probability of warping."
msgstr ""
-#~ msgid "up to"
-#~ msgstr "éć°"
+#, fuzzy
+#~ msgid ""
+#~ "Decrease this value slightly(for example 0.9) to reduce the amount of "
+#~ "material for bridge, to improve sag"
+#~ msgstr "çšćŸźæžć°éćæžćŒïŒæŻćŠ 0.9ïŒćŻä»„æžć°æ©æ„çç·æéïŒäŸæčćäžćă"
-#~ msgid "above"
-#~ msgstr "髿Œ"
+#, fuzzy
+#~ msgid ""
+#~ "This factor affects the amount of material for top solid infill. You can "
+#~ "decrease it slightly to have smooth surface finish"
+#~ msgstr "çšćŸźæžć°éćæžćŒïŒæŻćŠ 0.97ïŒćŻä»„äŸæčćé éąçć
æ»çšćșŠă"
-#~ msgid "from"
-#~ msgstr "ćŸ"
+#, fuzzy
+#~ msgid "This factor affects the amount of material for bottom solid infill"
+#~ msgstr "éŠć±€æ”éèȘżæŽäżæžïŒé èšçș 1.0"
-#~ msgid "Switching application language while some presets are modified."
-#~ msgstr "ćšćææçšèȘèšäčćçŒçŸæäșćæžé èšææŽæčă"
+#~ msgid ""
+#~ "Enable this option to slow printing down in areas where potential curled "
+#~ "perimeters may exist"
+#~ msgstr "ćçšæ€éžé
éäœćŻèœććšæœćšçżčéććçćć°éćșŠ"
-#~ msgid "â+Any arrow"
-#~ msgstr "â+æčćé”"
+#~ msgid "Speed of bridge and completely overhang wall"
+#~ msgstr "æ©æ„ććźć
šæžç©șçć€ççćć°éćșŠ"
-#~ msgid "â„+Left mouse button"
-#~ msgstr "â„+æ»éŒ ć·Šé”"
+#~ 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 ""
+#~ "ć
§é𿩿„éćșŠă ćŠæè©ČćŒä»„çŸćæŻèĄšç€șïŒćææ čæ æ©æ„éćșŠ éČèĄèšçźă é èšćŒ"
+#~ "çș 150%"
-#~ msgid "â+Left mouse button"
-#~ msgstr "â+æ»éŒ ć·Šé”"
+#~ msgid "Time to load new filament when switch filament. For statistics only"
+#~ msgstr "ćæç·ææïŒéČææéçæéăćȘçšæŒç”±èšèłèšă"
-#~ msgid "Ctrl+Any arrow"
-#~ msgstr "Ctrl+æčćé”"
+#~ msgid ""
+#~ "Time to unload old filament when switch filament. For statistics only"
+#~ msgstr "ćæç·ææïŒéææéæéăćȘçšæŒç”±èšèłèšă"
-#~ msgid "Alt+Left mouse button"
-#~ msgstr "Alt+æ»éŒ ć·Šé”"
+#~ 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-code ïŒćŠ T1ïŒT2ïŒïŒćć°èšćéé«ïŒæ Multi Material Unit "
+#~ "2.0ïŒèŒć
„æ°ç·æçæéæéăè©Čæéć°æèą« G-code æéè©äŒ°ćèœć ć°çžœćć°æé"
+#~ "äžć»ă"
-#~ msgid "Ctrl+Left mouse button"
-#~ msgstr "Ctrl+æ»éŒ ć·Šé”"
+#~ 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-cide æćŠ T1ïŒT2ïŒïŒćć°èšćéé«ïŒæ Multi Material Unit "
+#~ "2.0ïŒéćșç·ææéæéăè©Čæéć°æèą« G-code æéè©äŒ°ćèœć ć°çžœćć°æéäž"
+#~ "ć»ă"
-#~ msgid "â+Mouse wheel"
-#~ msgstr "â+æ»éŒ 滟èŒȘ"
+#~ msgid "Filter out gaps smaller than the threshold specified"
+#~ msgstr "ćżœç„ć°æŒæćźæžćŒçéé"
-#~ msgid "â„+Mouse wheel"
-#~ msgstr "â„+æ»éŒ 滟èŒȘ"
-
-#~ msgid "Ctrl+Mouse wheel"
-#~ msgstr "Ctrl+æ»éŒ 滟èŒȘ"
-
-#~ msgid "Alt+Mouse wheel"
-#~ msgstr "Alt+æ»éŒ 滟èŒȘ"
+#, fuzzy
+#~ 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 ""
+#~ "ćçšæ€éžé
仄æ§èŁœćć°èšćć
§éšæș«ćșŠă ćšămachine_start_gcodeăäčćć°ææ°ćąäž"
+#~ "ćM191æä»€\n"
+#~ "GçąŒæä»€ïŒM141/M191 SïŒ0-255ïŒ"
#~ msgid "Wipe tower extruder"
#~ msgstr "æŠæćĄæ ćșæ©"
diff --git a/resources/calib/filament_flow/Orca-LinearFlow.3mf b/resources/calib/filament_flow/Orca-LinearFlow.3mf
new file mode 100644
index 0000000000..8be217beb5
Binary files /dev/null and b/resources/calib/filament_flow/Orca-LinearFlow.3mf differ
diff --git a/resources/calib/filament_flow/Orca-LinearFlow_fine.3mf b/resources/calib/filament_flow/Orca-LinearFlow_fine.3mf
new file mode 100644
index 0000000000..94f8e62fbf
Binary files /dev/null and b/resources/calib/filament_flow/Orca-LinearFlow_fine.3mf differ
diff --git a/resources/calib/filament_flow/flowrate-test-pass1.3mf b/resources/calib/filament_flow/flowrate-test-pass1.3mf
index 8f1a1b5e61..20c997da02 100644
Binary files a/resources/calib/filament_flow/flowrate-test-pass1.3mf and b/resources/calib/filament_flow/flowrate-test-pass1.3mf differ
diff --git a/resources/calib/filament_flow/flowrate-test-pass2.3mf b/resources/calib/filament_flow/flowrate-test-pass2.3mf
index 4d1d0c369d..9797849405 100644
Binary files a/resources/calib/filament_flow/flowrate-test-pass2.3mf and b/resources/calib/filament_flow/flowrate-test-pass2.3mf differ
diff --git a/resources/calib/filament_flow/pass1.3mf b/resources/calib/filament_flow/pass1.3mf
new file mode 100644
index 0000000000..794e534492
Binary files /dev/null and b/resources/calib/filament_flow/pass1.3mf differ
diff --git a/resources/profiles/Elegoo/machine/Elegoo Neptune 4 (0.2 nozzle).json b/resources/profiles/Elegoo/machine/Elegoo Neptune 4 (0.2 nozzle).json
index a89e82d021..978b436ae9 100644
--- a/resources/profiles/Elegoo/machine/Elegoo Neptune 4 (0.2 nozzle).json
+++ b/resources/profiles/Elegoo/machine/Elegoo Neptune 4 (0.2 nozzle).json
@@ -36,7 +36,10 @@
"85%"
],
"retraction_length": [
- "5"
+ "0.8"
+ ],
+ "retraction_speed": [
+ "60"
],
"retract_length_toolchange": [
"2"
diff --git a/resources/profiles/Elegoo/machine/Elegoo Neptune 4 (0.4 nozzle).json b/resources/profiles/Elegoo/machine/Elegoo Neptune 4 (0.4 nozzle).json
index 2717448e77..f7af80c318 100644
--- a/resources/profiles/Elegoo/machine/Elegoo Neptune 4 (0.4 nozzle).json
+++ b/resources/profiles/Elegoo/machine/Elegoo Neptune 4 (0.4 nozzle).json
@@ -36,7 +36,10 @@
"85%"
],
"retraction_length": [
- "5"
+ "0.8"
+ ],
+ "retraction_speed": [
+ "60"
],
"retract_length_toolchange": [
"2"
diff --git a/resources/profiles/Elegoo/machine/Elegoo Neptune 4 (0.6 nozzle).json b/resources/profiles/Elegoo/machine/Elegoo Neptune 4 (0.6 nozzle).json
index 693ff8d370..1e1c35823a 100644
--- a/resources/profiles/Elegoo/machine/Elegoo Neptune 4 (0.6 nozzle).json
+++ b/resources/profiles/Elegoo/machine/Elegoo Neptune 4 (0.6 nozzle).json
@@ -36,7 +36,10 @@
"85%"
],
"retraction_length": [
- "5"
+ "2.5"
+ ],
+ "retraction_speed": [
+ "60"
],
"retract_length_toolchange": [
"2"
diff --git a/resources/profiles/Elegoo/machine/Elegoo Neptune 4 (0.8 nozzle).json b/resources/profiles/Elegoo/machine/Elegoo Neptune 4 (0.8 nozzle).json
index ab3fbb9b4a..34d51ddb6f 100644
--- a/resources/profiles/Elegoo/machine/Elegoo Neptune 4 (0.8 nozzle).json
+++ b/resources/profiles/Elegoo/machine/Elegoo Neptune 4 (0.8 nozzle).json
@@ -36,8 +36,11 @@
"85%"
],
"retraction_length": [
- "5"
- ],
+ "0.8"
+ ],
+ "retraction_speed": [
+ "60"
+ ],
"retract_length_toolchange": [
"2"
],
diff --git a/resources/profiles/FLSun/filament/FLSun S1 PLA Generic.json b/resources/profiles/FLSun/filament/FLSun S1 PLA Generic.json
index 0fe334a390..6f5d0adff5 100644
--- a/resources/profiles/FLSun/filament/FLSun S1 PLA Generic.json
+++ b/resources/profiles/FLSun/filament/FLSun S1 PLA Generic.json
@@ -15,8 +15,8 @@
"full_fan_speed_layer": ["3"],
"hot_plate_temp": ["60"],
"hot_plate_temp_initial_layer": ["60"],
- "nozzle_temperature": ["240"],
- "nozzle_temperature_initial_layer": ["240"],
+ "nozzle_temperature": ["230"],
+ "nozzle_temperature_initial_layer": ["230"],
"nozzle_temperature_range_low": ["190"],
"nozzle_temperature_range_high": ["240"],
"overhang_fan_speed": ["35"],
diff --git a/resources/profiles/FLSun/filament/FLSun S1 PLA Silk.json b/resources/profiles/FLSun/filament/FLSun S1 PLA Silk.json
index 2a08316092..ecd49291a8 100644
--- a/resources/profiles/FLSun/filament/FLSun S1 PLA Silk.json
+++ b/resources/profiles/FLSun/filament/FLSun S1 PLA Silk.json
@@ -15,8 +15,8 @@
"full_fan_speed_layer": ["3"],
"hot_plate_temp": ["60"],
"hot_plate_temp_initial_layer": ["60"],
- "nozzle_temperature": ["240"],
- "nozzle_temperature_initial_layer": ["240"],
+ "nozzle_temperature": ["230"],
+ "nozzle_temperature_initial_layer": ["230"],
"nozzle_temperature_range_low": ["190"],
"nozzle_temperature_range_high": ["240"],
"overhang_fan_speed": ["35"],
diff --git a/resources/profiles/FLSun/filament/FLSun T1 PLA Generic.json b/resources/profiles/FLSun/filament/FLSun T1 PLA Generic.json
index 2c418b2401..4f70bbd87b 100644
--- a/resources/profiles/FLSun/filament/FLSun T1 PLA Generic.json
+++ b/resources/profiles/FLSun/filament/FLSun T1 PLA Generic.json
@@ -15,8 +15,8 @@
"full_fan_speed_layer": ["3"],
"hot_plate_temp": ["60"],
"hot_plate_temp_initial_layer": ["60"],
- "nozzle_temperature": ["240"],
- "nozzle_temperature_initial_layer": ["240"],
+ "nozzle_temperature": ["230"],
+ "nozzle_temperature_initial_layer": ["230"],
"nozzle_temperature_range_low": ["190"],
"nozzle_temperature_range_high": ["240"],
"overhang_fan_speed": ["35"],
diff --git a/resources/profiles/FLSun/filament/FLSun T1 PLA Silk.json b/resources/profiles/FLSun/filament/FLSun T1 PLA Silk.json
index 56fa05286c..55c4c60a84 100644
--- a/resources/profiles/FLSun/filament/FLSun T1 PLA Silk.json
+++ b/resources/profiles/FLSun/filament/FLSun T1 PLA Silk.json
@@ -15,8 +15,8 @@
"full_fan_speed_layer": ["3"],
"hot_plate_temp": ["60"],
"hot_plate_temp_initial_layer": ["60"],
- "nozzle_temperature": ["240"],
- "nozzle_temperature_initial_layer": ["240"],
+ "nozzle_temperature": ["230"],
+ "nozzle_temperature_initial_layer": ["230"],
"nozzle_temperature_range_low": ["190"],
"nozzle_temperature_range_high": ["240"],
"overhang_fan_speed": ["35"],
diff --git a/resources/profiles/FlyingBear/machine/S1/FlyingBear S1 0.4 nozzle.json b/resources/profiles/FlyingBear/machine/S1/FlyingBear S1 0.4 nozzle.json
index 7ac0390672..e8452b5c24 100644
--- a/resources/profiles/FlyingBear/machine/S1/FlyingBear S1 0.4 nozzle.json
+++ b/resources/profiles/FlyingBear/machine/S1/FlyingBear S1 0.4 nozzle.json
@@ -115,7 +115,7 @@
"0"
],
"machine_pause_gcode": "PAUSE",
- "machine_start_gcode": ";v2.9.1-20240620;\n;wiping nozzle start\nM106 P3 S0\nclean_nozzle_position\n;wiping nozzle end\n;*************preheat nozzle and hotbed for Z_TILT_ADJUST*************\nM140 S[bed_temperature_initial_layer_single]\nM104 S130\nG1 X110 Y110 F6000 \nG4 P200\nprobe\nSET_KINEMATIC_POSITION Z=0 ;Z homing\nZ_TILT_ADJUST \n;*************Z_TILT_ADJUST end*************\nM140 S[bed_temperature_initial_layer_single] ;heat hotbed temp set by user\nG1 X5 Y5 F6000 \nG28 \nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[0] + 60,print_bed_max[0])} F6000 \nG1 Z0.2 F600\nM104 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user\nM106 S100 ;close head_nozzle fan\nG4 P3000\nM106 S255 ;close head_nozzle fan\nG4 P3000\nM106 S100 ;close head_nozzle fan\n;*************PRINT START*************\nM109 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user and wait \nM190 S[bed_temperature_initial_layer_single];heat bed temp set by user and wait \nM106 S0 ;close head_nozzle fan\nBED_MESH_CLEAR \nBED_MESH_PROFILE LOAD=default # bedmesh load\nG92 E0 ;Reset Extruder\nG1 Z4.0 F200 ;Move Z Axis up\nG90 ;absolute position\n ; ; ; ; ; ; ; ; ; draw line along model\nG92 E0 ;reset extruder\nG1 E4 F300 ;extrude filament\nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 60,print_bed_max[0])} F6000 \nG1 Z0.22 F600\nG1 X{first_layer_print_min[0]-1.5} Y{max(0, first_layer_print_min[1]-1.5)} F2000 E10\nG1 Z0.22 F600\nG1 X{min(first_layer_print_min[0] + 60,print_bed_max[0])} F1200 E12\n ; ; ; ; ; ; ; ; ;draw line along model end \nG4 P200\nG1 Z2\nG92 E0 ;Reset Extruder\nCLEAR_PAUSE\n;***********model start************\n",
+ "machine_start_gcode": ";v2.9.2-20240814;\n;wiping nozzle start\nM106 P3 S0\nM140 S[bed_temperature_initial_layer_single]\nclean_nozzle_position\n;wiping nozzle end\n;*************preheat nozzle and hotbed for Z_TILT_ADJUST*************\nM140 S[bed_temperature_initial_layer_single]\nM104 S130\nG1 X110 Y110 F10000 \nG4 P200\nprobe\nSET_KINEMATIC_POSITION Z=0 ;Z homing\nG1 Z5\nM190 S[bed_temperature_initial_layer_single]\nZ_TILT_ADJUST \n;*************Z_TILT_ADJUST end*************\nM140 S[bed_temperature_initial_layer_single] ;heat hotbed temp set by user\nG1 X5 Y5 F8000 \nG28 \nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0 F400\nM104 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user\nM106 S100 ;close head_nozzle fan\nG4 P3000\nM106 S255 ;close head_nozzle fan\nG4 P3000\nM106 S100 ;close head_nozzle fan\n;*************PRINT START*************\nM109 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user and wait \nM190 S[bed_temperature_initial_layer_single];heat bed temp set by user and wait \nM106 S0 ;close head_nozzle fan\nBED_MESH_CLEAR \nBED_MESH_PROFILE LOAD=default # bedmesh load\nG92 E0 ;Reset Extruder\n;G1 Z4.0 F200 ;Move Z Axis up\nG90 ;absolute position\n ; ; ; ; ; ; ; ; ; draw line along model\n;G92 E0 ;reset extruder\nG1 E3 F300 ;extrude filament\nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0.22 F600\nG1 X{first_layer_print_min[0]-1.5} Y{max(0, first_layer_print_min[1]-1.5)} F2000 E10\nG1 Z0.22 F600\nG1 X{min(first_layer_print_min[0] + 60,print_bed_max[0])} F1200 E12\n ; ; ; ; ; ; ; ; ;draw line along model end \nG4 P200\nG1 Z2\nG92 E0 ;Reset Extruder\nCLEAR_PAUSE\n;***********model start************\n",
"machine_unload_filament_time": "0",
"max_layer_height": [
"0.28"
diff --git a/resources/profiles/InfiMech/machine/HSN/fdm_klipper_common.json b/resources/profiles/InfiMech/machine/HSN/fdm_klipper_common.json
index 5355d44295..2d1e2aaa55 100644
--- a/resources/profiles/InfiMech/machine/HSN/fdm_klipper_common.json
+++ b/resources/profiles/InfiMech/machine/HSN/fdm_klipper_common.json
@@ -112,7 +112,7 @@
"0"
],
"machine_pause_gcode": "PAUSE",
- "machine_start_gcode": ";v2.9.1-20240620;\n;wiping nozzle start\nM106 P3 S0\nclean_nozzle_position\n;wiping nozzle end\n;*************preheat nozzle and hotbed for Z_TILT_ADJUST*************\nM140 S[bed_temperature_initial_layer_single]\nM104 S130\nG1 X110 Y110 F6000 \nG4 P200\nprobe\nSET_KINEMATIC_POSITION Z=0 ;Z homing\nZ_TILT_ADJUST \n;*************Z_TILT_ADJUST end*************\nM140 S[bed_temperature_initial_layer_single] ;heat hotbed temp set by user\nG1 X5 Y5 F6000 \nG28 \nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[0] + 60,print_bed_max[0])} F6000 \nG1 Z0.2 F600\nM104 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user\nM106 S100 ;close head_nozzle fan\nG4 P3000\nM106 S255 ;close head_nozzle fan\nG4 P3000\nM106 S100 ;close head_nozzle fan\n;*************PRINT START*************\nM109 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user and wait \nM190 S[bed_temperature_initial_layer_single];heat bed temp set by user and wait \nM106 S0 ;close head_nozzle fan\nBED_MESH_CLEAR \nBED_MESH_PROFILE LOAD=default # bedmesh load\nG92 E0 ;Reset Extruder\nG1 Z4.0 F200 ;Move Z Axis up\nG90 ;absolute position\n ; ; ; ; ; ; ; ; ; draw line along model\nG92 E0 ;reset extruder\nG1 E4 F300 ;extrude filament\nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 60,print_bed_max[0])} F6000 \nG1 Z0.22 F600\nG1 X{first_layer_print_min[0]-1.5} Y{max(0, first_layer_print_min[1]-1.5)} F2000 E10\nG1 Z0.22 F600\nG1 X{min(first_layer_print_min[0] + 60,print_bed_max[0])} F1200 E12\n ; ; ; ; ; ; ; ; ;draw line along model end \nG4 P200\nG1 Z2\nG92 E0 ;Reset Extruder\nCLEAR_PAUSE\n;***********model start************\n",
+ "machine_start_gcode": ";v2.9.2-20240814;\n;wiping nozzle start\nM106 P3 S0\nM140 S[bed_temperature_initial_layer_single]\nclean_nozzle_position\n;wiping nozzle end\n;*************preheat nozzle and hotbed for Z_TILT_ADJUST*************\nM140 S[bed_temperature_initial_layer_single]\nM104 S130\nG1 X110 Y110 F10000 \nG4 P200\nprobe\nSET_KINEMATIC_POSITION Z=0 ;Z homing\nG1 Z5\nM190 S[bed_temperature_initial_layer_single]\nZ_TILT_ADJUST \n;*************Z_TILT_ADJUST end*************\nM140 S[bed_temperature_initial_layer_single] ;heat hotbed temp set by user\nG1 X5 Y5 F8000 \nG28 \nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0 F400\nM104 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user\nM106 S100 ;close head_nozzle fan\nG4 P3000\nM106 S255 ;close head_nozzle fan\nG4 P3000\nM106 S100 ;close head_nozzle fan\n;*************PRINT START*************\nM109 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user and wait \nM190 S[bed_temperature_initial_layer_single];heat bed temp set by user and wait \nM106 S0 ;close head_nozzle fan\nBED_MESH_CLEAR \nBED_MESH_PROFILE LOAD=default # bedmesh load\nG92 E0 ;Reset Extruder\n;G1 Z4.0 F200 ;Move Z Axis up\nG90 ;absolute position\n ; ; ; ; ; ; ; ; ; draw line along model\n;G92 E0 ;reset extruder\nG1 E3 F300 ;extrude filament\nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0.22 F600\nG1 X{first_layer_print_min[0]-1.5} Y{max(0, first_layer_print_min[1]-1.5)} F2000 E10\nG1 Z0.22 F600\nG1 X{min(first_layer_print_min[0] + 60,print_bed_max[0])} F1200 E12\n ; ; ; ; ; ; ; ; ;draw line along model end \nG4 P200\nG1 Z2\nG92 E0 ;Reset Extruder\nCLEAR_PAUSE\n;***********model start************\n",
"machine_unload_filament_time": "0",
"max_layer_height": [
"0.28"
diff --git a/resources/profiles/InfiMech/machine/HSN/fdm_machine_common.json b/resources/profiles/InfiMech/machine/HSN/fdm_machine_common.json
index 540e10e977..31eedc682c 100644
--- a/resources/profiles/InfiMech/machine/HSN/fdm_machine_common.json
+++ b/resources/profiles/InfiMech/machine/HSN/fdm_machine_common.json
@@ -112,7 +112,7 @@
"0"
],
"machine_pause_gcode": "PAUSE",
- "machine_start_gcode": ";v2.9.1-20240620;\n;wiping nozzle start\nM106 P3 S0\nclean_nozzle_position\n;wiping nozzle end\n;*************preheat nozzle and hotbed for Z_TILT_ADJUST*************\nM140 S[bed_temperature_initial_layer_single]\nM104 S130\nG1 X110 Y110 F6000 \nG4 P200\nprobe\nSET_KINEMATIC_POSITION Z=0 ;Z homing\nZ_TILT_ADJUST \n;*************Z_TILT_ADJUST end*************\nM140 S[bed_temperature_initial_layer_single] ;heat hotbed temp set by user\nG1 X5 Y5 F6000 \nG28 \nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[0] + 60,print_bed_max[0])} F6000 \nG1 Z0.2 F600\nM104 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user\nM106 S100 ;close head_nozzle fan\nG4 P3000\nM106 S255 ;close head_nozzle fan\nG4 P3000\nM106 S100 ;close head_nozzle fan\n;*************PRINT START*************\nM109 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user and wait \nM190 S[bed_temperature_initial_layer_single];heat bed temp set by user and wait \nM106 S0 ;close head_nozzle fan\nBED_MESH_CLEAR \nBED_MESH_PROFILE LOAD=default # bedmesh load\nG92 E0 ;Reset Extruder\nG1 Z4.0 F200 ;Move Z Axis up\nG90 ;absolute position\n ; ; ; ; ; ; ; ; ; draw line along model\nG92 E0 ;reset extruder\nG1 E4 F300 ;extrude filament\nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 60,print_bed_max[0])} F6000 \nG1 Z0.22 F600\nG1 X{first_layer_print_min[0]-1.5} Y{max(0, first_layer_print_min[1]-1.5)} F2000 E10\nG1 Z0.22 F600\nG1 X{min(first_layer_print_min[0] + 60,print_bed_max[0])} F1200 E12\n ; ; ; ; ; ; ; ; ;draw line along model end \nG4 P200\nG1 Z2\nG92 E0 ;Reset Extruder\nCLEAR_PAUSE\n;***********model start************\n",
+ "machine_start_gcode": ";v2.9.2-20240814;\n;wiping nozzle start\nM106 P3 S0\nM140 S[bed_temperature_initial_layer_single]\nclean_nozzle_position\n;wiping nozzle end\n;*************preheat nozzle and hotbed for Z_TILT_ADJUST*************\nM140 S[bed_temperature_initial_layer_single]\nM104 S130\nG1 X110 Y110 F10000 \nG4 P200\nprobe\nSET_KINEMATIC_POSITION Z=0 ;Z homing\nG1 Z5\nM190 S[bed_temperature_initial_layer_single]\nZ_TILT_ADJUST \n;*************Z_TILT_ADJUST end*************\nM140 S[bed_temperature_initial_layer_single] ;heat hotbed temp set by user\nG1 X5 Y5 F8000 \nG28 \nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0 F400\nM104 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user\nM106 S100 ;close head_nozzle fan\nG4 P3000\nM106 S255 ;close head_nozzle fan\nG4 P3000\nM106 S100 ;close head_nozzle fan\n;*************PRINT START*************\nM109 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user and wait \nM190 S[bed_temperature_initial_layer_single];heat bed temp set by user and wait \nM106 S0 ;close head_nozzle fan\nBED_MESH_CLEAR \nBED_MESH_PROFILE LOAD=default # bedmesh load\nG92 E0 ;Reset Extruder\n;G1 Z4.0 F200 ;Move Z Axis up\nG90 ;absolute position\n ; ; ; ; ; ; ; ; ; draw line along model\n;G92 E0 ;reset extruder\nG1 E3 F300 ;extrude filament\nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0.22 F600\nG1 X{first_layer_print_min[0]-1.5} Y{max(0, first_layer_print_min[1]-1.5)} F2000 E10\nG1 Z0.22 F600\nG1 X{min(first_layer_print_min[0] + 60,print_bed_max[0])} F1200 E12\n ; ; ; ; ; ; ; ; ;draw line along model end \nG4 P200\nG1 Z2\nG92 E0 ;Reset Extruder\nCLEAR_PAUSE\n;***********model start************\n",
"machine_unload_filament_time": "0",
"max_layer_height": [
"0.28"
diff --git a/resources/profiles/InfiMech/machine/fdm_klipper_common.json b/resources/profiles/InfiMech/machine/fdm_klipper_common.json
index abbdab157f..23d50fef1e 100644
--- a/resources/profiles/InfiMech/machine/fdm_klipper_common.json
+++ b/resources/profiles/InfiMech/machine/fdm_klipper_common.json
@@ -112,7 +112,7 @@
"0"
],
"machine_pause_gcode": "PAUSE",
- "machine_start_gcode": ";v2.9.1-20240620;\n;wiping nozzle start\nM106 P3 S0\nclean_nozzle_position\n;wiping nozzle end\n;*************preheat nozzle and hotbed for Z_TILT_ADJUST*************\nM140 S[bed_temperature_initial_layer_single]\nM104 S130\nG1 X110 Y110 F6000 \nG4 P200\nprobe\nSET_KINEMATIC_POSITION Z=0 ;Z homing\nZ_TILT_ADJUST \n;*************Z_TILT_ADJUST end*************\nM140 S[bed_temperature_initial_layer_single] ;heat hotbed temp set by user\nG1 X5 Y5 F6000 \nG28 \nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[0] + 60,print_bed_max[0])} F6000 \nG1 Z0.2 F600\nM104 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user\nM106 S100 ;close head_nozzle fan\nG4 P3000\nM106 S255 ;close head_nozzle fan\nG4 P3000\nM106 S100 ;close head_nozzle fan\n;*************PRINT START*************\nM109 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user and wait \nM190 S[bed_temperature_initial_layer_single];heat bed temp set by user and wait \nM106 S0 ;close head_nozzle fan\nBED_MESH_CLEAR \nBED_MESH_PROFILE LOAD=default # bedmesh load\nG92 E0 ;Reset Extruder\nG1 Z4.0 F200 ;Move Z Axis up\nG90 ;absolute position\n ; ; ; ; ; ; ; ; ; draw line along model\nG92 E0 ;reset extruder\nG1 E4 F300 ;extrude filament\nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 60,print_bed_max[0])} F6000 \nG1 Z0.22 F600\nG1 X{first_layer_print_min[0]-1.5} Y{max(0, first_layer_print_min[1]-1.5)} F2000 E10\nG1 Z0.22 F600\nG1 X{min(first_layer_print_min[0] + 60,print_bed_max[0])} F1200 E12\n ; ; ; ; ; ; ; ; ;draw line along model end \nG4 P200\nG1 Z2\nG92 E0 ;Reset Extruder\nCLEAR_PAUSE\n;***********model start************\n",
+ "machine_start_gcode": ";v2.9.2-20240814;\n;wiping nozzle start\nM106 P3 S0\nM140 S[bed_temperature_initial_layer_single]\nclean_nozzle_position\n;wiping nozzle end\n;*************preheat nozzle and hotbed for Z_TILT_ADJUST*************\nM140 S[bed_temperature_initial_layer_single]\nM104 S130\nG1 X110 Y110 F10000 \nG4 P200\nprobe\nSET_KINEMATIC_POSITION Z=0 ;Z homing\nG1 Z5\nM190 S[bed_temperature_initial_layer_single]\nZ_TILT_ADJUST \n;*************Z_TILT_ADJUST end*************\nM140 S[bed_temperature_initial_layer_single] ;heat hotbed temp set by user\nG1 X5 Y5 F8000 \nG28 \nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0 F400\nM104 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user\nM106 S100 ;close head_nozzle fan\nG4 P3000\nM106 S255 ;close head_nozzle fan\nG4 P3000\nM106 S100 ;close head_nozzle fan\n;*************PRINT START*************\nM109 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user and wait \nM190 S[bed_temperature_initial_layer_single];heat bed temp set by user and wait \nM106 S0 ;close head_nozzle fan\nBED_MESH_CLEAR \nBED_MESH_PROFILE LOAD=default # bedmesh load\nG92 E0 ;Reset Extruder\n;G1 Z4.0 F200 ;Move Z Axis up\nG90 ;absolute position\n ; ; ; ; ; ; ; ; ; draw line along model\n;G92 E0 ;reset extruder\nG1 E3 F300 ;extrude filament\nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0.22 F600\nG1 X{first_layer_print_min[0]-1.5} Y{max(0, first_layer_print_min[1]-1.5)} F2000 E10\nG1 Z0.22 F600\nG1 X{min(first_layer_print_min[0] + 60,print_bed_max[0])} F1200 E12\n ; ; ; ; ; ; ; ; ;draw line along model end \nG4 P200\nG1 Z2\nG92 E0 ;Reset Extruder\nCLEAR_PAUSE\n;***********model start************\n",
"machine_unload_filament_time": "0",
"max_layer_height": [
"0.28"
diff --git a/resources/profiles/InfiMech/machine/fdm_machine_common.json b/resources/profiles/InfiMech/machine/fdm_machine_common.json
index 9a8caa0aa9..00dca16a19 100644
--- a/resources/profiles/InfiMech/machine/fdm_machine_common.json
+++ b/resources/profiles/InfiMech/machine/fdm_machine_common.json
@@ -112,7 +112,7 @@
"0"
],
"machine_pause_gcode": "PAUSE",
- "machine_start_gcode": ";v2.9.1-20240620;\n;wiping nozzle start\nM106 P3 S0\nclean_nozzle_position\n;wiping nozzle end\n;*************preheat nozzle and hotbed for Z_TILT_ADJUST*************\nM140 S[bed_temperature_initial_layer_single]\nM104 S130\nG1 X110 Y110 F6000 \nG4 P200\nprobe\nSET_KINEMATIC_POSITION Z=0 ;Z homing\nZ_TILT_ADJUST \n;*************Z_TILT_ADJUST end*************\nM140 S[bed_temperature_initial_layer_single] ;heat hotbed temp set by user\nG1 X5 Y5 F6000 \nG28 \nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[0] + 60,print_bed_max[0])} F6000 \nG1 Z0.2 F600\nM104 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user\nM106 S100 ;close head_nozzle fan\nG4 P3000\nM106 S255 ;close head_nozzle fan\nG4 P3000\nM106 S100 ;close head_nozzle fan\n;*************PRINT START*************\nM109 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user and wait \nM190 S[bed_temperature_initial_layer_single];heat bed temp set by user and wait \nM106 S0 ;close head_nozzle fan\nBED_MESH_CLEAR \nBED_MESH_PROFILE LOAD=default # bedmesh load\nG92 E0 ;Reset Extruder\nG1 Z4.0 F200 ;Move Z Axis up\nG90 ;absolute position\n ; ; ; ; ; ; ; ; ; draw line along model\nG92 E0 ;reset extruder\nG1 E4 F300 ;extrude filament\nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 60,print_bed_max[0])} F6000 \nG1 Z0.22 F600\nG1 X{first_layer_print_min[0]-1.5} Y{max(0, first_layer_print_min[1]-1.5)} F2000 E10\nG1 Z0.22 F600\nG1 X{min(first_layer_print_min[0] + 60,print_bed_max[0])} F1200 E12\n ; ; ; ; ; ; ; ; ;draw line along model end \nG4 P200\nG1 Z2\nG92 E0 ;Reset Extruder\nCLEAR_PAUSE\n;***********model start************\n",
+ "machine_start_gcode": ";v2.9.2-20240814;\n;wiping nozzle start\nM106 P3 S0\nM140 S[bed_temperature_initial_layer_single]\nclean_nozzle_position\n;wiping nozzle end\n;*************preheat nozzle and hotbed for Z_TILT_ADJUST*************\nM140 S[bed_temperature_initial_layer_single]\nM104 S130\nG1 X110 Y110 F10000 \nG4 P200\nprobe\nSET_KINEMATIC_POSITION Z=0 ;Z homing\nG1 Z5\nM190 S[bed_temperature_initial_layer_single]\nZ_TILT_ADJUST \n;*************Z_TILT_ADJUST end*************\nM140 S[bed_temperature_initial_layer_single] ;heat hotbed temp set by user\nG1 X5 Y5 F8000 \nG28 \nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0 F400\nM104 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user\nM106 S100 ;close head_nozzle fan\nG4 P3000\nM106 S255 ;close head_nozzle fan\nG4 P3000\nM106 S100 ;close head_nozzle fan\n;*************PRINT START*************\nM109 S[nozzle_temperature_initial_layer] ;heat nozzle temp set by user and wait \nM190 S[bed_temperature_initial_layer_single];heat bed temp set by user and wait \nM106 S0 ;close head_nozzle fan\nBED_MESH_CLEAR \nBED_MESH_PROFILE LOAD=default # bedmesh load\nG92 E0 ;Reset Extruder\n;G1 Z4.0 F200 ;Move Z Axis up\nG90 ;absolute position\n ; ; ; ; ; ; ; ; ; draw line along model\n;G92 E0 ;reset extruder\nG1 E3 F300 ;extrude filament\nG1 X{first_layer_print_min[0]-1.5} Y{min(first_layer_print_min[1] + 100,print_bed_max[0])} F6000 \nG1 Z0.22 F600\nG1 X{first_layer_print_min[0]-1.5} Y{max(0, first_layer_print_min[1]-1.5)} F2000 E10\nG1 Z0.22 F600\nG1 X{min(first_layer_print_min[0] + 60,print_bed_max[0])} F1200 E12\n ; ; ; ; ; ; ; ; ;draw line along model end \nG4 P200\nG1 Z2\nG92 E0 ;Reset Extruder\nCLEAR_PAUSE\n;***********model start************\n",
"machine_unload_filament_time": "0",
"max_layer_height": [
"0.28"
diff --git a/resources/profiles/Kingroon.json b/resources/profiles/Kingroon.json
index 099668cd66..90896d3e62 100644
--- a/resources/profiles/Kingroon.json
+++ b/resources/profiles/Kingroon.json
@@ -13,9 +13,17 @@
"name": "Kingroon KP3S PRO V2",
"sub_path": "machine/Kingroon KP3S PRO V2.json"
},
- {
+ {
"name": "Kingroon KP3S 3.0",
"sub_path": "machine/Kingroon KP3S 3.0.json"
+ },
+ {
+ "name": "Kingroon KP3S V1",
+ "sub_path": "machine/Kingroon KP3S V1.json"
+ },
+ {
+ "name": "Kingroon KLP1",
+ "sub_path": "machine/Kingroon KLP1.json"
}
],
"process_list": [
@@ -42,6 +50,18 @@
{
"name": "0.30mm Standard @Kingroon KP3S 3.0",
"sub_path": "process/0.30mm Standard @Kingroon KP3S 3.0.json"
+ },
+ {
+ "name": "0.20mm Standard @Kingroon KP3S V1",
+ "sub_path": "process/0.20mm Standard @Kingroon KP3S V1.json"
+ },
+ {
+ "name": "0.12mm Standard @Kingroon KLP1",
+ "sub_path": "process/0.12mm Standard @Kingroon KLP1.json"
+ },
+ {
+ "name": "0.20mm Standard @Kingroon KLP1",
+ "sub_path": "process/0.20mm Standard @Kingroon KLP1.json"
}
],
"filament_list": [
@@ -142,6 +162,10 @@
{
"name": "Kingroon KP3S 0.4 nozzle",
"sub_path": "machine/Kingroon KP3S 3.0 0.4 nozzle.json"
+ },
+ {
+ "name": "Kingroon KLP1 0.4 nozzle",
+ "sub_path": "machine/Kingroon KLP1 0.4 nozzle.json"
}
]
}
diff --git a/resources/profiles/Kingroon/Kingroon KLP1_cover.png b/resources/profiles/Kingroon/Kingroon KLP1_cover.png
new file mode 100644
index 0000000000..5fb71eb9b9
Binary files /dev/null and b/resources/profiles/Kingroon/Kingroon KLP1_cover.png differ
diff --git a/resources/profiles/Kingroon/Kingroon KP3S V1_cover.png b/resources/profiles/Kingroon/Kingroon KP3S V1_cover.png
new file mode 100644
index 0000000000..d6a50e207b
Binary files /dev/null and b/resources/profiles/Kingroon/Kingroon KP3S V1_cover.png differ
diff --git a/resources/profiles/Kingroon/filament/Kingroon Generic ABS.json b/resources/profiles/Kingroon/filament/Kingroon Generic ABS.json
index 5e11d9665f..73911af68b 100644
--- a/resources/profiles/Kingroon/filament/Kingroon Generic ABS.json
+++ b/resources/profiles/Kingroon/filament/Kingroon Generic ABS.json
@@ -13,6 +13,8 @@
"12"
],
"compatible_printers": [
+ "Kingroon KLP1 0.4 nozzle",
+ "Kingroon KP3S V1 0.4 nozzle",
"Kingroon KP3S PRO S1 0.4 nozzle",
"Kingroon KP3S PRO V2 0.4 nozzle",
"Kingroon KP3S 3.0 0.4 nozzle"
diff --git a/resources/profiles/Kingroon/filament/Kingroon Generic ASA.json b/resources/profiles/Kingroon/filament/Kingroon Generic ASA.json
index 2231d6a9f3..b06c5b8ee6 100644
--- a/resources/profiles/Kingroon/filament/Kingroon Generic ASA.json
+++ b/resources/profiles/Kingroon/filament/Kingroon Generic ASA.json
@@ -13,6 +13,8 @@
"12"
],
"compatible_printers": [
+ "Kingroon KLP1 0.4 nozzle",
+ "Kingroon KP3S V1 0.4 nozzle",
"Kingroon KP3S PRO S1 0.4 nozzle",
"Kingroon KP3S PRO V2 0.4 nozzle",
"Kingroon KP3S 3.0 0.4 nozzle"
diff --git a/resources/profiles/Kingroon/filament/Kingroon Generic PA-CF.json b/resources/profiles/Kingroon/filament/Kingroon Generic PA-CF.json
index eac58e6a01..8eef1a8c69 100644
--- a/resources/profiles/Kingroon/filament/Kingroon Generic PA-CF.json
+++ b/resources/profiles/Kingroon/filament/Kingroon Generic PA-CF.json
@@ -19,8 +19,10 @@
"8"
],
"compatible_printers": [
+ "Kingroon KLP1 0.4 nozzle",
+ "Kingroon KP3S V1 0.4 nozzle",
"Kingroon KP3S PRO S1 0.4 nozzle",
"Kingroon KP3S PRO V2 0.4 nozzle",
"Kingroon KP3S 3.0 0.4 nozzle"
]
-}
\ No newline at end of file
+}
diff --git a/resources/profiles/Kingroon/filament/Kingroon Generic PA.json b/resources/profiles/Kingroon/filament/Kingroon Generic PA.json
index 00e4ee4680..07d73558d3 100644
--- a/resources/profiles/Kingroon/filament/Kingroon Generic PA.json
+++ b/resources/profiles/Kingroon/filament/Kingroon Generic PA.json
@@ -16,8 +16,10 @@
"12"
],
"compatible_printers": [
+ "Kingroon KLP1 0.4 nozzle",
+ "Kingroon KP3S V1 0.4 nozzle",
"Kingroon KP3S PRO S1 0.4 nozzle",
"Kingroon KP3S PRO V2 0.4 nozzle",
"Kingroon KP3S 3.0 0.4 nozzle"
]
-}
\ No newline at end of file
+}
diff --git a/resources/profiles/Kingroon/filament/Kingroon Generic PC.json b/resources/profiles/Kingroon/filament/Kingroon Generic PC.json
index 14378164dc..f40641125f 100644
--- a/resources/profiles/Kingroon/filament/Kingroon Generic PC.json
+++ b/resources/profiles/Kingroon/filament/Kingroon Generic PC.json
@@ -13,8 +13,10 @@
"0.94"
],
"compatible_printers": [
+ "Kingroon KLP1 0.4 nozzle",
+ "Kingroon KP3S V1 0.4 nozzle",
"Kingroon KP3S PRO S1 0.4 nozzle",
"Kingroon KP3S PRO V2 0.4 nozzle",
"Kingroon KP3S 3.0 0.4 nozzle"
]
-}
\ No newline at end of file
+}
diff --git a/resources/profiles/Kingroon/filament/Kingroon Generic PETG.json b/resources/profiles/Kingroon/filament/Kingroon Generic PETG.json
index d63d8fac21..281aae4af3 100644
--- a/resources/profiles/Kingroon/filament/Kingroon Generic PETG.json
+++ b/resources/profiles/Kingroon/filament/Kingroon Generic PETG.json
@@ -43,6 +43,8 @@
"; filament start gcode\n"
],
"compatible_printers": [
+ "Kingroon KLP1 0.4 nozzle",
+ "Kingroon KP3S V1 0.4 nozzle",
"Kingroon KP3S PRO S1 0.4 nozzle",
"Kingroon KP3S PRO V2 0.4 nozzle",
"Kingroon KP3S 3.0 0.4 nozzle"
diff --git a/resources/profiles/Kingroon/filament/Kingroon Generic PLA-CF.json b/resources/profiles/Kingroon/filament/Kingroon Generic PLA-CF.json
index d96b58a6c8..43b20cd38e 100644
--- a/resources/profiles/Kingroon/filament/Kingroon Generic PLA-CF.json
+++ b/resources/profiles/Kingroon/filament/Kingroon Generic PLA-CF.json
@@ -19,8 +19,10 @@
"7"
],
"compatible_printers": [
+ "Kingroon KLP1 0.4 nozzle",
+ "Kingroon KP3S V1 0.4 nozzle",
"Kingroon KP3S PRO S1 0.4 nozzle",
"Kingroon KP3S PRO V2 0.4 nozzle",
"Kingroon KP3S 3.0 0.4 nozzle"
]
-}
\ No newline at end of file
+}
diff --git a/resources/profiles/Kingroon/filament/Kingroon Generic PLA.json b/resources/profiles/Kingroon/filament/Kingroon Generic PLA.json
index e4b457bce7..df234d7e05 100644
--- a/resources/profiles/Kingroon/filament/Kingroon Generic PLA.json
+++ b/resources/profiles/Kingroon/filament/Kingroon Generic PLA.json
@@ -7,6 +7,8 @@
"instantiation": "true",
"inherits": "fdm_filament_pla",
"compatible_printers": [
+ "Kingroon KLP1 0.4 nozzle",
+ "Kingroon KP3S V1 0.4 nozzle",
"Kingroon KP3S PRO S1 0.4 nozzle",
"Kingroon KP3S PRO V2 0.4 nozzle",
"Kingroon KP3S 3.0 0.4 nozzle"
diff --git a/resources/profiles/Kingroon/filament/Kingroon Generic PVA.json b/resources/profiles/Kingroon/filament/Kingroon Generic PVA.json
index 63e253dcf9..1cb99ecb5d 100644
--- a/resources/profiles/Kingroon/filament/Kingroon Generic PVA.json
+++ b/resources/profiles/Kingroon/filament/Kingroon Generic PVA.json
@@ -19,6 +19,8 @@
"10"
],
"compatible_printers": [
+ "Kingroon KLP1 0.4 nozzle",
+ "Kingroon KP3S V1 0.4 nozzle",
"Kingroon KP3S PRO S1 0.4 nozzle",
"Kingroon KP3S PRO V2 0.4 nozzle",
"Kingroon KP3S 3.0 0.4 nozzle"
diff --git a/resources/profiles/Kingroon/filament/Kingroon Generic TPU.json b/resources/profiles/Kingroon/filament/Kingroon Generic TPU.json
index 8c07c5871f..7908828470 100644
--- a/resources/profiles/Kingroon/filament/Kingroon Generic TPU.json
+++ b/resources/profiles/Kingroon/filament/Kingroon Generic TPU.json
@@ -10,6 +10,8 @@
"3.2"
],
"compatible_printers": [
+ "Kingroon KLP1 0.4 nozzle",
+ "Kingroon KP3S V1 0.4 nozzle",
"Kingroon KP3S PRO S1 0.4 nozzle",
"Kingroon KP3S PRO V2 0.4 nozzle",
"Kingroon KP3S 3.0 0.4 nozzle"
diff --git a/resources/profiles/Kingroon/machine/Kingroon KLP1 0.4 nozzle.json b/resources/profiles/Kingroon/machine/Kingroon KLP1 0.4 nozzle.json
new file mode 100644
index 0000000000..84d12a50c1
--- /dev/null
+++ b/resources/profiles/Kingroon/machine/Kingroon KLP1 0.4 nozzle.json
@@ -0,0 +1,61 @@
+{
+ "type": "machine",
+ "setting_id": "GM003",
+ "name": "Kingroon KLP1 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_klipper_common",
+ "printer_model": "Kingroon KLP1",
+ "default_filament_profile": "Kingroon Generic PLA",
+ "default_print_profile": "0.20mm Standard @Kingroon KLP1",
+
+ "thumbnails": [ "100x100" ],
+ "change_filament_gcode": "",
+ "deretraction_speed": [ "90" ],
+ "enable_filament_ramming": "1",
+ "extra_loading_move": "-2",
+ "extruder_clearance_height_to_rod": "36",
+ "extruder_clearance_radius": "65",
+ "high_current_on_filament_swap": "0",
+ "machine_unload_filament_time": "0",
+ "min_layer_height": "0.08",
+ "parking_pos_retraction": "92",
+ "purge_in_prime_tower": "1",
+ "retract_lift_above": [ "0" ],
+ "retract_lift_below": [ "0" ],
+ "retract_lift_enforce": ["All Surfaces"],
+ "bed_exclude_area": ["0x0"],
+ "extruder_colour": ["#FCE94F"],
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "machine_end_gcode": "G91; relative positioning\n G1 Z1.0 F3000 ; move z up little to prevent scratching of print\n G90; absolute positioning\n G1 X0 Y200 F1000 ; prepare for part removal\n M104 S0; turn off extruder\n M140 S0 ; turn off bed\n G1 X0 Y200 F1000 ; prepare for part removal\n M84 ; disable motors\n M106 S0 ; turn off fan",
+ "machine_max_acceleration_e": ["5000", "5000"],
+ "machine_max_acceleration_extruding": ["5000", "20000"],
+ "machine_max_acceleration_retracting": ["5000", "5000"],
+ "machine_max_acceleration_travel": ["9000", "9000"],
+ "machine_max_acceleration_x": ["10000", "20000"],
+ "machine_max_acceleration_y": ["10000", "20000"],
+ "machine_max_acceleration_z": ["500", "200"],
+ "machine_max_jerk_e": ["2.5", "2.5"],
+ "machine_max_jerk_x": ["20", "9"],
+ "machine_max_jerk_y": ["20", "9"],
+ "machine_max_jerk_z": ["0.2", "0.4"],
+ "machine_max_speed_e": ["100", "25"],
+ "machine_max_speed_z": ["50", "12"],
+ "machine_pause_gcode": "PAUSE",
+ "machine_start_gcode": "M190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nG28 ; h1ome all axes\n M117 ;Purge extruder\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface\n G1 X2 Y20 Z0.3 F5000.0 ; move to start-line position\n G1 X2 Y175.0 Z0.3 F1500.0 E15 ; draw 1st line\n G1 X2 Y175.0 Z0.4 F5000.0 ; move to side a little\n G1 X2 Y20 Z0.4 F1500.0 E30 ; draw 2nd line\n G92 E0 ; reset extruder\n G1 Z1.0 F3000 ; move z up little to prevent scratching of surface",
+ "max_layer_height": ["0.32"],
+ "retraction_length": ["1"],
+ "retraction_speed": ["90"],
+ "use_firmware_retraction": "0",
+ "wipe": ["1"],
+ "z_hop": ["0"],
+ "printable_area": [
+ "0x0",
+ "230x0",
+ "230x230",
+ "0x230"
+],
+"printable_height": "210",
+"nozzle_diameter": ["0.4"]
+}
diff --git a/resources/profiles/Kingroon/machine/Kingroon KLP1.json b/resources/profiles/Kingroon/machine/Kingroon KLP1.json
new file mode 100644
index 0000000000..2e0964289d
--- /dev/null
+++ b/resources/profiles/Kingroon/machine/Kingroon KLP1.json
@@ -0,0 +1,10 @@
+{
+ "type": "machine_model",
+ "name": "Kingroon KLP1",
+ "model_id": "Kingroon KLP1",
+ "nozzle_diameter": "0.4",
+ "machine_tech": "FFF",
+ "family": "Kingroon",
+ "hotend_model": "",
+ "default_materials": "Kingroon Generic ABS;Kingroon Generic PLA;Kingroon Generic PLA-CF;Kingroon Generic PETG;Kingroon Generic TPU;Kingroon Generic ASA;Kingroon Generic PC;Kingroon Generic PVA;Kingroon Generic PA;Kingroon Generic PA-CF"
+}
diff --git a/resources/profiles/Kingroon/machine/Kingroon KP3S V1 0.4 nozzle.json b/resources/profiles/Kingroon/machine/Kingroon KP3S V1 0.4 nozzle.json
new file mode 100644
index 0000000000..e836c3e08e
--- /dev/null
+++ b/resources/profiles/Kingroon/machine/Kingroon KP3S V1 0.4 nozzle.json
@@ -0,0 +1,85 @@
+{
+ "type": "machine",
+ "setting_id": "GM003",
+ "name": "Kingroon KP3S V1 0.4 nozzle",
+ "from": "system",
+ "instantiation": "true",
+ "inherits": "fdm_klipper_common",
+ "printer_model": "Kingroon KP3S V1",
+ "default_filament_profile": "Kingroon Generic PLA",
+ "default_print_profile": "0.20mm Standard @Kingroon KP3S V1",
+
+ "thumbnails": [ "100x100" ],
+ "change_filament_gcode": "",
+ "best_object_pos": "0.5,0.5",
+ "change_extrusion_role_gcode": "",
+ "cooling_tube_length": "0",
+ "cooling_tube_retraction": "0",
+ "deretraction_speed": [ "30" ],
+ "disable_m73": "0",
+ "emit_machine_limits_to_gcode": "1",
+ "enable_filament_ramming": "0",
+ "head_wrap_detect_zone": [],
+ "enable_long_retraction_when_cut": "0",
+ "long_retractions_when_cut": [
+ "0"
+ ],
+ "retract_before_wipe": [ "0%" ],
+ "retraction_distances_when_cut": [
+ "18"
+ ],
+ "extra_loading_move": "0",
+ "extruder_clearance_height_to_rod": "36",
+ "extruder_clearance_radius": "65",
+ "high_current_on_filament_swap": "0",
+ "machine_unload_filament_time": "0",
+ "min_layer_height": "0.08",
+ "parking_pos_retraction": "0",
+ "preferred_orientation": "0",
+ "printing_by_object_gcode": "",
+ "purge_in_prime_tower": "0",
+ "retract_lift_above": [ "0" ],
+ "retract_lift_below": [ "0" ],
+ "retract_lift_enforce": ["All Surfaces"],
+ "bed_exclude_area": ["0x0"],
+ "extruder_colour": ["#FCE94F"],
+ "layer_change_gcode": ";AFTER_LAYER_CHANGE\n;[layer_z]",
+ "before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
+ "machine_end_gcode": "G91; relative positioning\n G1 Z1.0 F3000 ; move z up little to prevent scratching of print\n G90; absolute positioning\n G1 X0 Y180 F1000 ; prepare for part removal\n M104 S0; turn off extruder\n M140 S0 ; turn off bed\n G1 X0 Y180 F1000 ; prepare for part removal\n M84 ; disable motors\n M106 S0 ; turn off fan",
+ "machine_max_acceleration_e": ["5000", "5000"],
+ "machine_max_acceleration_extruding": ["10000", "20000"],
+ "machine_max_acceleration_retracting": ["5000", "5000"],
+ "machine_max_acceleration_travel": ["20000", "20000"],
+ "machine_max_acceleration_x": ["10000", "20000"],
+ "machine_max_acceleration_y": ["10000", "20000"],
+ "machine_max_acceleration_z": ["500", "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": ["0.2", "0.4"],
+ "machine_max_speed_e": ["100", "25"],
+ "machine_max_speed_z": ["12", "12"],
+ "machine_pause_gcode": "PAUSE",
+ "machine_start_gcode": "M104 S{first_layer_temperature[0]} ; set final nozzle temp\nM190 S[bed_temperature_initial_layer_single]\nM109 S[nozzle_temperature_initial_layer]\nM83\nG28 ; h1ome all axes\nG1 Z0.2 ; lift nozzle a bit \nG92 E0 \nG1 Y-3 F2400 \nG1 X50 F2400 ; zero the extruded length \nG1 X115 E40 F500 ; Extrude 25mm of filament in a 5cm line. \nG92 E0 ; zero the extruded length again \nG1 E-0.2 F3000 ; Retract a little \nG1 X180 F4000 ; Quickly wipe away from the filament line\nM117",
+ "manual_filament_change": "0",
+ "nozzle_height": "4",
+ "nozzle_type": "brass",
+ "max_layer_height": ["0.32"],
+ "retraction_length": ["0.8"],
+ "retraction_speed": ["30"],
+ "support_air_filtration": "1",
+ "support_chamber_temp_control": "1",
+ "support_multi_bed_types": "0",
+ "use_firmware_retraction": "0",
+ "wipe": ["1"],
+ "z_hop": ["0"],
+ "z_offset": "0",
+ "printable_area": [
+ "0x0",
+ "180x0",
+ "180x180",
+ "0x180"
+],
+"printable_height": "180",
+"nozzle_diameter": ["0.4"]
+}
diff --git a/resources/profiles/Kingroon/machine/Kingroon KP3S V1.json b/resources/profiles/Kingroon/machine/Kingroon KP3S V1.json
new file mode 100644
index 0000000000..9b92571019
--- /dev/null
+++ b/resources/profiles/Kingroon/machine/Kingroon KP3S V1.json
@@ -0,0 +1,10 @@
+{
+ "type": "machine_model",
+ "name": "Kingroon KP3S V1",
+ "model_id": "Kingroon KP3S V1",
+ "nozzle_diameter": "0.4",
+ "machine_tech": "FFF",
+ "family": "Kingroon",
+ "hotend_model": "",
+ "default_materials": "Kingroon Generic ABS;Kingroon Generic PLA;Kingroon Generic PLA-CF;Kingroon Generic PETG;Kingroon Generic TPU;Kingroon Generic ASA;Kingroon Generic PC;Kingroon Generic PVA;Kingroon Generic PA;Kingroon Generic PA-CF"
+}
diff --git a/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KLP1.json b/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KLP1.json
new file mode 100644
index 0000000000..cbbabc2017
--- /dev/null
+++ b/resources/profiles/Kingroon/process/0.12mm Standard @Kingroon KLP1.json
@@ -0,0 +1,13 @@
+{
+ "type": "process",
+ "compatible_printers": [
+ "Kingroon KLP1 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "inherits": "fdm_process_common",
+ "name": "0.12mm Standard @Kingroon KLP1",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.12",
+ "line_width": "0.4",
+ "instantiation": "true"
+}
diff --git a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KLP1.json b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KLP1.json
new file mode 100644
index 0000000000..02e8d9219d
--- /dev/null
+++ b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KLP1.json
@@ -0,0 +1,13 @@
+{
+ "type": "process",
+ "compatible_printers": [
+ "Kingroon KLP1 0.4 nozzle"
+ ],
+ "compatible_printers_condition": "",
+ "inherits": "fdm_process_common",
+ "name": "0.20mm Standard @Kingroon KLP1",
+ "initial_layer_print_height": "0.2",
+ "layer_height": "0.2",
+ "line_width": "0.42",
+ "instantiation": "true"
+}
diff --git a/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S V1.json b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S V1.json
new file mode 100644
index 0000000000..fde94f4741
--- /dev/null
+++ b/resources/profiles/Kingroon/process/0.20mm Standard @Kingroon KP3S V1.json
@@ -0,0 +1,45 @@
+{
+ "type": "process",
+ "compatible_printers": [
+ "Kingroon KP3S V1 0.4 nozzle"
+ ],
+ "inherits": "fdm_process_common",
+ "name": "0.20mm Standard @Kingroon KP3S V1",
+ "instantiation": "true",
+ "bottom_shell_layers": "2",
+ "bridge_speed": "30",
+ "brim_type": "no_brim",
+ "default_acceleration": "10000",
+ "detect_thin_wall": "1",
+ "elefant_foot_compensation": "0.15",
+ "gap_infill_speed": "60",
+ "infill_wall_overlap": "8%",
+ "initial_layer_print_height": "0.25",
+ "initial_layer_travel_speed": "200",
+ "internal_solid_infill_acceleration": "6000",
+ "internal_solid_infill_speed": "160",
+ "is_custom_defined": "0",
+ "outer_wall_acceleration": "4000",
+ "overhang_2_4_speed": "30",
+ "overhang_reverse": "1",
+ "overhang_reverse_internal_only": "1",
+ "overhang_reverse_threshold": "0%",
+ "overhang_speed_classic": "1",
+ "seam_gap": "0.1",
+ "seam_position": "back",
+ "slow_down_layers": "2",
+ "slowdown_for_curled_perimeters": "1",
+ "sparse_infill_acceleration": "6000",
+ "sparse_infill_pattern": "grid",
+ "sparse_infill_speed": "300",
+ "support_type": "normal(manual)",
+ "thick_bridges": "1",
+ "top_surface_acceleration": "5000",
+ "top_surface_speed": "180",
+ "travel_acceleration": "10000",
+ "version": "1.6.0.0",
+ "wall_generator": "classic",
+ "wall_loops": "2",
+ "wall_transition_angle": "25",
+ "xy_hole_compensation": "0.1"
+}
diff --git a/src/OrcaSlicer.cpp b/src/OrcaSlicer.cpp
index bb52a0aea1..5ec7d97d9d 100644
--- a/src/OrcaSlicer.cpp
+++ b/src/OrcaSlicer.cpp
@@ -1190,7 +1190,6 @@ int CLI::run(int argc, char **argv)
//BBS: add plate data related logic
PlateDataPtrs plate_data_src;
std::vector plate_obj_size_infos;
- int arrange_option;
int plate_to_slice = 0, filament_count = 0, duplicate_count = 0, real_duplicate_count = 0;
bool first_file = true, is_bbl_3mf = false, need_arrange = true, has_thumbnails = false, up_config_to_date = false, normative_check = true, duplicate_single_object = false, use_first_fila_as_default = false, minimum_save = false, enable_timelapse = false;
bool allow_rotations = true, skip_modified_gcodes = false, avoid_extrusion_cali_region = false, skip_useless_pick = false, allow_newer_file = false;
diff --git a/src/libslic3r/Fill/FillConcentric.cpp b/src/libslic3r/Fill/FillConcentric.cpp
index f7fe82ad5f..b5a0c738c9 100644
--- a/src/libslic3r/Fill/FillConcentric.cpp
+++ b/src/libslic3r/Fill/FillConcentric.cpp
@@ -10,12 +10,15 @@
namespace Slic3r {
template
-int stagger_seam_index(int ind, LINE_T line)
+int stagger_seam_index(int ind, LINE_T line, double shift, bool dir)
{
Point const *point = &line.points[ind];
double dist = 0;
- while (dist < 0.5 / SCALING_FACTOR) {
- ind = (ind + 1) % line.points.size();
+ while (dist < shift / SCALING_FACTOR) {
+ if (dir)
+ ind = (ind + 1) % line.points.size();
+ else
+ ind = ind > 0 ? --ind : line.points.size() - 1;
Point const &next = line.points[ind];
dist += point->distance_to(next);
point = &next;
@@ -23,6 +26,8 @@ int stagger_seam_index(int ind, LINE_T line)
return ind;
}
+#define STAGGER_SEAM_THRESHOLD 0.9
+
void FillConcentric::_fill_surface_single(
const FillParams ¶ms,
unsigned int thickness_layers,
@@ -55,8 +60,20 @@ void FillConcentric::_fill_surface_single(
// split paths using a nearest neighbor search
size_t iPathFirst = polylines_out.size();
Point last_pos(0, 0);
+
+ double min_nozzle_diameter;
+ bool dir;
+ if (this->print_config != nullptr && params.density >= STAGGER_SEAM_THRESHOLD) {
+ min_nozzle_diameter = *std::min_element(print_config->nozzle_diameter.values.begin(), print_config->nozzle_diameter.values.end());
+ dir = rand() % 2;
+ }
+
for (const Polygon &loop : loops) {
- polylines_out.emplace_back(loop.split_at_index(stagger_seam_index(last_pos.nearest_point_index(loop.points), loop)));
+ int ind = (this->print_config != nullptr && params.density > STAGGER_SEAM_THRESHOLD) ?
+ stagger_seam_index(last_pos.nearest_point_index(loop.points), loop, min_nozzle_diameter / 2, dir) :
+ last_pos.nearest_point_index(loop.points);
+
+ polylines_out.emplace_back(loop.split_at_index(ind));
last_pos = polylines_out.back().last_point();
}
@@ -118,13 +135,18 @@ void FillConcentric::_fill_surface_single(const FillParams& params,
// Split paths using a nearest neighbor search.
size_t firts_poly_idx = thick_polylines_out.size();
Point last_pos(0, 0);
+ bool dir = rand() % 2;
for (const Arachne::ExtrusionLine* extrusion : all_extrusions) {
if (extrusion->empty())
continue;
-
ThickPolyline thick_polyline = Arachne::to_thick_polyline(*extrusion);
- if (extrusion->is_closed)
- thick_polyline.start_at_index(stagger_seam_index(last_pos.nearest_point_index(thick_polyline.points), thick_polyline));
+
+ if (extrusion->is_closed) {
+ int ind = (params.density >= STAGGER_SEAM_THRESHOLD) ?
+ stagger_seam_index(last_pos.nearest_point_index(thick_polyline.points), thick_polyline, min_nozzle_diameter / 2, dir) :
+ last_pos.nearest_point_index(thick_polyline.points);
+ thick_polyline.start_at_index(ind);
+ }
thick_polylines_out.emplace_back(std::move(thick_polyline));
last_pos = thick_polylines_out.back().last_point();
}
diff --git a/src/libslic3r/Format/bbs_3mf.cpp b/src/libslic3r/Format/bbs_3mf.cpp
index 90f4536b95..206fc2aacd 100644
--- a/src/libslic3r/Format/bbs_3mf.cpp
+++ b/src/libslic3r/Format/bbs_3mf.cpp
@@ -878,7 +878,6 @@ void PlateData::parse_filament_info(GCodeProcessorResult *result)
bool extract_object_model()
{
mz_zip_archive archive;
- mz_zip_archive_file_stat stat;
mz_zip_zero_struct(&archive);
if (!open_zip_reader(&archive, zip_path)) {
diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp
index 0fa6bbcbba..9ed689b5c5 100644
--- a/src/libslic3r/GCode.cpp
+++ b/src/libslic3r/GCode.cpp
@@ -5568,6 +5568,7 @@ std::string GCode::_extrude(const ExtrusionPath &path, std::string description,
size_t start_index = fitting_result[fitting_index].start_point_index;
size_t end_index = fitting_result[fitting_index].end_point_index;
for (size_t point_index = start_index + 1; point_index < end_index + 1; point_index++) {
+ tempDescription = description;
const Line line = Line(path.polyline.points[point_index - 1], path.polyline.points[point_index]);
const double line_length = line.length() * SCALING_FACTOR;
if (line_length < EPSILON)
@@ -5891,8 +5892,10 @@ std::string GCode::travel_to(const Point& point, ExtrusionRole role, std::string
// generate G-code for the travel move
if (needs_retraction) {
- if (m_config.reduce_crossing_wall && could_be_wipe_disabled)
- m_wipe.reset_path();
+ // ORCA: Fix scenario where wipe is disabled when avoid crossing perimeters was enabled even though a retraction move was performed.
+ // This replicates the existing behaviour of always wiping when retracting
+ /*if (m_config.reduce_crossing_wall && could_be_wipe_disabled)
+ m_wipe.reset_path();*/
Point last_post_before_retract = this->last_pos();
gcode += this->retract(false, false, lift_type);
diff --git a/src/libslic3r/GCode/CoolingBuffer.cpp b/src/libslic3r/GCode/CoolingBuffer.cpp
index ff36ce7e21..2f4938bc7a 100644
--- a/src/libslic3r/GCode/CoolingBuffer.cpp
+++ b/src/libslic3r/GCode/CoolingBuffer.cpp
@@ -521,62 +521,6 @@ std::vector CoolingBuffer::parse_layer_gcode(const std::
return per_extruder_adjustments;
}
-// Slow down an extruder range proportionally down to slow_down_layer_time.
-// Return the total time for the complete layer.
-static inline float extruder_range_slow_down_proportional(
- std::vector::iterator it_begin,
- std::vector::iterator it_end,
- // Elapsed time for the extruders already processed.
- float elapsed_time_total0,
- // Initial total elapsed time before slow down.
- float elapsed_time_before_slowdown,
- // Target time for the complete layer (all extruders applied).
- float slow_down_layer_time)
-{
- // Total layer time after the slow down has been applied.
- float total_after_slowdown = elapsed_time_before_slowdown;
- // Now decide, whether the external perimeters shall be slowed down as well.
- float max_time_nep = elapsed_time_total0;
- for (auto it = it_begin; it != it_end; ++ it)
- max_time_nep += (*it)->maximum_time_after_slowdown(false);
- if (max_time_nep > slow_down_layer_time) {
- // It is sufficient to slow down the non-external perimeter moves to reach the target layer time.
- // Slow down the non-external perimeters proportionally.
- float non_adjustable_time = elapsed_time_total0;
- for (auto it = it_begin; it != it_end; ++ it)
- non_adjustable_time += (*it)->non_adjustable_time(false);
- // The following step is a linear programming task due to the minimum movement speeds of the print moves.
- // Run maximum 5 iterations until a good enough approximation is reached.
- for (size_t iter = 0; iter < 5; ++ iter) {
- float factor = (slow_down_layer_time - non_adjustable_time) / (total_after_slowdown - non_adjustable_time);
- assert(factor > 1.f);
- total_after_slowdown = elapsed_time_total0;
- for (auto it = it_begin; it != it_end; ++ it)
- total_after_slowdown += (*it)->slow_down_proportional(factor, false);
- if (total_after_slowdown > 0.95f * slow_down_layer_time)
- break;
- }
- } else {
- // Slow down everything. First slow down the non-external perimeters to maximum.
- for (auto it = it_begin; it != it_end; ++ it)
- (*it)->slowdown_to_minimum_feedrate(false);
- // Slow down the external perimeters proportionally.
- float non_adjustable_time = elapsed_time_total0;
- for (auto it = it_begin; it != it_end; ++ it)
- non_adjustable_time += (*it)->non_adjustable_time(true);
- for (size_t iter = 0; iter < 5; ++ iter) {
- float factor = (slow_down_layer_time - non_adjustable_time) / (total_after_slowdown - non_adjustable_time);
- assert(factor > 1.f);
- total_after_slowdown = elapsed_time_total0;
- for (auto it = it_begin; it != it_end; ++ it)
- total_after_slowdown += (*it)->slow_down_proportional(factor, true);
- if (total_after_slowdown > 0.95f * slow_down_layer_time)
- break;
- }
- }
- return total_after_slowdown;
-}
-
// Slow down an extruder range to slow_down_layer_time.
// Return the total time for the complete layer.
static inline void extruder_range_slow_down_non_proportional(
@@ -674,9 +618,8 @@ float CoolingBuffer::calculate_layer_slowdown(std::vector 0) {
by_slowdown_time.emplace_back(&adj);
- if (! m_cooling_logic_proportional)
- // sorts the lines, also sets adj.time_non_adjustable
- adj.sort_lines_by_decreasing_feedrate();
+ // sorts the lines, also sets adj.time_non_adjustable
+ adj.sort_lines_by_decreasing_feedrate();
} else
elapsed_time_total0 += adj.elapsed_time_total();
}
@@ -700,10 +643,7 @@ float CoolingBuffer::calculate_layer_slowdown(std::vectortime_maximum;
if (max_time > slow_down_layer_time) {
- if (m_cooling_logic_proportional)
- extruder_range_slow_down_proportional(cur_begin, by_slowdown_time.end(), elapsed_time_total0, total, slow_down_layer_time);
- else
- extruder_range_slow_down_non_proportional(cur_begin, by_slowdown_time.end(), slow_down_layer_time - total);
+ extruder_range_slow_down_non_proportional(cur_begin, by_slowdown_time.end(), slow_down_layer_time - total);
} else {
// Slow down to maximum possible.
for (auto it = cur_begin; it != by_slowdown_time.end(); ++ it)
diff --git a/src/libslic3r/GCode/CoolingBuffer.hpp b/src/libslic3r/GCode/CoolingBuffer.hpp
index 7fb55985f7..dcbf0120b8 100644
--- a/src/libslic3r/GCode/CoolingBuffer.hpp
+++ b/src/libslic3r/GCode/CoolingBuffer.hpp
@@ -54,9 +54,6 @@ private:
// the PrintConfig slice of FullPrintConfig is constant, thus no thread synchronization is required.
const PrintConfig &m_config;
unsigned int m_current_extruder;
-
- // Old logic: proportional.
- bool m_cooling_logic_proportional = false;
//BBS: current fan speed
int m_current_fan_speed;
};
diff --git a/src/libslic3r/GCode/GCodeProcessor.cpp b/src/libslic3r/GCode/GCodeProcessor.cpp
index 852bebda31..757939637e 100644
--- a/src/libslic3r/GCode/GCodeProcessor.cpp
+++ b/src/libslic3r/GCode/GCodeProcessor.cpp
@@ -47,7 +47,6 @@ static const float DEFAULT_FILAMENT_DIAMETER = 1.75f;
static const int DEFAULT_FILAMENT_HRC = 0;
static const float DEFAULT_FILAMENT_DENSITY = 1.245f;
static const float DEFAULT_FILAMENT_COST = 29.99f;
-static const float DEFAULT_FILAMENT_FLOW_RATIOS = 1.0f;
static const int DEFAULT_FILAMENT_VITRIFICATION_TEMPERATURE = 0;
static const Slic3r::Vec3f DEFAULT_EXTRUDER_OFFSET = Slic3r::Vec3f::Zero();
@@ -955,7 +954,6 @@ void GCodeProcessorResult::reset() {
required_nozzle_HRC = std::vector(MIN_EXTRUDERS_COUNT, DEFAULT_FILAMENT_HRC);
filament_densities = std::vector(MIN_EXTRUDERS_COUNT, DEFAULT_FILAMENT_DENSITY);
filament_costs = std::vector(MIN_EXTRUDERS_COUNT, DEFAULT_FILAMENT_COST);
- filament_flow_ratios = std::vector(MIN_EXTRUDERS_COUNT, DEFAULT_FILAMENT_FLOW_RATIOS);
custom_gcode_per_print_z = std::vector();
spiral_vase_layers = std::vector>>();
bed_match_result = BedMatchResult(true);
@@ -1078,7 +1076,6 @@ void GCodeProcessor::apply_config(const PrintConfig& config)
m_result.filament_densities.resize(extruders_count);
m_result.filament_vitrification_temperature.resize(extruders_count);
m_result.filament_costs.resize(extruders_count);
- m_result.filament_flow_ratios.resize(extruders_count);
m_extruder_temps.resize(extruders_count);
m_extruder_temps_config.resize(extruders_count);
m_extruder_temps_first_layer_config.resize(extruders_count);
@@ -1098,7 +1095,6 @@ void GCodeProcessor::apply_config(const PrintConfig& config)
m_result.filament_densities[i] = static_cast(config.filament_density.get_at(i));
m_result.filament_vitrification_temperature[i] = static_cast(config.temperature_vitrification.get_at(i));
m_result.filament_costs[i] = static_cast(config.filament_cost.get_at(i));
- m_result.filament_flow_ratios[i] = static_cast(config.filament_flow_ratio.get_at(i));
}
if (m_flavor == gcfMarlinLegacy || m_flavor == gcfMarlinFirmware || m_flavor == gcfKlipper || m_flavor == gcfRepRapFirmware) {
@@ -1262,15 +1258,6 @@ void GCodeProcessor::apply_config(const DynamicPrintConfig& config)
m_result.filament_costs.emplace_back(DEFAULT_FILAMENT_COST);
}
- // Orca: filament flow ratio
- const ConfigOptionFloats* filament_flow_ratios = config.option("filament_flow_ratio");
- if (filament_flow_ratios != nullptr) {
- m_result.filament_flow_ratios.clear();
- m_result.filament_flow_ratios.resize(filament_flow_ratios->values.size());
- for (size_t i = 0; i < filament_flow_ratios->values.size(); ++i)
- m_result.filament_flow_ratios[i]=static_cast(filament_flow_ratios->values[i]);
- }
-
//BBS
const ConfigOptionInts* filament_vitrification_temperature = config.option("temperature_vitrification");
if (filament_vitrification_temperature != nullptr) {
@@ -2930,7 +2917,6 @@ void GCodeProcessor::process_G0(const GCodeReader::GCodeLine& line)
void GCodeProcessor::process_G1(const GCodeReader::GCodeLine& line, const std::optional& remaining_internal_g1_lines)
{
float filament_diameter = (static_cast(m_extruder_id) < m_result.filament_diameters.size()) ? m_result.filament_diameters[m_extruder_id] : m_result.filament_diameters.back();
- float filament_flowratio = (static_cast(m_extruder_id) < m_result.filament_flow_ratios.size()) ? m_result.filament_flow_ratios[m_extruder_id] : m_result.filament_flow_ratios.back();
float filament_radius = 0.5f * filament_diameter;
float area_filament_cross_section = static_cast(M_PI) * sqr(filament_radius);
auto absolute_position = [this, area_filament_cross_section](Axis axis, const GCodeReader::GCodeLine& lineG1) {
@@ -3008,7 +2994,7 @@ void GCodeProcessor::process_G1(const GCodeReader::GCodeLine& line, const std::o
m_used_filaments.increase_model_caches(volume_extruded_filament);
}
// volume extruded filament / tool displacement = area toolpath cross section
- m_mm3_per_mm = area_toolpath_cross_section * filament_flowratio;
+ m_mm3_per_mm = area_toolpath_cross_section;
#if ENABLE_GCODE_VIEWER_DATA_CHECKING
m_mm3_per_mm_compare.update(area_toolpath_cross_section, m_extrusion_role);
#endif // ENABLE_GCODE_VIEWER_DATA_CHECKING
@@ -3359,7 +3345,6 @@ void GCodeProcessor::process_G1(const GCodeReader::GCodeLine& line, const std::o
void GCodeProcessor::process_G2_G3(const GCodeReader::GCodeLine& line)
{
float filament_diameter = (static_cast(m_extruder_id) < m_result.filament_diameters.size()) ? m_result.filament_diameters[m_extruder_id] : m_result.filament_diameters.back();
- float filament_flowratio = (static_cast(m_extruder_id) < m_result.filament_flow_ratios.size()) ? m_result.filament_flow_ratios[m_extruder_id] : m_result.filament_flow_ratios.back();
float filament_radius = 0.5f * filament_diameter;
float area_filament_cross_section = static_cast(M_PI) * sqr(filament_radius);
auto absolute_position = [this, area_filament_cross_section](Axis axis, const GCodeReader::GCodeLine& lineG2_3) {
@@ -3488,7 +3473,7 @@ void GCodeProcessor::process_G2_G3(const GCodeReader::GCodeLine& line)
m_used_filaments.increase_model_caches(volume_extruded_filament);
}
//BBS: volume extruded filament / tool displacement = area toolpath cross section
- m_mm3_per_mm = area_toolpath_cross_section * filament_flowratio;
+ m_mm3_per_mm = area_toolpath_cross_section;
#if ENABLE_GCODE_VIEWER_DATA_CHECKING
m_mm3_per_mm_compare.update(area_toolpath_cross_section, m_extrusion_role);
#endif // ENABLE_GCODE_VIEWER_DATA_CHECKING
diff --git a/src/libslic3r/GCode/GCodeProcessor.hpp b/src/libslic3r/GCode/GCodeProcessor.hpp
index da47cea688..21403cc205 100644
--- a/src/libslic3r/GCode/GCodeProcessor.hpp
+++ b/src/libslic3r/GCode/GCodeProcessor.hpp
@@ -215,7 +215,6 @@ class Print;
std::vector required_nozzle_HRC;
std::vector filament_densities;
std::vector filament_costs;
- std::vector filament_flow_ratios;
std::vector filament_vitrification_temperature;
PrintEstimatedStatistics print_statistics;
std::vector custom_gcode_per_print_z;
@@ -251,7 +250,6 @@ class Print;
filament_diameters = other.filament_diameters;
filament_densities = other.filament_densities;
filament_costs = other.filament_costs;
- filament_flow_ratios = other.filament_flow_ratios;
print_statistics = other.print_statistics;
custom_gcode_per_print_z = other.custom_gcode_per_print_z;
spiral_vase_layers = other.spiral_vase_layers;
diff --git a/src/libslic3r/Geometry.cpp b/src/libslic3r/Geometry.cpp
index 54dcb14cca..49e50a671d 100644
--- a/src/libslic3r/Geometry.cpp
+++ b/src/libslic3r/Geometry.cpp
@@ -640,6 +640,22 @@ Transform3d Transformation::get_matrix_no_scaling_factor() const
return copy.get_matrix();
}
+// Orca: Implement prusa's filament shrink compensation approach
+Transform3d Transformation::get_matrix_with_applied_shrinkage_compensation(const Vec3d &shrinkage_compensation) const {
+ const Transform3d shrinkage_trafo = Geometry::scale_transform(shrinkage_compensation);
+ const Vec3d trafo_offset = this->get_offset();
+ const Vec3d trafo_offset_xy = Vec3d(trafo_offset.x(), trafo_offset.y(), 0.);
+
+ Transformation copy(*this);
+ copy.set_offset(Axis::X, 0.);
+ copy.set_offset(Axis::Y, 0.);
+
+ Transform3d trafo_after_shrinkage = (shrinkage_trafo * copy.get_matrix());
+ trafo_after_shrinkage.translation() += trafo_offset_xy;
+
+ return trafo_after_shrinkage;
+ }
+
Transformation Transformation::operator * (const Transformation& other) const
{
return Transformation(get_matrix() * other.get_matrix());
diff --git a/src/libslic3r/Geometry.hpp b/src/libslic3r/Geometry.hpp
index 67b27dd293..2b027a231a 100644
--- a/src/libslic3r/Geometry.hpp
+++ b/src/libslic3r/Geometry.hpp
@@ -466,6 +466,9 @@ public:
Transform3d get_matrix_no_offset() const;
Transform3d get_matrix_no_scaling_factor() const;
+ // Orca: Implement prusa's filament shrink compensation approach
+ Transform3d get_matrix_with_applied_shrinkage_compensation(const Vec3d &shrinkage_compensation) const;
+
void set_matrix(const Transform3d& transform) { m_matrix = transform; }
Transformation operator * (const Transformation& other) const;
diff --git a/src/libslic3r/Model.cpp b/src/libslic3r/Model.cpp
index 63be317b6d..fe8ff61018 100644
--- a/src/libslic3r/Model.cpp
+++ b/src/libslic3r/Model.cpp
@@ -2779,6 +2779,24 @@ void ModelVolume::convert_from_meters()
this->source.is_converted_from_meters = true;
}
+// Orca: Implement prusa's filament shrink compensation approach
+// Returns 0-based indices of extruders painted by multi-material painting gizmo.
+std::vector ModelVolume::get_extruders_from_multi_material_painting() const {
+ if (!this->is_mm_painted())
+ return {};
+
+ assert(static_cast(TriangleStateType::Extruder1) - 1 == 0);
+ const TriangleSelector::TriangleSplittingData &data = this->mmu_segmentation_facets.get_data();
+
+ std::vector extruders;
+ for (size_t state_idx = static_cast(EnforcerBlockerType::Extruder1); state_idx < data.used_states.size(); ++state_idx) {
+ if (data.used_states[state_idx])
+ extruders.emplace_back(state_idx - 1);
+ }
+
+ return extruders;
+ }
+
void ModelInstance::transform_mesh(TriangleMesh* mesh, bool dont_translate) const
{
mesh->transform(dont_translate ? get_matrix_no_offset() : get_matrix());
diff --git a/src/libslic3r/Model.hpp b/src/libslic3r/Model.hpp
index 9fc315778f..56f1f7afed 100644
--- a/src/libslic3r/Model.hpp
+++ b/src/libslic3r/Model.hpp
@@ -991,6 +991,10 @@ public:
bool is_fdm_support_painted() const { return !this->supported_facets.empty(); }
bool is_seam_painted() const { return !this->seam_facets.empty(); }
bool is_mm_painted() const { return !this->mmu_segmentation_facets.empty(); }
+
+ // Orca: Implement prusa's filament shrink compensation approach
+ // Returns 0-based indices of extruders painted by multi-material painting gizmo.
+ std::vector get_extruders_from_multi_material_painting() const;
protected:
friend class Print;
diff --git a/src/libslic3r/Preset.cpp b/src/libslic3r/Preset.cpp
index cbab85b88a..c9328821be 100644
--- a/src/libslic3r/Preset.cpp
+++ b/src/libslic3r/Preset.cpp
@@ -840,7 +840,7 @@ static std::vector s_Preset_filament_options {
"filament_wipe_distance", "additional_cooling_fan_speed",
"nozzle_temperature_range_low", "nozzle_temperature_range_high",
//SoftFever
- "enable_pressure_advance", "pressure_advance","adaptive_pressure_advance","adaptive_pressure_advance_model","adaptive_pressure_advance_overhangs", "adaptive_pressure_advance_bridges","chamber_temperature", "filament_shrink", "support_material_interface_fan_speed", "filament_notes" /*,"filament_seam_gap"*/,
+ "enable_pressure_advance", "pressure_advance","adaptive_pressure_advance","adaptive_pressure_advance_model","adaptive_pressure_advance_overhangs", "adaptive_pressure_advance_bridges","chamber_temperature", "filament_shrink","filament_shrinkage_compensation_z", "support_material_interface_fan_speed", "filament_notes" /*,"filament_seam_gap"*/,
"filament_loading_speed", "filament_loading_speed_start",
"filament_unloading_speed", "filament_unloading_speed_start", "filament_toolchange_delay", "filament_cooling_moves", "filament_stamping_loading_speed", "filament_stamping_distance",
"filament_cooling_initial_speed", "filament_cooling_final_speed", "filament_ramming_parameters",
diff --git a/src/libslic3r/Print.cpp b/src/libslic3r/Print.cpp
index 03f76fe3a3..532875434b 100644
--- a/src/libslic3r/Print.cpp
+++ b/src/libslic3r/Print.cpp
@@ -234,6 +234,7 @@ bool Print::invalidate_state_by_config_options(const ConfigOptionResolver & /* n
opt_key == "initial_layer_print_height"
|| opt_key == "nozzle_diameter"
|| opt_key == "filament_shrink"
+ || opt_key == "filament_shrinkage_compensation_z"
|| opt_key == "resolution"
|| opt_key == "precise_z_height"
// Spiral Vase forces different kind of slicing than the normal model:
@@ -1120,13 +1121,29 @@ StringObjectException Print::validate(StringObjectException *warning, Polygons*
const PrintObject &print_object = *m_objects[print_object_idx];
//FIXME It is quite expensive to generate object layers just to get the print height!
if (auto layers = generate_object_layers(print_object.slicing_parameters(), layer_height_profile(print_object_idx), print_object.config().precise_z_height.value);
- ! layers.empty() && layers.back() > this->config().printable_height + EPSILON) {
- return
+ !layers.empty()) {
+
+ Vec3d test =this->shrinkage_compensation();
+ const double shrinkage_compensation_z = this->shrinkage_compensation().z();
+
+ if (shrinkage_compensation_z != 1. && layers.back() > (this->config().printable_height / shrinkage_compensation_z + EPSILON)) {
+ // The object exceeds the maximum build volume height because of shrinkage compensation.
+ return StringObjectException{
+ Slic3r::format(_u8L("While the object %1% itself fits the build volume, it exceeds the maximum build volume height because of material shrinkage compensation."), print_object.model_object()->name),
+ print_object.model_object(),
+ ""
+ };
+ } else if (layers.back() > this->config().printable_height + EPSILON) {
// Test whether the last slicing plane is below or above the print volume.
- { 0.5 * (layers[layers.size() - 2] + layers.back()) > this->config().printable_height + EPSILON ?
+ return StringObjectException{
+ 0.5 * (layers[layers.size() - 2] + layers.back()) > this->config().printable_height + EPSILON ?
Slic3r::format(_u8L("The object %1% exceeds the maximum build volume height."), print_object.model_object()->name) :
Slic3r::format(_u8L("While the object %1% itself fits the build volume, its last layer exceeds the maximum build volume height."), print_object.model_object()->name) +
- " " + _u8L("You might want to reduce the size of your model or change current print settings and retry.") };
+ " " + _u8L("You might want to reduce the size of your model or change current print settings and retry."),
+ print_object.model_object(),
+ ""
+ };
+ }
}
}
@@ -1568,6 +1585,10 @@ StringObjectException Print::validate(StringObjectException *warning, Polygons*
BOOST_LOG_TRIVIAL(warning) << "Orca: validate motion ability failed: " << e.what() << std::endl;
}
}
+ if (!this->has_same_shrinkage_compensations()){
+ warning->string = L("Filament shrinkage will not be used because filament shrinkage for the used filaments differs significantly.");
+ warning->opt_key = "";
+ }
return {};
}
@@ -2949,6 +2970,44 @@ std::string PrintStatistics::finalize_output_path(const std::string &path_in) co
return final_path;
}
+// Orca: Implement prusa's filament shrink compensation approach
+// Returns if all used filaments have same shrinkage compensations.
+ bool Print::has_same_shrinkage_compensations() const {
+ const std::vector extruders = this->extruders();
+ if (extruders.empty())
+ return false;
+
+ const double filament_shrinkage_compensation_xy = m_config.filament_shrink.get_at(extruders.front());
+ const double filament_shrinkage_compensation_z = m_config.filament_shrinkage_compensation_z.get_at(extruders.front());
+
+ for (unsigned int extruder : extruders) {
+ if (filament_shrinkage_compensation_xy != m_config.filament_shrink.get_at(extruder) ||
+ filament_shrinkage_compensation_z != m_config.filament_shrinkage_compensation_z.get_at(extruder)) {
+ return false;
+ }
+ }
+
+ return true;
+ }
+
+// Orca: Implement prusa's filament shrink compensation approach, but amended so 100% from the user is the equivalent to 0 in orca.
+ // Returns scaling for each axis representing shrinkage compensations in each axis.
+Vec3d Print::shrinkage_compensation() const
+{
+ if (!this->has_same_shrinkage_compensations())
+ return Vec3d::Ones();
+
+ const unsigned int first_extruder = this->extruders().front();
+
+ const double xy_shrinkage_percent = m_config.filament_shrink.get_at(first_extruder);
+ const double z_shrinkage_percent = m_config.filament_shrinkage_compensation_z.get_at(first_extruder);
+
+ const double xy_compensation = 100.0 / xy_shrinkage_percent;
+ const double z_compensation = 100.0 / z_shrinkage_percent;
+
+ return { xy_compensation, xy_compensation, z_compensation };
+}
+
const std::string PrintStatistics::FilamentUsedG = "filament used [g]";
const std::string PrintStatistics::FilamentUsedGMask = "; filament used [g] =";
diff --git a/src/libslic3r/Print.hpp b/src/libslic3r/Print.hpp
index aebb46899f..9d5217e534 100644
--- a/src/libslic3r/Print.hpp
+++ b/src/libslic3r/Print.hpp
@@ -401,7 +401,8 @@ public:
// The slicing parameters are dependent on various configuration values
// (layer height, first layer height, raft settings, print nozzle diameter etc).
const SlicingParameters& slicing_parameters() const { return m_slicing_params; }
- static SlicingParameters slicing_parameters(const DynamicPrintConfig &full_config, const ModelObject &model_object, float object_max_z);
+ // Orca: XYZ shrinkage compensation has introduced the const Vec3d &object_shrinkage_compensation parameter to the function below
+ static SlicingParameters slicing_parameters(const DynamicPrintConfig &full_config, const ModelObject &model_object, float object_max_z, const Vec3d &object_shrinkage_compensation);
size_t num_printing_regions() const throw() { return m_shared_regions->all_regions.size(); }
const PrintRegion& printing_region(size_t idx) const throw() { return *m_shared_regions->all_regions[idx].get(); }
@@ -981,6 +982,12 @@ public:
bool is_all_objects_are_short() const {
return std::all_of(this->objects().begin(), this->objects().end(), [&](PrintObject* obj) { return obj->height() < scale_(this->config().nozzle_height.value); });
}
+
+ // Orca: Implement prusa's filament shrink compensation approach
+ // Returns if all used filaments have same shrinkage compensations.
+ bool has_same_shrinkage_compensations() const;
+ // Returns scaling for each axis representing shrinkage compensations in each axis.
+ Vec3d shrinkage_compensation() const;
protected:
// Invalidates the step, and its depending steps in Print.
diff --git a/src/libslic3r/PrintApply.cpp b/src/libslic3r/PrintApply.cpp
index 232c86b9ec..3767ccd2a9 100644
--- a/src/libslic3r/PrintApply.cpp
+++ b/src/libslic3r/PrintApply.cpp
@@ -131,7 +131,8 @@ struct PrintObjectTrafoAndInstances
};
// Generate a list of trafos and XY offsets for instances of a ModelObject
-static std::vector print_objects_from_model_object(const ModelObject &model_object)
+// Orca: Updated to include XYZ filament shrinkage compensation
+static std::vector print_objects_from_model_object(const ModelObject &model_object, const Vec3d &shrinkage_compensation)
{
std::set trafos;
PrintObjectTrafoAndInstances trafo;
@@ -139,7 +140,10 @@ static std::vector print_objects_from_model_object
int index = 0;
for (ModelInstance *model_instance : model_object.instances) {
if (model_instance->is_printable()) {
- trafo.trafo = model_instance->get_matrix();
+ // Orca: Updated with XYZ filament shrinkage compensation
+ Geometry::Transformation model_instance_transformation = model_instance->get_transformation();
+ trafo.trafo = model_instance_transformation.get_matrix_with_applied_shrinkage_compensation(shrinkage_compensation);
+
auto shift = Point::new_scale(trafo.trafo.data()[12], trafo.trafo.data()[13]);
// Reset the XY axes of the transformation.
trafo.trafo.data()[12] = 0;
@@ -1358,7 +1362,8 @@ Print::ApplyStatus Print::apply(const Model &model, DynamicPrintConfig new_full_
// Walk over all new model objects and check, whether there are matching PrintObjects.
for (ModelObject *model_object : m_model.objects) {
ModelObjectStatus &model_object_status = const_cast(model_object_status_db.reuse(*model_object));
- model_object_status.print_instances = print_objects_from_model_object(*model_object);
+ // Orca: Updated for XYZ filament shrink compensation
+ model_object_status.print_instances = print_objects_from_model_object(*model_object, this->shrinkage_compensation());
std::vector old;
old.reserve(print_object_status_db.count(*model_object));
for (const PrintObjectStatus &print_object_status : print_object_status_db.get_range(*model_object))
diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp
index 232ff029eb..4803ba3b88 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -1052,7 +1052,16 @@ void PrintConfigDef::init_fff_params()
def = this->add("slowdown_for_curled_perimeters", coBool);
def->label = L("Slow down for curled perimeters");
def->category = L("Speed");
- def->tooltip = L("Enable this option to slow printing down in areas where potential curled perimeters may exist");
+ def->tooltip = L("Enable this option to slow down printing in areas where perimeters may have curled upwards."
+ "For example, additional slowdown will be applied when printing overhangs on sharp corners like the "
+ "front of the Benchy hull, reducing curling which compounds over multiple layers.\n\n "
+ "It is generally recommended to have this option switched on unless your printer cooling is powerful enough or the "
+ "print speed slow enough that perimeter curling does not happen. If printing with a high external perimeter speed, "
+ "this parameter may introduce slight artifacts when slowing down due to the large variance in print speeds. "
+ "If you notice artifacts, ensure your pressure advance is tuned correctly.\n\n"
+ "Note: When this option is enabled, overhang perimeters are treated like overhangs, meaning the overhang speed is "
+ "applied even if the overhanging perimeter is part of a bridge. For example, when the perimeters are 100% overhanging"
+ ", with no wall supporting them from underneath, the 100% overhang speed will be applied.");
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionBool{ false });
@@ -1105,7 +1114,10 @@ void PrintConfigDef::init_fff_params()
def = this->add("bridge_speed", coFloat);
def->label = L("External");
def->category = L("Speed");
- def->tooltip = L("Speed of bridge and completely overhang wall");
+ def->tooltip = L("Speed of the externally visible bridge extrusions. "
+ "\n\nIn addition, if Slow down for curled perimeters is disabled or Classic overhang mode is enabled, "
+ "it will be the print speed of overhang walls that are supported by less than 13%, whether they are part of a bridge "
+ "or an overhang.");
def->sidetext = L("mm/s");
def->min = 1;
def->mode = comAdvanced;
@@ -1114,7 +1126,7 @@ void PrintConfigDef::init_fff_params()
def = this->add("internal_bridge_speed", coFloatOrPercent);
def->label = L("Internal");
def->category = L("Speed");
- def->tooltip = L("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%.");
+ def->tooltip = L("Speed of internal bridges. If the value is expressed as a percentage, it will be calculated based on the bridge_speed. Default value is 150%.");
def->sidetext = L("mm/s or %");
def->ratio_over = "bridge_speed";
def->min = 1;
@@ -1895,7 +1907,7 @@ void PrintConfigDef::init_fff_params()
def->set_default_value(new ConfigOptionFloats{ 0.4157 });
def = this->add("filament_shrink", coPercents);
- def->label = L("Shrinkage");
+ def->label = L("Shrinkage (XY)");
// xgettext:no-c-format, no-boost-format
def->tooltip = L("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."
@@ -1906,6 +1918,16 @@ void PrintConfigDef::init_fff_params()
def->min = 10;
def->mode = comAdvanced;
def->set_default_value(new ConfigOptionPercents{ 100 });
+
+ def = this->add("filament_shrinkage_compensation_z", coPercents);
+ def->label = L("Shrinkage (Z)");
+ def->tooltip = L("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 Z to compensate.");
+ def->sidetext = L("%");
+ def->ratio_over = "";
+ def->min = 10;
+ def->mode = comAdvanced;
+ def->set_default_value(new ConfigOptionPercents{ 100 });
def = this->add("filament_loading_speed", coFloats);
def->label = L("Loading speed");
@@ -4743,15 +4765,21 @@ void PrintConfigDef::init_fff_params()
def = this->add("activate_chamber_temp_control",coBools);
def->label = L("Activate temperature control");
- def->tooltip = L("Enable this option for chamber temperature control. An M191 command will be added before \"machine_start_gcode\"\nG-code commands: M141/M191 S(0-255)");
+ def->tooltip = L("Enable this option for automated chamber temperature control. This option activates the emitting of an M191 command before the \"machine_start_gcode\"\n which sets the "
+ "chamber temperature and waits until it is reached. In addition, it emits an M141 command at the end of the print to turn off the chamber heater, if present. \n\n"
+ "This option relies on the firmware supporting the M191 and M141 commands either via macros or natively and is usually used when an active chamber heater is installed.");
def->mode = comSimple;
def->set_default_value(new ConfigOptionBools{false});
def = this->add("chamber_temperature", coInts);
def->label = L("Chamber temperature");
- def->tooltip = L("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"
+ def->tooltip = L("For high-temperature materials like ABS, ASA, PC, and PA, a higher chamber temperature can help suppress or reduce warping and potentially lead to higher interlayer bonding strength. "
+ "However, at the same time, a higher chamber temperature will reduce the efficiency of air filtration for ABS and ASA. \n\n"
+ "For PLA, PETG, TPU, PVA, and other low-temperature materials, this option should be disabled (set to 0) as the chamber temperature should be low to avoid extruder clogging caused "
+ "by material softening at the heat break.\n\n"
+ "If enabled, this parameter also sets a gcode variable named chamber_temperature, which can be used to pass the desired chamber temperature to your print start macro, "
+ "or a heat soak macro like this: PRINT_START (other variables) CHAMBER_TEMP=[chamber_temperature]. This may be useful if your printer does not support M141/M191 commands, or if you desire "
+ "to handle heat soaking in the print start macro if no active chamber heater is installed."
);
def->sidetext = L("°C");
def->full_label = L("Chamber temperature");
diff --git a/src/libslic3r/PrintConfig.hpp b/src/libslic3r/PrintConfig.hpp
index 015befbd9f..c191e7ff57 100644
--- a/src/libslic3r/PrintConfig.hpp
+++ b/src/libslic3r/PrintConfig.hpp
@@ -1274,6 +1274,7 @@ PRINT_CONFIG_CLASS_DERIVED_DEFINE(
((ConfigOptionBool, independent_support_layer_height))
// SoftFever
((ConfigOptionPercents, filament_shrink))
+ ((ConfigOptionPercents, filament_shrinkage_compensation_z))
((ConfigOptionBool, gcode_label_objects))
((ConfigOptionBool, exclude_object))
((ConfigOptionBool, gcode_comments))
diff --git a/src/libslic3r/PrintObject.cpp b/src/libslic3r/PrintObject.cpp
index 8674c1a4ea..7b16f8a697 100644
--- a/src/libslic3r/PrintObject.cpp
+++ b/src/libslic3r/PrintObject.cpp
@@ -2966,12 +2966,15 @@ void PrintObject::generate_support_preview()
void PrintObject::update_slicing_parameters()
{
- if (!m_slicing_params.valid)
- m_slicing_params = SlicingParameters::create_from_config(
- this->print()->config(), m_config, this->model_object()->max_z(), this->object_extruders());
+ // Orca: updated function call for XYZ shrinkage compensation
+ if (!m_slicing_params.valid) {
+ m_slicing_params = SlicingParameters::create_from_config(this->print()->config(), m_config, this->model_object()->max_z(),
+ this->object_extruders(), this->print()->shrinkage_compensation());
+ }
}
-SlicingParameters PrintObject::slicing_parameters(const DynamicPrintConfig& full_config, const ModelObject& model_object, float object_max_z)
+// Orca: XYZ shrinkage compensation has introduced the const Vec3d &object_shrinkage_compensation parameter to the function below
+SlicingParameters PrintObject::slicing_parameters(const DynamicPrintConfig &full_config, const ModelObject &model_object, float object_max_z, const Vec3d &object_shrinkage_compensation)
{
PrintConfig print_config;
PrintObjectConfig object_config;
@@ -3006,7 +3009,7 @@ SlicingParameters PrintObject::slicing_parameters(const DynamicPrintConfig& full
if (object_max_z <= 0.f)
object_max_z = (float)model_object.raw_bounding_box().size().z();
- return SlicingParameters::create_from_config(print_config, object_config, object_max_z, object_extruders);
+ return SlicingParameters::create_from_config(print_config, object_config, object_max_z, object_extruders, object_shrinkage_compensation);
}
// returns 0-based indices of extruders used to print the object (without brim, support and other helper extrusions)
@@ -3049,7 +3052,7 @@ bool PrintObject::update_layer_height_profile(const ModelObject &model_object, c
// Must not be of even length.
((layer_height_profile.size() & 1) != 0 ||
// Last entry must be at the top of the object.
- std::abs(layer_height_profile[layer_height_profile.size() - 2] - slicing_parameters.object_print_z_max + slicing_parameters.object_print_z_min) > 1e-3))
+ std::abs(layer_height_profile[layer_height_profile.size() - 2] - slicing_parameters.object_print_z_uncompensated_max + slicing_parameters.object_print_z_min) > 1e-3))
layer_height_profile.clear();
if (layer_height_profile.empty() || layer_height_profile[1] != slicing_parameters.first_object_layer_height) {
diff --git a/src/libslic3r/PrintObjectSlice.cpp b/src/libslic3r/PrintObjectSlice.cpp
index 98f7d8b20e..21c9770663 100644
--- a/src/libslic3r/PrintObjectSlice.cpp
+++ b/src/libslic3r/PrintObjectSlice.cpp
@@ -449,22 +449,6 @@ static std::vector> slices_to_regions(
});
}
- // SoftFever: ported from SuperSlicer
- // filament shrink
- for (const std::unique_ptr& pr : print_object_regions.all_regions) {
- if (pr.get()) {
- std::vector& region_polys = slices_by_region[pr->print_object_region_id()];
- const size_t extruder_id = pr->extruder(FlowRole::frPerimeter) - 1;
- double scale = print_config.filament_shrink.values[extruder_id] * 0.01;
- if (scale != 1) {
- scale = 1 / scale;
- for (ExPolygons& polys : region_polys)
- for (ExPolygon& poly : polys)
- poly.scale(scale);
- }
- }
- }
-
return slices_by_region;
}
diff --git a/src/libslic3r/Slicing.cpp b/src/libslic3r/Slicing.cpp
index 636a3c471f..290871b914 100644
--- a/src/libslic3r/Slicing.cpp
+++ b/src/libslic3r/Slicing.cpp
@@ -60,10 +60,11 @@ coordf_t Slicing::max_layer_height_from_nozzle(const DynamicPrintConfig &print_c
}
SlicingParameters SlicingParameters::create_from_config(
- const PrintConfig &print_config,
- const PrintObjectConfig &object_config,
- coordf_t object_height,
- const std::vector &object_extruders)
+ const PrintConfig &print_config,
+ const PrintObjectConfig &object_config,
+ coordf_t object_height,
+ const std::vector &object_extruders,
+ const Vec3d &object_shrinkage_compensation)
{
coordf_t initial_layer_print_height = (print_config.initial_layer_print_height.value <= 0) ?
object_config.layer_height.value : print_config.initial_layer_print_height.value;
@@ -81,7 +82,10 @@ SlicingParameters SlicingParameters::create_from_config(
params.first_print_layer_height = initial_layer_print_height;
params.first_object_layer_height = initial_layer_print_height;
params.object_print_z_min = 0.;
- params.object_print_z_max = object_height;
+ // Orca: XYZ filament compensation
+ params.object_print_z_max = object_height * object_shrinkage_compensation.z();
+ params.object_print_z_uncompensated_max = object_height;
+ params.object_shrinkage_compensation_z = object_shrinkage_compensation.z();
params.base_raft_layers = object_config.raft_layers.value;
params.soluble_interface = soluble_interface;
@@ -153,6 +157,7 @@ SlicingParameters SlicingParameters::create_from_config(
coordf_t print_z = params.raft_contact_top_z + params.gap_raft_object;
params.object_print_z_min = print_z;
params.object_print_z_max += print_z;
+ params.object_print_z_uncompensated_max += print_z;
}
params.valid = true;
@@ -225,10 +230,10 @@ std::vector layer_height_profile_from_ranges(
lh_append(hi, height);
}
- if (coordf_t z = last_z(); z < slicing_params.object_print_z_height()) {
+ if (coordf_t z = last_z(); z < slicing_params.object_print_z_uncompensated_height()) {
// Insert a step of normal layer height up to the object top.
lh_append(z, slicing_params.layer_height);
- lh_append(slicing_params.object_print_z_height(), slicing_params.layer_height);
+ lh_append(slicing_params.object_print_z_uncompensated_height(), slicing_params.layer_height);
}
return layer_height_profile;
@@ -450,12 +455,12 @@ void adjust_layer_height_profile(
std::pair z_span_variable =
std::pair(
slicing_params.first_object_layer_height_fixed() ? slicing_params.first_object_layer_height : 0.,
- slicing_params.object_print_z_height());
+ slicing_params.object_print_z_uncompensated_height());
if (z < z_span_variable.first || z > z_span_variable.second)
return;
assert(layer_height_profile.size() >= 2);
- assert(std::abs(layer_height_profile[layer_height_profile.size() - 2] - slicing_params.object_print_z_height()) < EPSILON);
+ assert(std::abs(layer_height_profile[layer_height_profile.size() - 2] - slicing_params.object_print_z_uncompensated_height()) < EPSILON);
// 1) Get the current layer thickness at z.
coordf_t current_layer_height = slicing_params.layer_height;
@@ -616,7 +621,7 @@ void adjust_layer_height_profile(
assert(layer_height_profile.size() > 2);
assert(layer_height_profile.size() % 2 == 0);
assert(layer_height_profile[0] == 0.);
- assert(std::abs(layer_height_profile[layer_height_profile.size() - 2] - slicing_params.object_print_z_height()) < EPSILON);
+ assert(std::abs(layer_height_profile[layer_height_profile.size() - 2] - slicing_params.object_print_z_uncompensated_height()) < EPSILON);
#ifdef _DEBUG
for (size_t i = 2; i < layer_height_profile.size(); i += 2)
assert(layer_height_profile[i - 2] <= layer_height_profile[i]);
@@ -739,6 +744,8 @@ std::vector generate_object_layers(
out.push_back(print_z);
}
+ // Orca: XYZ shrinkage compensation
+ const coordf_t shrinkage_compensation_z = slicing_params.object_shrinkage_compensation_z;
size_t idx_layer_height_profile = 0;
// loop until we have at least one layer and the max slice_z reaches the object height
coordf_t slice_z = print_z + 0.5 * slicing_params.min_layer_height;
@@ -747,17 +754,20 @@ std::vector generate_object_layers(
if (idx_layer_height_profile < layer_height_profile.size()) {
size_t next = idx_layer_height_profile + 2;
for (;;) {
- if (next >= layer_height_profile.size() || slice_z < layer_height_profile[next])
+ // Orca: XYZ shrinkage compensation
+ if (next >= layer_height_profile.size() || slice_z < layer_height_profile[next] * shrinkage_compensation_z)
break;
idx_layer_height_profile = next;
next += 2;
}
- coordf_t z1 = layer_height_profile[idx_layer_height_profile];
- coordf_t h1 = layer_height_profile[idx_layer_height_profile + 1];
+ // Orca: XYZ shrinkage compensation
+ const coordf_t z1 = layer_height_profile[idx_layer_height_profile] * shrinkage_compensation_z;
+ const coordf_t h1 = layer_height_profile[idx_layer_height_profile + 1];
height = h1;
if (next < layer_height_profile.size()) {
- coordf_t z2 = layer_height_profile[next];
- coordf_t h2 = layer_height_profile[next + 1];
+ // Orca: XYZ shrinkage compensation
+ const coordf_t z2 = layer_height_profile[next] * shrinkage_compensation_z;
+ const coordf_t h2 = layer_height_profile[next + 1];
height = lerp(h1, h2, (slice_z - z1) / (z2 - z1));
assert(height >= slicing_params.min_layer_height - EPSILON && height <= slicing_params.max_layer_height + EPSILON);
}
diff --git a/src/libslic3r/Slicing.hpp b/src/libslic3r/Slicing.hpp
index c519a3d194..d6cd7dcb41 100644
--- a/src/libslic3r/Slicing.hpp
+++ b/src/libslic3r/Slicing.hpp
@@ -28,11 +28,13 @@ struct SlicingParameters
{
SlicingParameters() = default;
+ // Orca: XYZ filament compensation introduced object_shrinkage_compensation
static SlicingParameters create_from_config(
- const PrintConfig &print_config,
- const PrintObjectConfig &object_config,
- coordf_t object_height,
- const std::vector &object_extruders);
+ const PrintConfig &print_config,
+ const PrintObjectConfig &object_config,
+ coordf_t object_height,
+ const std::vector &object_extruders,
+ const Vec3d &object_shrinkage_compensation);
// Has any raft layers?
bool has_raft() const { return raft_layers() > 0; }
@@ -43,6 +45,10 @@ struct SlicingParameters
// Height of the object to be printed. This value does not contain the raft height.
coordf_t object_print_z_height() const { return object_print_z_max - object_print_z_min; }
+
+ // Height of the object to be printed. This value does not contain the raft height.
+ // This value isn't scaled by shrinkage compensation in the Z-axis.
+ coordf_t object_print_z_uncompensated_height() const { return object_print_z_uncompensated_max - object_print_z_min; }
bool valid { false };
@@ -95,7 +101,14 @@ struct SlicingParameters
coordf_t raft_contact_top_z { 0 };
// In case of a soluble interface, object_print_z_min == raft_contact_top_z, otherwise there is a gap between the raft and the 1st object layer.
coordf_t object_print_z_min { 0 };
+ // This value of maximum print Z is scaled by shrinkage compensation in the Z-axis.
coordf_t object_print_z_max { 0 };
+
+ // Orca: XYZ shrinkage compensation
+ // This value of maximum print Z isn't scaled by shrinkage compensation.
+ coordf_t object_print_z_uncompensated_max { 0 };
+ // Scaling factor for compensating shrinkage in Z-axis.
+ coordf_t object_shrinkage_compensation_z { 0 };
};
static_assert(IsTriviallyCopyable::value, "SlicingParameters class is not POD (and it should be - see constructor).");
diff --git a/src/slic3r/GUI/CreatePresetsDialog.cpp b/src/slic3r/GUI/CreatePresetsDialog.cpp
index 48dcd07424..d40b1343a0 100644
--- a/src/slic3r/GUI/CreatePresetsDialog.cpp
+++ b/src/slic3r/GUI/CreatePresetsDialog.cpp
@@ -4122,13 +4122,13 @@ wxBoxSizer *ExportConfigsDialog::create_select_printer(wxWindow *parent)
horizontal_sizer->Add(optionSizer, 0, wxEXPAND | wxALL | wxALIGN_CENTER_VERTICAL, FromDIP(10));
m_scrolled_preset_window = new wxScrolledWindow(parent);
m_scrolled_preset_window->SetScrollRate(5, 5);
- m_scrolled_preset_window->SetBackgroundColour(PRINTER_LIST_COLOUR);
+ m_scrolled_preset_window->SetBackgroundColour(*wxWHITE);
m_scrolled_preset_window->SetMaxSize(wxSize(FromDIP(660), FromDIP(400)));
m_scrolled_preset_window->SetSize(wxSize(FromDIP(660), FromDIP(400)));
wxBoxSizer *scrolled_window = new wxBoxSizer(wxHORIZONTAL);
m_presets_window = new wxPanel(m_scrolled_preset_window, wxID_ANY);
- m_presets_window->SetBackgroundColour(PRINTER_LIST_COLOUR);
+ m_presets_window->SetBackgroundColour(*wxWHITE);
wxBoxSizer *select_printer_sizer = new wxBoxSizer(wxVERTICAL);
m_preset_sizer = new wxGridSizer(3, FromDIP(5), FromDIP(5));
diff --git a/src/slic3r/GUI/DeviceManager.cpp b/src/slic3r/GUI/DeviceManager.cpp
index a79dd0a027..4c4eb37c60 100644
--- a/src/slic3r/GUI/DeviceManager.cpp
+++ b/src/slic3r/GUI/DeviceManager.cpp
@@ -5662,7 +5662,7 @@ void DeviceManager::parse_user_print_info(std::string body)
}
}
}
- catch (std::exception& e) {
+ catch (std::exception&) {
;
}
}
diff --git a/src/slic3r/GUI/GLCanvas3D.cpp b/src/slic3r/GUI/GLCanvas3D.cpp
index ae0b24f588..2faf3a8dae 100644
--- a/src/slic3r/GUI/GLCanvas3D.cpp
+++ b/src/slic3r/GUI/GLCanvas3D.cpp
@@ -666,8 +666,9 @@ void GLCanvas3D::LayersEditing::update_slicing_parameters()
{
if (m_slicing_parameters == nullptr) {
m_slicing_parameters = new SlicingParameters();
- *m_slicing_parameters = PrintObject::slicing_parameters(*m_config, *m_model_object, m_object_max_z);
+ *m_slicing_parameters = PrintObject::slicing_parameters(*m_config, *m_model_object, m_object_max_z, m_shrinkage_compensation);
}
+
}
float GLCanvas3D::LayersEditing::thickness_bar_width(const GLCanvas3D & canvas)
@@ -1489,6 +1490,11 @@ void GLCanvas3D::set_config(const DynamicPrintConfig* config)
{
m_config = config;
m_layers_editing.set_config(config);
+
+ // Orca: Filament shrinkage compensation
+ const Print *print = fff_print();
+ if (print != nullptr)
+ m_layers_editing.set_shrinkage_compensation(fff_print()->shrinkage_compensation());
}
void GLCanvas3D::set_process(BackgroundSlicingProcess *process)
@@ -8440,7 +8446,6 @@ void GLCanvas3D::_render_assemble_info() const
auto canvas_h = float(get_canvas_size().get_height());
float space_size = imgui->get_style_scaling() * 8.0f;
float caption_max = imgui->calc_text_size(_L("Total Volume:")).x + 3 * space_size;
- char buf[3][64];
ImGuiIO& io = ImGui::GetIO();
ImFont* font = io.Fonts->Fonts[0];
diff --git a/src/slic3r/GUI/GLCanvas3D.hpp b/src/slic3r/GUI/GLCanvas3D.hpp
index 023e95a976..2d67401d5f 100644
--- a/src/slic3r/GUI/GLCanvas3D.hpp
+++ b/src/slic3r/GUI/GLCanvas3D.hpp
@@ -216,6 +216,9 @@ class GLCanvas3D
};
static const float THICKNESS_BAR_WIDTH;
+
+ // Orca: Shrinkage compensation
+ void set_shrinkage_compensation(const Vec3d &shrinkage_compensation) { m_shrinkage_compensation = shrinkage_compensation; };
private:
bool m_enabled{ false };
@@ -229,6 +232,9 @@ class GLCanvas3D
// Owned by LayersEditing.
SlicingParameters* m_slicing_parameters{ nullptr };
std::vector m_layer_height_profile;
+
+ // Orca: Shrinkage compensation to apply when we need to use object_max_z with Z compensation.
+ Vec3d m_shrinkage_compensation{ Vec3d::Ones() };
mutable float m_adaptive_quality{ 0.5f };
mutable HeightProfileSmoothingParams m_smooth_params;
diff --git a/src/slic3r/GUI/GLTexture.cpp b/src/slic3r/GUI/GLTexture.cpp
index 79cbb77370..be0b402653 100644
--- a/src/slic3r/GUI/GLTexture.cpp
+++ b/src/slic3r/GUI/GLTexture.cpp
@@ -470,7 +470,6 @@ void GLTexture::reset()
bool GLTexture::generate_from_text_string(const std::string& text_str, wxFont &font, wxColor background, wxColor foreground)
{
- int w,h,hl;
return generate_from_text(text_str, font, background, foreground);
}
diff --git a/src/slic3r/GUI/GUI_App.cpp b/src/slic3r/GUI/GUI_App.cpp
index eb5ae0c38a..4c89e966b7 100644
--- a/src/slic3r/GUI/GUI_App.cpp
+++ b/src/slic3r/GUI/GUI_App.cpp
@@ -1026,7 +1026,7 @@ void GUI_App::post_init()
try {
std::time_t lw_t = boost::filesystem::last_write_time(temp_path) ;
files_vec.push_back({ lw_t, temp_path.filename().string() });
- } catch (const std::exception &ex) {
+ } catch (const std::exception &) {
}
}
std::sort(files_vec.begin(), files_vec.end(), [](
@@ -3365,7 +3365,7 @@ if (res) {
mainframe->refresh_plugin_tips();
// BBS: remove SLA related message
}
- } catch (std::exception &e) {
+ } catch (std::exception &) {
// wxMessageBox(e.what(), "", MB_OK);
}
}
@@ -3379,7 +3379,7 @@ void GUI_App::ShowDownNetPluginDlg() {
return;
DownloadProgressDialog dlg(_L("Downloading Bambu Network Plug-in"));
dlg.ShowModal();
- } catch (std::exception &e) {
+ } catch (std::exception &) {
;
}
}
@@ -3396,7 +3396,7 @@ void GUI_App::ShowUserLogin(bool show)
login_dlg = new ZUserLogin();
}
login_dlg->ShowModal();
- } catch (std::exception &e) {
+ } catch (std::exception &) {
;
}
} else {
@@ -3418,7 +3418,7 @@ void GUI_App::ShowOnlyFilament() {
// BBS: remove SLA related message
}
- } catch (std::exception &e) {
+ } catch (std::exception &) {
// wxMessageBox(e.what(), "", MB_OK);
}
}
@@ -6507,8 +6507,6 @@ static bool del_win_registry(HKEY hkeyHive, const wchar_t *pszVar, const wchar_t
return false;
if (!bDidntExist) {
- DWORD dwDisposition;
- HKEY hkey;
iRC = ::RegDeleteKeyExW(hkeyHive, pszVar, KEY_ALL_ACCESS, 0);
if (iRC == ERROR_SUCCESS) {
return true;
diff --git a/src/slic3r/GUI/GUI_Factories.cpp b/src/slic3r/GUI/GUI_Factories.cpp
index ee19b25497..3cd5c2e057 100644
--- a/src/slic3r/GUI/GUI_Factories.cpp
+++ b/src/slic3r/GUI/GUI_Factories.cpp
@@ -1977,7 +1977,6 @@ void MenuFactory::append_menu_item_set_printable(wxMenu* menu)
for (wxDataViewItem item : sels) {
ItemType type = list->GetModel()->GetItemType(item);
- bool check;
if (type != itInstance && type != itObject)
continue;
else {
diff --git a/src/slic3r/GUI/GUI_ObjectList.cpp b/src/slic3r/GUI/GUI_ObjectList.cpp
index 30846abf51..e1fc0b0f18 100644
--- a/src/slic3r/GUI/GUI_ObjectList.cpp
+++ b/src/slic3r/GUI/GUI_ObjectList.cpp
@@ -2006,7 +2006,7 @@ void ObjectList::load_modifier(const wxArrayString& input_files, ModelObject& mo
try {
model = Model::read_from_file(input_file, nullptr, nullptr, LoadStrategy::LoadModel);
}
- catch (std::exception& e) {
+ catch (std::exception&) {
// auto msg = _L("Error!") + " " + input_file + " : " + e.what() + ".";
auto msg = _L("Error!") + " " + _L("Failed to get the model data in the current file.");
show_error(parent, msg);
diff --git a/src/slic3r/GUI/Jobs/PrintJob.cpp b/src/slic3r/GUI/Jobs/PrintJob.cpp
index a54310c234..31bbccfb96 100644
--- a/src/slic3r/GUI/Jobs/PrintJob.cpp
+++ b/src/slic3r/GUI/Jobs/PrintJob.cpp
@@ -150,7 +150,6 @@ void PrintJob::process(Ctl &ctl)
ctl.call_on_main_thread([this] { prepare(); }).wait();
int result = -1;
- unsigned int http_code;
std::string http_body;
int total_plate_num = plate_data.plate_count;
@@ -312,7 +311,7 @@ void PrintJob::process(Ctl &ctl)
try {
stl_design_id = std::stoi(wxGetApp().model().stl_design_id);
}
- catch (const std::exception& e) {
+ catch (const std::exception&) {
stl_design_id = 0;
}
params.stl_design_id = stl_design_id;
diff --git a/src/slic3r/GUI/Jobs/SendJob.cpp b/src/slic3r/GUI/Jobs/SendJob.cpp
index 6566060546..1964aa24ec 100644
--- a/src/slic3r/GUI/Jobs/SendJob.cpp
+++ b/src/slic3r/GUI/Jobs/SendJob.cpp
@@ -111,7 +111,6 @@ void SendJob::process(Ctl &ctl)
NetworkAgent* m_agent = wxGetApp().getAgent();
AppConfig* config = wxGetApp().app_config;
int result = -1;
- unsigned int http_code;
std::string http_body;
if (this->connection_type == "lan") {
diff --git a/src/slic3r/GUI/MainFrame.cpp b/src/slic3r/GUI/MainFrame.cpp
index 2f59daffbb..47d7c30e86 100644
--- a/src/slic3r/GUI/MainFrame.cpp
+++ b/src/slic3r/GUI/MainFrame.cpp
@@ -2822,10 +2822,17 @@ void MainFrame::init_menubar_as_editor()
auto flowrate_menu = new wxMenu();
append_menu_item(
flowrate_menu, wxID_ANY, _L("Pass 1"), _L("Flow rate test - Pass 1"),
- [this](wxCommandEvent&) { if (m_plater) m_plater->calib_flowrate(1); }, "", nullptr,
+ [this](wxCommandEvent&) { if (m_plater) m_plater->calib_flowrate(false, 1); }, "", nullptr,
[this]() {return m_plater->is_view3D_shown();; }, this);
append_menu_item(flowrate_menu, wxID_ANY, _L("Pass 2"), _L("Flow rate test - Pass 2"),
- [this](wxCommandEvent&) { if (m_plater) m_plater->calib_flowrate(2); }, "", nullptr,
+ [this](wxCommandEvent&) { if (m_plater) m_plater->calib_flowrate(false, 2); }, "", nullptr,
+ [this]() {return m_plater->is_view3D_shown();; }, this);
+ flowrate_menu->AppendSeparator();
+ append_menu_item(flowrate_menu, wxID_ANY, _L("YOLO (Recommended)"), _L("Orca YOLO flowrate calibration, 0.01 step"),
+ [this](wxCommandEvent&) { if (m_plater) m_plater->calib_flowrate(true, 1); }, "", nullptr,
+ [this]() {return m_plater->is_view3D_shown();; }, this);
+ append_menu_item(flowrate_menu, wxID_ANY, _L("YOLO (perfectionist version)"), _L("Orca YOLO flowrate calibration, 0.005 step"),
+ [this](wxCommandEvent&) { if (m_plater) m_plater->calib_flowrate(true, 2); }, "", nullptr,
[this]() {return m_plater->is_view3D_shown();; }, this);
m_topbar->GetCalibMenu()->AppendSubMenu(flowrate_menu, _L("Flow rate"));
append_menu_item(m_topbar->GetCalibMenu(), wxID_ANY, _L("Pressure advance"), _L("Pressure advance"),
@@ -2909,13 +2916,20 @@ void MainFrame::init_menubar_as_editor()
// Flowrate
auto flowrate_menu = new wxMenu();
append_menu_item(flowrate_menu, wxID_ANY, _L("Pass 1"), _L("Flow rate test - Pass 1"),
- [this](wxCommandEvent&) { if (m_plater) m_plater->calib_flowrate(1); }, "", nullptr,
+ [this](wxCommandEvent&) { if (m_plater) m_plater->calib_flowrate(false, 1); }, "", nullptr,
[this]() {return m_plater->is_view3D_shown();; }, this);
append_menu_item(flowrate_menu, wxID_ANY, _L("Pass 2"), _L("Flow rate test - Pass 2"),
- [this](wxCommandEvent&) { if (m_plater) m_plater->calib_flowrate(2); }, "", nullptr,
+ [this](wxCommandEvent&) { if (m_plater) m_plater->calib_flowrate(false, 2); }, "", nullptr,
[this]() {return m_plater->is_view3D_shown();; }, this);
append_submenu(calib_menu,flowrate_menu,wxID_ANY,_L("Flow rate"),_L("Flow rate"),"",
[this]() {return m_plater->is_view3D_shown();; });
+ flowrate_menu->AppendSeparator();
+ append_menu_item(flowrate_menu, wxID_ANY, _L("YOLO (Recommended)"), _L("Orca YOLO flowrate calibration, 0.01 step"),
+ [this](wxCommandEvent&) { if (m_plater) m_plater->calib_flowrate(true, 1); }, "", nullptr,
+ [this]() {return m_plater->is_view3D_shown();; }, this);
+ append_menu_item(flowrate_menu, wxID_ANY, _L("YOLO (perfectionist version)"), _L("Orca YOLO flowrate calibration, 0.005 step"),
+ [this](wxCommandEvent&) { if (m_plater) m_plater->calib_flowrate(true, 2); }, "", nullptr,
+ [this]() {return m_plater->is_view3D_shown();; }, this);
// PA
append_menu_item(calib_menu, wxID_ANY, _L("Pressure advance"), _L("Pressure advance"),
diff --git a/src/slic3r/GUI/ModelMall.cpp b/src/slic3r/GUI/ModelMall.cpp
index f14de1ebf0..45833ba80c 100644
--- a/src/slic3r/GUI/ModelMall.cpp
+++ b/src/slic3r/GUI/ModelMall.cpp
@@ -133,7 +133,7 @@ namespace GUI {
}
}
- catch (std::exception& e) {
+ catch (std::exception&) {
// wxMessageBox(e.what(), "json Exception", MB_OK);
}
}
diff --git a/src/slic3r/GUI/OG_CustomCtrl.cpp b/src/slic3r/GUI/OG_CustomCtrl.cpp
index dadde84ebc..bfeb550d3d 100644
--- a/src/slic3r/GUI/OG_CustomCtrl.cpp
+++ b/src/slic3r/GUI/OG_CustomCtrl.cpp
@@ -492,13 +492,16 @@ bool OG_CustomCtrl::update_visibility(ConfigOptionMode mode)
wxCoord h_pos2 = get_title_width() * m_em_unit;
wxCoord v_pos = 0;
- size_t invisible_lines = 0;
+ bool has_visible_lines = false;
for (CtrlLine& line : ctrl_lines) {
line.update_visibility(mode);
- if (line.is_visible)
+ if (line.is_visible) {
v_pos += (wxCoord)line.height;
- else
- invisible_lines++;
+
+ if (!line.is_separator()) { // Ignore separators
+ has_visible_lines = true;
+ }
+ }
}
// BBS: multi-line title
SetFont(Label::Head_16);
@@ -513,7 +516,7 @@ bool OG_CustomCtrl::update_visibility(ConfigOptionMode mode)
this->SetMinSize(wxSize(h_pos, v_pos));
- return invisible_lines != ctrl_lines.size();
+ return has_visible_lines;
}
// BBS: call by Tab/Page
diff --git a/src/slic3r/GUI/PartPlate.cpp b/src/slic3r/GUI/PartPlate.cpp
index 7f2353a304..f99db5445c 100644
--- a/src/slic3r/GUI/PartPlate.cpp
+++ b/src/slic3r/GUI/PartPlate.cpp
@@ -470,7 +470,7 @@ void PartPlate::calc_gridlines(const ExPolygon& poly, const BoundingBox& pp_bbox
int count = 0;
int step = 10;
// Orca: use 500 x 500 bed size as baseline.
- auto grid_counts = pp_bbox.size() / ((coord_t) scale_(step * 50));
+ const Point grid_counts = pp_bbox.size() / ((coord_t) scale_(step * 50));
// if the grid is too dense, we increase the step
if (grid_counts.minCoeff() > 1) {
step = static_cast(grid_counts.minCoeff() + 1) * 10;
@@ -2522,7 +2522,7 @@ void PartPlate::generate_print_polygon(ExPolygon &print_polygon)
{
auto compute_points = [&print_polygon](Vec2d& center, double radius, double start_angle, double stop_angle, int count)
{
- double angle, angle_steps;
+ double angle_steps;
angle_steps = (stop_angle - start_angle) / (count - 1);
for(int j = 0; j < count; j++ )
{
@@ -2541,7 +2541,7 @@ void PartPlate::generate_print_polygon(ExPolygon &print_polygon)
{
const Vec2d& p = m_shape[i];
Vec2d center;
- double start_angle, stop_angle, angle_steps, radius_x, radius_y, radius;
+ double start_angle, stop_angle, radius_x, radius_y, radius;
switch (i) {
case 0:
radius = 5.f;
@@ -2592,7 +2592,7 @@ void PartPlate::generate_exclude_polygon(ExPolygon &exclude_polygon)
{
auto compute_exclude_points = [&exclude_polygon](Vec2d& center, double radius, double start_angle, double stop_angle, int count)
{
- double angle, angle_steps;
+ double angle_steps;
angle_steps = (stop_angle - start_angle) / (count - 1);
for(int j = 0; j < count; j++ )
{
@@ -2611,7 +2611,7 @@ void PartPlate::generate_exclude_polygon(ExPolygon &exclude_polygon)
{
const Vec2d& p = m_exclude_area[i];
Vec2d center;
- double start_angle, stop_angle, angle_steps, radius_x, radius_y, radius;
+ double start_angle, stop_angle, radius;
switch (i) {
case 0:
radius = 5.f;
diff --git a/src/slic3r/GUI/Plater.cpp b/src/slic3r/GUI/Plater.cpp
index 7950f9a669..34eaa55be9 100644
--- a/src/slic3r/GUI/Plater.cpp
+++ b/src/slic3r/GUI/Plater.cpp
@@ -9083,7 +9083,7 @@ void Plater::import_model_id(wxString download_info)
}
}
- catch (const std::exception& error)
+ catch (const std::exception&)
{
//wxString sError = error.what();
}
@@ -9125,7 +9125,6 @@ void Plater::import_model_id(wxString download_info)
// if (!m_agent) return;
int res = 0;
- unsigned int http_code;
std::string http_body;
msg = _L("prepare 3mf file...");
@@ -9164,7 +9163,7 @@ void Plater::import_model_id(wxString download_info)
if (sFile == filename) is_already_exist = true;
}
}
- catch (const std::exception& error)
+ catch (const std::exception&)
{
//wxString sError = error.what();
}
@@ -9646,21 +9645,11 @@ void Plater::_calib_pa_select_added_objects() {
}
}
-void Plater::calib_flowrate(int pass) {
- if (pass != 1 && pass != 2)
- return;
- const auto calib_name = wxString::Format(L"Flowrate Test - Pass%d", pass);
- if (new_project(false, false, calib_name) == wxID_CANCEL)
- return;
-
- wxGetApp().mainframe->select_tab(size_t(MainFrame::tp3DEditor));
-
- if(pass == 1)
- add_model(false, (boost::filesystem::path(Slic3r::resources_dir()) / "calib" / "filament_flow" / "flowrate-test-pass1.3mf").string());
- else
- add_model(false, (boost::filesystem::path(Slic3r::resources_dir()) / "calib" / "filament_flow" / "flowrate-test-pass2.3mf").string());
-
- auto print_config = &wxGetApp().preset_bundle->prints.get_edited_preset().config;
+// Adjust settings for flowrate calibration
+// For linear mode, pass 1 means normal version while pass 2 mean "for perfectionists" version
+void adjust_settings_for_flowrate_calib(ModelObjectPtrs& objects, bool linear, int pass)
+{
+auto print_config = &wxGetApp().preset_bundle->prints.get_edited_preset().config;
auto printerConfig = &wxGetApp().preset_bundle->printers.get_edited_preset().config;
auto filament_config = &wxGetApp().preset_bundle->filaments.get_edited_preset().config;
@@ -9670,37 +9659,47 @@ void Plater::calib_flowrate(int pass) {
assert(nozzle_diameter_config->values.size() > 0);
float nozzle_diameter = nozzle_diameter_config->values[0];
float xyScale = nozzle_diameter / 0.6;
- //scale z to have 7 layers
+ //scale z to have 10 layers
+ // 2 bottom, 5 top, 3 sparse infill
double first_layer_height = print_config->option("initial_layer_print_height")->value;
double layer_height = nozzle_diameter / 2.0; // prefer 0.2 layer height for 0.4 nozzle
first_layer_height = std::max(first_layer_height, layer_height);
- float zscale = (first_layer_height + 6 * layer_height) / 1.4;
+ float zscale = (first_layer_height + 9 * layer_height) / 2;
// only enlarge
if (xyScale > 1.2) {
- for (auto _obj : model().objects)
+ for (auto _obj : objects)
_obj->scale(xyScale, xyScale, zscale);
}
else {
- for (auto _obj : model().objects)
+ for (auto _obj : objects)
_obj->scale(1, 1, zscale);
}
+ auto cur_flowrate = filament_config->option("filament_flow_ratio")->get_at(0);
Flow infill_flow = Flow(nozzle_diameter * 1.2f, layer_height, nozzle_diameter);
double filament_max_volumetric_speed = filament_config->option("filament_max_volumetric_speed")->get_at(0);
- double max_infill_speed = filament_max_volumetric_speed / (infill_flow.mm3_per_mm() * (pass == 1 ? 1.2 : 1));
+ double max_infill_speed;
+ if (linear)
+ max_infill_speed = filament_max_volumetric_speed /
+ (infill_flow.mm3_per_mm() * (cur_flowrate + (pass == 2 ? 0.035 : 0.05)) / cur_flowrate);
+ else
+ max_infill_speed = filament_max_volumetric_speed / (infill_flow.mm3_per_mm() * (pass == 1 ? 1.2 : 1));
double internal_solid_speed = std::floor(std::min(print_config->opt_float("internal_solid_infill_speed"), max_infill_speed));
double top_surface_speed = std::floor(std::min(print_config->opt_float("top_surface_speed"), max_infill_speed));
// adjust parameters
- for (auto _obj : model().objects) {
+ for (auto _obj : objects) {
_obj->ensure_on_bed();
- _obj->config.set_key_value("wall_loops", new ConfigOptionInt(3));
+ _obj->config.set_key_value("wall_loops", new ConfigOptionInt(1));
_obj->config.set_key_value("only_one_wall_top", new ConfigOptionBool(true));
+ _obj->config.set_key_value("thick_internal_bridges", new ConfigOptionBool(false));
_obj->config.set_key_value("sparse_infill_density", new ConfigOptionPercent(35));
_obj->config.set_key_value("min_width_top_surface", new ConfigOptionFloatOrPercent(100,true));
- _obj->config.set_key_value("bottom_shell_layers", new ConfigOptionInt(1));
+ _obj->config.set_key_value("bottom_shell_layers", new ConfigOptionInt(2));
_obj->config.set_key_value("top_shell_layers", new ConfigOptionInt(5));
+ _obj->config.set_key_value("top_shell_thickness", new ConfigOptionFloat(0));
+ _obj->config.set_key_value("bottom_shell_thickness", new ConfigOptionFloat(0));
_obj->config.set_key_value("detect_thin_wall", new ConfigOptionBool(true));
_obj->config.set_key_value("filter_out_gap_fill", new ConfigOptionFloat(0));
_obj->config.set_key_value("sparse_infill_pattern", new ConfigOptionEnum(ipRectilinear));
@@ -9724,14 +9723,18 @@ void Plater::calib_flowrate(int pass) {
if (obj_name[0] == 'm')
obj_name[0] = '-';
auto modifier = stof(obj_name);
- _obj->config.set_key_value("print_flow_ratio", new ConfigOptionFloat(1.0f + modifier/100.f));
+ if(linear)
+ _obj->config.set_key_value("print_flow_ratio", new ConfigOptionFloat((cur_flowrate + modifier)/cur_flowrate));
+ else
+ _obj->config.set_key_value("print_flow_ratio", new ConfigOptionFloat(1.0f + modifier/100.f));
+
}
print_config->set_key_value("layer_height", new ConfigOptionFloat(layer_height));
print_config->set_key_value("alternate_extra_wall", new ConfigOptionBool(false));
print_config->set_key_value("initial_layer_print_height", new ConfigOptionFloat(first_layer_height));
print_config->set_key_value("reduce_crossing_wall", new ConfigOptionBool(true));
- //filament_config->set_key_value("filament_max_volumetric_speed", new ConfigOptionFloats{ 9. });
+
wxGetApp().get_tab(Preset::TYPE_PRINT)->update_dirty();
wxGetApp().get_tab(Preset::TYPE_FILAMENT)->update_dirty();
@@ -9741,6 +9744,43 @@ void Plater::calib_flowrate(int pass) {
wxGetApp().get_tab(Preset::TYPE_PRINTER)->reload_config();
}
+void Plater::calib_flowrate(bool is_linear, int pass) {
+ if (pass != 1 && pass != 2)
+ return;
+ wxString calib_name;
+ if (is_linear) {
+ calib_name = L"Orca YOLO Flow Calibration";
+ if (pass == 2)
+ calib_name += L" - Perfectionist version";
+ } else
+ calib_name = wxString::Format(L"Flowrate Test - Pass%d", pass);
+
+ if (new_project(false, false, calib_name) == wxID_CANCEL)
+ return;
+
+ wxGetApp().mainframe->select_tab(size_t(MainFrame::tp3DEditor));
+
+ if (is_linear) {
+ if (pass == 1)
+ add_model(false,
+ (boost::filesystem::path(Slic3r::resources_dir()) / "calib" / "filament_flow" / "Orca-LinearFlow.3mf").string());
+ else
+ add_model(false,
+ (boost::filesystem::path(Slic3r::resources_dir()) / "calib" / "filament_flow" / "Orca-LinearFlow_fine.3mf").string());
+ } else {
+ if (pass == 1)
+ add_model(false,
+ (boost::filesystem::path(Slic3r::resources_dir()) / "calib" / "filament_flow" / "flowrate-test-pass1.3mf").string());
+ else
+ add_model(false,
+ (boost::filesystem::path(Slic3r::resources_dir()) / "calib" / "filament_flow" / "flowrate-test-pass2.3mf").string());
+ }
+
+ adjust_settings_for_flowrate_calib(model().objects, is_linear, pass);
+ wxGetApp().get_tab(Preset::TYPE_PRINTER)->reload_config();
+}
+
+
void Plater::calib_temp(const Calib_Params& params) {
const auto calib_temp_name = wxString::Format(L"Nozzle temperature test");
new_project(false, false, calib_temp_name);
@@ -12563,7 +12603,7 @@ int Plater::send_gcode(int plate_idx, Export3mfProgressFn proFn)
p->m_print_job_data._3mf_path = fs::path(plate->get_tmp_gcode_path());
p->m_print_job_data._3mf_path.replace_extension("3mf");
}
- catch (std::exception& e) {
+ catch (std::exception&) {
BOOST_LOG_TRIVIAL(error) << "generate 3mf path failed";
return -1;
}
@@ -12596,7 +12636,7 @@ int Plater::export_config_3mf(int plate_idx, Export3mfProgressFn proFn)
try {
p->m_print_job_data._3mf_config_path = fs::path(plate->get_temp_config_3mf_path());
}
- catch (std::exception& e) {
+ catch (std::exception&) {
BOOST_LOG_TRIVIAL(error) << "generate 3mf path failed";
return -1;
}
diff --git a/src/slic3r/GUI/Plater.hpp b/src/slic3r/GUI/Plater.hpp
index 16396631a8..109e7845dc 100644
--- a/src/slic3r/GUI/Plater.hpp
+++ b/src/slic3r/GUI/Plater.hpp
@@ -259,7 +259,7 @@ public:
// SoftFever
void calib_pa(const Calib_Params& params);
- void calib_flowrate(int pass);
+ void calib_flowrate(bool is_linear, int pass);
void calib_temp(const Calib_Params& params);
void calib_max_vol_speed(const Calib_Params& params);
void calib_retraction(const Calib_Params& params);
diff --git a/src/slic3r/GUI/PresetComboBoxes.cpp b/src/slic3r/GUI/PresetComboBoxes.cpp
index e634c4fe1a..2f5aed9f08 100644
--- a/src/slic3r/GUI/PresetComboBoxes.cpp
+++ b/src/slic3r/GUI/PresetComboBoxes.cpp
@@ -799,8 +799,10 @@ bool PlaterPresetComboBox::switch_to_tab()
//BBS Select NoteBook Tab params
if (tab->GetParent() == wxGetApp().params_panel())
wxGetApp().mainframe->select_tab(MainFrame::tp3DEditor);
- else
+ else {
wxGetApp().params_dialog()->Popup();
+ tab->OnActivate();
+ }
tab->restore_last_select_item();
const Preset* selected_filament_preset = nullptr;
diff --git a/src/slic3r/GUI/Project.cpp b/src/slic3r/GUI/Project.cpp
index 003d0e4cdd..e69ba143db 100644
--- a/src/slic3r/GUI/Project.cpp
+++ b/src/slic3r/GUI/Project.cpp
@@ -266,7 +266,7 @@ void ProjectPanel::OnScriptMessage(wxWebViewEvent& evt)
}
}
- catch (std::exception& e) {
+ catch (std::exception&) {
// wxMessageBox(e.what(), "json Exception", MB_OK);
}
}
diff --git a/src/slic3r/GUI/Search.cpp b/src/slic3r/GUI/Search.cpp
index c8a661769f..958f3b2b2e 100644
--- a/src/slic3r/GUI/Search.cpp
+++ b/src/slic3r/GUI/Search.cpp
@@ -816,7 +816,6 @@ void SearchDialog::OnCheck(wxCommandEvent &event)
void SearchDialog::OnMotion(wxMouseEvent &event)
{
wxDataViewItem item;
- wxDataViewColumn *col;
wxWindow * win = this;
// search_list->HitTest(wxGetMousePosition() - win->GetScreenPosition(), item, col);
diff --git a/src/slic3r/GUI/Tab.cpp b/src/slic3r/GUI/Tab.cpp
index f529b09c13..8b6477fc4b 100644
--- a/src/slic3r/GUI/Tab.cpp
+++ b/src/slic3r/GUI/Tab.cpp
@@ -468,14 +468,7 @@ void Tab::create_preset_tab()
// so that the cursor jumps to the last item.
// BBS: bold selection
m_tabctrl->Bind(wxEVT_TAB_SEL_CHANGING, [this](wxCommandEvent& event) {
- if (m_disable_tree_sel_changed_event)
- return;
const auto sel_item = m_tabctrl->GetSelection();
- //OutputDebugStringA("wxEVT_TAB_SEL_CHANGING ");
- //OutputDebugStringA(m_title.c_str());
- //const auto selection = sel_item >= 0 ? m_tabctrl->GetItemText(sel_item) : "";
- //OutputDebugString(selection);
- //OutputDebugStringA("\n");
m_tabctrl->SetItemBold(sel_item, false);
});
m_tabctrl->Bind(wxEVT_TAB_SEL_CHANGED, [this](wxCommandEvent& event) {
@@ -2010,23 +2003,23 @@ void TabPrint::build()
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");
+ optgroup->append_single_option_line("layer_height","quality_settings_layer_height");
+ optgroup->append_single_option_line("initial_layer_print_height","quality_settings_layer_height");
optgroup = page->new_optgroup(L("Line width"), L"param_line_width");
- optgroup->append_single_option_line("line_width");
- optgroup->append_single_option_line("initial_layer_line_width");
- optgroup->append_single_option_line("outer_wall_line_width");
- optgroup->append_single_option_line("inner_wall_line_width");
- optgroup->append_single_option_line("top_surface_line_width");
- optgroup->append_single_option_line("sparse_infill_line_width");
- optgroup->append_single_option_line("internal_solid_infill_line_width");
- optgroup->append_single_option_line("support_line_width");
+ optgroup->append_single_option_line("line_width","quality_settings_line_width");
+ optgroup->append_single_option_line("initial_layer_line_width","quality_settings_line_width");
+ optgroup->append_single_option_line("outer_wall_line_width","quality_settings_line_width");
+ optgroup->append_single_option_line("inner_wall_line_width","quality_settings_line_width");
+ optgroup->append_single_option_line("top_surface_line_width","quality_settings_line_width");
+ optgroup->append_single_option_line("sparse_infill_line_width","quality_settings_line_width");
+ optgroup->append_single_option_line("internal_solid_infill_line_width","quality_settings_line_width");
+ optgroup->append_single_option_line("support_line_width","quality_settings_line_width");
optgroup = page->new_optgroup(L("Seam"), L"param_seam");
- optgroup->append_single_option_line("seam_position", "seam");
- optgroup->append_single_option_line("staggered_inner_seams", "seam");
- optgroup->append_single_option_line("seam_gap","seam");
+ optgroup->append_single_option_line("seam_position", "quality_settings_seam");
+ optgroup->append_single_option_line("staggered_inner_seams", "quality_settings_seam");
+ optgroup->append_single_option_line("seam_gap","quality_settings_seam");
optgroup->append_single_option_line("seam_slope_type", "seam#scarf-joint-seam");
optgroup->append_single_option_line("seam_slope_conditional", "seam#scarf-joint-seam");
optgroup->append_single_option_line("scarf_angle_threshold", "seam#scarf-joint-seam");
@@ -2038,10 +2031,10 @@ void TabPrint::build()
optgroup->append_single_option_line("seam_slope_steps", "seam#scarf-joint-seam");
optgroup->append_single_option_line("scarf_joint_flow_ratio", "seam#scarf-joint-seam");
optgroup->append_single_option_line("seam_slope_inner_walls", "seam#scarf-joint-seam");
- optgroup->append_single_option_line("role_based_wipe_speed","seam");
- optgroup->append_single_option_line("wipe_speed", "seam");
- optgroup->append_single_option_line("wipe_on_loops","seam");
- optgroup->append_single_option_line("wipe_before_external_loop","seam");
+ optgroup->append_single_option_line("role_based_wipe_speed","quality_settings_seam");
+ optgroup->append_single_option_line("wipe_speed", "quality_settings_seam");
+ optgroup->append_single_option_line("wipe_on_loops","quality_settings_seam");
+ optgroup->append_single_option_line("wipe_before_external_loop","quality_settings_seam");
optgroup = page->new_optgroup(L("Precision"), L"param_precision");
@@ -3252,6 +3245,7 @@ void TabFilament::build()
optgroup->append_single_option_line("filament_density");
optgroup->append_single_option_line("filament_shrink");
+ optgroup->append_single_option_line("filament_shrinkage_compensation_z");
optgroup->append_single_option_line("filament_cost");
//BBS
optgroup->append_single_option_line("temperature_vitrification");
@@ -4746,19 +4740,28 @@ void Tab::rebuild_page_tree()
// To avoid redundant clear/activate functions call
// suppress activate page before page_tree rebuilding
m_disable_tree_sel_changed_event = true;
- m_tabctrl->DeleteAllItems();
+ int curr_item = 0;
for (auto p : m_pages)
{
if (!p->get_show())
continue;
- auto itemId = m_tabctrl->AppendItem(translate_category(p->title(), m_type), p->iconID());
- m_tabctrl->SetItemTextColour(itemId, p->get_item_colour() == m_modified_label_clr ? p->get_item_colour() : StateColor(
+ if (m_tabctrl->GetCount() <= curr_item) {
+ m_tabctrl->AppendItem(translate_category(p->title(), m_type), p->iconID());
+ } else {
+ m_tabctrl->SetItemText(curr_item, translate_category(p->title(), m_type));
+ }
+ m_tabctrl->SetItemTextColour(curr_item, p->get_item_colour() == m_modified_label_clr ? p->get_item_colour() : StateColor(
std::make_pair(0x6B6B6C, (int) StateColor::NotChecked),
std::make_pair(p->get_item_colour(), (int) StateColor::Normal)));
if (translate_category(p->title(), m_type) == selected)
- item = itemId;
+ item = curr_item;
+ curr_item++;
}
+ while (m_tabctrl->GetCount() > curr_item) {
+ m_tabctrl->DeleteItem(m_tabctrl->GetCount() - 1);
+ }
+
// BBS: on mac, root is selected, this fix it
m_tabctrl->Unselect();
// BBS: not select on hide tab
@@ -5273,10 +5276,10 @@ bool Tab::update_current_page_in_background(int& item)
// clear pages from the controlls
// BBS: fix after new layout, clear page in backgroud
- if (m_parent->is_active_and_shown_tab((wxPanel*)this))
- m_parent->clear_page();
for (auto p : m_pages)
p->clear();
+ if (m_parent->is_active_and_shown_tab((wxPanel*)this))
+ m_parent->clear_page();
update_undo_buttons();
diff --git a/src/slic3r/GUI/UserManager.cpp b/src/slic3r/GUI/UserManager.cpp
index 29f5f2d137..4d3c1aceb2 100644
--- a/src/slic3r/GUI/UserManager.cpp
+++ b/src/slic3r/GUI/UserManager.cpp
@@ -41,7 +41,7 @@ int UserManager::parse_json(std::string payload)
//bind
if (j_pre["bind"]["command"].get() == "bind") {
std::string dev_id;
- std:; string result;
+ std::string result;
if (j_pre["bind"].contains("dev_id")) {
dev_id = j_pre["bind"]["dev_id"].get();
diff --git a/src/slic3r/GUI/WebDownPluginDlg.cpp b/src/slic3r/GUI/WebDownPluginDlg.cpp
index 82d2816f2e..a4f3cc93ce 100644
--- a/src/slic3r/GUI/WebDownPluginDlg.cpp
+++ b/src/slic3r/GUI/WebDownPluginDlg.cpp
@@ -227,7 +227,7 @@ void DownPluginFrame::OnScriptMessage(wxWebViewEvent &evt)
auto plugin_folder = (boost::filesystem::path(wxStandardPaths::Get().GetUserDataDir().ToUTF8().data()) / "plugins").make_preferred().string();
desktop_open_any_folder(plugin_folder);
}
- } catch (std::exception &e) {
+ } catch (std::exception &) {
// wxMessageBox(e.what(), "json Exception", MB_OK);
}
}
diff --git a/src/slic3r/GUI/Widgets/TabCtrl.cpp b/src/slic3r/GUI/Widgets/TabCtrl.cpp
index 73d792a4e0..f766df864b 100644
--- a/src/slic3r/GUI/Widgets/TabCtrl.cpp
+++ b/src/slic3r/GUI/Widgets/TabCtrl.cpp
@@ -117,7 +117,31 @@ int TabCtrl::AppendItem(const wxString &item,
bool TabCtrl::DeleteItem(int item)
{
- return false;
+ if (item < 0 || item >= btns.size()) {
+ return false;
+ }
+ const bool selection_changed = sel >= item;
+
+ if (selection_changed) {
+ sendTabCtrlEvent(true);
+ }
+
+ Button* btn = btns[item];
+ btn->Destroy();
+ btns.erase(btns.begin() + item);
+ sizer->Remove(item * 2);
+ if (btns.size() > 1)
+ sizer->GetItem(sizer->GetItemCount() - 1)->SetMinSize({0, 0});
+
+ if (selection_changed) {
+ sel--; // `relayout()` uses `sel` so we need to update this before calling `relayout()`
+ }
+ relayout();
+ if (selection_changed) {
+ sendTabCtrlEvent();
+ }
+
+ return true;
}
void TabCtrl::DeleteAllItems()
diff --git a/src/slic3r/GUI/Widgets/WebView.cpp b/src/slic3r/GUI/Widgets/WebView.cpp
index 11f431c308..a84a150416 100644
--- a/src/slic3r/GUI/Widgets/WebView.cpp
+++ b/src/slic3r/GUI/Widgets/WebView.cpp
@@ -373,7 +373,7 @@ bool WebView::RunScript(wxWebView *webView, wxString const &javascript)
}, NULL);
return true;
#endif
- } catch (std::exception &e) {
+ } catch (std::exception &) {
return false;
}
}