diff --git a/.github/ISSUE_TEMPLATE.md b/.github/ISSUE_TEMPLATE.md
index 74dea387a..4cc6d4f05 100644
--- a/.github/ISSUE_TEMPLATE.md
+++ b/.github/ISSUE_TEMPLATE.md
@@ -1,7 +1,7 @@
### Version
-_Version of Slic3r Prusa Edition used goes here_
+_Version of Slic3r++ used goes here_
-_Use `About->About Slic3r` for release versions_
+_Use `About->About Slic3r++` for release versions_
_For -dev versions, use `git describe --tag` or get the hash value for the version you downloaded or `git rev-parse HEAD`_
@@ -18,9 +18,9 @@ _What 3D printer brand / version are you printing on, is it a stock model or did
* _If this is a command-line slicing issue, include the options used_
* _Expected Results_
* _Actual Results_
- * _Screenshots from __*Slic3r*__ preview are preferred_
+ * _Screenshots from __*Slic3r++*__ preview are preferred_
_Is this a new feature request?_
#### Project File (.3MF) where problem occurs
-_Upload a Slic3r PE Project File (.3MF) (`Plater -> Export plate as 3MF` for Slic3r PE 1.41.2 and older, `File -> Save` / `Save Project` for Slic3r PE 1.42.0-alpha and newer)_
+_Upload a Slic3r++ Project File (.3MF) (`Plater -> Export plate as 3MF` for Slic3r PE 1.41.2 and older, `File -> Save` / `Save Project` for Slic3r++, Slic3r PE 1.42.0-alpha and newer)_
diff --git a/Build.PL b/Build.PL
index 3f1cf2633..dfbeac8d9 100644
--- a/Build.PL
+++ b/Build.PL
@@ -3,7 +3,7 @@
print "This script is currently used for installing Perl dependenices for running\n";
print "the libslic3r unit / integration tests through Perl prove.\n";
print "If you don't plan to run the unit / integration tests, you don't need to\n";
-print "install these dependencies to build and run Slic3r.\n";
+print "install these dependencies to build and run Slic3r++.\n";
use strict;
use warnings;
@@ -122,7 +122,7 @@ EOF
}
print "\n";
-print "In the next step, you need to build the Slic3r C++ library.\n";
+print "In the next step, you need to build the Slic3r++ C++ library.\n";
print "1) Create a build directory and change to it\n";
print "2) run cmake .. -DCMAKE_BUILD_TYPE=Release\n";
print "3) run make\n";
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 01be581dd..9ccb6e481 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -49,13 +49,18 @@ foreach (_cache_var ${_cache_vars})
endif ()
endforeach()
+if (SLIC3R_GUI)
+ add_definitions(-DSLIC3R_GUI)
+endif ()
+
if (MSVC)
if (SLIC3R_MSVC_COMPILE_PARALLEL)
add_compile_options(/MP)
endif ()
# /bigobj (Increase Number of Sections in .Obj file)
# error C3859: virtual memory range for PCH exceeded; please recompile with a command line option of '-Zm90' or greater
- add_compile_options(-bigobj -Zm316)
+ # Generate symbols at every build target, even for the release.
+ add_compile_options(-bigobj -Zm316 /Zi)
endif ()
# Display and check CMAKE_PREFIX_PATH
@@ -135,6 +140,10 @@ if (CMAKE_SYSTEM_NAME STREQUAL "Linux")
# Workaround for an old CMake, which does not understand CMAKE_CXX_STANDARD.
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11")
endif()
+
+ # Boost on Raspberry-Pi does not link to pthreads.
+ set(THREADS_PREFER_PTHREAD_FLAG ON)
+ find_package(Threads REQUIRED)
endif()
if (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUXX)
@@ -226,7 +235,11 @@ if(SLIC3R_STATIC)
endif()
#set(Boost_DEBUG ON)
# set(Boost_COMPILER "-vc120")
-find_package(Boost REQUIRED COMPONENTS system filesystem thread log locale regex)
+if(NOT WIN32)
+ # boost::process was introduced first in version 1.64.0
+ set(MINIMUM_BOOST_VERSION "1.64.0")
+endif()
+find_package(Boost ${MINIMUM_BOOST_VERSION} REQUIRED COMPONENTS system filesystem thread log locale regex)
if(Boost_FOUND)
include_directories(${Boost_INCLUDE_DIRS})
if (APPLE)
@@ -317,7 +330,7 @@ include_directories(${GLEW_INCLUDE_DIRS})
# l10n
set(L10N_DIR "${SLIC3R_RESOURCES_DIR}/localization")
add_custom_target(pot
- COMMAND xgettext --keyword=L --from-code=UTF-8 --debug
+ COMMAND xgettext --keyword=L --add-comments=TRN --from-code=UTF-8 --debug
-f "${L10N_DIR}/list.txt"
-o "${L10N_DIR}/Slic3r++.pot"
WORKING_DIRECTORY ${PROJECT_SOURCE_DIR}
@@ -348,7 +361,7 @@ endif()
if (WIN32)
install(DIRECTORY "${SLIC3R_RESOURCES_DIR}/" DESTINATION "${CMAKE_INSTALL_PREFIX}/resources")
else ()
- set(SLIC3R_FHS_RESOURCES "${CMAKE_INSTALL_FULL_DATAROOTDIR}/slic3r-prusa3d")
+ set(SLIC3R_FHS_RESOURCES "${CMAKE_INSTALL_FULL_DATAROOTDIR}/slic3r++")
install(DIRECTORY "${SLIC3R_RESOURCES_DIR}/" DESTINATION "${SLIC3R_FHS_RESOURCES}")
endif ()
configure_file(${LIBDIR}/platform/unix/fhs.hpp.in ${LIBDIR_BIN}/platform/unix/fhs.hpp)
diff --git a/slic3r.sublime-project b/PrusaSlicer.sublime-project
similarity index 100%
rename from slic3r.sublime-project
rename to PrusaSlicer.sublime-project
diff --git a/README.md b/README.md
index 159195f1f..29017303e 100644
--- a/README.md
+++ b/README.md
@@ -4,25 +4,27 @@ A: Yeah!
Slic3r
======
-Prebuilt Windows 32b is available through the [git releases page](https://github.com/supermerill/Slic3r/releases).
+Prebuilt Windows 64b is available through the [git releases page](https://github.com/supermerill/Slic3r/releases).
-Slic3r takes 3D models (STL, OBJ, AMF) and converts them into G-code instructions for
-3D printers. It's compatible with any modern printer based on the RepRap toolchain,
-including all those based on the Marlin, Sprinter and Repetier firmware. It also works
+Slic3r++ takes 3D models (STL, OBJ, AMF) and converts them into G-code
+instructions for FFF printers or PNG layers for mSLA 3D printers. It's
+compatible with any modern printer based on the RepRap toolchain, including all
+those based on the Marlin, Prusa, Sprinter and Repetier firmware. It also works
with Mach3, LinuxCNC and Machinekit controllers.
-See the [project homepage](http://slic3r.org/) at slic3r.org and the
-[manual](http://manual.slic3r.org/) for more information.
+Slic3r++ is based on [Slic3r](https://github.com/Slic3r/Slic3r) by Alessandro Ranelucci and the RepRap community.
+
+See the [project homepage](https://www.prusa3d.com/slic3r-prusa-edition/) and
+the [documentation directory](doc/) for more information.
### What language is it written in?
Almost everything are written in C++,
-The C++ API is public and its use in other projects is encouraged.
-The goal is to make Slic3r fully modular so that any part of its logic
-can be used separately.
+The slicing core is the `libslic3r` library, which can be built and used in a standalone way.
+The command line interface is a thin wrapper over `libslic3r`.
### What are this fork main features/differences?
@@ -32,7 +34,7 @@ can be used separately.
* Better Thin walls (anchored inside the print, no more random bits at the ends).
* Can join perimeters into a big one to avoid travel moves.
* Many other little options and corrections (like the filled concentric pattern).
-* It has also all the current slic3rPE features.
+* It has also all the current slic3rPE/PrusaSlicer features.
#### Complete changelog [here](https://github.com/supermerill/Slic3r/wiki)
@@ -61,20 +63,21 @@ Other major features are:
* several infill patterns including honeycomb, spirals, Hilbert curves, gyroid
* support material, raft, brim, skirt
* **standby temperature** and automatic wiping for multi-extruder printing
-* customizable **G-code macros** and output filename with variable placeholders
+* [customizable **G-code macros**](https://github.com/prusa3d/PrusaSlicer/wiki/Slic3r-Prusa-Edition-Macro-Language) and output filename with variable placeholders
* support for **post-processing scripts**
* **cooling logic** controlling fan speed and dynamic print speed
-### How to install?
+### Development
You can download a precompiled package from the release page.
it will run without the need for any dependency.
-If you want to compile the source yourself follow the instructions on one of these wiki pages:
-* [Linux](https://github.com/supermerill/Slic3r/tree/master/doc/How%20to%20build%20-%20UNIX.md)
-* [Windows](https://github.com/supermerill/Slic3r/tree/master/doc/How%20to%20build%20-%20Windows.md)
-* [Mac OSX](https://github.com/supermerill/Slic3r/tree/master/doc/How_to_build_Slic3r.txt)
+If you want to compile the source yourself, follow the instructions on one of
+these documentation pages:
+* [Linux](doc/How%20to%20build%20-%20Linux%20et%20al.md)
+* [macOS](doc/How%20to%20build%20-%20Mac%20OS.md)
+* [Windows](doc/How%20to%20build%20-%20Windows.md)
### Can I help?
Sure! You can do the following to find things that are available to help with:
@@ -83,315 +86,12 @@ Sure! You can do the following to find things that are available to help with:
Before sending patches and pull requests contact me (preferably through opening a github issue or commenting on an existing, related, issue) to discuss your proposed
changes: this way we'll ensure nobody wastes their time and no conflicts arise in development.
-### What's Slic3r license?
+Slic3r++ is licensed under the _GNU Affero General Public License, version 3_.
+The Slic3r++ is originally based on Slic3r by Alessandro Ranellucci.
Slic3r is licensed under the _GNU Affero General Public License, version 3_.
The first author is Alessandro Ranellucci, and many contributors
-Then the he Prusa team
+Then the Prusa team
Then Durand remi for this fork
-The [Silk icon set](http://www.famfamfam.com/lab/icons/silk/) used (and modified) in Slic3r is
-licensed under the _Creative Commons Attribution 3.0 License_.
-The author of the Silk icon set is Mark James.
-
-### How can I invoke slic3r.pl using the command line? (not up-to-date yet, use the --help command instead)
-
- Usage: slic3r.pl [ OPTIONS ] [ file.stl ] [ file2.stl ] ...
-
- --help Output this usage screen and exit
- --version Output the version of Slic3r and exit
- --save Save configuration to the specified file
- --load Load configuration from the specified file. It can be used
- more than once to load options from multiple files.
- -o, --output File to output gcode to (by default, the file will be saved
- into the same directory as the input file using the
- --output-filename-format to generate the filename.) If a
- directory is specified for this option, the output will
- be saved under that directory, and the filename will be
- generated by --output-filename-format.
-
- Non-slicing actions (no G-code will be generated):
- --repair Repair given STL files and save them as _fixed.obj
- --cut Cut given input files at given Z (relative) and export
- them as _upper.stl and _lower.stl
- --split Split the shells contained in given STL file into several STL files
- --info Output information about the supplied file(s) and exit
-
- -j, --threads Number of threads to use (1+, default: 2)
-
- GUI options:
- --gui Forces the GUI launch instead of command line slicing (if you
- supply a model file, it will be loaded into the plater)
- --no-plater Disable the plater tab
- --no-gui Forces the command line slicing instead of gui.
- This takes precedence over --gui if both are present.
- --autosave Automatically export current configuration to the specified file
-
- Output options:
- --output-filename-format
- Output file name format; all config options enclosed in brackets
- will be replaced by their values, as well as [input_filename_base]
- and [input_filename] (default: [input_filename_base].gcode)
- --post-process Generated G-code will be processed with the supplied script;
- call this more than once to process through multiple scripts.
- --export-png Export zipped PNG files containing slices instead of G-code.
- -m, --merge If multiple files are supplied, they will be composed into a single
- print rather than processed individually.
-
- Printer options:
- --nozzle-diameter Diameter of nozzle in mm (default: 0.5)
- --print-center Coordinates in mm of the point to center the print around
- (default: 100,100)
- --z-offset Additional height in mm to add to vertical coordinates
- (+/-, default: 0)
- --gcode-flavor The type of G-code to generate (reprap/teacup/repetier/makerware/sailfish/mach3/machinekit/smoothie/no-extrusion,
- default: reprap)
- --use-relative-e-distances Enable this to get relative E values (default: no)
- --use-firmware-retraction Enable firmware-controlled retraction using G10/G11 (default: no)
- --use-volumetric-e Express E in cubic millimeters and prepend M200 (default: no)
- --gcode-comments Make G-code verbose by adding comments (default: no)
-
- Filament options:
- --filament-diameter Diameter in mm of your raw filament (default: 3)
- --extrusion-multiplier
- Change this to alter the amount of plastic extruded. There should be
- very little need to change this value, which is only useful to
- compensate for filament packing (default: 1)
- --temperature Extrusion temperature in degree Celsius, set 0 to disable (default: 200)
- --first-layer-temperature Extrusion temperature for the first layer, in degree Celsius,
- set 0 to disable (default: same as --temperature)
- --bed-temperature Heated bed temperature in degree Celsius, set 0 to disable (default: 0)
- --first-layer-bed-temperature Heated bed temperature for the first layer, in degree Celsius,
- set 0 to disable (default: same as --bed-temperature)
-
- Speed options:
- --travel-speed Speed of non-print moves in mm/s (default: 130)
- --perimeter-speed Speed of print moves for perimeters in mm/s (default: 30)
- --small-perimeter-speed
- Speed of print moves for small perimeters in mm/s or % over perimeter speed
- (default: 30)
- --external-perimeter-speed
- Speed of print moves for the external perimeter in mm/s or % over perimeter speed
- (default: 70%)
- --infill-speed Speed of print moves in mm/s (default: 60)
- --solid-infill-speed Speed of print moves for solid surfaces in mm/s or % over infill speed
- (default: 60)
- --top-solid-infill-speed Speed of print moves for top surfaces in mm/s or % over solid infill speed
- (default: 50)
- --support-material-speed
- Speed of support material print moves in mm/s (default: 60)
- --support-material-interface-speed
- Speed of support material interface print moves in mm/s or % over support material
- speed (default: 100%)
- --bridge-speed Speed of bridge print moves in mm/s (default: 60)
- --gap-fill-speed Speed of gap fill print moves in mm/s (default: 20)
- --first-layer-speed Speed of print moves for bottom layer, expressed either as an absolute
- value or as a percentage over normal speeds (default: 30%)
-
- Acceleration options:
- --perimeter-acceleration
- Overrides firmware's default acceleration for perimeters. (mm/s^2, set zero
- to disable; default: 0)
- --infill-acceleration
- Overrides firmware's default acceleration for infill. (mm/s^2, set zero
- to disable; default: 0)
- --bridge-acceleration
- Overrides firmware's default acceleration for bridges. (mm/s^2, set zero
- to disable; default: 0)
- --first-layer-acceleration
- Overrides firmware's default acceleration for first layer. (mm/s^2, set zero
- to disable; default: 0)
- --default-acceleration
- Acceleration will be reset to this value after the specific settings above
- have been applied. (mm/s^2, set zero to disable; default: 0)
-
- Accuracy options:
- --layer-height Layer height in mm (default: 0.3)
- --first-layer-height Layer height for first layer (mm or %, default: 0.35)
- --infill-every-layers
- Infill every N layers (default: 1)
- --solid-infill-every-layers
- Force a solid layer every N layers (default: 0)
-
- Print options:
- --perimeters Number of perimeters/horizontal skins (range: 0+, default: 3)
- --top-solid-layers Number of solid layers to do for top surfaces (range: 0+, default: 3)
- --bottom-solid-layers Number of solid layers to do for bottom surfaces (range: 0+, default: 3)
- --solid-layers Shortcut for setting the two options above at once
- --fill-density Infill density (range: 0%-100%, default: 40%)
- --fill-angle Infill angle in degrees (range: 0-90, default: 45)
- --fill-pattern Pattern to use to fill non-solid layers (default: honeycomb)
- --solid-fill-pattern Pattern to use to fill solid layers (default: rectilinear)
- --start-gcode Load initial G-code from the supplied file. This will overwrite
- the default command (home all axes [G28]).
- --end-gcode Load final G-code from the supplied file. This will overwrite
- the default commands (turn off temperature [M104 S0],
- home X axis [G28 X], disable motors [M84]).
- --before-layer-gcode Load before-layer-change G-code from the supplied file (default: nothing).
- --layer-gcode Load after-layer-change G-code from the supplied file (default: nothing).
- --toolchange-gcode Load tool-change G-code from the supplied file (default: nothing).
- --seam-position Position of loop starting points (random/nearest/aligned, default: aligned).
- --external-perimeters-first Reverse perimeter order. (default: no)
- --spiral-vase Experimental option to raise Z gradually when printing single-walled vases
- (default: no)
- --only-retract-when-crossing-perimeters
- Disable retraction when travelling between infill paths inside the same island.
- (default: no)
- --solid-infill-below-area
- Force solid infill when a region has a smaller area than this threshold
- (mm^2, default: 70)
- --infill-only-where-needed
- Only infill under ceilings (default: no)
- --infill-first Make infill before perimeters (default: no)
-
- Quality options (slower slicing):
- --extra-perimeters Add more perimeters when needed (default: yes)
- --avoid-crossing-perimeters Optimize travel moves so that no perimeters are crossed (default: no)
- --thin-walls Detect single-width walls (default: yes)
- --overhangs Experimental option to use bridge flow, speed and fan for overhangs
- (default: yes)
-
- Support material options:
- --support-material Generate support material for overhangs
- --support-material-threshold
- Overhang threshold angle (range: 0-90, set 0 for automatic detection,
- default: 0)
- --support-material-pattern
- Pattern to use for support material (default: honeycomb)
- --support-material-spacing
- Spacing between pattern lines (mm, default: 2.5)
- --support-material-angle
- Support material angle in degrees (range: 0-90, default: 0)
- --support-material-contact-distance
- Vertical distance between object and support material
- (0+, default: 0.2)
- --support-material-interface-layers
- Number of perpendicular layers between support material and object (0+, default: 3)
- --support-material-interface-spacing
- Spacing between interface pattern lines (mm, set 0 to get a solid layer, default: 0)
- --raft-layers Number of layers to raise the printed objects by (range: 0+, default: 0)
- --support-material-enforce-layers
- Enforce support material on the specified number of layers from bottom,
- regardless of --support-material and threshold (0+, default: 0)
- --dont-support-bridges
- Experimental option for preventing support material from being generated under bridged areas (default: yes)
-
- Retraction options:
- --retract-length Length of retraction in mm when pausing extrusion (default: 1)
- --retract-speed Speed for retraction in mm/s (default: 30)
- --retract-restart-extra
- Additional amount of filament in mm to push after
- compensating retraction (default: 0)
- --retract-before-travel
- Only retract before travel moves of this length in mm (default: 2)
- --retract-lift Lift Z by the given distance in mm when retracting (default: 0)
- --retract-lift-above Only lift Z when above the specified height (default: 0)
- --retract-lift-below Only lift Z when below the specified height (default: 0)
- --retract-layer-change
- Enforce a retraction before each Z move (default: no)
- --wipe Wipe the nozzle while doing a retraction (default: no)
-
- Retraction options for multi-extruder setups:
- --retract-length-toolchange
- Length of retraction in mm when disabling tool (default: 10)
- --retract-restart-extra-toolchange
- Additional amount of filament in mm to push after
- switching tool (default: 0)
-
- Cooling options:
- --cooling Enable fan and cooling control
- --min-fan-speed Minimum fan speed (default: 35%)
- --max-fan-speed Maximum fan speed (default: 100%)
- --bridge-fan-speed Fan speed to use when bridging (default: 100%)
- --top-fan-speed Fan speed to use when printing top layer (default: 100%)
- --fan-below-layer-time Enable fan if layer print time is below this approximate number
- of seconds (default: 60)
- --slowdown-below-layer-time Slow down if layer print time is below this approximate number
- of seconds (default: 30)
- --min-print-speed Minimum print speed (mm/s, default: 10)
- --disable-fan-first-layers Disable fan for the first N layers (default: 1)
- --fan-always-on Keep fan always on at min fan speed, even for layers that don't need
- cooling
-
- Skirt options:
- --skirts Number of skirts to draw (0+, default: 1)
- --skirt-distance Distance in mm between innermost skirt and object
- (default: 6)
- --skirt-height Height of skirts to draw (expressed in layers, 0+, default: 1)
- --min-skirt-length Generate no less than the number of loops required to consume this length
- of filament on the first layer, for each extruder (mm, 0+, default: 0)
- --brim-width Width of the brim that will get added to each object to help adhesion
- (mm, default: 0)
-
- Transform options:
- --scale Factor for scaling input object (default: 1)
- --rotate Rotation angle in degrees (0-360, default: 0)
- --duplicate Number of items with auto-arrange (1+, default: 1)
- --duplicate-grid Number of items with grid arrangement (default: 1,1)
- --duplicate-distance Distance in mm between copies (default: 6)
- --dont-arrange Don't arrange the objects on the build plate. The model coordinates
- define the absolute positions on the build plate.
- The option --print-center will be ignored.
- --xy-size-compensation
- Grow/shrink objects by the configured absolute distance (mm, default: 0)
-
- Sequential printing options:
- --complete-objects When printing multiple objects and/or copies, complete each one before
- starting the next one; watch out for extruder collisions (default: no)
- --extruder-clearance-radius Radius in mm above which extruder won't collide with anything
- (default: 20)
- --extruder-clearance-height Maximum vertical extruder depth; i.e. vertical distance from
- extruder tip and carriage bottom (default: 20)
-
- Miscellaneous options:
- --notes Notes to be added as comments to the output file
- --resolution Minimum detail resolution (mm, set zero for full resolution, default: 0)
-
- Flow options (advanced):
- --extrusion-width Set extrusion width manually; it accepts either an absolute value in mm
- (like 0.65) or a percentage over layer height (like 200%)
- --first-layer-extrusion-width
- Set a different extrusion width for first layer
- --perimeter-extrusion-width
- Set a different extrusion width for perimeters
- --external-perimeter-extrusion-width
- Set a different extrusion width for external perimeters
- --infill-extrusion-width
- Set a different extrusion width for infill
- --solid-infill-extrusion-width
- Set a different extrusion width for solid infill
- --top-infill-extrusion-width
- Set a different extrusion width for top infill
- --support-material-extrusion-width
- Set a different extrusion width for support material
- --infill-overlap Overlap between infill and perimeters (default: 15%)
- --bridge-flow-ratio Multiplier for extrusion when bridging (> 0, default: 1)
- --over-bridge-flow-ratio Multiplier for extrusion when printing the layer above a bride (> 0, default: 1.15)
-
- Multiple extruder options:
- --extruder-offset Offset of each extruder, if firmware doesn't handle the displacement
- (can be specified multiple times, default: 0x0)
- --perimeter-extruder
- Extruder to use for perimeters and brim (1+, default: 1)
- --infill-extruder Extruder to use for infill (1+, default: 1)
- --solid-infill-extruder Extruder to use for solid infill (1+, default: 1)
- --support-material-extruder
- Extruder to use for support material, raft and skirt (1+, default: 1)
- --support-material-interface-extruder
- Extruder to use for support material interface (1+, default: 1)
- --ooze-prevention Drop temperature and park extruders outside a full skirt for automatic wiping
- (default: no)
- --ooze-prevention Drop temperature and park extruders outside a full skirt for automatic wiping
- (default: no)
- --standby-temperature-delta
- Temperature difference to be applied when an extruder is not active and
- --ooze-prevention is enabled (default: -5)
-
-
-If you want to change a preset file, just do
-
- slic3r.pl --load config.ini --layer-height 0.25 --save config.ini
-
-If you want to slice a file overriding an option contained in your preset file:
-
- slic3r.pl --load config.ini --layer-height 0.25 file.stl
+Please refer to the [Command Line Interface](https://github.com/prusa3d/PrusaSlicer/wiki/Command-Line-Interface) wiki page.
diff --git a/deps/CMakeLists.txt b/deps/CMakeLists.txt
index 1e025adac..d29b8611e 100644
--- a/deps/CMakeLists.txt
+++ b/deps/CMakeLists.txt
@@ -1,12 +1,12 @@
#
-# This CMake project downloads, configures and builds Slic3r PE dependencies on Unix and Windows.
+# This CMake project downloads, configures and builds Slic3r++ dependencies on Unix and Windows.
#
# When using this script, it's recommended to perform an out-of-source build using CMake.
#
# All the dependencies are installed in a `destdir` directory in the root of the build directory,
# in a traditional Unix-style prefix structure. The destdir can be used directly by CMake
# when building Slic3r - to do this, set the CMAKE_PREFIX_PATH to ${destdir}/usr/local.
-# Warning: On UNIX/Linux, you also need to set -DSLIC3R_STATIC=1 when building Slic3r.
+# Warning: On UNIX/Linux, you also need to set -DSlic3r_STATIC=1 when building Slic3r.
#
# For better clarity of console output, it's recommended to _not_ use a parallelized build
# for the top-level command, ie. use `make -j 1` or `ninja -j 1` to force single-threaded top-level
@@ -32,6 +32,7 @@ if (NPROC EQUAL 0)
endif ()
set(DESTDIR "${CMAKE_CURRENT_BINARY_DIR}/destdir" CACHE PATH "Destination directory")
+
option(DEP_DEBUG "Build debug variants (only applicable on Windows)" ON)
option(DEP_WX_STABLE "Build against wxWidgets stable 3.0 as opposed to default 3.1 (Linux only)" OFF)
@@ -73,7 +74,9 @@ else ()
include("deps-linux.cmake")
endif()
-add_custom_target(deps ALL
+if (MSVC)
+
+ add_custom_target(deps ALL
DEPENDS
dep_boost
dep_tbb
@@ -81,8 +84,22 @@ add_custom_target(deps ALL
dep_wxwidgets
dep_gtest
dep_nlopt
- dep_libpng
-)
+ dep_zlib # on Windows we still need zlib
+ )
+
+else()
+
+ add_custom_target(deps ALL
+ DEPENDS
+ dep_boost
+ dep_tbb
+ dep_libcurl
+ dep_wxwidgets
+ dep_gtest
+ dep_nlopt
+ )
+
+endif()
# Note: I'm not using any of the LOG_xxx options in ExternalProject_Add() commands
# because they seem to generate bogus build files (possibly a bug in ExternalProject).
diff --git a/deps/deps-linux.cmake b/deps/deps-linux.cmake
index 125553f77..03e8e12d5 100644
--- a/deps/deps-linux.cmake
+++ b/deps/deps-linux.cmake
@@ -3,7 +3,6 @@ set(DEP_CMAKE_OPTS "-DCMAKE_POSITION_INDEPENDENT_CODE=ON")
include("deps-unix-common.cmake")
-
ExternalProject_Add(dep_boost
EXCLUDE_FROM_ALL 1
URL "https://dl.bintray.com/boostorg/release/1.66.0/source/boost_1_66_0.tar.gz"
@@ -25,19 +24,6 @@ ExternalProject_Add(dep_boost
INSTALL_COMMAND "" # b2 does that already
)
-ExternalProject_Add(dep_libpng
- EXCLUDE_FROM_ALL 1
- URL "https://github.com/glennrp/libpng/archive/v1.6.36.tar.gz"
- URL_HASH SHA256=5bef5a850a9255365a2dc344671b7e9ef810de491bd479c2506ac3c337e2d84f
- CMAKE_GENERATOR "${DEP_MSVC_GEN}"
- CMAKE_ARGS
- -DPNG_SHARED=OFF
- -DPNG_TESTS=OFF
- ${DEP_CMAKE_OPTS}
- INSTALL_COMMAND make install "DESTDIR=${DESTDIR}"
- INSTALL_COMMAND ""
-)
-
ExternalProject_Add(dep_libopenssl
EXCLUDE_FROM_ALL 1
URL "https://github.com/openssl/openssl/archive/OpenSSL_1_1_0g.tar.gz"
@@ -55,7 +41,7 @@ ExternalProject_Add(dep_libopenssl
ExternalProject_Add(dep_libcurl
EXCLUDE_FROM_ALL 1
- DEPENDS dep_libopenssl
+ DEPENDS dep_libopenssl
URL "https://curl.haxx.se/download/curl-7.58.0.tar.gz"
URL_HASH SHA256=cc245bf9a1a42a45df491501d97d5593392a03f7b4f07b952793518d97666115
BUILD_IN_SOURCE 1
@@ -127,7 +113,7 @@ ExternalProject_Add(dep_wxwidgets
--with-libxpm=builtin
--with-libjpeg=builtin
--with-libtiff=builtin
- --with-zlib=builtin
+ --with-zlib
--with-expat=builtin
--disable-precomp-headers
--enable-debug_info
diff --git a/deps/deps-macos.cmake b/deps/deps-macos.cmake
index 4676b14fc..c7c6819e3 100644
--- a/deps/deps-macos.cmake
+++ b/deps/deps-macos.cmake
@@ -87,26 +87,14 @@ ExternalProject_Add(dep_libcurl
INSTALL_COMMAND make install "DESTDIR=${DESTDIR}"
)
-ExternalProject_Add(dep_libpng
- EXCLUDE_FROM_ALL 1
- URL "https://github.com/glennrp/libpng/archive/v1.6.36.tar.gz"
- URL_HASH SHA256=5bef5a850a9255365a2dc344671b7e9ef810de491bd479c2506ac3c337e2d84f
- CMAKE_GENERATOR "${DEP_MSVC_GEN}"
- CMAKE_ARGS
- -DPNG_SHARED=OFF
- -DPNG_TESTS=OFF
- ${DEP_CMAKE_OPTS}
- INSTALL_COMMAND make install "DESTDIR=${DESTDIR}"
- INSTALL_COMMAND ""
-)
-
-
ExternalProject_Add(dep_wxwidgets
EXCLUDE_FROM_ALL 1
- URL "https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.2/wxWidgets-3.1.2.tar.bz2"
- URL_HASH SHA256=4cb8d23d70f9261debf7d6cfeca667fc0a7d2b6565adb8f1c484f9b674f1f27a
+ GIT_REPOSITORY "https://github.com/prusa3d/wxWidgets"
+ GIT_TAG v3.1.1-patched
+# URL "https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.2/wxWidgets-3.1.2.tar.bz2"
+# URL_HASH SHA256=4cb8d23d70f9261debf7d6cfeca667fc0a7d2b6565adb8f1c484f9b674f1f27a
BUILD_IN_SOURCE 1
- PATCH_COMMAND "${CMAKE_COMMAND}" -E copy "${CMAKE_CURRENT_SOURCE_DIR}/wxwidgets-pngprefix.h" src/png/pngprefix.h
+# PATCH_COMMAND "${CMAKE_COMMAND}" -E copy "${CMAKE_CURRENT_SOURCE_DIR}/wxwidgets-pngprefix.h" src/png/pngprefix.h
CONFIGURE_COMMAND env "CXXFLAGS=${DEP_WERRORS_SDK}" "CFLAGS=${DEP_WERRORS_SDK}" ./configure
"--prefix=${DESTDIR}/usr/local"
--disable-shared
@@ -119,7 +107,7 @@ ExternalProject_Add(dep_wxwidgets
--with-libxpm=builtin
--with-libjpeg=builtin
--with-libtiff=builtin
- --with-zlib=builtin
+ --with-zlib
--with-expat=builtin
--disable-debug
--disable-debug_flag
diff --git a/deps/deps-unix-common.cmake b/deps/deps-unix-common.cmake
index 6c0a1b182..3cf843f73 100644
--- a/deps/deps-unix-common.cmake
+++ b/deps/deps-unix-common.cmake
@@ -8,30 +8,27 @@ ExternalProject_Add(dep_tbb
CMAKE_ARGS
-DTBB_BUILD_SHARED=OFF
-DTBB_BUILD_TESTS=OFF
+ -DCMAKE_INSTALL_PREFIX=${DESTDIR}/usr/local
${DEP_CMAKE_OPTS}
- INSTALL_COMMAND make install "DESTDIR=${DESTDIR}"
)
ExternalProject_Add(dep_gtest
EXCLUDE_FROM_ALL 1
URL "https://github.com/google/googletest/archive/release-1.8.1.tar.gz"
URL_HASH SHA256=9bf1fe5182a604b4135edc1a425ae356c9ad15e9b23f9f12a02e80184c3a249c
- CMAKE_ARGS -DBUILD_GMOCK=OFF ${DEP_CMAKE_OPTS}
- INSTALL_COMMAND make install "DESTDIR=${DESTDIR}"
+ CMAKE_ARGS -DBUILD_GMOCK=OFF ${DEP_CMAKE_OPTS} -DCMAKE_INSTALL_PREFIX=${DESTDIR}/usr/local
)
ExternalProject_Add(dep_nlopt
EXCLUDE_FROM_ALL 1
URL "https://github.com/stevengj/nlopt/archive/v2.5.0.tar.gz"
URL_HASH SHA256=c6dd7a5701fff8ad5ebb45a3dc8e757e61d52658de3918e38bab233e7fd3b4ae
- CMAKE_GENERATOR "${DEP_MSVC_GEN}"
CMAKE_ARGS
-DBUILD_SHARED_LIBS=OFF
-DNLOPT_PYTHON=OFF
-DNLOPT_OCTAVE=OFF
-DNLOPT_MATLAB=OFF
-DNLOPT_GUILE=OFF
+ -DCMAKE_INSTALL_PREFIX=${DESTDIR}/usr/local
${DEP_CMAKE_OPTS}
- INSTALL_COMMAND make install "DESTDIR=${DESTDIR}"
- INSTALL_COMMAND ""
)
diff --git a/deps/deps-windows.cmake b/deps/deps-windows.cmake
index 7276277e6..b3b31e5f3 100644
--- a/deps/deps-windows.cmake
+++ b/deps/deps-windows.cmake
@@ -62,7 +62,7 @@ ExternalProject_Add(dep_tbb
-DTBB_BUILD_SHARED=OFF
-DTBB_BUILD_TESTS=OFF
"-DCMAKE_INSTALL_PREFIX:PATH=${DESTDIR}\\usr\\local"
- BUILD_COMMAND msbuild /P:Configuration=Release INSTALL.vcxproj
+ BUILD_COMMAND msbuild /m /P:Configuration=Release INSTALL.vcxproj
INSTALL_COMMAND ""
)
if (${DEP_DEBUG})
@@ -70,7 +70,7 @@ if (${DEP_DEBUG})
ExternalProject_Add_Step(dep_tbb build_debug
DEPENDEES build
DEPENDERS install
- COMMAND msbuild /P:Configuration=Debug INSTALL.vcxproj
+ COMMAND msbuild /m /P:Configuration=Debug INSTALL.vcxproj
WORKING_DIRECTORY "${BINARY_DIR}"
)
endif ()
@@ -86,7 +86,7 @@ ExternalProject_Add(dep_gtest
-Dgtest_force_shared_crt=ON
-DCMAKE_POSITION_INDEPENDENT_CODE=ON
"-DCMAKE_INSTALL_PREFIX:PATH=${DESTDIR}\\usr\\local"
- BUILD_COMMAND msbuild /P:Configuration=Release INSTALL.vcxproj
+ BUILD_COMMAND msbuild /m /P:Configuration=Release INSTALL.vcxproj
INSTALL_COMMAND ""
)
if (${DEP_DEBUG})
@@ -94,7 +94,7 @@ if (${DEP_DEBUG})
ExternalProject_Add_Step(dep_gtest build_debug
DEPENDEES build
DEPENDERS install
- COMMAND msbuild /P:Configuration=Debug INSTALL.vcxproj
+ COMMAND msbuild /m /P:Configuration=Debug INSTALL.vcxproj
WORKING_DIRECTORY "${BINARY_DIR}"
)
endif ()
@@ -114,7 +114,7 @@ ExternalProject_Add(dep_nlopt
-DCMAKE_POSITION_INDEPENDENT_CODE=ON
-DCMAKE_DEBUG_POSTFIX=d
"-DCMAKE_INSTALL_PREFIX:PATH=${DESTDIR}\\usr\\local"
- BUILD_COMMAND msbuild /P:Configuration=Release INSTALL.vcxproj
+ BUILD_COMMAND msbuild /m /P:Configuration=Release INSTALL.vcxproj
INSTALL_COMMAND ""
)
if (${DEP_DEBUG})
@@ -122,7 +122,7 @@ if (${DEP_DEBUG})
ExternalProject_Add_Step(dep_nlopt build_debug
DEPENDEES build
DEPENDERS install
- COMMAND msbuild /P:Configuration=Debug INSTALL.vcxproj
+ COMMAND msbuild /m /P:Configuration=Debug INSTALL.vcxproj
WORKING_DIRECTORY "${BINARY_DIR}"
)
endif ()
@@ -138,7 +138,7 @@ ExternalProject_Add(dep_zlib
"-DINSTALL_BIN_DIR=${CMAKE_CURRENT_BINARY_DIR}\\fallout" # I found no better way of preventing zlib from creating & installing DLLs :-/
-DCMAKE_POSITION_INDEPENDENT_CODE=ON
"-DCMAKE_INSTALL_PREFIX:PATH=${DESTDIR}\\usr\\local"
- BUILD_COMMAND msbuild /P:Configuration=Release INSTALL.vcxproj
+ BUILD_COMMAND msbuild /m /P:Configuration=Release INSTALL.vcxproj
INSTALL_COMMAND ""
)
if (${DEP_DEBUG})
@@ -146,7 +146,7 @@ if (${DEP_DEBUG})
ExternalProject_Add_Step(dep_zlib build_debug
DEPENDEES build
DEPENDERS install
- COMMAND msbuild /P:Configuration=Debug INSTALL.vcxproj
+ COMMAND msbuild /m /P:Configuration=Debug INSTALL.vcxproj
WORKING_DIRECTORY "${BINARY_DIR}"
)
endif ()
@@ -165,46 +165,6 @@ if (${DEP_DEBUG})
endif ()
-ExternalProject_Add(dep_libpng
- DEPENDS dep_zlib
- EXCLUDE_FROM_ALL 1
- URL "https://github.com/glennrp/libpng/archive/v1.6.36.tar.gz"
- URL_HASH SHA256=5bef5a850a9255365a2dc344671b7e9ef810de491bd479c2506ac3c337e2d84f
- CMAKE_GENERATOR "${DEP_MSVC_GEN}"
- CMAKE_ARGS
- -DPNG_SHARED=OFF
- -DPNG_TESTS=OFF
- -DSKIP_INSTALL_FILES=ON # Prevent installation of man pages et al.
- -DCMAKE_POSITION_INDEPENDENT_CODE=ON
- "-DCMAKE_INSTALL_PREFIX:PATH=${DESTDIR}\\usr\\local"
- BUILD_COMMAND msbuild /P:Configuration=Release INSTALL.vcxproj
- INSTALL_COMMAND ""
-)
-if (${DEP_DEBUG})
- ExternalProject_Get_Property(dep_libpng BINARY_DIR)
- ExternalProject_Add_Step(dep_libpng build_debug
- DEPENDEES build
- DEPENDERS install
- COMMAND msbuild /P:Configuration=Debug INSTALL.vcxproj
- WORKING_DIRECTORY "${BINARY_DIR}"
- )
-endif ()
-# The following steps are unfortunately needed to remove the _static suffix on libraries
-# (And also overwrite the dynamic .lib)
-ExternalProject_Add_Step(dep_libpng fix_static
- DEPENDEES install
- COMMAND "${CMAKE_COMMAND}" -E rename libpng16_static.lib libpng16.lib
- WORKING_DIRECTORY "${DESTDIR}\\usr\\local\\lib\\"
-)
-if (${DEP_DEBUG})
- ExternalProject_Add_Step(dep_libpng fix_static_debug
- DEPENDEES install
- COMMAND "${CMAKE_COMMAND}" -E rename libpng16_staticd.lib libpng16d.lib
- WORKING_DIRECTORY "${DESTDIR}\\usr\\local\\lib\\"
- )
-endif ()
-
-
if (${DEPS_BITS} EQUAL 32)
set(DEP_LIBCURL_TARGET "x86")
else ()
@@ -250,10 +210,12 @@ endif ()
ExternalProject_Add(dep_wxwidgets
EXCLUDE_FROM_ALL 1
- URL "https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.1/wxWidgets-3.1.1.tar.bz2"
- URL_HASH SHA256=c925dfe17e8f8b09eb7ea9bfdcfcc13696a3e14e92750effd839f5e10726159e
+ GIT_REPOSITORY "https://github.com/prusa3d/wxWidgets"
+ GIT_TAG v3.1.1-patched
+# URL "https://github.com/wxWidgets/wxWidgets/releases/download/v3.1.1/wxWidgets-3.1.1.tar.bz2"
+# URL_HASH SHA256=c925dfe17e8f8b09eb7ea9bfdcfcc13696a3e14e92750effd839f5e10726159e
BUILD_IN_SOURCE 1
- PATCH_COMMAND "${CMAKE_COMMAND}" -E copy "${CMAKE_CURRENT_SOURCE_DIR}\\wxwidgets-pngprefix.h" src\\png\\pngprefix.h
+# PATCH_COMMAND "${CMAKE_COMMAND}" -E copy "${CMAKE_CURRENT_SOURCE_DIR}\\wxwidgets-pngprefix.h" src\\png\\pngprefix.h
CONFIGURE_COMMAND ""
BUILD_COMMAND cd build\\msw && nmake /f makefile.vc BUILD=release SHARED=0 UNICODE=1 USE_GUI=1 "${DEP_WXWIDGETS_TARGET}"
INSTALL_COMMAND "${CMAKE_COMMAND}" -E copy_directory include "${DESTDIR}\\usr\\local\\include"
diff --git a/deps/wxwidgets-pngprefix.h b/deps/wxwidgets-pngprefix.h
index de62e310b..67c70af80 100644
--- a/deps/wxwidgets-pngprefix.h
+++ b/deps/wxwidgets-pngprefix.h
@@ -1,4 +1,4 @@
-// Patched in Slic3r: These two were missing:
+// Patched in PrusaSlicer: These two were missing:
#define png_write_eXIf wx_png_write_eXIf
#define png_handle_eXIf wx_png_handle_eXIf
diff --git a/doc/How to build - Linux et al.md b/doc/How to build - Linux et al.md
index 14ec23b2d..67556a6f7 100644
--- a/doc/How to build - Linux et al.md
+++ b/doc/How to build - Linux et al.md
@@ -1,13 +1,13 @@
-# Building Slic3r PE on UNIX/Linux
+# Building Slic3r++ on UNIX/Linux
-Slic3r PE uses the CMake build system and requires several dependencies.
+Slic3r++ uses the CMake build system and requires several dependencies.
The dependencies can be listed in `deps/deps-linux.cmake`, although they don't necessarily need to be as recent
as the versions listed - generally versions available on conservative Linux distros such as Debian stable or CentOS should suffice.
Perl is not required any more.
-In a typical situation, one would open a command line, go to the Slic3r sources, create a directory called `build` or similar,
+In a typical situation, one would open a command line, go to the Slic3r++ sources, create a directory called `build` or similar,
`cd` into it and call:
cmake ..
@@ -19,13 +19,13 @@ Additional CMake flags may be applicable as explained below.
### Dependency resolution
-By default Slic3r looks for dependencies the default way CMake looks for them, i.e. in default system locations.
-On Linux this will typically make Slic3r depend on dynamically loaded libraries from the system, however, Slic3r can be told
+By default Slic3r++ looks for dependencies the default way CMake looks for them, i.e. in default system locations.
+On Linux this will typically make Slic3r++ depend on dynamically loaded libraries from the system, however, Slic3r++ can be told
to specifically look for static libraries with the `SLIC3R_STATIC` flag passed to cmake:
cmake .. -DSLIC3R_STATIC=1
-Additionally, Slic3r can be built in a static manner mostly independent of the system libraries with a dependencies bundle
+Additionally, Slic3r++ can be built in a static manner mostly independent of the system libraries with a dependencies bundle
created using CMake script in the `deps` directory (these are not interconnected with the rest of the CMake scripts).
Note: We say _mostly independent_ because it's still expected the system will provide some transitive dependencies, such as GTK for wxWidgets.
@@ -37,7 +37,7 @@ To do this, go to the `deps` directory, create a `build` subdirectory (or the li
where the target destdir is a directory of your choosing where the dependencies will be installed.
You can also omit the `DESTDIR` option to use the default, in that case the `destdir` will be created inside the `build` directory where `cmake` is run.
-To pass the destdir path to the top-level Slic3r CMake script, use the `CMAKE_PREFIX_PATH` option along with turning on `SLIC3R_STATIC`:
+To pass the destdir path to the top-level Slic3r++ CMake script, use the `CMAKE_PREFIX_PATH` option along with turning on `SLIC3R_STATIC`:
cmake .. -DSLIC3R_STATIC=1 -DCMAKE_PREFIX_PATH=/usr/local
@@ -48,24 +48,24 @@ This is because wxWidgets hardcode the installation path.
### wxWidgets version
-By default, Slic3r PE looks for wxWidgets 3.1, this is because the 3.1 version has
+By default, Slic3r++ looks for wxWidgets 3.1, this is because the 3.1 version has
a number of bugfixes and improvements not found in 3.0. However, it can also be built with wxWidgets 3.0.
This is done by passing this option to CMake:
-DSLIC3R_WX_STABLE=1
-Note that Slic3r PE is tested with wxWidgets 3.0 somewhat sporadically and so there may be bugs in bleeding edge releases.
+Note that Slic3r++ is tested with wxWidgets 3.0 somewhat sporadically and so there may be bugs in bleeding edge releases.
### Build variant
-By default Slic3r builds the release variant.
+By default Slic3r++ builds the release variant.
To create a debug build, use the following CMake flag:
-DCMAKE_BUILD_TYPE=Debug
### Enabling address sanitizer
-If you're using GCC/Clang compiler, it is possible to build Slic3r with the built-in address sanitizer enabled to help detect memory-corruption issues.
+If you're using GCC/Clang compiler, it is possible to build Slic3r++ with the built-in address sanitizer enabled to help detect memory-corruption issues.
To enable it, simply use the following CMake flag:
-DSLIC3R_ASAN=1
@@ -74,12 +74,12 @@ This requires GCC>4.8 or Clang>3.1.
### Installation
-At runtime, Slic3r needs a way to access its resource files. By default, it looks for a `resources` directory relative to its binary.
+At runtime, Slic3r++ needs a way to access its resource files. By default, it looks for a `resources` directory relative to its binary.
-If you instead want Slic3r installed in a structure according to the File System Hierarchy Standard, use the `SLIC3R_FHS` flag
+If you instead want Slic3r++ installed in a structure according to the File System Hierarchy Standard, use the `SLIC3R_FHS` flag
cmake .. -DSLIC3R_FHS=1
-This will make Slic3r look for a fixed-location `share/slic3r-prusa3d` directory instead (note that the location becomes hardcoded).
+This will make Slic3r++ look for a fixed-location `share/slic3r-prusa3d` directory instead (note that the location becomes hardcoded).
-You can then use the `make install` target to install Slic3r.
+You can then use the `make install` target to install Slic3r++.
diff --git a/doc/How to build - Mac OS.md b/doc/How to build - Mac OS.md
index 670e9fd87..e03fa475d 100644
--- a/doc/How to build - Mac OS.md
+++ b/doc/How to build - Mac OS.md
@@ -1,12 +1,12 @@
-# Building Slic3r PE on Mac OS
+# Building Slic3r++ on Mac OS
-To build Slic3r PE on Mac OS, you will need to install XCode, [CMake](https://cmake.org/) (available on Brew) and possibly git.
+To build Slic3r++ on Mac OS, you will need to install XCode, [CMake](https://cmake.org/) (available on Brew) and possibly git.
### Dependencies
-Slic3r comes with a set of CMake scripts to build its dependencies, it lives in the `deps` directory.
-Open a terminal window and navigate to Slic3r sources directory and then to `deps`.
+Slic3r++ comes with a set of CMake scripts to build its dependencies, it lives in the `deps` directory.
+Open a terminal window and navigate to Slic3r++ sources directory and then to `deps`.
Use the following commands to build the dependencies:
mkdir build
@@ -21,10 +21,10 @@ You can also customize the bundle output path using the `-DDESTDIR=`
(This is because wxWidgets hardcodes the installation path.)
-### Building Slic3r
+### Building Slic3r++
-If dependencies are built without errors, you can proceed to build Slic3r itself.
-Go back to top level Slic3r sources directory and use these commands:
+If dependencies are built without errors, you can proceed to build Slic3r++ itself.
+Go back to top level Slic3r++ sources directory and use these commands:
mkdir build
cd build
@@ -33,7 +33,7 @@ Go back to top level Slic3r sources directory and use these commands:
The `CMAKE_PREFIX_PATH` is the path to the dependencies bundle but with `/usr/local` appended - if you set a custom path
using the `DESTDIR` option, you will need to change this accordingly. **Warning:** the `CMAKE_PREFIX_PATH` needs to be an absolute path.
-The CMake command above prepares Slic3r for building from the command line.
+The CMake command above prepares Slic3r++ for building from the command line.
To start the build, use
make -jN
@@ -44,12 +44,12 @@ Alternatively, if you would like to use XCode GUI, modify the `cmake` command to
cmake .. -GXcode -DCMAKE_PREFIX_PATH="$PWD/../deps/build/destdir/usr/local"
-and then open the `Slic3r.xcodeproj` file.
+and then open the `Slic3r++.xcodeproj` file.
This should open up XCode where you can perform build using the GUI or perform other tasks.
### Note on Mac OS X SDKs
-By default Slic3r builds against whichever SDK is the default on the current system.
+By default Slic3r++ builds against whichever SDK is the default on the current system.
This can be customized. The `CMAKE_OSX_SYSROOT` option sets the path to the SDK directory location
and the `CMAKE_OSX_DEPLOYMENT_TARGET` option sets the target OS X system version (eg. `10.14` or similar).
@@ -58,6 +58,13 @@ In case you set both, the two settings need to agree with each other. (Building
is currently unsupported because some of the dependencies don't support this, most notably wxWidgets.)
Please note that the `CMAKE_OSX_DEPLOYMENT_TARGET` and `CMAKE_OSX_SYSROOT` options need to be set the same
-on both the dependencies bundle as well as Slic3r PE itself.
+on both the dependencies bundle as well as Slic3r++ itself.
-Official Mac Slic3r builds are currently built against SDK 10.9 to ensure compatibility with older Macs.
+Official Mac Slic3r++ builds are currently built against SDK 10.9 to ensure compatibility with older Macs.
+
+_Warning:_ XCode may be set such that it rejects SDKs bellow some version (silently, more or less).
+This is set in the property list file
+
+ /Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Info.plist
+
+To remove the limitation, simply delete the key `MinimumSDKVersion` from that file.
diff --git a/doc/How to build - Windows.md b/doc/How to build - Windows.md
index e09c2a1d2..5042b16a3 100644
--- a/doc/How to build - Windows.md
+++ b/doc/How to build - Windows.md
@@ -1,7 +1,7 @@
-# Building Slic3r PE on Microsoft Windows
+# Building Slic3r++ on Microsoft Windows
-The currently supported way of building Slic3r PE on Windows is with CMake and MS Visual Studio 2013.
+The currently supported way of building Slic3r++ on Windows is with CMake and MS Visual Studio 2013.
You can use the free [Visual Studio 2013 Community Edition](https://www.visualstudio.com/vs/older-downloads/).
CMake installer can be downloaded from [the official website](https://cmake.org/download/).
@@ -11,8 +11,8 @@ _Note:_ Thanks to [**@supermerill**](https://github.com/supermerill) for testing
### Dependencies
-On Windows Slic3r is built against statically built libraries.
-We provide a prebuilt package of all the needed dependencies.
+On Windows Slic3r++ is built against statically built libraries.
+We provide a prebuilt package of all the needed dependencies. This package only works on Visual Studio 2013, so if you are using a newer version of Visual Studio, you need to compile the dependencies yourself as per [below](#building-the-dependencies-package-yourself).
The package comes in a several variants:
- [64 bit, Release mode only](https://bintray.com/vojtechkral/Slic3r-PE/download_file?file_path=destdir-64.7z) (41 MB, 578 MB unpacked)
@@ -26,14 +26,14 @@ If you're unsure where to unpack the package, unpack it into `C:\local\` (but it
Alternatively you can also compile the dependencies yourself, see below.
-### Building Slic3r PE with Visual Studio
+### Building Slic3r++ with Visual Studio
-First obtain the Slic3 PE sources via either git or by extracting the source archive.
+First obtain the Slic3r++ sources via either git or by extracting the source archive.
Then you will need to note down the so-called 'prefix path' to the dependencies, this is the location of the dependencies packages + `\usr\local` appended.
For example on 64 bits this would be `C:\local\destdir-64\usr\local`. The prefix path will need to be passed to CMake.
-When ready, open the relevant Visual Studio command line and `cd` into the directory with Slic3r sources.
+When ready, open the relevant Visual Studio command line and `cd` into the directory with Slic3r++ sources.
Use these commands to prepare Visual Studio solution file:
mkdir build
@@ -44,16 +44,16 @@ Note that if you're building a 32-bit variant, you will need to change the `"Vis
Conversely, if you're using Visual Studio version other than 2013, the version number will need to be changed accordingly.
-If `cmake` has finished without errors, go to the build directory and open the `Slic3r.sln` solution file in Visual Studio.
-Before building, make sure you're building the right project (use one of those starting with `slic3r_app_...`) and that you're building
+If `cmake` has finished without errors, go to the build directory and open the `Slic3r++.sln` solution file in Visual Studio.
+Before building, make sure you're building the right project (use one of those starting with `Slic3r++_app_...`) and that you're building
with the right configuration, i.e. _Release_ vs. _Debug_. When unsure, choose _Release_.
Note that you won't be able to build a _Debug_ variant against a _Release_-only dependencies package.
#### Installing using the `INSTALL` project
-Slic3r PE can be run from the Visual Studio or from Visual Studio's build directory (`src\Release` or `src\Debug`),
+Slic3r++ can be run from the Visual Studio or from Visual Studio's build directory (`src\Release` or `src\Debug`),
but for longer-term usage you might want to install somewhere using the `INSTALL` project.
-By default, this installs into `C:\Program Files\Slic3r`.
+By default, this installs into `C:\Program Files\Slic3r++`.
To customize the install path, use the `-DCMAKE_INSTALL_PREFIX=` when invoking `cmake`.
### Building from the command line
@@ -66,7 +66,7 @@ There are several options for building from the command line:
To build with msbuild, use the same CMake command as in previous paragraph and then build using
- msbuild /P:Configuration=Release ALL_BUILD.vcxproj
+ msbuild /m /P:Configuration=Release ALL_BUILD.vcxproj
To build with Ninja or nmake, replace the `-G` option in the CMake call with `-G Ninja` or `-G "NMake Makefiles"` , respectively.
Then use either `ninja` or `nmake` to start the build.
@@ -75,32 +75,38 @@ To install, use `msbuild /P:Configuration=Release INSTALL.vcxproj` , `ninja inst
### Building the dependencies package yourself
-The dependencies package is built using CMake scripts inside the `deps` subdirectory of Slic3r PE sources.
+The dependencies package is built using CMake scripts inside the `deps` subdirectory of Slic3r++ sources.
(This is intentionally not interconnected with the CMake scripts in the rest of the sources.)
-Open the preferred Visual Studio command line (64 or 32 bit variant) and `cd` into the directory with Slic3r sources.
+Open the preferred Visual Studio command line (64 or 32 bit variant) and `cd` into the directory with Slic3r++ sources.
Then `cd` into the `deps` directory and use these commands to build:
mkdir build
cd build
cmake .. -G "Visual Studio 12 Win64" -DDESTDIR="C:\local\destdir-custom"
- msbuild ALL_BUILD.vcxproj
+ msbuild /m ALL_BUILD.vcxproj
You can also use the Visual Studio GUI or other generators as mentioned above.
The `DESTDIR` option is the location where the bundle will be installed.
-This may be customized. If you leave it empty, the `DESTDIR` will be places inside the same `build` directory. For using your newly compile deps, use -DCMAKE_INSTALL_PREFIX= in your cmake command for slic3r.
+This may be customized. If you leave it empty, the `DESTDIR` will be placed inside the same `build` directory.
Warning: If the `build` directory is nested too deep inside other folders, various file paths during the build
-become too long and the build might fail due to file writing errors. For this reason, it is recommended to
+become too long and the build might fail due to file writing errors (\*). For this reason, it is recommended to
place the `build` directory relatively close to the drive root.
Note that the build variant that you may choose using Visual Studio (i.e. _Release_ or _Debug_ etc.) when building the dependency package is **not relevant**.
The dependency build will by default build _both_ the _Release_ and _Debug_ variants regardless of what you choose in Visual Studio.
-You can disable building of the debug variant by passing the `-DDEP_DEBUG=OFF` option to CMake, this will only produce a _Release_ build.
+You can disable building of the debug variant by passing the
+
+ -DDEP_DEBUG=OFF
+
+option to CMake, this will only produce a _Release_ build.
Refer to the CMake scripts inside the `deps` directory to see which dependencies are built in what versions and how this is done.
+\*) Specifically, the problem arises when building boost. Boost build tool appends all build options into paths of
+intermediate files, which are not handled correctly by either `b2.exe` or possibly `ninja` (?).
### building tests
You must use visual studio 2017, and build all deps & all projects with it (not the same compiler as vs 2013). Also, you have to add the "CRT SDK" to your windows 2017 installation (can be done via the VS intaller).
diff --git a/doc/Localization_guide.md b/doc/Localization_guide.md
index 656f225ef..f013118ae 100644
--- a/doc/Localization_guide.md
+++ b/doc/Localization_guide.md
@@ -1,6 +1,8 @@
# Localization and translation guide
-The purpose of this guide is to describe how to contribute to the Slic3rPE translations. We use GNUgettext for extracting string resources from the project and PoEdit for editing translations.
+note: this guide was done for PrusaSlicer. You can use PrusaSlicer .pom file for Slic3r++ but some fields will be missed.
+
+The purpose of this guide is to describe how to contribute to the PrusaSlicer translations. We use GNUgettext for extracting string resources from the project and PoEdit for editing translations.
Those can be downloaded here:
- https://sourceforge.net/directory/os:windows/?q=gnu+gettext GNUgettext package contains a set of tools to extract strings from the source code and to create the translation Catalog.
@@ -13,40 +15,40 @@ Full manual for GNUgettext can be seen here: http://www.gnu.org/software/gettext
### Scenario 1. How do I add a translation or fix an existing translation
1. Get PO-file from corresponding folder here:
-https://github.com/prusa3d/Slic3r/tree/master/resources/localization
+https://github.com/prusa3d/PrusaSlicer/tree/master/resources/localization
2. Open this file in PoEdit as "Edit a translation"
3. Apply your corrections to the translation
-4. Push changed Slic3rPE.po and Slic3rPE.mo (will create automatically after saving of Slic3r.po in PoEdit) back to to the enter folder.
+4. Push changed PrusaSlicer.po and PrusaSlicer.mo (will create automatically after saving of PrusaSlicer.po in PoEdit) back to to the enter folder.
### Scenario 2. How do I add a new language support
-1. Get file Slic3rPE.pot here :
-https://github.com/prusa3d/Slic3r/tree/master/resources/localization
+1. Get file PrusaSlicer.pot here :
+https://github.com/prusa3d/PrusaSlicer/tree/master/resources/localization
2. Open it in PoEdit for "Create new translation"
3. Select Translation Language (for example French).
4. As a result you will have fr.po - the file containing translation to French.
Notice. When the translation is complete you need to:
- - Rename the file to Slic3rPE.po
- - Click "Save file" button. Slic3rPE.mo will be created immediately
- - Both Slic3rPE.po and Slic3rPE.mo have to be saved here:
-https://github.com/prusa3d/Slic3r/tree/master/resources/localization/fr
+ - Rename the file to PrusaSlicer.po
+ - Click "Save file" button. PrusaSlicer.mo will be created immediately
+ - Both PrusaSlicer.po and PrusaSlicer.mo have to be saved here:
+https://github.com/prusa3d/PrusaSlicer/tree/master/resources/localization/fr
( name of folder "fr" means "French" - the translation language).
-### Scenario 3. How do I add a new text resource when implementing a feature to Slic3rPE
-Each string resource in Slic3rPE available for translation needs to be explicitly marked using L() macro like this:
+### Scenario 3. How do I add a new text resource when implementing a feature to PrusaSlicer
+Each string resource in PrusaSlicer available for translation needs to be explicitly marked using L() macro like this:
```C++
auto msg = L("This message to be localized")
```
-To get translated text use one of needed macro/function (`_(s)`, `_CHB(s)` or `L_str(s)` ).
+To get translated text use one of needed macro/function (`_(s)` or `_CHB(s)` ).
If you add new file resource, add it to the list of files containing macro `L()`
-### Scenario 4. How do I use GNUgettext to localize my own application taking Slic3rPE as an example
+### Scenario 4. How do I use GNUgettext to localize my own application taking PrusaSlicer as an example
1. For convenience create a list of files with this macro `L(s)`. We have
-https://github.com/prusa3d/Slic3r/tree/master/resources/localization/list.txt.
+https://github.com/prusa3d/PrusaSlicer/tree/master/resources/localization/list.txt.
2. Create template file(*.POT) with GNUgettext command:
```
- xgettext --keyword=L --from-code=UTF-8 --debug -o Slic3rPE.pot -f list.txt
+ xgettext --keyword=L --add-comments=TRN --from-code=UTF-8 --debug -o PrusaSlicer.pot -f list.txt
```
Use flag `--from-code=UTF-8` to specify that the source strings are in UTF-8 encoding
diff --git a/resources/icons/Slic3r.icns b/resources/icons/Slic3r.icns
deleted file mode 100644
index c1eba897e..000000000
Binary files a/resources/icons/Slic3r.icns and /dev/null differ
diff --git a/resources/icons/Slic3r_192px_grayscale.png b/resources/icons/Slic3r_192px_grayscale.png
deleted file mode 100644
index 910f94187..000000000
Binary files a/resources/icons/Slic3r_192px_grayscale.png and /dev/null differ
diff --git a/resources/icons/action_undo.png b/resources/icons/action_undo.png
deleted file mode 100644
index 06bb98b22..000000000
Binary files a/resources/icons/action_undo.png and /dev/null differ
diff --git a/resources/icons/action_undo_grey.png b/resources/icons/action_undo_grey.png
deleted file mode 100644
index eaa1593e3..000000000
Binary files a/resources/icons/action_undo_grey.png and /dev/null differ
diff --git a/resources/icons/add.png b/resources/icons/add.png
deleted file mode 100644
index dde16d5e9..000000000
Binary files a/resources/icons/add.png and /dev/null differ
diff --git a/resources/icons/add_copies.svg b/resources/icons/add_copies.svg
new file mode 100644
index 000000000..45b1d27cf
--- /dev/null
+++ b/resources/icons/add_copies.svg
@@ -0,0 +1,19 @@
+
+
+
diff --git a/resources/icons/add_modifier.svg b/resources/icons/add_modifier.svg
new file mode 100644
index 000000000..c3cfaabbb
--- /dev/null
+++ b/resources/icons/add_modifier.svg
@@ -0,0 +1,13 @@
+
+
+
diff --git a/resources/icons/add_object.png b/resources/icons/add_object.png
deleted file mode 100644
index ffc958edc..000000000
Binary files a/resources/icons/add_object.png and /dev/null differ
diff --git a/resources/icons/add_part.svg b/resources/icons/add_part.svg
new file mode 100644
index 000000000..5f0afdcc3
--- /dev/null
+++ b/resources/icons/add_part.svg
@@ -0,0 +1,19 @@
+
+
+
diff --git a/resources/icons/advanced_plus.svg b/resources/icons/advanced_plus.svg
new file mode 100644
index 000000000..48c4e08db
--- /dev/null
+++ b/resources/icons/advanced_plus.svg
@@ -0,0 +1,24 @@
+
+
+
diff --git a/resources/icons/application_view_tile.png b/resources/icons/application_view_tile.png
deleted file mode 100644
index 3bc0bd32f..000000000
Binary files a/resources/icons/application_view_tile.png and /dev/null differ
diff --git a/resources/icons/arrow_down.png b/resources/icons/arrow_down.png
deleted file mode 100644
index 2c4e27937..000000000
Binary files a/resources/icons/arrow_down.png and /dev/null differ
diff --git a/resources/icons/arrow_left.png b/resources/icons/arrow_left.png
deleted file mode 100644
index 5dc696781..000000000
Binary files a/resources/icons/arrow_left.png and /dev/null differ
diff --git a/resources/icons/arrow_out.png b/resources/icons/arrow_out.png
deleted file mode 100644
index 557d7b60b..000000000
Binary files a/resources/icons/arrow_out.png and /dev/null differ
diff --git a/resources/icons/arrow_refresh.png b/resources/icons/arrow_refresh.png
deleted file mode 100644
index 0de26566d..000000000
Binary files a/resources/icons/arrow_refresh.png and /dev/null differ
diff --git a/resources/icons/arrow_right.png b/resources/icons/arrow_right.png
deleted file mode 100644
index b1a181923..000000000
Binary files a/resources/icons/arrow_right.png and /dev/null differ
diff --git a/resources/icons/arrow_rotate_anticlockwise.png b/resources/icons/arrow_rotate_anticlockwise.png
deleted file mode 100644
index abc7535df..000000000
Binary files a/resources/icons/arrow_rotate_anticlockwise.png and /dev/null differ
diff --git a/resources/icons/arrow_rotate_clockwise.png b/resources/icons/arrow_rotate_clockwise.png
deleted file mode 100644
index 8624dfd11..000000000
Binary files a/resources/icons/arrow_rotate_clockwise.png and /dev/null differ
diff --git a/resources/icons/arrow_undo.png b/resources/icons/arrow_undo.png
deleted file mode 100644
index 6972c5e59..000000000
Binary files a/resources/icons/arrow_undo.png and /dev/null differ
diff --git a/resources/icons/arrow_up.png b/resources/icons/arrow_up.png
deleted file mode 100644
index 3319fcc72..000000000
Binary files a/resources/icons/arrow_up.png and /dev/null differ
diff --git a/resources/icons/box.png b/resources/icons/box.png
deleted file mode 100644
index 424648192..000000000
Binary files a/resources/icons/box.png and /dev/null differ
diff --git a/resources/icons/brick.png b/resources/icons/brick.png
deleted file mode 100644
index 660d48d4f..000000000
Binary files a/resources/icons/brick.png and /dev/null differ
diff --git a/resources/icons/brick_add.png b/resources/icons/brick_add.png
deleted file mode 100644
index 978b9fa35..000000000
Binary files a/resources/icons/brick_add.png and /dev/null differ
diff --git a/resources/icons/brick_delete.png b/resources/icons/brick_delete.png
deleted file mode 100644
index 0e8ecdbdc..000000000
Binary files a/resources/icons/brick_delete.png and /dev/null differ
diff --git a/resources/icons/brick_go.png b/resources/icons/brick_go.png
deleted file mode 100644
index 409c8f4cb..000000000
Binary files a/resources/icons/brick_go.png and /dev/null differ
diff --git a/resources/icons/bricks.png b/resources/icons/bricks.png
deleted file mode 100644
index 8eb0091ea..000000000
Binary files a/resources/icons/bricks.png and /dev/null differ
diff --git a/resources/icons/browse.svg b/resources/icons/browse.svg
new file mode 100644
index 000000000..c4297c41d
--- /dev/null
+++ b/resources/icons/browse.svg
@@ -0,0 +1,11 @@
+
+
+
diff --git a/resources/icons/building.png b/resources/icons/building.png
deleted file mode 100644
index 37f638f27..000000000
Binary files a/resources/icons/building.png and /dev/null differ
diff --git a/resources/icons/bullet_arrow_down.png b/resources/icons/bullet_arrow_down.png
deleted file mode 100644
index 9b23c06d7..000000000
Binary files a/resources/icons/bullet_arrow_down.png and /dev/null differ
diff --git a/resources/icons/bullet_arrow_up.png b/resources/icons/bullet_arrow_up.png
deleted file mode 100644
index 24df0f421..000000000
Binary files a/resources/icons/bullet_arrow_up.png and /dev/null differ
diff --git a/resources/icons/bullet_green.png b/resources/icons/bullet_green.png
deleted file mode 100644
index 058ad261f..000000000
Binary files a/resources/icons/bullet_green.png and /dev/null differ
diff --git a/resources/icons/bullet_red.png b/resources/icons/bullet_red.png
deleted file mode 100644
index 0cd803115..000000000
Binary files a/resources/icons/bullet_red.png and /dev/null differ
diff --git a/resources/icons/cog.png b/resources/icons/cog.png
deleted file mode 100644
index 3c858b7b2..000000000
Binary files a/resources/icons/cog.png and /dev/null differ
diff --git a/resources/icons/cog.svg b/resources/icons/cog.svg
new file mode 100644
index 000000000..07adb6610
--- /dev/null
+++ b/resources/icons/cog.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/resources/icons/control_pause.png b/resources/icons/control_pause.png
deleted file mode 100644
index 2d9ce9c4e..000000000
Binary files a/resources/icons/control_pause.png and /dev/null differ
diff --git a/resources/icons/control_pause_blue.png b/resources/icons/control_pause_blue.png
deleted file mode 100644
index ec61099b0..000000000
Binary files a/resources/icons/control_pause_blue.png and /dev/null differ
diff --git a/resources/icons/control_play.png b/resources/icons/control_play.png
deleted file mode 100644
index 0846555d0..000000000
Binary files a/resources/icons/control_play.png and /dev/null differ
diff --git a/resources/icons/control_play_blue.png b/resources/icons/control_play_blue.png
deleted file mode 100644
index f8c8ec683..000000000
Binary files a/resources/icons/control_play_blue.png and /dev/null differ
diff --git a/resources/icons/control_stop.png b/resources/icons/control_stop.png
deleted file mode 100644
index 893bb60e5..000000000
Binary files a/resources/icons/control_stop.png and /dev/null differ
diff --git a/resources/icons/control_stop_blue.png b/resources/icons/control_stop_blue.png
deleted file mode 100644
index e6f75d232..000000000
Binary files a/resources/icons/control_stop_blue.png and /dev/null differ
diff --git a/resources/icons/cooling.svg b/resources/icons/cooling.svg
new file mode 100644
index 000000000..b5d80e434
--- /dev/null
+++ b/resources/icons/cooling.svg
@@ -0,0 +1,25 @@
+
+
+
diff --git a/resources/icons/copy.svg b/resources/icons/copy.svg
new file mode 100644
index 000000000..9b8430dd7
--- /dev/null
+++ b/resources/icons/copy.svg
@@ -0,0 +1,37 @@
+
+
+
diff --git a/resources/icons/copy_menu.svg b/resources/icons/copy_menu.svg
new file mode 100644
index 000000000..0d1af6a0a
--- /dev/null
+++ b/resources/icons/copy_menu.svg
@@ -0,0 +1,37 @@
+
+
+
diff --git a/resources/icons/cross.png b/resources/icons/cross.png
deleted file mode 100644
index 54f790b47..000000000
Binary files a/resources/icons/cross.png and /dev/null differ
diff --git a/resources/icons/cross.svg b/resources/icons/cross.svg
new file mode 100644
index 000000000..96835d259
--- /dev/null
+++ b/resources/icons/cross.svg
@@ -0,0 +1,15 @@
+
+
+
diff --git a/resources/icons/delete.png b/resources/icons/delete.png
deleted file mode 100644
index 143c70944..000000000
Binary files a/resources/icons/delete.png and /dev/null differ
diff --git a/resources/icons/delete.svg b/resources/icons/delete.svg
new file mode 100644
index 000000000..f0976a76b
--- /dev/null
+++ b/resources/icons/delete.svg
@@ -0,0 +1,22 @@
+
+
+
diff --git a/resources/icons/delete_all_menu.svg b/resources/icons/delete_all_menu.svg
new file mode 100644
index 000000000..5ee6d6ea6
--- /dev/null
+++ b/resources/icons/delete_all_menu.svg
@@ -0,0 +1,31 @@
+
+
+
diff --git a/resources/icons/disclosure_triangle_close.png b/resources/icons/disclosure_triangle_close.png
deleted file mode 100644
index 0660422c7..000000000
Binary files a/resources/icons/disclosure_triangle_close.png and /dev/null differ
diff --git a/resources/icons/disclosure_triangle_open.png b/resources/icons/disclosure_triangle_open.png
deleted file mode 100644
index 81112f2a2..000000000
Binary files a/resources/icons/disclosure_triangle_open.png and /dev/null differ
diff --git a/resources/icons/disk.png b/resources/icons/disk.png
deleted file mode 100644
index 70dd3d3f1..000000000
Binary files a/resources/icons/disk.png and /dev/null differ
diff --git a/resources/icons/dot.svg b/resources/icons/dot.svg
new file mode 100644
index 000000000..236db3678
--- /dev/null
+++ b/resources/icons/dot.svg
@@ -0,0 +1,8 @@
+
+
+
diff --git a/resources/icons/dot_white.svg b/resources/icons/dot_white.svg
new file mode 100644
index 000000000..90fbaf7fb
--- /dev/null
+++ b/resources/icons/dot_white.svg
@@ -0,0 +1,8 @@
+
+
+
diff --git a/resources/icons/editor_menu.svg b/resources/icons/editor_menu.svg
new file mode 100644
index 000000000..223efda0f
--- /dev/null
+++ b/resources/icons/editor_menu.svg
@@ -0,0 +1,20 @@
+
+
+
diff --git a/resources/icons/empty_icon.png b/resources/icons/empty_icon.png
deleted file mode 100644
index 2dd8f0afe..000000000
Binary files a/resources/icons/empty_icon.png and /dev/null differ
diff --git a/resources/icons/erase.png b/resources/icons/erase.png
deleted file mode 100644
index 4c4cfd755..000000000
Binary files a/resources/icons/erase.png and /dev/null differ
diff --git a/resources/icons/error.png b/resources/icons/error.png
deleted file mode 100644
index 428360d27..000000000
Binary files a/resources/icons/error.png and /dev/null differ
diff --git a/resources/icons/exclamation.svg b/resources/icons/exclamation.svg
new file mode 100644
index 000000000..456802652
--- /dev/null
+++ b/resources/icons/exclamation.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/resources/icons/exclamation_mark_.png b/resources/icons/exclamation_mark_.png
deleted file mode 100644
index 5fe7c1355..000000000
Binary files a/resources/icons/exclamation_mark_.png and /dev/null differ
diff --git a/resources/icons/export_config.svg b/resources/icons/export_config.svg
new file mode 100644
index 000000000..e70035dae
--- /dev/null
+++ b/resources/icons/export_config.svg
@@ -0,0 +1,20 @@
+
+
+
diff --git a/resources/icons/export_config_bundle.svg b/resources/icons/export_config_bundle.svg
new file mode 100644
index 000000000..1e587689d
--- /dev/null
+++ b/resources/icons/export_config_bundle.svg
@@ -0,0 +1,51 @@
+
+
+
diff --git a/resources/icons/export_gcode.svg b/resources/icons/export_gcode.svg
new file mode 100644
index 000000000..317e01f7d
--- /dev/null
+++ b/resources/icons/export_gcode.svg
@@ -0,0 +1,14 @@
+
+
+
diff --git a/resources/icons/export_plater.svg b/resources/icons/export_plater.svg
new file mode 100644
index 000000000..641d952ad
--- /dev/null
+++ b/resources/icons/export_plater.svg
@@ -0,0 +1,12 @@
+
+
+
diff --git a/resources/icons/flag-green-icon.png b/resources/icons/flag-green-icon.png
deleted file mode 100644
index e4bc611f8..000000000
Binary files a/resources/icons/flag-green-icon.png and /dev/null differ
diff --git a/resources/icons/flag-red-icon.png b/resources/icons/flag-red-icon.png
deleted file mode 100644
index e8a602da7..000000000
Binary files a/resources/icons/flag-red-icon.png and /dev/null differ
diff --git a/resources/icons/flag_green.svg b/resources/icons/flag_green.svg
new file mode 100644
index 000000000..90932e5e4
--- /dev/null
+++ b/resources/icons/flag_green.svg
@@ -0,0 +1,10 @@
+
+
+
diff --git a/resources/icons/flag_red.svg b/resources/icons/flag_red.svg
new file mode 100644
index 000000000..8d39a9d6a
--- /dev/null
+++ b/resources/icons/flag_red.svg
@@ -0,0 +1,10 @@
+
+
+
diff --git a/resources/icons/funnel.png b/resources/icons/funnel.png
deleted file mode 100644
index 07ab7ad44..000000000
Binary files a/resources/icons/funnel.png and /dev/null differ
diff --git a/resources/icons/funnel.svg b/resources/icons/funnel.svg
new file mode 100644
index 000000000..8877722e3
--- /dev/null
+++ b/resources/icons/funnel.svg
@@ -0,0 +1,15 @@
+
+
+
diff --git a/resources/icons/gizmos.png b/resources/icons/gizmos.png
deleted file mode 100644
index 448e826b8..000000000
Binary files a/resources/icons/gizmos.png and /dev/null differ
diff --git a/resources/icons/hourglass.png b/resources/icons/hourglass.png
deleted file mode 100644
index e39feab8b..000000000
Binary files a/resources/icons/hourglass.png and /dev/null differ
diff --git a/resources/icons/house.png b/resources/icons/house.png
deleted file mode 100644
index fed62219f..000000000
Binary files a/resources/icons/house.png and /dev/null differ
diff --git a/resources/icons/import_config.svg b/resources/icons/import_config.svg
new file mode 100644
index 000000000..636a31151
--- /dev/null
+++ b/resources/icons/import_config.svg
@@ -0,0 +1,25 @@
+
+
+
diff --git a/resources/icons/import_config_bundle.svg b/resources/icons/import_config_bundle.svg
new file mode 100644
index 000000000..b8342760a
--- /dev/null
+++ b/resources/icons/import_config_bundle.svg
@@ -0,0 +1,62 @@
+
+
+
diff --git a/resources/icons/import_plater.svg b/resources/icons/import_plater.svg
new file mode 100644
index 000000000..a953122f2
--- /dev/null
+++ b/resources/icons/import_plater.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/resources/icons/infill.png b/resources/icons/infill.png
deleted file mode 100644
index 69d3c7254..000000000
Binary files a/resources/icons/infill.png and /dev/null differ
diff --git a/resources/icons/infill.svg b/resources/icons/infill.svg
new file mode 100644
index 000000000..fcb1f99c9
--- /dev/null
+++ b/resources/icons/infill.svg
@@ -0,0 +1,33 @@
+
+
+
diff --git a/resources/icons/joystick.png b/resources/icons/joystick.png
deleted file mode 100644
index 62168f56f..000000000
Binary files a/resources/icons/joystick.png and /dev/null differ
diff --git a/resources/icons/lambda.png b/resources/icons/lambda.png
deleted file mode 100644
index 3be73b142..000000000
Binary files a/resources/icons/lambda.png and /dev/null differ
diff --git a/resources/icons/lambda_.png b/resources/icons/lambda_.png
deleted file mode 100644
index 8e9d2b0ea..000000000
Binary files a/resources/icons/lambda_.png and /dev/null differ
diff --git a/resources/icons/layers.png b/resources/icons/layers.png
deleted file mode 100644
index e1358a362..000000000
Binary files a/resources/icons/layers.png and /dev/null differ
diff --git a/resources/icons/layers.svg b/resources/icons/layers.svg
index 7718a8cbd..da5dec21d 100644
--- a/resources/icons/layers.svg
+++ b/resources/icons/layers.svg
@@ -1,25 +1,27 @@
-
+
diff --git a/resources/icons/layers_white.svg b/resources/icons/layers_white.svg
new file mode 100644
index 000000000..cd71fab3a
--- /dev/null
+++ b/resources/icons/layers_white.svg
@@ -0,0 +1,27 @@
+
+
+
diff --git a/resources/icons/lock.png b/resources/icons/lock.png
deleted file mode 100644
index 2ebc4f6f9..000000000
Binary files a/resources/icons/lock.png and /dev/null differ
diff --git a/resources/icons/lock_closed.svg b/resources/icons/lock_closed.svg
new file mode 100644
index 000000000..549cdba23
--- /dev/null
+++ b/resources/icons/lock_closed.svg
@@ -0,0 +1,10 @@
+
+
+
diff --git a/resources/icons/lock_closed_white.svg b/resources/icons/lock_closed_white.svg
new file mode 100644
index 000000000..1665dc9a0
--- /dev/null
+++ b/resources/icons/lock_closed_white.svg
@@ -0,0 +1,10 @@
+
+
+
diff --git a/resources/icons/lock_open.png b/resources/icons/lock_open.png
deleted file mode 100644
index a471765ff..000000000
Binary files a/resources/icons/lock_open.png and /dev/null differ
diff --git a/resources/icons/lock_open.svg b/resources/icons/lock_open.svg
new file mode 100644
index 000000000..047e8685c
--- /dev/null
+++ b/resources/icons/lock_open.svg
@@ -0,0 +1,11 @@
+
+
+
diff --git a/resources/icons/lorry_add.png b/resources/icons/lorry_add.png
deleted file mode 100644
index a2c512499..000000000
Binary files a/resources/icons/lorry_add.png and /dev/null differ
diff --git a/resources/icons/lorry_go.png b/resources/icons/lorry_go.png
deleted file mode 100644
index 1c296a6aa..000000000
Binary files a/resources/icons/lorry_go.png and /dev/null differ
diff --git a/resources/icons/mark_X.svg b/resources/icons/mark_X.svg
new file mode 100644
index 000000000..1045debc5
--- /dev/null
+++ b/resources/icons/mark_X.svg
@@ -0,0 +1,9 @@
+
+
+
diff --git a/resources/icons/mark_Y.svg b/resources/icons/mark_Y.svg
new file mode 100644
index 000000000..26e01b295
--- /dev/null
+++ b/resources/icons/mark_Y.svg
@@ -0,0 +1,9 @@
+
+
+
diff --git a/resources/icons/mark_Z.svg b/resources/icons/mark_Z.svg
new file mode 100644
index 000000000..cd2826ac0
--- /dev/null
+++ b/resources/icons/mark_Z.svg
@@ -0,0 +1,9 @@
+
+
+
diff --git a/resources/icons/mode_middle_.png b/resources/icons/mode_advanced_.png
similarity index 100%
rename from resources/icons/mode_middle_.png
rename to resources/icons/mode_advanced_.png
diff --git a/resources/icons/mode_middle_sq.png b/resources/icons/mode_advanced_sq.png
similarity index 100%
rename from resources/icons/mode_middle_sq.png
rename to resources/icons/mode_advanced_sq.png
diff --git a/resources/icons/mode_expert.png b/resources/icons/mode_expert.png
deleted file mode 100644
index 1716bab44..000000000
Binary files a/resources/icons/mode_expert.png and /dev/null differ
diff --git a/resources/icons/mode_middle.png b/resources/icons/mode_middle.png
deleted file mode 100644
index b08f73ca6..000000000
Binary files a/resources/icons/mode_middle.png and /dev/null differ
diff --git a/resources/icons/mode_off_sq.png b/resources/icons/mode_off_sq.png
deleted file mode 100644
index 8d8185653..000000000
Binary files a/resources/icons/mode_off_sq.png and /dev/null differ
diff --git a/resources/icons/mode_simple.png b/resources/icons/mode_simple.png
deleted file mode 100644
index 8bc300228..000000000
Binary files a/resources/icons/mode_simple.png and /dev/null differ
diff --git a/resources/icons/move_hover.png b/resources/icons/move_hover.png
deleted file mode 100644
index 8cd66cab9..000000000
Binary files a/resources/icons/move_hover.png and /dev/null differ
diff --git a/resources/icons/move_off.png b/resources/icons/move_off.png
deleted file mode 100644
index 9e44690df..000000000
Binary files a/resources/icons/move_off.png and /dev/null differ
diff --git a/resources/icons/move_on.png b/resources/icons/move_on.png
deleted file mode 100644
index c19be461d..000000000
Binary files a/resources/icons/move_on.png and /dev/null differ
diff --git a/resources/icons/note.png b/resources/icons/note.png
deleted file mode 100644
index 40e206f17..000000000
Binary files a/resources/icons/note.png and /dev/null differ
diff --git a/resources/icons/note.svg b/resources/icons/note.svg
new file mode 100644
index 000000000..c14214201
--- /dev/null
+++ b/resources/icons/note.svg
@@ -0,0 +1,25 @@
+
+
+
diff --git a/resources/icons/number_of_copies.svg b/resources/icons/number_of_copies.svg
new file mode 100644
index 000000000..a5c8affc7
--- /dev/null
+++ b/resources/icons/number_of_copies.svg
@@ -0,0 +1,28 @@
+
+
+
diff --git a/resources/icons/object.png b/resources/icons/object.png
deleted file mode 100644
index c85cbaf2f..000000000
Binary files a/resources/icons/object.png and /dev/null differ
diff --git a/resources/icons/open.svg b/resources/icons/open.svg
new file mode 100644
index 000000000..8fcddc2a6
--- /dev/null
+++ b/resources/icons/open.svg
@@ -0,0 +1,11 @@
+
+
+
diff --git a/resources/icons/output+page_white.svg b/resources/icons/output+page_white.svg
new file mode 100644
index 000000000..ec1518f25
--- /dev/null
+++ b/resources/icons/output+page_white.svg
@@ -0,0 +1,21 @@
+
+
+
diff --git a/resources/icons/overlay/cut_hover.png b/resources/icons/overlay/cut_hover.png
deleted file mode 100644
index b026667c2..000000000
Binary files a/resources/icons/overlay/cut_hover.png and /dev/null differ
diff --git a/resources/icons/overlay/cut_off.png b/resources/icons/overlay/cut_off.png
deleted file mode 100644
index c01f20554..000000000
Binary files a/resources/icons/overlay/cut_off.png and /dev/null differ
diff --git a/resources/icons/overlay/cut_on.png b/resources/icons/overlay/cut_on.png
deleted file mode 100644
index fac6ecb45..000000000
Binary files a/resources/icons/overlay/cut_on.png and /dev/null differ
diff --git a/resources/icons/overlay/layflat_hover.png b/resources/icons/overlay/layflat_hover.png
deleted file mode 100644
index 508916e48..000000000
Binary files a/resources/icons/overlay/layflat_hover.png and /dev/null differ
diff --git a/resources/icons/overlay/layflat_off.png b/resources/icons/overlay/layflat_off.png
deleted file mode 100644
index 6bfadd316..000000000
Binary files a/resources/icons/overlay/layflat_off.png and /dev/null differ
diff --git a/resources/icons/overlay/layflat_on.png b/resources/icons/overlay/layflat_on.png
deleted file mode 100644
index 4892b57fc..000000000
Binary files a/resources/icons/overlay/layflat_on.png and /dev/null differ
diff --git a/resources/icons/overlay/move_hover.png b/resources/icons/overlay/move_hover.png
deleted file mode 100644
index 933c34c24..000000000
Binary files a/resources/icons/overlay/move_hover.png and /dev/null differ
diff --git a/resources/icons/overlay/move_off.png b/resources/icons/overlay/move_off.png
deleted file mode 100644
index 6c921a042..000000000
Binary files a/resources/icons/overlay/move_off.png and /dev/null differ
diff --git a/resources/icons/overlay/move_on.png b/resources/icons/overlay/move_on.png
deleted file mode 100644
index 80204b52e..000000000
Binary files a/resources/icons/overlay/move_on.png and /dev/null differ
diff --git a/resources/icons/overlay/rotate_hover.png b/resources/icons/overlay/rotate_hover.png
deleted file mode 100644
index 9df377fc7..000000000
Binary files a/resources/icons/overlay/rotate_hover.png and /dev/null differ
diff --git a/resources/icons/overlay/rotate_off.png b/resources/icons/overlay/rotate_off.png
deleted file mode 100644
index f5b652979..000000000
Binary files a/resources/icons/overlay/rotate_off.png and /dev/null differ
diff --git a/resources/icons/overlay/rotate_on.png b/resources/icons/overlay/rotate_on.png
deleted file mode 100644
index 6d4c5bf31..000000000
Binary files a/resources/icons/overlay/rotate_on.png and /dev/null differ
diff --git a/resources/icons/overlay/scale_hover.png b/resources/icons/overlay/scale_hover.png
deleted file mode 100644
index 40a05fffd..000000000
Binary files a/resources/icons/overlay/scale_hover.png and /dev/null differ
diff --git a/resources/icons/overlay/scale_off.png b/resources/icons/overlay/scale_off.png
deleted file mode 100644
index 351d5a004..000000000
Binary files a/resources/icons/overlay/scale_off.png and /dev/null differ
diff --git a/resources/icons/overlay/scale_on.png b/resources/icons/overlay/scale_on.png
deleted file mode 100644
index f8450e105..000000000
Binary files a/resources/icons/overlay/scale_on.png and /dev/null differ
diff --git a/resources/icons/overlay/sla_support_points_hover.png b/resources/icons/overlay/sla_support_points_hover.png
deleted file mode 100644
index 2b385c0e7..000000000
Binary files a/resources/icons/overlay/sla_support_points_hover.png and /dev/null differ
diff --git a/resources/icons/overlay/sla_support_points_off.png b/resources/icons/overlay/sla_support_points_off.png
deleted file mode 100644
index 0a1e3f570..000000000
Binary files a/resources/icons/overlay/sla_support_points_off.png and /dev/null differ
diff --git a/resources/icons/overlay/sla_support_points_on.png b/resources/icons/overlay/sla_support_points_on.png
deleted file mode 100644
index e7f5d0a87..000000000
Binary files a/resources/icons/overlay/sla_support_points_on.png and /dev/null differ
diff --git a/resources/icons/package.png b/resources/icons/package.png
deleted file mode 100644
index 78945fe19..000000000
Binary files a/resources/icons/package.png and /dev/null differ
diff --git a/resources/icons/package_green.png b/resources/icons/package_green.png
deleted file mode 100644
index 2e5104016..000000000
Binary files a/resources/icons/package_green.png and /dev/null differ
diff --git a/resources/icons/pad.svg b/resources/icons/pad.svg
new file mode 100644
index 000000000..dc5907e37
--- /dev/null
+++ b/resources/icons/pad.svg
@@ -0,0 +1,83 @@
+
+
+
diff --git a/resources/icons/page_white_go.png b/resources/icons/page_white_go.png
deleted file mode 100644
index fee12fb25..000000000
Binary files a/resources/icons/page_white_go.png and /dev/null differ
diff --git a/resources/icons/paste.svg b/resources/icons/paste.svg
new file mode 100644
index 000000000..028ffb8ea
--- /dev/null
+++ b/resources/icons/paste.svg
@@ -0,0 +1,27 @@
+
+
+
diff --git a/resources/icons/paste_menu.svg b/resources/icons/paste_menu.svg
new file mode 100644
index 000000000..74dbbf8ee
--- /dev/null
+++ b/resources/icons/paste_menu.svg
@@ -0,0 +1,27 @@
+
+
+
diff --git a/resources/icons/plater.svg b/resources/icons/plater.svg
new file mode 100644
index 000000000..6fd21215b
--- /dev/null
+++ b/resources/icons/plater.svg
@@ -0,0 +1,12 @@
+
+
+
diff --git a/resources/icons/plugin.png b/resources/icons/plugin.png
deleted file mode 100644
index 322685238..000000000
Binary files a/resources/icons/plugin.png and /dev/null differ
diff --git a/resources/icons/plugin_add.png b/resources/icons/plugin_add.png
deleted file mode 100644
index ae43690ec..000000000
Binary files a/resources/icons/plugin_add.png and /dev/null differ
diff --git a/resources/icons/plugin_go.png b/resources/icons/plugin_go.png
deleted file mode 100644
index 41da9913d..000000000
Binary files a/resources/icons/plugin_go.png and /dev/null differ
diff --git a/resources/icons/preview_menu.svg b/resources/icons/preview_menu.svg
new file mode 100644
index 000000000..725caf7b8
--- /dev/null
+++ b/resources/icons/preview_menu.svg
@@ -0,0 +1,48 @@
+
+
+
diff --git a/resources/icons/printer.svg b/resources/icons/printer.svg
new file mode 100644
index 000000000..91e103ec7
--- /dev/null
+++ b/resources/icons/printer.svg
@@ -0,0 +1,14 @@
+
+
+
diff --git a/resources/icons/printer_empty.png b/resources/icons/printer_empty.png
deleted file mode 100644
index ddaae7e8a..000000000
Binary files a/resources/icons/printer_empty.png and /dev/null differ
diff --git a/resources/icons/printer_white.svg b/resources/icons/printer_white.svg
new file mode 100644
index 000000000..d94f6fd5c
--- /dev/null
+++ b/resources/icons/printer_white.svg
@@ -0,0 +1,14 @@
+
+
+
diff --git a/resources/icons/printers/PrusaResearch_SL1.png b/resources/icons/printers/PrusaResearch_SL1.png
index 3c15f95ea..b4425a705 100644
Binary files a/resources/icons/printers/PrusaResearch_SL1.png and b/resources/icons/printers/PrusaResearch_SL1.png differ
diff --git a/resources/icons/question.svg b/resources/icons/question.svg
new file mode 100644
index 000000000..5463243c6
--- /dev/null
+++ b/resources/icons/question.svg
@@ -0,0 +1,10 @@
+
+
+
diff --git a/resources/icons/question_mark_01.png b/resources/icons/question_mark_01.png
deleted file mode 100644
index 25814a61d..000000000
Binary files a/resources/icons/question_mark_01.png and /dev/null differ
diff --git a/resources/icons/re_slice.svg b/resources/icons/re_slice.svg
new file mode 100644
index 000000000..54490ea42
--- /dev/null
+++ b/resources/icons/re_slice.svg
@@ -0,0 +1,19 @@
+
+
+
diff --git a/resources/icons/remove_copies.svg b/resources/icons/remove_copies.svg
new file mode 100644
index 000000000..d249cb5bc
--- /dev/null
+++ b/resources/icons/remove_copies.svg
@@ -0,0 +1,15 @@
+
+
+
diff --git a/resources/icons/remove_menu.svg b/resources/icons/remove_menu.svg
new file mode 100644
index 000000000..a25ae965b
--- /dev/null
+++ b/resources/icons/remove_menu.svg
@@ -0,0 +1,44 @@
+
+
+
diff --git a/resources/icons/resin.svg b/resources/icons/resin.svg
new file mode 100644
index 000000000..da44606a0
--- /dev/null
+++ b/resources/icons/resin.svg
@@ -0,0 +1,10 @@
+
+
+
diff --git a/resources/icons/reslice.png b/resources/icons/reslice.png
deleted file mode 100644
index 167c0eccd..000000000
Binary files a/resources/icons/reslice.png and /dev/null differ
diff --git a/resources/icons/save.svg b/resources/icons/save.svg
new file mode 100644
index 000000000..9e3fb961e
--- /dev/null
+++ b/resources/icons/save.svg
@@ -0,0 +1,24 @@
+
+
+
diff --git a/resources/icons/scale_hover.png b/resources/icons/scale_hover.png
deleted file mode 100644
index 394cb4b20..000000000
Binary files a/resources/icons/scale_hover.png and /dev/null differ
diff --git a/resources/icons/scale_off.png b/resources/icons/scale_off.png
deleted file mode 100644
index fac035099..000000000
Binary files a/resources/icons/scale_off.png and /dev/null differ
diff --git a/resources/icons/scale_on.png b/resources/icons/scale_on.png
deleted file mode 100644
index 4d4c075f3..000000000
Binary files a/resources/icons/scale_on.png and /dev/null differ
diff --git a/resources/icons/set_separate_obj.svg b/resources/icons/set_separate_obj.svg
new file mode 100644
index 000000000..c95149e2d
--- /dev/null
+++ b/resources/icons/set_separate_obj.svg
@@ -0,0 +1,29 @@
+
+
+
diff --git a/resources/icons/shape_flip_horizontal.png b/resources/icons/shape_flip_horizontal.png
deleted file mode 100644
index 8667c81f8..000000000
Binary files a/resources/icons/shape_flip_horizontal.png and /dev/null differ
diff --git a/resources/icons/shape_handles.png b/resources/icons/shape_handles.png
deleted file mode 100644
index ce27fe3a0..000000000
Binary files a/resources/icons/shape_handles.png and /dev/null differ
diff --git a/resources/icons/shape_ungroup_o.png b/resources/icons/shape_ungroup_o.png
deleted file mode 100644
index 97746d32c..000000000
Binary files a/resources/icons/shape_ungroup_o.png and /dev/null differ
diff --git a/resources/icons/shape_ungroup_p.png b/resources/icons/shape_ungroup_p.png
deleted file mode 100644
index 81c0198ff..000000000
Binary files a/resources/icons/shape_ungroup_p.png and /dev/null differ
diff --git a/resources/icons/skirt+brim.svg b/resources/icons/skirt+brim.svg
new file mode 100644
index 000000000..9242761b6
--- /dev/null
+++ b/resources/icons/skirt+brim.svg
@@ -0,0 +1,19 @@
+
+
+
diff --git a/resources/icons/sla_support_points_reset.png b/resources/icons/sla_support_points_reset.png
deleted file mode 100644
index 6e051fe95..000000000
Binary files a/resources/icons/sla_support_points_reset.png and /dev/null differ
diff --git a/resources/icons/sla_support_points_tooltip.png b/resources/icons/sla_support_points_tooltip.png
deleted file mode 100644
index 1bdfd3440..000000000
Binary files a/resources/icons/sla_support_points_tooltip.png and /dev/null differ
diff --git a/resources/icons/split.png b/resources/icons/split.png
deleted file mode 100644
index c5680ab91..000000000
Binary files a/resources/icons/split.png and /dev/null differ
diff --git a/resources/icons/split_object_SMALL.svg b/resources/icons/split_object_SMALL.svg
new file mode 100644
index 000000000..7e362c2ba
--- /dev/null
+++ b/resources/icons/split_object_SMALL.svg
@@ -0,0 +1,19 @@
+
+
+
diff --git a/resources/icons/split_parts_SMALL.svg b/resources/icons/split_parts_SMALL.svg
new file mode 100644
index 000000000..45f90bee0
--- /dev/null
+++ b/resources/icons/split_parts_SMALL.svg
@@ -0,0 +1,18 @@
+
+
+
diff --git a/resources/icons/spool.png b/resources/icons/spool.png
deleted file mode 100644
index ab06d9912..000000000
Binary files a/resources/icons/spool.png and /dev/null differ
diff --git a/resources/icons/spool.svg b/resources/icons/spool.svg
new file mode 100644
index 000000000..840365938
--- /dev/null
+++ b/resources/icons/spool.svg
@@ -0,0 +1,21 @@
+
+
+
diff --git a/resources/icons/support.svg b/resources/icons/support.svg
new file mode 100644
index 000000000..65c7592c8
--- /dev/null
+++ b/resources/icons/support.svg
@@ -0,0 +1,25 @@
+
+
+
diff --git a/resources/icons/support_blocker.png b/resources/icons/support_blocker.png
deleted file mode 100644
index 8a66c73f4..000000000
Binary files a/resources/icons/support_blocker.png and /dev/null differ
diff --git a/resources/icons/support_blocker.svg b/resources/icons/support_blocker.svg
new file mode 100644
index 000000000..56086b279
--- /dev/null
+++ b/resources/icons/support_blocker.svg
@@ -0,0 +1,48 @@
+
+
+
diff --git a/resources/icons/support_blocker_.png b/resources/icons/support_blocker_.png
deleted file mode 100644
index fc658e4f6..000000000
Binary files a/resources/icons/support_blocker_.png and /dev/null differ
diff --git a/resources/icons/support_enforcer.png b/resources/icons/support_enforcer.png
deleted file mode 100644
index c0bef8d5e..000000000
Binary files a/resources/icons/support_enforcer.png and /dev/null differ
diff --git a/resources/icons/support_enforcer.svg b/resources/icons/support_enforcer.svg
new file mode 100644
index 000000000..0f0eb4907
--- /dev/null
+++ b/resources/icons/support_enforcer.svg
@@ -0,0 +1,19 @@
+
+
+
diff --git a/resources/icons/support_enforcer_.png b/resources/icons/support_enforcer_.png
deleted file mode 100644
index ac34b6cb0..000000000
Binary files a/resources/icons/support_enforcer_.png and /dev/null differ
diff --git a/resources/icons/sys_lock.png b/resources/icons/sys_lock.png
deleted file mode 100644
index a33eadbca..000000000
Binary files a/resources/icons/sys_lock.png and /dev/null differ
diff --git a/resources/icons/sys_unlock.png b/resources/icons/sys_unlock.png
deleted file mode 100644
index d53c288a1..000000000
Binary files a/resources/icons/sys_unlock.png and /dev/null differ
diff --git a/resources/icons/sys_unlock_grey.png b/resources/icons/sys_unlock_grey.png
deleted file mode 100644
index 0dedf4dee..000000000
Binary files a/resources/icons/sys_unlock_grey.png and /dev/null differ
diff --git a/resources/icons/tag_blue.png b/resources/icons/tag_blue.png
deleted file mode 100644
index 45aebfbb1..000000000
Binary files a/resources/icons/tag_blue.png and /dev/null differ
diff --git a/resources/icons/test.svg b/resources/icons/test.svg
new file mode 100644
index 000000000..abf35d0ae
--- /dev/null
+++ b/resources/icons/test.svg
@@ -0,0 +1,37 @@
+
+
+
diff --git a/resources/icons/textfield.png b/resources/icons/textfield.png
deleted file mode 100644
index d37e7304e..000000000
Binary files a/resources/icons/textfield.png and /dev/null differ
diff --git a/resources/icons/time.png b/resources/icons/time.png
deleted file mode 100644
index 3b8d2995f..000000000
Binary files a/resources/icons/time.png and /dev/null differ
diff --git a/resources/icons/time.svg b/resources/icons/time.svg
new file mode 100644
index 000000000..5d8f23cfc
--- /dev/null
+++ b/resources/icons/time.svg
@@ -0,0 +1,16 @@
+
+
+
diff --git a/resources/icons/toolbar.png b/resources/icons/toolbar.png
deleted file mode 100644
index 581db339e..000000000
Binary files a/resources/icons/toolbar.png and /dev/null differ
diff --git a/resources/icons/toolbar141.png b/resources/icons/toolbar141.png
deleted file mode 100644
index 888b7b1f9..000000000
Binary files a/resources/icons/toolbar141.png and /dev/null differ
diff --git a/resources/icons/undo.svg b/resources/icons/undo.svg
new file mode 100644
index 000000000..fbc580d88
--- /dev/null
+++ b/resources/icons/undo.svg
@@ -0,0 +1,12 @@
+
+
+
diff --git a/resources/icons/upload_queue.svg b/resources/icons/upload_queue.svg
new file mode 100644
index 000000000..764717836
--- /dev/null
+++ b/resources/icons/upload_queue.svg
@@ -0,0 +1,29 @@
+
+
+
diff --git a/resources/icons/variable_layer_height.png b/resources/icons/variable_layer_height.png
deleted file mode 100644
index 2fbdd6920..000000000
Binary files a/resources/icons/variable_layer_height.png and /dev/null differ
diff --git a/resources/icons/view_toolbar.png b/resources/icons/view_toolbar.png
deleted file mode 100644
index 8cfb8d091..000000000
Binary files a/resources/icons/view_toolbar.png and /dev/null differ
diff --git a/resources/icons/wand.png b/resources/icons/wand.png
deleted file mode 100644
index 44ccbf812..000000000
Binary files a/resources/icons/wand.png and /dev/null differ
diff --git a/resources/icons/white/add_copies.svg b/resources/icons/white/add_copies.svg
new file mode 100644
index 000000000..17eff0179
--- /dev/null
+++ b/resources/icons/white/add_copies.svg
@@ -0,0 +1,19 @@
+
+
+
diff --git a/resources/icons/white/add_modifier.svg b/resources/icons/white/add_modifier.svg
new file mode 100644
index 000000000..09c3ce27d
--- /dev/null
+++ b/resources/icons/white/add_modifier.svg
@@ -0,0 +1,13 @@
+
+
+
diff --git a/resources/icons/white/add_part.svg b/resources/icons/white/add_part.svg
new file mode 100644
index 000000000..b7c800bbb
--- /dev/null
+++ b/resources/icons/white/add_part.svg
@@ -0,0 +1,20 @@
+
+
+
diff --git a/resources/icons/white/advanced+wrench.svg b/resources/icons/white/advanced+wrench.svg
new file mode 100644
index 000000000..5e878cb3c
--- /dev/null
+++ b/resources/icons/white/advanced+wrench.svg
@@ -0,0 +1,43 @@
+
+
+
diff --git a/resources/icons/white/advanced_plus.svg b/resources/icons/white/advanced_plus.svg
new file mode 100644
index 000000000..db532ec4b
--- /dev/null
+++ b/resources/icons/white/advanced_plus.svg
@@ -0,0 +1,24 @@
+
+
+
diff --git a/resources/icons/white/cog.svg b/resources/icons/white/cog.svg
new file mode 100644
index 000000000..773e4d65d
--- /dev/null
+++ b/resources/icons/white/cog.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/resources/icons/white/cooling.svg b/resources/icons/white/cooling.svg
new file mode 100644
index 000000000..29bd04c36
--- /dev/null
+++ b/resources/icons/white/cooling.svg
@@ -0,0 +1,25 @@
+
+
+
diff --git a/resources/icons/white/copy_menu.svg b/resources/icons/white/copy_menu.svg
new file mode 100644
index 000000000..d660aab6a
--- /dev/null
+++ b/resources/icons/white/copy_menu.svg
@@ -0,0 +1,37 @@
+
+
+
diff --git a/resources/icons/white/delete.svg b/resources/icons/white/delete.svg
new file mode 100644
index 000000000..91d5ce74c
--- /dev/null
+++ b/resources/icons/white/delete.svg
@@ -0,0 +1,22 @@
+
+
+
diff --git a/resources/icons/white/delete_all_menu.svg b/resources/icons/white/delete_all_menu.svg
new file mode 100644
index 000000000..5d825c424
--- /dev/null
+++ b/resources/icons/white/delete_all_menu.svg
@@ -0,0 +1,31 @@
+
+
+
diff --git a/resources/icons/white/editor_menu.svg b/resources/icons/white/editor_menu.svg
new file mode 100644
index 000000000..649d2c40f
--- /dev/null
+++ b/resources/icons/white/editor_menu.svg
@@ -0,0 +1,20 @@
+
+
+
diff --git a/resources/icons/white/export_config.svg b/resources/icons/white/export_config.svg
new file mode 100644
index 000000000..22f8ebe1a
--- /dev/null
+++ b/resources/icons/white/export_config.svg
@@ -0,0 +1,20 @@
+
+
+
diff --git a/resources/icons/white/export_config_bundle.svg b/resources/icons/white/export_config_bundle.svg
new file mode 100644
index 000000000..99bd62b6c
--- /dev/null
+++ b/resources/icons/white/export_config_bundle.svg
@@ -0,0 +1,50 @@
+
+
+
diff --git a/resources/icons/white/export_gcode.svg b/resources/icons/white/export_gcode.svg
new file mode 100644
index 000000000..39f5225cb
--- /dev/null
+++ b/resources/icons/white/export_gcode.svg
@@ -0,0 +1,14 @@
+
+
+
diff --git a/resources/icons/white/export_plate.svg b/resources/icons/white/export_plate.svg
new file mode 100644
index 000000000..18159d2a8
--- /dev/null
+++ b/resources/icons/white/export_plate.svg
@@ -0,0 +1,15 @@
+
+
+
diff --git a/resources/icons/white/export_plater.svg b/resources/icons/white/export_plater.svg
new file mode 100644
index 000000000..e71b38a0a
--- /dev/null
+++ b/resources/icons/white/export_plater.svg
@@ -0,0 +1,12 @@
+
+
+
diff --git a/resources/icons/white/extruder+funnel.svg b/resources/icons/white/extruder+funnel.svg
new file mode 100644
index 000000000..de6b227da
--- /dev/null
+++ b/resources/icons/white/extruder+funnel.svg
@@ -0,0 +1,15 @@
+
+
+
diff --git a/resources/icons/white/flag_green.svg b/resources/icons/white/flag_green.svg
new file mode 100644
index 000000000..8479d0e9a
--- /dev/null
+++ b/resources/icons/white/flag_green.svg
@@ -0,0 +1,10 @@
+
+
+
diff --git a/resources/icons/white/flag_red.svg b/resources/icons/white/flag_red.svg
new file mode 100644
index 000000000..a9b1cf8fe
--- /dev/null
+++ b/resources/icons/white/flag_red.svg
@@ -0,0 +1,10 @@
+
+
+
diff --git a/resources/icons/white/import_config.svg b/resources/icons/white/import_config.svg
new file mode 100644
index 000000000..001277f73
--- /dev/null
+++ b/resources/icons/white/import_config.svg
@@ -0,0 +1,25 @@
+
+
+
diff --git a/resources/icons/white/import_config_bundle.svg b/resources/icons/white/import_config_bundle.svg
new file mode 100644
index 000000000..c16cd7b3c
--- /dev/null
+++ b/resources/icons/white/import_config_bundle.svg
@@ -0,0 +1,61 @@
+
+
+
diff --git a/resources/icons/white/import_plate.svg b/resources/icons/white/import_plate.svg
new file mode 100644
index 000000000..7f888e3d7
--- /dev/null
+++ b/resources/icons/white/import_plate.svg
@@ -0,0 +1,38 @@
+
+
+
+
+
+
+
+
+
+
+]>
+
diff --git a/resources/icons/white/import_plater.svg b/resources/icons/white/import_plater.svg
new file mode 100644
index 000000000..1dc5aae6e
--- /dev/null
+++ b/resources/icons/white/import_plater.svg
@@ -0,0 +1,17 @@
+
+
+
diff --git a/resources/icons/white/infill.svg b/resources/icons/white/infill.svg
new file mode 100644
index 000000000..086043099
--- /dev/null
+++ b/resources/icons/white/infill.svg
@@ -0,0 +1,35 @@
+
+
+
diff --git a/resources/icons/white/layers.svg b/resources/icons/white/layers.svg
new file mode 100644
index 000000000..cd71fab3a
--- /dev/null
+++ b/resources/icons/white/layers.svg
@@ -0,0 +1,27 @@
+
+
+
diff --git a/resources/icons/white/lock2_closed.svg b/resources/icons/white/lock2_closed.svg
new file mode 100644
index 000000000..726c850a1
--- /dev/null
+++ b/resources/icons/white/lock2_closed.svg
@@ -0,0 +1,10 @@
+
+
+
diff --git a/resources/icons/white/lock_closed.svg b/resources/icons/white/lock_closed.svg
new file mode 100644
index 000000000..1665dc9a0
--- /dev/null
+++ b/resources/icons/white/lock_closed.svg
@@ -0,0 +1,10 @@
+
+
+
diff --git a/resources/icons/white/machine+cog.svg b/resources/icons/white/machine+cog.svg
new file mode 100644
index 000000000..ec49265b8
--- /dev/null
+++ b/resources/icons/white/machine+cog.svg
@@ -0,0 +1,30 @@
+
+
+
diff --git a/resources/icons/white/notes.svg b/resources/icons/white/notes.svg
new file mode 100644
index 000000000..25de4191e
--- /dev/null
+++ b/resources/icons/white/notes.svg
@@ -0,0 +1,25 @@
+
+
+
diff --git a/resources/icons/white/number_of_copies.svg b/resources/icons/white/number_of_copies.svg
new file mode 100644
index 000000000..7c9d78a80
--- /dev/null
+++ b/resources/icons/white/number_of_copies.svg
@@ -0,0 +1,29 @@
+
+
+
diff --git a/resources/icons/white/open.svg b/resources/icons/white/open.svg
new file mode 100644
index 000000000..0ea9ecdb2
--- /dev/null
+++ b/resources/icons/white/open.svg
@@ -0,0 +1,11 @@
+
+
+
diff --git a/resources/icons/white/output+page_white.svg b/resources/icons/white/output+page_white.svg
new file mode 100644
index 000000000..083874003
--- /dev/null
+++ b/resources/icons/white/output+page_white.svg
@@ -0,0 +1,20 @@
+
+
+
diff --git a/resources/icons/white/pad.svg b/resources/icons/white/pad.svg
new file mode 100644
index 000000000..cddb2da02
--- /dev/null
+++ b/resources/icons/white/pad.svg
@@ -0,0 +1,83 @@
+
+
+
diff --git a/resources/icons/white/paste_menu.svg b/resources/icons/white/paste_menu.svg
new file mode 100644
index 000000000..465c2faf0
--- /dev/null
+++ b/resources/icons/white/paste_menu.svg
@@ -0,0 +1,27 @@
+
+
+
diff --git a/resources/icons/white/plater.svg b/resources/icons/white/plater.svg
new file mode 100644
index 000000000..d637a5e7e
--- /dev/null
+++ b/resources/icons/white/plater.svg
@@ -0,0 +1,12 @@
+
+
+
diff --git a/resources/icons/white/preview_menu.svg b/resources/icons/white/preview_menu.svg
new file mode 100644
index 000000000..98095359c
--- /dev/null
+++ b/resources/icons/white/preview_menu.svg
@@ -0,0 +1,48 @@
+
+
+
diff --git a/resources/icons/white/printer.svg b/resources/icons/white/printer.svg
new file mode 100644
index 000000000..d94f6fd5c
--- /dev/null
+++ b/resources/icons/white/printer.svg
@@ -0,0 +1,14 @@
+
+
+
diff --git a/resources/icons/white/re_slice.svg b/resources/icons/white/re_slice.svg
new file mode 100644
index 000000000..b8d7dc727
--- /dev/null
+++ b/resources/icons/white/re_slice.svg
@@ -0,0 +1,19 @@
+
+
+
diff --git a/resources/icons/white/remove_copies.svg b/resources/icons/white/remove_copies.svg
new file mode 100644
index 000000000..5b277e45e
--- /dev/null
+++ b/resources/icons/white/remove_copies.svg
@@ -0,0 +1,15 @@
+
+
+
diff --git a/resources/icons/white/remove_menu.svg b/resources/icons/white/remove_menu.svg
new file mode 100644
index 000000000..59360a33f
--- /dev/null
+++ b/resources/icons/white/remove_menu.svg
@@ -0,0 +1,44 @@
+
+
+
diff --git a/resources/icons/white/resin.svg b/resources/icons/white/resin.svg
new file mode 100644
index 000000000..81abfae0c
--- /dev/null
+++ b/resources/icons/white/resin.svg
@@ -0,0 +1,10 @@
+
+
+
diff --git a/resources/icons/white/save.svg b/resources/icons/white/save.svg
new file mode 100644
index 000000000..3349a42dd
--- /dev/null
+++ b/resources/icons/white/save.svg
@@ -0,0 +1,25 @@
+
+
+
diff --git a/resources/icons/white/set_separate_obj.svg b/resources/icons/white/set_separate_obj.svg
new file mode 100644
index 000000000..de083c1c9
--- /dev/null
+++ b/resources/icons/white/set_separate_obj.svg
@@ -0,0 +1,29 @@
+
+
+
diff --git a/resources/icons/white/skirt+brim.svg b/resources/icons/white/skirt+brim.svg
new file mode 100644
index 000000000..684e177d2
--- /dev/null
+++ b/resources/icons/white/skirt+brim.svg
@@ -0,0 +1,15 @@
+
+
+
diff --git a/resources/icons/white/split_object_SMALL.svg b/resources/icons/white/split_object_SMALL.svg
new file mode 100644
index 000000000..4795cab51
--- /dev/null
+++ b/resources/icons/white/split_object_SMALL.svg
@@ -0,0 +1,19 @@
+
+
+
diff --git a/resources/icons/white/split_parts_SMALL.svg b/resources/icons/white/split_parts_SMALL.svg
new file mode 100644
index 000000000..eba846c17
--- /dev/null
+++ b/resources/icons/white/split_parts_SMALL.svg
@@ -0,0 +1,18 @@
+
+
+
diff --git a/resources/icons/white/spool.svg b/resources/icons/white/spool.svg
new file mode 100644
index 000000000..7c9fbab97
--- /dev/null
+++ b/resources/icons/white/spool.svg
@@ -0,0 +1,21 @@
+
+
+
diff --git a/resources/icons/white/support.svg b/resources/icons/white/support.svg
new file mode 100644
index 000000000..52b7c6b40
--- /dev/null
+++ b/resources/icons/white/support.svg
@@ -0,0 +1,94 @@
+
+
+
diff --git a/resources/icons/white/support_blocker.svg b/resources/icons/white/support_blocker.svg
new file mode 100644
index 000000000..17401e2ab
--- /dev/null
+++ b/resources/icons/white/support_blocker.svg
@@ -0,0 +1,48 @@
+
+
+
diff --git a/resources/icons/white/support_enforcer.svg b/resources/icons/white/support_enforcer.svg
new file mode 100644
index 000000000..0de2dc6a7
--- /dev/null
+++ b/resources/icons/white/support_enforcer.svg
@@ -0,0 +1,19 @@
+
+
+
diff --git a/resources/icons/white/test.svg b/resources/icons/white/test.svg
new file mode 100644
index 000000000..639bbbde8
--- /dev/null
+++ b/resources/icons/white/test.svg
@@ -0,0 +1,37 @@
+
+
+
diff --git a/resources/icons/white/time.svg b/resources/icons/white/time.svg
new file mode 100644
index 000000000..d014286b5
--- /dev/null
+++ b/resources/icons/white/time.svg
@@ -0,0 +1,16 @@
+
+
+
diff --git a/resources/icons/white/upload_queue.svg b/resources/icons/white/upload_queue.svg
new file mode 100644
index 000000000..710e2be89
--- /dev/null
+++ b/resources/icons/white/upload_queue.svg
@@ -0,0 +1,29 @@
+
+
+
diff --git a/resources/icons/white/wrench.svg b/resources/icons/white/wrench.svg
new file mode 100644
index 000000000..714c5a82a
--- /dev/null
+++ b/resources/icons/white/wrench.svg
@@ -0,0 +1,20 @@
+
+
+
diff --git a/resources/icons/wrench.png b/resources/icons/wrench.png
deleted file mode 100644
index 4dc553cdd..000000000
Binary files a/resources/icons/wrench.png and /dev/null differ
diff --git a/resources/icons/wrench.svg b/resources/icons/wrench.svg
new file mode 100644
index 000000000..5266ec1eb
--- /dev/null
+++ b/resources/icons/wrench.svg
@@ -0,0 +1,43 @@
+
+
+
diff --git a/resources/icons/wrench_white.svg b/resources/icons/wrench_white.svg
new file mode 100644
index 000000000..714c5a82a
--- /dev/null
+++ b/resources/icons/wrench_white.svg
@@ -0,0 +1,20 @@
+
+
+
diff --git a/resources/icons/zoom.png b/resources/icons/zoom.png
deleted file mode 100644
index 908612e39..000000000
Binary files a/resources/icons/zoom.png and /dev/null differ
diff --git a/resources/localization/Slic3rPE.pot b/resources/localization/PrusaSlicer.pot
similarity index 50%
rename from resources/localization/Slic3rPE.pot
rename to resources/localization/PrusaSlicer.pot
index c8ec2f4ac..e453150b8 100644
--- a/resources/localization/Slic3rPE.pot
+++ b/resources/localization/PrusaSlicer.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-17 13:39+0100\n"
+"POT-Creation-Date: 2019-05-13 15:02+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME \n"
"Language-Team: LANGUAGE \n"
@@ -17,485 +17,576 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-#: src/slic3r/GUI/AboutDialog.cpp:33
-msgid "About Slic3r"
+#: src/slic3r/GUI/AboutDialog.cpp:35
+#, possible-c-format
+msgid "About %s"
msgstr ""
-#: src/slic3r/GUI/AboutDialog.cpp:68 src/slic3r/GUI/MainFrame.cpp:51
+#: src/slic3r/GUI/AboutDialog.cpp:67 src/slic3r/GUI/MainFrame.cpp:59
msgid "Version"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:43
+#: src/slic3r/GUI/AboutDialog.cpp:92
+msgid "Copyright"
+msgstr ""
+
+#. TRN "Slic3r _is licensed under the_ License"
+#: src/slic3r/GUI/AboutDialog.cpp:94
+msgid "is licensed under the"
+msgstr ""
+
+#: src/slic3r/GUI/AboutDialog.cpp:95
+msgid "GNU Affero General Public License, version 3"
+msgstr ""
+
+#: src/slic3r/GUI/AboutDialog.cpp:96
+msgid ""
+"Contributions by Henrik Brix Andersen, Nicolas Dandrimont, Mark Hindess, "
+"Petr Ledvina, Joseph Lenox, Y. Sapir, Mike Sheldrake, Vojtech Bubnik and "
+"numerous others."
+msgstr ""
+
+#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:84
+#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:400
+msgid "Copying of the temporary G-code to the output G-code failed"
+msgstr ""
+
+#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:85
+#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:398
+msgid "Running post-processing scripts"
+msgstr ""
+
+#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:87
+msgid "G-code file exported to %1%"
+msgstr ""
+
+#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:91
+#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:109
+msgid "Slicing complete"
+msgstr ""
+
+#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:105
+msgid "Masked SLA file exported to %1%"
+msgstr ""
+
+#: src/slic3r/GUI/BackgroundSlicingProcess.cpp:409
+msgid "Scheduling upload to `%1%`. See Window -> Print Host Upload Queue"
+msgstr ""
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:60
msgid "Shape"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:50
+#: src/slic3r/GUI/BedShapeDialog.cpp:68
msgid "Rectangular"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:54
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:207 src/slic3r/GUI/Plater.cpp:125
-#: src/slic3r/GUI/Tab.cpp:2122
+#: src/slic3r/GUI/BedShapeDialog.cpp:72
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:232 src/slic3r/GUI/Plater.cpp:137
+#: src/slic3r/GUI/Tab.cpp:2263
msgid "Size"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:55
+#: src/slic3r/GUI/BedShapeDialog.cpp:73
msgid "Size in X and Y of the rectangular plate."
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:61
+#: src/slic3r/GUI/BedShapeDialog.cpp:79
msgid "Origin"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:62
+#: src/slic3r/GUI/BedShapeDialog.cpp:80
msgid ""
"Distance of the 0,0 G-code coordinate from the front left corner of the "
"rectangle."
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:66
+#: src/slic3r/GUI/BedShapeDialog.cpp:84
msgid "Circular"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:69 src/slic3r/GUI/ConfigWizard.cpp:92
-#: src/slic3r/GUI/ConfigWizard.cpp:456 src/slic3r/GUI/ConfigWizard.cpp:470
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:80
-#: src/libslic3r/PrintConfig.cpp:50 src/libslic3r/PrintConfig.cpp:58
-#: src/libslic3r/PrintConfig.cpp:180 src/libslic3r/PrintConfig.cpp:254
-#: src/libslic3r/PrintConfig.cpp:263 src/libslic3r/PrintConfig.cpp:315
-#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:448
-#: src/libslic3r/PrintConfig.cpp:460 src/libslic3r/PrintConfig.cpp:480
-#: src/libslic3r/PrintConfig.cpp:679 src/libslic3r/PrintConfig.cpp:1178
-#: src/libslic3r/PrintConfig.cpp:1243 src/libslic3r/PrintConfig.cpp:1263
-#: src/libslic3r/PrintConfig.cpp:1283 src/libslic3r/PrintConfig.cpp:1365
-#: src/libslic3r/PrintConfig.cpp:1376 src/libslic3r/PrintConfig.cpp:1499
-#: src/libslic3r/PrintConfig.cpp:1508 src/libslic3r/PrintConfig.cpp:1554
-#: src/libslic3r/PrintConfig.cpp:1563 src/libslic3r/PrintConfig.cpp:1574
-#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1592
-#: src/libslic3r/PrintConfig.cpp:1682 src/libslic3r/PrintConfig.cpp:1918
-#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2031
-#: src/libslic3r/PrintConfig.cpp:2241 src/libslic3r/PrintConfig.cpp:2249
-#: src/libslic3r/PrintConfig.cpp:2257 src/libslic3r/PrintConfig.cpp:2291
-#: src/libslic3r/PrintConfig.cpp:2302 src/libslic3r/PrintConfig.cpp:2313
-#: src/libslic3r/PrintConfig.cpp:2321 src/libslic3r/PrintConfig.cpp:2328
-#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2497
-#: src/libslic3r/PrintConfig.cpp:2506 src/libslic3r/PrintConfig.cpp:2515
-#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2560
-#: src/libslic3r/PrintConfig.cpp:2569 src/libslic3r/PrintConfig.cpp:2587
-#: src/libslic3r/PrintConfig.cpp:2596 src/libslic3r/PrintConfig.cpp:2623
-#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2648
-#: src/libslic3r/PrintConfig.cpp:2657 src/libslic3r/PrintConfig.cpp:2666
+#: src/slic3r/GUI/BedShapeDialog.cpp:87 src/slic3r/GUI/ConfigWizard.cpp:118
+#: src/slic3r/GUI/ConfigWizard.cpp:565 src/slic3r/GUI/ConfigWizard.cpp:579
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:229
+#: src/slic3r/GUI/WipeTowerDialog.cpp:84 src/libslic3r/PrintConfig.cpp:60
+#: src/libslic3r/PrintConfig.cpp:67 src/libslic3r/PrintConfig.cpp:76
+#: src/libslic3r/PrintConfig.cpp:211 src/libslic3r/PrintConfig.cpp:286
+#: src/libslic3r/PrintConfig.cpp:294 src/libslic3r/PrintConfig.cpp:344
+#: src/libslic3r/PrintConfig.cpp:354 src/libslic3r/PrintConfig.cpp:474
+#: src/libslic3r/PrintConfig.cpp:485 src/libslic3r/PrintConfig.cpp:503
+#: src/libslic3r/PrintConfig.cpp:681 src/libslic3r/PrintConfig.cpp:1191
+#: src/libslic3r/PrintConfig.cpp:1252 src/libslic3r/PrintConfig.cpp:1270
+#: src/libslic3r/PrintConfig.cpp:1288 src/libslic3r/PrintConfig.cpp:1340
+#: src/libslic3r/PrintConfig.cpp:1350 src/libslic3r/PrintConfig.cpp:1471
+#: src/libslic3r/PrintConfig.cpp:1479 src/libslic3r/PrintConfig.cpp:1520
+#: src/libslic3r/PrintConfig.cpp:1528 src/libslic3r/PrintConfig.cpp:1538
+#: src/libslic3r/PrintConfig.cpp:1546 src/libslic3r/PrintConfig.cpp:1554
+#: src/libslic3r/PrintConfig.cpp:1637 src/libslic3r/PrintConfig.cpp:1853
+#: src/libslic3r/PrintConfig.cpp:1923 src/libslic3r/PrintConfig.cpp:1957
+#: src/libslic3r/PrintConfig.cpp:2150 src/libslic3r/PrintConfig.cpp:2157
+#: src/libslic3r/PrintConfig.cpp:2164 src/libslic3r/PrintConfig.cpp:2194
+#: src/libslic3r/PrintConfig.cpp:2204 src/libslic3r/PrintConfig.cpp:2214
+#: src/libslic3r/PrintConfig.cpp:2322 src/libslic3r/PrintConfig.cpp:2397
+#: src/libslic3r/PrintConfig.cpp:2406 src/libslic3r/PrintConfig.cpp:2415
+#: src/libslic3r/PrintConfig.cpp:2425 src/libslic3r/PrintConfig.cpp:2469
+#: src/libslic3r/PrintConfig.cpp:2479 src/libslic3r/PrintConfig.cpp:2498
+#: src/libslic3r/PrintConfig.cpp:2508 src/libslic3r/PrintConfig.cpp:2517
+#: src/libslic3r/PrintConfig.cpp:2535 src/libslic3r/PrintConfig.cpp:2550
+#: src/libslic3r/PrintConfig.cpp:2564 src/libslic3r/PrintConfig.cpp:2577
+#: src/libslic3r/PrintConfig.cpp:2587
msgid "mm"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:70 src/libslic3r/PrintConfig.cpp:676
+#: src/slic3r/GUI/BedShapeDialog.cpp:88 src/libslic3r/PrintConfig.cpp:678
msgid "Diameter"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:71
+#: src/slic3r/GUI/BedShapeDialog.cpp:89
msgid ""
"Diameter of the print bed. It is assumed that origin (0,0) is located in the "
"center."
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:75 src/slic3r/GUI/GUI_Preview.cpp:265
+#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/slic3r/GUI/GUI_Preview.cpp:239
#: src/libslic3r/GCode/PreviewData.cpp:175
msgid "Custom"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:79
+#: src/slic3r/GUI/BedShapeDialog.cpp:97
msgid "Load shape from STL..."
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:125
+#: src/slic3r/GUI/BedShapeDialog.cpp:143
msgid "Settings"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:298
+#: src/slic3r/GUI/BedShapeDialog.cpp:316
msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:315 src/slic3r/GUI/GUI_ObjectList.cpp:835
-msgid "Error! "
+#: src/slic3r/GUI/BedShapeDialog.cpp:333 src/slic3r/GUI/GUI_ObjectList.cpp:1438
+msgid "Error!"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:324
+#: src/slic3r/GUI/BedShapeDialog.cpp:342
msgid "The selected file contains no geometry."
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:328
+#: src/slic3r/GUI/BedShapeDialog.cpp:346
msgid ""
"The selected file contains several disjoint areas. This is not supported."
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.hpp:44 src/slic3r/GUI/ConfigWizard.cpp:419
+#: src/slic3r/GUI/BedShapeDialog.hpp:45 src/slic3r/GUI/ConfigWizard.cpp:530
msgid "Bed Shape"
msgstr ""
-#: src/slic3r/GUI/BonjourDialog.cpp:54
+#: src/slic3r/GUI/BonjourDialog.cpp:55
msgid "Network lookup"
msgstr ""
-#: src/slic3r/GUI/BonjourDialog.cpp:67
+#: src/slic3r/GUI/BonjourDialog.cpp:72
msgid "Address"
msgstr ""
-#: src/slic3r/GUI/BonjourDialog.cpp:68
+#: src/slic3r/GUI/BonjourDialog.cpp:73
msgid "Hostname"
msgstr ""
-#: src/slic3r/GUI/BonjourDialog.cpp:69
+#: src/slic3r/GUI/BonjourDialog.cpp:74
msgid "Service name"
msgstr ""
-#: src/slic3r/GUI/BonjourDialog.cpp:70
+#: src/slic3r/GUI/BonjourDialog.cpp:76
msgid "OctoPrint version"
msgstr ""
-#: src/slic3r/GUI/BonjourDialog.cpp:188
+#: src/slic3r/GUI/BonjourDialog.cpp:218
msgid "Searching for devices"
msgstr ""
-#: src/slic3r/GUI/BonjourDialog.cpp:195
+#: src/slic3r/GUI/BonjourDialog.cpp:225
msgid "Finished"
msgstr ""
-#: src/slic3r/GUI/ButtonsDescription.cpp:15
+#: src/slic3r/GUI/ButtonsDescription.cpp:16
msgid "Buttons And Text Colors Description"
msgstr ""
-#: src/slic3r/GUI/ButtonsDescription.cpp:40
+#: src/slic3r/GUI/ButtonsDescription.cpp:36
msgid "Value is the same as the system value"
msgstr ""
-#: src/slic3r/GUI/ButtonsDescription.cpp:57
+#: src/slic3r/GUI/ButtonsDescription.cpp:53
msgid ""
"Value was changed and is not equal to the system value or the last saved "
"preset"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:16
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:18
msgid "Upgrade"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:18
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:20
msgid "Downgrade"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:20
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:22
msgid "Before roll back"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:22
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:24
msgid "User"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:25
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:27
msgid "Unknown"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:37
-msgid "Active: "
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43
-msgid "slic3r version"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:44 src/slic3r/GUI/Preset.cpp:1156
-msgid "print"
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:39
+msgid "Active"
msgstr ""
#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:45
+msgid "slic3r version"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1274
+msgid "print"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:47
msgid "filaments"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1160
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:48 src/slic3r/GUI/Preset.cpp:1278
msgid "printer"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 src/slic3r/GUI/Tab.cpp:838
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 src/slic3r/GUI/Tab.cpp:932
msgid "vendor"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52
msgid "version"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53
msgid "min slic3r version"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:55
msgid "max slic3r version"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58
msgid "model"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58
msgid "variants"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68
-msgid "Incompatible with this Slic3r"
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:70
+#, possible-c-format
+msgid "Incompatible with this %s"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:73
msgid "Activate"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:97
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:99
msgid "Configuration Snapshots"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:92
+#: src/slic3r/GUI/ConfigWizard.cpp:118
msgid "nozzle"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:93
-msgid "default"
+#: src/slic3r/GUI/ConfigWizard.cpp:122
+msgid "Alternate nozzles:"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:116
-msgid "Select all"
+#: src/slic3r/GUI/ConfigWizard.cpp:188
+msgid "All standard"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:117
-msgid "Select none"
+#: src/slic3r/GUI/ConfigWizard.cpp:189 src/slic3r/GUI/Tab.cpp:3007
+msgid "All"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:226
+#: src/slic3r/GUI/ConfigWizard.cpp:190 src/slic3r/GUI/Plater.cpp:433
+#: src/libslic3r/GCode/PreviewData.cpp:162
+msgid "None"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:296
#, possible-c-format
-msgid "Welcome to the Slic3r %s"
+msgid "Welcome to the %s Configuration Assistant"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:226
+#: src/slic3r/GUI/ConfigWizard.cpp:298
+#, possible-c-format
+msgid "Welcome to the %s Configuration Wizard"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:300
msgid "Welcome"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:232 src/slic3r/GUI/GUI_App.cpp:606
+#: src/slic3r/GUI/ConfigWizard.cpp:304 src/slic3r/GUI/GUI_App.cpp:707
#, possible-c-format
msgid "Run %s"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:234
+#: src/slic3r/GUI/ConfigWizard.cpp:306
#, possible-c-format
msgid ""
-"Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial "
-"configuration; just a few settings and you will be ready to print."
+"Hello, welcome to %s! This %s helps you with the initial configuration; just "
+"a few settings and you will be ready to print."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:238
+#: src/slic3r/GUI/ConfigWizard.cpp:311
msgid ""
"Remove user profiles - install from scratch (a snapshot will be taken "
"beforehand)"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:263
-msgid "Other vendors"
+#: src/slic3r/GUI/ConfigWizard.cpp:342
+#, possible-c-format
+msgid "%s Family"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:265
-msgid "Custom setup"
+#: src/slic3r/GUI/ConfigWizard.cpp:379
+msgid "Custom Printer Setup"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:289
+#: src/slic3r/GUI/ConfigWizard.cpp:379
+msgid "Custom Printer"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:381
+msgid "Define a custom printer profile"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:383
+msgid "Custom profile name:"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:407
msgid "Automatic updates"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:289
+#: src/slic3r/GUI/ConfigWizard.cpp:407
msgid "Updates"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:297 src/slic3r/GUI/Preferences.cpp:59
+#: src/slic3r/GUI/ConfigWizard.cpp:415 src/slic3r/GUI/Preferences.cpp:61
msgid "Check for application updates"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:300 src/slic3r/GUI/Preferences.cpp:61
+#: src/slic3r/GUI/ConfigWizard.cpp:419
+#, possible-c-format
msgid ""
-"If enabled, Slic3r checks for new versions of Slic3r PE online. When a new "
-"version becomes available a notification is displayed at the next "
+"If enabled, %s checks for new application versions online. When a new "
+"version becomes available, a notification is displayed at the next "
"application startup (never during program usage). This is only a "
"notification mechanisms, no automatic installation is done."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:304 src/slic3r/GUI/Preferences.cpp:67
+#: src/slic3r/GUI/ConfigWizard.cpp:425 src/slic3r/GUI/Preferences.cpp:69
msgid "Update built-in Presets automatically"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:307 src/slic3r/GUI/Preferences.cpp:69
+#: src/slic3r/GUI/ConfigWizard.cpp:429
+#, possible-c-format
msgid ""
-"If enabled, Slic3r downloads updates of built-in system presets in the "
-"background. These updates are downloaded into a separate temporary location. "
+"If enabled, %s downloads updates of built-in system presets in the "
+"background.These updates are downloaded into a separate temporary location."
"When a new preset version becomes available it is offered at application "
"startup."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:308
+#: src/slic3r/GUI/ConfigWizard.cpp:432
msgid ""
"Updates are never applied without user's consent and never overwrite user's "
"customized settings."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:313
+#: src/slic3r/GUI/ConfigWizard.cpp:437
msgid ""
"Additionally a backup snapshot of the whole configuration is created before "
"an update is applied."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:320
+#: src/slic3r/GUI/ConfigWizard.cpp:444
msgid "Other Vendors"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:322
-msgid "Pick another vendor supported by Slic3r PE:"
+#: src/slic3r/GUI/ConfigWizard.cpp:446
+#, possible-c-format
+msgid "Pick another vendor supported by %s:"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:381
+#: src/slic3r/GUI/ConfigWizard.cpp:492
msgid "Firmware Type"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:381 src/slic3r/GUI/Tab.cpp:1820
+#: src/slic3r/GUI/ConfigWizard.cpp:492 src/slic3r/GUI/Tab.cpp:1926
msgid "Firmware"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:385
+#: src/slic3r/GUI/ConfigWizard.cpp:496
msgid "Choose the type of firmware used by your printer."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:419
+#: src/slic3r/GUI/ConfigWizard.cpp:530
msgid "Bed Shape and Size"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:422
+#: src/slic3r/GUI/ConfigWizard.cpp:533
msgid "Set the shape of your printer's bed."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:436
+#: src/slic3r/GUI/ConfigWizard.cpp:547
msgid "Filament and Nozzle Diameters"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:436
+#: src/slic3r/GUI/ConfigWizard.cpp:547
msgid "Print Diameters"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:452
+#: src/slic3r/GUI/ConfigWizard.cpp:561
msgid "Enter the diameter of your printer's hot end nozzle."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:455
+#: src/slic3r/GUI/ConfigWizard.cpp:564
msgid "Nozzle Diameter:"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:465
+#: src/slic3r/GUI/ConfigWizard.cpp:574
msgid "Enter the diameter of your filament."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:466
+#: src/slic3r/GUI/ConfigWizard.cpp:575
msgid ""
"Good precision is required, so use a caliper and do multiple measurements "
"along the filament, then compute the average."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:469
+#: src/slic3r/GUI/ConfigWizard.cpp:578
msgid "Filament Diameter:"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:487
+#: src/slic3r/GUI/ConfigWizard.cpp:596
msgid "Extruder and Bed Temperatures"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:487
+#: src/slic3r/GUI/ConfigWizard.cpp:596
msgid "Temperatures"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:503
+#: src/slic3r/GUI/ConfigWizard.cpp:612
msgid "Enter the temperature needed for extruding your filament."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:504
+#: src/slic3r/GUI/ConfigWizard.cpp:613
msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:507
+#: src/slic3r/GUI/ConfigWizard.cpp:616
msgid "Extrusion Temperature:"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:508 src/slic3r/GUI/ConfigWizard.cpp:522
+#: src/slic3r/GUI/ConfigWizard.cpp:617 src/slic3r/GUI/ConfigWizard.cpp:631
msgid "°C"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:517
+#: src/slic3r/GUI/ConfigWizard.cpp:626
msgid ""
"Enter the bed temperature needed for getting your filament to stick to your "
"heated bed."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:518
+#: src/slic3r/GUI/ConfigWizard.cpp:627
msgid ""
"A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have "
"no heated bed."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:521
+#: src/slic3r/GUI/ConfigWizard.cpp:630
msgid "Bed Temperature:"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:833
+#: src/slic3r/GUI/ConfigWizard.cpp:1093
+msgid "Select all standard printers"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1096
msgid "< &Back"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:834
+#: src/slic3r/GUI/ConfigWizard.cpp:1097
msgid "&Next >"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:835
+#: src/slic3r/GUI/ConfigWizard.cpp:1098
msgid "&Finish"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:906
-msgid "Configuration Wizard"
+#: src/slic3r/GUI/ConfigWizard.cpp:1099 src/slic3r/GUI/FirmwareDialog.cpp:147
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:37
+#: src/slic3r/GUI/ProgressStatusBar.cpp:28
+msgid "Cancel"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:907
-msgid "Configuration &Wizard"
+#: src/slic3r/GUI/ConfigWizard.cpp:1113
+msgid "Prusa FFF Technology Printers"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:909
+#: src/slic3r/GUI/ConfigWizard.cpp:1116
+msgid "Prusa MSLA Technology Printers"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1185
msgid "Configuration Assistant"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:910
+#: src/slic3r/GUI/ConfigWizard.cpp:1186
msgid "Configuration &Assistant"
msgstr ""
-#: src/slic3r/GUI/Field.cpp:109
+#: src/slic3r/GUI/ConfigWizard.cpp:1188
+msgid "Configuration Wizard"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1189
+msgid "Configuration &Wizard"
+msgstr ""
+
+#: src/slic3r/GUI/Field.cpp:117
msgid "default value"
msgstr ""
-#: src/slic3r/GUI/Field.cpp:112
+#: src/slic3r/GUI/Field.cpp:120
msgid "parameter name"
msgstr ""
-#: src/slic3r/GUI/Field.cpp:140
+#: src/slic3r/GUI/Field.cpp:148
#, possible-c-format
msgid "%s doesn't support percentage"
msgstr ""
-#: src/slic3r/GUI/Field.cpp:148 src/slic3r/GUI/Field.cpp:168
-msgid ""
-"Input value contains incorrect symbol(s).\n"
-"Use, please, only digits"
+#: src/slic3r/GUI/Field.cpp:162 src/slic3r/GUI/Field.cpp:185
+msgid "Invalid numeric input."
msgstr ""
-#: src/slic3r/GUI/Field.cpp:153
+#: src/slic3r/GUI/Field.cpp:167
msgid "Input value is out of range"
msgstr ""
-#: src/slic3r/GUI/Field.cpp:176
+#: src/slic3r/GUI/Field.cpp:193
#, possible-c-format
msgid ""
"Do you mean %d%% instead of %d %s?\n"
@@ -503,40 +594,35 @@ msgid ""
"or NO if you are sure that %d %s is a correct value."
msgstr ""
-#: src/slic3r/GUI/Field.cpp:179
+#: src/slic3r/GUI/Field.cpp:196
msgid "Parameter validation"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:133
+#: src/slic3r/GUI/FirmwareDialog.cpp:146
msgid "Flash!"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:134 src/slic3r/GUI/GLGizmo.cpp:2270
-msgid "Cancel"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:135
+#: src/slic3r/GUI/FirmwareDialog.cpp:148
msgid "Flashing in progress. Please do not disconnect the printer!"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:245
+#: src/slic3r/GUI/FirmwareDialog.cpp:192
+msgid "Flashing failed"
+msgstr ""
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:273
msgid "Flashing succeeded!"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:246
+#: src/slic3r/GUI/FirmwareDialog.cpp:274
msgid "Flashing failed. Please see the avrdude log below."
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:247
+#: src/slic3r/GUI/FirmwareDialog.cpp:275
msgid "Flashing cancelled."
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:279
-#, possible-c-format
-msgid "Flashing failed: %s"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:293
+#: src/slic3r/GUI/FirmwareDialog.cpp:313
#, possible-c-format
msgid ""
"This firmware hex file does not match the printer model.\n"
@@ -547,2013 +633,2615 @@ msgid ""
"Please only continue if you are sure this is the right thing to do."
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:380 src/slic3r/GUI/FirmwareDialog.cpp:414
+#: src/slic3r/GUI/FirmwareDialog.cpp:400 src/slic3r/GUI/FirmwareDialog.cpp:436
+#, possible-c-format
msgid ""
-"Multiple Original Prusa i3 MMU 2.0 devices found. Please only connect one at "
-"a time for flashing."
+"Multiple %s devices found. Please only connect one at a time for flashing."
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:508
-msgid "The device could not have been found"
+#: src/slic3r/GUI/FirmwareDialog.cpp:417
+#, possible-c-format
+msgid ""
+"The %s device was not found.\n"
+"If the device is connected, please press the Reset button next to the USB "
+"connector ..."
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:581
+#: src/slic3r/GUI/FirmwareDialog.cpp:530
+#, possible-c-format
+msgid "The %s device could not have been found"
+msgstr ""
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:608
#, possible-c-format
msgid "Error accessing port at %s: %s"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:690
+#: src/slic3r/GUI/FirmwareDialog.cpp:610
+#, possible-c-format
+msgid "Error: %s"
+msgstr ""
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:740
msgid "Firmware flasher"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:712
+#: src/slic3r/GUI/FirmwareDialog.cpp:765
msgid "Firmware image:"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:716
+#: src/slic3r/GUI/FirmwareDialog.cpp:768 src/slic3r/GUI/Tab.cpp:1687
+#: src/slic3r/GUI/Tab.cpp:1743
+msgid "Browse"
+msgstr ""
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:770
msgid "Serial port:"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:718
+#: src/slic3r/GUI/FirmwareDialog.cpp:772
msgid "Autodetected"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:719
+#: src/slic3r/GUI/FirmwareDialog.cpp:773
msgid "Rescan"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:726
+#: src/slic3r/GUI/FirmwareDialog.cpp:780
msgid "Progress:"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:729
+#: src/slic3r/GUI/FirmwareDialog.cpp:783
msgid "Status:"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:730
+#: src/slic3r/GUI/FirmwareDialog.cpp:784
msgid "Ready"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:750
-msgid "Advanced: avrdude output log"
+#: src/slic3r/GUI/FirmwareDialog.cpp:804
+msgid "Advanced: Output log"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:809
+#: src/slic3r/GUI/FirmwareDialog.cpp:815
+#: src/slic3r/GUI/PrintHostDialogs.cpp:160
+msgid "Close"
+msgstr ""
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:863
msgid ""
"Are you sure you want to cancel firmware flashing?\n"
"This could leave your printer in an unusable state!"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:810
+#: src/slic3r/GUI/FirmwareDialog.cpp:864
msgid "Confirmation"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:813
+#: src/slic3r/GUI/FirmwareDialog.cpp:867
msgid "Cancelling..."
msgstr ""
-#: src/slic3r/GUI/GLCanvas3D.cpp:4640
-msgid "Detected object outside print volume"
+#: src/slic3r/GUI/GLCanvas3D.cpp:720
+msgid "An object outside the print area was detected"
msgstr ""
-#: src/slic3r/GUI/GLCanvas3D.cpp:7962
-msgid "Detected toolpath outside print volume"
+#: src/slic3r/GUI/GLCanvas3D.cpp:721
+msgid "A toolpath outside the print area was detected"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:751 src/slic3r/GUI/GUI_ObjectManipulation.cpp:300
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:322
-#: src/libslic3r/PrintConfig.cpp:3087
-msgid "Rotate"
+#: src/slic3r/GUI/GLCanvas3D.cpp:722
+msgid "SLA supports outside the print area were detected"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:785
-msgid "Rotation (deg)"
+#: src/slic3r/GUI/GLCanvas3D.cpp:723
+msgid "Some objects are not visible when editing supports"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:841 src/slic3r/GUI/GUI_ObjectManipulation.cpp:206
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:301
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:323
-#: src/libslic3r/PrintConfig.cpp:3111
-msgid "Scale"
+#: src/slic3r/GUI/GLCanvas3D.cpp:725
+msgid ""
+"An object outside the print area was detected\n"
+"Resolve the current problem to continue slicing"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:1072
-msgid "Scale (%)"
+#: src/slic3r/GUI/GLCanvas3D.cpp:1694
+msgid "Last frame"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:1200
-msgid "Move"
+#: src/slic3r/GUI/GLCanvas3D.cpp:1698
+msgid "ms"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Position (mm)"
+#: src/slic3r/GUI/GLCanvas3D.cpp:3434
+msgid "Add..."
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Displacement (mm)"
+#: src/slic3r/GUI/GLCanvas3D.cpp:3444 src/slic3r/GUI/GUI_ObjectList.cpp:1267
+#: src/slic3r/GUI/Plater.cpp:2933 src/slic3r/GUI/Plater.cpp:2951
+#: src/slic3r/GUI/Tab.cpp:2957
+msgid "Delete"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:1430
-msgid "Place on face"
+#: src/slic3r/GUI/GLCanvas3D.cpp:3455 src/slic3r/GUI/Plater.cpp:3341
+msgid "Delete all"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2207
-msgid "Left mouse click - add point"
+#: src/slic3r/GUI/GLCanvas3D.cpp:3466 src/slic3r/GUI/KBShortcutsDialog.cpp:135
+msgid "Arrange"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2208
-msgid "Right mouse click - remove point"
+#: src/slic3r/GUI/GLCanvas3D.cpp:3480
+msgid "Copy"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2211
-msgid "Generate points automatically"
+#: src/slic3r/GUI/GLCanvas3D.cpp:3491
+msgid "Paste"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2212
-msgid "Remove all points"
+#: src/slic3r/GUI/GLCanvas3D.cpp:3505
+msgid "Add instance"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2245
-msgid "SLA Support Points"
+#: src/slic3r/GUI/GLCanvas3D.cpp:3517
+msgid "Remove instance"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2268 src/slic3r/GUI/GLGizmo.cpp:2468
+#: src/slic3r/GUI/GLCanvas3D.cpp:3532
+msgid "Split to objects"
+msgstr ""
+
+#: src/slic3r/GUI/GLCanvas3D.cpp:3544 src/slic3r/GUI/GUI_ObjectList.cpp:1122
+msgid "Split to parts"
+msgstr ""
+
+#: src/slic3r/GUI/GLCanvas3D.cpp:3559
+msgid "Layers editing"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:35
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:195
msgid "Rotate lower part upwards"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2269 src/slic3r/GUI/GLGizmo.cpp:2470
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:36
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:198
msgid "Perform cut"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2276
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:43
msgid "Cut object:"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2356 src/slic3r/GUI/GLGizmo.cpp:2461
-#: src/libslic3r/PrintConfig.cpp:3016
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:88
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 src/libslic3r/PrintConfig.cpp:3039
msgid "Cut"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2466
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:193
msgid "Keep upper part"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2467
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:194
msgid "Keep lower part"
msgstr ""
-#: src/slic3r/GUI/GUI.cpp:242
-msgid "Notice"
+#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:32
+msgid "Place on face"
msgstr ""
-#: src/slic3r/GUI/GUI.cpp:248
-msgid "Attempt to free unreferenced scalar"
+#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:51
+msgid "Move"
msgstr ""
-#: src/slic3r/GUI/GUI.cpp:250 src/slic3r/GUI/WipeTowerDialog.cpp:40
-#: src/slic3r/GUI/WipeTowerDialog.cpp:322
+#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177
+msgid "Position (mm)"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177
+msgid "Displacement (mm)"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:458
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:305
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:324
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:342
+#: src/libslic3r/PrintConfig.cpp:3088
+msgid "Rotate"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:491
+msgid "Rotation (deg)"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:51
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:231
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:325
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:343
+#: src/libslic3r/PrintConfig.cpp:3103
+msgid "Scale"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:276
+msgid "Scale (%)"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:840
+msgid "Head diameter"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:853
+msgid "Lock supports under new islands"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:857
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1239
+msgid "Remove selected points"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:861
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:914
+msgid "Remove all points"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:866
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1242
+msgid "Apply changes"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:871
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1243
+msgid "Discard changes"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:879
+msgid "Minimal points distance"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:890
+#: src/libslic3r/PrintConfig.cpp:2524
+msgid "Support points density"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:904
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1245
+msgid "Auto-generate points"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:910
+msgid "Manual editing"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:928
+msgid "Clipping of view"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:930
+msgid "Reset direction"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:997
+msgid "SLA Support Points"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1024
+msgid "Do you want to save your manually edited support points?"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1025
+msgid "Save changes?"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1168
+msgid ""
+"Autogeneration will erase all manually edited points.\n"
+"\n"
+"Are you sure you want to do it?\n"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1170 src/slic3r/GUI/GUI.cpp:283
+#: src/slic3r/GUI/WipeTowerDialog.cpp:44 src/slic3r/GUI/WipeTowerDialog.cpp:328
msgid "Warning"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:377
-msgid "Choose one file (3MF):"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1202
+msgid "SLA gizmo keyboard shortcuts"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:389
-msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1213
+msgid "Note: some shortcuts work in (non)editing mode only."
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:451
-msgid "Array of language names and identifiers should have the same size."
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235
+msgid "Left click"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:461
-msgid "Select the language"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231
+msgid "Add point"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:461
-msgid "Language"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232
+msgid "Right click"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:529 src/libslic3r/PrintConfig.cpp:270
-msgid "Default"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232
+msgid "Remove point"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:609
-msgid "&Configuration Snapshots"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237
+msgid "Drag"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:609
-msgid "Inspect / activate configuration snapshots"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233
+msgid "Move point"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:610
-msgid "Take Configuration &Snapshot"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234
+msgid "Add point to selection"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:610
-msgid "Capture a configuration snapshot"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235
+msgid "Remove point from selection"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:613
-msgid "&Preferences"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236
+msgid "Select by rectangle"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:613
-msgid "Application preferences"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237
+msgid "Deselect by rectangle"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:616
-msgid "Simple"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1238
+msgid "Select all points"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:616
-msgid "Simple View Mode"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240
+msgid "Mouse wheel"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:617 src/slic3r/GUI/GUI_ObjectList.cpp:39
-#: src/slic3r/GUI/Tab.cpp:948 src/slic3r/GUI/Tab.cpp:962
-#: src/slic3r/GUI/Tab.cpp:1058 src/slic3r/GUI/Tab.cpp:1061
-#: src/slic3r/GUI/Tab.cpp:1425 src/slic3r/GUI/Tab.cpp:1840
-#: src/libslic3r/PrintConfig.cpp:156 src/libslic3r/PrintConfig.cpp:323
-#: src/libslic3r/PrintConfig.cpp:999 src/libslic3r/PrintConfig.cpp:2298
-msgid "Advanced"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240
+msgid "Move clipping plane"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:617
-msgid "Advanced View Mode"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1241
+msgid "Reset clipping plane"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:618
-msgid "Expert"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1244
+msgid "Switch to editing mode"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:618
-msgid "Expert View Mode"
+#: src/slic3r/GUI/GUI.cpp:142 src/slic3r/GUI/Tab.cpp:2816
+msgid "It's impossible to print multi-part object(s) with SLA technology."
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:620
-msgid "Mode"
+#: src/slic3r/GUI/GUI.cpp:143
+msgid "Please check and fix your object list."
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:620
-msgid "Slic3r View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:622
-msgid "Change Application &Language"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:624
-msgid "Flash printer &firmware"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:624
-msgid "Upload a firmware image into an Arduino based printer"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:636
-msgid "Taking configuration snapshot"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:636
-msgid "Snapshot name"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:674
-msgid "Application will be restarted"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/Tab.cpp:2606
+#: src/slic3r/GUI/GUI.cpp:144 src/slic3r/GUI/Tab.cpp:2818
msgid "Attention!"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:691
+#: src/slic3r/GUI/GUI.cpp:277
+msgid "Notice"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:393
+msgid "Changing of an application language"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:401 src/slic3r/GUI/GUI_App.cpp:410
+msgid "Recreating"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:414
+msgid "Loading of current presets"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:422
+msgid "Loading of a mode view"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:504
+msgid "Choose one file (3MF):"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:516
+msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:558
+msgid "Select the language"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:559
+msgid "Language"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:710
+msgid "&Configuration Snapshots"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:710
+msgid "Inspect / activate configuration snapshots"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:711
+msgid "Take Configuration &Snapshot"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:711
+msgid "Capture a configuration snapshot"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:714
+msgid "&Preferences"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:720
+msgid "Application preferences"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:723 src/slic3r/GUI/wxExtensions.cpp:2509
+msgid "Simple"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:723
+msgid "Simple View Mode"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:724 src/slic3r/GUI/GUI_ObjectList.cpp:85
+#: src/slic3r/GUI/GUI_ObjectList.cpp:539 src/slic3r/GUI/Tab.cpp:1030
+#: src/slic3r/GUI/Tab.cpp:1045 src/slic3r/GUI/Tab.cpp:1143
+#: src/slic3r/GUI/Tab.cpp:1146 src/slic3r/GUI/Tab.cpp:1520
+#: src/slic3r/GUI/Tab.cpp:1946 src/slic3r/GUI/Tab.cpp:3461
+#: src/slic3r/GUI/wxExtensions.cpp:2510 src/libslic3r/PrintConfig.cpp:73
+#: src/libslic3r/PrintConfig.cpp:188 src/libslic3r/PrintConfig.cpp:351
+#: src/libslic3r/PrintConfig.cpp:989 src/libslic3r/PrintConfig.cpp:2200
+msgid "Advanced"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:724
+msgid "Advanced View Mode"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:725 src/slic3r/GUI/wxExtensions.cpp:2511
+msgid "Expert"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:725
+msgid "Expert View Mode"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:730
+msgid "Mode"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:730
+#, possible-c-format
+msgid "%s View Mode"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:732
+msgid "Change Application &Language"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:734
+msgid "Flash printer &firmware"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:734
+msgid "Upload a firmware image into an Arduino based printer"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:746
+msgid "Taking configuration snapshot"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:746
+msgid "Snapshot name"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:789
+msgid ""
+"Switching the language will trigger application restart.\n"
+"You will lose content of the plater."
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:791
+msgid "Do you want to proceed?"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:792
+msgid "Language selection"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:811
msgid "&Configuration"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:711
-msgid "You have unsaved changes "
+#: src/slic3r/GUI/GUI_App.cpp:831
+msgid "The presets on the following tabs were modified"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:711
-msgid ". Discard changes and continue anyway?"
+#: src/slic3r/GUI/GUI_App.cpp:831 src/slic3r/GUI/Tab.cpp:2804
+msgid "Discard changes and continue anyway?"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:712
+#: src/slic3r/GUI/GUI_App.cpp:832
msgid "Unsaved Presets"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:31 src/libslic3r/PrintConfig.cpp:47
-#: src/libslic3r/PrintConfig.cpp:115 src/libslic3r/PrintConfig.cpp:357
-#: src/libslic3r/PrintConfig.cpp:410 src/libslic3r/PrintConfig.cpp:419
-#: src/libslic3r/PrintConfig.cpp:849 src/libslic3r/PrintConfig.cpp:1037
-#: src/libslic3r/PrintConfig.cpp:1354 src/libslic3r/PrintConfig.cpp:1426
-#: src/libslic3r/PrintConfig.cpp:1618 src/libslic3r/PrintConfig.cpp:2091
-#: src/libslic3r/PrintConfig.cpp:2150
+#: src/slic3r/GUI/GUI_ObjectList.cpp:28 src/slic3r/GUI/GUI_ObjectList.cpp:77
+#: src/slic3r/GUI/GUI_ObjectList.cpp:531 src/libslic3r/PrintConfig.cpp:57
+#: src/libslic3r/PrintConfig.cpp:151 src/libslic3r/PrintConfig.cpp:382
+#: src/libslic3r/PrintConfig.cpp:439 src/libslic3r/PrintConfig.cpp:447
+#: src/libslic3r/PrintConfig.cpp:843 src/libslic3r/PrintConfig.cpp:1027
+#: src/libslic3r/PrintConfig.cpp:1330 src/libslic3r/PrintConfig.cpp:1396
+#: src/libslic3r/PrintConfig.cpp:1577 src/libslic3r/PrintConfig.cpp:2012
+#: src/libslic3r/PrintConfig.cpp:2069
msgid "Layers and Perimeters"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:32 src/slic3r/GUI/Tab.cpp:952
-#: src/slic3r/GUI/Tab.cpp:953 src/slic3r/GUI/Tab.cpp:1274
-#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:366
-#: src/libslic3r/PrintConfig.cpp:730 src/libslic3r/PrintConfig.cpp:745
-#: src/libslic3r/PrintConfig.cpp:783 src/libslic3r/PrintConfig.cpp:938
-#: src/libslic3r/PrintConfig.cpp:949 src/libslic3r/PrintConfig.cpp:969
-#: src/libslic3r/PrintConfig.cpp:989 src/libslic3r/PrintConfig.cpp:1010
-#: src/libslic3r/PrintConfig.cpp:1733 src/libslic3r/PrintConfig.cpp:1752
+#: src/slic3r/GUI/GUI_ObjectList.cpp:29 src/slic3r/GUI/GUI_ObjectList.cpp:78
+#: src/slic3r/GUI/GUI_ObjectList.cpp:532 src/slic3r/GUI/Plater.cpp:447
+#: src/slic3r/GUI/Tab.cpp:1034 src/slic3r/GUI/Tab.cpp:1035
+#: src/slic3r/GUI/Tab.cpp:1364 src/libslic3r/PrintConfig.cpp:168
+#: src/libslic3r/PrintConfig.cpp:390 src/libslic3r/PrintConfig.cpp:730
+#: src/libslic3r/PrintConfig.cpp:744 src/libslic3r/PrintConfig.cpp:781
+#: src/libslic3r/PrintConfig.cpp:934 src/libslic3r/PrintConfig.cpp:944
+#: src/libslic3r/PrintConfig.cpp:962 src/libslic3r/PrintConfig.cpp:980
+#: src/libslic3r/PrintConfig.cpp:999 src/libslic3r/PrintConfig.cpp:1684
+#: src/libslic3r/PrintConfig.cpp:1701
msgid "Infill"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_Preview.cpp:262
-#: src/slic3r/GUI/Tab.cpp:980 src/slic3r/GUI/Tab.cpp:981
-#: src/libslic3r/PrintConfig.cpp:305 src/libslic3r/PrintConfig.cpp:1484
-#: src/libslic3r/PrintConfig.cpp:1865 src/libslic3r/PrintConfig.cpp:1872
-#: src/libslic3r/PrintConfig.cpp:1881 src/libslic3r/PrintConfig.cpp:1894
-#: src/libslic3r/PrintConfig.cpp:1905 src/libslic3r/PrintConfig.cpp:1914
-#: src/libslic3r/PrintConfig.cpp:1930 src/libslic3r/PrintConfig.cpp:1953
-#: src/libslic3r/PrintConfig.cpp:1965 src/libslic3r/PrintConfig.cpp:1983
-#: src/libslic3r/PrintConfig.cpp:1993 src/libslic3r/PrintConfig.cpp:2003
-#: src/libslic3r/PrintConfig.cpp:2014 src/libslic3r/PrintConfig.cpp:2029
-#: src/libslic3r/PrintConfig.cpp:2038 src/libslic3r/PrintConfig.cpp:2039
-#: src/libslic3r/PrintConfig.cpp:2048 src/libslic3r/PrintConfig.cpp:2057
-#: src/libslic3r/PrintConfig.cpp:2072 src/libslic3r/GCode/PreviewData.cpp:172
+#: src/slic3r/GUI/GUI_ObjectList.cpp:30 src/slic3r/GUI/GUI_ObjectList.cpp:79
+#: src/slic3r/GUI/GUI_ObjectList.cpp:533 src/slic3r/GUI/GUI_Preview.cpp:236
+#: src/slic3r/GUI/Tab.cpp:1063 src/slic3r/GUI/Tab.cpp:1064
+#: src/libslic3r/PrintConfig.cpp:335 src/libslic3r/PrintConfig.cpp:1457
+#: src/libslic3r/PrintConfig.cpp:1805 src/libslic3r/PrintConfig.cpp:1811
+#: src/libslic3r/PrintConfig.cpp:1819 src/libslic3r/PrintConfig.cpp:1831
+#: src/libslic3r/PrintConfig.cpp:1841 src/libslic3r/PrintConfig.cpp:1849
+#: src/libslic3r/PrintConfig.cpp:1864 src/libslic3r/PrintConfig.cpp:1885
+#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:1912
+#: src/libslic3r/PrintConfig.cpp:1921 src/libslic3r/PrintConfig.cpp:1930
+#: src/libslic3r/PrintConfig.cpp:1941 src/libslic3r/PrintConfig.cpp:1955
+#: src/libslic3r/PrintConfig.cpp:1963 src/libslic3r/PrintConfig.cpp:1964
+#: src/libslic3r/PrintConfig.cpp:1973 src/libslic3r/PrintConfig.cpp:1981
+#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/GCode/PreviewData.cpp:172
msgid "Support material"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_Preview.cpp:241
-#: src/slic3r/GUI/Tab.cpp:1005 src/libslic3r/PrintConfig.cpp:169
-#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:881
-#: src/libslic3r/PrintConfig.cpp:1011 src/libslic3r/PrintConfig.cpp:1416
-#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1721
-#: src/libslic3r/PrintConfig.cpp:1776 src/libslic3r/PrintConfig.cpp:2136
-msgid "Speed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/Tab.cpp:1038
-#: src/slic3r/GUI/Tab.cpp:1744 src/libslic3r/PrintConfig.cpp:430
-#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:1393
-#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1944
-#: src/libslic3r/PrintConfig.cpp:1973 src/libslic3r/PrintConfig.cpp:2271
-#: src/libslic3r/PrintConfig.cpp:2280
+#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_ObjectList.cpp:81
+#: src/slic3r/GUI/GUI_ObjectList.cpp:535 src/slic3r/GUI/Tab.cpp:1123
+#: src/slic3r/GUI/Tab.cpp:1850 src/libslic3r/PrintConfig.cpp:457
+#: src/libslic3r/PrintConfig.cpp:955 src/libslic3r/PrintConfig.cpp:1365
+#: src/libslic3r/PrintConfig.cpp:1693 src/libslic3r/PrintConfig.cpp:1877
+#: src/libslic3r/PrintConfig.cpp:1903 src/libslic3r/PrintConfig.cpp:2176
+#: src/libslic3r/PrintConfig.cpp:2184
msgid "Extruders"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/libslic3r/PrintConfig.cpp:387
-#: src/libslic3r/PrintConfig.cpp:504 src/libslic3r/PrintConfig.cpp:836
-#: src/libslic3r/PrintConfig.cpp:970 src/libslic3r/PrintConfig.cpp:1403
-#: src/libslic3r/PrintConfig.cpp:1765 src/libslic3r/PrintConfig.cpp:1954
-#: src/libslic3r/PrintConfig.cpp:2124
+#: src/slic3r/GUI/GUI_ObjectList.cpp:39
+msgid "Pad and Support"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:45
+msgid "Add part"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:46
+msgid "Add modifier"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:47
+msgid "Add support enforcer"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:48
+msgid "Add support blocker"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:80 src/slic3r/GUI/GUI_ObjectList.cpp:534
+#: src/slic3r/GUI/GUI_Preview.cpp:215 src/slic3r/GUI/Tab.cpp:1088
+#: src/libslic3r/PrintConfig.cpp:200 src/libslic3r/PrintConfig.cpp:427
+#: src/libslic3r/PrintConfig.cpp:872 src/libslic3r/PrintConfig.cpp:1000
+#: src/libslic3r/PrintConfig.cpp:1386 src/libslic3r/PrintConfig.cpp:1623
+#: src/libslic3r/PrintConfig.cpp:1672 src/libslic3r/PrintConfig.cpp:1723
+#: src/libslic3r/PrintConfig.cpp:2054
+msgid "Speed"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:82 src/slic3r/GUI/GUI_ObjectList.cpp:536
+#: src/libslic3r/PrintConfig.cpp:417 src/libslic3r/PrintConfig.cpp:524
+#: src/libslic3r/PrintConfig.cpp:831 src/libslic3r/PrintConfig.cpp:963
+#: src/libslic3r/PrintConfig.cpp:1374 src/libslic3r/PrintConfig.cpp:1713
+#: src/libslic3r/PrintConfig.cpp:1886 src/libslic3r/PrintConfig.cpp:2043
msgid "Extrusion Width"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:41 src/slic3r/GUI/Tab.cpp:3179
-#: src/slic3r/GUI/Tab.cpp:3180 src/libslic3r/PrintConfig.cpp:2488
-#: src/libslic3r/PrintConfig.cpp:2495 src/libslic3r/PrintConfig.cpp:2504
-#: src/libslic3r/PrintConfig.cpp:2513 src/libslic3r/PrintConfig.cpp:2522
-#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2558
-#: src/libslic3r/PrintConfig.cpp:2567 src/libslic3r/PrintConfig.cpp:2576
-#: src/libslic3r/PrintConfig.cpp:2585 src/libslic3r/PrintConfig.cpp:2594
-#: src/libslic3r/PrintConfig.cpp:2603 src/libslic3r/PrintConfig.cpp:2612
-#: src/libslic3r/PrintConfig.cpp:2621
+#: src/slic3r/GUI/GUI_ObjectList.cpp:87 src/slic3r/GUI/GUI_ObjectList.cpp:541
+#: src/slic3r/GUI/Plater.cpp:429 src/slic3r/GUI/Tab.cpp:3423
+#: src/slic3r/GUI/Tab.cpp:3424 src/libslic3r/PrintConfig.cpp:2388
+#: src/libslic3r/PrintConfig.cpp:2395 src/libslic3r/PrintConfig.cpp:2404
+#: src/libslic3r/PrintConfig.cpp:2413 src/libslic3r/PrintConfig.cpp:2423
+#: src/libslic3r/PrintConfig.cpp:2449 src/libslic3r/PrintConfig.cpp:2456
+#: src/libslic3r/PrintConfig.cpp:2467 src/libslic3r/PrintConfig.cpp:2477
+#: src/libslic3r/PrintConfig.cpp:2486 src/libslic3r/PrintConfig.cpp:2496
+#: src/libslic3r/PrintConfig.cpp:2505 src/libslic3r/PrintConfig.cpp:2515
+#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2533
msgid "Supports"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:42 src/slic3r/GUI/Tab.cpp:3205
-#: src/slic3r/GUI/Tab.cpp:3206 src/libslic3r/PrintConfig.cpp:2630
-#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2646
-#: src/libslic3r/PrintConfig.cpp:2655 src/libslic3r/PrintConfig.cpp:2664
+#: src/slic3r/GUI/GUI_ObjectList.cpp:88 src/slic3r/GUI/GUI_ObjectList.cpp:542
+#: src/slic3r/GUI/Tab.cpp:3451 src/slic3r/GUI/Tab.cpp:3452
+#: src/libslic3r/PrintConfig.cpp:2541 src/libslic3r/PrintConfig.cpp:2548
+#: src/libslic3r/PrintConfig.cpp:2562 src/libslic3r/PrintConfig.cpp:2572
+#: src/libslic3r/PrintConfig.cpp:2585 src/libslic3r/PrintConfig.cpp:2594
msgid "Pad"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:115
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:129
+#: src/slic3r/GUI/GUI_ObjectList.cpp:203
msgid "Name"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:134
-msgid "Right button click the icon to change the object settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:142
+#: src/slic3r/GUI/GUI_ObjectList.cpp:257
#, possible-c-format
msgid "Auto-repaired (%d errors):\n"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:145
+#: src/slic3r/GUI/GUI_ObjectList.cpp:264
msgid "degenerate facets"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:146
+#: src/slic3r/GUI/GUI_ObjectList.cpp:265
msgid "edges fixed"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:147
+#: src/slic3r/GUI/GUI_ObjectList.cpp:266
msgid "facets removed"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:148
+#: src/slic3r/GUI/GUI_ObjectList.cpp:267
msgid "facets added"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:149
+#: src/slic3r/GUI/GUI_ObjectList.cpp:268
msgid "facets reversed"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:150
+#: src/slic3r/GUI/GUI_ObjectList.cpp:269
msgid "backwards edges"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:164
+#: src/slic3r/GUI/GUI_ObjectList.cpp:277
msgid "Right button click the icon to fix STL through Netfabb"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:196 src/slic3r/GUI/Tab.cpp:1389
-#: src/libslic3r/PrintConfig.cpp:429
+#: src/slic3r/GUI/GUI_ObjectList.cpp:306
+msgid "Right button click the icon to change the object settings"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:357 src/slic3r/GUI/GUI_ObjectList.cpp:378
+#: src/slic3r/GUI/GUI_ObjectList.cpp:390 src/slic3r/GUI/GUI_ObjectList.cpp:2846
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2856
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2888 src/slic3r/GUI/wxExtensions.cpp:499
+#: src/slic3r/GUI/wxExtensions.cpp:524
+msgid "default"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:362 src/slic3r/GUI/Tab.cpp:1484
+#: src/libslic3r/PrintConfig.cpp:456
msgid "Extruder"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:615
+#: src/slic3r/GUI/GUI_ObjectList.cpp:876 src/slic3r/GUI/GUI_ObjectList.cpp:1151
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1157
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1384
+#, possible-c-format
+msgid "Quick Add Settings (%s)"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:939
msgid "Select showing settings"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:655
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1072
msgid "Load"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659 src/slic3r/GUI/GUI_ObjectList.cpp:688
-#: src/slic3r/GUI/GUI_ObjectList.cpp:691
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1077
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1102
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1105
msgid "Box"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1077
msgid "Cylinder"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1077
msgid "Sphere"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1077
msgid "Slab"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:671 src/slic3r/GUI/GUI_ObjectList.cpp:685
-msgid "Add part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:672
-msgid "Add modifier"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:673 src/slic3r/GUI/GUI_ObjectList.cpp:687
-msgid "Add support enforcer"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:674 src/slic3r/GUI/GUI_ObjectList.cpp:690
-msgid "Add support blocker"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:711
-msgid "Split to parts"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:725
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1130
msgid "Add settings"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:739
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1197
msgid "Change type"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1009
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1204
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1338
+msgid "Set as a Separated Object"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1210
+msgid "Rename"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1220
+msgid "Fix through the Netfabb"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1229 src/slic3r/GUI/Plater.cpp:2969
+msgid "Export as STL"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1236
+msgid "Change extruder"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1255 src/libslic3r/PrintConfig.cpp:300
+msgid "Default"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1261
+msgid "Select new extruder for the object/part"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1338
+msgid "Set as a Separated Objects"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1551
+msgid "Generic"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1694
msgid "You can't delete the last solid part from object."
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1017
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1711
msgid "You can't delete the last intance from object."
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1044 src/slic3r/GUI/Plater.cpp:1825
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1737 src/slic3r/GUI/Plater.cpp:2306
msgid ""
"The selected object couldn't be split because it contains only one part."
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1138
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1846
msgid "Group manipulation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1149
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1858
msgid "Object manipulation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1159
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1868
msgid "Object Settings to modify"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1163
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1872
msgid "Part Settings to modify"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1173
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1881
msgid "Part manipulation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1180
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1887
msgid "Instance manipulation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1655
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2412
+msgid "Object or Instance"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2412
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2543
+msgid "Part"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2414
+msgid "Unsupported selection"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2415
+#, possible-c-format
+msgid "You started your selection with %s Item."
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2416
+#, possible-c-format
+msgid "In this mode you can select only other %s Items%s"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2419
+msgid "of a current Object"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2424
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2497 src/slic3r/GUI/Plater.cpp:118
+msgid "Info"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2538
msgid "You can't change a type of the last solid part of the object."
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1662
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2543
+msgid "Modifier"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2543
+msgid "Support Enforcer"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2543
+msgid "Support Blocker"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2545
+msgid "Type:"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2545
msgid "Select type of part"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1744 src/slic3r/GUI/Tab.cpp:3070
-#: src/slic3r/GUI/Tab.cpp:3074
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2709
+msgid "Enter new name"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2709
+msgid "Renaming"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2725
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2819 src/slic3r/GUI/Tab.cpp:3304
+#: src/slic3r/GUI/Tab.cpp:3308
msgid "The supplied name is not valid;"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1745 src/slic3r/GUI/Tab.cpp:3071
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2726
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2820 src/slic3r/GUI/Tab.cpp:3305
msgid "the following characters are not allowed:"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:21
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2836
+msgid "Set extruder for selected items"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2837
+msgid "Select extruder number for selected objects and/or parts"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2850
+msgid "Select extruder number:"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2851
+msgid "This extruder will be set for selected items"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:40
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:83
+msgid "World coordinates"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:41
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:84
+msgid "Local coordinates"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:60
+msgid "Select coordinate space, in which the transformation will be performed."
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:102
msgid "Object Manipulation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:132
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153
msgid "Object name"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:229
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:282
msgid "Position"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:205
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:230
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:283
msgid "Rotation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:284
msgid "Scale factors"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:321
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:341
msgid "Translate"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:235
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:640
+msgid ""
+"The currently manipulated object is tilted (rotation angles are not "
+"multiples of 90°).\n"
+"Non-uniform scaling of tilted objects is only possible in the World "
+"coordinate system,\n"
+"once the rotation is embedded into the object coordinates."
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:643
+msgid ""
+"This operation is irreversible.\n"
+"Do you want to proceed?"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectSettings.cpp:58
+msgid "Additional Settings"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectSettings.cpp:83
+msgid "Remove parameter"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_Preview.cpp:209
msgid "View"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/GUI_Preview.cpp:550
+#: src/slic3r/GUI/GUI_Preview.cpp:212 src/slic3r/GUI/GUI_Preview.cpp:537
#: src/libslic3r/GCode/PreviewData.cpp:394
msgid "Feature type"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/PrintConfig.cpp:443
+#: src/slic3r/GUI/GUI_Preview.cpp:213 src/libslic3r/PrintConfig.cpp:469
msgid "Height"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/PrintConfig.cpp:2255
+#: src/slic3r/GUI/GUI_Preview.cpp:214 src/libslic3r/PrintConfig.cpp:2162
msgid "Width"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:242
+#: src/slic3r/GUI/GUI_Preview.cpp:216
msgid "Volumetric flow rate"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:243 src/slic3r/GUI/GUI_Preview.cpp:347
-#: src/slic3r/GUI/GUI_Preview.cpp:496 src/slic3r/GUI/GUI_Preview.cpp:718
-#: src/libslic3r/GCode/PreviewData.cpp:404
+#: src/slic3r/GUI/GUI_Preview.cpp:217 src/slic3r/GUI/GUI_Preview.cpp:315
+#: src/slic3r/GUI/GUI_Preview.cpp:481 src/slic3r/GUI/GUI_Preview.cpp:537
+#: src/slic3r/GUI/GUI_Preview.cpp:713 src/libslic3r/GCode/PreviewData.cpp:404
msgid "Tool"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:244 src/slic3r/GUI/GUI_Preview.cpp:550
+#: src/slic3r/GUI/GUI_Preview.cpp:218 src/slic3r/GUI/GUI_Preview.cpp:535
#: src/libslic3r/GCode/PreviewData.cpp:406
msgid "Color Print"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:247
+#: src/slic3r/GUI/GUI_Preview.cpp:221
msgid "Show"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/GUI_Preview.cpp:251
+#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/GUI_Preview.cpp:225
msgid "Feature types"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/GCode/PreviewData.cpp:163
+#: src/slic3r/GUI/GUI_Preview.cpp:227 src/libslic3r/GCode/PreviewData.cpp:163
msgid "Perimeter"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:254 src/libslic3r/GCode/PreviewData.cpp:164
+#: src/slic3r/GUI/GUI_Preview.cpp:228 src/libslic3r/GCode/PreviewData.cpp:164
msgid "External perimeter"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/GCode/PreviewData.cpp:165
+#: src/slic3r/GUI/GUI_Preview.cpp:229 src/libslic3r/GCode/PreviewData.cpp:165
msgid "Overhang perimeter"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:256 src/libslic3r/GCode/PreviewData.cpp:166
+#: src/slic3r/GUI/GUI_Preview.cpp:230 src/libslic3r/GCode/PreviewData.cpp:166
msgid "Internal infill"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:257 src/libslic3r/PrintConfig.cpp:1764
-#: src/libslic3r/PrintConfig.cpp:1775 src/libslic3r/GCode/PreviewData.cpp:167
+#: src/slic3r/GUI/GUI_Preview.cpp:231 src/libslic3r/PrintConfig.cpp:1712
+#: src/libslic3r/PrintConfig.cpp:1722 src/libslic3r/GCode/PreviewData.cpp:167
msgid "Solid infill"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:258 src/libslic3r/PrintConfig.cpp:2123
-#: src/libslic3r/PrintConfig.cpp:2135 src/libslic3r/GCode/PreviewData.cpp:168
+#: src/slic3r/GUI/GUI_Preview.cpp:232 src/libslic3r/PrintConfig.cpp:2042
+#: src/libslic3r/PrintConfig.cpp:2053 src/libslic3r/GCode/PreviewData.cpp:168
msgid "Top solid infill"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:259 src/libslic3r/GCode/PreviewData.cpp:169
+#: src/slic3r/GUI/GUI_Preview.cpp:233 src/libslic3r/GCode/PreviewData.cpp:169
msgid "Bridge infill"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:260 src/libslic3r/PrintConfig.cpp:880
+#: src/slic3r/GUI/GUI_Preview.cpp:234 src/libslic3r/PrintConfig.cpp:871
#: src/libslic3r/GCode/PreviewData.cpp:170
msgid "Gap fill"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:261 src/slic3r/GUI/Tab.cpp:971
+#: src/slic3r/GUI/GUI_Preview.cpp:235 src/slic3r/GUI/Tab.cpp:1054
#: src/libslic3r/GCode/PreviewData.cpp:171
msgid "Skirt"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:263 src/libslic3r/PrintConfig.cpp:2002
+#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/PrintConfig.cpp:1929
#: src/libslic3r/GCode/PreviewData.cpp:173
msgid "Support material interface"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:264 src/slic3r/GUI/Tab.cpp:1049
+#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/Tab.cpp:1134
#: src/libslic3r/GCode/PreviewData.cpp:174
msgid "Wipe tower"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:269 src/libslic3r/PrintConfig.cpp:2158
+#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/PrintConfig.cpp:2076
msgid "Travel"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:270
+#: src/slic3r/GUI/GUI_Preview.cpp:244
msgid "Retractions"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:271
+#: src/slic3r/GUI/GUI_Preview.cpp:245
msgid "Unretractions"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:272
+#: src/slic3r/GUI/GUI_Preview.cpp:246
msgid "Shells"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:12
-msgid "Slic3r Prusa Edition - Keyboard Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:47
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:126
-msgid "Main Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:101
-msgid "Open project STL/OBJ/AMF/3MF with config, delete bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:102
-msgid "Import STL/OBJ/AMF/3MF without config, keep bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:103
-msgid "Load Config from .ini/amf/3mf/gcode"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:104 src/slic3r/GUI/Plater.cpp:605
-msgid "Export G-code"
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:13 src/slic3r/GUI/MainFrame.cpp:571
+msgid "Keyboard Shortcuts"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:105
-msgid "Save project (3MF)"
+msgid "Open project STL/OBJ/AMF/3MF with config, delete bed"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:106
-msgid "Load Config from .ini/amf/3mf/gcode and merge"
+msgid "Import STL/OBJ/AMF/3MF without config, keep bed"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:107
-msgid "(Re)slice"
+msgid "Load Config from .ini/amf/3mf/gcode"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:108
-msgid "Quick slice"
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 src/slic3r/GUI/Plater.cpp:740
+#: src/slic3r/GUI/Plater.cpp:3864 src/libslic3r/PrintConfig.cpp:2990
+msgid "Export G-code"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 src/slic3r/GUI/MainFrame.cpp:289
-msgid "Repeat last quick slice"
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:109
+msgid "Save project (3MF)"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:110
-msgid "Select Plater Tab"
+msgid "Load Config from .ini/amf/3mf/gcode and merge"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:111
-msgid "Quick slice and Save as"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:112
-msgid "Select Print Settings Tab"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:113
-msgid "Select Filament Settings Tab"
+msgid "(Re)slice"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:114
-msgid "Select Printer Settings Tab"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:115
-msgid "Switch to 3D"
+msgid "Select Plater Tab"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:116
-msgid "Switch to Preview"
+msgid "Select Print Settings Tab"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 src/slic3r/GUI/Preferences.cpp:10
-msgid "Preferences"
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:117
+msgid "Select Filament Settings Tab"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:118
-#: src/slic3r/GUI/PrintHostDialogs.cpp:89
-msgid "Print host upload queue"
+msgid "Select Printer Settings Tab"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:119
-msgid "Camera view "
+msgid "Switch to 3D"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:120
-msgid "Add Instance to selected object "
+msgid "Switch to Preview"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:121
-msgid "Remove Instance from selected object"
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 src/slic3r/GUI/Preferences.cpp:10
+msgid "Preferences"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:122
-msgid "Show keyboard shortcuts list"
+#: src/slic3r/GUI/PrintHostDialogs.cpp:135
+msgid "Print host upload queue"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:123
-msgid "Switch between 3D and Preview"
+msgid "Camera view"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:124
-msgid "Select multiple object/Move multiple object"
+msgid "Add Instance of the selected object"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:132
-msgid "Arrange"
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:125
+msgid "Remove Instance of the selected object"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:133
-msgid "Select All objects"
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:126
+msgid "Show keyboard shortcuts list"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:134
-msgid "Delete selected"
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:127
+msgid "Press to select multiple object or move multiple object with mouse"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:135
-msgid "Delete All"
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:129
+msgid "Main Shortcuts"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:136
-msgid "Gizmo move"
+msgid "Select All objects"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:137
-msgid "Gizmo scale"
+msgid "Delete selected"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:138
-msgid "Gizmo rotate"
+msgid "Delete All"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:139
-msgid "Gizmo cut"
+msgid "Copy to clipboard"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:140
-msgid "Gizmo Place face on bed"
+msgid "Paste from clipboard"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:141
-msgid "Gizmo SLA support points"
+msgid "Gizmo move"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:142
-msgid "Zoom to Bed"
+msgid "Gizmo scale"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:143
-msgid "Zoom to all objects in scene, if none selected"
+msgid "Gizmo rotate"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:144
-msgid "Zoom to selected object"
+msgid "Gizmo cut"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:145
-msgid "Zoom in"
+msgid "Gizmo Place face on bed"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:146
-msgid "Zoom out"
+msgid "Gizmo SLA support points"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:147
-msgid "Unselect gizmo, keep object selection"
+#, possible-c-format
+msgid ""
+"Press to snap by 5% in Gizmo scale\n"
+"or by 1mm in Gizmo move"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:148
+msgid ""
+"Press to scale or rotate selected objects\n"
+"around their own center"
msgstr ""
#: src/slic3r/GUI/KBShortcutsDialog.cpp:149
+msgid "Zoom to Bed"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:150
+msgid "Zoom to all objects in scene, if none selected"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:151
+msgid "Zoom to selected object"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:152
+msgid "Zoom in"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:153
+msgid "Zoom out"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:154
+msgid "Unselect gizmo, keep object selection"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
msgid "Plater Shortcuts"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:171
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:182
msgid "Arrow Up"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:171
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:173
msgid "Upper Layer"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:172
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:183
msgid "Arrow Down"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:172
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:174
msgid "Lower Layer"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:158
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:176
msgid "Preview Shortcuts"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:53
-msgid ""
-" - Remember to check for updates at http://github.com/prusa3d/slic3r/releases"
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:182
+msgid "Move current slider thumb Up"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:130
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:183
+msgid "Move current slider thumb Down"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:184
+msgid "Arrow Left"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:184
+msgid "Set upper thumb to current slider thumb"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:185
+msgid "Arrow Right"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:185
+msgid "Set lower thumb to current slider thumb"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:186
+msgid "Add color change marker for current layer"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:187
+msgid "Delete color change marker for current layer"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:189
+msgid "Layers Slider Shortcuts"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:36
+msgid "based on Slic3r"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:61
+msgid ""
+" - Remember to check for updates at http://github.com/prusa3d/PrusaSlicer/"
+"releases"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:163
msgid "Plater"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:236
-msgid "&Open"
+#: src/slic3r/GUI/MainFrame.cpp:344
+msgid "&Open Project"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:236
+#: src/slic3r/GUI/MainFrame.cpp:344
msgid "Open a project file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:238
-msgid "&Save"
+#: src/slic3r/GUI/MainFrame.cpp:346
+msgid "&Save Project"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:238
+#: src/slic3r/GUI/MainFrame.cpp:346
msgid "Save current project file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:240
-msgid "Save &as"
+#: src/slic3r/GUI/MainFrame.cpp:348
+msgid "Save Project &as"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:240
+#: src/slic3r/GUI/MainFrame.cpp:348
msgid "Save current project file as"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:246
+#: src/slic3r/GUI/MainFrame.cpp:354
msgid "Import STL/OBJ/AM&F/3MF"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:246
+#: src/slic3r/GUI/MainFrame.cpp:354
msgid "Load a model"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:249
+#: src/slic3r/GUI/MainFrame.cpp:357
msgid "Import &Config"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:249
+#: src/slic3r/GUI/MainFrame.cpp:357
msgid "Load exported configuration file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:251
+#: src/slic3r/GUI/MainFrame.cpp:359
msgid "Import Config from &project"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:251
+#: src/slic3r/GUI/MainFrame.cpp:359
msgid "Load configuration from project file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:254
+#: src/slic3r/GUI/MainFrame.cpp:362
msgid "Import Config &Bundle"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:254
+#: src/slic3r/GUI/MainFrame.cpp:362
msgid "Load presets from a bundle"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:256
+#: src/slic3r/GUI/MainFrame.cpp:364
msgid "&Import"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:259
+#: src/slic3r/GUI/MainFrame.cpp:367 src/slic3r/GUI/MainFrame.cpp:607
msgid "Export &G-code"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:259
+#: src/slic3r/GUI/MainFrame.cpp:367
msgid "Export current plate as G-code"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:262
+#: src/slic3r/GUI/MainFrame.cpp:371
msgid "Export plate as &STL"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:262
+#: src/slic3r/GUI/MainFrame.cpp:371
msgid "Export current plate as STL"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:264
+#: src/slic3r/GUI/MainFrame.cpp:373
+msgid "Export plate as STL including supports"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:373
+msgid "Export current plate as STL including supports"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:375
msgid "Export plate as &AMF"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:264
+#: src/slic3r/GUI/MainFrame.cpp:375
msgid "Export current plate as AMF"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:267
+#: src/slic3r/GUI/MainFrame.cpp:378
msgid "Export &Config"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:267
+#: src/slic3r/GUI/MainFrame.cpp:378
msgid "Export current configuration to file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:269
+#: src/slic3r/GUI/MainFrame.cpp:380
msgid "Export Config &Bundle"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:269
+#: src/slic3r/GUI/MainFrame.cpp:380
msgid "Export all presets to file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:271
+#: src/slic3r/GUI/MainFrame.cpp:382
msgid "&Export"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:277
+#: src/slic3r/GUI/MainFrame.cpp:388
msgid "Quick Slice"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:277
+#: src/slic3r/GUI/MainFrame.cpp:388
msgid "Slice a file into a G-code"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:283
+#: src/slic3r/GUI/MainFrame.cpp:394
msgid "Quick Slice and Save As"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:283
+#: src/slic3r/GUI/MainFrame.cpp:394
msgid "Slice a file into a G-code, save as"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:289
+#: src/slic3r/GUI/MainFrame.cpp:400
msgid "Repeat Last Quick Slice"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:297
+#: src/slic3r/GUI/MainFrame.cpp:400
+msgid "Repeat last quick slice"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:408
msgid "(Re)Slice &Now"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:297
+#: src/slic3r/GUI/MainFrame.cpp:408
msgid "Start new slicing process"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:300
+#: src/slic3r/GUI/MainFrame.cpp:411
msgid "&Repair STL file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:300
+#: src/slic3r/GUI/MainFrame.cpp:411
msgid "Automatically repair an STL file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:303
+#: src/slic3r/GUI/MainFrame.cpp:414
msgid "&Quit"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:303
-msgid "Quit Slic3r"
+#: src/slic3r/GUI/MainFrame.cpp:414
+#, possible-c-format
+msgid "Quit %s"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:321
+#: src/slic3r/GUI/MainFrame.cpp:449
msgid "&Select all"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:321
+#: src/slic3r/GUI/MainFrame.cpp:449
msgid "Selects all objects"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:324
+#: src/slic3r/GUI/MainFrame.cpp:452
msgid "&Delete selected"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:324
+#: src/slic3r/GUI/MainFrame.cpp:452
msgid "Deletes the current selection"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:326
+#: src/slic3r/GUI/MainFrame.cpp:454
msgid "Delete &all"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:326
+#: src/slic3r/GUI/MainFrame.cpp:454
msgid "Deletes all objects"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:339
+#: src/slic3r/GUI/MainFrame.cpp:459
+msgid "&Copy"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:459
+msgid "Copy selection to clipboard"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:461
+msgid "&Paste"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:461
+msgid "Paste clipboard"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:476
msgid "&Plater Tab"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:339
+#: src/slic3r/GUI/MainFrame.cpp:476
msgid "Show the plater"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:346
+#: src/slic3r/GUI/MainFrame.cpp:483
msgid "P&rint Settings Tab"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:346
+#: src/slic3r/GUI/MainFrame.cpp:483
msgid "Show the print settings"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:348
+#: src/slic3r/GUI/MainFrame.cpp:485 src/slic3r/GUI/MainFrame.cpp:609
msgid "&Filament Settings Tab"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:348
+#: src/slic3r/GUI/MainFrame.cpp:485
msgid "Show the filament settings"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:350
+#: src/slic3r/GUI/MainFrame.cpp:488
msgid "Print&er Settings Tab"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:350
+#: src/slic3r/GUI/MainFrame.cpp:488
msgid "Show the printer settings"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:354
+#: src/slic3r/GUI/MainFrame.cpp:492
msgid "3&D"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:354
+#: src/slic3r/GUI/MainFrame.cpp:492
msgid "Show the 3D editing view"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:356
+#: src/slic3r/GUI/MainFrame.cpp:494
msgid "Pre&view"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:356
+#: src/slic3r/GUI/MainFrame.cpp:494
msgid "Show the 3D slices preview"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:377
+#: src/slic3r/GUI/MainFrame.cpp:515
msgid "Print &Host Upload Queue"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:377
+#: src/slic3r/GUI/MainFrame.cpp:515
msgid "Display the Print Host Upload Queue window"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "&Iso"
+#: src/slic3r/GUI/MainFrame.cpp:524
+msgid "Iso"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:388
+#: src/slic3r/GUI/MainFrame.cpp:524
msgid "Iso View"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "&Top"
+#. TRN To be shown in the main menu View->Top
+#: src/slic3r/GUI/MainFrame.cpp:527
+msgid "Top"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:390
+#. TRN To be shown in Print Settings "Top solid layers"
+#: src/libslic3r/PrintConfig.cpp:2068
+msgctxt "Layers"
+msgid "Top"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:527
msgid "Top View"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "&Bottom"
+#. TRN To be shown in the main menu View->Bottom
+#: src/slic3r/GUI/MainFrame.cpp:529
+msgid "Bottom"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:391
+#. TRN To be shown in Print Settings "Bottom solid layers"
+#: src/libslic3r/PrintConfig.cpp:150
+msgctxt "Layers"
+msgid "Bottom"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:529
msgid "Bottom View"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "&Front"
+#: src/slic3r/GUI/MainFrame.cpp:530
+msgid "Front"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:392
+#: src/slic3r/GUI/MainFrame.cpp:530
msgid "Front View"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "R&ear"
+#: src/slic3r/GUI/MainFrame.cpp:531 src/libslic3r/PrintConfig.cpp:1587
+msgid "Rear"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:393
+#: src/slic3r/GUI/MainFrame.cpp:531
msgid "Rear View"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "&Left"
+#: src/slic3r/GUI/MainFrame.cpp:532
+msgid "Left"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:394
+#: src/slic3r/GUI/MainFrame.cpp:532
msgid "Left View"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "&Right"
+#: src/slic3r/GUI/MainFrame.cpp:533
+msgid "Right"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:395
+#: src/slic3r/GUI/MainFrame.cpp:533
msgid "Right View"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:409
+#: src/slic3r/GUI/MainFrame.cpp:547
msgid "Prusa 3D &Drivers"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:409
+#: src/slic3r/GUI/MainFrame.cpp:547
msgid "Open the Prusa3D drivers download page in your browser"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:411
-msgid "Prusa Edition &Releases"
+#: src/slic3r/GUI/MainFrame.cpp:549
+msgid "Software &Releases"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:411
-msgid "Open the Prusa Edition releases page in your browser"
+#: src/slic3r/GUI/MainFrame.cpp:549
+msgid "Open the software releases page in your browser"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:417
-msgid "Slic3r &Website"
+#: src/slic3r/GUI/MainFrame.cpp:555
+#, possible-c-format
+msgid "%s &Website"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:417
-msgid "Open the Slic3r website in your browser"
+#: src/slic3r/GUI/MainFrame.cpp:556
+#, possible-c-format
+msgid "Open the %s website in your browser"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:419
-msgid "Slic3r &Manual"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:419
-msgid "Open the Slic3r manual in your browser"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:422
+#: src/slic3r/GUI/MainFrame.cpp:562
msgid "System &Info"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:422
+#: src/slic3r/GUI/MainFrame.cpp:562
msgid "Show system information"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:424
+#: src/slic3r/GUI/MainFrame.cpp:564
msgid "Show &Configuration Folder"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:424
+#: src/slic3r/GUI/MainFrame.cpp:564
msgid "Show user configuration folder (datadir)"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:426
+#: src/slic3r/GUI/MainFrame.cpp:566
msgid "Report an I&ssue"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:426
-msgid "Report an issue on the Slic3r Prusa Edition"
+#: src/slic3r/GUI/MainFrame.cpp:566
+#, possible-c-format
+msgid "Report an issue on %s"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:428
-msgid "&About Slic3r"
+#: src/slic3r/GUI/MainFrame.cpp:568
+#, possible-c-format
+msgid "&About %s"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:428
+#: src/slic3r/GUI/MainFrame.cpp:568
msgid "Show about dialog"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "&Keyboard Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:431
+#: src/slic3r/GUI/MainFrame.cpp:571
msgid "Show the list of the keyboard shortcuts"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:439
+#: src/slic3r/GUI/MainFrame.cpp:579
msgid "&File"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:440
+#: src/slic3r/GUI/MainFrame.cpp:580
msgid "&Edit"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:441
+#: src/slic3r/GUI/MainFrame.cpp:581
msgid "&Window"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:442
+#: src/slic3r/GUI/MainFrame.cpp:582
msgid "&View"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:445
+#: src/slic3r/GUI/MainFrame.cpp:585
msgid "&Help"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:472
+#: src/slic3r/GUI/MainFrame.cpp:607 src/slic3r/GUI/Plater.cpp:3864
+msgid "Export"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:609
+msgid "Mate&rial Settings Tab"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:630
msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:486
+#: src/slic3r/GUI/MainFrame.cpp:644
msgid "No previously sliced file."
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:487 src/slic3r/GUI/PrintHostDialogs.cpp:173
+#: src/slic3r/GUI/MainFrame.cpp:645 src/slic3r/GUI/PrintHostDialogs.cpp:230
msgid "Error"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:492
+#: src/slic3r/GUI/MainFrame.cpp:650
msgid "Previously sliced file ("
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:492
+#: src/slic3r/GUI/MainFrame.cpp:650
msgid ") not found."
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:493
+#: src/slic3r/GUI/MainFrame.cpp:651
msgid "File Not Found"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:531 src/slic3r/GUI/Tab.cpp:3031
-msgid "Save "
+#: src/slic3r/GUI/MainFrame.cpp:686
+#, possible-c-format
+msgid "Save %s file as:"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:531
+#: src/slic3r/GUI/MainFrame.cpp:686
msgid "SVG"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:531
+#: src/slic3r/GUI/MainFrame.cpp:686
msgid "G-code"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid " file as:"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:548
+#: src/slic3r/GUI/MainFrame.cpp:701
msgid "Save zip file as:"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:560
+#: src/slic3r/GUI/MainFrame.cpp:713 src/slic3r/GUI/Plater.cpp:2439
+#: src/slic3r/GUI/Plater.cpp:3658 src/slic3r/GUI/Tab.cpp:1163
+#: src/slic3r/GUI/Tab.cpp:3462
msgid "Slicing"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:560
-msgid "Processing "
+#. TRN "Processing input_file_basename"
+#: src/slic3r/GUI/MainFrame.cpp:715
+#, possible-c-format
+msgid "Processing %s"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:583
+#: src/slic3r/GUI/MainFrame.cpp:738
msgid " was successfully sliced."
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:585
+#: src/slic3r/GUI/MainFrame.cpp:740
msgid "Slicing Done!"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:600
+#: src/slic3r/GUI/MainFrame.cpp:755
msgid "Select the STL file to repair:"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:614
+#: src/slic3r/GUI/MainFrame.cpp:768
msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:629
+#: src/slic3r/GUI/MainFrame.cpp:783
msgid "Your file was repaired."
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:629
+#: src/slic3r/GUI/MainFrame.cpp:783 src/libslic3r/PrintConfig.cpp:3084
msgid "Repair"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:643
+#: src/slic3r/GUI/MainFrame.cpp:797
msgid "Save configuration as:"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:663 src/slic3r/GUI/MainFrame.cpp:727
+#: src/slic3r/GUI/MainFrame.cpp:817 src/slic3r/GUI/MainFrame.cpp:881
msgid "Select configuration to load:"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:700
+#: src/slic3r/GUI/MainFrame.cpp:854
msgid "Save presets bundle as:"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:751
+#: src/slic3r/GUI/MainFrame.cpp:905
#, possible-c-format
msgid "%d presets successfully imported."
msgstr ""
-#: src/slic3r/GUI/MsgDialog.cpp:66
-msgid "Slic3r error"
+#: src/slic3r/GUI/MsgDialog.cpp:73
+#, possible-c-format
+msgid "%s error"
msgstr ""
-#: src/slic3r/GUI/MsgDialog.cpp:66
-msgid "Slic3r has encountered an error"
+#: src/slic3r/GUI/MsgDialog.cpp:74
+#, possible-c-format
+msgid "%s has encountered an error"
msgstr ""
-#: src/slic3r/GUI/MsgDialog.cpp:84
-msgid "Copy to clipboard"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:107
-msgid "Info"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:126
+#: src/slic3r/GUI/Plater.cpp:138
msgid "Volume"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:127
+#: src/slic3r/GUI/Plater.cpp:139
msgid "Facets"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:128
+#: src/slic3r/GUI/Plater.cpp:140
msgid "Materials"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:131
+#: src/slic3r/GUI/Plater.cpp:143
msgid "Manifold"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:174
+#: src/slic3r/GUI/Plater.cpp:193
msgid "Sliced Info"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:193 src/slic3r/GUI/Plater.cpp:823
+#: src/slic3r/GUI/Plater.cpp:212 src/slic3r/GUI/Plater.cpp:1048
msgid "Used Filament (m)"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:194
+#: src/slic3r/GUI/Plater.cpp:213
msgid "Used Filament (mm³)"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:195
+#: src/slic3r/GUI/Plater.cpp:214
msgid "Used Filament (g)"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:196 src/slic3r/GUI/Plater.cpp:838
+#: src/slic3r/GUI/Plater.cpp:215
+msgid "Used Material (unit)"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:216 src/slic3r/GUI/Plater.cpp:1063
#: src/libslic3r/PrintConfig.cpp:718
msgid "Cost"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:197 src/slic3r/GUI/Plater.cpp:852
+#: src/slic3r/GUI/Plater.cpp:217 src/slic3r/GUI/Plater.cpp:1035
+#: src/slic3r/GUI/Plater.cpp:1077
msgid "Estimated printing time"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:198
+#: src/slic3r/GUI/Plater.cpp:218
msgid "Number of tool changes"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:361
-msgid "Support"
+#: src/slic3r/GUI/Plater.cpp:292
+msgid "Click to edit preset"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:364
+#: src/slic3r/GUI/Plater.cpp:432
msgid "Select what kind of support do you need"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:365 src/libslic3r/GCode/PreviewData.cpp:162
-msgid "None"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:366 src/libslic3r/PrintConfig.cpp:1904
+#: src/slic3r/GUI/Plater.cpp:434 src/libslic3r/PrintConfig.cpp:1840
+#: src/libslic3r/PrintConfig.cpp:2448
msgid "Support on build plate only"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:367
+#: src/slic3r/GUI/Plater.cpp:435 src/slic3r/GUI/Plater.cpp:528
+msgid "For support enforcers only"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:436
msgid "Everywhere"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:379 src/slic3r/GUI/Tab.cpp:977
+#: src/slic3r/GUI/Plater.cpp:454 src/slic3r/GUI/Tab.cpp:1060
msgid "Brim"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:381
+#: src/slic3r/GUI/Plater.cpp:456
msgid ""
"This flag enables the brim that will be printed around each object on the "
"first layer."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:390
+#: src/slic3r/GUI/Plater.cpp:464
msgid "Purging volumes"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:556
+#: src/slic3r/GUI/Plater.cpp:688
msgid "Print settings"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:557 src/slic3r/GUI/Tab.cpp:1380
-#: src/slic3r/GUI/Tab.cpp:1381
+#: src/slic3r/GUI/Plater.cpp:689 src/slic3r/GUI/Tab.cpp:1475
+#: src/slic3r/GUI/Tab.cpp:1476
msgid "Filament"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:558 src/slic3r/GUI/Preset.cpp:1158
-msgid "SLA print"
+#: src/slic3r/GUI/Plater.cpp:690
+msgid "SLA print settings"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:559 src/slic3r/GUI/Preset.cpp:1159
+#: src/slic3r/GUI/Plater.cpp:691 src/slic3r/GUI/Preset.cpp:1277
msgid "SLA material"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:560
+#: src/slic3r/GUI/Plater.cpp:692
msgid "Printer"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:588
+#: src/slic3r/GUI/Plater.cpp:738 src/slic3r/GUI/Plater.cpp:3865
msgid "Send to printer"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:607
+#: src/slic3r/GUI/Plater.cpp:741 src/slic3r/GUI/Plater.cpp:2439
+#: src/slic3r/GUI/Plater.cpp:3661
msgid "Slice now"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:787
+#: src/slic3r/GUI/Plater.cpp:880
+msgid "Hold Shift to Slice & Export G-code"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:981
#, possible-c-format
msgid "%d (%d shells)"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:792
+#: src/slic3r/GUI/Plater.cpp:986
#, possible-c-format
msgid "Auto-repaired (%d errors)"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:795
+#: src/slic3r/GUI/Plater.cpp:989
#, possible-c-format
msgid ""
"%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d "
"facets reversed, %d backwards edges"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:805
+#: src/slic3r/GUI/Plater.cpp:999
msgid "Yes"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
+#: src/slic3r/GUI/Plater.cpp:1022
+msgid "Used Material (ml)"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:1025
+msgid "object(s)"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:1025
+msgid "supports and pad"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:1050 src/slic3r/GUI/Plater.cpp:1065
msgid "objects"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
+#: src/slic3r/GUI/Plater.cpp:1050 src/slic3r/GUI/Plater.cpp:1065
msgid "wipe tower"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:855
+#: src/slic3r/GUI/Plater.cpp:1080
msgid "normal mode"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:859
-msgid "silent mode"
+#: src/slic3r/GUI/Plater.cpp:1084
+msgid "stealth mode"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1304
+#: src/slic3r/GUI/Plater.cpp:1604
msgid "Loading"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1314
+#: src/slic3r/GUI/Plater.cpp:1614
#, possible-c-format
msgid "Processing input file %s\n"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1366
+#: src/slic3r/GUI/Plater.cpp:1672
msgid ""
"This file contains several objects positioned at multiple heights. Instead "
"of considering them as multiple objects, should I consider\n"
"this file as a single object having multiple parts?\n"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1369 src/slic3r/GUI/Plater.cpp:1411
+#: src/slic3r/GUI/Plater.cpp:1675 src/slic3r/GUI/Plater.cpp:1783
msgid "Multi-part object detected"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1388
+#: src/slic3r/GUI/Plater.cpp:1726
+msgid ""
+"This file cannot be loaded in a simple mode. Do you want to switch to an "
+"advanced mode?\n"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:1727
+msgid "Detected advanced data"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:1760
#, possible-c-format
msgid ""
"You can't to add the object(s) from %s because of one or some of them "
"is(are) multi-part"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1408
+#: src/slic3r/GUI/Plater.cpp:1780
msgid ""
"Multiple objects were loaded for a multi-material printer.\n"
"Instead of considering them as multiple objects, should I consider\n"
"these files to represent a single object having multiple parts?\n"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1424
+#: src/slic3r/GUI/Plater.cpp:1796
msgid "Loaded"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1492
+#: src/slic3r/GUI/Plater.cpp:1894
msgid ""
"Your object appears to be too large, so it was automatically scaled down to "
"fit your print bed."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1493
+#: src/slic3r/GUI/Plater.cpp:1895
msgid "Object too large?"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1536
-msgid "Export print config"
+#: src/slic3r/GUI/Plater.cpp:1945
+msgid "Export STL file:"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1538
+#: src/slic3r/GUI/Plater.cpp:1952
+msgid "Export AMF file:"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:1958
msgid "Save file as:"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1702
+#: src/slic3r/GUI/Plater.cpp:2123
msgid "Arranging canceled"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1705
+#: src/slic3r/GUI/Plater.cpp:2126
msgid "Arranging"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1736
+#: src/slic3r/GUI/Plater.cpp:2163
msgid "Could not arrange model objects! Some geometries may be invalid."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1740
+#: src/slic3r/GUI/Plater.cpp:2170
msgid "Arranging done."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1782
+#: src/slic3r/GUI/Plater.cpp:2211
msgid "Orientation search canceled"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1787
+#: src/slic3r/GUI/Plater.cpp:2216
msgid "Searching for optimal orientation"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1797
+#: src/slic3r/GUI/Plater.cpp:2278
msgid "Orientation found."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1818
+#: src/slic3r/GUI/Plater.cpp:2298
msgid ""
"The selected object can't be split because it contains more than one volume/"
"material."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1945 src/slic3r/GUI/PrintHostDialogs.cpp:174
+#: src/slic3r/GUI/Plater.cpp:2424
+msgid "Invalid data"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:2433
+msgid "Ready to slice"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:2471 src/slic3r/GUI/PrintHostDialogs.cpp:231
msgid "Cancelling"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1962
+#: src/slic3r/GUI/Plater.cpp:2488
msgid "Another export job is currently running."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2215
+#: src/slic3r/GUI/Plater.cpp:2749
msgid "Export failed"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2219 src/slic3r/GUI/PrintHostDialogs.cpp:175
+#: src/slic3r/GUI/Plater.cpp:2754 src/slic3r/GUI/PrintHostDialogs.cpp:232
msgid "Cancelled"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2346 src/slic3r/GUI/Tab.cpp:2736
-msgid "Delete"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2346
-msgid "Remove the selected object"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2349
+#: src/slic3r/GUI/Plater.cpp:2840 src/slic3r/GUI/Plater.cpp:2852
+#: src/slic3r/GUI/Plater.cpp:2939
msgid "Increase copies"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2349
+#: src/slic3r/GUI/Plater.cpp:2933 src/slic3r/GUI/Plater.cpp:2951
+msgid "Remove the selected object"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:2939
msgid "Place one more copy of the selected object"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2351
+#: src/slic3r/GUI/Plater.cpp:2941
msgid "Decrease copies"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2351
+#: src/slic3r/GUI/Plater.cpp:2941
msgid "Remove one copy of the selected object"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2353
+#: src/slic3r/GUI/Plater.cpp:2943
msgid "Set number of copies"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2353
+#: src/slic3r/GUI/Plater.cpp:2943
msgid "Change the number of copies of the selected object"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2363
+#: src/slic3r/GUI/Plater.cpp:2966
msgid "Reload from Disk"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2363
+#: src/slic3r/GUI/Plater.cpp:2966
msgid "Reload the selected file from Disk"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export object as STL"
+#: src/slic3r/GUI/Plater.cpp:2969
+msgid "Export the selected object as STL file"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export this single object as STL file"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2375
+#: src/slic3r/GUI/Plater.cpp:2981
msgid "Along X axis"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2375
+#: src/slic3r/GUI/Plater.cpp:2981
msgid "Mirror the selected object along the X axis"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2377
+#: src/slic3r/GUI/Plater.cpp:2983
msgid "Along Y axis"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2377
+#: src/slic3r/GUI/Plater.cpp:2983
msgid "Mirror the selected object along the Y axis"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2379
+#: src/slic3r/GUI/Plater.cpp:2985
msgid "Along Z axis"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2379
+#: src/slic3r/GUI/Plater.cpp:2985
msgid "Mirror the selected object along the Z axis"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2382
+#: src/slic3r/GUI/Plater.cpp:2988
msgid "Mirror"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2382
+#: src/slic3r/GUI/Plater.cpp:2988
msgid "Mirror the selected object"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2400
+#: src/slic3r/GUI/Plater.cpp:3008
msgid "To objects"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2400 src/slic3r/GUI/Plater.cpp:2431
+#: src/slic3r/GUI/Plater.cpp:3008 src/slic3r/GUI/Plater.cpp:3030
msgid "Split the selected object into individual objects"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2402
+#: src/slic3r/GUI/Plater.cpp:3010
msgid "To parts"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2402 src/slic3r/GUI/Plater.cpp:2451
+#: src/slic3r/GUI/Plater.cpp:3010 src/slic3r/GUI/Plater.cpp:3050
msgid "Split the selected object into individual sub-parts"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2405 src/slic3r/GUI/Plater.cpp:2431
-#: src/slic3r/GUI/Plater.cpp:2451
+#: src/slic3r/GUI/Plater.cpp:3013 src/slic3r/GUI/Plater.cpp:3030
+#: src/slic3r/GUI/Plater.cpp:3050 src/libslic3r/PrintConfig.cpp:3108
msgid "Split"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2405
+#: src/slic3r/GUI/Plater.cpp:3013
msgid "Split the selected object"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2435
+#: src/slic3r/GUI/Plater.cpp:3036
msgid "Optimize orientation"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2435
+#: src/slic3r/GUI/Plater.cpp:3036
msgid "Optimize the rotation of the object for better print results."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2795
+#: src/slic3r/GUI/Plater.cpp:3099
+msgid "3D editor view"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:3110 src/slic3r/GUI/Tab.cpp:2294
+msgid "Preview"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:3341
+msgid "All objects will be removed, continue ?"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:3476
msgid "Save G-code file as:"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2795
-msgid "Save Zip file as:"
+#: src/slic3r/GUI/Plater.cpp:3476
+msgid "Save SL1 file as:"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2845
+#: src/slic3r/GUI/Plater.cpp:3588
#, possible-c-format
msgid "STL file exported to %s"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2861
+#: src/slic3r/GUI/Plater.cpp:3604
#, possible-c-format
msgid "AMF file exported to %s"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2864
+#: src/slic3r/GUI/Plater.cpp:3607
#, possible-c-format
msgid "Error exporting AMF file %s"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2891
+#: src/slic3r/GUI/Plater.cpp:3633
#, possible-c-format
msgid "3MF file exported to %s"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2894
+#: src/slic3r/GUI/Plater.cpp:3636
#, possible-c-format
msgid "Error exporting 3MF file %s"
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:17 src/slic3r/GUI/Tab.cpp:1712
-#: src/slic3r/GUI/Tab.cpp:1911
+#: src/slic3r/GUI/Plater.cpp:3865
+msgid "Send G-code"
+msgstr ""
+
+#: src/slic3r/GUI/Preferences.cpp:19 src/slic3r/GUI/Tab.cpp:1818
+#: src/slic3r/GUI/Tab.cpp:2019
msgid "General"
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:34
+#: src/slic3r/GUI/Preferences.cpp:36
msgid "Remember output directory"
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:36
+#: src/slic3r/GUI/Preferences.cpp:38
msgid ""
"If this is enabled, Slic3r will prompt the last output directory instead of "
"the one containing the input files."
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:42
+#: src/slic3r/GUI/Preferences.cpp:44
msgid "Auto-center parts"
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:44
+#: src/slic3r/GUI/Preferences.cpp:46
msgid ""
"If this is enabled, Slic3r will auto-center objects around the print bed "
"center."
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:50
+#: src/slic3r/GUI/Preferences.cpp:52
msgid "Background processing"
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:52
+#: src/slic3r/GUI/Preferences.cpp:54
msgid ""
"If this is enabled, Slic3r will pre-process objects as soon as they're "
"loaded in order to save time when exporting G-code."
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:74
-msgid "Suppress \" - default - \" presets"
+#: src/slic3r/GUI/Preferences.cpp:63
+msgid ""
+"If enabled, PrusaSlicer will check for the new versions of itself online. "
+"When a new version becomes available a notification is displayed at the next "
+"application startup (never during program usage). This is only a "
+"notification mechanisms, no automatic installation is done."
+msgstr ""
+
+#: src/slic3r/GUI/Preferences.cpp:71
+msgid ""
+"If enabled, Slic3r downloads updates of built-in system presets in the "
+"background. These updates are downloaded into a separate temporary location. "
+"When a new preset version becomes available it is offered at application "
+"startup."
msgstr ""
#: src/slic3r/GUI/Preferences.cpp:76
+msgid "Suppress \" - default - \" presets"
+msgstr ""
+
+#: src/slic3r/GUI/Preferences.cpp:78
msgid ""
"Suppress \" - default - \" presets in the Print / Filament / Printer "
"selections once there are any other valid presets available."
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:82
+#: src/slic3r/GUI/Preferences.cpp:84
msgid "Show incompatible print and filament presets"
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:84
+#: src/slic3r/GUI/Preferences.cpp:86
msgid ""
"When checked, the print and filament presets are shown in the preset editor "
"even if they are marked as incompatible with the active printer"
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:90
+#: src/slic3r/GUI/Preferences.cpp:93
msgid "Use legacy OpenGL 1.1 rendering"
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:92
+#: src/slic3r/GUI/Preferences.cpp:95
msgid ""
"If you have rendering issues caused by a buggy OpenGL 2.0 driver, you may "
"try to check this checkbox. This will disable the layer height editing and "
"anti aliasing, so it is likely better to upgrade your graphics driver."
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:115
-msgid "You need to restart Slic3r to make the changes effective."
+#: src/slic3r/GUI/Preferences.cpp:103
+msgid "Use Retina resolution for the 3D scene"
msgstr ""
-#: src/slic3r/GUI/Preset.cpp:170
+#: src/slic3r/GUI/Preferences.cpp:105
+msgid ""
+"If enabled, the 3D scene will be rendered in Retina resolution. If you are "
+"experiencing 3D performance problems, disabling this option may help."
+msgstr ""
+
+#: src/slic3r/GUI/Preferences.cpp:130
+#, possible-c-format
+msgid "You need to restart %s to make the changes effective."
+msgstr ""
+
+#: src/slic3r/GUI/Preset.cpp:207
msgid "modified"
msgstr ""
-#: src/slic3r/GUI/Preset.cpp:862 src/slic3r/GUI/Preset.cpp:902
-#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:962
-#: src/slic3r/GUI/PresetBundle.cpp:1459 src/slic3r/GUI/PresetBundle.cpp:1512
+#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:970
+#: src/slic3r/GUI/Preset.cpp:1035 src/slic3r/GUI/Preset.cpp:1067
+#: src/slic3r/GUI/PresetBundle.cpp:1488 src/slic3r/GUI/PresetBundle.cpp:1553
msgid "System presets"
msgstr ""
-#: src/slic3r/GUI/Preset.cpp:906 src/slic3r/GUI/Preset.cpp:966
-#: src/slic3r/GUI/PresetBundle.cpp:1517
+#: src/slic3r/GUI/Preset.cpp:974 src/slic3r/GUI/Preset.cpp:1071
+#: src/slic3r/GUI/PresetBundle.cpp:1558
msgid "User presets"
msgstr ""
-#: src/slic3r/GUI/Preset.cpp:1157
+#: src/slic3r/GUI/Preset.cpp:1003 src/slic3r/GUI/Tab.cpp:240
+msgid "Add a new printer"
+msgstr ""
+
+#: src/slic3r/GUI/Preset.cpp:1275
msgid "filament"
msgstr ""
+#: src/slic3r/GUI/Preset.cpp:1276
+msgid "SLA print"
+msgstr ""
+
#: src/slic3r/GUI/PresetHints.cpp:28
-#, possible-c-format
msgid ""
-"If estimated layer time is below ~%ds, fan will run at %d%% and print speed "
-"will be reduced so that no less than %ds are spent on that layer (however, "
-"speed will never be reduced below %dmm/s)."
+"If estimated layer time is below ~%1%s, fan will run at %2%%% and print "
+"speed will be reduced so that no less than %3%s are spent on that layer "
+"(however, speed will never be reduced below %4%mm/s)."
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:32
-#, possible-c-format
+#: src/slic3r/GUI/PresetHints.cpp:35
msgid ""
"\n"
-"If estimated layer time is greater, but still below ~%ds, fan will run at a "
-"proportionally decreasing speed between %d%% and %d%%."
+"If estimated layer time is greater, but still below ~%1%s, fan will run at a "
+"proportionally decreasing speed between %2%%% and %3%%%."
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:36
+#: src/slic3r/GUI/PresetHints.cpp:39
msgid ""
"\n"
-"During the other layers, fan "
+"During the other layers, fan"
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:38
-msgid "Fan "
+#: src/slic3r/GUI/PresetHints.cpp:41
+msgid "Fan"
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:43
-#, possible-c-format
-msgid "will always run at %d%% "
-msgstr ""
-
-#: src/slic3r/GUI/PresetHints.cpp:46
-#, possible-c-format
-msgid "except for the first %d layers"
+#: src/slic3r/GUI/PresetHints.cpp:47
+msgid "will always run at %1%%%"
msgstr ""
#: src/slic3r/GUI/PresetHints.cpp:50
-msgid "except for the first layer"
+msgid "except for the first %1% layers."
msgstr ""
#: src/slic3r/GUI/PresetHints.cpp:52
+msgid "except for the first layer."
+msgstr ""
+
+#: src/slic3r/GUI/PresetHints.cpp:54
msgid "will be turned off."
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:153
+#: src/slic3r/GUI/PresetHints.cpp:155
msgid "external perimeters"
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:162
+#: src/slic3r/GUI/PresetHints.cpp:164
msgid "perimeters"
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:171
+#: src/slic3r/GUI/PresetHints.cpp:173
msgid "infill"
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:181
+#: src/slic3r/GUI/PresetHints.cpp:183
msgid "solid infill"
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:189
+#: src/slic3r/GUI/PresetHints.cpp:191
msgid "top solid infill"
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:200
+#: src/slic3r/GUI/PresetHints.cpp:202
msgid "support"
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:210
+#: src/slic3r/GUI/PresetHints.cpp:212
msgid "support interface"
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:216
+#: src/slic3r/GUI/PresetHints.cpp:218
msgid "First layer volumetric"
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:216
+#: src/slic3r/GUI/PresetHints.cpp:218
msgid "Bridging volumetric"
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:216
+#: src/slic3r/GUI/PresetHints.cpp:218
msgid "Volumetric"
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:217
-msgid " flow rate is maximized "
-msgstr ""
-
-#: src/slic3r/GUI/PresetHints.cpp:220
-msgid "by the print profile maximum"
-msgstr ""
-
-#: src/slic3r/GUI/PresetHints.cpp:221
-msgid "when printing "
+#: src/slic3r/GUI/PresetHints.cpp:219
+msgid "flow rate is maximized"
msgstr ""
#: src/slic3r/GUI/PresetHints.cpp:222
-msgid " with a volumetric rate "
+msgid "by the print profile maximum"
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:226
-#, possible-c-format
-msgid "%3.2f mm³/s"
+#: src/slic3r/GUI/PresetHints.cpp:223
+msgid "when printing"
+msgstr ""
+
+#: src/slic3r/GUI/PresetHints.cpp:224
+msgid "with a volumetric rate"
msgstr ""
#: src/slic3r/GUI/PresetHints.cpp:228
#, possible-c-format
-msgid " at filament speed %3.2f mm/s."
+msgid "%3.2f mm³/s at filament speed %3.2f mm/s."
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:247
+#: src/slic3r/GUI/PresetHints.cpp:246
msgid ""
"Recommended object thin wall thickness: Not available due to invalid layer "
"height."
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:264
+#: src/slic3r/GUI/PresetHints.cpp:262
#, possible-c-format
-msgid "Recommended object thin wall thickness for layer height %.2f and "
+msgid "Recommended object thin wall thickness for layer height %.2f and"
msgstr ""
-#: src/slic3r/GUI/PresetHints.cpp:271
+#: src/slic3r/GUI/PresetHints.cpp:268
#, possible-c-format
-msgid "%d lines: %.2lf mm"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
-msgid "Send G-Code to printer host"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
-msgid "Upload to Printer Host with the following filename:"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:31
-msgid "Start printing after upload"
+msgid "%d lines: %.2f mm"
msgstr ""
#: src/slic3r/GUI/PrintHostDialogs.cpp:33
+msgid "Send G-Code to printer host"
+msgstr ""
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:33
+msgid "Upload to Printer Host with the following filename:"
+msgstr ""
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:35
+msgid "Start printing after upload"
+msgstr ""
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:42
msgid "Use forward slashes ( / ) as a directory separator if needed."
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:111
-msgid "Cancel selected"
+#: src/slic3r/GUI/PrintHostDialogs.cpp:148
+msgid "ID"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:113
-msgid "Show error message"
+#: src/slic3r/GUI/PrintHostDialogs.cpp:149
+msgid "Progress"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:115
-msgid "Close"
+#: src/slic3r/GUI/PrintHostDialogs.cpp:150
+msgid "Status"
+msgstr ""
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:151
+msgid "Host"
msgstr ""
#: src/slic3r/GUI/PrintHostDialogs.cpp:152
-#: src/slic3r/GUI/PrintHostDialogs.cpp:171
+msgid "Filename"
+msgstr ""
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:153
+msgid "Error Message"
+msgstr ""
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:156
+msgid "Cancel selected"
+msgstr ""
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:158
+msgid "Show error message"
+msgstr ""
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:197
+#: src/slic3r/GUI/PrintHostDialogs.cpp:228
msgid "Enqueued"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:172
+#: src/slic3r/GUI/PrintHostDialogs.cpp:229
msgid "Uploading"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:176
+#: src/slic3r/GUI/PrintHostDialogs.cpp:233
msgid "Completed"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:214
+#: src/slic3r/GUI/PrintHostDialogs.cpp:271
msgid "Error uploading to print host:"
msgstr ""
@@ -2565,11 +3253,11 @@ msgstr ""
msgid "Time"
msgstr ""
-#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78 src/libslic3r/PrintConfig.cpp:603
-#: src/libslic3r/PrintConfig.cpp:653 src/libslic3r/PrintConfig.cpp:670
-#: src/libslic3r/PrintConfig.cpp:2352 src/libslic3r/PrintConfig.cpp:2360
-#: src/libslic3r/PrintConfig.cpp:2432 src/libslic3r/PrintConfig.cpp:2440
+#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/WipeTowerDialog.cpp:82
+#: src/libslic3r/PrintConfig.cpp:613 src/libslic3r/PrintConfig.cpp:657
+#: src/libslic3r/PrintConfig.cpp:672 src/libslic3r/PrintConfig.cpp:2268
+#: src/libslic3r/PrintConfig.cpp:2277 src/libslic3r/PrintConfig.cpp:2337
+#: src/libslic3r/PrintConfig.cpp:2344
msgid "s"
msgstr ""
@@ -2577,215 +3265,227 @@ msgstr ""
msgid "Volumetric speed"
msgstr ""
-#: src/slic3r/GUI/SysInfoDialog.cpp:40
-msgid "Slic3r Prusa Edition - System Information"
+#: src/slic3r/GUI/RammingChart.cpp:81 src/libslic3r/PrintConfig.cpp:570
+#: src/libslic3r/PrintConfig.cpp:1210
+msgid "mm³/s"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:49 src/libslic3r/PrintConfig.cpp:202
+#: src/slic3r/GUI/SysInfoDialog.cpp:44
+msgid "System Information"
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:52 src/libslic3r/PrintConfig.cpp:230
msgid "Compatible printers"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:50
+#: src/slic3r/GUI/Tab.cpp:53
msgid "Select the printers this profile is compatible with."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:55 src/libslic3r/PrintConfig.cpp:215
+#: src/slic3r/GUI/Tab.cpp:58 src/libslic3r/PrintConfig.cpp:245
msgid "Compatible print profiles"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:56
+#: src/slic3r/GUI/Tab.cpp:59
msgid "Select the print profiles this profile is compatible with."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:118
-msgid "Save current "
+#. TRN "Save current Settings"
+#: src/slic3r/GUI/Tab.cpp:133
+#, possible-c-format
+msgid "Save current %s"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:119
+#: src/slic3r/GUI/Tab.cpp:134
msgid "Delete this preset"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:131
+#: src/slic3r/GUI/Tab.cpp:139
msgid ""
"Hover the cursor over buttons to find more information \n"
"or click this button."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:824
+#: src/slic3r/GUI/Tab.cpp:918
msgid "It's a default preset."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:825
+#: src/slic3r/GUI/Tab.cpp:919
msgid "It's a system preset."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:826
-msgid "Current preset is inherited from "
+#: src/slic3r/GUI/Tab.cpp:920
+#, possible-c-format
+msgid "Current preset is inherited from %s"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:831
-msgid "It can't be deleted or modified. "
+#: src/slic3r/GUI/Tab.cpp:921
+msgid "default preset"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:832
+#: src/slic3r/GUI/Tab.cpp:925
+msgid "It can't be deleted or modified."
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:926
msgid ""
-"Any modifications should be saved as a new preset inherited from this one. "
+"Any modifications should be saved as a new preset inherited from this one."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:833
+#: src/slic3r/GUI/Tab.cpp:927
msgid "To do that please specify a new name for the preset."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:837
+#: src/slic3r/GUI/Tab.cpp:931
msgid "Additional information:"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:843
+#: src/slic3r/GUI/Tab.cpp:937
msgid "printer model"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:851
+#: src/slic3r/GUI/Tab.cpp:945
msgid "default print profile"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:854
+#: src/slic3r/GUI/Tab.cpp:948
msgid "default filament profile"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:868
+#: src/slic3r/GUI/Tab.cpp:962
msgid "default SLA material profile"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:872
+#: src/slic3r/GUI/Tab.cpp:966
msgid "default SLA print profile"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:919 src/slic3r/GUI/Tab.cpp:3174
+#: src/slic3r/GUI/Tab.cpp:1001 src/slic3r/GUI/Tab.cpp:3417
msgid "Layers and perimeters"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:920 src/libslic3r/PrintConfig.cpp:46
+#: src/slic3r/GUI/Tab.cpp:1002 src/libslic3r/PrintConfig.cpp:56
msgid "Layer height"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:924
+#: src/slic3r/GUI/Tab.cpp:1006
msgid "Vertical shells"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:935
+#: src/slic3r/GUI/Tab.cpp:1017
msgid "Horizontal shells"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:936 src/libslic3r/PrintConfig.cpp:1788
+#: src/slic3r/GUI/Tab.cpp:1018 src/libslic3r/PrintConfig.cpp:1735
msgid "Solid layers"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:941
+#: src/slic3r/GUI/Tab.cpp:1023
msgid "Quality (slower slicing)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:958
+#: src/slic3r/GUI/Tab.cpp:1041
msgid "Reducing printing time"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:970
+#: src/slic3r/GUI/Tab.cpp:1053
msgid "Skirt and brim"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:987
+#: src/slic3r/GUI/Tab.cpp:1070
msgid "Raft"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:991
+#: src/slic3r/GUI/Tab.cpp:1074
msgid "Options for support material and raft"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1006
+#: src/slic3r/GUI/Tab.cpp:1089
msgid "Speed for print moves"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1018
+#: src/slic3r/GUI/Tab.cpp:1101
msgid "Speed for non-print moves"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1021
+#: src/slic3r/GUI/Tab.cpp:1104
msgid "Modifiers"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1024
+#: src/slic3r/GUI/Tab.cpp:1107
msgid "Acceleration control (advanced)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1031
+#: src/slic3r/GUI/Tab.cpp:1114
msgid "Autospeed (advanced)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1037
+#: src/slic3r/GUI/Tab.cpp:1122
msgid "Multiple Extruders"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1045
+#: src/slic3r/GUI/Tab.cpp:1130
msgid "Ooze prevention"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1062
+#: src/slic3r/GUI/Tab.cpp:1147
msgid "Extrusion width"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1072
+#: src/slic3r/GUI/Tab.cpp:1157
msgid "Overlap"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1075
+#: src/slic3r/GUI/Tab.cpp:1160
msgid "Flow"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1078
+#: src/slic3r/GUI/Tab.cpp:1169
msgid "Other"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1085 src/slic3r/GUI/Tab.cpp:3213
+#: src/slic3r/GUI/Tab.cpp:1172 src/slic3r/GUI/Tab.cpp:3465
msgid "Output options"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1086
+#: src/slic3r/GUI/Tab.cpp:1173
msgid "Sequential printing"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1088
+#: src/slic3r/GUI/Tab.cpp:1175
msgid "Extruder clearance (mm)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1097 src/slic3r/GUI/Tab.cpp:3214
+#: src/slic3r/GUI/Tab.cpp:1184 src/slic3r/GUI/Tab.cpp:3466
msgid "Output file"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1103 src/libslic3r/PrintConfig.cpp:1438
+#: src/slic3r/GUI/Tab.cpp:1191 src/libslic3r/PrintConfig.cpp:1408
msgid "Post-processing scripts"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1109 src/slic3r/GUI/Tab.cpp:1110
-#: src/slic3r/GUI/Tab.cpp:1483 src/slic3r/GUI/Tab.cpp:1484
-#: src/slic3r/GUI/Tab.cpp:1883 src/slic3r/GUI/Tab.cpp:1884
-#: src/slic3r/GUI/Tab.cpp:1964 src/slic3r/GUI/Tab.cpp:1965
-#: src/slic3r/GUI/Tab.cpp:3119 src/slic3r/GUI/Tab.cpp:3120
+#: src/slic3r/GUI/Tab.cpp:1197 src/slic3r/GUI/Tab.cpp:1198
+#: src/slic3r/GUI/Tab.cpp:1581 src/slic3r/GUI/Tab.cpp:1582
+#: src/slic3r/GUI/Tab.cpp:1991 src/slic3r/GUI/Tab.cpp:1992
+#: src/slic3r/GUI/Tab.cpp:2085 src/slic3r/GUI/Tab.cpp:2086
+#: src/slic3r/GUI/Tab.cpp:3354 src/slic3r/GUI/Tab.cpp:3355
msgid "Notes"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1116 src/slic3r/GUI/Tab.cpp:1491
-#: src/slic3r/GUI/Tab.cpp:1890 src/slic3r/GUI/Tab.cpp:1971
-#: src/slic3r/GUI/Tab.cpp:3127 src/slic3r/GUI/Tab.cpp:3219
+#: src/slic3r/GUI/Tab.cpp:1204 src/slic3r/GUI/Tab.cpp:1589
+#: src/slic3r/GUI/Tab.cpp:1998 src/slic3r/GUI/Tab.cpp:2092
+#: src/slic3r/GUI/Tab.cpp:3362 src/slic3r/GUI/Tab.cpp:3471
msgid "Dependencies"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1117 src/slic3r/GUI/Tab.cpp:1492
-#: src/slic3r/GUI/Tab.cpp:1891 src/slic3r/GUI/Tab.cpp:1972
-#: src/slic3r/GUI/Tab.cpp:3128 src/slic3r/GUI/Tab.cpp:3220
+#: src/slic3r/GUI/Tab.cpp:1205 src/slic3r/GUI/Tab.cpp:1590
+#: src/slic3r/GUI/Tab.cpp:1999 src/slic3r/GUI/Tab.cpp:2093
+#: src/slic3r/GUI/Tab.cpp:3363 src/slic3r/GUI/Tab.cpp:3472
msgid "Profile dependencies"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1161
-#, no-c-format
+#: src/slic3r/GUI/Tab.cpp:1251
+#, possible-c-format
msgid ""
"The Spiral Vase mode requires:\n"
"- one perimeter\n"
@@ -2797,11 +3497,11 @@ msgid ""
"Shall I adjust those settings in order to enable Spiral Vase?"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1168
+#: src/slic3r/GUI/Tab.cpp:1258
msgid "Spiral Vase"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1191
+#: src/slic3r/GUI/Tab.cpp:1281
msgid ""
"The Wipe Tower currently supports the non-soluble supports only\n"
"if they are printed with the current extruder without triggering a tool "
@@ -2812,11 +3512,11 @@ msgid ""
"Shall I adjust those settings in order to enable the Wipe Tower?"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1195 src/slic3r/GUI/Tab.cpp:1212
+#: src/slic3r/GUI/Tab.cpp:1285 src/slic3r/GUI/Tab.cpp:1302
msgid "Wipe Tower"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1209
+#: src/slic3r/GUI/Tab.cpp:1299
msgid ""
"For the Wipe Tower to work with the soluble supports, the support layers\n"
"need to be synchronized with the object layers.\n"
@@ -2824,7 +3524,7 @@ msgid ""
"Shall I synchronize support layers in order to enable the Wipe Tower?"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1227
+#: src/slic3r/GUI/Tab.cpp:1317
msgid ""
"Supports work better, if the following feature is enabled:\n"
"- Detect bridging perimeters\n"
@@ -2832,409 +3532,415 @@ msgid ""
"Shall I adjust those settings for supports?"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1230
+#: src/slic3r/GUI/Tab.cpp:1320
msgid "Support Generator"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1272
-msgid "The "
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1272
-#, no-c-format
+#: src/slic3r/GUI/Tab.cpp:1362
msgid ""
-" infill pattern is not supposed to work at 100% density.\n"
+"The %1% infill pattern is not supposed to work at 100%% density.\n"
"\n"
"Shall I switch to rectilinear fill pattern?"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1388
-msgid "Temperature "
+#: src/slic3r/GUI/Tab.cpp:1483 src/libslic3r/PrintConfig.cpp:2005
+msgid "Temperature"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1394
+#: src/slic3r/GUI/Tab.cpp:1489
msgid "Bed"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1399
+#: src/slic3r/GUI/Tab.cpp:1494
msgid "Cooling"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1400 src/libslic3r/PrintConfig.cpp:1333
-#: src/libslic3r/PrintConfig.cpp:2212
+#: src/slic3r/GUI/Tab.cpp:1495 src/libslic3r/PrintConfig.cpp:1311
+#: src/libslic3r/PrintConfig.cpp:2124
msgid "Enable"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1411
+#: src/slic3r/GUI/Tab.cpp:1506
msgid "Fan settings"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1412
+#: src/slic3r/GUI/Tab.cpp:1507
msgid "Fan speed"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1420
+#: src/slic3r/GUI/Tab.cpp:1515
msgid "Cooling thresholds"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1426
+#: src/slic3r/GUI/Tab.cpp:1521
msgid "Filament properties"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1430
+#: src/slic3r/GUI/Tab.cpp:1525
msgid "Print speed override"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1440
+#: src/slic3r/GUI/Tab.cpp:1535
msgid "Toolchange parameters with single extruder MM printers"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1455
+#: src/slic3r/GUI/Tab.cpp:1550
msgid "Ramming settings"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1470 src/slic3r/GUI/Tab.cpp:1846
+#: src/slic3r/GUI/Tab.cpp:1568 src/slic3r/GUI/Tab.cpp:1954
msgid "Custom G-code"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1471 src/slic3r/GUI/Tab.cpp:1847
-#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:1833
+#: src/slic3r/GUI/Tab.cpp:1569 src/slic3r/GUI/Tab.cpp:1955
+#: src/libslic3r/PrintConfig.cpp:1761 src/libslic3r/PrintConfig.cpp:1776
msgid "Start G-code"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1477 src/slic3r/GUI/Tab.cpp:1853
-#: src/libslic3r/PrintConfig.cpp:333 src/libslic3r/PrintConfig.cpp:344
+#: src/slic3r/GUI/Tab.cpp:1575 src/slic3r/GUI/Tab.cpp:1961
+#: src/libslic3r/PrintConfig.cpp:360 src/libslic3r/PrintConfig.cpp:370
msgid "End G-code"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1588 src/slic3r/GUI/Tab.cpp:1642
-msgid " Browse "
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1605 src/slic3r/GUI/Tab.cpp:1788
+#: src/slic3r/GUI/Tab.cpp:1706 src/slic3r/GUI/Tab.cpp:1894
msgid "Test"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1615
+#: src/slic3r/GUI/Tab.cpp:1716
msgid "Could not get a valid Printer Host reference"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1621 src/slic3r/GUI/Tab.cpp:1801
+#: src/slic3r/GUI/Tab.cpp:1722 src/slic3r/GUI/Tab.cpp:1907
msgid "Success!"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1636
+#: src/slic3r/GUI/Tab.cpp:1737
msgid ""
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
"signed certificate."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1648
+#: src/slic3r/GUI/Tab.cpp:1750
msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1649
+#: src/slic3r/GUI/Tab.cpp:1751
msgid "Open CA certificate file"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1676
+#: src/slic3r/GUI/Tab.cpp:1779
+#, possible-c-format
msgid ""
"HTTPS CA File:\n"
-"\tOn this system, Slic3r uses HTTPS certificates from the system Certificate "
+" \tOn this system, %s uses HTTPS certificates from the system Certificate "
"Store or Keychain.\n"
-"\tTo use a custom CA file, please import your CA file into Certificate "
+" \tTo use a custom CA file, please import your CA file into Certificate "
"Store / Keychain."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1713 src/slic3r/GUI/Tab.cpp:1912
+#: src/slic3r/GUI/Tab.cpp:1819 src/slic3r/GUI/Tab.cpp:2020
msgid "Size and coordinates"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1717 src/slic3r/GUI/Tab.cpp:1916
-#: src/slic3r/GUI/Tab.cpp:2792
-msgid " Set "
+#: src/slic3r/GUI/Tab.cpp:1824 src/slic3r/GUI/Tab.cpp:2025
+#: src/slic3r/GUI/Tab.cpp:3009
+msgid "Set"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1740
+#: src/slic3r/GUI/Tab.cpp:1846
msgid "Capabilities"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1745
+#: src/slic3r/GUI/Tab.cpp:1851
msgid "Number of extruders of the printer."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1773
+#: src/slic3r/GUI/Tab.cpp:1879
msgid "USB/Serial connection"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1774 src/libslic3r/PrintConfig.cpp:1660
+#: src/slic3r/GUI/Tab.cpp:1880 src/libslic3r/PrintConfig.cpp:1616
msgid "Serial port"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1779
+#: src/slic3r/GUI/Tab.cpp:1885
msgid "Rescan serial ports"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1801
+#: src/slic3r/GUI/Tab.cpp:1907
msgid "Connection to printer works correctly."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1804
+#: src/slic3r/GUI/Tab.cpp:1910
msgid "Connection failed."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1817 src/slic3r/GUI/Tab.cpp:1961
+#: src/slic3r/GUI/Tab.cpp:1923 src/slic3r/GUI/Tab.cpp:2080
msgid "Print Host upload"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1859 src/libslic3r/PrintConfig.cpp:92
+#: src/slic3r/GUI/Tab.cpp:1967 src/libslic3r/PrintConfig.cpp:129
msgid "Before layer change G-code"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1865 src/libslic3r/PrintConfig.cpp:1042
+#: src/slic3r/GUI/Tab.cpp:1973 src/libslic3r/PrintConfig.cpp:1032
msgid "After layer change G-code"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1871 src/libslic3r/PrintConfig.cpp:2111
+#: src/slic3r/GUI/Tab.cpp:1979 src/libslic3r/PrintConfig.cpp:2031
msgid "Tool change G-code"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1877
+#: src/slic3r/GUI/Tab.cpp:1985
msgid "Between objects G-code (for sequential printing)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1938
+#: src/slic3r/GUI/Tab.cpp:2047
msgid "Display"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1949 src/slic3r/GUI/Tab.cpp:3102
+#: src/slic3r/GUI/Tab.cpp:2058
+msgid "Tilt"
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:2059
+msgid "Tilt time"
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:2065 src/slic3r/GUI/Tab.cpp:3336
msgid "Corrections"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2011 src/slic3r/GUI/Tab.cpp:2073
-#: src/libslic3r/PrintConfig.cpp:1088 src/libslic3r/PrintConfig.cpp:1098
-#: src/libslic3r/PrintConfig.cpp:1108 src/libslic3r/PrintConfig.cpp:1121
-#: src/libslic3r/PrintConfig.cpp:1132 src/libslic3r/PrintConfig.cpp:1143
-#: src/libslic3r/PrintConfig.cpp:1154
+#: src/slic3r/GUI/Tab.cpp:2142 src/slic3r/GUI/Tab.cpp:2215
+#: src/libslic3r/PrintConfig.cpp:1082 src/libslic3r/PrintConfig.cpp:1100
+#: src/libslic3r/PrintConfig.cpp:1118 src/libslic3r/PrintConfig.cpp:1135
+#: src/libslic3r/PrintConfig.cpp:1146 src/libslic3r/PrintConfig.cpp:1157
+#: src/libslic3r/PrintConfig.cpp:1168
msgid "Machine limits"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2025
-msgid "Values in this column are for Full Power mode"
+#: src/slic3r/GUI/Tab.cpp:2156
+msgid "Values in this column are for Normal mode"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2026
-msgid "Full Power"
+#: src/slic3r/GUI/Tab.cpp:2157
+msgid "Normal"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2031
-msgid "Values in this column are for Silent mode"
+#: src/slic3r/GUI/Tab.cpp:2162
+msgid "Values in this column are for Stealth mode"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2032
-msgid "Silent"
+#: src/slic3r/GUI/Tab.cpp:2163
+msgid "Stealth"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2040
+#: src/slic3r/GUI/Tab.cpp:2171
msgid "Maximum feedrates"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2045
+#: src/slic3r/GUI/Tab.cpp:2176
msgid "Maximum accelerations"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2052
+#: src/slic3r/GUI/Tab.cpp:2183
msgid "Jerk limits"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2057
+#: src/slic3r/GUI/Tab.cpp:2188
msgid "Minimum feedrates"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2095 src/slic3r/GUI/Tab.cpp:2103
+#: src/slic3r/GUI/Tab.cpp:2237 src/slic3r/GUI/Tab.cpp:2245
msgid "Single extruder MM setup"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2104
+#: src/slic3r/GUI/Tab.cpp:2246
msgid "Single extruder multimaterial parameters"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2118 src/libslic3r/GCode/PreviewData.cpp:475
+#: src/slic3r/GUI/Tab.cpp:2259 src/libslic3r/GCode/PreviewData.cpp:475
#, possible-c-format
msgid "Extruder %d"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2125
+#: src/slic3r/GUI/Tab.cpp:2266
msgid "Layer height limits"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2130
+#: src/slic3r/GUI/Tab.cpp:2271
msgid "Position (for multi-extruder printers)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2133
+#: src/slic3r/GUI/Tab.cpp:2274
msgid "Retraction"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2136
+#: src/slic3r/GUI/Tab.cpp:2277
msgid "Only lift Z"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2149
+#: src/slic3r/GUI/Tab.cpp:2290
msgid ""
"Retraction when tool is disabled (advanced settings for multi-extruder "
"setups)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2153
-msgid "Preview"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2284
+#: src/slic3r/GUI/Tab.cpp:2449
msgid ""
"The Wipe option is not available when using the Firmware Retraction mode.\n"
"\n"
"Shall I disable it in order to enable Firmware Retraction?"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2286
+#: src/slic3r/GUI/Tab.cpp:2451
msgid "Firmware Retraction"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2565
+#: src/slic3r/GUI/Tab.cpp:2777
#, possible-c-format
msgid "Default preset (%s)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2566
+#: src/slic3r/GUI/Tab.cpp:2778
#, possible-c-format
msgid "Preset (%s)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2583
+#: src/slic3r/GUI/Tab.cpp:2795
msgid "has the following unsaved changes:"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2586
+#: src/slic3r/GUI/Tab.cpp:2798
msgid "is not compatible with printer"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2587
+#: src/slic3r/GUI/Tab.cpp:2799
msgid "is not compatible with print profile"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2589
+#: src/slic3r/GUI/Tab.cpp:2801
msgid "and it has the following unsaved changes:"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2592
-msgid "Discard changes and continue anyway?"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2593
+#: src/slic3r/GUI/Tab.cpp:2805
msgid "Unsaved Changes"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2604
-msgid "It's impossible to print multi-part object(s) with SLA technology."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2605
+#: src/slic3r/GUI/Tab.cpp:2817
msgid "Please check your object list before preset changing."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2699
+#: src/slic3r/GUI/Tab.cpp:2896
+msgid "%1% - Copy"
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:2919
msgid "The supplied name is empty. It can't be saved."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2704
+#: src/slic3r/GUI/Tab.cpp:2924
msgid "Cannot overwrite a system profile."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2708
+#: src/slic3r/GUI/Tab.cpp:2928
msgid "Cannot overwrite an external profile."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2734
+#: src/slic3r/GUI/Tab.cpp:2954
msgid "remove"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2734
+#: src/slic3r/GUI/Tab.cpp:2954
msgid "delete"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2735
-msgid "Are you sure you want to "
+#. TRN remove/delete
+#: src/slic3r/GUI/Tab.cpp:2956
+msgid "Are you sure you want to %1% the selected preset?"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2735
-msgid " the selected preset?"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2736
+#: src/slic3r/GUI/Tab.cpp:2957
msgid "Remove"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2737
-msgid " Preset"
+#. TRN Remove/Delete
+#: src/slic3r/GUI/Tab.cpp:2959
+msgid "%1% Preset"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2791
-msgid "All"
+#: src/slic3r/GUI/Tab.cpp:3085
+msgid "LOCKED LOCK"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2869
+#. TRN Description for "LOCKED LOCK"
+#: src/slic3r/GUI/Tab.cpp:3087
msgid ""
-"LOCKED LOCK;indicates that the settings are the same as the system values "
-"for the current option group"
+"indicates that the settings are the same as the system values for the "
+"current option group"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2872
+#: src/slic3r/GUI/Tab.cpp:3089
+msgid "UNLOCKED LOCK"
+msgstr ""
+
+#. TRN Description for "UNLOCKED LOCK"
+#: src/slic3r/GUI/Tab.cpp:3091
msgid ""
-"UNLOCKED LOCK;indicates that some settings were changed and are not equal to "
-"the system values for the current option group.\n"
+"indicates that some settings were changed and are not equal to the system "
+"values for the current option group.\n"
"Click the UNLOCKED LOCK icon to reset all settings for current option group "
"to the system values."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2878
+#: src/slic3r/GUI/Tab.cpp:3096
+msgid "WHITE BULLET"
+msgstr ""
+
+#. TRN Description for "WHITE BULLET"
+#: src/slic3r/GUI/Tab.cpp:3098
msgid ""
-"WHITE BULLET;for the left button: \tindicates a non-system preset,\n"
+"for the left button: \tindicates a non-system preset,\n"
"for the right button: \tindicates that the settings hasn't been modified."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2882
+#: src/slic3r/GUI/Tab.cpp:3101
+msgid "BACK ARROW"
+msgstr ""
+
+#. TRN Description for "BACK ARROW"
+#: src/slic3r/GUI/Tab.cpp:3103
msgid ""
-"BACK ARROW;indicates that the settings were changed and are not equal to the "
-"last saved preset for the current option group.\n"
+"indicates that the settings were changed and are not equal to the last saved "
+"preset for the current option group.\n"
"Click the BACK ARROW icon to reset all settings for the current option group "
"to the last saved preset."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2908
+#: src/slic3r/GUI/Tab.cpp:3128
msgid ""
"LOCKED LOCK icon indicates that the settings are the same as the system "
"values for the current option group"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2910
+#: src/slic3r/GUI/Tab.cpp:3130
msgid ""
"UNLOCKED LOCK icon indicates that some settings were changed and are not "
"equal to the system values for the current option group.\n"
"Click to reset all settings for current option group to the system values."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2913
+#: src/slic3r/GUI/Tab.cpp:3133
msgid "WHITE BULLET icon indicates a non system preset."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2916
+#: src/slic3r/GUI/Tab.cpp:3136
msgid ""
"WHITE BULLET icon indicates that the settings are the same as in the last "
"saved preset for the current option group."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2918
+#: src/slic3r/GUI/Tab.cpp:3138
msgid ""
"BACK ARROW icon indicates that the settings were changed and are not equal "
"to the last saved preset for the current option group.\n"
@@ -3242,124 +3948,143 @@ msgid ""
"preset."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2924
+#: src/slic3r/GUI/Tab.cpp:3144
msgid ""
"LOCKED LOCK icon indicates that the value is the same as the system value."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2925
+#: src/slic3r/GUI/Tab.cpp:3145
msgid ""
"UNLOCKED LOCK icon indicates that the value was changed and is not equal to "
"the system value.\n"
"Click to reset current value to the system value."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2931
+#: src/slic3r/GUI/Tab.cpp:3151
msgid ""
"WHITE BULLET icon indicates that the value is the same as in the last saved "
"preset."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2932
+#: src/slic3r/GUI/Tab.cpp:3152
msgid ""
"BACK ARROW icon indicates that the value was changed and is not equal to the "
"last saved preset.\n"
"Click to reset current value to the last saved preset."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3031
-msgid " as:"
+#. TRN Preset
+#: src/slic3r/GUI/Tab.cpp:3265
+#, possible-c-format
+msgid "Save %s as:"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3075
+#: src/slic3r/GUI/Tab.cpp:3309
msgid "the following postfix are not allowed:"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3079
+#: src/slic3r/GUI/Tab.cpp:3313
msgid "The supplied name is not available."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3092
+#: src/slic3r/GUI/Tab.cpp:3326
msgid "Material"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3094 src/slic3r/GUI/Tab.cpp:3176
+#: src/slic3r/GUI/Tab.cpp:3328 src/slic3r/GUI/Tab.cpp:3419
msgid "Layers"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3098
+#: src/slic3r/GUI/Tab.cpp:3332
msgid "Exposure"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3183
+#: src/slic3r/GUI/Tab.cpp:3427
msgid "Support head"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3188
+#: src/slic3r/GUI/Tab.cpp:3432
msgid "Support pillar"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3196
+#: src/slic3r/GUI/Tab.cpp:3442
msgid "Connection of the support sticks and junctions"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3200
+#: src/slic3r/GUI/Tab.cpp:3447
msgid "Automatic generation"
msgstr ""
-#: src/slic3r/GUI/Tab.hpp:293 src/slic3r/GUI/Tab.hpp:381
+#: src/slic3r/GUI/Tab.cpp:3509
+msgid "Head penetration should not be greater than the head width."
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:3510
+msgid "Invalid Head penetration"
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:3522
+msgid "Pinhead diameter should be smaller than the pillar diameter."
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:3523
+msgid "Invalid pinhead diameter"
+msgstr ""
+
+#: src/slic3r/GUI/Tab.hpp:318 src/slic3r/GUI/Tab.hpp:411
msgid "Print Settings"
msgstr ""
-#: src/slic3r/GUI/Tab.hpp:311
+#: src/slic3r/GUI/Tab.hpp:337
msgid "Filament Settings"
msgstr ""
-#: src/slic3r/GUI/Tab.hpp:344
+#: src/slic3r/GUI/Tab.hpp:372
msgid "Printer Settings"
msgstr ""
-#: src/slic3r/GUI/Tab.hpp:367
+#: src/slic3r/GUI/Tab.hpp:396
msgid "Material Settings"
msgstr ""
-#: src/slic3r/GUI/Tab.hpp:393
+#: src/slic3r/GUI/Tab.hpp:423
msgid "Save preset"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
+#: src/slic3r/GUI/UpdateDialogs.cpp:30
msgid "Update available"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
-msgid "New version of Slic3r PE is available"
+#: src/slic3r/GUI/UpdateDialogs.cpp:30
+#, possible-c-format
+msgid "New version of %s is available"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:35
+#: src/slic3r/GUI/UpdateDialogs.cpp:37
msgid "To download, follow the link below."
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:42
+#: src/slic3r/GUI/UpdateDialogs.cpp:45
msgid "Current version:"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:44
+#: src/slic3r/GUI/UpdateDialogs.cpp:47
msgid "New version:"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:52
+#: src/slic3r/GUI/UpdateDialogs.cpp:55
msgid "Don't notify about new releases any more"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:70 src/slic3r/GUI/UpdateDialogs.cpp:162
+#: src/slic3r/GUI/UpdateDialogs.cpp:73 src/slic3r/GUI/UpdateDialogs.cpp:168
msgid "Configuration update"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:70
+#: src/slic3r/GUI/UpdateDialogs.cpp:73
msgid "Configuration update is available"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:73
+#: src/slic3r/GUI/UpdateDialogs.cpp:76
msgid ""
"Would you like to install it?\n"
"\n"
@@ -3369,47 +4094,51 @@ msgid ""
"Updated configuration bundles:"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
-msgid "Slic3r incompatibility"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
-msgid "Slic3r configuration is incompatible"
-msgstr ""
-
#: src/slic3r/GUI/UpdateDialogs.cpp:112
-msgid ""
-"This version of Slic3r PE is not compatible with currently installed "
-"configuration bundles.\n"
-"This probably happened as a result of running an older Slic3r PE after using "
-"a newer one.\n"
-"\n"
-"You may either exit Slic3r and try again with a newer version, or you may re-"
-"run the initial configuration. Doing so will create a backup snapshot of the "
-"existing configuration before installing files compatible with this Slic3r.\n"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:121
#, possible-c-format
-msgid "This Slic3r PE version: %s"
+msgid "%s incompatibility"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:126
+#: src/slic3r/GUI/UpdateDialogs.cpp:113
+#, possible-c-format
+msgid "%s configuration is incompatible"
+msgstr ""
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:118
+#, possible-c-format
+msgid ""
+"This version of %s is not compatible with currently installed configuration "
+"bundles.\n"
+"This probably happened as a result of running an older %s after using a "
+"newer one.\n"
+"\n"
+"You may either exit %s and try again with a newer version, or you may re-run "
+"the initial configuration. Doing so will create a backup snapshot of the "
+"existing configuration before installing files compatible with this %s.\n"
+msgstr ""
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:127
+#, possible-c-format
+msgid "This %s version: %s"
+msgstr ""
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:132
msgid "Incompatible bundles:"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:142
-msgid "Exit Slic3r"
+#: src/slic3r/GUI/UpdateDialogs.cpp:148
+#, possible-c-format
+msgid "Exit %s"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:145
+#: src/slic3r/GUI/UpdateDialogs.cpp:151
msgid "Re-configure"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:166
+#: src/slic3r/GUI/UpdateDialogs.cpp:172
#, possible-c-format
msgid ""
-"Slic3r PE now uses an updated configuration structure.\n"
+"%s now uses an updated configuration structure.\n"
"\n"
"So called 'System presets' have been introduced, which hold the built-in "
"default settings for various printers. These System presets cannot be "
@@ -3422,15 +4151,15 @@ msgid ""
"choose whether to enable automatic preset updates."
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:182
+#: src/slic3r/GUI/UpdateDialogs.cpp:188
msgid "For more information please visit our wiki page:"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:10
+#: src/slic3r/GUI/WipeTowerDialog.cpp:14
msgid "Ramming customization"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:36
+#: src/slic3r/GUI/WipeTowerDialog.cpp:40
msgid ""
"Ramming denotes the rapid extrusion just before a tool change in a single-"
"extruder MM printer. Its purpose is to properly shape the end of the "
@@ -3443,63 +4172,63 @@ msgid ""
"jams, extruder wheel grinding into filament etc."
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78
+#: src/slic3r/GUI/WipeTowerDialog.cpp:82
msgid "Total ramming time"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:80
+#: src/slic3r/GUI/WipeTowerDialog.cpp:84
msgid "Total rammed volume"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:84
+#: src/slic3r/GUI/WipeTowerDialog.cpp:88
msgid "Ramming line width"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:86
+#: src/slic3r/GUI/WipeTowerDialog.cpp:90
msgid "Ramming line spacing"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:138
+#: src/slic3r/GUI/WipeTowerDialog.cpp:141
msgid "Wipe tower - Purging volume adjustment"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:219
+#: src/slic3r/GUI/WipeTowerDialog.cpp:225
msgid ""
"Here you can adjust required purging volume (mm³) for any given pair of "
"tools."
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:220
+#: src/slic3r/GUI/WipeTowerDialog.cpp:226
msgid "Extruder changed to"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:228
+#: src/slic3r/GUI/WipeTowerDialog.cpp:234
msgid "unloaded"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:229
+#: src/slic3r/GUI/WipeTowerDialog.cpp:235
msgid "loaded"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:234
+#: src/slic3r/GUI/WipeTowerDialog.cpp:240
msgid "Tool #"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:241
+#: src/slic3r/GUI/WipeTowerDialog.cpp:247
msgid ""
"Total purging volume is calculated by summing two values below, depending on "
"which tools are loaded/unloaded."
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:242
+#: src/slic3r/GUI/WipeTowerDialog.cpp:248
msgid "Volume to purge (mm³) when the filament is being"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:256
+#: src/slic3r/GUI/WipeTowerDialog.cpp:262
msgid "From"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:321
+#: src/slic3r/GUI/WipeTowerDialog.cpp:327
msgid ""
"Switching to simple settings will discard changes done in the advanced "
"mode!\n"
@@ -3507,57 +4236,96 @@ msgid ""
"Do you want to proceed?"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
+#: src/slic3r/GUI/WipeTowerDialog.cpp:339
msgid "Show simplified settings"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
+#: src/slic3r/GUI/WipeTowerDialog.cpp:339
msgid "Show advanced settings"
msgstr ""
-#: src/slic3r/Utils/OctoPrint.cpp:65
+#: src/slic3r/GUI/wxExtensions.cpp:400
+msgid "Instances"
+msgstr ""
+
+#: src/slic3r/GUI/wxExtensions.cpp:407 src/slic3r/GUI/wxExtensions.cpp:474
+#, possible-c-format
+msgid "Instance %d"
+msgstr ""
+
+#: src/slic3r/GUI/wxExtensions.cpp:2462
+#, possible-c-format
+msgid "Switch to the %s mode"
+msgstr ""
+
+#: src/slic3r/GUI/wxExtensions.cpp:2463
+#, possible-c-format
+msgid "Current mode is %s"
+msgstr ""
+
+#: src/slic3r/Utils/Duet.cpp:51
+msgid "Connection to Duet works correctly."
+msgstr ""
+
+#: src/slic3r/Utils/Duet.cpp:56
+msgid "Could not connect to Duet"
+msgstr ""
+
+#: src/slic3r/Utils/Duet.cpp:84 src/slic3r/Utils/Duet.cpp:154
+msgid "Unknown error occured"
+msgstr ""
+
+#: src/slic3r/Utils/Duet.cpp:148
+msgid "Wrong password"
+msgstr ""
+
+#: src/slic3r/Utils/Duet.cpp:151
+msgid "Could not get resources to create a new connection"
+msgstr ""
+
+#: src/slic3r/Utils/OctoPrint.cpp:69
#, possible-c-format
msgid "Mismatched type of print host: %s"
msgstr ""
-#: src/slic3r/Utils/OctoPrint.cpp:80
+#: src/slic3r/Utils/OctoPrint.cpp:84
msgid "Connection to OctoPrint works correctly."
msgstr ""
-#: src/slic3r/Utils/OctoPrint.cpp:86
+#: src/slic3r/Utils/OctoPrint.cpp:90
msgid "Could not connect to OctoPrint"
msgstr ""
-#: src/slic3r/Utils/OctoPrint.cpp:86
+#: src/slic3r/Utils/OctoPrint.cpp:90
msgid "Note: OctoPrint version at least 1.1.0 is required."
msgstr ""
-#: src/slic3r/Utils/OctoPrint.cpp:181
-msgid "Connection to Prusa SLA works correctly."
+#: src/slic3r/Utils/OctoPrint.cpp:195
+msgid "Connection to Prusa SL1 works correctly."
msgstr ""
-#: src/slic3r/Utils/OctoPrint.cpp:186
+#: src/slic3r/Utils/OctoPrint.cpp:200
msgid "Could not connect to Prusa SLA"
msgstr ""
-#: src/slic3r/Utils/PresetUpdater.cpp:571
+#: src/slic3r/Utils/PresetUpdater.cpp:583
#, possible-c-format
msgid "requires min. %s and max. %s"
msgstr ""
-#: src/slic3r/Utils/PresetUpdater.cpp:576
+#: src/slic3r/Utils/PresetUpdater.cpp:588
#, possible-c-format
msgid "requires min. %s"
msgstr ""
-#: src/slic3r/Utils/PresetUpdater.cpp:578
+#: src/slic3r/Utils/PresetUpdater.cpp:590
#, possible-c-format
msgid "requires max. %s"
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:219
-#: src/slic3r/Utils/FixModelByWin10.cpp:349
-msgid "Exporting the source model"
+#: src/slic3r/Utils/FixModelByWin10.cpp:359
+msgid "Exporting source model"
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:235
@@ -3565,7 +4333,7 @@ msgid "Failed loading the input model."
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:242
-msgid "Repairing the model by the Netfabb service"
+msgid "Repairing model by the Netfabb service"
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:248
@@ -3573,8 +4341,8 @@ msgid "Mesh repair failed."
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:251
-#: src/slic3r/Utils/FixModelByWin10.cpp:367
-msgid "Loading the repaired model"
+#: src/slic3r/Utils/FixModelByWin10.cpp:378
+msgid "Loading repaired model"
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:263
@@ -3583,124 +4351,268 @@ msgstr ""
msgid "Saving mesh into the 3MF container failed."
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:334
+#: src/slic3r/Utils/FixModelByWin10.cpp:340
msgid "Model fixing"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:335
+#: src/slic3r/Utils/FixModelByWin10.cpp:341
msgid "Exporting model..."
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:357
+#: src/slic3r/Utils/FixModelByWin10.cpp:368
msgid "Export of a temporary 3mf file failed"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:372
+#: src/slic3r/Utils/FixModelByWin10.cpp:383
msgid "Import of the repaired 3mf file failed"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:375
+#: src/slic3r/Utils/FixModelByWin10.cpp:385
+msgid "Repaired 3MF file does not contain any object"
+msgstr ""
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:387
+msgid "Repaired 3MF file contains more than one object"
+msgstr ""
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:389
+msgid "Repaired 3MF file does not contain any volume"
+msgstr ""
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:391
+msgid "Repaired 3MF file contains more than one volume"
+msgstr ""
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:400
msgid "Model repair finished"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:379
+#: src/slic3r/Utils/FixModelByWin10.cpp:406
msgid "Model repair canceled"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
+#: src/slic3r/Utils/FixModelByWin10.cpp:423
msgid "Model repaired successfully"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
+#: src/slic3r/Utils/FixModelByWin10.cpp:423
+#: src/slic3r/Utils/FixModelByWin10.cpp:426
msgid "Model Repair by the Netfabb service"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
+#: src/slic3r/Utils/FixModelByWin10.cpp:426
msgid "Model repair failed: \n"
msgstr ""
-#: src/libslic3r/Print.cpp:1175
+#: src/libslic3r/Zipper.cpp:35
+msgid "undefined error"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:37
+msgid "too many files"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:39
+msgid "file too large"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:41
+msgid "unsupported method"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:43
+msgid "unsupported encryption"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:45
+msgid "unsupported feature"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:47
+msgid "failed finding central directory"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:49
+msgid "not a ZIP archive"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:51
+msgid "invalid header or archive is corrupted"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:53
+msgid "unsupported multidisk archive"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:55
+msgid "decompression failed or archive is corrupted"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:57
+msgid "compression failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:59
+msgid "unexpected decompressed size"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:61
+msgid "CRC-32 check failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:63
+msgid "unsupported central directory size"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:65
+msgid "allocation failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:67
+msgid "file open failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:69
+msgid "file create failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:71
+msgid "file write failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:73
+msgid "file read failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:75
+msgid "file close failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:77
+msgid "file seek failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:79
+msgid "file stat failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:81
+msgid "invalid parameter"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:83
+msgid "invalid filename"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:85
+msgid "buffer too small"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:87
+msgid "internal error"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:89
+msgid "file not found"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:91
+msgid "archive is too large"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:93
+msgid "validation failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:95
+msgid "write calledback failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:105
+msgid "Error with zip archive"
+msgstr ""
+
+#: src/libslic3r/Print.cpp:1135
msgid "All objects are outside of the print volume."
msgstr ""
-#: src/libslic3r/Print.cpp:1201
+#: src/libslic3r/Print.cpp:1162
msgid "Some objects are too close; your extruder will collide with them."
msgstr ""
-#: src/libslic3r/Print.cpp:1216
+#: src/libslic3r/Print.cpp:1177
msgid ""
"Some objects are too tall and cannot be printed without extruder collisions."
msgstr ""
-#: src/libslic3r/Print.cpp:1226
+#: src/libslic3r/Print.cpp:1187
msgid "The Spiral Vase option can only be used when printing a single object."
msgstr ""
-#: src/libslic3r/Print.cpp:1228
+#: src/libslic3r/Print.cpp:1189
msgid ""
"The Spiral Vase option can only be used when printing single material "
"objects."
msgstr ""
-#: src/libslic3r/Print.cpp:1234
+#: src/libslic3r/Print.cpp:1195
msgid ""
"All extruders must have the same diameter for single extruder multimaterial "
"printer."
msgstr ""
-#: src/libslic3r/Print.cpp:1239
+#: src/libslic3r/Print.cpp:1200
msgid ""
"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter "
"and Repetier G-code flavors."
msgstr ""
-#: src/libslic3r/Print.cpp:1241
+#: src/libslic3r/Print.cpp:1202
msgid ""
"The Wipe Tower is currently only supported with the relative extruder "
"addressing (use_relative_e_distances=1)."
msgstr ""
-#: src/libslic3r/Print.cpp:1253
+#: src/libslic3r/Print.cpp:1223
msgid ""
"The Wipe Tower is only supported for multiple objects if they have equal "
-"layer heigths"
+"layer heights"
msgstr ""
-#: src/libslic3r/Print.cpp:1255
+#: src/libslic3r/Print.cpp:1225
msgid ""
"The Wipe Tower is only supported for multiple objects if they are printed "
"over an equal number of raft layers"
msgstr ""
-#: src/libslic3r/Print.cpp:1257
+#: src/libslic3r/Print.cpp:1227
msgid ""
"The Wipe Tower is only supported for multiple objects if they are printed "
"with the same support_material_contact_distance"
msgstr ""
-#: src/libslic3r/Print.cpp:1259
+#: src/libslic3r/Print.cpp:1229
msgid ""
"The Wipe Tower is only supported for multiple objects if they are sliced "
"equally."
msgstr ""
-#: src/libslic3r/Print.cpp:1281
+#: src/libslic3r/Print.cpp:1258
msgid ""
"The Wipe tower is only supported if all objects have the same layer height "
"profile"
msgstr ""
-#: src/libslic3r/Print.cpp:1290
+#: src/libslic3r/Print.cpp:1268
msgid "The supplied settings will cause an empty print."
msgstr ""
-#: src/libslic3r/Print.cpp:1307
+#: src/libslic3r/Print.cpp:1285
msgid ""
"One or more object were assigned an extruder that the printer does not have."
msgstr ""
-#: src/libslic3r/Print.cpp:1316
+#: src/libslic3r/Print.cpp:1294
msgid ""
"Printing with multiple extruders of differing nozzle diameters. If support "
"is to be printed with the current extruder (support_material_extruder == 0 "
@@ -3708,13 +4620,13 @@ msgid ""
"same diameter."
msgstr ""
-#: src/libslic3r/Print.cpp:1324
+#: src/libslic3r/Print.cpp:1302
msgid ""
"For the Wipe Tower to work with the soluble supports, the support layers "
"need to be synchronized with the object layers."
msgstr ""
-#: src/libslic3r/Print.cpp:1328
+#: src/libslic3r/Print.cpp:1306
msgid ""
"The Wipe Tower currently supports the non-soluble supports only if they are "
"printed with the current extruder without triggering a tool change. (both "
@@ -3722,79 +4634,197 @@ msgid ""
"set to 0)."
msgstr ""
-#: src/libslic3r/Print.cpp:1335
+#: src/libslic3r/Print.cpp:1313
msgid "first_layer_height"
msgstr ""
-#: src/libslic3r/Print.cpp:1350
+#: src/libslic3r/Print.cpp:1328
msgid "First layer height can't be greater than nozzle diameter"
msgstr ""
-#: src/libslic3r/Print.cpp:1354
+#: src/libslic3r/Print.cpp:1332
msgid "Layer height can't be greater than nozzle diameter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:32 src/libslic3r/PrintConfig.cpp:33
+#: src/libslic3r/Print.cpp:1476
+msgid "Infilling layers"
+msgstr ""
+
+#: src/libslic3r/Print.cpp:1484
+msgid "Generating skirt"
+msgstr ""
+
+#: src/libslic3r/Print.cpp:1492
+msgid "Generating brim"
+msgstr ""
+
+#: src/libslic3r/Print.cpp:1520
+msgid "Exporting G-code"
+msgstr ""
+
+#: src/libslic3r/Print.cpp:1524
+msgid "Generating G-code"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:57
+msgid "Slicing model"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:58 src/libslic3r/SLAPrint.cpp:819
+msgid "Generating support points"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:59
+msgid "Generating support tree"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:60
+msgid "Generating pad"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:61
+msgid "Slicing supports"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:78
+msgid "Merging slices and calculating statistics"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:79
+msgid "Rasterizing layers"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:622
+msgid ""
+"Cannot proceed without support points! Add support points or disable support "
+"generation."
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:634
+msgid "Elevation is too low for object."
+msgstr ""
+
+#. TRN To be shown at the status bar on SLA slicing error.
+#: src/libslic3r/SLAPrint.cpp:719
+msgid "Slicing had to be stopped due to an internal error."
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:867 src/libslic3r/SLAPrint.cpp:877
+#: src/libslic3r/SLAPrint.cpp:925
+msgid "Visualizing supports"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:1463
+msgid "Slicing done"
+msgstr ""
+
+#: src/libslic3r/PrintBase.cpp:65
+msgid "Failed processing of the output_filename_format template."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:43 src/libslic3r/PrintConfig.cpp:44
msgid "Printer technology"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:41
+#: src/libslic3r/PrintConfig.cpp:51
msgid "Bed shape"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:48
+#: src/libslic3r/PrintConfig.cpp:58
msgid ""
"This setting controls the height (and thus the total number) of the slices/"
"layers. Thinner layers give better accuracy but take more time to print."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:56
+#: src/libslic3r/PrintConfig.cpp:65
msgid "Max print height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:57
+#: src/libslic3r/PrintConfig.cpp:66
msgid ""
"Set this to the maximum height that can be reached by your extruder while "
"printing."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:73
-msgid "Avoid crossing perimeters"
+#: src/libslic3r/PrintConfig.cpp:72
+msgid "Slice gap closing radius"
msgstr ""
#: src/libslic3r/PrintConfig.cpp:74
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 ""
+
+#: src/libslic3r/PrintConfig.cpp:82
+msgid "Hostname, IP or URL"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:83
+msgid ""
+"Slic3r can upload G-code files to a printer host. This field should contain "
+"the hostname, IP address or URL of the printer host instance."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:89
+msgid "API Key / Password"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:90
+msgid ""
+"Slic3r can upload G-code files to a printer host. This field should contain "
+"the API Key or the password required for authentication."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:96
+msgid "HTTPS CA File"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:97
+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 ""
+
+#: src/libslic3r/PrintConfig.cpp:112
+msgid "Avoid crossing perimeters"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:113
+msgid ""
"Optimize travel moves in order to minimize the crossing of perimeters. This "
"is mostly useful with Bowden extruders which suffer from oozing. This "
"feature slows down both the print and the G-code generation."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:2080
+#: src/libslic3r/PrintConfig.cpp:120 src/libslic3r/PrintConfig.cpp:2002
msgid "Other layers"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:83
+#: src/libslic3r/PrintConfig.cpp:121
msgid ""
"Bed temperature for layers after the first one. Set this to zero to disable "
"bed temperature control commands in the output."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:86
+#: src/libslic3r/PrintConfig.cpp:123
msgid "Bed temperature"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:93
+#: src/libslic3r/PrintConfig.cpp:130
msgid ""
"This custom code is inserted at every layer change, right before the Z move. "
"Note that you can use placeholder variables for all Slic3r settings as well "
"as [layer_num] and [layer_z]."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:104
+#: src/libslic3r/PrintConfig.cpp:140
msgid "Between objects G-code"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:105
+#: src/libslic3r/PrintConfig.cpp:141
msgid ""
"This code is inserted between objects when using sequential printing. By "
"default extruder and bed temperature are reset using non-wait command; "
@@ -3804,73 +4834,70 @@ msgid ""
"S[first_layer_temperature]\" command wherever you want."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:114
-msgctxt "Layers"
-msgid "Bottom"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:116
+#: src/libslic3r/PrintConfig.cpp:152
msgid "Number of solid layers to generate on bottom surfaces."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:118
+#: src/libslic3r/PrintConfig.cpp:153
msgid "Bottom solid layers"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:123
+#: src/libslic3r/PrintConfig.cpp:158
msgid "Bridge"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:124
+#: src/libslic3r/PrintConfig.cpp:159
msgid ""
"This is the acceleration your printer will use for bridges. Set zero to "
"disable acceleration control for bridges."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:126 src/libslic3r/PrintConfig.cpp:274
-#: src/libslic3r/PrintConfig.cpp:819 src/libslic3r/PrintConfig.cpp:941
-#: src/libslic3r/PrintConfig.cpp:1100 src/libslic3r/PrintConfig.cpp:1145
-#: src/libslic3r/PrintConfig.cpp:1156 src/libslic3r/PrintConfig.cpp:1386
+#: src/libslic3r/PrintConfig.cpp:161 src/libslic3r/PrintConfig.cpp:304
+#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:937
+#: src/libslic3r/PrintConfig.cpp:1106 src/libslic3r/PrintConfig.cpp:1159
+#: src/libslic3r/PrintConfig.cpp:1170 src/libslic3r/PrintConfig.cpp:1359
msgid "mm/s²"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:133
+#: src/libslic3r/PrintConfig.cpp:167
msgid "Bridging angle"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:135
+#: src/libslic3r/PrintConfig.cpp:169
msgid ""
"Bridging angle override. If left to zero, the bridging angle will be "
"calculated automatically. Otherwise the provided angle will be used for all "
"bridges. Use 180° for zero angle."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:138 src/libslic3r/PrintConfig.cpp:734
-#: src/libslic3r/PrintConfig.cpp:1637 src/libslic3r/PrintConfig.cpp:1648
-#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:2063
-#: src/libslic3r/PrintConfig.cpp:2578
+#: src/libslic3r/PrintConfig.cpp:172 src/libslic3r/PrintConfig.cpp:734
+#: src/libslic3r/PrintConfig.cpp:1595 src/libslic3r/PrintConfig.cpp:1605
+#: src/libslic3r/PrintConfig.cpp:1833 src/libslic3r/PrintConfig.cpp:1987
+#: src/libslic3r/PrintConfig.cpp:2171 src/libslic3r/PrintConfig.cpp:2488
+#: src/libslic3r/PrintConfig.cpp:2597
msgid "°"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:145
+#: src/libslic3r/PrintConfig.cpp:178
msgid "Bridges fan speed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:146
+#: src/libslic3r/PrintConfig.cpp:179
msgid "This fan speed is enforced during all bridges and overhangs."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:147 src/libslic3r/PrintConfig.cpp:747
-#: src/libslic3r/PrintConfig.cpp:1165 src/libslic3r/PrintConfig.cpp:1232
-#: src/libslic3r/PrintConfig.cpp:1517
+#: src/libslic3r/PrintConfig.cpp:180 src/libslic3r/PrintConfig.cpp:746
+#: src/libslic3r/PrintConfig.cpp:1179 src/libslic3r/PrintConfig.cpp:1242
+#: src/libslic3r/PrintConfig.cpp:1487 src/libslic3r/PrintConfig.cpp:2285
+#: src/libslic3r/PrintConfig.cpp:2527
msgid "%"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:155
+#: src/libslic3r/PrintConfig.cpp:187
msgid "Bridge flow ratio"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:157
+#: src/libslic3r/PrintConfig.cpp:189
msgid ""
"This factor affects the amount of plastic for bridging. You can decrease it "
"slightly to pull the extrudates and prevent sagging, although default "
@@ -3878,83 +4905,83 @@ msgid ""
"before tweaking this."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:168
+#: src/libslic3r/PrintConfig.cpp:199
msgid "Bridges"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:170
+#: src/libslic3r/PrintConfig.cpp:201
msgid "Speed for printing bridges."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:564
-#: src/libslic3r/PrintConfig.cpp:573 src/libslic3r/PrintConfig.cpp:583
-#: src/libslic3r/PrintConfig.cpp:592 src/libslic3r/PrintConfig.cpp:623
-#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:884
-#: src/libslic3r/PrintConfig.cpp:1013 src/libslic3r/PrintConfig.cpp:1090
-#: src/libslic3r/PrintConfig.cpp:1110 src/libslic3r/PrintConfig.cpp:1123
-#: src/libslic3r/PrintConfig.cpp:1134 src/libslic3r/PrintConfig.cpp:1189
-#: src/libslic3r/PrintConfig.cpp:1252 src/libslic3r/PrintConfig.cpp:1418
-#: src/libslic3r/PrintConfig.cpp:1601 src/libslic3r/PrintConfig.cpp:1611
-#: src/libslic3r/PrintConfig.cpp:2041 src/libslic3r/PrintConfig.cpp:2160
+#: src/libslic3r/PrintConfig.cpp:202 src/libslic3r/PrintConfig.cpp:578
+#: src/libslic3r/PrintConfig.cpp:586 src/libslic3r/PrintConfig.cpp:595
+#: src/libslic3r/PrintConfig.cpp:603 src/libslic3r/PrintConfig.cpp:630
+#: src/libslic3r/PrintConfig.cpp:649 src/libslic3r/PrintConfig.cpp:875
+#: src/libslic3r/PrintConfig.cpp:1002 src/libslic3r/PrintConfig.cpp:1088
+#: src/libslic3r/PrintConfig.cpp:1124 src/libslic3r/PrintConfig.cpp:1137
+#: src/libslic3r/PrintConfig.cpp:1148 src/libslic3r/PrintConfig.cpp:1201
+#: src/libslic3r/PrintConfig.cpp:1260 src/libslic3r/PrintConfig.cpp:1388
+#: src/libslic3r/PrintConfig.cpp:1562 src/libslic3r/PrintConfig.cpp:1571
+#: src/libslic3r/PrintConfig.cpp:1966 src/libslic3r/PrintConfig.cpp:2078
msgid "mm/s"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:178
+#: src/libslic3r/PrintConfig.cpp:209
msgid "Brim width"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:179
+#: src/libslic3r/PrintConfig.cpp:210
msgid ""
"Horizontal width of the brim that will be printed around each object on the "
"first layer."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:187
+#: src/libslic3r/PrintConfig.cpp:217
msgid "Clip multi-part objects"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:188
+#: src/libslic3r/PrintConfig.cpp:218
msgid ""
-"When printing multi-material objects, this settings will make slic3r to clip "
+"When printing multi-material objects, this settings will make Slic3r to clip "
"the overlapping object parts one by the other (2nd part will be clipped by "
"the 1st, 3rd part will be clipped by the 1st and 2nd etc)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:196
+#: src/libslic3r/PrintConfig.cpp:225
msgid "Colorprint height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:197
-msgid "Heights at which a filament change is to occur. "
+#: src/libslic3r/PrintConfig.cpp:226
+msgid "Heights at which a filament change is to occur."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:207
+#: src/libslic3r/PrintConfig.cpp:236
msgid "Compatible printers condition"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:208
+#: src/libslic3r/PrintConfig.cpp:237
msgid ""
"A boolean expression using the configuration values of an active printer "
"profile. If this expression evaluates to true, this profile is considered "
"compatible with the active printer profile."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:220
+#: src/libslic3r/PrintConfig.cpp:251
msgid "Compatible print profiles condition"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:221
+#: src/libslic3r/PrintConfig.cpp:252
msgid ""
"A boolean expression using the configuration values of an active print "
"profile. If this expression evaluates to true, this profile is considered "
"compatible with the active print profile."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:235
+#: src/libslic3r/PrintConfig.cpp:269
msgid "Complete individual objects"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:236
+#: src/libslic3r/PrintConfig.cpp:270
msgid ""
"When printing multiple objects or copies, this feature will complete each "
"object before moving onto next one (and starting it from its bottom layer). "
@@ -3962,114 +4989,114 @@ msgid ""
"warn and prevent you from extruder collisions, but beware."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:245
+#: src/libslic3r/PrintConfig.cpp:278
msgid "Enable auto cooling"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:246
+#: src/libslic3r/PrintConfig.cpp:279
msgid ""
"This flag enables the automatic cooling logic that adjusts print speed and "
"fan speed according to layer printing time."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:252
+#: src/libslic3r/PrintConfig.cpp:284
msgid "Cooling tube position"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:253
-msgid "Distance of the center-point of the cooling tube from the extruder tip "
+#: src/libslic3r/PrintConfig.cpp:285
+msgid "Distance of the center-point of the cooling tube from the extruder tip."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:261
+#: src/libslic3r/PrintConfig.cpp:292
msgid "Cooling tube length"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:262
-msgid "Length of the cooling tube to limit space for cooling moves inside it "
+#: src/libslic3r/PrintConfig.cpp:293
+msgid "Length of the cooling tube to limit space for cooling moves inside it."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:271
+#: src/libslic3r/PrintConfig.cpp:301
msgid ""
"This is the acceleration your printer will be reset to after the role-"
"specific acceleration values are used (perimeter/infill). Set zero to "
"prevent resetting acceleration at all."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:281
+#: src/libslic3r/PrintConfig.cpp:310
msgid "Default filament profile"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:282
+#: src/libslic3r/PrintConfig.cpp:311
msgid ""
"Default filament profile associated with the current printer profile. On "
"selection of the current printer profile, this filament profile will be "
"activated."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:287
+#: src/libslic3r/PrintConfig.cpp:317
msgid "Default print profile"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:288 src/libslic3r/PrintConfig.cpp:2469
-#: src/libslic3r/PrintConfig.cpp:2479
+#: src/libslic3r/PrintConfig.cpp:318 src/libslic3r/PrintConfig.cpp:2366
+#: src/libslic3r/PrintConfig.cpp:2377
msgid ""
"Default print profile associated with the current printer profile. On "
"selection of the current printer profile, this print profile will be "
"activated."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:293
+#: src/libslic3r/PrintConfig.cpp:324
msgid "Disable fan for the first"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:294
+#: src/libslic3r/PrintConfig.cpp:325
msgid ""
"You can set this to a positive value to disable fan at all during the first "
"layers, so that it does not make adhesion worse."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:296 src/libslic3r/PrintConfig.cpp:952
-#: src/libslic3r/PrintConfig.cpp:1487 src/libslic3r/PrintConfig.cpp:1691
-#: src/libslic3r/PrintConfig.cpp:1757 src/libslic3r/PrintConfig.cpp:1935
-#: src/libslic3r/PrintConfig.cpp:1985
+#: src/libslic3r/PrintConfig.cpp:327 src/libslic3r/PrintConfig.cpp:947
+#: src/libslic3r/PrintConfig.cpp:1460 src/libslic3r/PrintConfig.cpp:1645
+#: src/libslic3r/PrintConfig.cpp:1706 src/libslic3r/PrintConfig.cpp:1869
+#: src/libslic3r/PrintConfig.cpp:1914
msgid "layers"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:304
+#: src/libslic3r/PrintConfig.cpp:334
msgid "Don't support bridges"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:306
+#: src/libslic3r/PrintConfig.cpp:336
msgid ""
"Experimental option for preventing support material from being generated "
"under bridged areas."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:313
+#: src/libslic3r/PrintConfig.cpp:342
msgid "Distance between copies"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:314
+#: src/libslic3r/PrintConfig.cpp:343
msgid "Distance used for the auto-arrange feature of the plater."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:322
+#: src/libslic3r/PrintConfig.cpp:350
msgid "Elephant foot compensation"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:324
+#: src/libslic3r/PrintConfig.cpp:352
msgid ""
"The first layer will be shrunk in the XY plane by the configured value to "
"compensate for the 1st layer squish aka an Elephant Foot effect."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:334
+#: src/libslic3r/PrintConfig.cpp:361
msgid ""
"This end procedure is inserted at the end of the output file. Note that you "
"can use placeholder variables for all Slic3r settings."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:345
+#: src/libslic3r/PrintConfig.cpp:371
msgid ""
"This end procedure is inserted at the end of the output file, before the "
"printer end gcode. Note that you can use placeholder variables for all "
@@ -4077,52 +5104,62 @@ msgid ""
"extruder order."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:356
+#: src/libslic3r/PrintConfig.cpp:381
msgid "Ensure vertical shell thickness"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:358
+#: src/libslic3r/PrintConfig.cpp:383
msgid ""
"Add solid infill near sloping surfaces to guarantee the vertical shell "
"thickness (top+bottom solid layers)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:365
-msgid "Top/bottom fill pattern"
+#: src/libslic3r/PrintConfig.cpp:389
+msgid "Top fill pattern"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:367
+#: src/libslic3r/PrintConfig.cpp:391
msgid ""
-"Fill pattern for top/bottom infill. This only affects the external visible "
-"layer, and not its adjacent solid shells."
+"Fill pattern for top infill. This only affects the top visible layer, and "
+"not its adjacent solid shells."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:376 src/libslic3r/PrintConfig.cpp:800
-#: src/libslic3r/PrintConfig.cpp:2021
+#: src/libslic3r/PrintConfig.cpp:399 src/libslic3r/PrintConfig.cpp:797
+#: src/libslic3r/PrintConfig.cpp:1947
msgid "Rectilinear"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:377 src/libslic3r/PrintConfig.cpp:806
+#: src/libslic3r/PrintConfig.cpp:400 src/libslic3r/PrintConfig.cpp:803
msgid "Concentric"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:378 src/libslic3r/PrintConfig.cpp:810
+#: src/libslic3r/PrintConfig.cpp:401 src/libslic3r/PrintConfig.cpp:807
msgid "Hilbert Curve"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:379 src/libslic3r/PrintConfig.cpp:811
+#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:808
msgid "Archimedean Chords"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:380 src/libslic3r/PrintConfig.cpp:812
+#: src/libslic3r/PrintConfig.cpp:403 src/libslic3r/PrintConfig.cpp:809
msgid "Octagram Spiral"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:386 src/libslic3r/PrintConfig.cpp:397
+#: src/libslic3r/PrintConfig.cpp:410
+msgid "Bottom fill pattern"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:411
+msgid ""
+"Fill pattern for bottom infill. This only affects the bottom external "
+"visible layer, and not its adjacent solid shells."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:416 src/libslic3r/PrintConfig.cpp:426
msgid "External perimeters"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:388
+#: src/libslic3r/PrintConfig.cpp:418
msgid ""
"Set this to a non-zero value to set a manual extrusion width for external "
"perimeters. If left zero, default extrusion width will be used if set, "
@@ -4130,56 +5167,56 @@ msgid ""
"(for example 200%), it will be computed over layer height."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:391 src/libslic3r/PrintConfig.cpp:841
-#: src/libslic3r/PrintConfig.cpp:975 src/libslic3r/PrintConfig.cpp:1408
-#: src/libslic3r/PrintConfig.cpp:1769 src/libslic3r/PrintConfig.cpp:1958
-#: src/libslic3r/PrintConfig.cpp:2129
+#: src/libslic3r/PrintConfig.cpp:421 src/libslic3r/PrintConfig.cpp:836
+#: src/libslic3r/PrintConfig.cpp:968 src/libslic3r/PrintConfig.cpp:1379
+#: src/libslic3r/PrintConfig.cpp:1717 src/libslic3r/PrintConfig.cpp:1890
+#: src/libslic3r/PrintConfig.cpp:2048
msgid "mm or % (leave 0 for default)"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:399
+#: src/libslic3r/PrintConfig.cpp:428
msgid ""
"This separate setting will affect the speed of external perimeters (the "
"visible ones). If expressed as percentage (for example: 80%) it will be "
"calculated on the perimeters speed setting above. Set to zero for auto."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:864
-#: src/libslic3r/PrintConfig.cpp:1725 src/libslic3r/PrintConfig.cpp:1780
-#: src/libslic3r/PrintConfig.cpp:2006 src/libslic3r/PrintConfig.cpp:2142
+#: src/libslic3r/PrintConfig.cpp:431 src/libslic3r/PrintConfig.cpp:857
+#: src/libslic3r/PrintConfig.cpp:1676 src/libslic3r/PrintConfig.cpp:1727
+#: src/libslic3r/PrintConfig.cpp:1933 src/libslic3r/PrintConfig.cpp:2060
msgid "mm/s or %"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:409
+#: src/libslic3r/PrintConfig.cpp:438
msgid "External perimeters first"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:411
+#: src/libslic3r/PrintConfig.cpp:440
msgid ""
"Print contour perimeters from the outermost one to the innermost one instead "
"of the default inverse order."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:418
+#: src/libslic3r/PrintConfig.cpp:446
msgid "Extra perimeters if needed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:420
-#, no-c-format
+#: src/libslic3r/PrintConfig.cpp:448
+#, possible-c-format
msgid ""
"Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r "
"keeps adding perimeters, until more than 70% of the loop immediately above "
"is supported."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:431
+#: src/libslic3r/PrintConfig.cpp:458
msgid ""
"The extruder to use (unless more specific extruder settings are specified). "
"This value overrides perimeter and infill extruders, but not the support "
"extruders."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:444
+#: src/libslic3r/PrintConfig.cpp:470
msgid ""
"Set this to the vertical distance between your nozzle tip and (usually) the "
"X carriage rods. In other words, this is the height of the clearance "
@@ -4187,30 +5224,30 @@ msgid ""
"extruder can peek before colliding with other printed objects."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:455
+#: src/libslic3r/PrintConfig.cpp:480
msgid "Radius"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:456
+#: src/libslic3r/PrintConfig.cpp:481
msgid ""
"Set this to the clearance radius around your extruder. If the extruder is "
"not centered, choose the largest value for safety. This setting is used to "
"check for collisions and to display the graphical preview in the plater."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:467
+#: src/libslic3r/PrintConfig.cpp:491
msgid "Extruder Color"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:468 src/libslic3r/PrintConfig.cpp:535
+#: src/libslic3r/PrintConfig.cpp:492 src/libslic3r/PrintConfig.cpp:552
msgid "This is only used in the Slic3r interface as a visual help."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:475
+#: src/libslic3r/PrintConfig.cpp:498
msgid "Extruder offset"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:476
+#: src/libslic3r/PrintConfig.cpp:499
msgid ""
"If your firmware doesn't handle the extruder displacement you need the G-"
"code to take it into account. This option lets you specify the displacement "
@@ -4218,21 +5255,21 @@ msgid ""
"coordinates (they will be subtracted from the XY coordinate)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:486
+#: src/libslic3r/PrintConfig.cpp:508
msgid "Extrusion axis"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:487
+#: src/libslic3r/PrintConfig.cpp:509
msgid ""
"Use this option to set the axis letter associated to your printer's extruder "
"(usually E but some printers use A)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:493
+#: src/libslic3r/PrintConfig.cpp:514
msgid "Extrusion multiplier"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:494
+#: src/libslic3r/PrintConfig.cpp:515
msgid ""
"This factor changes the amount of flow proportionally. You may need to tweak "
"this setting to get nice surface finish and correct single wall widths. "
@@ -4240,11 +5277,11 @@ msgid ""
"more, check filament diameter and your firmware E steps."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:503
+#: src/libslic3r/PrintConfig.cpp:523
msgid "Default extrusion width"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:505
+#: src/libslic3r/PrintConfig.cpp:525
msgid ""
"Set this to a non-zero value to allow a manual extrusion width. If left to "
"zero, Slic3r derives extrusion widths from the nozzle diameter (see the "
@@ -4253,131 +5290,127 @@ msgid ""
"height."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:509
+#: src/libslic3r/PrintConfig.cpp:529
msgid "mm or % (leave 0 for auto)"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:515
+#: src/libslic3r/PrintConfig.cpp:534
msgid "Keep fan always on"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:516
+#: src/libslic3r/PrintConfig.cpp:535
msgid ""
"If this is enabled, fan will never be disabled and will be kept running at "
"least at its minimum speed. Useful for PLA, harmful for ABS."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:522
+#: src/libslic3r/PrintConfig.cpp:540
msgid "Enable fan if layer print time is below"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:523
+#: src/libslic3r/PrintConfig.cpp:541
msgid ""
"If layer print time is estimated below this number of seconds, fan will be "
"enabled and its speed will be calculated by interpolating the minimum and "
"maximum speeds."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:525 src/libslic3r/PrintConfig.cpp:1711
+#: src/libslic3r/PrintConfig.cpp:543 src/libslic3r/PrintConfig.cpp:1663
msgid "approximate seconds"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:534
+#: src/libslic3r/PrintConfig.cpp:551
msgid "Color"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:541
+#: src/libslic3r/PrintConfig.cpp:557
msgid "Filament notes"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:542
+#: src/libslic3r/PrintConfig.cpp:558
msgid "You can put your notes regarding the filament here."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:551 src/libslic3r/PrintConfig.cpp:1196
+#: src/libslic3r/PrintConfig.cpp:566 src/libslic3r/PrintConfig.cpp:1207
msgid "Max volumetric speed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:552
+#: src/libslic3r/PrintConfig.cpp:567
msgid ""
"Maximum volumetric speed allowed for this filament. Limits the maximum "
"volumetric speed of a print to the minimum of print and filament volumetric "
"speed. Set to zero for no limit."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:555 src/libslic3r/PrintConfig.cpp:1199
-msgid "mm³/s"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:562
+#: src/libslic3r/PrintConfig.cpp:576
msgid "Loading speed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:563
-msgid "Speed used for loading the filament on the wipe tower. "
+#: src/libslic3r/PrintConfig.cpp:577
+msgid "Speed used for loading the filament on the wipe tower."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:571
+#: src/libslic3r/PrintConfig.cpp:584
msgid "Loading speed at the start"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:572
-msgid "Speed used at the very beginning of loading phase. "
+#: src/libslic3r/PrintConfig.cpp:585
+msgid "Speed used at the very beginning of loading phase."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:580
+#: src/libslic3r/PrintConfig.cpp:592
msgid "Unloading speed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:581
+#: src/libslic3r/PrintConfig.cpp:593
msgid ""
"Speed used for unloading the filament on the wipe tower (does not affect "
-"initial part of unloading just after ramming). "
+"initial part of unloading just after ramming)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:590
+#: src/libslic3r/PrintConfig.cpp:601
msgid "Unloading speed at the start"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:591
+#: src/libslic3r/PrintConfig.cpp:602
msgid ""
-"Speed used for unloading the tip of the filament immediately after ramming. "
+"Speed used for unloading the tip of the filament immediately after ramming."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:599
+#: src/libslic3r/PrintConfig.cpp:609
msgid "Delay after unloading"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:600
+#: src/libslic3r/PrintConfig.cpp:610
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. "
+"original dimensions."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:610
+#: src/libslic3r/PrintConfig.cpp:619
msgid "Number of cooling moves"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:611
+#: src/libslic3r/PrintConfig.cpp:620
msgid ""
"Filament is cooled by being moved back and forth in the cooling tubes. "
-"Specify desired number of these moves "
+"Specify desired number of these moves."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:620
+#: src/libslic3r/PrintConfig.cpp:628
msgid "Speed of the first cooling move"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:621
-msgid "Cooling moves are gradually accelerating beginning at this speed. "
+#: src/libslic3r/PrintConfig.cpp:629
+msgid "Cooling moves are gradually accelerating beginning at this speed."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:629
+#: src/libslic3r/PrintConfig.cpp:636
msgid "Minimal purge on wipe tower"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:630
+#: src/libslic3r/PrintConfig.cpp:637
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 "
@@ -4386,62 +5419,62 @@ msgid ""
"to produce successive infill or sacrificial object extrusions reliably."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:635
+#: src/libslic3r/PrintConfig.cpp:641
msgid "mm³"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:641
+#: src/libslic3r/PrintConfig.cpp:647
msgid "Speed of the last cooling move"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:642
-msgid "Cooling moves are gradually accelerating towards this speed. "
+#: src/libslic3r/PrintConfig.cpp:648
+msgid "Cooling moves are gradually accelerating towards this speed."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:650
+#: src/libslic3r/PrintConfig.cpp:655
msgid "Filament load time"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:651
+#: src/libslic3r/PrintConfig.cpp:656
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 ""
-#: src/libslic3r/PrintConfig.cpp:659
+#: src/libslic3r/PrintConfig.cpp:663
msgid "Ramming parameters"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:660
+#: src/libslic3r/PrintConfig.cpp:664
msgid ""
"This string is edited by RammingDialog and contains ramming specific "
-"parameters "
+"parameters."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:667
+#: src/libslic3r/PrintConfig.cpp:670
msgid "Filament unload time"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:668
+#: src/libslic3r/PrintConfig.cpp:671
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 ""
-#: src/libslic3r/PrintConfig.cpp:677
+#: src/libslic3r/PrintConfig.cpp:679
msgid ""
"Enter your filament diameter here. Good precision is required, so use a "
"caliper and do multiple measurements along the filament, then compute the "
"average."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:685
+#: src/libslic3r/PrintConfig.cpp:686
msgid "Density"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:686
+#: src/libslic3r/PrintConfig.cpp:687
msgid ""
"Enter your filament density here. This is only for statistical information. "
"A decent way is to weigh a known length of filament and compute the ratio of "
@@ -4449,7 +5482,7 @@ msgid ""
"displacement."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:689
+#: src/libslic3r/PrintConfig.cpp:690
msgid "g/cm³"
msgstr ""
@@ -4490,72 +5523,72 @@ msgid ""
"so this setting does not affect them."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:744
+#: src/libslic3r/PrintConfig.cpp:743
msgid "Fill density"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:746
+#: src/libslic3r/PrintConfig.cpp:745
msgid "Density of internal infill, expressed in the range 0% - 100%."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:782
+#: src/libslic3r/PrintConfig.cpp:780
msgid "Fill pattern"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:784
+#: src/libslic3r/PrintConfig.cpp:782
msgid "Fill pattern for general low-density infill."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:801
+#: src/libslic3r/PrintConfig.cpp:798
msgid "Grid"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:802
+#: src/libslic3r/PrintConfig.cpp:799
msgid "Triangles"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:803
+#: src/libslic3r/PrintConfig.cpp:800
msgid "Stars"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:804
+#: src/libslic3r/PrintConfig.cpp:801
msgid "Cubic"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:805
+#: src/libslic3r/PrintConfig.cpp:802
msgid "Line"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:807 src/libslic3r/PrintConfig.cpp:2023
+#: src/libslic3r/PrintConfig.cpp:804 src/libslic3r/PrintConfig.cpp:1949
msgid "Honeycomb"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:808
+#: src/libslic3r/PrintConfig.cpp:805
msgid "3D Honeycomb"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:809
+#: src/libslic3r/PrintConfig.cpp:806
msgid "Gyroid"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:826
-#: src/libslic3r/PrintConfig.cpp:835 src/libslic3r/PrintConfig.cpp:871
+#: src/libslic3r/PrintConfig.cpp:813 src/libslic3r/PrintConfig.cpp:822
+#: src/libslic3r/PrintConfig.cpp:830 src/libslic3r/PrintConfig.cpp:863
msgid "First layer"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:817
+#: src/libslic3r/PrintConfig.cpp:814
msgid ""
"This is the acceleration your printer will use for first layer. Set zero to "
"disable acceleration control for first layer."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:827
+#: src/libslic3r/PrintConfig.cpp:823
msgid ""
"Heated build plate temperature for the first layer. Set this to zero to "
"disable bed temperature control commands in the output."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:837
+#: src/libslic3r/PrintConfig.cpp:832
msgid ""
"Set this to a non-zero value to set a manual extrusion width for first "
"layer. You can use this to force fatter extrudates for better adhesion. If "
@@ -4563,11 +5596,11 @@ msgid ""
"layer height. If set to zero, it will use the default extrusion width."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:848
+#: src/libslic3r/PrintConfig.cpp:842
msgid "First layer height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:850
+#: src/libslic3r/PrintConfig.cpp:844
msgid ""
"When printing with very low layer heights, you might still want to print a "
"thicker bottom layer to improve adhesion and tolerance for non perfect build "
@@ -4575,52 +5608,52 @@ msgid ""
"example: 150%) over the default layer height."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:854 src/libslic3r/PrintConfig.cpp:1003
-#: src/libslic3r/PrintConfig.cpp:1884
+#: src/libslic3r/PrintConfig.cpp:848 src/libslic3r/PrintConfig.cpp:993
+#: src/libslic3r/PrintConfig.cpp:1822
msgid "mm or %"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:860
+#: src/libslic3r/PrintConfig.cpp:853
msgid "First layer speed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:861
+#: src/libslic3r/PrintConfig.cpp:854
msgid ""
"If expressed as absolute value in mm/s, this speed will be applied to all "
"the print moves of the first layer, regardless of their type. If expressed "
"as a percentage (for example: 40%) it will scale the default speeds."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:872
+#: src/libslic3r/PrintConfig.cpp:864
msgid ""
"Extruder temperature for first layer. If you want to control temperature "
"manually during print, set this to zero to disable temperature control "
"commands in the output file."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:882
+#: src/libslic3r/PrintConfig.cpp:873
msgid ""
"Speed for filling small gaps using short zigzag moves. Keep this reasonably "
"low to avoid too much shaking and resonance issues. Set zero to disable gaps "
"filling."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:890
+#: src/libslic3r/PrintConfig.cpp:881
msgid "Verbose G-code"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:891
+#: src/libslic3r/PrintConfig.cpp:882
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 ""
-#: src/libslic3r/PrintConfig.cpp:899
+#: src/libslic3r/PrintConfig.cpp:889
msgid "G-code flavor"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:900
+#: src/libslic3r/PrintConfig.cpp:890
msgid ""
"Some G/M-code commands, including temperature control and others, are not "
"universal. Set this option to your printer's firmware to get a compatible "
@@ -4628,50 +5661,62 @@ msgid ""
"extrusion value at all."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:924
+#: src/libslic3r/PrintConfig.cpp:913
msgid "No extrusion"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:929
+#: src/libslic3r/PrintConfig.cpp:918
+msgid "Label objects"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:919
+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 ""
+
+#: src/libslic3r/PrintConfig.cpp:926
msgid "High extruder current on filament swap"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:930
+#: src/libslic3r/PrintConfig.cpp:927
msgid ""
"It may be beneficial to increase the extruder motor current during the "
"filament exchange sequence to allow for rapid ramming feed rates and to "
"overcome resistance when loading a filament with an ugly shaped tip."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:939
+#: src/libslic3r/PrintConfig.cpp:935
msgid ""
"This is the acceleration your printer will use for infill. Set zero to "
"disable acceleration control for infill."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:948
+#: src/libslic3r/PrintConfig.cpp:943
msgid "Combine infill every"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:950
+#: src/libslic3r/PrintConfig.cpp:945
msgid ""
"This feature allows to combine infill and speed up your print by extruding "
"thicker infill layers while preserving thin perimeters, thus accuracy."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:954
+#: src/libslic3r/PrintConfig.cpp:948
msgid "Combine infill every n layers"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:960
+#: src/libslic3r/PrintConfig.cpp:954
msgid "Infill extruder"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:962
+#: src/libslic3r/PrintConfig.cpp:956
msgid "The extruder to use when printing infill."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:971
+#: src/libslic3r/PrintConfig.cpp:964
msgid ""
"Set this to a non-zero value to set a manual extrusion width for infill. If "
"left zero, default extrusion width will be used if set, otherwise 1.125 x "
@@ -4680,32 +5725,32 @@ msgid ""
"example 90%) it will be computed over layer height."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:981
+#: src/libslic3r/PrintConfig.cpp:973
msgid "Infill before perimeters"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:982
+#: src/libslic3r/PrintConfig.cpp:974
msgid ""
"This option will switch the print order of perimeters and infill, making the "
"latter first."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:988
+#: src/libslic3r/PrintConfig.cpp:979
msgid "Only infill where needed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:990
+#: src/libslic3r/PrintConfig.cpp:981
msgid ""
"This option will limit infill to the areas actually needed for supporting "
"ceilings (it will act as internal support material). If enabled, slows down "
"the G-code generation due to the multiple checks involved."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:998
+#: src/libslic3r/PrintConfig.cpp:988
msgid "Infill/perimeters overlap"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1000
+#: src/libslic3r/PrintConfig.cpp:990
msgid ""
"This setting applies an additional overlap between infill and perimeters for "
"better bonding. Theoretically this shouldn't be needed, but backlash might "
@@ -4713,30 +5758,30 @@ msgid ""
"perimeter extrusion width."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1012
+#: src/libslic3r/PrintConfig.cpp:1001
msgid "Speed for printing the internal fill. Set to zero for auto."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1020
+#: src/libslic3r/PrintConfig.cpp:1009
msgid "Inherits profile"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1021
+#: src/libslic3r/PrintConfig.cpp:1010
msgid "Name of the profile, from which this profile inherits."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1032
+#: src/libslic3r/PrintConfig.cpp:1023
msgid "Interface shells"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1033
+#: src/libslic3r/PrintConfig.cpp:1024
msgid ""
"Force the generation of solid shells between adjacent materials/volumes. "
"Useful for multi-extruder prints with translucent materials or manual "
"soluble support material."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1043
+#: src/libslic3r/PrintConfig.cpp:1033
msgid ""
"This custom code is inserted at every layer change, right after the Z move "
"and before the extruder moves to the first layer point. Note that you can "
@@ -4744,11 +5789,11 @@ msgid ""
"[layer_z]."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1054
+#: src/libslic3r/PrintConfig.cpp:1044
msgid "Supports remaining times"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1055
+#: src/libslic3r/PrintConfig.cpp:1045
msgid ""
"Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute "
"intervals into the G-code to let the firmware show accurate remaining time. "
@@ -4756,64 +5801,152 @@ msgid ""
"firmware supports M73 Qxx Sxx for the silent mode."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1063
-msgid "Supports silent mode"
+#: src/libslic3r/PrintConfig.cpp:1053
+msgid "Supports stealth mode"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1064
-msgid "Set silent mode for the G-code flavor"
+#: src/libslic3r/PrintConfig.cpp:1054
+msgid "The firmware supports stealth mode"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1078
+msgid "Maximum feedrate X"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1079
+msgid "Maximum feedrate Y"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1080
+msgid "Maximum feedrate Z"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1081
+msgid "Maximum feedrate E"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1084
+msgid "Maximum feedrate of the X axis"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1085
+msgid "Maximum feedrate of the Y axis"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1086
+msgid "Maximum feedrate of the Z axis"
msgstr ""
#: src/libslic3r/PrintConfig.cpp:1087
-msgid "Maximum feedrate %1%"
+msgid "Maximum feedrate of the E axis"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1089
-msgid "Maximum feedrate of the %1% axis"
+#: src/libslic3r/PrintConfig.cpp:1096
+msgid "Maximum acceleration X"
msgstr ""
#: src/libslic3r/PrintConfig.cpp:1097
-msgid "Maximum acceleration %1%"
+msgid "Maximum acceleration Y"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1098
+msgid "Maximum acceleration Z"
msgstr ""
#: src/libslic3r/PrintConfig.cpp:1099
-msgid "Maximum acceleration of the %1% axis"
+msgid "Maximum acceleration E"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1107
-msgid "Maximum jerk %1%"
+#: src/libslic3r/PrintConfig.cpp:1102
+msgid "Maximum acceleration of the X axis"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1109
-msgid "Maximum jerk of the %1% axis"
+#: src/libslic3r/PrintConfig.cpp:1103
+msgid "Maximum acceleration of the Y axis"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122
+#: src/libslic3r/PrintConfig.cpp:1104
+msgid "Maximum acceleration of the Z axis"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1105
+msgid "Maximum acceleration of the E axis"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1114
+msgid "Maximum jerk X"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1115
+msgid "Maximum jerk Y"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1116
+msgid "Maximum jerk Z"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1117
+msgid "Maximum jerk E"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1120
+msgid "Maximum jerk of the X axis"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1121
+msgid "Maximum jerk of the Y axis"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1122
+msgid "Maximum jerk of the Z axis"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1123
+msgid "Maximum jerk of the E axis"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1134
msgid "Minimum feedrate when extruding"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133
+#: src/libslic3r/PrintConfig.cpp:1136
+msgid "Minimum feedrate when extruding (M205 S)"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1145
msgid "Minimum travel feedrate"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144
+#: src/libslic3r/PrintConfig.cpp:1147
+msgid "Minimum travel feedrate (M205 T)"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1156
msgid "Maximum acceleration when extruding"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1153 src/libslic3r/PrintConfig.cpp:1155
+#: src/libslic3r/PrintConfig.cpp:1158
+msgid "Maximum acceleration when extruding (M204 S)"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1167
msgid "Maximum acceleration when retracting"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1173
+#: src/libslic3r/PrintConfig.cpp:1169
+msgid "Maximum acceleration when retracting (M204 T)"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:1177 src/libslic3r/PrintConfig.cpp:1186
msgid "Max"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1164
+#: src/libslic3r/PrintConfig.cpp:1178
msgid "This setting represents the maximum speed of your fan."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1174
-#, no-c-format
+#: src/libslic3r/PrintConfig.cpp:1187
+#, possible-c-format
msgid ""
"This is the highest printable layer height for this extruder, used to cap "
"the variable layer height and support layer height. Maximum recommended "
@@ -4821,28 +5954,28 @@ msgid ""
"adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1185
+#: src/libslic3r/PrintConfig.cpp:1197
msgid "Max print speed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1186
+#: src/libslic3r/PrintConfig.cpp:1198
msgid ""
"When setting other speed settings to 0 Slic3r will autocalculate the optimal "
"speed in order to keep constant extruder pressure. This experimental setting "
"is used to set the highest print speed you want to allow."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1197
+#: src/libslic3r/PrintConfig.cpp:1208
msgid ""
"This experimental setting is used to set the maximum volumetric speed your "
"extruder supports."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1206
+#: src/libslic3r/PrintConfig.cpp:1217
msgid "Max volumetric slope positive"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1207 src/libslic3r/PrintConfig.cpp:1219
+#: src/libslic3r/PrintConfig.cpp:1218 src/libslic3r/PrintConfig.cpp:1229
msgid ""
"This experimental setting is used to limit the speed of change in extrusion "
"rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate "
@@ -4850,119 +5983,99 @@ msgid ""
"s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1223
+#: src/libslic3r/PrintConfig.cpp:1222 src/libslic3r/PrintConfig.cpp:1233
msgid "mm³/s²"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1218
+#: src/libslic3r/PrintConfig.cpp:1228
msgid "Max volumetric slope negative"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1230 src/libslic3r/PrintConfig.cpp:1240
+#: src/libslic3r/PrintConfig.cpp:1240 src/libslic3r/PrintConfig.cpp:1249
msgid "Min"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1231
+#: src/libslic3r/PrintConfig.cpp:1241
msgid "This setting represents the minimum PWM your fan needs to work."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1241
+#: src/libslic3r/PrintConfig.cpp:1250
msgid ""
"This is the lowest printable layer height for this extruder and limits the "
"resolution for variable layer height. Typical values are between 0.05 mm and "
"0.1 mm."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1250
+#: src/libslic3r/PrintConfig.cpp:1258
msgid "Min print speed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1251
+#: src/libslic3r/PrintConfig.cpp:1259
msgid "Slic3r will not scale speed down below this speed."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1259
+#: src/libslic3r/PrintConfig.cpp:1266
msgid "Minimal filament extrusion length"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1260
+#: src/libslic3r/PrintConfig.cpp:1267
msgid ""
"Generate no less than the number of skirt loops required to consume the "
"specified amount of filament on the bottom layer. For multi-extruder "
"machines, this minimum applies to each extruder."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1270
+#: src/libslic3r/PrintConfig.cpp:1276
msgid "Configuration notes"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1271
+#: src/libslic3r/PrintConfig.cpp:1277
msgid ""
"You can put here your personal notes. This text will be added to the G-code "
"header comments."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1281
+#: src/libslic3r/PrintConfig.cpp:1286
msgid "Nozzle diameter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1282
+#: src/libslic3r/PrintConfig.cpp:1287
msgid ""
"This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1288
+#: src/libslic3r/PrintConfig.cpp:1292
msgid "Host Type"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1289
+#: src/libslic3r/PrintConfig.cpp:1293
msgid ""
"Slic3r can upload G-code files to a printer host. This field must contain "
"the kind of the host."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1301
-msgid "API Key / Password"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1302
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the API Key or the password required for authentication."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1317
-msgid "Hostname, IP or URL"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1318
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the hostname, IP address or URL of the printer host instance."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1325
+#: src/libslic3r/PrintConfig.cpp:1304
msgid "Only retract when crossing perimeters"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1326
+#: src/libslic3r/PrintConfig.cpp:1305
msgid ""
"Disables retraction when the travel path does not exceed the upper layer's "
"perimeters (and thus any ooze will be probably invisible)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1334
+#: src/libslic3r/PrintConfig.cpp:1312
msgid ""
"This option will drop the temperature of the inactive extruders to prevent "
"oozing. It will enable a tall skirt automatically and move extruders outside "
"such skirt when changing temperatures."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1342
+#: src/libslic3r/PrintConfig.cpp:1319
msgid "Output filename format"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1343
+#: src/libslic3r/PrintConfig.cpp:1320
msgid ""
"You can use all configuration options as variables inside this template. For "
"example: [layer_height], [fill_density] etc. You can also use [timestamp], "
@@ -4970,60 +6083,60 @@ msgid ""
"[input_filename], [input_filename_base]."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1353
+#: src/libslic3r/PrintConfig.cpp:1329
msgid "Detect bridging perimeters"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1355
+#: src/libslic3r/PrintConfig.cpp:1331
msgid ""
"Experimental option to adjust flow for overhangs (bridge flow will be used), "
"to apply bridge speed to them and enable fan."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1362
+#: src/libslic3r/PrintConfig.cpp:1337
msgid "Filament parking position"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1363
+#: src/libslic3r/PrintConfig.cpp:1338
msgid ""
"Distance of the extruder tip from the position where the filament is parked "
-"when unloaded. This should match the value in printer firmware. "
+"when unloaded. This should match the value in printer firmware."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1372
+#: src/libslic3r/PrintConfig.cpp:1346
msgid "Extra loading distance"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1373
+#: src/libslic3r/PrintConfig.cpp:1347
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. "
+"than unloading."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1382 src/libslic3r/PrintConfig.cpp:1402
-#: src/libslic3r/PrintConfig.cpp:1415 src/libslic3r/PrintConfig.cpp:1425
+#: src/libslic3r/PrintConfig.cpp:1355 src/libslic3r/PrintConfig.cpp:1373
+#: src/libslic3r/PrintConfig.cpp:1385 src/libslic3r/PrintConfig.cpp:1395
msgid "Perimeters"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1383
+#: src/libslic3r/PrintConfig.cpp:1356
msgid ""
"This is the acceleration your printer will use for perimeters. A high value "
"like 9000 usually gives good results if your hardware is up to the job. Set "
"zero to disable acceleration control for perimeters."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1392
+#: src/libslic3r/PrintConfig.cpp:1364
msgid "Perimeter extruder"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1394
+#: src/libslic3r/PrintConfig.cpp:1366
msgid ""
"The extruder to use when printing perimeters and brim. First extruder is 1."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1404
+#: src/libslic3r/PrintConfig.cpp:1375
msgid ""
"Set this to a non-zero value to set a manual extrusion width for perimeters. "
"You may want to use thinner extrudates to get more accurate surfaces. If "
@@ -5032,12 +6145,12 @@ msgid ""
"it will be computed over layer height."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1417
+#: src/libslic3r/PrintConfig.cpp:1387
msgid ""
"Speed for perimeters (contours, aka vertical shells). Set to zero for auto."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1427
+#: src/libslic3r/PrintConfig.cpp:1397
msgid ""
"This option sets the number of perimeters to generate for each layer. Note "
"that Slic3r may increase this number automatically when it detects sloping "
@@ -5045,11 +6158,11 @@ msgid ""
"Perimeters option is enabled."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1431
+#: src/libslic3r/PrintConfig.cpp:1401
msgid "(minimum)"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1439
+#: src/libslic3r/PrintConfig.cpp:1409
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. "
@@ -5058,55 +6171,55 @@ msgid ""
"environment variables."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1452
+#: src/libslic3r/PrintConfig.cpp:1421
msgid "Printer type"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1453
+#: src/libslic3r/PrintConfig.cpp:1422
msgid "Type of the printer."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1457
+#: src/libslic3r/PrintConfig.cpp:1427
msgid "Printer notes"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1458
+#: src/libslic3r/PrintConfig.cpp:1428
msgid "You can put your notes regarding the printer here."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1467
+#: src/libslic3r/PrintConfig.cpp:1436
msgid "Printer vendor"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1468
+#: src/libslic3r/PrintConfig.cpp:1437
msgid "Name of the printer vendor."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1472
+#: src/libslic3r/PrintConfig.cpp:1442
msgid "Printer variant"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1473
+#: src/libslic3r/PrintConfig.cpp:1443
msgid ""
"Name of the printer variant. For example, the printer variants may be "
"differentiated by a nozzle diameter."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1483
+#: src/libslic3r/PrintConfig.cpp:1456
msgid "Raft layers"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1485
+#: src/libslic3r/PrintConfig.cpp:1458
msgid ""
"The object will be raised by this number of layers, and support material "
"will be generated under it."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1494
+#: src/libslic3r/PrintConfig.cpp:1466
msgid "Resolution"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1495
+#: src/libslic3r/PrintConfig.cpp:1467
msgid ""
"Minimum detail resolution, used to simplify the input file for speeding up "
"the slicing job and reducing memory usage. High-resolution models often "
@@ -5114,282 +6227,278 @@ msgid ""
"simplification and use full resolution from input."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1506
+#: src/libslic3r/PrintConfig.cpp:1477
msgid "Minimum travel after retraction"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1507
+#: src/libslic3r/PrintConfig.cpp:1478
msgid ""
"Retraction is not triggered when travel moves are shorter than this length."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1514
+#: src/libslic3r/PrintConfig.cpp:1484
msgid "Retract amount before wipe"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1515
+#: src/libslic3r/PrintConfig.cpp:1485
msgid ""
"With bowden extruders, it may be wise to do some amount of quick retract "
"before doing the wipe movement."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1523
+#: src/libslic3r/PrintConfig.cpp:1492
msgid "Retract on layer change"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1524
+#: src/libslic3r/PrintConfig.cpp:1493
msgid "This flag enforces a retraction whenever a Z move is done."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:1539
+#: src/libslic3r/PrintConfig.cpp:1498 src/libslic3r/PrintConfig.cpp:1506
msgid "Length"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1531
+#: src/libslic3r/PrintConfig.cpp:1499
msgid "Retraction Length"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1532
+#: src/libslic3r/PrintConfig.cpp:1500
msgid ""
"When retraction is triggered, filament is pulled back by the specified "
"amount (the length is measured on raw filament, before it enters the "
"extruder)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1544
+#: src/libslic3r/PrintConfig.cpp:1502 src/libslic3r/PrintConfig.cpp:1511
msgid "mm (zero to disable)"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1540
+#: src/libslic3r/PrintConfig.cpp:1507
msgid "Retraction Length (Toolchange)"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1541
+#: src/libslic3r/PrintConfig.cpp:1508
msgid ""
"When retraction is triggered before changing tool, filament is pulled back "
"by the specified amount (the length is measured on raw filament, before it "
"enters the extruder)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1550
+#: src/libslic3r/PrintConfig.cpp:1516
msgid "Lift Z"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1551
+#: src/libslic3r/PrintConfig.cpp:1517
msgid ""
"If you set this to a positive value, Z is quickly raised every time a "
"retraction is triggered. When using multiple extruders, only the setting for "
"the first extruder will be considered."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1559
+#: src/libslic3r/PrintConfig.cpp:1524
msgid "Above Z"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1560
+#: src/libslic3r/PrintConfig.cpp:1525
msgid "Only lift Z above"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1561
+#: src/libslic3r/PrintConfig.cpp:1526
msgid ""
"If you set this to a positive value, Z lift will only take place above the "
"specified absolute Z. You can tune this setting for skipping lift on the "
"first layers."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1569
+#: src/libslic3r/PrintConfig.cpp:1533
msgid "Below Z"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1570
+#: src/libslic3r/PrintConfig.cpp:1534
msgid "Only lift Z below"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1571
+#: src/libslic3r/PrintConfig.cpp:1535
msgid ""
"If you set this to a positive value, Z lift will only take place below the "
"specified absolute Z. You can tune this setting for limiting lift to the "
"first layers."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1580 src/libslic3r/PrintConfig.cpp:1589
+#: src/libslic3r/PrintConfig.cpp:1543 src/libslic3r/PrintConfig.cpp:1551
msgid "Extra length on restart"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1581
+#: src/libslic3r/PrintConfig.cpp:1544
msgid ""
"When the retraction is compensated after the travel move, the extruder will "
"push this additional amount of filament. This setting is rarely needed."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1590
+#: src/libslic3r/PrintConfig.cpp:1552
msgid ""
"When the retraction is compensated after changing tool, the extruder will "
"push this additional amount of filament."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1598 src/libslic3r/PrintConfig.cpp:1599
+#: src/libslic3r/PrintConfig.cpp:1559 src/libslic3r/PrintConfig.cpp:1560
msgid "Retraction Speed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1600
+#: src/libslic3r/PrintConfig.cpp:1561
msgid "The speed for retractions (it only applies to the extruder motor)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1608
+#: src/libslic3r/PrintConfig.cpp:1567 src/libslic3r/PrintConfig.cpp:1568
msgid "Deretraction Speed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1609
+#: src/libslic3r/PrintConfig.cpp:1569
msgid ""
"The speed for loading of a filament into extruder after retraction (it only "
"applies to the extruder motor). If left to zero, the retraction speed is "
"used."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1617
+#: src/libslic3r/PrintConfig.cpp:1576
msgid "Seam position"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1619
+#: src/libslic3r/PrintConfig.cpp:1578
msgid "Position of perimeters starting points."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1626
+#: src/libslic3r/PrintConfig.cpp:1584
msgid "Random"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1627
+#: src/libslic3r/PrintConfig.cpp:1585
msgid "Nearest"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1628
+#: src/libslic3r/PrintConfig.cpp:1586
msgid "Aligned"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1629
-msgid "Rear"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1636
+#: src/libslic3r/PrintConfig.cpp:1594
msgid "Direction"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1638
+#: src/libslic3r/PrintConfig.cpp:1596
msgid "Preferred direction of the seam"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1639
+#: src/libslic3r/PrintConfig.cpp:1597
msgid "Seam preferred direction"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1647
+#: src/libslic3r/PrintConfig.cpp:1604
msgid "Jitter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1649
+#: src/libslic3r/PrintConfig.cpp:1606
msgid "Seam preferred direction jitter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1650
+#: src/libslic3r/PrintConfig.cpp:1607
msgid "Preferred direction of the seam - jitter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1661
+#: src/libslic3r/PrintConfig.cpp:1617
msgid "USB/serial port for printer connection."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1669
+#: src/libslic3r/PrintConfig.cpp:1624
msgid "Serial port speed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1670
+#: src/libslic3r/PrintConfig.cpp:1625
msgid "Speed (baud) of USB/serial port for printer connection."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1679
+#: src/libslic3r/PrintConfig.cpp:1634
msgid "Distance from object"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1680
+#: src/libslic3r/PrintConfig.cpp:1635
msgid ""
"Distance between skirt and object(s). Set this to zero to attach the skirt "
"to the object(s) and get a brim for better adhesion."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1688
+#: src/libslic3r/PrintConfig.cpp:1642
msgid "Skirt height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1689
+#: src/libslic3r/PrintConfig.cpp:1643
msgid ""
"Height of skirt expressed in layers. Set this to a tall value to use skirt "
"as a shield against drafts."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1697
+#: src/libslic3r/PrintConfig.cpp:1650
msgid "Loops (minimum)"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1698
+#: src/libslic3r/PrintConfig.cpp:1651
msgid "Skirt Loops"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1699
+#: src/libslic3r/PrintConfig.cpp:1652
msgid ""
"Number of loops for the skirt. If the Minimum Extrusion Length option is "
"set, the number of loops might be greater than the one configured here. Set "
"this to zero to disable skirt completely."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1708
+#: src/libslic3r/PrintConfig.cpp:1660
msgid "Slow down if layer print time is below"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1709
+#: src/libslic3r/PrintConfig.cpp:1661
msgid ""
"If layer print time is estimated below this number of seconds, print moves "
"speed will be scaled down to extend duration to this value."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1720
+#: src/libslic3r/PrintConfig.cpp:1671
msgid "Small perimeters"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1722
+#: src/libslic3r/PrintConfig.cpp:1673
msgid ""
"This separate setting will affect the speed of perimeters having radius <= "
"6.5mm (usually holes). If expressed as percentage (for example: 80%) it will "
"be calculated on the perimeters speed setting above. Set to zero for auto."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1732
+#: src/libslic3r/PrintConfig.cpp:1683
msgid "Solid infill threshold area"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1734
+#: src/libslic3r/PrintConfig.cpp:1685
msgid ""
"Force solid infill for regions having a smaller area than the specified "
"threshold."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1735
+#: src/libslic3r/PrintConfig.cpp:1686
msgid "mm²"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1742
+#: src/libslic3r/PrintConfig.cpp:1692
msgid "Solid infill extruder"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1744
+#: src/libslic3r/PrintConfig.cpp:1694
msgid "The extruder to use when printing solid infill."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1751
+#: src/libslic3r/PrintConfig.cpp:1700
msgid "Solid infill every"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1753
+#: src/libslic3r/PrintConfig.cpp:1702
msgid ""
"This feature allows to force a solid layer every given number of layers. "
"Zero to disable. You can set this to any value (for example 9999); Slic3r "
@@ -5397,7 +6506,7 @@ msgid ""
"according to nozzle diameter and layer height."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1766
+#: src/libslic3r/PrintConfig.cpp:1714
msgid ""
"Set this to a non-zero value to set a manual extrusion width for infill for "
"solid surfaces. If left zero, default extrusion width will be used if set, "
@@ -5405,22 +6514,22 @@ msgid ""
"(for example 90%) it will be computed over layer height."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1777
+#: src/libslic3r/PrintConfig.cpp:1724
msgid ""
"Speed for printing solid regions (top/bottom/internal horizontal shells). "
"This can be expressed as a percentage (for example: 80%) over the default "
"infill speed above. Set to zero for auto."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1789
+#: src/libslic3r/PrintConfig.cpp:1736
msgid "Number of solid layers to generate on top and bottom surfaces."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1796
+#: src/libslic3r/PrintConfig.cpp:1742
msgid "Spiral vase"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1797
+#: src/libslic3r/PrintConfig.cpp:1743
msgid ""
"This feature will raise Z gradually while printing a single-walled object in "
"order to remove any visible seam. This option requires a single perimeter, "
@@ -5429,18 +6538,18 @@ msgid ""
"when printing more than an object."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1806
+#: src/libslic3r/PrintConfig.cpp:1751
msgid "Temperature variation"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1807
+#: src/libslic3r/PrintConfig.cpp:1752
msgid ""
"Temperature difference to be applied when an extruder is not active. Enables "
"a full-height \"sacrificial\" skirt on which the nozzles are periodically "
"wiped."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1818
+#: src/libslic3r/PrintConfig.cpp:1762
msgid ""
"This start procedure is inserted at the beginning, after bed has reached the "
"target temperature and extruder just started heating, and before extruder "
@@ -5451,7 +6560,7 @@ msgid ""
"\"M109 S[first_layer_temperature]\" command wherever you want."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1834
+#: src/libslic3r/PrintConfig.cpp:1777
msgid ""
"This start procedure is inserted at the beginning, after any printer start "
"gcode. This is used to override settings for a specific filament. If Slic3r "
@@ -5463,93 +6572,93 @@ msgid ""
"extruders, the gcode is processed in extruder order."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1850
+#: src/libslic3r/PrintConfig.cpp:1792
msgid "Single Extruder Multi Material"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1851
+#: src/libslic3r/PrintConfig.cpp:1793
msgid "The printer multiplexes filaments into a single hot end."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1857
+#: src/libslic3r/PrintConfig.cpp:1798
msgid "Prime all printing extruders"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1858
+#: src/libslic3r/PrintConfig.cpp:1799
msgid ""
"If enabled, all printing extruders will be primed at the front edge of the "
"print bed at the start of the print."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1864
+#: src/libslic3r/PrintConfig.cpp:1804
msgid "Generate support material"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1866
+#: src/libslic3r/PrintConfig.cpp:1806
msgid "Enable support material generation."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1871
+#: src/libslic3r/PrintConfig.cpp:1810
msgid "Auto generated supports"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1873
+#: src/libslic3r/PrintConfig.cpp:1812
msgid ""
"If checked, supports will be generated automatically based on the overhang "
"threshold value. If unchecked, supports will be generated inside the "
"\"Support Enforcer\" volumes only."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1880
+#: src/libslic3r/PrintConfig.cpp:1818
msgid "XY separation between an object and its support"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1882
+#: src/libslic3r/PrintConfig.cpp:1820
msgid ""
"XY separation between an object and its support. If expressed as percentage "
"(for example 50%), it will be calculated over external perimeter width."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1893
+#: src/libslic3r/PrintConfig.cpp:1830
msgid "Pattern angle"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1895
+#: src/libslic3r/PrintConfig.cpp:1832
msgid ""
"Use this setting to rotate the support material pattern on the horizontal "
"plane."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1906
+#: src/libslic3r/PrintConfig.cpp:1842 src/libslic3r/PrintConfig.cpp:2450
msgid ""
"Only create support if it lies on a build plate. Don't create support on a "
"print."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1913
+#: src/libslic3r/PrintConfig.cpp:1848
msgid "Contact Z distance"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1915
+#: src/libslic3r/PrintConfig.cpp:1850
msgid ""
"The vertical distance between object and support material interface. Setting "
"this to 0 will also prevent Slic3r from using bridge flow and speed for the "
"first object layer."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1923
-msgid "soluble"
+#: src/libslic3r/PrintConfig.cpp:1857
+msgid "0 (soluble)"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1924
-msgid "detachable"
+#: src/libslic3r/PrintConfig.cpp:1858
+msgid "0.2 (detachable)"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1929
+#: src/libslic3r/PrintConfig.cpp:1863
msgid "Enforce support for the first"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1931
+#: src/libslic3r/PrintConfig.cpp:1865
msgid ""
"Generate support material for the specified number of layers counting from "
"bottom, regardless of whether normal support material is enabled or not and "
@@ -5557,21 +6666,21 @@ msgid ""
"of objects having a very thin or poor footprint on the build plate."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1937
+#: src/libslic3r/PrintConfig.cpp:1870
msgid "Enforce support for the first n layers"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1943
+#: src/libslic3r/PrintConfig.cpp:1876
msgid "Support material/raft/skirt extruder"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1945
+#: src/libslic3r/PrintConfig.cpp:1878
msgid ""
"The extruder to use when printing support material, raft and skirt (1+, 0 to "
"use the current extruder to minimize tool changes)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1955
+#: src/libslic3r/PrintConfig.cpp:1887
msgid ""
"Set this to a non-zero value to set a manual extrusion width for support "
"material. If left zero, default extrusion width will be used if set, "
@@ -5579,89 +6688,89 @@ msgid ""
"example 90%) it will be computed over layer height."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1964
+#: src/libslic3r/PrintConfig.cpp:1895
msgid "Interface loops"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1966
+#: src/libslic3r/PrintConfig.cpp:1897
msgid ""
"Cover the top contact layer of the supports with loops. Disabled by default."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1972
+#: src/libslic3r/PrintConfig.cpp:1902
msgid "Support material/raft interface extruder"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1974
+#: src/libslic3r/PrintConfig.cpp:1904
msgid ""
"The extruder to use when printing support material interface (1+, 0 to use "
"the current extruder to minimize tool changes). This affects raft too."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1982
+#: src/libslic3r/PrintConfig.cpp:1911
msgid "Interface layers"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1984
+#: src/libslic3r/PrintConfig.cpp:1913
msgid ""
"Number of interface layers to insert between the object(s) and support "
"material."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1992
+#: src/libslic3r/PrintConfig.cpp:1920
msgid "Interface pattern spacing"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1994
+#: src/libslic3r/PrintConfig.cpp:1922
msgid "Spacing between interface lines. Set zero to get a solid interface."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2004
+#: src/libslic3r/PrintConfig.cpp:1931
msgid ""
"Speed for printing support material interface layers. If expressed as "
"percentage (for example 50%) it will be calculated over support material "
"speed."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2013
+#: src/libslic3r/PrintConfig.cpp:1940
msgid "Pattern"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2015
+#: src/libslic3r/PrintConfig.cpp:1942
msgid "Pattern used to generate support material."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2022
+#: src/libslic3r/PrintConfig.cpp:1948
msgid "Rectilinear grid"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2028
+#: src/libslic3r/PrintConfig.cpp:1954
msgid "Pattern spacing"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2030
+#: src/libslic3r/PrintConfig.cpp:1956
msgid "Spacing between support material lines."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2040
+#: src/libslic3r/PrintConfig.cpp:1965
msgid "Speed for printing support material."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2047
+#: src/libslic3r/PrintConfig.cpp:1972
msgid "Synchronize with object layers"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2049
+#: src/libslic3r/PrintConfig.cpp:1974
msgid ""
"Synchronize support layers with the object print layers. This is useful with "
"multi-material printers, where the extruder switch is expensive."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2056
+#: src/libslic3r/PrintConfig.cpp:1980
msgid "Overhang threshold"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2058
+#: src/libslic3r/PrintConfig.cpp:1982
msgid ""
"Support material will not be generated for overhangs whose slope angle (90° "
"= vertical) is above the given threshold. In other words, this value "
@@ -5670,54 +6779,50 @@ msgid ""
"detection (recommended)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2071
+#: src/libslic3r/PrintConfig.cpp:1994
msgid "With sheath around the support"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2073
+#: src/libslic3r/PrintConfig.cpp:1996
msgid ""
"Add a sheath (a single perimeter line) around the base support. This makes "
"the support more reliable, but also more difficult to remove."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2081
+#: src/libslic3r/PrintConfig.cpp:2003
msgid ""
"Extruder temperature for layers after the first one. Set this to zero to "
"disable temperature control commands in the output."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2084
-msgid "Temperature"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2090
+#: src/libslic3r/PrintConfig.cpp:2011
msgid "Detect thin walls"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2092
+#: src/libslic3r/PrintConfig.cpp:2013
msgid ""
"Detect single-width walls (parts where two extrusions don't fit and we need "
"to collapse them into a single trace)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2099
+#: src/libslic3r/PrintConfig.cpp:2019
msgid "Threads"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2100
+#: src/libslic3r/PrintConfig.cpp:2020
msgid ""
"Threads are used to parallelize long-running tasks. Optimal threads number "
"is slightly above the number of available cores/processors."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2112
+#: src/libslic3r/PrintConfig.cpp:2032
msgid ""
"This custom code is inserted right before every extruder change. Note that "
"you can use placeholder variables for all Slic3r settings as well as "
"[previous_extruder] and [next_extruder]."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2125
+#: src/libslic3r/PrintConfig.cpp:2044
msgid ""
"Set this to a non-zero value to set a manual extrusion width for infill for "
"top surfaces. You may want to use thinner extrudates to fill all narrow "
@@ -5726,7 +6831,7 @@ msgid ""
"percentage (for example 90%) it will be computed over layer height."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2137
+#: src/libslic3r/PrintConfig.cpp:2055
msgid ""
"Speed for printing top solid layers (it only applies to the uppermost "
"external layers and not to their internal solid layers). You may want to "
@@ -5735,48 +6840,43 @@ msgid ""
"for auto."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2149
-msgctxt "Layers"
-msgid "Top"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2151
+#: src/libslic3r/PrintConfig.cpp:2070
msgid "Number of solid layers to generate on top surfaces."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2153
+#: src/libslic3r/PrintConfig.cpp:2071
msgid "Top solid layers"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2159
+#: src/libslic3r/PrintConfig.cpp:2077
msgid "Speed for travel moves (jumps between distant extrusion points)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2168
+#: src/libslic3r/PrintConfig.cpp:2085
msgid "Use firmware retraction"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2169
+#: src/libslic3r/PrintConfig.cpp:2086
msgid ""
"This experimental setting uses G10 and G11 commands to have the firmware "
"handle the retraction. This is only supported in recent Marlin."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2176
+#: src/libslic3r/PrintConfig.cpp:2092
msgid "Use relative E distances"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2177
+#: src/libslic3r/PrintConfig.cpp:2093
msgid ""
"If your firmware requires relative E values, check this, otherwise leave it "
"unchecked. Most firmwares use absolute values."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2184
+#: src/libslic3r/PrintConfig.cpp:2099
msgid "Use volumetric E"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2185
+#: src/libslic3r/PrintConfig.cpp:2100
msgid ""
"This experimental setting uses outputs the E values in cubic millimeters "
"instead of linear millimeters. If your firmware doesn't already know "
@@ -5786,131 +6886,127 @@ msgid ""
"only supported in recent Marlin."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2196
+#: src/libslic3r/PrintConfig.cpp:2110
msgid "Enable variable layer height feature"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2197
+#: src/libslic3r/PrintConfig.cpp:2111
msgid ""
"Some printers or printer setups may have difficulties printing with a "
"variable layer height. Enabled by default."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2204
+#: src/libslic3r/PrintConfig.cpp:2117
msgid "Wipe while retracting"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2205
+#: src/libslic3r/PrintConfig.cpp:2118
msgid ""
"This flag will move the nozzle while retracting to minimize the possible "
"blob on leaky extruders."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2213
+#: src/libslic3r/PrintConfig.cpp:2125
msgid ""
"Multi material printers may need to prime or purge extruders on tool "
"changes. Extrude the excess material into the wipe tower."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2220
+#: src/libslic3r/PrintConfig.cpp:2131
msgid "Purging volumes - load/unload volumes"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2221
+#: src/libslic3r/PrintConfig.cpp:2132
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. "
+"volumes below."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2228
+#: src/libslic3r/PrintConfig.cpp:2138
msgid "Purging volumes - matrix"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2229
+#: src/libslic3r/PrintConfig.cpp:2139
msgid ""
"This matrix describes volumes (in cubic milimetres) required to purge the "
-"new filament on the wipe tower for any given pair of tools. "
+"new filament on the wipe tower for any given pair of tools."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2239
+#: src/libslic3r/PrintConfig.cpp:2148
msgid "Position X"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2240
+#: src/libslic3r/PrintConfig.cpp:2149
msgid "X coordinate of the left front corner of a wipe tower"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2247
+#: src/libslic3r/PrintConfig.cpp:2155
msgid "Position Y"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2248
+#: src/libslic3r/PrintConfig.cpp:2156
msgid "Y coordinate of the left front corner of a wipe tower"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2256
+#: src/libslic3r/PrintConfig.cpp:2163
msgid "Width of a wipe tower"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2263
+#: src/libslic3r/PrintConfig.cpp:2169
msgid "Wipe tower rotation angle"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2264
-msgid "Wipe tower rotation angle with respect to x-axis "
+#: src/libslic3r/PrintConfig.cpp:2170
+msgid "Wipe tower rotation angle with respect to x-axis."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2265
-msgid "degrees"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2272
+#: src/libslic3r/PrintConfig.cpp:2177
msgid "Wipe into this object's infill"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2273
+#: src/libslic3r/PrintConfig.cpp:2178
msgid ""
"Purging after toolchange will done inside this object's infills. This lowers "
"the amount of waste but may result in longer print time due to additional "
"travel moves."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2281
+#: src/libslic3r/PrintConfig.cpp:2185
msgid "Wipe into this object"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2282
+#: src/libslic3r/PrintConfig.cpp:2186
msgid ""
"Object will be used to purge the nozzle after a toolchange to save material "
"that would otherwise end up in the wipe tower and decrease print time. "
"Colours of the objects will be mixed as a result."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2289
+#: src/libslic3r/PrintConfig.cpp:2192
msgid "Maximal bridging distance"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2290
-msgid "Maximal distance between supports on sparse infill sections. "
+#: src/libslic3r/PrintConfig.cpp:2193
+msgid "Maximal distance between supports on sparse infill sections."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2297
+#: src/libslic3r/PrintConfig.cpp:2199
msgid "XY Size Compensation"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2299
+#: src/libslic3r/PrintConfig.cpp:2201
msgid ""
"The object will be grown/shrunk in the XY plane by the configured value "
"(negative = inwards, positive = outwards). This might be useful for fine-"
"tuning hole sizes."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2308
+#: src/libslic3r/PrintConfig.cpp:2209
msgid "Z offset"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2309
+#: src/libslic3r/PrintConfig.cpp:2210
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 "
@@ -5918,389 +7014,498 @@ msgid ""
"print bed, set this to -0.3 (or fix your endstop)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2319
-msgid "Bed size X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2320 src/libslic3r/PrintConfig.cpp:2327
-#: src/libslic3r/PrintConfig.cpp:2334 src/libslic3r/PrintConfig.cpp:2343
-#: src/libslic3r/PrintConfig.cpp:2351 src/libslic3r/PrintConfig.cpp:2359
-msgid "Dwarf"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2326
-msgid "Bed size Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2333
-msgid "Picture resolution X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2335 src/libslic3r/PrintConfig.cpp:2344
-msgid "px"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2342
-msgid "Picture resolution Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2350 src/libslic3r/PrintConfig.cpp:2430
-#: src/libslic3r/PrintConfig.cpp:2431
-msgid "Exposure time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2358
-msgid "Exposure time first layers"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2373
+#: src/libslic3r/PrintConfig.cpp:2227
msgid "Display width"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2374
+#: src/libslic3r/PrintConfig.cpp:2228
msgid "Width of the display"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2380
+#: src/libslic3r/PrintConfig.cpp:2233
msgid "Display height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2381
+#: src/libslic3r/PrintConfig.cpp:2234
msgid "Height of the display"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2387
+#: src/libslic3r/PrintConfig.cpp:2239
msgid "Number of pixels in"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2389
+#: src/libslic3r/PrintConfig.cpp:2241
msgid "Number of pixels in X"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2396
+#: src/libslic3r/PrintConfig.cpp:2247
msgid "Number of pixels in Y"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2402
+#: src/libslic3r/PrintConfig.cpp:2252
msgid "Display orientation"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2403
+#: src/libslic3r/PrintConfig.cpp:2253
msgid ""
"Set the actual LCD display orientation inside the SLA printer. Portrait mode "
"will flip the meaning of display width and height parameters and the output "
"images will be rotated by 90 degrees."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2410
+#: src/libslic3r/PrintConfig.cpp:2259
msgid "Landscape"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2411
+#: src/libslic3r/PrintConfig.cpp:2260
msgid "Portrait"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2415 src/libslic3r/PrintConfig.cpp:2416
+#: src/libslic3r/PrintConfig.cpp:2265
+msgid "Fast"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2266
+msgid "Fast tilt"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2267
+msgid "Time of the fast tilt"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2274
+msgid "Slow"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2275
+msgid "Slow tilt"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2276
+msgid "Time of the slow tilt"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2283
+msgid "Area fill"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2284
+msgid ""
+"The percentage of the bed area. \n"
+"If the print area exceeds the specified value, \n"
+"then a slow tilt will be used, otherwise - a fast tilt"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2291 src/libslic3r/PrintConfig.cpp:2292
+#: src/libslic3r/PrintConfig.cpp:2293
msgid "Printer scaling correction"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2422 src/libslic3r/PrintConfig.cpp:2423
+#: src/libslic3r/PrintConfig.cpp:2299 src/libslic3r/PrintConfig.cpp:2300
+msgid "Printer absolute correction"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2301
+msgid ""
+"Will inflate or deflate the sliced 2D polygons according to the sign of the "
+"correction."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2307 src/libslic3r/PrintConfig.cpp:2308
+msgid "Printer gamma correction"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2309
+msgid ""
+"This will apply a gamma correction to the rasterized 2D polygons. A gamma "
+"value of zero means thresholding with the threshold in the middle. This "
+"behaviour eliminates antialiasing without losing holes in polygons."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2320 src/libslic3r/PrintConfig.cpp:2321
msgid "Initial layer height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439
+#: src/libslic3r/PrintConfig.cpp:2327
+msgid "Faded layers"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2328
+msgid ""
+"Number of the layers needed for the exposure time fade from initial exposure "
+"time to the exposure time"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2335 src/libslic3r/PrintConfig.cpp:2336
+msgid "Exposure time"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2342 src/libslic3r/PrintConfig.cpp:2343
msgid "Initial exposure time"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2446 src/libslic3r/PrintConfig.cpp:2447
-msgid "Correction for expansion when printing"
+#: src/libslic3r/PrintConfig.cpp:2349 src/libslic3r/PrintConfig.cpp:2350
+msgid "Correction for expansion"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2452 src/libslic3r/PrintConfig.cpp:2453
-msgid "Correction for expansion after curing"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2458
+#: src/libslic3r/PrintConfig.cpp:2356
msgid "SLA print material notes"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2459
+#: src/libslic3r/PrintConfig.cpp:2357
msgid "You can put your notes regarding the SLA print material here."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2468 src/libslic3r/PrintConfig.cpp:2478
+#: src/libslic3r/PrintConfig.cpp:2365 src/libslic3r/PrintConfig.cpp:2376
msgid "Default SLA material profile"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2487
+#: src/libslic3r/PrintConfig.cpp:2387
msgid "Generate supports"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2489
+#: src/libslic3r/PrintConfig.cpp:2389
msgid "Generate supports for the models"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2494
+#: src/libslic3r/PrintConfig.cpp:2394
msgid "Support head front diameter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2496
+#: src/libslic3r/PrintConfig.cpp:2396
msgid "Diameter of the pointing side of the head"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2503
+#: src/libslic3r/PrintConfig.cpp:2403
msgid "Support head penetration"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2505
+#: src/libslic3r/PrintConfig.cpp:2405
msgid "How much the pinhead has to penetrate the model surface"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2512
+#: src/libslic3r/PrintConfig.cpp:2412
msgid "Support head width"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2514
+#: src/libslic3r/PrintConfig.cpp:2414
msgid "Width from the back sphere center to the front sphere center"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2521
+#: src/libslic3r/PrintConfig.cpp:2422
msgid "Support pillar diameter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2523
+#: src/libslic3r/PrintConfig.cpp:2424
msgid "Diameter in mm of the support pillars"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2530
+#: src/libslic3r/PrintConfig.cpp:2432
msgid "Support pillar connection mode"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2531
+#: src/libslic3r/PrintConfig.cpp:2433
msgid ""
-"Controls the bridge type between two neigboring pillars. Can be zig-zag, "
+"Controls the bridge type between two neighboring pillars. Can be zig-zag, "
"cross (double zig-zag) or dynamic which will automatically switch between "
"the first two depending on the distance of the two pillars."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2540
+#: src/libslic3r/PrintConfig.cpp:2441
msgid "Zig-Zag"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2541
+#: src/libslic3r/PrintConfig.cpp:2442
msgid "Cross"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2542
+#: src/libslic3r/PrintConfig.cpp:2443
msgid "Dynamic"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2546
+#: src/libslic3r/PrintConfig.cpp:2455
msgid "Pillar widening factor"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2548
+#: src/libslic3r/PrintConfig.cpp:2457
msgid ""
"Merging bridges or pillars into another pillars can increase the radius. "
"Zero means no increase, one means full increase."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2557
+#: src/libslic3r/PrintConfig.cpp:2466
msgid "Support base diameter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2559
+#: src/libslic3r/PrintConfig.cpp:2468
msgid "Diameter in mm of the pillar base"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2566
+#: src/libslic3r/PrintConfig.cpp:2476
msgid "Support base height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2568
+#: src/libslic3r/PrintConfig.cpp:2478
msgid "The height of the pillar base cone"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2575
+#: src/libslic3r/PrintConfig.cpp:2485
msgid "Critical angle"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2577
+#: src/libslic3r/PrintConfig.cpp:2487
msgid "The default angle for connecting support sticks and junctions."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2584
+#: src/libslic3r/PrintConfig.cpp:2495
msgid "Max bridge length"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2586
+#: src/libslic3r/PrintConfig.cpp:2497
msgid "The max length of a bridge"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2593
+#: src/libslic3r/PrintConfig.cpp:2504
+msgid "Max pillar linking distance"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2506
+msgid ""
+"The max distance of two pillars to get linked with each other. A zero value "
+"will prohibit pillar cascading."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2514
msgid "Object elevation"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2595
+#: src/libslic3r/PrintConfig.cpp:2516
msgid "How much the supports should lift up the supported object."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2602
-msgid "Density on horizontal surfaces"
+#: src/libslic3r/PrintConfig.cpp:2526
+msgid "This is a relative measure of support points density."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2604
-msgid ""
-"How many support points (approximately) should be placed on horizontal "
-"surface."
+#: src/libslic3r/PrintConfig.cpp:2532
+msgid "Minimal distance of the support points"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2605 src/libslic3r/PrintConfig.cpp:2614
-msgid "points per square dm"
+#: src/libslic3r/PrintConfig.cpp:2534
+msgid "No support points will be placed closer than this threshold."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2611
-msgid "Density on surfaces at 45 degrees"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2613
-msgid ""
-"How many support points (approximately) should be placed on surface sloping "
-"at 45 degrees."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2620
-msgid "Minimal support point height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2622
-msgid "No support points will be placed lower than this value from the bottom."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2629
+#: src/libslic3r/PrintConfig.cpp:2540
msgid "Use pad"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2631
+#: src/libslic3r/PrintConfig.cpp:2542
msgid "Add a pad underneath the supported model"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2636
+#: src/libslic3r/PrintConfig.cpp:2547
msgid "Pad wall thickness"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2645
+#: src/libslic3r/PrintConfig.cpp:2549
+msgid "The thickness of the pad and its optional cavity walls."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2557
msgid "Pad wall height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2654
+#: src/libslic3r/PrintConfig.cpp:2558
+msgid ""
+"Defines the pad cavity depth. Set to zero to disable the cavity. Be careful "
+"when enabling this feature, as some resins may produce an extreme suction "
+"effect inside the cavity, which makes peeling the print off the vat foil "
+"difficult."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2571
msgid "Max merge distance"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2663
+#: src/libslic3r/PrintConfig.cpp:2573
+msgid ""
+"Some objects can get along with a few smaller pads instead of a single big "
+"one. This parameter defines how far the center of two smaller pads should "
+"be. If theyare closer, they will get merged into one pad."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2584
msgid "Pad edge radius"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3017
-msgid "Cut model at the given Z."
+#: src/libslic3r/PrintConfig.cpp:2593
+msgid "Pad wall slope"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3022
-msgid "Dont arrange"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3023
+#: src/libslic3r/PrintConfig.cpp:2595
msgid ""
-"Don't arrange the objects on the build plate. The model coordinates define "
-"the absolute positions on the build plate. The option --center will be "
-"ignored."
+"The slope of the pad wall relative to the bed plane. 90 degrees means "
+"straight walls."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3030
-msgid "User data directory"
+#: src/libslic3r/PrintConfig.cpp:2957
+msgid "Export OBJ"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3031
-msgid ""
-"Load and store settings at the given directory. This is useful for "
-"maintaining different profiles or including configurations from a network "
-"storage."
+#: src/libslic3r/PrintConfig.cpp:2958
+msgid "Export the model(s) as OBJ."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3038
+#: src/libslic3r/PrintConfig.cpp:2969
+msgid "Export SLA"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2970
+msgid "Slice the model and export SLA printing layers as PNG."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2975
msgid "Export 3MF"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3039
-msgid "Slice the model and export slices as 3MF."
+#: src/libslic3r/PrintConfig.cpp:2976
+msgid "Export the model(s) as 3MF."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3044
+#: src/libslic3r/PrintConfig.cpp:2980
+msgid "Export AMF"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2981
+msgid "Export the model(s) as AMF."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2985
+msgid "Export STL"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2986
+msgid "Export the model(s) as STL."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2991
+msgid "Slice the model and export toolpaths as G-code."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2996
msgid "Slice"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3045
-msgid "Slice the model and export gcode."
+#: src/libslic3r/PrintConfig.cpp:2997
+msgid ""
+"Slice the model as FFF or SLA based on the printer_technology configuration "
+"value."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3050
+#: src/libslic3r/PrintConfig.cpp:3002
msgid "Help"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3051
+#: src/libslic3r/PrintConfig.cpp:3003
msgid "Show this help."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3056
-msgid "Use GUI"
+#: src/libslic3r/PrintConfig.cpp:3008
+msgid "Help (FFF options)"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3057
-msgid ""
-"Forces the GUI launch instead of command line slicing (if you supply a model "
-"file, it will be loaded into the plater)"
+#: src/libslic3r/PrintConfig.cpp:3009
+msgid "Show the full list of print/G-code configuration options."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3063
+#: src/libslic3r/PrintConfig.cpp:3013
+msgid "Help (SLA options)"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3014
+msgid "Show the full list of SLA print configuration options."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3018
msgid "Output Model Info"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3064
+#: src/libslic3r/PrintConfig.cpp:3019
msgid "Write information about the model to the console."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3069
-msgid "Load config file"
+#: src/libslic3r/PrintConfig.cpp:3023
+msgid "Save config file"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3024
+msgid "Save configuration to the specified file."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3034
+msgid "Align XY"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3035
+msgid "Align the model to the given point."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3040
+msgid "Cut model at the given Z."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3061
+msgid "Center"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3062
+msgid "Center the print around the given center."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3066
+msgid "Don't arrange"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3067
+msgid ""
+"Do not rearrange the given models before merging and keep their original XY "
+"coordinates."
msgstr ""
#: src/libslic3r/PrintConfig.cpp:3070
-msgid ""
-"Load configuration from the specified file. It can be used more than once to "
-"load options from multiple files."
+msgid "Duplicate"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3071
+msgid "Multiply copies by this factor."
msgstr ""
#: src/libslic3r/PrintConfig.cpp:3075
-msgid "Do not use GUI"
+msgid "Duplicate by grid"
msgstr ""
#: src/libslic3r/PrintConfig.cpp:3076
+msgid "Multiply copies by creating a grid."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3079
+msgid "Merge"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3080
msgid ""
-"Forces the command line slicing instead of gui. This takes precedence over --"
-"gui if both are present."
+"Arrange the supplied models in a plate and merge them in a single model in "
+"order to perform actions once."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3081
-msgid "Output File"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3082
+#: src/libslic3r/PrintConfig.cpp:3085
msgid ""
-"The file where the output will be written (if not specified, it will be "
-"based on the input file)."
+"Try to repair any non-manifold meshes (this option is implicitly added "
+"whenever we need to slice the model to perform the requested action)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3088
-msgid "Rotation angle around the Z axis in degrees (0-360, default: 0)."
+#: src/libslic3r/PrintConfig.cpp:3089
+msgid "Rotation angle around the Z axis in degrees."
msgstr ""
#: src/libslic3r/PrintConfig.cpp:3093
@@ -6308,35 +7513,108 @@ msgid "Rotate around X"
msgstr ""
#: src/libslic3r/PrintConfig.cpp:3094
-msgid "Rotation angle around the X axis in degrees (0-360, default: 0)."
+msgid "Rotation angle around the X axis in degrees."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3099
+#: src/libslic3r/PrintConfig.cpp:3098
msgid "Rotate around Y"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3100
-msgid "Rotation angle around the Y axis in degrees (0-360, default: 0)."
+#: src/libslic3r/PrintConfig.cpp:3099
+msgid "Rotation angle around the Y axis in degrees."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3105
-msgid "Save config file"
+#: src/libslic3r/PrintConfig.cpp:3104
+msgid "Scaling factor or percentage."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3106
-msgid "Save configuration to the specified file."
+#: src/libslic3r/PrintConfig.cpp:3109
+msgid ""
+"Detect unconnected parts in the given model(s) and split them into separate "
+"objects."
msgstr ""
#: src/libslic3r/PrintConfig.cpp:3112
-msgid "Scaling factor (default: 1)."
+msgid "Scale to Fit"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3125
-msgid "Print center"
+#: src/libslic3r/PrintConfig.cpp:3113
+msgid "Scale to fit the given volume."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3122
+msgid "Ignore non-existent config files"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3123
+msgid "Do not fail if a file supplied to --load does not exist."
msgstr ""
#: src/libslic3r/PrintConfig.cpp:3126
-msgid "Center the print around the given center (default: 100, 100)."
+msgid "Load config file"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3127
+msgid ""
+"Load configuration from the specified file. It can be used more than once to "
+"load options from multiple files."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3130
+msgid "Output File"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3131
+msgid ""
+"The file where the output will be written (if not specified, it will be "
+"based on the input file)."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3141
+msgid "Data directory"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3142
+msgid ""
+"Load and store settings at the given directory. This is useful for "
+"maintaining different profiles or including configurations from a network "
+"storage."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3145
+msgid "Logging level"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3146
+msgid ""
+"Messages with severity lower or eqal to the loglevel will be printed out. 0:"
+"trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3151
+msgid "Render with a software renderer"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3152
+msgid ""
+"Render with a software renderer. The bundled MESA software renderer is "
+"loaded instead of the default OpenGL driver."
+msgstr ""
+
+#: src/libslic3r/PrintObject.cpp:110
+msgid "Processing triangulated mesh"
+msgstr ""
+
+#: src/libslic3r/PrintObject.cpp:141
+msgid "Generating perimeters"
+msgstr ""
+
+#: src/libslic3r/PrintObject.cpp:251
+msgid "Preparing infill"
+msgstr ""
+
+#: src/libslic3r/PrintObject.cpp:391
+msgid "Generating support material"
msgstr ""
#: src/libslic3r/GCode/PreviewData.cpp:176
diff --git a/resources/localization/cs_CZ/Slic3rPE.mo b/resources/localization/cs_CZ/Slic3rPE.mo
deleted file mode 100644
index b6ce71411..000000000
Binary files a/resources/localization/cs_CZ/Slic3rPE.mo and /dev/null differ
diff --git a/resources/localization/cs_CZ/Slic3rPE_cs.po b/resources/localization/cs_CZ/Slic3rPE_cs.po
index f28786157..7c5da27bb 100644
--- a/resources/localization/cs_CZ/Slic3rPE_cs.po
+++ b/resources/localization/cs_CZ/Slic3rPE_cs.po
@@ -1,7052 +1,7419 @@
msgid ""
msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-17 13:39+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Oleksandra Iushchenko \n"
-"Language-Team: \n"
"Language: cs_CZ\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
-"X-Generator: Poedit 2.0.8\n"
+"X-Generator: PhraseApp (phraseapp.com)\n"
-#: src/slic3r/GUI/AboutDialog.cpp:33
-msgid "About Slic3r"
-msgstr "O Slic3ru"
+#: xs/src/slic3r/GUI/Tab.cpp:2149
+msgid "\n\nand it has the following unsaved changes:"
+msgstr "\n\na má neuložené následujÃcà zmÄ›ny:"
-#: src/slic3r/GUI/AboutDialog.cpp:68 src/slic3r/GUI/MainFrame.cpp:51
-msgid "Version"
-msgstr "Verze"
+#: xs/src/slic3r/GUI/Tab.cpp:2152
+msgid "\n\nDiscard changes and continue anyway?"
+msgstr "\n\nZahodit zmÄ›ny a pÅ™esto pokraÄovat?"
-#: src/slic3r/GUI/BedShapeDialog.cpp:43
-msgid "Shape"
-msgstr "Tvar"
+#: xs/src/slic3r/GUI/Tab.cpp:2150
+msgid "\n\nhas the following unsaved changes:"
+msgstr "\n\nmá neuložené následujÃcà zmÄ›ny:"
-#: src/slic3r/GUI/BedShapeDialog.cpp:50
-msgid "Rectangular"
-msgstr "ObdélnÃkový"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:54
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:207 src/slic3r/GUI/Plater.cpp:125
-#: src/slic3r/GUI/Tab.cpp:2122
-msgid "Size"
-msgstr "Rozměr"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:55
-msgid "Size in X and Y of the rectangular plate."
-msgstr "RozmÄ›r obdélnÃkové tiskové podložky v ose X a Y."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:61
-msgid "Origin"
-msgstr "PoÄátek"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:62
-msgid ""
-"Distance of the 0,0 G-code coordinate from the front left corner of the "
-"rectangle."
-msgstr "Vzdálenost souÅ™adnice 0,0 G-code od pÅ™ednÃho levého rohu obdélnÃku."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:66
-msgid "Circular"
-msgstr "Kruhový"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:69 src/slic3r/GUI/ConfigWizard.cpp:92
-#: src/slic3r/GUI/ConfigWizard.cpp:456 src/slic3r/GUI/ConfigWizard.cpp:470
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:80
-#: src/libslic3r/PrintConfig.cpp:50 src/libslic3r/PrintConfig.cpp:58
-#: src/libslic3r/PrintConfig.cpp:180 src/libslic3r/PrintConfig.cpp:254
-#: src/libslic3r/PrintConfig.cpp:263 src/libslic3r/PrintConfig.cpp:315
-#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:448
-#: src/libslic3r/PrintConfig.cpp:460 src/libslic3r/PrintConfig.cpp:480
-#: src/libslic3r/PrintConfig.cpp:679 src/libslic3r/PrintConfig.cpp:1178
-#: src/libslic3r/PrintConfig.cpp:1243 src/libslic3r/PrintConfig.cpp:1263
-#: src/libslic3r/PrintConfig.cpp:1283 src/libslic3r/PrintConfig.cpp:1365
-#: src/libslic3r/PrintConfig.cpp:1376 src/libslic3r/PrintConfig.cpp:1499
-#: src/libslic3r/PrintConfig.cpp:1508 src/libslic3r/PrintConfig.cpp:1554
-#: src/libslic3r/PrintConfig.cpp:1563 src/libslic3r/PrintConfig.cpp:1574
-#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1592
-#: src/libslic3r/PrintConfig.cpp:1682 src/libslic3r/PrintConfig.cpp:1918
-#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2031
-#: src/libslic3r/PrintConfig.cpp:2241 src/libslic3r/PrintConfig.cpp:2249
-#: src/libslic3r/PrintConfig.cpp:2257 src/libslic3r/PrintConfig.cpp:2291
-#: src/libslic3r/PrintConfig.cpp:2302 src/libslic3r/PrintConfig.cpp:2313
-#: src/libslic3r/PrintConfig.cpp:2321 src/libslic3r/PrintConfig.cpp:2328
-#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2497
-#: src/libslic3r/PrintConfig.cpp:2506 src/libslic3r/PrintConfig.cpp:2515
-#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2560
-#: src/libslic3r/PrintConfig.cpp:2569 src/libslic3r/PrintConfig.cpp:2587
-#: src/libslic3r/PrintConfig.cpp:2596 src/libslic3r/PrintConfig.cpp:2623
-#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2648
-#: src/libslic3r/PrintConfig.cpp:2657 src/libslic3r/PrintConfig.cpp:2666
-msgid "mm"
-msgstr "mm"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:70 src/libslic3r/PrintConfig.cpp:676
-msgid "Diameter"
-msgstr "Průměr"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:71
-msgid ""
-"Diameter of the print bed. It is assumed that origin (0,0) is located in the "
-"center."
-msgstr ""
-"PrůmÄ›r tiskové podložky. PÅ™epokládaný poÄátek (0,0) je umÃstÄ›n uprostÅ™ed."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:75 src/slic3r/GUI/GUI_Preview.cpp:265
-#: src/libslic3r/GCode/PreviewData.cpp:175
-msgid "Custom"
-msgstr "VlastnÃ"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:79
-msgid "Load shape from STL..."
-msgstr ""
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:125
-msgid "Settings"
-msgstr "NastavenÃ"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:298
-msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr ""
-"Vyberte soubor pro import tvaru tiskové podložky z (STL/OBJ/AMF/3MF/PRUSA):"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:315 src/slic3r/GUI/GUI_ObjectList.cpp:835
-msgid "Error! "
-msgstr "Chyba! "
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:324
-msgid "The selected file contains no geometry."
-msgstr "Vybraný soubor neobsahuje geometrii."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:328
-msgid ""
-"The selected file contains several disjoint areas. This is not supported."
-msgstr ""
-"Vybraný soubor obsahuje několik nespojených ploch. Tato možnost nenà "
-"podporována."
-
-#: src/slic3r/GUI/BedShapeDialog.hpp:44 src/slic3r/GUI/ConfigWizard.cpp:419
-msgid "Bed Shape"
-msgstr "Tvar tiskové podložky"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:54
-msgid "Network lookup"
-msgstr "Hledánà v sÃti"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:67
-msgid "Address"
-msgstr "Adresa"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:68
-msgid "Hostname"
-msgstr "Název hosta"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:69
-msgid "Service name"
-msgstr "Název služby"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:70
-msgid "OctoPrint version"
-msgstr "Verze OctoPrintu"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:188
-msgid "Searching for devices"
-msgstr "Hledám zaÅ™ÃzenÃ"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:195
-msgid "Finished"
-msgstr "DokonÄeno"
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:15
-msgid "Buttons And Text Colors Description"
-msgstr "Barvy pro textové popisky a tlaÄÃtka"
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:40
-msgid "Value is the same as the system value"
-msgstr "Hodnota je shodná se systémovou hodnotou"
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:57
-msgid ""
-"Value was changed and is not equal to the system value or the last saved "
-"preset"
-msgstr ""
-"Hodnota byla změněna a nenà shodná se systémovou hodnotou nebo naposled "
-"uloženým pÅ™ednastavenÃm"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:16
-msgid "Upgrade"
-msgstr "Aktualizovat"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:18
-msgid "Downgrade"
-msgstr "Downgrade"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:20
-msgid "Before roll back"
-msgstr "Before roll back"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:22
-msgid "User"
-msgstr "Uživatel"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:25
-msgid "Unknown"
-msgstr "Neznámý"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:37
-msgid "Active: "
-msgstr "AktivnÃ: "
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43
-msgid "slic3r version"
-msgstr "verze slic3ru"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:44 src/slic3r/GUI/Preset.cpp:1156
-msgid "print"
-msgstr "tisk"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:45
-msgid "filaments"
-msgstr "filamenty"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1160
-msgid "printer"
-msgstr "tiskárna"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 src/slic3r/GUI/Tab.cpp:838
-msgid "vendor"
-msgstr "prodejce"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50
-msgid "version"
-msgstr "verze"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51
-msgid "min slic3r version"
-msgstr "min verze slic3ru"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53
-msgid "max slic3r version"
-msgstr "max verze slic3ru"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
-msgid "model"
-msgstr "model"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
-msgid "variants"
-msgstr "varianty"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68
-msgid "Incompatible with this Slic3r"
-msgstr "Nekompatibilnà s tÃmto Slic3rem"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71
-msgid "Activate"
-msgstr "Aktivovat"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:97
-msgid "Configuration Snapshots"
-msgstr "Záloha konfigurace"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:92
-msgid "nozzle"
-msgstr "tryska"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:93
-msgid "default"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:116
-msgid "Select all"
-msgstr "Vybrat vše"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:117
-msgid "Select none"
-msgstr "OdznaÄit vÅ¡e"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:226
-#, c-format
-msgid "Welcome to the Slic3r %s"
-msgstr "VÃtejte v Slic3r %s"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:226
-msgid "Welcome"
-msgstr "VÃtejte"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:232 src/slic3r/GUI/GUI_App.cpp:606
-#, c-format
-msgid "Run %s"
-msgstr "Spustit %s"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:234
-#, c-format
-msgid ""
-"Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial "
-"configuration; just a few settings and you will be ready to print."
-msgstr ""
-"ZdravÃm, vÃtejte ve Slic3r Prusa Edition! Tento %s vám pomůže se základnà "
-"konfiguracÃ; jen nÄ›kolik nastavenà a budete pÅ™ipraveni k tisku."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:238
-msgid ""
-"Remove user profiles - install from scratch (a snapshot will be taken "
-"beforehand)"
-msgstr ""
-"Odstranit uživatelské profily - Äistá instalace (nejprve bude provedena "
-"záloha)"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:263
-msgid "Other vendors"
-msgstr "Ostatnà prodejci"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:265
-msgid "Custom setup"
-msgstr "Vlastnà nastavenÃ"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:289
-msgid "Automatic updates"
-msgstr "Automatické aktualizace"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:289
-msgid "Updates"
-msgstr "Aktualizace"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:297 src/slic3r/GUI/Preferences.cpp:59
-msgid "Check for application updates"
-msgstr "Zkontrolovat aktualizace aplikace"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:300 src/slic3r/GUI/Preferences.cpp:61
-msgid ""
-"If enabled, Slic3r checks for new versions of Slic3r PE online. When a new "
-"version becomes available a notification is displayed at the next "
-"application startup (never during program usage). This is only a "
-"notification mechanisms, no automatic installation is done."
-msgstr ""
-"Pokud je povoleno, kontroluje Slic3r nově dostupné verze Slic3r PE. V "
-"pÅ™ÃpadÄ›, že je nová verze k dispozici, zobrazà se notifikace pÅ™i dalÅ¡Ãm "
-"startu programu (nikdy bÄ›hem užÃvánà aplikace). Tento systém sloužà pouze "
-"pro upozorněnà uživatele, nedocházà k automatické instalaci."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:304 src/slic3r/GUI/Preferences.cpp:67
-msgid "Update built-in Presets automatically"
-msgstr "Aktualizovat vestavěné přednastavenà automaticky"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:307 src/slic3r/GUI/Preferences.cpp:69
-msgid ""
-"If enabled, Slic3r downloads updates of built-in system presets in the "
-"background. These updates are downloaded into a separate temporary location. "
-"When a new preset version becomes available it is offered at application "
-"startup."
-msgstr ""
-"Pokud je povoleno, stáhne Slic3r na pozadà aktualizace vestavěných "
-"systémových pÅ™ednastavenÃ. Tyto aktualizace jsou staženy do doÄasného "
-"umÃstÄ›nÃ. Pokud je k dispozici nové pÅ™ednastavenÃ, zobrazà se upozornÄ›nà pÅ™i "
-"startu programu."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:308
-msgid ""
-"Updates are never applied without user's consent and never overwrite user's "
-"customized settings."
-msgstr ""
-"Aktualizace nejsou nikdy nainstalovány bez vědomà uživatele a nikdy "
-"nepÅ™epÃÅ¡ou upravená uživatelská nastavenÃ."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:313
-msgid ""
-"Additionally a backup snapshot of the whole configuration is created before "
-"an update is applied."
-msgstr ""
-"Dále je pÅ™ed nainstalovánÃm aktualizace vytvoÅ™ena záloha veÅ¡kerého nastavenÃ."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:320
-msgid "Other Vendors"
-msgstr "Ostatnà výrobci"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:322
-msgid "Pick another vendor supported by Slic3r PE:"
-msgstr "Vyberte si jiného prodejce podporovaného v Slic3r PE:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:381
-msgid "Firmware Type"
-msgstr "Typ firmware"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:381 src/slic3r/GUI/Tab.cpp:1820
-msgid "Firmware"
-msgstr "Firmware"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:385
-msgid "Choose the type of firmware used by your printer."
-msgstr "Vyberte typ firmware použÃvaný vašà tiskárnou."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:419
-msgid "Bed Shape and Size"
-msgstr "Tvar a rozměr podložky"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:422
-msgid "Set the shape of your printer's bed."
-msgstr "Nastavte tvar vašà tiskové podložky."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:436
-msgid "Filament and Nozzle Diameters"
-msgstr "Průměry filamentu a trysky"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:436
-msgid "Print Diameters"
-msgstr "Průměry tisku"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:452
-msgid "Enter the diameter of your printer's hot end nozzle."
-msgstr "Zadejte průměr trysky hotendu vašà tiskárny."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:455
-msgid "Nozzle Diameter:"
-msgstr "Průměr trysky:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:465
-msgid "Enter the diameter of your filament."
-msgstr "Zadejte průměr vašeho filamentu."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:466
-msgid ""
-"Good precision is required, so use a caliper and do multiple measurements "
-"along the filament, then compute the average."
-msgstr ""
-"Je zapotÅ™ebà velká pÅ™esnost, proto použijte posuvné měřÃtko (Å¡upleru) a "
-"proveÄte nÄ›kolik měřenà po délce filamentu, poté vypoÄÃtejte průmÄ›r."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:469
-msgid "Filament Diameter:"
-msgstr "Průměr filamentu:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:487
-msgid "Extruder and Bed Temperatures"
-msgstr "Teploty extruderu a podložky"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:487
-msgid "Temperatures"
-msgstr "Teploty"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:503
-msgid "Enter the temperature needed for extruding your filament."
-msgstr "Zadejte požadovanou teplotu pro extruzi vašeho filamentu."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:504
-msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS."
-msgstr "Obecným pravidlem je 160 až 230° pro PLA a 215 až 250° pro ABS."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:507
-msgid "Extrusion Temperature:"
-msgstr "Teplota extruze:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:508 src/slic3r/GUI/ConfigWizard.cpp:522
-msgid "°C"
-msgstr "°C"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:517
-msgid ""
-"Enter the bed temperature needed for getting your filament to stick to your "
-"heated bed."
-msgstr ""
-"Zadejte požadovanou teplotu filamentu, aby se spojil s vyhÅ™Ãvanou podložkou."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:518
-msgid ""
-"A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have "
-"no heated bed."
-msgstr ""
-"Obecným pravidlem je 160 až 230° pro PLA a 215 až 250° pro ABS. Zadejte "
-"nula, pokud nemáte vyhÅ™Ãvanou podložku."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:521
-msgid "Bed Temperature:"
-msgstr "Teplota tiskové podložky:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:833
-msgid "< &Back"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:834
-msgid "&Next >"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:835
-msgid "&Finish"
-msgstr "&DokonÄit"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:906
-msgid "Configuration Wizard"
-msgstr "Průvodce nastavenÃm"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:907
-msgid "Configuration &Wizard"
-msgstr "Průvodce &nastavenÃm"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:909
-msgid "Configuration Assistant"
-msgstr "Průvodce nastavenà tiskárny"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:910
-msgid "Configuration &Assistant"
-msgstr "Průvodce &nastavenà tiskárny"
-
-#: src/slic3r/GUI/Field.cpp:109
-msgid "default value"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:112
-msgid "parameter name"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:140
-#, c-format
-msgid "%s doesn't support percentage"
-msgstr "%s nepodporuje procenta"
-
-#: src/slic3r/GUI/Field.cpp:148 src/slic3r/GUI/Field.cpp:168
-msgid ""
-"Input value contains incorrect symbol(s).\n"
-"Use, please, only digits"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:153
-msgid "Input value is out of range"
-msgstr "Zadaná hodnota je mimo rozsah"
-
-#: src/slic3r/GUI/Field.cpp:176
-#, c-format
-msgid ""
-"Do you mean %d%% instead of %d %s?\n"
-"Select YES if you want to change this value to %d%%, \n"
-"or NO if you are sure that %d %s is a correct value."
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:179
-msgid "Parameter validation"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:133
-msgid "Flash!"
-msgstr "Nahrát!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:134 src/slic3r/GUI/GLGizmo.cpp:2270
-msgid "Cancel"
-msgstr "Zrušit"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:135
-msgid "Flashing in progress. Please do not disconnect the printer!"
-msgstr "ProbÃhá nahrávánà firmware. ProsÃm neodpojujte tiskárnu!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:245
-msgid "Flashing succeeded!"
-msgstr "Nahrávánà bylo úspěšné!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:246
-msgid "Flashing failed. Please see the avrdude log below."
-msgstr "Nahránà selhalo. ProjdÄ›te si prosÃm avrdude log nÞe."
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:247
-msgid "Flashing cancelled."
-msgstr "Nahrávánà zrušeno."
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:279
-#, c-format
-msgid "Flashing failed: %s"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:293
-#, c-format
-msgid ""
-"This firmware hex file does not match the printer model.\n"
-"The hex file is intended for: %s\n"
-"Printer reported: %s\n"
-"\n"
-"Do you want to continue and flash this hex file anyway?\n"
-"Please only continue if you are sure this is the right thing to do."
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:380 src/slic3r/GUI/FirmwareDialog.cpp:414
-msgid ""
-"Multiple Original Prusa i3 MMU 2.0 devices found. Please only connect one at "
-"a time for flashing."
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:508
-msgid "The device could not have been found"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:581
-#, c-format
-msgid "Error accessing port at %s: %s"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:690
-msgid "Firmware flasher"
-msgstr "Nahránà firmware"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:712
-msgid "Firmware image:"
-msgstr "Soubor s firmware:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:716
-msgid "Serial port:"
-msgstr "Sériový port:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:718
-msgid "Autodetected"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:719
-msgid "Rescan"
-msgstr "Prohledat"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:726
-msgid "Progress:"
-msgstr "Průběh:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:729
-msgid "Status:"
-msgstr "Stav:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:730
-msgid "Ready"
-msgstr "Připraveno"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:750
-msgid "Advanced: avrdude output log"
-msgstr "PokroÄilé: výstupnà log avrdude"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:809
-msgid ""
-"Are you sure you want to cancel firmware flashing?\n"
-"This could leave your printer in an unusable state!"
-msgstr ""
-"Opravdu chcete ukonÄit nahrávánà firmware?\n"
-"Tiskárna může zůstat v nefunkÄnÃm stavu!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:810
-msgid "Confirmation"
-msgstr "PotvrzenÃ"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:813
-msgid "Cancelling..."
-msgstr ""
-
-#: src/slic3r/GUI/GLCanvas3D.cpp:4640
-msgid "Detected object outside print volume"
-msgstr ""
-
-#: src/slic3r/GUI/GLCanvas3D.cpp:7962
-msgid "Detected toolpath outside print volume"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:751 src/slic3r/GUI/GUI_ObjectManipulation.cpp:300
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:322
-#: src/libslic3r/PrintConfig.cpp:3087
-msgid "Rotate"
-msgstr "OtoÄit"
-
-#: src/slic3r/GUI/GLGizmo.cpp:785
-msgid "Rotation (deg)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:841 src/slic3r/GUI/GUI_ObjectManipulation.cpp:206
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:301
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:323
-#: src/libslic3r/PrintConfig.cpp:3111
-msgid "Scale"
-msgstr "MěřÃtko"
-
-#: src/slic3r/GUI/GLGizmo.cpp:1072
-msgid "Scale (%)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1200
-msgid "Move"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Position (mm)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Displacement (mm)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1430
-msgid "Place on face"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2207
-msgid "Left mouse click - add point"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2208
-msgid "Right mouse click - remove point"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2211
-msgid "Generate points automatically"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2212
-msgid "Remove all points"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2245
-msgid "SLA Support Points"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2268 src/slic3r/GUI/GLGizmo.cpp:2468
-msgid "Rotate lower part upwards"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2269 src/slic3r/GUI/GLGizmo.cpp:2470
-msgid "Perform cut"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2276
-msgid "Cut object:"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2356 src/slic3r/GUI/GLGizmo.cpp:2461
-#: src/libslic3r/PrintConfig.cpp:3016
-msgid "Cut"
-msgstr "Řezat"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2466
-msgid "Keep upper part"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2467
-msgid "Keep lower part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI.cpp:242
-msgid "Notice"
-msgstr "OznámenÃ"
-
-#: src/slic3r/GUI/GUI.cpp:248
-msgid "Attempt to free unreferenced scalar"
-msgstr "Attempt to free unreferenced scalar"
-
-#: src/slic3r/GUI/GUI.cpp:250 src/slic3r/GUI/WipeTowerDialog.cpp:40
-#: src/slic3r/GUI/WipeTowerDialog.cpp:322
-msgid "Warning"
-msgstr "VarovánÃ"
-
-#: src/slic3r/GUI/GUI_App.cpp:377
-msgid "Choose one file (3MF):"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:389
-msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Vyberte jeden nebo vÃce souborů (STL/OBJ/AMF/3MF/PRUSA):"
-
-#: src/slic3r/GUI/GUI_App.cpp:451
-msgid "Array of language names and identifiers should have the same size."
-msgstr "Pole jazykových jmen a identifikátorů by mÄ›la mÃt stejnou velikost."
-
-#: src/slic3r/GUI/GUI_App.cpp:461
-msgid "Select the language"
-msgstr "Výběr jazyka"
-
-#: src/slic3r/GUI/GUI_App.cpp:461
-msgid "Language"
-msgstr "Jazyk"
-
-#: src/slic3r/GUI/GUI_App.cpp:529 src/libslic3r/PrintConfig.cpp:270
-msgid "Default"
-msgstr "VýchozÃ"
-
-#: src/slic3r/GUI/GUI_App.cpp:609
-msgid "&Configuration Snapshots"
-msgstr "Záloha &Konfigurace"
-
-#: src/slic3r/GUI/GUI_App.cpp:609
-msgid "Inspect / activate configuration snapshots"
-msgstr "Zkontrolovat / aktivovat zálohy konfigurace"
-
-#: src/slic3r/GUI/GUI_App.cpp:610
-msgid "Take Configuration &Snapshot"
-msgstr "Provést &Zálohu Konfigurace"
-
-#: src/slic3r/GUI/GUI_App.cpp:610
-msgid "Capture a configuration snapshot"
-msgstr "Vytvořit aktuálnà zálohu konfigurace"
-
-#: src/slic3r/GUI/GUI_App.cpp:613
-msgid "&Preferences"
-msgstr "&NastavenÃ"
-
-#: src/slic3r/GUI/GUI_App.cpp:613
-msgid "Application preferences"
-msgstr "Nastavenà aplikace"
-
-#: src/slic3r/GUI/GUI_App.cpp:616
-msgid "Simple"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:616
-msgid "Simple View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:617 src/slic3r/GUI/GUI_ObjectList.cpp:39
-#: src/slic3r/GUI/Tab.cpp:948 src/slic3r/GUI/Tab.cpp:962
-#: src/slic3r/GUI/Tab.cpp:1058 src/slic3r/GUI/Tab.cpp:1061
-#: src/slic3r/GUI/Tab.cpp:1425 src/slic3r/GUI/Tab.cpp:1840
-#: src/libslic3r/PrintConfig.cpp:156 src/libslic3r/PrintConfig.cpp:323
-#: src/libslic3r/PrintConfig.cpp:999 src/libslic3r/PrintConfig.cpp:2298
-msgid "Advanced"
-msgstr "PokroÄilé"
-
-#: src/slic3r/GUI/GUI_App.cpp:617
-msgid "Advanced View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:618
-msgid "Expert"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:618
-msgid "Expert View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:620
-msgid "Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:620
-msgid "Slic3r View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:622
-msgid "Change Application &Language"
-msgstr "Změnit &jazyk aplikace"
-
-#: src/slic3r/GUI/GUI_App.cpp:624
-msgid "Flash printer &firmware"
-msgstr "Nahrát &firmware tiskárny"
-
-#: src/slic3r/GUI/GUI_App.cpp:624
-msgid "Upload a firmware image into an Arduino based printer"
-msgstr "Nahrát firmware do tiskárny s Arduinem"
-
-#: src/slic3r/GUI/GUI_App.cpp:636
-msgid "Taking configuration snapshot"
-msgstr "Ukládánà zálohy nastavenÃ"
-
-#: src/slic3r/GUI/GUI_App.cpp:636
-msgid "Snapshot name"
-msgstr "Název zálohy"
-
-#: src/slic3r/GUI/GUI_App.cpp:674
-msgid "Application will be restarted"
-msgstr "Aplikace bude restartována"
-
-#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/Tab.cpp:2606
-msgid "Attention!"
-msgstr "Pozor!"
-
-#: src/slic3r/GUI/GUI_App.cpp:691
-msgid "&Configuration"
-msgstr "&Konfigurace"
-
-#: src/slic3r/GUI/GUI_App.cpp:711
-msgid "You have unsaved changes "
-msgstr "Máte neuložené změny "
-
-#: src/slic3r/GUI/GUI_App.cpp:711
-msgid ". Discard changes and continue anyway?"
-msgstr ". Zahodit zmÄ›ny a pÅ™esto pokraÄovat?"
-
-#: src/slic3r/GUI/GUI_App.cpp:712
-msgid "Unsaved Presets"
-msgstr "Neuložená PÅ™ednastavenÃ"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:31 src/libslic3r/PrintConfig.cpp:47
-#: src/libslic3r/PrintConfig.cpp:115 src/libslic3r/PrintConfig.cpp:357
-#: src/libslic3r/PrintConfig.cpp:410 src/libslic3r/PrintConfig.cpp:419
-#: src/libslic3r/PrintConfig.cpp:849 src/libslic3r/PrintConfig.cpp:1037
-#: src/libslic3r/PrintConfig.cpp:1354 src/libslic3r/PrintConfig.cpp:1426
-#: src/libslic3r/PrintConfig.cpp:1618 src/libslic3r/PrintConfig.cpp:2091
-#: src/libslic3r/PrintConfig.cpp:2150
-msgid "Layers and Perimeters"
-msgstr "Vrstvy a perimetry"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:32 src/slic3r/GUI/Tab.cpp:952
-#: src/slic3r/GUI/Tab.cpp:953 src/slic3r/GUI/Tab.cpp:1274
-#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:366
-#: src/libslic3r/PrintConfig.cpp:730 src/libslic3r/PrintConfig.cpp:745
-#: src/libslic3r/PrintConfig.cpp:783 src/libslic3r/PrintConfig.cpp:938
-#: src/libslic3r/PrintConfig.cpp:949 src/libslic3r/PrintConfig.cpp:969
-#: src/libslic3r/PrintConfig.cpp:989 src/libslic3r/PrintConfig.cpp:1010
-#: src/libslic3r/PrintConfig.cpp:1733 src/libslic3r/PrintConfig.cpp:1752
-msgid "Infill"
-msgstr "Výplň"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_Preview.cpp:262
-#: src/slic3r/GUI/Tab.cpp:980 src/slic3r/GUI/Tab.cpp:981
-#: src/libslic3r/PrintConfig.cpp:305 src/libslic3r/PrintConfig.cpp:1484
-#: src/libslic3r/PrintConfig.cpp:1865 src/libslic3r/PrintConfig.cpp:1872
-#: src/libslic3r/PrintConfig.cpp:1881 src/libslic3r/PrintConfig.cpp:1894
-#: src/libslic3r/PrintConfig.cpp:1905 src/libslic3r/PrintConfig.cpp:1914
-#: src/libslic3r/PrintConfig.cpp:1930 src/libslic3r/PrintConfig.cpp:1953
-#: src/libslic3r/PrintConfig.cpp:1965 src/libslic3r/PrintConfig.cpp:1983
-#: src/libslic3r/PrintConfig.cpp:1993 src/libslic3r/PrintConfig.cpp:2003
-#: src/libslic3r/PrintConfig.cpp:2014 src/libslic3r/PrintConfig.cpp:2029
-#: src/libslic3r/PrintConfig.cpp:2038 src/libslic3r/PrintConfig.cpp:2039
-#: src/libslic3r/PrintConfig.cpp:2048 src/libslic3r/PrintConfig.cpp:2057
-#: src/libslic3r/PrintConfig.cpp:2072 src/libslic3r/GCode/PreviewData.cpp:172
-msgid "Support material"
-msgstr "Podpory"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_Preview.cpp:241
-#: src/slic3r/GUI/Tab.cpp:1005 src/libslic3r/PrintConfig.cpp:169
-#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:881
-#: src/libslic3r/PrintConfig.cpp:1011 src/libslic3r/PrintConfig.cpp:1416
-#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1721
-#: src/libslic3r/PrintConfig.cpp:1776 src/libslic3r/PrintConfig.cpp:2136
-msgid "Speed"
-msgstr "Rychlost"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/Tab.cpp:1038
-#: src/slic3r/GUI/Tab.cpp:1744 src/libslic3r/PrintConfig.cpp:430
-#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:1393
-#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1944
-#: src/libslic3r/PrintConfig.cpp:1973 src/libslic3r/PrintConfig.cpp:2271
-#: src/libslic3r/PrintConfig.cpp:2280
-msgid "Extruders"
-msgstr "Extruder"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/libslic3r/PrintConfig.cpp:387
-#: src/libslic3r/PrintConfig.cpp:504 src/libslic3r/PrintConfig.cpp:836
-#: src/libslic3r/PrintConfig.cpp:970 src/libslic3r/PrintConfig.cpp:1403
-#: src/libslic3r/PrintConfig.cpp:1765 src/libslic3r/PrintConfig.cpp:1954
-#: src/libslic3r/PrintConfig.cpp:2124
-msgid "Extrusion Width"
-msgstr "Å ÃÅ™e extruze"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:41 src/slic3r/GUI/Tab.cpp:3179
-#: src/slic3r/GUI/Tab.cpp:3180 src/libslic3r/PrintConfig.cpp:2488
-#: src/libslic3r/PrintConfig.cpp:2495 src/libslic3r/PrintConfig.cpp:2504
-#: src/libslic3r/PrintConfig.cpp:2513 src/libslic3r/PrintConfig.cpp:2522
-#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2558
-#: src/libslic3r/PrintConfig.cpp:2567 src/libslic3r/PrintConfig.cpp:2576
-#: src/libslic3r/PrintConfig.cpp:2585 src/libslic3r/PrintConfig.cpp:2594
-#: src/libslic3r/PrintConfig.cpp:2603 src/libslic3r/PrintConfig.cpp:2612
-#: src/libslic3r/PrintConfig.cpp:2621
-msgid "Supports"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:42 src/slic3r/GUI/Tab.cpp:3205
-#: src/slic3r/GUI/Tab.cpp:3206 src/libslic3r/PrintConfig.cpp:2630
-#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2646
-#: src/libslic3r/PrintConfig.cpp:2655 src/libslic3r/PrintConfig.cpp:2664
-msgid "Pad"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:115
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:129
-msgid "Name"
-msgstr "Název"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:134
-msgid "Right button click the icon to change the object settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:142
-#, c-format
-msgid "Auto-repaired (%d errors):\n"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:145
-msgid "degenerate facets"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:146
-msgid "edges fixed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:147
-msgid "facets removed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:148
-msgid "facets added"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:149
-msgid "facets reversed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:150
-msgid "backwards edges"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:164
-msgid "Right button click the icon to fix STL through Netfabb"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:196 src/slic3r/GUI/Tab.cpp:1389
-#: src/libslic3r/PrintConfig.cpp:429
-msgid "Extruder"
-msgstr "Extruder"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:615
-msgid "Select showing settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:655
-msgid "Load"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659 src/slic3r/GUI/GUI_ObjectList.cpp:688
-#: src/slic3r/GUI/GUI_ObjectList.cpp:691
-msgid "Box"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Cylinder"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Sphere"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Slab"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:671 src/slic3r/GUI/GUI_ObjectList.cpp:685
-msgid "Add part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:672
-msgid "Add modifier"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:673 src/slic3r/GUI/GUI_ObjectList.cpp:687
-msgid "Add support enforcer"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:674 src/slic3r/GUI/GUI_ObjectList.cpp:690
-msgid "Add support blocker"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:711
-msgid "Split to parts"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:725
-msgid "Add settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:739
-msgid "Change type"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1009
-msgid "You can't delete the last solid part from object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1017
-msgid "You can't delete the last intance from object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1044 src/slic3r/GUI/Plater.cpp:1825
-msgid ""
-"The selected object couldn't be split because it contains only one part."
-msgstr "Vybraný objekt nemůže být rozdÄ›len, protože obsahuje pouze jednu Äást."
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1138
-msgid "Group manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1149
-msgid "Object manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1159
-msgid "Object Settings to modify"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1163
-msgid "Part Settings to modify"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1173
-msgid "Part manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1180
-msgid "Instance manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1655
-msgid "You can't change a type of the last solid part of the object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1662
-msgid "Select type of part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1744 src/slic3r/GUI/Tab.cpp:3070
-#: src/slic3r/GUI/Tab.cpp:3074
-msgid "The supplied name is not valid;"
-msgstr "Zadaný název je naplatný;"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1745 src/slic3r/GUI/Tab.cpp:3071
-msgid "the following characters are not allowed:"
-msgstr "následujÃcà znaky nejsou povoleny:"
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:21
-msgid "Object Manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:132
-msgid "Object name"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252
-msgid "Position"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:205
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253
-msgid "Rotation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254
-msgid "Scale factors"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:321
-msgid "Translate"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_Preview.cpp:235
-msgid "View"
-msgstr "ZobrazenÃ"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/GUI_Preview.cpp:550
-#: src/libslic3r/GCode/PreviewData.cpp:394
-msgid "Feature type"
-msgstr "Typ"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/PrintConfig.cpp:443
-msgid "Height"
-msgstr "Výška"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/PrintConfig.cpp:2255
-msgid "Width"
-msgstr "Å ÃÅ™ka"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:242
-msgid "Volumetric flow rate"
-msgstr "Objemový průtok"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:243 src/slic3r/GUI/GUI_Preview.cpp:347
-#: src/slic3r/GUI/GUI_Preview.cpp:496 src/slic3r/GUI/GUI_Preview.cpp:718
-#: src/libslic3r/GCode/PreviewData.cpp:404
-msgid "Tool"
-msgstr "Nástroj"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:244 src/slic3r/GUI/GUI_Preview.cpp:550
-#: src/libslic3r/GCode/PreviewData.cpp:406
-msgid "Color Print"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_Preview.cpp:247
-msgid "Show"
-msgstr "Zobrazit"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/GUI_Preview.cpp:251
-msgid "Feature types"
-msgstr "Typy extruzÃ"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/GCode/PreviewData.cpp:163
-msgid "Perimeter"
-msgstr "Perimetr"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:254 src/libslic3r/GCode/PreviewData.cpp:164
-msgid "External perimeter"
-msgstr "Vnějšà perimetr"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/GCode/PreviewData.cpp:165
-msgid "Overhang perimeter"
-msgstr "Perimetr převisu"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:256 src/libslic3r/GCode/PreviewData.cpp:166
-msgid "Internal infill"
-msgstr "Vnitřnà výplň"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:257 src/libslic3r/PrintConfig.cpp:1764
-#: src/libslic3r/PrintConfig.cpp:1775 src/libslic3r/GCode/PreviewData.cpp:167
-msgid "Solid infill"
-msgstr "Plná výplň"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:258 src/libslic3r/PrintConfig.cpp:2123
-#: src/libslic3r/PrintConfig.cpp:2135 src/libslic3r/GCode/PreviewData.cpp:168
-msgid "Top solid infill"
-msgstr "Výplň plných hornÃch"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:259 src/libslic3r/GCode/PreviewData.cpp:169
-msgid "Bridge infill"
-msgstr "Výplň mostů"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:260 src/libslic3r/PrintConfig.cpp:880
-#: src/libslic3r/GCode/PreviewData.cpp:170
-msgid "Gap fill"
-msgstr "Výplň tenkých stěn"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:261 src/slic3r/GUI/Tab.cpp:971
-#: src/libslic3r/GCode/PreviewData.cpp:171
-msgid "Skirt"
-msgstr "Obrys"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:263 src/libslic3r/PrintConfig.cpp:2002
-#: src/libslic3r/GCode/PreviewData.cpp:173
-msgid "Support material interface"
-msgstr "Kontaktnà vrstvy podpor"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:264 src/slic3r/GUI/Tab.cpp:1049
-#: src/libslic3r/GCode/PreviewData.cpp:174
-msgid "Wipe tower"
-msgstr "ÄŒistÃcà věž"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:269 src/libslic3r/PrintConfig.cpp:2158
-msgid "Travel"
-msgstr "Rychloposun"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:270
-msgid "Retractions"
-msgstr "Retrakce"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:271
-msgid "Unretractions"
-msgstr "Deretrakce"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:272
-msgid "Shells"
-msgstr "Skořápky"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:12
-msgid "Slic3r Prusa Edition - Keyboard Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:47
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:126
-msgid "Main Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:101
-msgid "Open project STL/OBJ/AMF/3MF with config, delete bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:102
-msgid "Import STL/OBJ/AMF/3MF without config, keep bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:103
-msgid "Load Config from .ini/amf/3mf/gcode"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:104 src/slic3r/GUI/Plater.cpp:605
-msgid "Export G-code"
-msgstr "Exportovat G-kód"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:105
-msgid "Save project (3MF)"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:106
-msgid "Load Config from .ini/amf/3mf/gcode and merge"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:107
-msgid "(Re)slice"
-msgstr "znovu slicovat"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:108
-msgid "Quick slice"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 src/slic3r/GUI/MainFrame.cpp:289
-msgid "Repeat last quick slice"
-msgstr "Opakovat poslednà rychlé slicovánÃ"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:110
-msgid "Select Plater Tab"
-msgstr "Zobrazit panel Podložka"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:111
-msgid "Quick slice and Save as"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:112
-msgid "Select Print Settings Tab"
-msgstr "Zobrazit panel Nastavenà tisku"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:113
-msgid "Select Filament Settings Tab"
-msgstr "Zobrazit panel Nastavenà filamentu"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:114
-msgid "Select Printer Settings Tab"
-msgstr "Zobrazit panel Nastavenà tiskárny"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:115
-msgid "Switch to 3D"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:116
-msgid "Switch to Preview"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 src/slic3r/GUI/Preferences.cpp:10
-msgid "Preferences"
-msgstr "NastavenÃ"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:118
-#: src/slic3r/GUI/PrintHostDialogs.cpp:89
-msgid "Print host upload queue"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:119
-msgid "Camera view "
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:120
-msgid "Add Instance to selected object "
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:121
-msgid "Remove Instance from selected object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:122
-msgid "Show keyboard shortcuts list"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:123
-msgid "Switch between 3D and Preview"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:124
-msgid "Select multiple object/Move multiple object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:132
-msgid "Arrange"
-msgstr "Uspořádat"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:133
-msgid "Select All objects"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:134
-msgid "Delete selected"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:135
-msgid "Delete All"
-msgstr "Smazat Vše"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:136
-msgid "Gizmo move"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:137
-msgid "Gizmo scale"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:138
-msgid "Gizmo rotate"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:139
-msgid "Gizmo cut"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:140
-msgid "Gizmo Place face on bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:141
-msgid "Gizmo SLA support points"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:142
-msgid "Zoom to Bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:143
-msgid "Zoom to all objects in scene, if none selected"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:144
-msgid "Zoom to selected object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:145
-msgid "Zoom in"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:146
-msgid "Zoom out"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:147
-msgid "Unselect gizmo, keep object selection"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:149
-msgid "Plater Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
-msgid "Arrow Up"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
-msgid "Upper Layer"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
-msgid "Arrow Down"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
-msgid "Lower Layer"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:158
-msgid "Preview Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:53
-msgid ""
-" - Remember to check for updates at http://github.com/prusa3d/slic3r/releases"
-msgstr ""
-" - Nezapomeňte zkontrolovat aktualizace na http://github.com/prusa3d/slic3r/"
-"releases"
-
-#: src/slic3r/GUI/MainFrame.cpp:130
-msgid "Plater"
-msgstr "Podložka"
-
-#: src/slic3r/GUI/MainFrame.cpp:236
-msgid "&Open"
-msgstr "&OtevÅ™Ãt"
-
-#: src/slic3r/GUI/MainFrame.cpp:236
-msgid "Open a project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:238
-msgid "&Save"
-msgstr "&Uložit"
-
-#: src/slic3r/GUI/MainFrame.cpp:238
-msgid "Save current project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:240
-msgid "Save &as"
-msgstr "Uložit &jako"
-
-#: src/slic3r/GUI/MainFrame.cpp:240
-msgid "Save current project file as"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:246
-msgid "Import STL/OBJ/AM&F/3MF"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:246
-msgid "Load a model"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:249
-msgid "Import &Config"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:249
-msgid "Load exported configuration file"
-msgstr "NaÄÃst exportovaný konfiguraÄnà soubor"
-
-#: src/slic3r/GUI/MainFrame.cpp:251
-msgid "Import Config from &project"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:251
-msgid "Load configuration from project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:254
-msgid "Import Config &Bundle"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:254
-msgid "Load presets from a bundle"
-msgstr "NaÄÃst pÅ™ednastavenà z balÃku"
-
-#: src/slic3r/GUI/MainFrame.cpp:256
-msgid "&Import"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:259
-msgid "Export &G-code"
-msgstr "Exportovat &G-kód"
-
-#: src/slic3r/GUI/MainFrame.cpp:259
-msgid "Export current plate as G-code"
-msgstr "Exportovat stávajÃcà plochu do G-code"
-
-#: src/slic3r/GUI/MainFrame.cpp:262
-msgid "Export plate as &STL"
-msgstr "Exportovat plochu jako &STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:262
-msgid "Export current plate as STL"
-msgstr "Exportovat stávajÃcà plochu jako STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:264
-msgid "Export plate as &AMF"
-msgstr "Exportovat plochu jako &AMF"
-
-#: src/slic3r/GUI/MainFrame.cpp:264
-msgid "Export current plate as AMF"
-msgstr "Exportovat stávajÃcà plochu jako AMF"
-
-#: src/slic3r/GUI/MainFrame.cpp:267
-msgid "Export &Config"
-msgstr "Exportovat &Konfiguraci"
-
-#: src/slic3r/GUI/MainFrame.cpp:267
-msgid "Export current configuration to file"
-msgstr "Exportovat souÄasnou konfiguraci do souboru"
-
-#: src/slic3r/GUI/MainFrame.cpp:269
-msgid "Export Config &Bundle"
-msgstr "Exportovat KonfiguraÄnà &BalÃk"
-
-#: src/slic3r/GUI/MainFrame.cpp:269
-msgid "Export all presets to file"
-msgstr "Exportovat všechna přednastavenà do souboru"
-
-#: src/slic3r/GUI/MainFrame.cpp:271
-msgid "&Export"
-msgstr "&Exportovat"
-
-#: src/slic3r/GUI/MainFrame.cpp:277
-msgid "Quick Slice"
-msgstr "Rychlé SlicovánÃ"
-
-#: src/slic3r/GUI/MainFrame.cpp:277
-msgid "Slice a file into a G-code"
-msgstr "Slicovat soubor do G-code"
-
-#: src/slic3r/GUI/MainFrame.cpp:283
-msgid "Quick Slice and Save As"
-msgstr "Rychlé Slicovánà a Uložit jako"
-
-#: src/slic3r/GUI/MainFrame.cpp:283
-msgid "Slice a file into a G-code, save as"
-msgstr "Slicovat soubor do G-code, uložit jako"
-
-#: src/slic3r/GUI/MainFrame.cpp:289
-msgid "Repeat Last Quick Slice"
-msgstr "Opakovat Poslednà SlicovánÃ"
-
-#: src/slic3r/GUI/MainFrame.cpp:297
-msgid "(Re)Slice &Now"
-msgstr "(Z&novu)Slicovat"
-
-#: src/slic3r/GUI/MainFrame.cpp:297
-msgid "Start new slicing process"
-msgstr "Zahájit nový slicovacà proces"
-
-#: src/slic3r/GUI/MainFrame.cpp:300
-msgid "&Repair STL file"
-msgstr "Op&ravit soubor STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:300
-msgid "Automatically repair an STL file"
-msgstr "Automaticky opravit STL soubor"
-
-#: src/slic3r/GUI/MainFrame.cpp:303
-msgid "&Quit"
-msgstr "U&konÄit"
-
-#: src/slic3r/GUI/MainFrame.cpp:303
-msgid "Quit Slic3r"
-msgstr "UkonÄit Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:321
-msgid "&Select all"
-msgstr "&Vybrat vše"
-
-#: src/slic3r/GUI/MainFrame.cpp:321
-msgid "Selects all objects"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:324
-msgid "&Delete selected"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:324
-msgid "Deletes the current selection"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:326
-msgid "Delete &all"
-msgstr "&Smazat Vše"
-
-#: src/slic3r/GUI/MainFrame.cpp:326
-msgid "Deletes all objects"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:339
-msgid "&Plater Tab"
-msgstr "Panel &Podložka"
-
-#: src/slic3r/GUI/MainFrame.cpp:339
-msgid "Show the plater"
-msgstr "Zobrazit podložku"
-
-#: src/slic3r/GUI/MainFrame.cpp:346
-msgid "P&rint Settings Tab"
-msgstr "Panel Nastavenà t&isku"
-
-#: src/slic3r/GUI/MainFrame.cpp:346
-msgid "Show the print settings"
-msgstr "Zobrazit nastavenà tisku"
-
-#: src/slic3r/GUI/MainFrame.cpp:348
-msgid "&Filament Settings Tab"
-msgstr "Panel Nastavenà &filamentu"
-
-#: src/slic3r/GUI/MainFrame.cpp:348
-msgid "Show the filament settings"
-msgstr "Zobrazit nastavenà filamentu"
-
-#: src/slic3r/GUI/MainFrame.cpp:350
-msgid "Print&er Settings Tab"
-msgstr "Panel Nastavenà &tiskárny"
-
-#: src/slic3r/GUI/MainFrame.cpp:350
-msgid "Show the printer settings"
-msgstr "Zobrazit nastavenà tiskárny"
-
-#: src/slic3r/GUI/MainFrame.cpp:354
-msgid "3&D"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:354
-msgid "Show the 3D editing view"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:356
-msgid "Pre&view"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:356
-msgid "Show the 3D slices preview"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:377
-msgid "Print &Host Upload Queue"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:377
-msgid "Display the Print Host Upload Queue window"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "&Iso"
-msgstr "&Izometrické"
-
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "Iso View"
-msgstr "Izometrické zobrazenÃ"
-
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "&Top"
-msgstr "S&vrchu"
-
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "Top View"
-msgstr "Pohled svrchu"
-
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "&Bottom"
-msgstr "Ze&spod"
-
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "Bottom View"
-msgstr "Pohled zespod"
-
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "&Front"
-msgstr "Z&epředu"
-
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "Front View"
-msgstr "Pohled zepředu"
-
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "R&ear"
-msgstr "Zeza&du"
-
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "Rear View"
-msgstr "Pohled zezadu"
-
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "&Left"
-msgstr "Z&leva"
-
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "Left View"
-msgstr "Pohled zleva"
-
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "&Right"
-msgstr "Z&prava"
-
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "Right View"
-msgstr "Pohled zprava"
-
-#: src/slic3r/GUI/MainFrame.cpp:409
-msgid "Prusa 3D &Drivers"
-msgstr "Prusa 3D &OvladaÄe"
-
-#: src/slic3r/GUI/MainFrame.cpp:409
-msgid "Open the Prusa3D drivers download page in your browser"
-msgstr "OtevÅ™Ãt stránku pro stahovánà Prusa 3D ovladaÄů ve vaÅ¡em prohlÞeÄi"
-
-#: src/slic3r/GUI/MainFrame.cpp:411
-msgid "Prusa Edition &Releases"
-msgstr "&Vydánà Prusa Edice"
-
-#: src/slic3r/GUI/MainFrame.cpp:411
-msgid "Open the Prusa Edition releases page in your browser"
-msgstr "OtavÅ™Ãt stránku vydánà Prusa Edice ve vaÅ¡em prohlÞeÄi"
-
-#: src/slic3r/GUI/MainFrame.cpp:417
-msgid "Slic3r &Website"
-msgstr "Slic3r &Webová stránka"
-
-#: src/slic3r/GUI/MainFrame.cpp:417
-msgid "Open the Slic3r website in your browser"
-msgstr "OtevÅ™Ãt webovou stránku Slic3ru ve vaÅ¡em prohlÞeÄi"
-
-#: src/slic3r/GUI/MainFrame.cpp:419
-msgid "Slic3r &Manual"
-msgstr "Slic3r &návod"
-
-#: src/slic3r/GUI/MainFrame.cpp:419
-msgid "Open the Slic3r manual in your browser"
-msgstr "OtevÅ™Ãt Slic3r návod ve vaÅ¡em prohlÞeÄi"
-
-#: src/slic3r/GUI/MainFrame.cpp:422
-msgid "System &Info"
-msgstr "&Informace o systému"
-
-#: src/slic3r/GUI/MainFrame.cpp:422
-msgid "Show system information"
-msgstr "Zobrazit systémové informace"
-
-#: src/slic3r/GUI/MainFrame.cpp:424
-msgid "Show &Configuration Folder"
-msgstr "OtevÅ™Ãt &adresář nastavenÃ"
-
-#: src/slic3r/GUI/MainFrame.cpp:424
-msgid "Show user configuration folder (datadir)"
-msgstr "Zobrazit uživatelský adresář konfigurace (datadir)"
-
-#: src/slic3r/GUI/MainFrame.cpp:426
-msgid "Report an I&ssue"
-msgstr "Nahlásit &chybu"
-
-#: src/slic3r/GUI/MainFrame.cpp:426
-msgid "Report an issue on the Slic3r Prusa Edition"
-msgstr "Nahlásit chybu ve Slic3eru Prusa Edice"
-
-#: src/slic3r/GUI/MainFrame.cpp:428
-msgid "&About Slic3r"
-msgstr "&O Slic3ru"
-
-#: src/slic3r/GUI/MainFrame.cpp:428
-msgid "Show about dialog"
-msgstr "Zobrazit okno o Slic3ru"
-
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "&Keyboard Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "Show the list of the keyboard shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:439
-msgid "&File"
-msgstr "&Soubor"
-
-#: src/slic3r/GUI/MainFrame.cpp:440
-msgid "&Edit"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:441
-msgid "&Window"
-msgstr "&Okno"
-
-#: src/slic3r/GUI/MainFrame.cpp:442
-msgid "&View"
-msgstr "&ZobrazenÃ"
-
-#: src/slic3r/GUI/MainFrame.cpp:445
-msgid "&Help"
-msgstr "&Pomoc"
-
-#: src/slic3r/GUI/MainFrame.cpp:472
-msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Zvolit soubor ke slicovánà (STL/OBJ/AMF/3MF/PRUSA):"
-
-#: src/slic3r/GUI/MainFrame.cpp:486
-msgid "No previously sliced file."
-msgstr "Žádné dÅ™Ãve slicované soubory."
-
-#: src/slic3r/GUI/MainFrame.cpp:487 src/slic3r/GUI/PrintHostDialogs.cpp:173
-msgid "Error"
-msgstr "Chyba"
-
-#: src/slic3r/GUI/MainFrame.cpp:492
-msgid "Previously sliced file ("
-msgstr "DÅ™Ãve slicovaný soubor ("
-
-#: src/slic3r/GUI/MainFrame.cpp:492
-msgid ") not found."
-msgstr ") nebyl nalezen."
-
-#: src/slic3r/GUI/MainFrame.cpp:493
-msgid "File Not Found"
-msgstr "Soubor nenalezen"
-
-#: src/slic3r/GUI/MainFrame.cpp:531 src/slic3r/GUI/Tab.cpp:3031
-msgid "Save "
-msgstr "Uložit "
-
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid "SVG"
-msgstr "SVG"
-
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid "G-code"
-msgstr "G-code"
-
-# Context: L('Save ') . ($params{export_svg} ? L('SVG') : L('G-code')) . L(' file as:'), e.g. "Save G-Code file as:"
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid " file as:"
-msgstr " soubor jako:"
-
-#: src/slic3r/GUI/MainFrame.cpp:548
-msgid "Save zip file as:"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:560
-msgid "Slicing"
-msgstr "SlicovánÃ"
-
-#: src/slic3r/GUI/MainFrame.cpp:560
-msgid "Processing "
-msgstr "Zpracovávám "
-
-#: src/slic3r/GUI/MainFrame.cpp:583
-msgid " was successfully sliced."
-msgstr " byl úspěšně slicován."
-
-#: src/slic3r/GUI/MainFrame.cpp:585
-msgid "Slicing Done!"
-msgstr "Slicovánà dokonÄeno!"
-
-#: src/slic3r/GUI/MainFrame.cpp:600
-msgid "Select the STL file to repair:"
-msgstr "Vyberte STL soubor k opravÄ›:"
-
-#: src/slic3r/GUI/MainFrame.cpp:614
-msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
-msgstr "Uložit soubor OBJ (méně náchylný na chyby souřadnic než STL) jako:"
-
-#: src/slic3r/GUI/MainFrame.cpp:629
-msgid "Your file was repaired."
-msgstr "Váš soubor byl opraven."
-
-#: src/slic3r/GUI/MainFrame.cpp:629
-msgid "Repair"
-msgstr "Oprava"
-
-#: src/slic3r/GUI/MainFrame.cpp:643
-msgid "Save configuration as:"
-msgstr "Uložit konfiguraci jako:"
-
-#: src/slic3r/GUI/MainFrame.cpp:663 src/slic3r/GUI/MainFrame.cpp:727
-msgid "Select configuration to load:"
-msgstr "Zvolte konfiguraci k naÄtenÃ:"
-
-#: src/slic3r/GUI/MainFrame.cpp:700
-msgid "Save presets bundle as:"
-msgstr "Uložit balÃk pÅ™ednastavenà jako:"
-
-#: src/slic3r/GUI/MainFrame.cpp:751
-#, c-format
-msgid "%d presets successfully imported."
-msgstr "%d přednastavenà úspěšně importováno."
-
-#: src/slic3r/GUI/MsgDialog.cpp:66
-msgid "Slic3r error"
-msgstr "Chyba Slic3ru"
-
-#: src/slic3r/GUI/MsgDialog.cpp:66
-msgid "Slic3r has encountered an error"
-msgstr "Došlo k chybě Slic3ru"
-
-#: src/slic3r/GUI/MsgDialog.cpp:84
-msgid "Copy to clipboard"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:107
-msgid "Info"
-msgstr "Info"
-
-#: src/slic3r/GUI/Plater.cpp:126
-msgid "Volume"
-msgstr "Obsah"
-
-#: src/slic3r/GUI/Plater.cpp:127
-msgid "Facets"
-msgstr "Facety"
-
-#: src/slic3r/GUI/Plater.cpp:128
-msgid "Materials"
-msgstr "Materiálů"
-
-#: src/slic3r/GUI/Plater.cpp:131
-msgid "Manifold"
-msgstr "Model OK"
-
-#: src/slic3r/GUI/Plater.cpp:174
-msgid "Sliced Info"
-msgstr "Informace o slicovánÃ"
-
-#: src/slic3r/GUI/Plater.cpp:193 src/slic3r/GUI/Plater.cpp:823
-msgid "Used Filament (m)"
-msgstr "Použito Filamentu (m)"
-
-#: src/slic3r/GUI/Plater.cpp:194
-msgid "Used Filament (mm³)"
-msgstr "Použito Filamentu (mm³)"
-
-#: src/slic3r/GUI/Plater.cpp:195
-msgid "Used Filament (g)"
-msgstr "Použito Filamentu (g)"
-
-#: src/slic3r/GUI/Plater.cpp:196 src/slic3r/GUI/Plater.cpp:838
-#: src/libslic3r/PrintConfig.cpp:718
-msgid "Cost"
-msgstr "Náklady"
-
-#: src/slic3r/GUI/Plater.cpp:197 src/slic3r/GUI/Plater.cpp:852
-msgid "Estimated printing time"
-msgstr "Odhadovaný Äas tisku"
-
-#: src/slic3r/GUI/Plater.cpp:198
-msgid "Number of tool changes"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:361
-msgid "Support"
-msgstr "Podpora"
-
-#: src/slic3r/GUI/Plater.cpp:364
-msgid "Select what kind of support do you need"
-msgstr "Vyberte typ podpor, které potřebujete"
-
-#: src/slic3r/GUI/Plater.cpp:365 src/libslic3r/GCode/PreviewData.cpp:162
-msgid "None"
-msgstr "Žádný"
-
-#: src/slic3r/GUI/Plater.cpp:366 src/libslic3r/PrintConfig.cpp:1904
-msgid "Support on build plate only"
-msgstr "Podpory pouze na tiskové ploše"
-
-#: src/slic3r/GUI/Plater.cpp:367
-msgid "Everywhere"
-msgstr "Všude"
-
-#: src/slic3r/GUI/Plater.cpp:379 src/slic3r/GUI/Tab.cpp:977
-msgid "Brim"
-msgstr "LÃmec"
-
-#: src/slic3r/GUI/Plater.cpp:381
-msgid ""
-"This flag enables the brim that will be printed around each object on the "
-"first layer."
-msgstr ""
-"Tato vlajka zapÃná lÃmec, který bude vytiÅ¡tÄ›n kolem každého objektu pÅ™i "
-"prvnà vrstvě."
-
-#: src/slic3r/GUI/Plater.cpp:390
-msgid "Purging volumes"
-msgstr "Objemy ÄiÅ¡tÄ›nÃ"
-
-#: src/slic3r/GUI/Plater.cpp:556
-msgid "Print settings"
-msgstr "Nastavenà tisku"
-
-#: src/slic3r/GUI/Plater.cpp:557 src/slic3r/GUI/Tab.cpp:1380
-#: src/slic3r/GUI/Tab.cpp:1381
-msgid "Filament"
-msgstr "Filament"
-
-#: src/slic3r/GUI/Plater.cpp:558 src/slic3r/GUI/Preset.cpp:1158
-msgid "SLA print"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:559 src/slic3r/GUI/Preset.cpp:1159
-msgid "SLA material"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:560
-msgid "Printer"
-msgstr "Tiskárna"
-
-#: src/slic3r/GUI/Plater.cpp:588
-msgid "Send to printer"
-msgstr "Odeslat do tiskárny"
-
-#: src/slic3r/GUI/Plater.cpp:607
-msgid "Slice now"
-msgstr "Slicovat"
-
-#: src/slic3r/GUI/Plater.cpp:787
-#, c-format
-msgid "%d (%d shells)"
-msgstr "%d (%d obalů)"
-
-#: src/slic3r/GUI/Plater.cpp:792
-#, c-format
-msgid "Auto-repaired (%d errors)"
-msgstr "Automaticky opraveno (%d errors)"
-
-#: src/slic3r/GUI/Plater.cpp:795
-#, c-format
-msgid ""
-"%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d "
-"facets reversed, %d backwards edges"
-msgstr ""
-"%d poškozených faset, %d okrajů opraveno, %d faset odstraněno, %d faset "
-"pÅ™idáno, %d faset navráceno, %d zadnÃch okrajů"
-
-#: src/slic3r/GUI/Plater.cpp:805
-msgid "Yes"
-msgstr "Ano"
-
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
-msgid "objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
-msgid "wipe tower"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:855
-msgid "normal mode"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:859
-msgid "silent mode"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1304
-msgid "Loading"
-msgstr "NaÄÃtánÃ"
-
-#: src/slic3r/GUI/Plater.cpp:1314
-#, c-format
-msgid "Processing input file %s\n"
-msgstr "Zpracovávám vstupnà soubor %s\n"
-
-#: src/slic3r/GUI/Plater.cpp:1366
-msgid ""
-"This file contains several objects positioned at multiple heights. Instead "
-"of considering them as multiple objects, should I consider\n"
-"this file as a single object having multiple parts?\n"
-msgstr ""
-"Tento soubor obsahuje nÄ›kolik objektů umÃstÄ›ných v různých výškách. Majà být "
-"vloženy jako jeden objekt obsahujÃcà vÃce ÄástÃ,\n"
-"namÃsto vloženà nÄ›kolika objektů?\n"
-
-#: src/slic3r/GUI/Plater.cpp:1369 src/slic3r/GUI/Plater.cpp:1411
-msgid "Multi-part object detected"
-msgstr "Detekován objekt obsahujÃcà vÃce ÄástÃ"
-
-#: src/slic3r/GUI/Plater.cpp:1388
-#, c-format
-msgid ""
-"You can't to add the object(s) from %s because of one or some of them "
-"is(are) multi-part"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1408
-msgid ""
-"Multiple objects were loaded for a multi-material printer.\n"
-"Instead of considering them as multiple objects, should I consider\n"
-"these files to represent a single object having multiple parts?\n"
-msgstr ""
-"Bylo nahráno vÃce objektů pro multi materiálovou tiskárnu.\n"
-"Majà být vloženy jako jeden objekt obsahujÃcà vÃce ÄástÃ, \n"
-"namÃsto vloženà nÄ›kolika objektů?\n"
-
-#: src/slic3r/GUI/Plater.cpp:1424
-msgid "Loaded"
-msgstr "NaÄteno"
-
-#: src/slic3r/GUI/Plater.cpp:1492
-msgid ""
-"Your object appears to be too large, so it was automatically scaled down to "
-"fit your print bed."
-msgstr ""
-"Váš objekt se zdá být pÅ™ÃliÅ¡ velký, takže byl automaticky zmenÅ¡en, aby se "
-"vešel na tiskovou podložku."
-
-#: src/slic3r/GUI/Plater.cpp:1493
-msgid "Object too large?"
-msgstr "Objekt moc velký?"
-
-#: src/slic3r/GUI/Plater.cpp:1536
-msgid "Export print config"
-msgstr "Exportovat nastavenà tisku"
-
-#: src/slic3r/GUI/Plater.cpp:1538
-msgid "Save file as:"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1702
-msgid "Arranging canceled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1705
-msgid "Arranging"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1736
-msgid "Could not arrange model objects! Some geometries may be invalid."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1740
-msgid "Arranging done."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1782
-msgid "Orientation search canceled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1787
-msgid "Searching for optimal orientation"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1797
-msgid "Orientation found."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1818
-msgid ""
-"The selected object can't be split because it contains more than one volume/"
-"material."
-msgstr ""
-"Vybraný objekt nemůže být rozdÄ›len, protože obsahuje vÃce nez jeden objem/"
-"materiál."
-
-#: src/slic3r/GUI/Plater.cpp:1945 src/slic3r/GUI/PrintHostDialogs.cpp:174
-msgid "Cancelling"
-msgstr "UkonÄovánÃ"
-
-#: src/slic3r/GUI/Plater.cpp:1962
-msgid "Another export job is currently running."
-msgstr "V souÄasné dobÄ› běžà jiná úloha exportu."
-
-#: src/slic3r/GUI/Plater.cpp:2215
-msgid "Export failed"
-msgstr "Exportovánà selhalo"
-
-#: src/slic3r/GUI/Plater.cpp:2219 src/slic3r/GUI/PrintHostDialogs.cpp:175
-msgid "Cancelled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2346 src/slic3r/GUI/Tab.cpp:2736
-msgid "Delete"
-msgstr "Smazat"
-
-#: src/slic3r/GUI/Plater.cpp:2346
-msgid "Remove the selected object"
-msgstr "Odstanit vybraný objekt"
-
-#: src/slic3r/GUI/Plater.cpp:2349
-msgid "Increase copies"
-msgstr "Přidat kopie"
-
-#: src/slic3r/GUI/Plater.cpp:2349
-msgid "Place one more copy of the selected object"
-msgstr "Přidá jednu kopii vybraného objektu"
-
-#: src/slic3r/GUI/Plater.cpp:2351
-msgid "Decrease copies"
-msgstr "Odebrat kopie"
-
-#: src/slic3r/GUI/Plater.cpp:2351
-msgid "Remove one copy of the selected object"
-msgstr "Odstanà jednu kopii vybraného objektu"
-
-#: src/slic3r/GUI/Plater.cpp:2353
-msgid "Set number of copies"
-msgstr "Zadat poÄet kopiÃ"
-
-#: src/slic3r/GUI/Plater.cpp:2353
-msgid "Change the number of copies of the selected object"
-msgstr "Změňte poÄet kopià vybraného objektu"
-
-#: src/slic3r/GUI/Plater.cpp:2363
-msgid "Reload from Disk"
-msgstr "Znovu naÄÃst z Disku"
-
-#: src/slic3r/GUI/Plater.cpp:2363
-msgid "Reload the selected file from Disk"
-msgstr "Znovu naÄÃst vybraný objekt z Disku"
-
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export object as STL"
-msgstr "Exportovat objekt jako STL"
-
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export this single object as STL file"
-msgstr "Exportovat tento jediný objekt jako STL soubor"
-
-#: src/slic3r/GUI/Plater.cpp:2375
-msgid "Along X axis"
-msgstr "Podél osy X"
-
-#: src/slic3r/GUI/Plater.cpp:2375
-msgid "Mirror the selected object along the X axis"
-msgstr "Zrcadlit rozměr vybraného objektu podél osy X"
-
-#: src/slic3r/GUI/Plater.cpp:2377
-msgid "Along Y axis"
-msgstr "Podél osy Y"
-
-#: src/slic3r/GUI/Plater.cpp:2377
-msgid "Mirror the selected object along the Y axis"
-msgstr "Zrcadlit rozměr vybraného objektu podél osy Y"
-
-#: src/slic3r/GUI/Plater.cpp:2379
-msgid "Along Z axis"
-msgstr "Podél osy Z"
-
-#: src/slic3r/GUI/Plater.cpp:2379
-msgid "Mirror the selected object along the Z axis"
-msgstr "Zrcadlit rozměr vybraného objektu podél osy Z"
-
-#: src/slic3r/GUI/Plater.cpp:2382
-msgid "Mirror"
-msgstr "Zrcadlit"
-
-#: src/slic3r/GUI/Plater.cpp:2382
-msgid "Mirror the selected object"
-msgstr "Zrcadlit vybraný objekt"
-
-#: src/slic3r/GUI/Plater.cpp:2400
-msgid "To objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2400 src/slic3r/GUI/Plater.cpp:2431
-msgid "Split the selected object into individual objects"
-msgstr "Rozdělit vybraný objekt na jednotlivé objekty"
-
-#: src/slic3r/GUI/Plater.cpp:2402
-msgid "To parts"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2402 src/slic3r/GUI/Plater.cpp:2451
-msgid "Split the selected object into individual sub-parts"
-msgstr "RozdÄ›lit vybraný objekt na jednotlivé Äásti"
-
-#: src/slic3r/GUI/Plater.cpp:2405 src/slic3r/GUI/Plater.cpp:2431
-#: src/slic3r/GUI/Plater.cpp:2451
-msgid "Split"
-msgstr "Rozdělit"
-
-#: src/slic3r/GUI/Plater.cpp:2405
-msgid "Split the selected object"
-msgstr "Rozdělit vybraný objekt"
-
-#: src/slic3r/GUI/Plater.cpp:2435
-msgid "Optimize orientation"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2435
-msgid "Optimize the rotation of the object for better print results."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2795
-msgid "Save G-code file as:"
-msgstr "Uložit G-code jako:"
-
-#: src/slic3r/GUI/Plater.cpp:2795
-msgid "Save Zip file as:"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2845
-#, c-format
-msgid "STL file exported to %s"
-msgstr "Soubor STL byl exportován do %s"
-
-#: src/slic3r/GUI/Plater.cpp:2861
-#, c-format
-msgid "AMF file exported to %s"
-msgstr "Soubor AMF byl exportován do %s"
-
-#: src/slic3r/GUI/Plater.cpp:2864
-#, c-format
-msgid "Error exporting AMF file %s"
-msgstr "Chyba při exportu souboru AMF %s"
-
-#: src/slic3r/GUI/Plater.cpp:2891
-#, c-format
-msgid "3MF file exported to %s"
-msgstr "Soubor 3MF byl exportován do %s"
-
-#: src/slic3r/GUI/Plater.cpp:2894
-#, c-format
-msgid "Error exporting 3MF file %s"
-msgstr "Chyba při exportu souboru 3MF %s"
-
-#: src/slic3r/GUI/Preferences.cpp:17 src/slic3r/GUI/Tab.cpp:1712
-#: src/slic3r/GUI/Tab.cpp:1911
-msgid "General"
-msgstr "Obecné"
-
-#: src/slic3r/GUI/Preferences.cpp:34
-msgid "Remember output directory"
-msgstr "Pamatovat si výstupnà složku"
-
-#: src/slic3r/GUI/Preferences.cpp:36
-msgid ""
-"If this is enabled, Slic3r will prompt the last output directory instead of "
-"the one containing the input files."
-msgstr ""
-"Pokud je tato volba povolena, Slic3r vyvolá poslednà výstupnà adresář "
-"namÃsto toho, který obsahuje vstupnà soubory."
-
-#: src/slic3r/GUI/Preferences.cpp:42
-msgid "Auto-center parts"
-msgstr "Auto-centrovánà objektů"
-
-#: src/slic3r/GUI/Preferences.cpp:44
-msgid ""
-"If this is enabled, Slic3r will auto-center objects around the print bed "
-"center."
-msgstr ""
-"Pokud je tato možnost povolena, Slic3r bude automaticky centrovat objekty "
-"kolem středu tiskové plochy."
-
-#: src/slic3r/GUI/Preferences.cpp:50
-msgid "Background processing"
-msgstr "Zpracovánà na pozadÃ"
-
-#: src/slic3r/GUI/Preferences.cpp:52
-msgid ""
-"If this is enabled, Slic3r will pre-process objects as soon as they're "
-"loaded in order to save time when exporting G-code."
-msgstr ""
-"Pokud je tato možnost povolena, Slic3r předprojektuje objekty, jakmile budou "
-"naÄteny, aby Å¡etÅ™il Äas pÅ™i exportu G-code."
-
-#: src/slic3r/GUI/Preferences.cpp:74
-msgid "Suppress \" - default - \" presets"
-msgstr "PotlaÄit “ - výchozà - “ pÅ™ednastavenÃ"
-
-#: src/slic3r/GUI/Preferences.cpp:76
-msgid ""
-"Suppress \" - default - \" presets in the Print / Filament / Printer "
-"selections once there are any other valid presets available."
-msgstr ""
-"PotlaÄit “ - výchozà - “ pÅ™ednastavenà v nabÃdkách Tisk / Filament / "
-"Tiskárna, jakmile budou k dispozici dalšà platné předvolby."
-
-#: src/slic3r/GUI/Preferences.cpp:82
-msgid "Show incompatible print and filament presets"
-msgstr "Zobrazit nekompatibilnà přednastavenà tisku a filamentu"
-
-#: src/slic3r/GUI/Preferences.cpp:84
-msgid ""
-"When checked, the print and filament presets are shown in the preset editor "
-"even if they are marked as incompatible with the active printer"
-msgstr ""
-"Pokud je zaškrtnuto, přednastavenà tisku a filamentu se zobrazujà v editoru "
-"pÅ™ednastavenÃ, i když jsou oznaÄeny jako nekompatibilnà s aktivnà tiskárnou"
-
-#: src/slic3r/GUI/Preferences.cpp:90
-msgid "Use legacy OpenGL 1.1 rendering"
-msgstr "Použijte historické OpenGL 1.1 vykreslovánÃ"
-
-#: src/slic3r/GUI/Preferences.cpp:92
-msgid ""
-"If you have rendering issues caused by a buggy OpenGL 2.0 driver, you may "
-"try to check this checkbox. This will disable the layer height editing and "
-"anti aliasing, so it is likely better to upgrade your graphics driver."
-msgstr ""
-"Pokud máte problémy s vykreslovánÃm způsobené chybným ovladaÄem OpenGL 2.0, "
-"můžete se pokusit zaÅ¡krtnout toto polÃÄko. TÃm se vypnou úpravy výšky "
-"hladiny a vyhlazenÃ, takže je je lepšà upgradovat grafický ovladaÄ."
-
-#: src/slic3r/GUI/Preferences.cpp:115
-msgid "You need to restart Slic3r to make the changes effective."
-msgstr "Chcete-li provést zmÄ›ny, musÃte restartovat aplikaci Slic3r."
-
-#: src/slic3r/GUI/Preset.cpp:170
-msgid "modified"
-msgstr ""
-
-#: src/slic3r/GUI/Preset.cpp:862 src/slic3r/GUI/Preset.cpp:902
-#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:962
-#: src/slic3r/GUI/PresetBundle.cpp:1459 src/slic3r/GUI/PresetBundle.cpp:1512
-msgid "System presets"
-msgstr "Systémové pÅ™ednastavenÃ"
-
-#: src/slic3r/GUI/Preset.cpp:906 src/slic3r/GUI/Preset.cpp:966
-#: src/slic3r/GUI/PresetBundle.cpp:1517
-msgid "User presets"
-msgstr "Uživatelská pÅ™ednastavenÃ"
-
-#: src/slic3r/GUI/Preset.cpp:1157
-msgid "filament"
-msgstr ""
-
-#: src/slic3r/GUI/PresetHints.cpp:28
-#, c-format
-msgid ""
-"If estimated layer time is below ~%ds, fan will run at %d%% and print speed "
-"will be reduced so that no less than %ds are spent on that layer (however, "
-"speed will never be reduced below %dmm/s)."
-msgstr ""
-"Pokud je odhadovaný Äas vrstvy nižšà než ~% ds, bude ventilátor pracovat na "
-"%d%% a rychlost tisku bude snÞena tak, aby na tuto vrstvu nebylo použito "
-"ménÄ› než %ds (rychlost vÅ¡ak nikdy nebude snÞena pod %dmm/s)."
-
-#: src/slic3r/GUI/PresetHints.cpp:32
-#, c-format
-msgid ""
-"\n"
-"If estimated layer time is greater, but still below ~%ds, fan will run at a "
-"proportionally decreasing speed between %d%% and %d%%."
-msgstr ""
-"\n"
-"Pokud je odhadovaný Äas vrstvy delÅ¡Ã, ale stále pod ~% ds, bude ventilátor "
-"pracovat s plynule klesajÃcà rychlostà mezi %d%% a %d%%."
+#: xs/src/slic3r/GUI/Tab.cpp:2149
+msgid "\n\nis not compatible with printer\n"
+msgstr "\n\nnenà kompatibilnàs tiskárnou\n"
#: src/slic3r/GUI/PresetHints.cpp:36
-msgid ""
-"\n"
-"During the other layers, fan "
-msgstr ""
-"\n"
-"V průbÄ›hu ostanÃch vrstev, ventilátor "
+msgid "\nDuring the other layers, fan "
+msgstr "\nV průbÄ›hu ostanÃch vrstev, ventilátor "
-#: src/slic3r/GUI/PresetHints.cpp:38
-msgid "Fan "
-msgstr "Ventilátor "
+#: src/slic3r/GUI/PresetHints.cpp:32
+#, possible-c-format
+msgid "\nIf estimated layer time is greater, but still below ~%ds, fan will run at a proportionally decreasing speed between %d%% and %d%%."
+msgstr "\nPokud je odhadovaný Äas vrstvy delÅ¡Ã, ale stále pod ~%ds, bude ventilátor pracovat s plynule klesajÃcà rychlostà mezi %d%% a %d%%."
-#: src/slic3r/GUI/PresetHints.cpp:43
-#, c-format
-msgid "will always run at %d%% "
-msgstr "bude vždy běžet na %d%% "
+#: lib/Slic3r/GUI/Plater.pm:1019
+msgid "\nNon-positive value."
+msgstr "\nNezáporná hodnota."
-#: src/slic3r/GUI/PresetHints.cpp:46
-#, c-format
-msgid "except for the first %d layers"
-msgstr "s výjimkou prvnÃch %d vrstev"
+#: lib/Slic3r/GUI/Plater.pm:1020
+msgid "\nNot a numeric value."
+msgstr "\nNeÄÃselná hodnota."
-#: src/slic3r/GUI/PresetHints.cpp:50
-msgid "except for the first layer"
-msgstr "vyjma prvnà vstvy"
+#: src/slic3r/GUI/MainFrame.cpp:55
+msgid " - Remember to check for updates at http://github.com/prusa3d/slic3r/releases"
+msgstr " - Nezapomeňte zkontrolovat aktualizace na http://github.com/prusa3d/slic3r/releases"
-#: src/slic3r/GUI/PresetHints.cpp:52
-msgid "will be turned off."
-msgstr "bude vypnut."
+#: src/slic3r/GUI/Tab.cpp:3239
+msgid " as:"
+msgstr " jako:"
-#: src/slic3r/GUI/PresetHints.cpp:153
-msgid "external perimeters"
-msgstr "vnějšà perimetry"
+#: src/slic3r/GUI/PresetHints.cpp:228
+#, possible-c-format
+msgid " at filament speed %3.2f mm/s."
+msgstr " při rychlosti filamentu %3.2f mm/s."
-#: src/slic3r/GUI/PresetHints.cpp:162
-msgid "perimeters"
-msgstr "perimetry"
+#: src/slic3r/GUI/Tab.cpp:1737
+msgid " Browse "
+msgstr " Procházet "
-#: src/slic3r/GUI/PresetHints.cpp:171
-msgid "infill"
-msgstr "výplň"
-
-#: src/slic3r/GUI/PresetHints.cpp:181
-msgid "solid infill"
-msgstr "plná výplň"
-
-#: src/slic3r/GUI/PresetHints.cpp:189
-msgid "top solid infill"
-msgstr "vrchnà plná výplň"
-
-#: src/slic3r/GUI/PresetHints.cpp:200
-msgid "support"
-msgstr "podpory"
-
-#: src/slic3r/GUI/PresetHints.cpp:210
-msgid "support interface"
-msgstr "kontaktnà vrstva podpor"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "First layer volumetric"
-msgstr "Volumetrická hodnota prvnà vrstvy"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "Bridging volumetric"
-msgstr "Volumetrická hodnota mostů"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "Volumetric"
-msgstr "Volumetrický"
+#: src/slic3r/GUI/MainFrame.cpp:677
+msgid " file as:"
+msgstr " soubor jako:"
#: src/slic3r/GUI/PresetHints.cpp:217
msgid " flow rate is maximized "
msgstr " průtok je maximalizován "
-#: src/slic3r/GUI/PresetHints.cpp:220
-msgid "by the print profile maximum"
-msgstr "maximem pro profil tisku"
+#: src/slic3r/GUI/Tab.cpp:1358
+#, no-c-format
+msgid " infill pattern is not supposed to work at 100% density.\n\nShall I switch to rectilinear fill pattern?"
+msgstr " vzor výplnÄ› nenà urÄen pro práci se 100% hustotou.\n\nMám pÅ™ejÃt na vzor výplnÄ› rectilinear?"
-#: src/slic3r/GUI/PresetHints.cpp:221
-msgid "when printing "
-msgstr "při tisku "
+#: xs/src/slic3r/GUI/Tab.cpp:2131
+msgid " preset\n"
+msgstr " pÅ™ednastavenÃ\n"
+
+#: xs/src/slic3r/GUI/Tab.cpp:2130
+msgid " preset"
+msgstr " pÅ™ednastavenÃ"
+
+#: src/slic3r/GUI/Tab.cpp:2938
+msgid " Preset"
+msgstr " PÅ™ednastavenÃ"
+
+#: src/slic3r/GUI/Tab.cpp:1818 src/slic3r/GUI/Tab.cpp:2019
+#: src/slic3r/GUI/Tab.cpp:2988
+msgid " Set "
+msgstr " Nastavit "
+
+#: src/slic3r/GUI/Tab.cpp:2936
+msgid " the selected preset?"
+msgstr " zvolené přednastaven�"
+
+#: src/slic3r/GUI/MainFrame.cpp:727
+msgid " was successfully sliced."
+msgstr " byl úspěšně slicován."
#: src/slic3r/GUI/PresetHints.cpp:222
msgid " with a volumetric rate "
msgstr " s objemovou rychlostà "
-#: src/slic3r/GUI/PresetHints.cpp:226
-#, c-format
-msgid "%3.2f mm³/s"
-msgstr "%3.2f mm³/s"
-
-#: src/slic3r/GUI/PresetHints.cpp:228
-#, c-format
-msgid " at filament speed %3.2f mm/s."
-msgstr " při rychlosti filamentu %3.2f mm/s."
-
-#: src/slic3r/GUI/PresetHints.cpp:247
-msgid ""
-"Recommended object thin wall thickness: Not available due to invalid layer "
-"height."
-msgstr ""
-"DoporuÄená tloušťka stÄ›ny objektu: Nenà k dispozici kvůli neplatné výšce "
-"vrstvy."
-
-#: src/slic3r/GUI/PresetHints.cpp:264
-#, c-format
-msgid "Recommended object thin wall thickness for layer height %.2f and "
-msgstr "DoporuÄená tloušťka stÄ›ny objektu pro výšku vrstvy %.2f and "
-
-#: src/slic3r/GUI/PresetHints.cpp:271
-#, c-format
-msgid "%d lines: %.2lf mm"
-msgstr "%d linie: %.2lf mm"
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
-msgid "Send G-Code to printer host"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
-msgid "Upload to Printer Host with the following filename:"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:31
-msgid "Start printing after upload"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:33
-msgid "Use forward slashes ( / ) as a directory separator if needed."
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:111
-msgid "Cancel selected"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:113
-msgid "Show error message"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:115
-msgid "Close"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:152
-#: src/slic3r/GUI/PrintHostDialogs.cpp:171
-msgid "Enqueued"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:172
-msgid "Uploading"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:176
-msgid "Completed"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:214
-msgid "Error uploading to print host:"
-msgstr ""
-
-#: src/slic3r/GUI/RammingChart.cpp:23
-msgid "NO RAMMING AT ALL"
-msgstr "ŽÃDNà RAPIDNà EXTRUZE"
-
-#: src/slic3r/GUI/RammingChart.cpp:76
-msgid "Time"
-msgstr "ÄŒas"
-
-#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78 src/libslic3r/PrintConfig.cpp:603
-#: src/libslic3r/PrintConfig.cpp:653 src/libslic3r/PrintConfig.cpp:670
-#: src/libslic3r/PrintConfig.cpp:2352 src/libslic3r/PrintConfig.cpp:2360
-#: src/libslic3r/PrintConfig.cpp:2432 src/libslic3r/PrintConfig.cpp:2440
-msgid "s"
-msgstr "s"
-
-#: src/slic3r/GUI/RammingChart.cpp:81
-msgid "Volumetric speed"
-msgstr "Objemová rychlost"
-
-#: src/slic3r/GUI/SysInfoDialog.cpp:40
-msgid "Slic3r Prusa Edition - System Information"
-msgstr "Slic3r Prusa Edition - Informace o systému"
-
-#: src/slic3r/GUI/Tab.cpp:49 src/libslic3r/PrintConfig.cpp:202
-msgid "Compatible printers"
-msgstr "Kompatibilnà tiskárny"
-
-#: src/slic3r/GUI/Tab.cpp:50
-msgid "Select the printers this profile is compatible with."
-msgstr "Vyberte tiskárny, s nimiž je tento profil kompatibilnÃ."
-
-#: src/slic3r/GUI/Tab.cpp:55 src/libslic3r/PrintConfig.cpp:215
-msgid "Compatible print profiles"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:56
-msgid "Select the print profiles this profile is compatible with."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:118
-msgid "Save current "
-msgstr "Uložit stávajÃcà "
-
-#: src/slic3r/GUI/Tab.cpp:119
-msgid "Delete this preset"
-msgstr "Smazat pÅ™ednastavenÃ"
-
-#: src/slic3r/GUI/Tab.cpp:131
-msgid ""
-"Hover the cursor over buttons to find more information \n"
-"or click this button."
-msgstr ""
-"Pro vÃce informacà pÅ™ejeÄte kurzorem nad tlaÄÃtky nebo na tlaÄÃtko kliknÄ›te."
-
-#: src/slic3r/GUI/Tab.cpp:824
-msgid "It's a default preset."
-msgstr "Je to výchozà pÅ™ednastavenÃ."
-
-#: src/slic3r/GUI/Tab.cpp:825
-msgid "It's a system preset."
-msgstr "Je to systémové pÅ™ednastavenÃ."
-
-#: src/slic3r/GUI/Tab.cpp:826
-msgid "Current preset is inherited from "
-msgstr "Aktuálnà nastavenà je zděděno od "
-
-#: src/slic3r/GUI/Tab.cpp:831
-msgid "It can't be deleted or modified. "
-msgstr "Nelze smazat nebo upravit. "
-
-#: src/slic3r/GUI/Tab.cpp:832
-msgid ""
-"Any modifications should be saved as a new preset inherited from this one. "
-msgstr ""
-"Jakékoliv úpravy by měly být uloženy jako nové přednastavenà zděděná z "
-"tohoto. "
-
-#: src/slic3r/GUI/Tab.cpp:833
-msgid "To do that please specify a new name for the preset."
-msgstr ""
-"Chcete-li akci provést, prosÃm nejdÅ™Ãve zadejte nový název pÅ™ednastavenÃ."
-
-#: src/slic3r/GUI/Tab.cpp:837
-msgid "Additional information:"
-msgstr "DoplňujÃcà informace:"
-
-#: src/slic3r/GUI/Tab.cpp:843
-msgid "printer model"
-msgstr "model tiskárny"
-
-#: src/slic3r/GUI/Tab.cpp:851
-msgid "default print profile"
-msgstr "výchozà tiskový profil"
-
-#: src/slic3r/GUI/Tab.cpp:854
-msgid "default filament profile"
-msgstr "výchozà profil filamentu"
-
-#: src/slic3r/GUI/Tab.cpp:868
-msgid "default SLA material profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:872
-msgid "default SLA print profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:919 src/slic3r/GUI/Tab.cpp:3174
-msgid "Layers and perimeters"
-msgstr "Vrstvy a perimetry"
-
-#: src/slic3r/GUI/Tab.cpp:920 src/libslic3r/PrintConfig.cpp:46
-msgid "Layer height"
-msgstr "Výška vrstvy"
-
-#: src/slic3r/GUI/Tab.cpp:924
-msgid "Vertical shells"
-msgstr "Svislé stěny"
-
-#: src/slic3r/GUI/Tab.cpp:935
-msgid "Horizontal shells"
-msgstr "Vodorovné stěny"
-
-#: src/slic3r/GUI/Tab.cpp:936 src/libslic3r/PrintConfig.cpp:1788
-msgid "Solid layers"
-msgstr "Plných vrstev"
-
-#: src/slic3r/GUI/Tab.cpp:941
-msgid "Quality (slower slicing)"
-msgstr "Kvalita (pomalejšà slicing)"
-
-#: src/slic3r/GUI/Tab.cpp:958
-msgid "Reducing printing time"
-msgstr "Zkracovánà tiskového Äasu"
-
-#: src/slic3r/GUI/Tab.cpp:970
-msgid "Skirt and brim"
-msgstr "Obrys a lÃmec"
-
-#: src/slic3r/GUI/Tab.cpp:987
-msgid "Raft"
-msgstr "Raft"
-
-#: src/slic3r/GUI/Tab.cpp:991
-msgid "Options for support material and raft"
-msgstr "Volby pro podpory a raft"
-
-#: src/slic3r/GUI/Tab.cpp:1006
-msgid "Speed for print moves"
-msgstr "Speed for print moves"
-
-#: src/slic3r/GUI/Tab.cpp:1018
-msgid "Speed for non-print moves"
-msgstr "Netiskové rychlosti"
-
-#: src/slic3r/GUI/Tab.cpp:1021
-msgid "Modifiers"
-msgstr "Modifikátory"
-
-#: src/slic3r/GUI/Tab.cpp:1024
-msgid "Acceleration control (advanced)"
-msgstr "Kontrola akceleracà (pokroÄilé)"
-
-#: src/slic3r/GUI/Tab.cpp:1031
-msgid "Autospeed (advanced)"
-msgstr "Automatická rychlost (pokroÄilé)"
-
-#: src/slic3r/GUI/Tab.cpp:1037
-msgid "Multiple Extruders"
-msgstr "Multiple Extruders"
-
-#: src/slic3r/GUI/Tab.cpp:1045
-msgid "Ooze prevention"
-msgstr "Prevence odkapávánÃ"
-
-#: src/slic3r/GUI/Tab.cpp:1062
-msgid "Extrusion width"
-msgstr "Å ÃÅ™ka extruze"
-
-#: src/slic3r/GUI/Tab.cpp:1072
-msgid "Overlap"
-msgstr "PÅ™ekrytÃ"
-
-#: src/slic3r/GUI/Tab.cpp:1075
-msgid "Flow"
-msgstr "Průtok"
-
-#: src/slic3r/GUI/Tab.cpp:1078
-msgid "Other"
-msgstr "OstatnÃ"
-
-#: src/slic3r/GUI/Tab.cpp:1085 src/slic3r/GUI/Tab.cpp:3213
-msgid "Output options"
-msgstr "Možnosti výstupu"
-
-#: src/slic3r/GUI/Tab.cpp:1086
-msgid "Sequential printing"
-msgstr "SekvenÄnà tisk"
-
-#: src/slic3r/GUI/Tab.cpp:1088
-msgid "Extruder clearance (mm)"
-msgstr "Koliznà oblast extruderu (mm)"
-
-#: src/slic3r/GUI/Tab.cpp:1097 src/slic3r/GUI/Tab.cpp:3214
-msgid "Output file"
-msgstr "Výstupnà soubor"
-
-#: src/slic3r/GUI/Tab.cpp:1103 src/libslic3r/PrintConfig.cpp:1438
-msgid "Post-processing scripts"
-msgstr "PostprodukÄnà skripty"
-
-#: src/slic3r/GUI/Tab.cpp:1109 src/slic3r/GUI/Tab.cpp:1110
-#: src/slic3r/GUI/Tab.cpp:1483 src/slic3r/GUI/Tab.cpp:1484
-#: src/slic3r/GUI/Tab.cpp:1883 src/slic3r/GUI/Tab.cpp:1884
-#: src/slic3r/GUI/Tab.cpp:1964 src/slic3r/GUI/Tab.cpp:1965
-#: src/slic3r/GUI/Tab.cpp:3119 src/slic3r/GUI/Tab.cpp:3120
-msgid "Notes"
-msgstr "Poznámky"
-
-#: src/slic3r/GUI/Tab.cpp:1116 src/slic3r/GUI/Tab.cpp:1491
-#: src/slic3r/GUI/Tab.cpp:1890 src/slic3r/GUI/Tab.cpp:1971
-#: src/slic3r/GUI/Tab.cpp:3127 src/slic3r/GUI/Tab.cpp:3219
-msgid "Dependencies"
-msgstr "Závislosti"
-
-#: src/slic3r/GUI/Tab.cpp:1117 src/slic3r/GUI/Tab.cpp:1492
-#: src/slic3r/GUI/Tab.cpp:1891 src/slic3r/GUI/Tab.cpp:1972
-#: src/slic3r/GUI/Tab.cpp:3128 src/slic3r/GUI/Tab.cpp:3220
-msgid "Profile dependencies"
-msgstr "Profilové závislosti"
-
-#: src/slic3r/GUI/Tab.cpp:1161
-#, no-c-format
-msgid ""
-"The Spiral Vase mode requires:\n"
-"- one perimeter\n"
-"- no top solid layers\n"
-"- 0% fill density\n"
-"- no support material\n"
-"- no ensure_vertical_shell_thickness\n"
-"\n"
-"Shall I adjust those settings in order to enable Spiral Vase?"
-msgstr ""
-"Mód spirálové vázy vyžaduje:\n"
-"- jeden perimeter\n"
-"- žádné plné vrchnà vrstvy\n"
-"- 0% hustota výplně\n"
-"- žádné podpěry\n"
-"- nezjišťovánà vertikálnà tloušťky pláště\n"
-"\n"
-"Mám tyto nastavenà upravit tak, aby bylo možné mód spirálové vázy zapnout?"
-
-#: src/slic3r/GUI/Tab.cpp:1168
-msgid "Spiral Vase"
-msgstr "Spirálová váza"
-
-#: src/slic3r/GUI/Tab.cpp:1191
-msgid ""
-"The Wipe Tower currently supports the non-soluble supports only\n"
-"if they are printed with the current extruder without triggering a tool "
-"change.\n"
-"(both support_material_extruder and support_material_interface_extruder need "
-"to be set to 0).\n"
-"\n"
-"Shall I adjust those settings in order to enable the Wipe Tower?"
-msgstr ""
-"ÄŒistÃcà věž v souÄasné dobÄ› podporuje pouze nerozpustné podpory\n"
-"pokud jsou vytiÅ¡tÄ›ny s aktuálnÃm extrudérem bez spuÅ¡tÄ›nà výmÄ›ny nástroje.\n"
-"(jak extruder pro tisk popor tak extruder pro tisk kontaktnÃch podpor je "
-"třeba nastavit na 0).\n"
-"\n"
-"Mám tyto nastavenà upravit tak, aby bylo možné zapnout ÄŒistÃcà věž?"
-
-#: src/slic3r/GUI/Tab.cpp:1195 src/slic3r/GUI/Tab.cpp:1212
-msgid "Wipe Tower"
-msgstr "ÄŒistÃcà věž"
-
-#: src/slic3r/GUI/Tab.cpp:1209
-msgid ""
-"For the Wipe Tower to work with the soluble supports, the support layers\n"
-"need to be synchronized with the object layers.\n"
-"\n"
-"Shall I synchronize support layers in order to enable the Wipe Tower?"
-msgstr ""
-"U ÄistÃcà věže pokud pracujte s rozpustnými materiály, je tÅ™eba\n"
-"synchronizovat vrstvy podpor s vrstvami objektů.\n"
-"\n"
-"Mám synchronizovat vrstvy podpor, aby bylo možné zapnout ÄŒistÃcà věž?"
-
-#: src/slic3r/GUI/Tab.cpp:1227
-msgid ""
-"Supports work better, if the following feature is enabled:\n"
-"- Detect bridging perimeters\n"
-"\n"
-"Shall I adjust those settings for supports?"
-msgstr ""
-"Podpory fungujà lépe, pokud je povolena následujÃcà funkce:\n"
-"- Zjistit přemosťovacà perimetry\n"
-"\n"
-"Mám tyto nastavenà pro podpory upravit?"
-
-#: src/slic3r/GUI/Tab.cpp:1230
-msgid "Support Generator"
-msgstr "Generátor Podpor"
-
-#: src/slic3r/GUI/Tab.cpp:1272
-msgid "The "
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1272
-#, no-c-format
-msgid ""
-" infill pattern is not supposed to work at 100% density.\n"
-"\n"
-"Shall I switch to rectilinear fill pattern?"
-msgstr ""
-" vzor výplnÄ› nenà urÄen pro práci se 100% hustotou.\n"
-"\n"
-"Mám pÅ™ejÃt na vzor výplnÄ› rectilinear?"
-
-#: src/slic3r/GUI/Tab.cpp:1388
-msgid "Temperature "
-msgstr "Teplota "
-
-#: src/slic3r/GUI/Tab.cpp:1394
-msgid "Bed"
-msgstr "Tisková podložka"
-
-#: src/slic3r/GUI/Tab.cpp:1399
-msgid "Cooling"
-msgstr "ChlazenÃ"
-
-#: src/slic3r/GUI/Tab.cpp:1400 src/libslic3r/PrintConfig.cpp:1333
-#: src/libslic3r/PrintConfig.cpp:2212
-msgid "Enable"
-msgstr "Zapnout"
-
-#: src/slic3r/GUI/Tab.cpp:1411
-msgid "Fan settings"
-msgstr "Nastavenà ventilátoru"
-
-#: src/slic3r/GUI/Tab.cpp:1412
-msgid "Fan speed"
-msgstr "Rychlost ventilátoru"
-
-#: src/slic3r/GUI/Tab.cpp:1420
-msgid "Cooling thresholds"
-msgstr "PodmÃnky chlazenÃ"
-
-#: src/slic3r/GUI/Tab.cpp:1426
-msgid "Filament properties"
-msgstr "Vlastnosti filamentu"
-
-#: src/slic3r/GUI/Tab.cpp:1430
-msgid "Print speed override"
-msgstr "Přepsánà rychlosti tisku"
-
-#: src/slic3r/GUI/Tab.cpp:1440
-msgid "Toolchange parameters with single extruder MM printers"
-msgstr "Parametry pÅ™i výmÄ›nÄ› (Multi Material s jednÃm extruderem)"
-
-#: src/slic3r/GUI/Tab.cpp:1455
-msgid "Ramming settings"
-msgstr "Nastavenà rapidnà extruze"
-
-#: src/slic3r/GUI/Tab.cpp:1470 src/slic3r/GUI/Tab.cpp:1846
-msgid "Custom G-code"
-msgstr "Vlastnà G-code"
-
-#: src/slic3r/GUI/Tab.cpp:1471 src/slic3r/GUI/Tab.cpp:1847
-#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:1833
-msgid "Start G-code"
-msgstr "ZaÄátek G-code"
-
-#: src/slic3r/GUI/Tab.cpp:1477 src/slic3r/GUI/Tab.cpp:1853
-#: src/libslic3r/PrintConfig.cpp:333 src/libslic3r/PrintConfig.cpp:344
-msgid "End G-code"
-msgstr "Konec G-code"
-
-#: src/slic3r/GUI/Tab.cpp:1588 src/slic3r/GUI/Tab.cpp:1642
-msgid " Browse "
-msgstr " Procházet "
-
-#: src/slic3r/GUI/Tab.cpp:1605 src/slic3r/GUI/Tab.cpp:1788
-msgid "Test"
-msgstr "Test"
-
-#: src/slic3r/GUI/Tab.cpp:1615
-msgid "Could not get a valid Printer Host reference"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1621 src/slic3r/GUI/Tab.cpp:1801
-msgid "Success!"
-msgstr "Úspěch!"
-
-#: src/slic3r/GUI/Tab.cpp:1636
-msgid ""
-"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
-"signed certificate."
-msgstr ""
-"Soubor HTTPS CA je volitelný. Je nutný pouze pokud použijte HTTPS certifikát "
-"s vlastnÃm podpisem."
-
-#: src/slic3r/GUI/Tab.cpp:1648
-msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
-msgstr "Soubory s certifikátem (*.crt, *.pem)|*.crt;*.pem|Všechny soubory|*.*"
-
-#: src/slic3r/GUI/Tab.cpp:1649
-msgid "Open CA certificate file"
-msgstr "OtevÅ™Ãt soubor s certifikátem CA"
-
-#: src/slic3r/GUI/Tab.cpp:1676
-msgid ""
-"HTTPS CA File:\n"
-"\tOn this system, Slic3r uses HTTPS certificates from the system Certificate "
-"Store or Keychain.\n"
-"\tTo use a custom CA file, please import your CA file into Certificate "
-"Store / Keychain."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1713 src/slic3r/GUI/Tab.cpp:1912
-msgid "Size and coordinates"
-msgstr "Rozměr a souřadnice"
-
-#: src/slic3r/GUI/Tab.cpp:1717 src/slic3r/GUI/Tab.cpp:1916
-#: src/slic3r/GUI/Tab.cpp:2792
-msgid " Set "
-msgstr " Nastavit "
-
-#: src/slic3r/GUI/Tab.cpp:1740
-msgid "Capabilities"
-msgstr "Možnosti"
-
-#: src/slic3r/GUI/Tab.cpp:1745
-msgid "Number of extruders of the printer."
-msgstr "PoÄet extrudérů tiskárny."
-
-#: src/slic3r/GUI/Tab.cpp:1773
-msgid "USB/Serial connection"
-msgstr "USB/Sériové pÅ™ipojenÃ"
-
-#: src/slic3r/GUI/Tab.cpp:1774 src/libslic3r/PrintConfig.cpp:1660
-msgid "Serial port"
-msgstr "Sériový port"
-
-#: src/slic3r/GUI/Tab.cpp:1779
-msgid "Rescan serial ports"
-msgstr "Znovu prohledat sériové porty"
-
-#: src/slic3r/GUI/Tab.cpp:1801
-msgid "Connection to printer works correctly."
-msgstr "Připojenà k tiskárně pracuje správně."
-
-#: src/slic3r/GUI/Tab.cpp:1804
-msgid "Connection failed."
-msgstr "Připojenà selhalo."
-
-#: src/slic3r/GUI/Tab.cpp:1817 src/slic3r/GUI/Tab.cpp:1961
-msgid "Print Host upload"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1859 src/libslic3r/PrintConfig.cpp:92
-msgid "Before layer change G-code"
-msgstr "G-code před změnou vrstvy"
-
-#: src/slic3r/GUI/Tab.cpp:1865 src/libslic3r/PrintConfig.cpp:1042
-msgid "After layer change G-code"
-msgstr "G-code po změně vrstvy"
-
-#: src/slic3r/GUI/Tab.cpp:1871 src/libslic3r/PrintConfig.cpp:2111
-msgid "Tool change G-code"
-msgstr "G-code pro výměnu nástroje"
-
-#: src/slic3r/GUI/Tab.cpp:1877
-msgid "Between objects G-code (for sequential printing)"
-msgstr "G-code mezi objekty (pro sekvenÄnà tisk)"
-
-#: src/slic3r/GUI/Tab.cpp:1938
-msgid "Display"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1949 src/slic3r/GUI/Tab.cpp:3102
-msgid "Corrections"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2011 src/slic3r/GUI/Tab.cpp:2073
-#: src/libslic3r/PrintConfig.cpp:1088 src/libslic3r/PrintConfig.cpp:1098
-#: src/libslic3r/PrintConfig.cpp:1108 src/libslic3r/PrintConfig.cpp:1121
-#: src/libslic3r/PrintConfig.cpp:1132 src/libslic3r/PrintConfig.cpp:1143
-#: src/libslic3r/PrintConfig.cpp:1154
-msgid "Machine limits"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2025
-msgid "Values in this column are for Full Power mode"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2026
-msgid "Full Power"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2031
-msgid "Values in this column are for Silent mode"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2032
-msgid "Silent"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2040
-msgid "Maximum feedrates"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2045
-msgid "Maximum accelerations"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2052
-msgid "Jerk limits"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2057
-msgid "Minimum feedrates"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2095 src/slic3r/GUI/Tab.cpp:2103
-msgid "Single extruder MM setup"
-msgstr "Nastavenà jednoho extruderu MM"
-
-#: src/slic3r/GUI/Tab.cpp:2104
-msgid "Single extruder multimaterial parameters"
-msgstr "Parametry jednoho multi materiálového extruderu"
-
-#: src/slic3r/GUI/Tab.cpp:2118 src/libslic3r/GCode/PreviewData.cpp:475
-#, c-format
-msgid "Extruder %d"
-msgstr "Extruder %d"
-
-#: src/slic3r/GUI/Tab.cpp:2125
-msgid "Layer height limits"
-msgstr "Výskové limity vrstvy"
-
-#: src/slic3r/GUI/Tab.cpp:2130
-msgid "Position (for multi-extruder printers)"
-msgstr "Pozice (pro tiskárny s vÃce extrudery)"
-
-#: src/slic3r/GUI/Tab.cpp:2133
-msgid "Retraction"
-msgstr "Retrakce"
-
-#: src/slic3r/GUI/Tab.cpp:2136
-msgid "Only lift Z"
-msgstr "Pouze zvednout Z"
-
-#: src/slic3r/GUI/Tab.cpp:2149
-msgid ""
-"Retraction when tool is disabled (advanced settings for multi-extruder "
-"setups)"
-msgstr ""
-"Retrakce pro neaktivnà extruder (pokroÄilé nastavenà pro tiskárny typu "
-"MultiMaterial)"
-
-#: src/slic3r/GUI/Tab.cpp:2153
-msgid "Preview"
-msgstr "Náhled"
-
-#: src/slic3r/GUI/Tab.cpp:2284
-msgid ""
-"The Wipe option is not available when using the Firmware Retraction mode.\n"
-"\n"
-"Shall I disable it in order to enable Firmware Retraction?"
-msgstr ""
-"Možnost OÄistit nenà k dispozici pÅ™i použità režimu retracà z firmwaru.\n"
-"\n"
-"Mám ji deaktivovat, aby bylo možné povolit retrakce z firmwaru?"
-
-#: src/slic3r/GUI/Tab.cpp:2286
-msgid "Firmware Retraction"
-msgstr "Firmware Retrakce"
-
-#: src/slic3r/GUI/Tab.cpp:2565
-#, c-format
-msgid "Default preset (%s)"
-msgstr "Výchozà přednastavenà (%s)"
-
-#: src/slic3r/GUI/Tab.cpp:2566
-#, c-format
-msgid "Preset (%s)"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2583
-msgid "has the following unsaved changes:"
-msgstr "má neuložené následujÃcà zmÄ›ny:"
-
-#: src/slic3r/GUI/Tab.cpp:2586
-msgid "is not compatible with printer"
-msgstr "nenà kompatibilnàs tiskárnou"
-
-#: src/slic3r/GUI/Tab.cpp:2587
-msgid "is not compatible with print profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2589
-msgid "and it has the following unsaved changes:"
-msgstr "a má neuložené následujÃcà zmÄ›ny:"
-
-#: src/slic3r/GUI/Tab.cpp:2592
-msgid "Discard changes and continue anyway?"
-msgstr "Zahodit zmÄ›ny a pÅ™esto pokraÄovat?"
-
-#: src/slic3r/GUI/Tab.cpp:2593
-msgid "Unsaved Changes"
-msgstr "Neuložené Změny"
-
-#: src/slic3r/GUI/Tab.cpp:2604
-msgid "It's impossible to print multi-part object(s) with SLA technology."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2605
-msgid "Please check your object list before preset changing."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2699
-msgid "The supplied name is empty. It can't be saved."
-msgstr "Název je prázdný. Nelze uložit."
-
-#: src/slic3r/GUI/Tab.cpp:2704
-msgid "Cannot overwrite a system profile."
-msgstr "Nelze přepsat systémový profil."
-
-#: src/slic3r/GUI/Tab.cpp:2708
-msgid "Cannot overwrite an external profile."
-msgstr "Nelze přepsat externà profil."
-
-#: src/slic3r/GUI/Tab.cpp:2734
-msgid "remove"
-msgstr "odebrat"
-
-#: src/slic3r/GUI/Tab.cpp:2734
-msgid "delete"
-msgstr "smazat"
-
-#: src/slic3r/GUI/Tab.cpp:2735
-msgid "Are you sure you want to "
-msgstr "Jste si jistý že chcete "
-
-#: src/slic3r/GUI/Tab.cpp:2735
-msgid " the selected preset?"
-msgstr " zvolené přednastaven�"
-
-#: src/slic3r/GUI/Tab.cpp:2736
-msgid "Remove"
-msgstr "Odebrat"
-
-#: src/slic3r/GUI/Tab.cpp:2737
-msgid " Preset"
-msgstr " PÅ™ednastavenÃ"
-
-#: src/slic3r/GUI/Tab.cpp:2791
-msgid "All"
-msgstr "Vše"
-
-#: src/slic3r/GUI/Tab.cpp:2869
-msgid ""
-"LOCKED LOCK;indicates that the settings are the same as the system values "
-"for the current option group"
-msgstr ""
-"ZAMKNUTà ZÃMEK; indikuje, že nastavenà jsou stejná jako systémové hodnoty "
-"pro aktuálnà skupinu nastavenÃ"
-
-#: src/slic3r/GUI/Tab.cpp:2872
-msgid ""
-"UNLOCKED LOCK;indicates that some settings were changed and are not equal to "
-"the system values for the current option group.\n"
-"Click the UNLOCKED LOCK icon to reset all settings for current option group "
-"to the system values."
-msgstr ""
-"ODEMKNUTà ZÃMEK;indikuje, že nÄ›která nastavenà byla zmÄ›nÄ›na a nejsou shodná "
-"se systémovými hodnotami pro danou skupinu nastavenÃ.\n"
-"KliknÄ›te na ikonu ODEMKNUTÉHO ZÃMKU pro reset vÅ¡ech nastavenà aktuálnà "
-"skupiny nastavenà na systémové hodnoty."
-
-#: src/slic3r/GUI/Tab.cpp:2878
-msgid ""
-"WHITE BULLET;for the left button: \tindicates a non-system preset,\n"
-"for the right button: \tindicates that the settings hasn't been modified."
-msgstr ""
-"BÃLà TEÄŒKA;pro levé tlaÄÃtko: indikuje nesystémové pÅ™ednastavenÃ,\n"
-"pro pravé tlaÄÃtko: indikuje, že nastavenà nebylo zmÄ›nÄ›no."
-
-#: src/slic3r/GUI/Tab.cpp:2882
-msgid ""
-"BACK ARROW;indicates that the settings were changed and are not equal to the "
-"last saved preset for the current option group.\n"
-"Click the BACK ARROW icon to reset all settings for the current option group "
-"to the last saved preset."
-msgstr ""
-"Å IPKA ZPÄšT; indikuje, že doÅ¡lo ke zmÄ›nÄ› nastavenÃ, které nenà shodné s "
-"naposledy uloženým pÅ™ednastavenÃm pro aktuálnà skupinu nastavenÃ. KliknÄ›te "
-"na ikonu ŠIPKY ZPĚT pro reset všech nastavenà pro aktuálnà skupinu nastavenà "
-"na naposledy uložené pÅ™ednastavenÃ."
-
-#: src/slic3r/GUI/Tab.cpp:2908
-msgid ""
-"LOCKED LOCK icon indicates that the settings are the same as the system "
-"values for the current option group"
-msgstr ""
-"Ikona ZAMKNUTÉHO ZÃMKU indikuje, že nastavenà jsou stejná jako systémové "
-"hodnoty pro aktuálnà skupinu nastavenÃ"
-
-#: src/slic3r/GUI/Tab.cpp:2910
-msgid ""
-"UNLOCKED LOCK icon indicates that some settings were changed and are not "
-"equal to the system values for the current option group.\n"
-"Click to reset all settings for current option group to the system values."
-msgstr ""
-"Ikona ODEMKNUTÉHO ZÃMKU indikuje, že nÄ›která nastavenà byla zmÄ›nÄ›na a nejsou "
-"shodná se systémovými hodnotami pro danou skupinu nastavenÃ. KliknÄ›te pro "
-"reset všech nastavenà aktuálnà skupiny nastavenà na systémové hodnoty."
-
-#: src/slic3r/GUI/Tab.cpp:2913
-msgid "WHITE BULLET icon indicates a non system preset."
-msgstr "Ikona BÃLÉ TEÄŒKY indikuje nesystémové pÅ™ednastavenÃ."
-
-#: src/slic3r/GUI/Tab.cpp:2916
-msgid ""
-"WHITE BULLET icon indicates that the settings are the same as in the last "
-"saved preset for the current option group."
-msgstr ""
-"Ikona BÃLÉ TEÄŒKY indikuje, že nastavenà jsou shodná s naposledy uloženým "
-"pÅ™ednastavenÃm pro danou skupinu nastavenÃ."
-
-#: src/slic3r/GUI/Tab.cpp:2918
-msgid ""
-"BACK ARROW icon indicates that the settings were changed and are not equal "
-"to the last saved preset for the current option group.\n"
-"Click to reset all settings for the current option group to the last saved "
-"preset."
-msgstr ""
-"Ikona Å IPKY ZPÄšT indikuje, že doÅ¡lo ke zmÄ›nÄ› nastavenÃ, které nenà shodné s "
-"naposledy uloženým pÅ™ednastavenÃm pro aktuálnà skupinu nastavenÃ.\n"
-"Klikněte pro reset všech nastavenà pro aktuálnà skupinu nastavenà na "
-"naposledy uložené pÅ™ednastavenÃ."
-
-#: src/slic3r/GUI/Tab.cpp:2924
-msgid ""
-"LOCKED LOCK icon indicates that the value is the same as the system value."
-msgstr ""
-"Ikona ZAMKNUTÉHO ZÃMKU indikuje, že hodnota je shodná se systémovou hodnotou."
-
-#: src/slic3r/GUI/Tab.cpp:2925
-msgid ""
-"UNLOCKED LOCK icon indicates that the value was changed and is not equal to "
-"the system value.\n"
-"Click to reset current value to the system value."
-msgstr ""
-"Ikona ODEMKNUTÉHO ZÃMKU indikuje, že se hodnota zmÄ›nila a nenà shodná se "
-"systémovou hodnotou.\n"
-"KliknÄ›te pro reset souÄasné hodnoty na systémovou hodnotu."
-
-#: src/slic3r/GUI/Tab.cpp:2931
-msgid ""
-"WHITE BULLET icon indicates that the value is the same as in the last saved "
-"preset."
-msgstr ""
-"Ikona BÃLÉ TEÄŒKY indikuje, že je hodnota shodná s naposledy uloženým "
-"pÅ™ednastavenÃm."
-
-#: src/slic3r/GUI/Tab.cpp:2932
-msgid ""
-"BACK ARROW icon indicates that the value was changed and is not equal to the "
-"last saved preset.\n"
-"Click to reset current value to the last saved preset."
-msgstr ""
-"Ikona ŠIPKY ZPĚT indikuje, že se hodnota změnila a nenà shodná s naposledy "
-"uloženým pÅ™ednastavenÃm.\n"
-"KliknÄ›te pro reset souÄasné hodnoty na naposledy uložené pÅ™ednastavenÃ."
-
-# Used in this context: _("Save ") + title + _(" as:")
-#: src/slic3r/GUI/Tab.cpp:3031
-msgid " as:"
-msgstr " jako:"
-
-#: src/slic3r/GUI/Tab.cpp:3075
-msgid "the following postfix are not allowed:"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3079
-msgid "The supplied name is not available."
-msgstr "Zadaný název nenà dostupný."
-
-#: src/slic3r/GUI/Tab.cpp:3092
-msgid "Material"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3094 src/slic3r/GUI/Tab.cpp:3176
-msgid "Layers"
-msgstr "Vrstvy"
-
-#: src/slic3r/GUI/Tab.cpp:3098
-msgid "Exposure"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3183
-msgid "Support head"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3188
-msgid "Support pillar"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3196
-msgid "Connection of the support sticks and junctions"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3200
-msgid "Automatic generation"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.hpp:293 src/slic3r/GUI/Tab.hpp:381
-msgid "Print Settings"
-msgstr "Nastavenà tisku"
-
-#: src/slic3r/GUI/Tab.hpp:311
-msgid "Filament Settings"
-msgstr "Nastavenà filamentu"
-
-#: src/slic3r/GUI/Tab.hpp:344
-msgid "Printer Settings"
-msgstr "Nastavenà tiskárny"
-
-#: src/slic3r/GUI/Tab.hpp:367
-msgid "Material Settings"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.hpp:393
-msgid "Save preset"
-msgstr "Uložit pÅ™ednastavenÃ"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
-msgid "Update available"
-msgstr "Je dostupná aktualizace"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
-msgid "New version of Slic3r PE is available"
-msgstr "Je dostupná nová verze Slic3r PE"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:35
-msgid "To download, follow the link below."
-msgstr "Pro staženÃ, kliknÄ›te na odkaz nÞe."
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:42
-msgid "Current version:"
-msgstr "Aktuálnà verze:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:44
-msgid "New version:"
-msgstr "Nová verze:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:52
-msgid "Don't notify about new releases any more"
-msgstr "Neupozorňovat na nové verze"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:70 src/slic3r/GUI/UpdateDialogs.cpp:162
-msgid "Configuration update"
-msgstr "Aktualizace nastavenÃ"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:70
-msgid "Configuration update is available"
-msgstr "Je k dispozici aktualizace nastavenÃ"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:73
-msgid ""
-"Would you like to install it?\n"
-"\n"
-"Note that a full configuration snapshot will be created first. It can then "
-"be restored at any time should there be a problem with the new version.\n"
-"\n"
-"Updated configuration bundles:"
-msgstr ""
-"Přejete si spustit instalaci?\n"
-"\n"
-"Nejprve bude provedena kompletnà záloha nastavenÃ. V pÅ™ÃpadÄ› problémů s "
-"novou verzà ji bude možné kdykoliv obnovit.\n"
-"\n"
-"Aktualizované balÃÄky nastavenÃ:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
-msgid "Slic3r incompatibility"
-msgstr "Nekompatibilita Slic3ru"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
-msgid "Slic3r configuration is incompatible"
-msgstr "Konfigurace Slic3ru nenà kompatibilnÃ"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:112
-msgid ""
-"This version of Slic3r PE is not compatible with currently installed "
-"configuration bundles.\n"
-"This probably happened as a result of running an older Slic3r PE after using "
-"a newer one.\n"
-"\n"
-"You may either exit Slic3r and try again with a newer version, or you may re-"
-"run the initial configuration. Doing so will create a backup snapshot of the "
-"existing configuration before installing files compatible with this Slic3r.\n"
-msgstr ""
-"Tato verze Slic3r PE nenà kompatibilnà se souÄasnÄ› nainstalovanými balÃÄky "
-"nastavenÃ.\n"
-"Tato situace nejspÃÅ¡e nastala spuÅ¡tÄ›nÃm staršà verze Slic3r PE po použÃvánà "
-"novějšà verze.\n"
-"\n"
-"Můžete buÄ ukonÄit Slic3r a zkusit to znovu s novou verzÃ, nebo můžete znovu "
-"spustit výchozà konfiguraci. PÅ™ed instalacà kompatibilnÃho nastavenà s touto "
-"verzà Slic3ru dojde k vytvoÅ™enà zálohy souÄasné konfigurace.\n"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:121
-#, c-format
-msgid "This Slic3r PE version: %s"
-msgstr "Tato verze Slic3r PE: %s"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:126
-msgid "Incompatible bundles:"
-msgstr "Nekompatibilnà balÃky:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:142
-msgid "Exit Slic3r"
-msgstr "UkonÄit Slic3r"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:145
-msgid "Re-configure"
-msgstr "Přenastavit"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:166
-#, c-format
-msgid ""
-"Slic3r PE now uses an updated configuration structure.\n"
-"\n"
-"So called 'System presets' have been introduced, which hold the built-in "
-"default settings for various printers. These System presets cannot be "
-"modified, instead, users now may create their own presets inheriting "
-"settings from one of the System presets.\n"
-"An inheriting preset may either inherit a particular value from its parent "
-"or override it with a customized value.\n"
-"\n"
-"Please proceed with the %s that follows to set up the new presets and to "
-"choose whether to enable automatic preset updates."
-msgstr ""
-"Slic3r PE nynà použÃvá aktualizovanou konfiguraÄnà strukturu.\n"
-"\n"
-"Byly uvedeny takzvaná \"Systémová pÅ™ednastavenÃ\", která obsahujà výchozà "
-"nastavenà pro rozliÄné tiskárny. Tato systémová pÅ™ednastavenà nemohou být "
-"upravena, mÃsto toho si nynà uživatel může vytvoÅ™it svá vlastnà "
-"pÅ™ednastavenà tÃm, že zdÄ›dà nastavenà z jednoho ze systémových "
-"pÅ™ednastavenÃ.\n"
-"NovÄ› vytvoÅ™ené pÅ™ednastavenà může buÄ zdÄ›dit urÄitou hodnotu od svého "
-"předchůdce nebo ji přepsat upravenou hodnotou.\n"
-"\n"
-"ProsÃm postupujte dle %s, který následuje pro nastavenà nových pÅ™ednastavenà "
-"a vyberte si, zdali chcete jejich automatickou aktualizaci."
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:182
-msgid "For more information please visit our wiki page:"
-msgstr "Pro vÃce informacà prosÃm navÅ¡tivte našà wiki stránku:"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:10
-msgid "Ramming customization"
-msgstr "Přizpůsobenà rapidnà extruze"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:36
-msgid ""
-"Ramming denotes the rapid extrusion just before a tool change in a single-"
-"extruder MM printer. Its purpose is to properly shape the end of the "
-"unloaded filament so it does not prevent insertion of the new filament and "
-"can itself be reinserted later. This phase is important and different "
-"materials can require different extrusion speeds to get the good shape. For "
-"this reason, the extrusion rates during ramming are adjustable.\n"
-"\n"
-"This is an expert-level setting, incorrect adjustment will likely lead to "
-"jams, extruder wheel grinding into filament etc."
-msgstr ""
-"Rapidnà extruze oznaÄuje rychlé vytlaÄenà filamentu tÄ›snÄ› pÅ™ed jeho výmÄ›nou "
-"za jiný v multi material tiskárnÄ› s jednÃm extruderem. ÚÄelem je správnÄ› "
-"vytvarovat konec vysouvaného filamentu tak, aby neblokoval zasunutà nového "
-"filamentu a také mohl být sám později opětovně zasunut. Tento proces je "
-"důležitý a rozdÃlné materiály mohou pro zÃskánà optimálnÃho tvaru vyžadovat "
-"různé rychlosti extruze. Z tohoto důvodu jsou objemové průtoky při rapidnà "
-"extruzi uživatelsky upravitelné.\n"
-"\n"
-"Toto nastavenà je urÄeno pro pokroÄilé uživatele, nesprávné nastavenà velmi "
-"pravdÄ›podobnÄ› povede k zaseknutà filamentu, vybrouÅ¡enà filamentu podávacÃm "
-"koleÄkem, atd."
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78
-msgid "Total ramming time"
-msgstr "Celkový Äas rapidnà extruze"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:80
-msgid "Total rammed volume"
-msgstr "Celkový objem rapidnà extruze"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:84
-msgid "Ramming line width"
-msgstr "Å ÃÅ™ka linky pÅ™i rapidnà extruzi"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:86
-msgid "Ramming line spacing"
-msgstr "Rozestup linek při rapidnà extruzi"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:138
-msgid "Wipe tower - Purging volume adjustment"
-msgstr "ÄŒistÃcà věž - Úprava objemu ÄiÅ¡tÄ›nÃ"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:219
-msgid ""
-"Here you can adjust required purging volume (mm³) for any given pair of "
-"tools."
-msgstr ""
-"Zde můžete upravit požadovaný objem ÄiÅ¡tÄ›nà (mm³) pro kteroukoliv dvojici "
-"extruderů."
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:220
-msgid "Extruder changed to"
-msgstr "Extruder změněn na"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:228
-msgid "unloaded"
-msgstr "vyjmuto"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:229
-msgid "loaded"
-msgstr "zaváděn"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:234
-msgid "Tool #"
-msgstr "Nástroj #"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:241
-msgid ""
-"Total purging volume is calculated by summing two values below, depending on "
-"which tools are loaded/unloaded."
-msgstr ""
-"Celkový objem ÄiÅ¡tÄ›nà je spoÄÃtán jako souÄet dvou hodnot nÞe v závislosti "
-"na tom, které extrudery jsou zavedeny/vyjmuty."
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:242
-msgid "Volume to purge (mm³) when the filament is being"
-msgstr "Objem k vyÄiÅ¡tÄ›nà (mm³) pokud je filament"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:256
-msgid "From"
-msgstr "Předchozà extruder"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:321
-msgid ""
-"Switching to simple settings will discard changes done in the advanced "
-"mode!\n"
-"\n"
-"Do you want to proceed?"
-msgstr ""
-"PÅ™epnutÃm do jednoduchého nastavenà ztratÃte zmÄ›ny provedené v pokroÄilém "
-"režimu!\n"
-"\n"
-"Opravdu chcete pokraÄovat?"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
-msgid "Show simplified settings"
-msgstr "Zobrazit jednoduché nastavenÃ"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
-msgid "Show advanced settings"
-msgstr "Zobrazit rozÅ¡ÃÅ™ená nastavenÃ"
-
-#: src/slic3r/Utils/OctoPrint.cpp:65
-#, c-format
-msgid "Mismatched type of print host: %s"
-msgstr ""
-
-#: src/slic3r/Utils/OctoPrint.cpp:80
-msgid "Connection to OctoPrint works correctly."
-msgstr "Připojenà k OctoPrint pracuje správně."
-
-#: src/slic3r/Utils/OctoPrint.cpp:86
-msgid "Could not connect to OctoPrint"
-msgstr "Nelze se spojit s OctoPrintem"
-
-#: src/slic3r/Utils/OctoPrint.cpp:86
-msgid "Note: OctoPrint version at least 1.1.0 is required."
-msgstr "Poznámka: Je vyžadován OctoPrint ve verzi alespoň 1.1.0."
-
-#: src/slic3r/Utils/OctoPrint.cpp:181
-msgid "Connection to Prusa SLA works correctly."
-msgstr ""
-
-#: src/slic3r/Utils/OctoPrint.cpp:186
-msgid "Could not connect to Prusa SLA"
-msgstr ""
-
-#: src/slic3r/Utils/PresetUpdater.cpp:571
-#, c-format
-msgid "requires min. %s and max. %s"
-msgstr "vyžaduje min. %s a max. %s"
-
-#: src/slic3r/Utils/PresetUpdater.cpp:576
-#, c-format
-msgid "requires min. %s"
-msgstr ""
-
-#: src/slic3r/Utils/PresetUpdater.cpp:578
-#, c-format
-msgid "requires max. %s"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:219
-#: src/slic3r/Utils/FixModelByWin10.cpp:349
-msgid "Exporting the source model"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:235
-msgid "Failed loading the input model."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:242
-msgid "Repairing the model by the Netfabb service"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:248
-msgid "Mesh repair failed."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:251
-#: src/slic3r/Utils/FixModelByWin10.cpp:367
-msgid "Loading the repaired model"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:263
-#: src/slic3r/Utils/FixModelByWin10.cpp:270
-#: src/slic3r/Utils/FixModelByWin10.cpp:302
-msgid "Saving mesh into the 3MF container failed."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:334
-msgid "Model fixing"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:335
-msgid "Exporting model..."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:357
-msgid "Export of a temporary 3mf file failed"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:372
-msgid "Import of the repaired 3mf file failed"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:375
-msgid "Model repair finished"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:379
-msgid "Model repair canceled"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
-msgid "Model repaired successfully"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
-msgid "Model Repair by the Netfabb service"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
-msgid "Model repair failed: \n"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1175
-msgid "All objects are outside of the print volume."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1201
-msgid "Some objects are too close; your extruder will collide with them."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1216
-msgid ""
-"Some objects are too tall and cannot be printed without extruder collisions."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1226
-msgid "The Spiral Vase option can only be used when printing a single object."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1228
-msgid ""
-"The Spiral Vase option can only be used when printing single material "
-"objects."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1234
-msgid ""
-"All extruders must have the same diameter for single extruder multimaterial "
-"printer."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1239
-msgid ""
-"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter "
-"and Repetier G-code flavors."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1241
-msgid ""
-"The Wipe Tower is currently only supported with the relative extruder "
-"addressing (use_relative_e_distances=1)."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1253
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they have equal "
-"layer heigths"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1255
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they are printed "
-"over an equal number of raft layers"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1257
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they are printed "
-"with the same support_material_contact_distance"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1259
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they are sliced "
-"equally."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1281
-msgid ""
-"The Wipe tower is only supported if all objects have the same layer height "
-"profile"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1290
-msgid "The supplied settings will cause an empty print."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1307
-msgid ""
-"One or more object were assigned an extruder that the printer does not have."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1316
-msgid ""
-"Printing with multiple extruders of differing nozzle diameters. If support "
-"is to be printed with the current extruder (support_material_extruder == 0 "
-"or support_material_interface_extruder == 0), all nozzles have to be of the "
-"same diameter."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1324
-msgid ""
-"For the Wipe Tower to work with the soluble supports, the support layers "
-"need to be synchronized with the object layers."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1328
-msgid ""
-"The Wipe Tower currently supports the non-soluble supports only if they are "
-"printed with the current extruder without triggering a tool change. (both "
-"support_material_extruder and support_material_interface_extruder need to be "
-"set to 0)."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1335
-msgid "first_layer_height"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1350
-msgid "First layer height can't be greater than nozzle diameter"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1354
-msgid "Layer height can't be greater than nozzle diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:32 src/libslic3r/PrintConfig.cpp:33
-msgid "Printer technology"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:41
-msgid "Bed shape"
-msgstr "Tvar tiskové podložky"
-
-#: src/libslic3r/PrintConfig.cpp:48
-msgid ""
-"This setting controls the height (and thus the total number) of the slices/"
-"layers. Thinner layers give better accuracy but take more time to print."
-msgstr ""
-"Toto nastavenà řÃdà výšku (a tedy výsledný poÄet) Å™ezů/vrstev. TenÄà vrstva "
-"poskytuje lepšà přesnost, ale tiskne se déle."
-
-#: src/libslic3r/PrintConfig.cpp:56
-msgid "Max print height"
-msgstr "Maximálnà výška tisku"
-
-#: src/libslic3r/PrintConfig.cpp:57
-msgid ""
-"Set this to the maximum height that can be reached by your extruder while "
-"printing."
-msgstr ""
-"Nastavte tuto hodnotu na maximálnà výšku, která může být dosažena extruderem "
-"během tisku."
-
-#: src/libslic3r/PrintConfig.cpp:73
-msgid "Avoid crossing perimeters"
-msgstr "Vyhnout se pÅ™ejÞdÄ›nà perimetrů"
-
-#: src/libslic3r/PrintConfig.cpp:74
-msgid ""
-"Optimize travel moves in order to minimize the crossing of perimeters. This "
-"is mostly useful with Bowden extruders which suffer from oozing. This "
-"feature slows down both the print and the G-code generation."
-msgstr ""
-"Optimalizovat rychloposuny do poÅ™adà aby se minimalizovalo pÅ™ejÞdÄ›nà "
-"perimetrů. NejvÃce užiteÄné u Bowdenových extruderů které trpà na vytékáné "
-"filamentu. Toto nastavenà zpomaluje tisk i generovánà G-code."
-
-#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:2080
-msgid "Other layers"
-msgstr "Ostatnà vrstvy"
-
-#: src/libslic3r/PrintConfig.cpp:83
-msgid ""
-"Bed temperature for layers after the first one. Set this to zero to disable "
-"bed temperature control commands in the output."
-msgstr ""
-"Teplota tiskové podložky pro dalšà vrstvy po prvnà vrstvÄ›. NastavenÃm na "
-"hodnotu nula vypnete ovládacà pÅ™Ãkazy teploty tiskové podložky ve výstupu."
-
-#: src/libslic3r/PrintConfig.cpp:86
-msgid "Bed temperature"
-msgstr "Teplota tiskové podložky"
-
-#: src/libslic3r/PrintConfig.cpp:93
-msgid ""
-"This custom code is inserted at every layer change, right before the Z move. "
-"Note that you can use placeholder variables for all Slic3r settings as well "
-"as [layer_num] and [layer_z]."
-msgstr ""
-"Tento vlastnà kód je vložen pro každou zmÄ›nu vrstvy, pÅ™edtÃm než se pohne Z. "
-"Můžete přidávat zástupné proměnné pro veškeré nastavenà Slic3ru stejně tak "
-"jako [layer_num] a [layer_z]."
-
-#: src/libslic3r/PrintConfig.cpp:104
-msgid "Between objects G-code"
-msgstr "G-code mezi objekty"
-
-#: src/libslic3r/PrintConfig.cpp:105
-msgid ""
-"This code is inserted between objects when using sequential printing. By "
-"default extruder and bed temperature are reset using non-wait command; "
-"however if M104, M109, M140 or M190 are detected in this custom code, Slic3r "
-"will not add temperature commands. Note that you can use placeholder "
-"variables for all Slic3r settings, so you can put a \"M109 "
-"S[first_layer_temperature]\" command wherever you want."
-msgstr ""
-"Tento kód je vložen mezi objekty, pokud je použit sekvenÄnà tisk. Ve "
-"výchozÃm nastavenà je resetován extruder a tisková podložka pomocà non-wait "
-"(neÄekacÃm) pÅ™Ãkazem; nicménÄ› pokud jsou pÅ™Ãkazy M104, M109, 140 nebo M190 "
-"detekovány v tomto vlastnÃm kódu, Slic3r nebude pÅ™idávat teplotnà pÅ™Ãkazy. "
-"Můžete přidávat zástupné proměnné pro veškeré nastavenà Slic3ru, takže "
-"můžete vložit pÅ™Ãkaz “M109 S[first_layer_temperature]†kamkoliv chcete."
-
-#: src/libslic3r/PrintConfig.cpp:114
-msgctxt "Layers"
-msgid "Bottom"
-msgstr "SpodnÃch"
-
-#: src/libslic3r/PrintConfig.cpp:116
-msgid "Number of solid layers to generate on bottom surfaces."
-msgstr "PoÄet plných vrstev."
-
-#: src/libslic3r/PrintConfig.cpp:118
-msgid "Bottom solid layers"
-msgstr "Plné spodnà vrstvy"
-
-#: src/libslic3r/PrintConfig.cpp:123
-msgid "Bridge"
-msgstr "Most"
-
-#: src/libslic3r/PrintConfig.cpp:124
-msgid ""
-"This is the acceleration your printer will use for bridges. Set zero to "
-"disable acceleration control for bridges."
-msgstr ""
-"Nastavenà akcelerace tiskárny pÅ™i vytvářenà mostů. NastavenÃm na nulu "
-"vypnete ovládánà akcelerace pro mosty."
-
-#: src/libslic3r/PrintConfig.cpp:126 src/libslic3r/PrintConfig.cpp:274
-#: src/libslic3r/PrintConfig.cpp:819 src/libslic3r/PrintConfig.cpp:941
-#: src/libslic3r/PrintConfig.cpp:1100 src/libslic3r/PrintConfig.cpp:1145
-#: src/libslic3r/PrintConfig.cpp:1156 src/libslic3r/PrintConfig.cpp:1386
-msgid "mm/s²"
-msgstr "mm/s²"
-
-#: src/libslic3r/PrintConfig.cpp:133
-msgid "Bridging angle"
-msgstr "Úhel vytvářenà mostů"
-
-#: src/libslic3r/PrintConfig.cpp:135
-msgid ""
-"Bridging angle override. If left to zero, the bridging angle will be "
-"calculated automatically. Otherwise the provided angle will be used for all "
-"bridges. Use 180° for zero angle."
-msgstr ""
-"PÅ™epsánà úhlu vytvářenà mostů. NastavenÃm hodnoty na nulu se bude úhel "
-"vytvářenà mostů vypoÄÃtávat automaticky. PÅ™i zadánà jiného úhlu, bude pro "
-"všechny mosty použitý zadaný úhel. Pro nulový úhel zadejte 180°."
-
-#: src/libslic3r/PrintConfig.cpp:138 src/libslic3r/PrintConfig.cpp:734
-#: src/libslic3r/PrintConfig.cpp:1637 src/libslic3r/PrintConfig.cpp:1648
-#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:2063
-#: src/libslic3r/PrintConfig.cpp:2578
-msgid "°"
-msgstr "°"
-
-#: src/libslic3r/PrintConfig.cpp:145
-msgid "Bridges fan speed"
-msgstr "Rychlost ventilátoru při vytvářenà mostů"
-
-#: src/libslic3r/PrintConfig.cpp:146
-msgid "This fan speed is enforced during all bridges and overhangs."
-msgstr ""
-"Nastavená rychlost ventilátoru je využita vždy při vytvářenà mostů a přesahů."
-
-#: src/libslic3r/PrintConfig.cpp:147 src/libslic3r/PrintConfig.cpp:747
-#: src/libslic3r/PrintConfig.cpp:1165 src/libslic3r/PrintConfig.cpp:1232
-#: src/libslic3r/PrintConfig.cpp:1517
+#: src/libslic3r/PrintConfig.cpp:179 src/libslic3r/PrintConfig.cpp:745
+#: src/libslic3r/PrintConfig.cpp:1154 src/libslic3r/PrintConfig.cpp:1217
+#: src/libslic3r/PrintConfig.cpp:1462 src/libslic3r/PrintConfig.cpp:2260
+#: src/libslic3r/PrintConfig.cpp:2502
msgid "%"
msgstr "%"
-#: src/libslic3r/PrintConfig.cpp:155
-msgid "Bridge flow ratio"
-msgstr "Poměr průtoku při vytvářenà mostů"
+#: src/libslic3r/GCode/PreviewData.cpp:504
+#, possible-c-format
+msgid "%.2f - %.2f mm"
+msgstr "%.2f - %.2f mm"
-#: src/libslic3r/PrintConfig.cpp:157
-msgid ""
-"This factor affects the amount of plastic for bridging. You can decrease it "
-"slightly to pull the extrudates and prevent sagging, although default "
-"settings are usually good and you should experiment with cooling (use a fan) "
-"before tweaking this."
-msgstr ""
-"Tato hodnota urÄuje množstvà vytlaÄeného plastu pÅ™i vytvářenà mostů. MÃrným "
-"snÞenÃm této hodnoty můžete pÅ™edejÃt pronášenà ikdyž, pÅ™ednastavené hodnoty "
-"jsou vÄ›tÅ¡inou dobré a je lepšà experimentovat s chlazenÃm (využitÃm "
-"ventilátoru), než s touto hodnotou."
+#: src/slic3r/GUI/PresetHints.cpp:226
+#, possible-c-format
+msgid "%3.2f mm³/s"
+msgstr "%3.2f mm³/s"
-#: src/libslic3r/PrintConfig.cpp:168
-msgid "Bridges"
-msgstr "Mosty"
+#: src/slic3r/GUI/Plater.cpp:974
+#, possible-c-format
+msgid "%d (%d shells)"
+msgstr "%d (%d obalů)"
-#: src/libslic3r/PrintConfig.cpp:170
-msgid "Speed for printing bridges."
-msgstr "Rychlost pro vytvářenà mostů."
+#: src/slic3r/GUI/Plater.cpp:982
+#, possible-c-format
+msgid "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d facets reversed, %d backwards edges"
+msgstr "%d poÅ¡kozených faset, %d okrajů opraveno, %d faset odstranÄ›no, %d faset pÅ™idáno, %d faset navráceno, %d zadnÃch okrajů"
-#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:564
-#: src/libslic3r/PrintConfig.cpp:573 src/libslic3r/PrintConfig.cpp:583
-#: src/libslic3r/PrintConfig.cpp:592 src/libslic3r/PrintConfig.cpp:623
-#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:884
-#: src/libslic3r/PrintConfig.cpp:1013 src/libslic3r/PrintConfig.cpp:1090
-#: src/libslic3r/PrintConfig.cpp:1110 src/libslic3r/PrintConfig.cpp:1123
-#: src/libslic3r/PrintConfig.cpp:1134 src/libslic3r/PrintConfig.cpp:1189
-#: src/libslic3r/PrintConfig.cpp:1252 src/libslic3r/PrintConfig.cpp:1418
-#: src/libslic3r/PrintConfig.cpp:1601 src/libslic3r/PrintConfig.cpp:1611
-#: src/libslic3r/PrintConfig.cpp:2041 src/libslic3r/PrintConfig.cpp:2160
-msgid "mm/s"
-msgstr "mm/s"
+#: src/slic3r/GUI/PresetHints.cpp:271
+#, possible-c-format
+msgid "%d lines: %.2lf mm"
+msgstr "%d linie: %.2lf mm"
-#: src/libslic3r/PrintConfig.cpp:178
-msgid "Brim width"
-msgstr "Å ÃÅ™ka lÃmce"
+#: src/slic3r/GUI/MainFrame.cpp:894
+#, possible-c-format
+msgid "%d presets successfully imported."
+msgstr "%d přednastavenà úspěšně importováno."
-#: src/libslic3r/PrintConfig.cpp:179
-msgid ""
-"Horizontal width of the brim that will be printed around each object on the "
-"first layer."
-msgstr "Å Ãrka lÃmce který bude vytiÅ¡tÄ›n v prvnà vrstvÄ› okolo každého objektu."
+#: src/slic3r/GUI/MainFrame.cpp:553
+#, possible-c-format
+msgid "%s &Manual"
+msgstr "%s Návod"
-#: src/libslic3r/PrintConfig.cpp:187
-msgid "Clip multi-part objects"
-msgstr "PÅ™ipnutà objektů z vÃce Äástà k sobÄ›"
+#: src/slic3r/GUI/MainFrame.cpp:550
+#, possible-c-format
+msgid "%s &Website"
+msgstr "%s &Webová stránka"
-#: src/libslic3r/PrintConfig.cpp:188
-msgid ""
-"When printing multi-material objects, this settings will make slic3r to clip "
-"the overlapping object parts one by the other (2nd part will be clipped by "
-"the 1st, 3rd part will be clipped by the 1st and 2nd etc)."
-msgstr ""
-"PÅ™ipnutà pÅ™ekrývajÃcÃch se objektů jeden k druhému pÅ™i Multimateriálovém "
-"tisku. (Druhá Äást se pÅ™ipne k prvnÃ, tÅ™età Äást k prvnà a druhé, atd)."
+#: src/slic3r/GUI/UpdateDialogs.cpp:113
+#, possible-c-format
+msgid "%s configuration is incompatible"
+msgstr "Konfigurace %s nenà kompatibilnÃ"
-#: src/libslic3r/PrintConfig.cpp:196
-msgid "Colorprint height"
-msgstr ""
+#: src/slic3r/GUI/Field.cpp:136
+#, possible-c-format
+msgid "%s doesn't support percentage"
+msgstr "%s nepodporuje procenta"
-#: src/libslic3r/PrintConfig.cpp:197
-msgid "Heights at which a filament change is to occur. "
-msgstr ""
+#: src/slic3r/GUI/MsgDialog.cpp:73
+#, possible-c-format
+msgid "%s error"
+msgstr "%s chyba"
-#: src/libslic3r/PrintConfig.cpp:207
-msgid "Compatible printers condition"
-msgstr "Stav kompatibilnÃch tiskáren"
+#: src/slic3r/GUI/ConfigWizard.cpp:336
+#, possible-c-format
+msgid "%s Family"
+msgstr "%s Rodina"
-#: src/libslic3r/PrintConfig.cpp:208
-msgid ""
-"A boolean expression using the configuration values of an active printer "
-"profile. If this expression evaluates to true, this profile is considered "
-"compatible with the active printer profile."
-msgstr ""
-"Logický výraz může použÃvat konfiguraÄnà hodnoty aktivnÃho profilu tiskárny. "
-"Pokud je tento logický výraz pravdivý, potom je tento profil považován za "
-"kompatibilnà s aktivnÃm profilem tiskárny."
+#: src/slic3r/GUI/MsgDialog.cpp:74
+#, possible-c-format
+msgid "%s has encountered an error"
+msgstr "Došlo k chybě v programu %s"
-#: src/libslic3r/PrintConfig.cpp:220
-msgid "Compatible print profiles condition"
-msgstr ""
+#: src/slic3r/GUI/UpdateDialogs.cpp:112
+#, possible-c-format
+msgid "%s incompatibility"
+msgstr "Nenà kompatibilnàs %s"
-#: src/libslic3r/PrintConfig.cpp:221
-msgid ""
-"A boolean expression using the configuration values of an active print "
-"profile. If this expression evaluates to true, this profile is considered "
-"compatible with the active print profile."
-msgstr ""
+#: src/slic3r/GUI/UpdateDialogs.cpp:172
+#, possible-c-format
+msgid "%s now uses an updated configuration structure.\n\nSo called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\nAn inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n\nPlease proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates."
+msgstr "%s nynà použÃvá aktualizovanou konfiguraÄnà strukturu.\n\nByly uvedeny takzvaná \"Systémová pÅ™ednastavenÃ\", která obsahujà výchozà nastavenà pro rozliÄné tiskárny. Tato systémová pÅ™ednastavenà nemohou být upravena, mÃsto toho si nynà uživatel může vytvoÅ™it svá vlastnà pÅ™ednastavenà tÃm, že zdÄ›dà nastavenà z jednoho ze systémových pÅ™ednastavenÃ.\nNovÄ› vytvoÅ™ené pÅ™ednastavenà může buÄ zdÄ›dit urÄitou hodnotu od svého pÅ™edchůdce nebo ji pÅ™epsat upravenou hodnotou.\n\nPÅ™i nastavovánà nových pÅ™edvoleb postupujte podle pokynů v %s a vyberte, zda chcete povolit automatické pÅ™ednastavené aktualizace."
-#: src/libslic3r/PrintConfig.cpp:235
-msgid "Complete individual objects"
-msgstr "DokonÄenà individuálnÃch objektů"
+#: src/slic3r/GUI/GUI_App.cpp:681
+#, possible-c-format
+msgid "%s View Mode"
+msgstr "%s Režim zobrazenÃ"
+
+#: src/slic3r/GUI/MainFrame.cpp:563
+#, possible-c-format
+msgid "&About %s"
+msgstr "O %s"
+
+#: src/slic3r/GUI/MainFrame.cpp:479
+msgid "&About Slic3r"
+msgstr "&O Slic3ru"
+
+#: src/slic3r/GUI/GUI_App.cpp:769
+msgid "&Configuration"
+msgstr "&Konfigurace"
+
+#: src/slic3r/GUI/GUI_App.cpp:661
+msgid "&Configuration Snapshots"
+msgstr "Záloha konfigura&ce"
+
+#: src/slic3r/GUI/MainFrame.cpp:454
+msgid "&Copy"
+msgstr "KopÃrovat"
+
+#: src/slic3r/GUI/MainFrame.cpp:447
+msgid "&Delete selected"
+msgstr "&Smazat vybrané"
+
+#: src/slic3r/GUI/MainFrame.cpp:575
+msgid "&Edit"
+msgstr "&Editovat"
+
+#: src/slic3r/GUI/MainFrame.cpp:377
+msgid "&Export"
+msgstr "&Exportovat"
+
+#: lib/Slic3r/GUI/MainFrame.pm:227
+msgid "&Export Config Bundle…"
+msgstr "&Exportovat KonfiguraÄnà BalÃk…"
+
+#: lib/Slic3r/GUI/MainFrame.pm:221
+msgid "&Export Config…\tCtrl+E"
+msgstr "&Exportovat Konfiguraci…\tCtrl+E"
+
+#: src/slic3r/GUI/MainFrame.cpp:480 src/slic3r/GUI/MainFrame.cpp:604
+msgid "&Filament Settings Tab"
+msgstr "Panel nastavenà &filamentu"
+
+#: src/slic3r/GUI/MainFrame.cpp:574
+msgid "&File"
+msgstr "&Soubor"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1094
+msgid "&Finish"
+msgstr "&DokonÄit"
+
+#: src/slic3r/GUI/MainFrame.cpp:580
+msgid "&Help"
+msgstr "&Pomoc"
+
+#: src/slic3r/GUI/MainFrame.cpp:359
+msgid "&Import"
+msgstr "&Importovat"
+
+#: lib/Slic3r/GUI/MainFrame.pm:224
+msgid "&Load Config Bundle…"
+msgstr "&NaÄÃst KonfiguraÄnà BalÃk…"
+
+#: lib/Slic3r/GUI/MainFrame.pm:218
+msgid "&Load Config…\tCtrl+L"
+msgstr "&NaÄÃst Konfiguraci…\tCtrl+L"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1093
+msgid "&Next >"
+msgstr "&DalÅ¡Ã>"
+
+#: lib/Slic3r/GUI/MainFrame.pm:376
+msgid "&Object"
+msgstr "&Objekt"
+
+#: src/slic3r/GUI/MainFrame.cpp:339
+msgid "&Open Project"
+msgstr "&OtevÅ™Ãt projekt"
+
+#: src/slic3r/GUI/MainFrame.cpp:456
+msgid "&Paste"
+msgstr "Vložit"
+
+#: lib/Slic3r/GUI/MainFrame.pm:375
+msgid "&Plater"
+msgstr "&Podložka"
+
+#: src/slic3r/GUI/MainFrame.cpp:471
+msgid "&Plater Tab"
+msgstr "&Panel Podložka"
+
+#: src/slic3r/GUI/GUI_App.cpp:665
+msgid "&Preferences"
+msgstr "NastavenÃ"
+
+#: src/slic3r/GUI/MainFrame.cpp:409
+msgid "&Quit"
+msgstr "&UkonÄit"
+
+#: src/slic3r/GUI/MainFrame.cpp:406
+msgid "&Repair STL file"
+msgstr "Op&ravit soubor STL"
+
+#: lib/Slic3r/GUI/MainFrame.pm:244
+msgid "&Repeat Last Quick Slice\tCtrl+Shift+U"
+msgstr "&Opakovat Poslednà SlicovánÃ\tCtrl+Shift+U"
+
+#: src/slic3r/GUI/MainFrame.cpp:341
+msgid "&Save Project"
+msgstr "Uložit projekt"
+
+#: src/slic3r/GUI/MainFrame.cpp:444
+msgid "&Select all"
+msgstr "Vybrat vše"
+
+#: src/slic3r/GUI/MainFrame.cpp:577
+msgid "&View"
+msgstr "&ZobrazenÃ"
+
+#: src/slic3r/GUI/MainFrame.cpp:576
+msgid "&Window"
+msgstr "&Okno"
+
+#: lib/Slic3r/GUI/MainFrame.pm:255
+msgid "(&Re)Slice Now\tCtrl+S"
+msgstr "(&Znovu)Slicovat\tCtrl+S"
+
+#: xs/src/slic3r/GUI/ConfigWizard.cpp:89
+msgid "(default)"
+msgstr "(výchozÃ)"
+
+#: src/libslic3r/PrintConfig.cpp:1376
+msgid "(minimum)"
+msgstr "(minimálně)"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:111
+msgid "(Re)slice"
+msgstr "(Znovu)Slicovat"
+
+#: src/slic3r/GUI/MainFrame.cpp:403
+msgid "(Re)Slice &Now"
+msgstr "(Z&novu)Slicovat"
+
+#: src/slic3r/GUI/MainFrame.cpp:641
+msgid ") not found."
+msgstr ") nebyl nalezen."
+
+#: src/slic3r/GUI/GUI_App.cpp:789
+msgid ". Discard changes and continue anyway?"
+msgstr ". PokraÄovat i pÅ™es zahozenà zmÄ›n?"
+
+#: lib/Slic3r/GUI/Plater/3DPreview.pm:69
+msgid "1 Layer"
+msgstr "1 Vrstva"
+
+#: lib/Slic3r/GUI/Plater.pm:206
+msgid "2D"
+msgstr "2D"
+
+#: src/slic3r/GUI/MainFrame.cpp:487
+msgid "3&D"
+msgstr "3&D"
+
+#: lib/Slic3r/GUI/Plater.pm:164 lib/Slic3r/GUI/Plater.pm:2323
+msgid "3D"
+msgstr "3D"
+
+#: src/libslic3r/PrintConfig.cpp:804
+msgid "3D Honeycomb"
+msgstr "3D Plástev"
+
+#: src/slic3r/GUI/GUI_App.cpp:741
+msgid "3D-Scene will be cleaned."
+msgstr "3D-scéna bude smazána."
+
+#: lib/Slic3r/GUI/Plater.pm:1756
+msgid "3MF file exported to "
+msgstr "Soubor 3MF byl exportován do "
+
+#: src/slic3r/GUI/Plater.cpp:3590
+#, possible-c-format
+msgid "3MF file exported to %s"
+msgstr "Soubor 3MF byl exportován do %s"
+
+#: lib/Slic3r/GUI/Plater.pm:258
+msgid "45° ccw"
+msgstr "45° doleva"
+
+#: lib/Slic3r/GUI/Plater.pm:259
+msgid "45° cw"
+msgstr "45° doprava"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1092
+msgid "< &Back"
+msgstr "<&Zpět"
+
+#: src/libslic3r/PrintConfig.cpp:251
+msgid "A boolean expression using the configuration values of an active print profile. If this expression evaluates to true, this profile is considered compatible with the active print profile."
+msgstr "Logický výraz může použÃvat konfiguraÄnà hodnoty aktivnÃho profilu tiskárny. Pokud je tento logický výraz pravdivý, potom je tento profil považován za kompatibilnà s aktivnÃm profilem tiskárny."
#: src/libslic3r/PrintConfig.cpp:236
-msgid ""
-"When printing multiple objects or copies, this feature will complete each "
-"object before moving onto next one (and starting it from its bottom layer). "
-"This feature is useful to avoid the risk of ruined prints. Slic3r should "
-"warn and prevent you from extruder collisions, but beware."
-msgstr ""
-"PÅ™i tisku vÃce objektů nebo kopià tiskárna kompletnÄ› dokonÄà jeden objekt, "
-"pÅ™edtÃm než zaÄne tisknout druhý (zaÄÃná od spodnà vstvy). Tato vlastnost je "
-"výhodná z důvodů snÞenà rizika zniÄených výtisků. Slic3r by mÄ›l varovat pÅ™i "
-"možné kolizi extruderu s objektem a zabránit mu, pÅ™esto doporuÄujeme "
-"obezřetnost."
+msgid "A boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile."
+msgstr "Logický výraz může použÃvat konfiguraÄnà hodnoty aktivnÃho profilu tiskárny. Pokud je tento logický výraz pravdivý, potom je tento profil považován za kompatibilnà s aktivnÃm profilem tiskárny."
-#: src/libslic3r/PrintConfig.cpp:245
-msgid "Enable auto cooling"
-msgstr "Zapnutà automatického chlazenÃ"
+#: src/slic3r/GUI/ConfigWizard.cpp:609
+msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS."
+msgstr "Obecným pravidlem je 160 až 230° pro PLA a 215 až 250° pro ABS."
-#: src/libslic3r/PrintConfig.cpp:246
-msgid ""
-"This flag enables the automatic cooling logic that adjusts print speed and "
-"fan speed according to layer printing time."
-msgstr ""
-"Zapne výpoÄet automatického chlazenà který upravuje rychlost tisku a "
-"ventilátoru v závislosti na délce tisku jedné vstvy."
+#: src/slic3r/GUI/ConfigWizard.cpp:623
+msgid "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed."
+msgstr "Obecným pravidlem je 160 až 230° pro PLA a 215 až 250° pro ABS. Zadejte nula, pokud nemáte vyhÅ™Ãvanou podložku."
-#: src/libslic3r/PrintConfig.cpp:252
-msgid "Cooling tube position"
-msgstr "Pozice chladÃcà trubiÄky"
+#: src/libslic3r/SLA/SLASupportTree.cpp:2162
+msgid "Abort"
+msgstr "Přerušit"
-#: src/libslic3r/PrintConfig.cpp:253
-msgid "Distance of the center-point of the cooling tube from the extruder tip "
-msgstr "Vzdálenost ze stÅ™edu chladÃcà trubiÄky ke Å¡piÄce extruderu "
+#: src/slic3r/GUI/AboutDialog.cpp:35
+#, possible-c-format
+msgid "About %s"
+msgstr "O %s"
-#: src/libslic3r/PrintConfig.cpp:261
-msgid "Cooling tube length"
-msgstr "Délka chladÃcà trubiÄky"
+#: src/slic3r/GUI/AboutDialog.cpp:35
+msgid "About Slic3r"
+msgstr "O Slic3ru"
-#: src/libslic3r/PrintConfig.cpp:262
-msgid "Length of the cooling tube to limit space for cooling moves inside it "
-msgstr ""
-"Délka kovové trubiÄky urÄené pro ochlazenà a zformovánà filamentu po "
-"vytaženà z extruderu "
+#: src/libslic3r/GCode/PreviewData.cpp:499
+#, possible-c-format
+msgid "above %.2f mm"
+msgstr "nad %.2f mm"
-#: src/libslic3r/PrintConfig.cpp:271
-msgid ""
-"This is the acceleration your printer will be reset to after the role-"
-"specific acceleration values are used (perimeter/infill). Set zero to "
-"prevent resetting acceleration at all."
-msgstr ""
-"Toto je hodnota akcelerace na kterou se tiskárna vrátà po specifických "
-"úpravách akcelerace napÅ™Ãklad pÅ™i tisku (perimetru/výplnÄ›). NastavenÃm na "
-"nulu zabránÃte návratu rychlostà zcela."
+#: src/libslic3r/PrintConfig.cpp:1499
+msgid "Above Z"
+msgstr "Nad Z"
-#: src/libslic3r/PrintConfig.cpp:281
-msgid "Default filament profile"
-msgstr "Výchozà profil filamentu"
+#: src/slic3r/GUI/Tab.cpp:1103
+msgid "Acceleration control (advanced)"
+msgstr "Kontrola akceleracà (pokroÄilé)"
-#: src/libslic3r/PrintConfig.cpp:282
-msgid ""
-"Default filament profile associated with the current printer profile. On "
-"selection of the current printer profile, this filament profile will be "
-"activated."
-msgstr ""
-"Výchozà materiálový profil spojený se souÄasným profilem tiskárny. PÅ™i "
-"výbÄ›ru souÄasného profilu tiskárny se aktivuje tento materiálový profil."
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:73
+msgid "Activate"
+msgstr "Aktivovat"
-#: src/libslic3r/PrintConfig.cpp:287
-msgid "Default print profile"
-msgstr "Výchozà tiskový profil"
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:39
+msgid "Active: "
+msgstr "AktivnÃ: "
-#: src/libslic3r/PrintConfig.cpp:288 src/libslic3r/PrintConfig.cpp:2469
-#: src/libslic3r/PrintConfig.cpp:2479
-msgid ""
-"Default print profile associated with the current printer profile. On "
-"selection of the current printer profile, this print profile will be "
-"activated."
-msgstr ""
-"Výchozà tiskový profil spojený se souÄasným profilem tiskárny. PÅ™i výbÄ›ru "
-"souÄasného profilu tiskárny se aktivuje tento tiskový profil."
+#: src/slic3r/GUI/Preset.cpp:1003 src/slic3r/GUI/Tab.cpp:237
+msgid "Add a new printer"
+msgstr "Přidat novou tiskárnu"
-#: src/libslic3r/PrintConfig.cpp:293
-msgid "Disable fan for the first"
-msgstr "Vypnutà chlazenà pro prvnÃch"
+#: src/libslic3r/PrintConfig.cpp:2517
+msgid "Add a pad underneath the supported model"
+msgstr "Pod podepÃraný model pÅ™idá podložku"
-#: src/libslic3r/PrintConfig.cpp:294
-msgid ""
-"You can set this to a positive value to disable fan at all during the first "
-"layers, so that it does not make adhesion worse."
-msgstr ""
-"NastavenÃm poÄtu prvnÃch vstev s vypnutým chlazenÃm pro nezhorÅ¡ovánà "
-"přilnavosti."
+#: src/libslic3r/PrintConfig.cpp:1971
+msgid "Add a sheath (a single perimeter line) around the base support. This makes the support more reliable, but also more difficult to remove."
+msgstr "PÅ™idá pouzdro (jednu obvodovou Äáru) kolem podpÄ›r. DÃky tomu je podpora spolehlivÄ›jÅ¡Ã, ale také obtÞnÄ›jšà na odstranÄ›nÃ."
-#: src/libslic3r/PrintConfig.cpp:296 src/libslic3r/PrintConfig.cpp:952
-#: src/libslic3r/PrintConfig.cpp:1487 src/libslic3r/PrintConfig.cpp:1691
-#: src/libslic3r/PrintConfig.cpp:1757 src/libslic3r/PrintConfig.cpp:1935
-#: src/libslic3r/PrintConfig.cpp:1985
-msgid "layers"
-msgstr "vrstvu"
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:186
+msgid "Add color change marker for current layer"
+msgstr "PÅ™idat znaÄku zmÄ›ny barvy pro aktuálnà vrstvu"
-#: src/libslic3r/PrintConfig.cpp:304
-msgid "Don't support bridges"
-msgstr "Nevytvářet podpory pod mosty"
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:124
+msgid "Add Instance to selected object "
+msgstr "Přidat instanci vybraného objektu"
-#: src/libslic3r/PrintConfig.cpp:306
-msgid ""
-"Experimental option for preventing support material from being generated "
-"under bridged areas."
-msgstr ""
-"Experimentálnà nastavenà pro zabráněnà tvorbě podpěr v oblastech po mosty."
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1067
+msgid "Add modifier"
+msgstr "Přidat modifikátor"
-#: src/libslic3r/PrintConfig.cpp:313
-msgid "Distance between copies"
-msgstr "Vzdálenost mezi kopiemi"
-
-#: src/libslic3r/PrintConfig.cpp:314
-msgid "Distance used for the auto-arrange feature of the plater."
-msgstr "Vzdálenost, použitá pro funkci automatického rozmÃstÄ›nà po podložce."
-
-#: src/libslic3r/PrintConfig.cpp:322
-msgid "Elephant foot compensation"
-msgstr "Kompenzace rozplácnutà prvnà vrstvy"
-
-#: src/libslic3r/PrintConfig.cpp:324
-msgid ""
-"The first layer will be shrunk in the XY plane by the configured value to "
-"compensate for the 1st layer squish aka an Elephant Foot effect."
-msgstr ""
-"Prvnà vrstva bude v rovině XY zmenšena nakonfigurovanou hodnotou, která "
-"kompenzuje rozplácnutà prvnà vrstvy."
-
-#: src/libslic3r/PrintConfig.cpp:334
-msgid ""
-"This end procedure is inserted at the end of the output file. Note that you "
-"can use placeholder variables for all Slic3r settings."
-msgstr ""
-"Tato ukonÄovacà procedůra je vložena na konec výstupnÃho souboru. Můžete "
-"přidávat zástupné proměnné pro veškeré nastavenà Slic3ru."
-
-#: src/libslic3r/PrintConfig.cpp:345
-msgid ""
-"This end procedure is inserted at the end of the output file, before the "
-"printer end gcode. Note that you can use placeholder variables for all "
-"Slic3r settings. If you have multiple extruders, the gcode is processed in "
-"extruder order."
-msgstr ""
-"Tato ukonÄovacà procedůra je vložena na konec výstupnÃho souboru, pÅ™ed "
-"koneÄným G-code tiskárny. Můžete pÅ™idávat zástupné promÄ›nné pro veÅ¡keré "
-"nastavenà Slic3ru. Pokud máte tiskárnu s vÃce extrudery, G-code je zpracován "
-"v pořadà extruderů."
-
-#: src/libslic3r/PrintConfig.cpp:356
-msgid "Ensure vertical shell thickness"
-msgstr "Zajistit tloušťku svislých stěn"
-
-#: src/libslic3r/PrintConfig.cpp:358
-msgid ""
-"Add solid infill near sloping surfaces to guarantee the vertical shell "
-"thickness (top+bottom solid layers)."
-msgstr ""
-"Přidá plnou výplň u šikmých ploch pro garanci tloušťky svislých stěn "
-"(vrchnÃch a spodnÃch plných vrstev)."
-
-#: src/libslic3r/PrintConfig.cpp:365
-msgid "Top/bottom fill pattern"
-msgstr "Vzor výplnÄ› hornÃch/spodnÃch vrstev"
-
-#: src/libslic3r/PrintConfig.cpp:367
-msgid ""
-"Fill pattern for top/bottom infill. This only affects the external visible "
-"layer, and not its adjacent solid shells."
-msgstr ""
-"Vzor výplnÄ› pro vrchnÃ/spodnà vrstvy. Ovlivňuje pouze vnÄ›jšà viditelné "
-"vrstvy. Neovlivňuje přilehlé plné obaly."
-
-#: src/libslic3r/PrintConfig.cpp:376 src/libslic3r/PrintConfig.cpp:800
-#: src/libslic3r/PrintConfig.cpp:2021
-msgid "Rectilinear"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:377 src/libslic3r/PrintConfig.cpp:806
-msgid "Concentric"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:378 src/libslic3r/PrintConfig.cpp:810
-msgid "Hilbert Curve"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:379 src/libslic3r/PrintConfig.cpp:811
-msgid "Archimedean Chords"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:380 src/libslic3r/PrintConfig.cpp:812
-msgid "Octagram Spiral"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:386 src/libslic3r/PrintConfig.cpp:397
-msgid "External perimeters"
-msgstr "Vnějšà perimetry"
-
-#: src/libslic3r/PrintConfig.cpp:388
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for external "
-"perimeters. If left zero, default extrusion width will be used if set, "
-"otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
-"(for example 200%), it will be computed over layer height."
-msgstr ""
-"NastavenÃm na kladnou hodnotu, definuje Å¡ÃÅ™ku manuálnà extruze pro vnÄ›jšà "
-"obvod. Pokud je ponechána nula, použije se výchozà šÃÅ™ka extruze, pokud je "
-"nastavena, jinak se použije průměr trysky 1,125 x. Pokud je hodnota "
-"vyjádÅ™ena jako procento (napÅ™Ãklad 200%), vypoÄÃtá se podle výšky vrstvy."
-
-#: src/libslic3r/PrintConfig.cpp:391 src/libslic3r/PrintConfig.cpp:841
-#: src/libslic3r/PrintConfig.cpp:975 src/libslic3r/PrintConfig.cpp:1408
-#: src/libslic3r/PrintConfig.cpp:1769 src/libslic3r/PrintConfig.cpp:1958
-#: src/libslic3r/PrintConfig.cpp:2129
-msgid "mm or % (leave 0 for default)"
-msgstr "mm nebo % (ponechte 0 jako výchozÃ)"
-
-#: src/libslic3r/PrintConfig.cpp:399
-msgid ""
-"This separate setting will affect the speed of external perimeters (the "
-"visible ones). If expressed as percentage (for example: 80%) it will be "
-"calculated on the perimeters speed setting above. Set to zero for auto."
-msgstr ""
-"Toto oddÄ›lené nastavenà ovlivnà rychlost tisku vnÄ›jÅ¡Ãch perimetrů (tÄ›ch "
-"viditelných). Pokud je hodnota vyjádÅ™ena procenty (napÅ™Ãklad: 80%), bude "
-"rychlost vypoÄÃtána z hodnoty rychlosti tisku perimetrů, nastavené výše. "
-"Nastavte nulu pro automatický výpoÄet."
-
-#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:864
-#: src/libslic3r/PrintConfig.cpp:1725 src/libslic3r/PrintConfig.cpp:1780
-#: src/libslic3r/PrintConfig.cpp:2006 src/libslic3r/PrintConfig.cpp:2142
-msgid "mm/s or %"
-msgstr "mm/s nebo %"
-
-#: src/libslic3r/PrintConfig.cpp:409
-msgid "External perimeters first"
-msgstr "Nejprve tisknout vnějšà perimetry"
-
-#: src/libslic3r/PrintConfig.cpp:411
-msgid ""
-"Print contour perimeters from the outermost one to the innermost one instead "
-"of the default inverse order."
-msgstr ""
-"Tisk obrysových perimetrů od vnÄ›jÅ¡Ãch po vnitÅ™nà namÃsto opaÄného výchozÃho "
-"poÅ™adÃ."
-
-#: src/libslic3r/PrintConfig.cpp:418
-msgid "Extra perimeters if needed"
-msgstr "Extra perimetry pokud jsou potřeba"
-
-#: src/libslic3r/PrintConfig.cpp:420
+#: src/libslic3r/PrintConfig.cpp:447
#, no-c-format
-msgid ""
-"Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r "
-"keeps adding perimeters, until more than 70% of the loop immediately above "
-"is supported."
-msgstr ""
-"PÅ™idánà vÃce perimetrů, pokud je potÅ™eba, pro vyvarovánà se tvorbÄ› mezer v "
-"Å¡ikmých plochách. Slic3r pokraÄuje v pÅ™idávánà perimetrů, dokud nenà "
-"podepÅ™eno vÃce než 70% perimetrů v následujÃcà vrstvÄ›."
+msgid "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r keeps adding perimeters, until more than 70% of the loop immediately above is supported."
+msgstr "PÅ™idánà vÃce perimetrů, pokud je potÅ™eba, pro vyvarovánà se tvorbÄ› mezer v Å¡ikmých plochách. Slic3r pokraÄuje v pÅ™idávánà perimetrů, dokud nenà podepÅ™eno vÃce než 70% perimetrů v následujÃcà vrstvÄ›."
-#: src/libslic3r/PrintConfig.cpp:431
-msgid ""
-"The extruder to use (unless more specific extruder settings are specified). "
-"This value overrides perimeter and infill extruders, but not the support "
-"extruders."
-msgstr ""
-"Extruder, který chcete použÃt (pokud nejsou zvoleny specifiÄtÄ›jšà nastavenà "
-"extruderu). Tato hodnota pÅ™epÃÅ¡e nastavenà perimetrového a výplňového "
-"exrtuderu, ale ne nastavenà extruderu pro podpory."
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1066
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1082
+msgid "Add part"
+msgstr "PÅ™idat dÃl"
-#: src/libslic3r/PrintConfig.cpp:444
-msgid ""
-"Set this to the vertical distance between your nozzle tip and (usually) the "
-"X carriage rods. In other words, this is the height of the clearance "
-"cylinder around your extruder, and it represents the maximum depth the "
-"extruder can peek before colliding with other printed objects."
-msgstr ""
-"Zadejte vertikálnà vzdálenost mezi tryskou a (obvykle) tyÄemi osy X. Jinými "
-"slovy, je to výška koliznÃho prostoru okolo extruderu a pÅ™edstavuje "
-"maximálnà hloubku, které může extruder dosáhnout před kolizàs jinými, již "
-"vytištěnými, objekty."
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1229
+msgid "Add point"
+msgstr "Přidat bod"
-#: src/libslic3r/PrintConfig.cpp:455
-msgid "Radius"
-msgstr "Rádius"
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1232
+msgid "Add point to selection"
+msgstr "Přidat bod k výběru"
-#: src/libslic3r/PrintConfig.cpp:456
-msgid ""
-"Set this to the clearance radius around your extruder. If the extruder is "
-"not centered, choose the largest value for safety. This setting is used to "
-"check for collisions and to display the graphical preview in the plater."
-msgstr ""
-"Zadejte horizontálnà rádius koliznÃho prostoru okolo extruderu. Pokud tryska "
-"nenà v centru tohoto rádiusu, zvolte nejdelšà vzdálenost. Toto nastavenà "
-"sloužà ke kontrole kolizà a zobrazenà grafického náhledu na podložce."
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1118
+msgid "Add settings"
+msgstr "PÅ™idat nastavenÃ"
-#: src/libslic3r/PrintConfig.cpp:467
-msgid "Extruder Color"
-msgstr "Barva extruderu"
+#: src/libslic3r/PrintConfig.cpp:382
+msgid "Add solid infill near sloping surfaces to guarantee the vertical shell thickness (top+bottom solid layers)."
+msgstr "PÅ™idá plnou výplň u Å¡ikmých ploch pro garanci tloušťky svislých stÄ›n (vrchnÃch a spodnÃch plných vrstev)."
-#: src/libslic3r/PrintConfig.cpp:468 src/libslic3r/PrintConfig.cpp:535
-msgid "This is only used in the Slic3r interface as a visual help."
-msgstr "Toto je ve Slic3ru jako názorná pomoc."
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1069
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1089
+msgid "Add support blocker"
+msgstr "Přidat blokátor podpěr"
-#: src/libslic3r/PrintConfig.cpp:475
-msgid "Extruder offset"
-msgstr "Odsazenà extruderu"
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1068
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1086
+msgid "Add support enforcer"
+msgstr "Přidat vynucenà podpěr"
-#: src/libslic3r/PrintConfig.cpp:476
-msgid ""
-"If your firmware doesn't handle the extruder displacement you need the G-"
-"code to take it into account. This option lets you specify the displacement "
-"of each extruder with respect to the first one. It expects positive "
-"coordinates (they will be subtracted from the XY coordinate)."
-msgstr ""
-"Pokud firmware nezpracovává umÃstÄ›nà extruderu správnÄ›, potÅ™ebujete aby to "
-"vzal G-code v úvahu. Toto nastavenà umožňuje urÄit odsazenà každého "
-"extruderu vzhledem k prvnÃmu. OÄekávajà se pozitivnà souÅ™adnice (budou "
-"odeÄteny od souÅ™adnice XY)."
+#: src/slic3r/GUI/Tab.cpp:920
+msgid "Additional information:"
+msgstr "DoplňujÃcà informace:"
-#: src/libslic3r/PrintConfig.cpp:486
-msgid "Extrusion axis"
-msgstr "Osa extruderu"
+#: src/slic3r/GUI/GUI_ObjectSettings.cpp:58
+msgid "Additional Settings"
+msgstr "Dalšà nastavenÃ"
-#: src/libslic3r/PrintConfig.cpp:487
-msgid ""
-"Use this option to set the axis letter associated to your printer's extruder "
-"(usually E but some printers use A)."
-msgstr ""
-"Touto volbou nastavÃte pÃsmeno osy pÅ™idružené k extruderu tiskárny (obvykle "
-"E, ale nÄ›které tiskárny použÃvajà A)."
+#: src/slic3r/GUI/ConfigWizard.cpp:431
+msgid "Additionally a backup snapshot of the whole configuration is created before an update is applied."
+msgstr "Dále je pÅ™ed nainstalovánÃm aktualizace vytvoÅ™ena záloha veÅ¡kerého nastavenÃ."
-#: src/libslic3r/PrintConfig.cpp:493
-msgid "Extrusion multiplier"
-msgstr "NásobiÄ extruze"
+#: src/slic3r/GUI/BonjourDialog.cpp:72
+msgid "Address"
+msgstr "Adresa"
-#: src/libslic3r/PrintConfig.cpp:494
-msgid ""
-"This factor changes the amount of flow proportionally. You may need to tweak "
-"this setting to get nice surface finish and correct single wall widths. "
-"Usual values are between 0.9 and 1.1. If you think you need to change this "
-"more, check filament diameter and your firmware E steps."
-msgstr ""
-"Tento faktor měnà poměrné množstvà průtoku. Možná bude třeba toto nastavenà "
-"vyladit, pro dosaženà hezkého povrchu a správné Å¡ÃÅ™ky jednotlivých stÄ›n. "
-"Obvyklé hodnoty jsou mezi 0,9 a 1,1. Pokud si myslÃte, že hodnotu "
-"potÅ™ebujete zmÄ›nit vÃce, zkontrolujte průmÄ›r filamentu a E kroky ve firmwaru."
+#: lib/Slic3r/GUI/Plater.pm:250 lib/Slic3r/GUI/Plater.pm:268
+msgid "Add…"
+msgstr "Přidat…"
-#: src/libslic3r/PrintConfig.cpp:503
-msgid "Default extrusion width"
-msgstr "Výchozà šÃÅ™ka extruze"
+#: src/slic3r/GUI/GUI_App.cpp:675 src/slic3r/GUI/GUI_ObjectList.cpp:76
+#: src/slic3r/GUI/GUI_ObjectList.cpp:517 src/slic3r/GUI/Tab.cpp:1026
+#: src/slic3r/GUI/Tab.cpp:1041 src/slic3r/GUI/Tab.cpp:1139
+#: src/slic3r/GUI/Tab.cpp:1142 src/slic3r/GUI/Tab.cpp:1515
+#: src/slic3r/GUI/Tab.cpp:1940 src/slic3r/GUI/Tab.cpp:3435
+#: src/slic3r/GUI/wxExtensions.cpp:2460 src/libslic3r/PrintConfig.cpp:72
+#: src/libslic3r/PrintConfig.cpp:187 src/libslic3r/PrintConfig.cpp:350
+#: src/libslic3r/PrintConfig.cpp:988 src/libslic3r/PrintConfig.cpp:2175
+msgid "Advanced"
+msgstr "PokroÄilý"
-#: src/libslic3r/PrintConfig.cpp:505
-msgid ""
-"Set this to a non-zero value to allow a manual extrusion width. If left to "
-"zero, Slic3r derives extrusion widths from the nozzle diameter (see the "
-"tooltips for perimeter extrusion width, infill extrusion width etc). If "
-"expressed as percentage (for example: 230%), it will be computed over layer "
-"height."
-msgstr ""
-"NastavenÃm kladné hodnoty povolÃte manuálnà šÃÅ™ku extruze. Pokud je hodnota "
-"ponechána na nule, Slic3r odvozuje Å¡ÃÅ™ku extruze z průmÄ›ru trysky (viz "
-"nápovÄ›dy pro Å¡ÃÅ™ku extruze perimetru, Å¡ÃÅ™ku extruze výplnÄ› apod.). Pokud je "
-"hodnota vyjádÅ™ena procenty (napÅ™Ãklad: 230%), vypoÄÃtá se z výšky vrstvy."
+#: src/slic3r/GUI/GUI_App.cpp:675
+msgid "Advanced View Mode"
+msgstr "PokroÄilý režim"
-#: src/libslic3r/PrintConfig.cpp:509
-msgid "mm or % (leave 0 for auto)"
-msgstr "mm or % (pro automatické ponechte 0)"
+#: xs/src/slic3r/GUI/FirmwareDialog.cpp:400
+msgid "Advanced: avrdude output log"
+msgstr "PokroÄilé: výstupnà log avrdude"
-#: src/libslic3r/PrintConfig.cpp:515
-msgid "Keep fan always on"
-msgstr "Ventilátor vždy zapnutý"
+#: src/slic3r/GUI/FirmwareDialog.cpp:803
+msgid "Advanced: Output log"
+msgstr "PokroÄilý: Výstupnà log"
-#: src/libslic3r/PrintConfig.cpp:516
-msgid ""
-"If this is enabled, fan will never be disabled and will be kept running at "
-"least at its minimum speed. Useful for PLA, harmful for ABS."
-msgstr ""
-"Pokud je tato funkce zapnutá, ventilátor nebude nikdy vypnut a bude udržován "
-"v chodu alespoň rychlostà která je nastavena jako minimálnà rychlost. "
-"UžiteÄné pro PLA, Å¡kodlivé pro ABS."
+#: src/libslic3r/PrintConfig.cpp:636
+msgid "After a tool change, the exact position of the newly loaded filament inside the nozzle may not be known, and the filament pressure is likely not yet stable. Before purging the print head into an infill or a sacrificial object, Slic3r will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably."
+msgstr "Po výmÄ›nÄ› nástroje nemusà být známa pÅ™esná poloha novÄ› zavedeného filamentu uvnitÅ™ trysky a tlak filamentu pravdÄ›podobnÄ› jeÅ¡tÄ› nenà stabilnÃ. PÅ™ed vyÄiÅ¡tÄ›nÃm tiskové hlavy do výplnÄ› nebo do objektu bude Slic3r toto množstvà materiálu vždy vytlaÄovat do ÄistÃcà věže, aby se spolehlivÄ› vytvoÅ™ily následné výplnÄ› nebo objekty."
-#: src/libslic3r/PrintConfig.cpp:522
-msgid "Enable fan if layer print time is below"
-msgstr "Zapnout ventilátor pokud je doba tisku vrstvy kratšà než"
+#: src/slic3r/GUI/Tab.cpp:1967 src/libslic3r/PrintConfig.cpp:1031
+msgid "After layer change G-code"
+msgstr "G-code po změně vrstvy"
-#: src/libslic3r/PrintConfig.cpp:523
-msgid ""
-"If layer print time is estimated below this number of seconds, fan will be "
-"enabled and its speed will be calculated by interpolating the minimum and "
-"maximum speeds."
-msgstr ""
-"Pokud je doba tisku vrstvy odhadnuta jako kratšà než tato nastavená hodnota "
-"ve vteÅ™inách, ventilátor bude aktivován a jeho rychlost bude vypoÄtena "
-"interpolacà minimálnà a maximálnà rychlosti."
+#: src/libslic3r/PrintConfig.cpp:3009
+msgid "Align the model to the given point."
+msgstr "Zarovnejte model s daným bodem."
-#: src/libslic3r/PrintConfig.cpp:525 src/libslic3r/PrintConfig.cpp:1711
+#: src/libslic3r/PrintConfig.cpp:3008
+msgid "Align XY"
+msgstr "Zarovnat XY"
+
+#: src/libslic3r/PrintConfig.cpp:1561
+msgid "Aligned"
+msgstr "Zarovnaný"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:189 src/slic3r/GUI/Tab.cpp:2986
+msgid "All"
+msgstr "Všechny"
+
+#: src/libslic3r/Print.cpp:1195
+msgid "All extruders must have the same diameter for single extruder multimaterial printer."
+msgstr "VÅ¡echny průmÄ›ry trysek musà být pro multimateriálovou tiskárnu s jednÃm extrudérem stejné."
+
+#: src/libslic3r/Print.cpp:1135
+msgid "All objects are outside of the print volume."
+msgstr "Všechny objekty jsou mimo tiskový prostor."
+
+#: src/slic3r/GUI/Plater.cpp:3298
+msgid "All objects will be removed, continue ?"
+msgstr "VÅ¡echny objekty budou obebrány, pokraÄovat?"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:188
+msgid "All standard"
+msgstr "Všechny běžné"
+
+#: src/libslic3r/Zipper.cpp:65
+msgid "allocation failed"
+msgstr "alokace selhala"
+
+#: src/slic3r/GUI/Plater.cpp:2939
+msgid "Along X axis"
+msgstr "Podél osy X"
+
+#: lib/Slic3r/GUI/Plater.pm:2251 lib/Slic3r/GUI/Plater.pm:2267
+#: lib/Slic3r/GUI/Plater.pm:2283
+msgid "Along X axis…"
+msgstr "Podél osy X…"
+
+#: src/slic3r/GUI/Plater.cpp:2941
+msgid "Along Y axis"
+msgstr "Podél osy Y"
+
+#: lib/Slic3r/GUI/Plater.pm:2254 lib/Slic3r/GUI/Plater.pm:2270
+#: lib/Slic3r/GUI/Plater.pm:2286
+msgid "Along Y axis…"
+msgstr "Podél osy Y…"
+
+#: src/slic3r/GUI/Plater.cpp:2943
+msgid "Along Z axis"
+msgstr "Podél osy Z"
+
+#: lib/Slic3r/GUI/Plater.pm:2257 lib/Slic3r/GUI/Plater.pm:2273
+#: lib/Slic3r/GUI/Plater.pm:2289
+msgid "Along Z axis…"
+msgstr "Podél osy Z…"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:122
+msgid "Alternate nozzles:"
+msgstr "Alternativnà trysky:"
+
+#: lib/Slic3r/GUI/Plater.pm:1740
+msgid "AMF file exported to "
+msgstr "Soubor AMF byl exportován do "
+
+#: src/slic3r/GUI/Plater.cpp:3561
+#, possible-c-format
+msgid "AMF file exported to %s"
+msgstr "Soubor AMF byl exportován do %s"
+
+#: src/slic3r/GUI/Tab.cpp:2781
+msgid "and it has the following unsaved changes:"
+msgstr "a má neuložené následujÃcà zmÄ›ny:"
+
+#: src/slic3r/GUI/Plater.cpp:2461
+msgid "Another export job is currently running."
+msgstr "V souÄasné dobÄ› běžà jiná úloha exportu."
+
+#: src/slic3r/GUI/Tab.cpp:915
+msgid "Any modifications should be saved as a new preset inherited from this one. "
+msgstr "Jakékoliv úpravy by měly být uloženy jako nové přednastavenà zděděná z tohoto. "
+
+#: xs/src/libslic3r/PrintConfig.cpp:1109
+msgid "API Key"
+msgstr "KlÃÄ API"
+
+#: src/libslic3r/PrintConfig.cpp:88
+msgid "API Key / Password"
+msgstr "API klÃÄ / Heslo"
+
+#: src/slic3r/GUI/GUI_App.cpp:671
+msgid "Application preferences"
+msgstr "Nastavenà aplikace"
+
+#: xs/src/slic3r/GUI/GUI.cpp:406
+msgid "Application will be restarted"
+msgstr "Aplikace bude restartována"
+
+#: src/slic3r/GUI/GUI_App.cpp:740
+msgid "Application will be restarted after language change."
+msgstr "Aplikace bude po změně jazyka restartována."
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:864
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1240
+msgid "Apply changes"
+msgstr "Aplikovat změny"
+
+#: src/libslic3r/PrintConfig.cpp:542 src/libslic3r/PrintConfig.cpp:1638
msgid "approximate seconds"
msgstr "vteřin přibližně"
-#: src/libslic3r/PrintConfig.cpp:534
+#: src/libslic3r/PrintConfig.cpp:401 src/libslic3r/PrintConfig.cpp:807
+msgid "Archimedean Chords"
+msgstr "Archimedean Chords"
+
+#: src/libslic3r/Zipper.cpp:91
+msgid "archive is too large"
+msgstr "archiv je moc velký"
+
+#: src/slic3r/GUI/Tab.cpp:2936
+msgid "Are you sure you want to "
+msgstr "Jste si jistý že chcete "
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:862
+msgid "Are you sure you want to cancel firmware flashing?\nThis could leave your printer in an unusable state!"
+msgstr "Opravdu chcete ukonÄit nahrávánà firmware?\nTiskárna může zůstat v nefunkÄnÃm stavu!"
+
+#: src/libslic3r/PrintConfig.cpp:2258
+msgid "Area fill"
+msgstr "Zaplněná plocha"
+
+#: lib/Slic3r/GUI/Plater.pm:2238
+msgid "Around X axis…"
+msgstr "Okolo osy X…"
+
+#: lib/Slic3r/GUI/Plater.pm:2241
+msgid "Around Y axis…"
+msgstr "Okolo osy Y…"
+
+#: lib/Slic3r/GUI/Plater.pm:2244
+msgid "Around Z axis…"
+msgstr "Okolo osy Z…"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:135
+msgid "Arrange"
+msgstr "Uspořádat"
+
+#: src/libslic3r/PrintConfig.cpp:3054
+msgid "Arrange the supplied models in a plate and merge them in a single model in order to perform actions once."
+msgstr "Uspořádejte modely na tiskovou podložku a sluÄte je do jednoho modelu, abyste s nimi mohli provádÄ›t akce jednou."
+
+#: src/slic3r/GUI/Plater.cpp:2106
+msgid "Arranging"
+msgstr "UspořádávánÃ"
+
+#: src/slic3r/GUI/Plater.cpp:2103
+msgid "Arranging canceled"
+msgstr "Uspořádávánà bylo zrušeno"
+
+#: src/slic3r/GUI/Plater.cpp:2144
+msgid "Arranging done."
+msgstr "Uspořádávánà dokonÄeno."
+
+#: src/slic3r/GUI/GUI_App.cpp:514
+msgid "Array of language names and identifiers should have the same size."
+msgstr "Pole jazykových jmen a identifikátorů by mÄ›la mÃt stejnou velikost."
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:172
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:183
+msgid "Arrow Down"
+msgstr "Šipka dolů"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:184
+msgid "Arrow Left"
+msgstr "Å ipka vlevo"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:185
+msgid "Arrow Right"
+msgstr "Å ipka vpravo"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:171
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:182
+msgid "Arrow Up"
+msgstr "Å ipka nahoru"
+
+#: xs/src/slic3r/GUI/GUI.cpp:660
+msgid "Attempt to free unreferenced scalar"
+msgstr "Attempt to free unreferenced scalar"
+
+#: src/slic3r/GUI/GUI.cpp:144 src/slic3r/GUI/GUI_App.cpp:743
+#: src/slic3r/GUI/Tab.cpp:2798
+msgid "Attention!"
+msgstr "Pozor!"
+
+#: src/libslic3r/PrintConfig.cpp:1785
+msgid "Auto generated supports"
+msgstr "Automaticky generované podpěry"
+
+#: src/slic3r/GUI/Preferences.cpp:44
+msgid "Auto-center parts"
+msgstr "Auto-centrovánà objektů"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:902
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1243
+msgid "Auto-generate points"
+msgstr "Automatické generovánà bodů"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:669
+msgid "Auto-generate points [A]"
+msgstr "Automatické generovánà bodů [A]"
+
+#: src/slic3r/GUI/Plater.cpp:979
+#, possible-c-format
+msgid "Auto-repaired (%d errors)"
+msgstr "Automaticky opraveno (%d chyb)"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:230
+#, possible-c-format
+msgid "Auto-repaired (%d errors):\n"
+msgstr "Automaticky opraveno ( %d chyb):\n"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:771
+msgid "Autodetected"
+msgstr "Automaticky detekováno"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1166
+msgid "Autogeneration will erase all manually edited points.\n\nAre you sure you want to do it?\n"
+msgstr "Automatické generovánà vymaže vÅ¡echny ruÄnÄ› vytvoÅ™ené body. \n\nOpravdu to chcete udÄ›lat?\n"
+
+#: src/slic3r/GUI/Tab.cpp:3421
+msgid "Automatic generation"
+msgstr "Automatické generovánÃ"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:401
+msgid "Automatic updates"
+msgstr "Automatické aktualizace"
+
+#: src/slic3r/GUI/MainFrame.cpp:406
+msgid "Automatically repair an STL file"
+msgstr "Automaticky opravit STL soubor"
+
+#: src/slic3r/GUI/Tab.cpp:1110
+msgid "Autospeed (advanced)"
+msgstr "Automatická rychlost (pokroÄilé)"
+
+#: src/libslic3r/PrintConfig.cpp:111
+msgid "Avoid crossing perimeters"
+msgstr "Vyhnout se pÅ™ejÞdÄ›nà perimetrů"
+
+#: src/slic3r/GUI/Tab.cpp:3113
+msgid "BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick to reset all settings for the current option group to the last saved preset."
+msgstr "Ikona Å IPKY ZPÄšT indikuje, že doÅ¡lo ke zmÄ›nÄ› nastavenÃ, které nenà shodné s naposledy uloženým pÅ™ednastavenÃm pro aktuálnà skupinu nastavenÃ.\nKliknÄ›te pro reset vÅ¡ech nastavenà pro aktuálnà skupinu nastavenà na naposledy uložené pÅ™ednastavenÃ."
+
+#: src/slic3r/GUI/Tab.cpp:3127
+msgid "BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\nClick to reset current value to the last saved preset."
+msgstr "Ikona Å IPKY ZPÄšT indikuje, že se hodnota zmÄ›nila a nenà shodná s naposledy uloženým pÅ™ednastavenÃm.\nKliknÄ›te pro reset souÄasné hodnoty na naposledy uložené pÅ™ednastavenÃ."
+
+#: src/slic3r/GUI/Tab.cpp:3077
+msgid "BACK ARROW;indicates that the settings were changed and are not equal to the last saved preset for the current option group.\nClick the BACK ARROW icon to reset all settings for the current option group to the last saved preset."
+msgstr "Å IPKA ZPÄšT;indikuje, že doÅ¡lo ke zmÄ›nÄ› nastavenÃ, které nenà shodné s naposledy uloženým pÅ™ednastavenÃm pro aktuálnà skupinu nastavenÃ. KliknÄ›te na ikonu Å IPKY ZPÄšT pro reset vÅ¡ech nastavenà pro aktuálnà skupinu nastavenà na naposledy uložené pÅ™ednastavenÃ."
+
+#: src/slic3r/GUI/Preferences.cpp:52
+msgid "Background processing"
+msgstr "Zpracovánà na pozadÃ"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:242
+msgid "backwards edges"
+msgstr "zadnà okraje"
+
+#: src/slic3r/GUI/Tab.cpp:1484
+msgid "Bed"
+msgstr "Tisková podložka"
+
+#: src/slic3r/GUI/BedShapeDialog.hpp:45 src/slic3r/GUI/ConfigWizard.cpp:524
+msgid "Bed Shape"
+msgstr "Tvar tiskové podložky"
+
+#: src/libslic3r/PrintConfig.cpp:50
+msgid "Bed shape"
+msgstr "Tvar tiskové podložky"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:524
+msgid "Bed Shape and Size"
+msgstr "Tvar a rozměr podložky"
+
+#: src/libslic3r/PrintConfig.cpp:122
+msgid "Bed temperature"
+msgstr "Teplota tiskové podložky"
+
+#: src/libslic3r/PrintConfig.cpp:120
+msgid "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output."
+msgstr "Teplota tiskové podložky pro dalšà vrstvy po prvnà vrstvÄ›. NastavenÃm na hodnotu nula vypnete ovládacà pÅ™Ãkazy teploty tiskové podložky ve výstupu."
+
+#: src/slic3r/GUI/ConfigWizard.cpp:626
+msgid "Bed Temperature:"
+msgstr "Teplota tiskové podložky:"
+
+#: src/slic3r/GUI/Tab.cpp:1961 src/libslic3r/PrintConfig.cpp:128
+msgid "Before layer change G-code"
+msgstr "G-code před změnou vrstvy"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:22
+msgid "Before roll back"
+msgstr "PÅ™ed vrácenÃm zpÄ›t"
+
+#: src/libslic3r/PrintConfig.cpp:1508
+msgid "Below Z"
+msgstr "Pod Z"
+
+#: src/libslic3r/PrintConfig.cpp:139
+msgid "Between objects G-code"
+msgstr "G-code mezi objekty"
+
+#: src/slic3r/GUI/Tab.cpp:1979
+msgid "Between objects G-code (for sequential printing)"
+msgstr "G-code mezi objekty (pro sekvenÄnà tisk)"
+
+#. TRN To be shown in the main menu View->Bottom
+#: src/slic3r/GUI/MainFrame.cpp:524
+msgid "Bottom"
+msgstr "Zespod"
+
+#: src/libslic3r/PrintConfig.cpp:409
+msgid "Bottom fill pattern"
+msgstr "Vzor spodnà výplně"
+
+#: src/libslic3r/PrintConfig.cpp:152
+msgid "Bottom solid layers"
+msgstr "Plné spodnà vrstvy"
+
+#: src/slic3r/GUI/MainFrame.cpp:524
+msgid "Bottom View"
+msgstr "Pohled zespod"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1055
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1087
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1090
+msgid "Box"
+msgstr "Kostka"
+
+#: src/libslic3r/PrintConfig.cpp:157
+msgid "Bridge"
+msgstr "Most"
+
+#: src/libslic3r/PrintConfig.cpp:186
+msgid "Bridge flow ratio"
+msgstr "Poměr průtoku při vytvářenà mostů"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:233 src/libslic3r/GCode/PreviewData.cpp:169
+msgid "Bridge infill"
+msgstr "Výplň mostů"
+
+#: src/libslic3r/PrintConfig.cpp:198
+msgid "Bridges"
+msgstr "Mosty"
+
+#: src/libslic3r/PrintConfig.cpp:177
+msgid "Bridges fan speed"
+msgstr "Rychlost ventilátoru při vytvářenà mostů"
+
+#: src/libslic3r/PrintConfig.cpp:166
+msgid "Bridging angle"
+msgstr "Úhel vytvářenà mostů"
+
+#: src/libslic3r/PrintConfig.cpp:168
+msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges. Use 180° for zero angle."
+msgstr "PÅ™epsánà úhlu vytvářenà mostů. NastavenÃm hodnoty na nulu se bude úhel vytvářenà mostů vypoÄÃtávat automaticky. PÅ™i zadánà jiného úhlu, bude pro vÅ¡echny mosty použitý zadaný úhel. Pro nulový úhel zadejte 180°."
+
+#: src/slic3r/GUI/PresetHints.cpp:216
+msgid "Bridging volumetric"
+msgstr "Volumetrická hodnota mostů"
+
+#: src/slic3r/GUI/Plater.cpp:446 src/slic3r/GUI/Tab.cpp:1056
+msgid "Brim"
+msgstr "LÃmec"
+
+#: src/libslic3r/PrintConfig.cpp:208
+msgid "Brim width"
+msgstr "Å ÃÅ™ka lÃmce"
+
+#: src/slic3r/GUI/Tab.cpp:1681
+msgid "Browse"
+msgstr "Procházet"
+
+#: src/libslic3r/Zipper.cpp:85
+msgid "buffer too small"
+msgstr "buffer je pÅ™ÃliÅ¡ malý"
+
+#: src/slic3r/GUI/ButtonsDescription.cpp:16
+msgid "Buttons And Text Colors Description"
+msgstr "Barvy pro textové popisky a tlaÄÃtka"
+
+#: src/slic3r/GUI/PresetHints.cpp:220
+msgid "by the print profile maximum"
+msgstr "maximem pro profil tisku"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:123
+msgid "Camera view "
+msgstr "Pohled kamery"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1095 src/slic3r/GUI/FirmwareDialog.cpp:147
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:37
+#: src/slic3r/GUI/ProgressStatusBar.cpp:28
+msgid "Cancel"
+msgstr "Zrušit"
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:156
+msgid "Cancel selected"
+msgstr "Zrušit vybrané"
+
+#: src/slic3r/GUI/Plater.cpp:2727 src/slic3r/GUI/PrintHostDialogs.cpp:232
+msgid "Cancelled"
+msgstr "Zrušeno"
+
+#: src/slic3r/GUI/Plater.cpp:2444 src/slic3r/GUI/PrintHostDialogs.cpp:231
+msgid "Cancelling"
+msgstr "ZruÅ¡enÃ"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:866
+msgid "Cancelling..."
+msgstr "UkonÄovánÃ..."
+
+#: src/slic3r/GUI/Tab.cpp:2905
+msgid "Cannot overwrite a system profile."
+msgstr "Nelze přepsat systémový profil."
+
+#: src/slic3r/GUI/Tab.cpp:2909
+msgid "Cannot overwrite an external profile."
+msgstr "Nelze přepsat externà profil."
+
+#: src/libslic3r/SLAPrint.cpp:612
+msgid "Cannot proceed without support points! Add support points or disable support generation."
+msgstr "Nelze pokraÄovat bez podpÄ›rných bodů! PÅ™idejte podpÄ›rné body nebo zakažte generovánà podpÄ›r."
+
+#: src/slic3r/GUI/Tab.cpp:1840
+msgid "Capabilities"
+msgstr "Možnosti"
+
+#: src/slic3r/GUI/GUI_App.cpp:662
+msgid "Capture a configuration snapshot"
+msgstr "Vytvořit aktuálnà zálohu konfigurace"
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2159
+msgid "Cascading pillars"
+msgstr "Kaskádové sloupy"
+
+#: src/libslic3r/PrintConfig.cpp:3035
+msgid "Center"
+msgstr "Střed"
+
+#: src/libslic3r/PrintConfig.cpp:3036
+msgid "Center the print around the given center."
+msgstr "Vycentrujte tisk kolem daného středu."
+
+#: src/slic3r/GUI/Tab.cpp:1744
+msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
+msgstr "Soubory s certifikátem (*.crt, *.pem)|*.crt;*.pem|Všechny soubory|*.*"
+
+#: src/slic3r/GUI/GUI_App.cpp:683
+msgid "Change Application &Language"
+msgstr "Změnit jazyk ap&likace"
+
+#: xs/src/slic3r/GUI/GUI.cpp:354
+msgid "Change Application Language"
+msgstr "Změnit jazyk aplikace"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1226
+msgid "Change extruder"
+msgstr "Změnit extruder"
+
+#: src/slic3r/GUI/Plater.cpp:2901
+msgid "Change the number of copies of the selected object"
+msgstr "Změňte poÄet kopià vybraného objektu"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1185
+msgid "Change type"
+msgstr "Změnit typ"
+
+#: src/slic3r/GUI/GUI_App.cpp:378
+msgid "Changing of an application language"
+msgstr "Změnit jazyk aplikace"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:409 src/slic3r/GUI/Preferences.cpp:61
+msgid "Check for application updates"
+msgstr "Zkontrolovat aktualizace aplikace"
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:316
+msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
+msgstr "Vyberte soubor pro import tvaru tiskové podložky z (STL/OBJ/AMF/3MF/PRUSA):"
+
+#: src/slic3r/GUI/MainFrame.cpp:621
+msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
+msgstr "Zvolit soubor ke slicovánà (STL/OBJ/AMF/3MF/PRUSA):"
+
+#: src/slic3r/GUI/GUI_App.cpp:489
+msgid "Choose one file (3MF):"
+msgstr "Vyberte jeden soubor (3MF):"
+
+#: src/slic3r/GUI/GUI_App.cpp:501
+msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
+msgstr "Vyberte jeden nebo vÃce souborů (STL/OBJ/AMF/3MF/PRUSA):"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:490
+msgid "Choose the type of firmware used by your printer."
+msgstr "Vyberte typ firmware použÃvaný vašà tiskárnou."
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:84
+msgid "Circular"
+msgstr "Kruhový"
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2156
+msgid "Classification"
+msgstr "Klasifikace"
+
+#: src/slic3r/GUI/Plater.cpp:292
+msgid "Click to edit preset"
+msgstr "KliknÄ›te pro editaci pÅ™ednastavenÃ"
+
+#: src/libslic3r/PrintConfig.cpp:216
+msgid "Clip multi-part objects"
+msgstr "PÅ™ipnutà objektů z vÃce Äástà k sobÄ›"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:926
+msgid "Clipping of view:"
+msgstr "Řezová rovina:"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:814
+#: src/slic3r/GUI/PrintHostDialogs.cpp:160
+msgid "Close"
+msgstr "ZavÅ™Ãt"
+
+#: src/libslic3r/PrintConfig.cpp:550
msgid "Color"
msgstr "Barva"
-#: src/libslic3r/PrintConfig.cpp:541
-msgid "Filament notes"
-msgstr "Poznámky k filamentu"
+#: src/slic3r/GUI/GUI_Preview.cpp:218 src/slic3r/GUI/GUI_Preview.cpp:535
+#: src/libslic3r/GCode/PreviewData.cpp:406
+msgid "Color Print"
+msgstr "Color Print"
-#: src/libslic3r/PrintConfig.cpp:542
-msgid "You can put your notes regarding the filament here."
-msgstr "Zde můžete vložit poznámky týkajÃcà se filamentu."
+#: src/libslic3r/PrintConfig.cpp:224
+msgid "Colorprint height"
+msgstr "Výška barevného tisku"
-#: src/libslic3r/PrintConfig.cpp:551 src/libslic3r/PrintConfig.cpp:1196
-msgid "Max volumetric speed"
-msgstr "Maximálnà objemová rychlost"
+#: src/libslic3r/PrintConfig.cpp:942
+msgid "Combine infill every"
+msgstr "Kombinovat výplň každou"
-#: src/libslic3r/PrintConfig.cpp:552
-msgid ""
-"Maximum volumetric speed allowed for this filament. Limits the maximum "
-"volumetric speed of a print to the minimum of print and filament volumetric "
-"speed. Set to zero for no limit."
-msgstr ""
-"Maximálnà povolený objem průtoku pro tento filament. Omezuje maximálnà "
-"rychlost průtoku pro tisk až na minimálnà rychlost průtoku pro tisk a "
-"filament. Zadejte nulu pro nastavenà bez omezenÃ."
+#: src/libslic3r/PrintConfig.cpp:947
+msgid "Combine infill every n layers"
+msgstr "Kombinovat výplň každou n vrstvu"
-#: src/libslic3r/PrintConfig.cpp:555 src/libslic3r/PrintConfig.cpp:1199
-msgid "mm³/s"
-msgstr "mm³/s"
+#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:244
+msgid "Compatible print profiles"
+msgstr "Kompatibilnà tiskové profily"
-#: src/libslic3r/PrintConfig.cpp:562
-msgid "Loading speed"
-msgstr "Rychlost zavádÄ›nÃ"
+#: src/libslic3r/PrintConfig.cpp:250
+msgid "Compatible print profiles condition"
+msgstr "Stav kompatibilnÃch tiskových profilů"
-#: src/libslic3r/PrintConfig.cpp:563
-msgid "Speed used for loading the filament on the wipe tower. "
-msgstr "Rychlost použitá pro zavádÄ›nà filamentu na ÄistÃcà věž. "
+#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:229
+msgid "Compatible printers"
+msgstr "Kompatibilnà tiskárny"
-#: src/libslic3r/PrintConfig.cpp:571
-msgid "Loading speed at the start"
-msgstr ""
+#: src/libslic3r/PrintConfig.cpp:235
+msgid "Compatible printers condition"
+msgstr "Stav kompatibilnÃch tiskáren"
-#: src/libslic3r/PrintConfig.cpp:572
-msgid "Speed used at the very beginning of loading phase. "
-msgstr ""
+#: src/libslic3r/PrintConfig.cpp:268
+msgid "Complete individual objects"
+msgstr "DokonÄenà individuálnÃch objektů"
-#: src/libslic3r/PrintConfig.cpp:580
-msgid "Unloading speed"
-msgstr "Rychlost vysunutÃ"
+#: src/slic3r/GUI/PrintHostDialogs.cpp:233
+msgid "Completed"
+msgstr "DokonÄeno"
-#: src/libslic3r/PrintConfig.cpp:581
-msgid ""
-"Speed used for unloading the filament on the wipe tower (does not affect "
-"initial part of unloading just after ramming). "
-msgstr ""
-"Rychlost vysouvánà filamentu pÅ™i výmÄ›nÄ› na ÄistÃcà věži (úvodnà Äást "
-"vysunutà okamžitě po rapidnà extruzi nenà ovlivněna). "
+#: src/libslic3r/Zipper.cpp:57
+msgid "compression failed"
+msgstr "komprese se nezdařila"
-#: src/libslic3r/PrintConfig.cpp:590
-msgid "Unloading speed at the start"
-msgstr ""
+#: src/libslic3r/PrintConfig.cpp:399 src/libslic3r/PrintConfig.cpp:802
+msgid "Concentric"
+msgstr "Koncentrická"
-#: src/libslic3r/PrintConfig.cpp:591
-msgid ""
-"Speed used for unloading the tip of the filament immediately after ramming. "
-msgstr ""
+#: src/slic3r/GUI/ConfigWizard.cpp:1185
+msgid "Configuration &Assistant"
+msgstr "Průvodce n&astavenÃm"
-#: src/libslic3r/PrintConfig.cpp:599
+#: src/slic3r/GUI/ConfigWizard.cpp:1182
+msgid "Configuration &Wizard"
+msgstr "Průvodce nastavenÃm"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1184
+msgid "Configuration Assistant"
+msgstr "Průvodce nastavenà tiskárny"
+
+#: src/libslic3r/PrintConfig.cpp:1251
+msgid "Configuration notes"
+msgstr "KonfiguraÄnà poznámky"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:99
+msgid "Configuration Snapshots"
+msgstr "Záloha konfigurace"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:73 src/slic3r/GUI/UpdateDialogs.cpp:168
+msgid "Configuration update"
+msgstr "Aktualizace nastavenÃ"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:73
+msgid "Configuration update is available"
+msgstr "Je k dispozici aktualizace nastavenÃ"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1181
+msgid "Configuration Wizard"
+msgstr "Průvodce nastavenÃm"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:863
+msgid "Confirmation"
+msgstr "PotvrzenÃ"
+
+#: src/slic3r/GUI/Tab.cpp:1904
+msgid "Connection failed."
+msgstr "Připojenà selhalo."
+
+#: src/slic3r/GUI/Tab.cpp:3416
+msgid "Connection of the support sticks and junctions"
+msgstr "Spojenà podpůrných tyÄà a spojek"
+
+#: src/slic3r/Utils/Duet.cpp:51
+msgid "Connection to Duet works correctly."
+msgstr "Připojenà k Duet funguje správně."
+
+#: src/slic3r/Utils/OctoPrint.cpp:84
+msgid "Connection to OctoPrint works correctly."
+msgstr "Připojenà k OctoPrint pracuje správně."
+
+#: src/slic3r/GUI/Tab.cpp:1901
+msgid "Connection to printer works correctly."
+msgstr "Připojenà k tiskárně pracuje správně."
+
+#: src/slic3r/Utils/OctoPrint.cpp:195
+msgid "Connection to Prusa SLA works correctly."
+msgstr "Připojenà k tiskárně Prusa SLA pracuje správně."
+
+#: src/libslic3r/PrintConfig.cpp:1823
+msgid "Contact Z distance"
+msgstr "Mezera mezi podpěrami a objektem v ose Z"
+
+#: lib/Slic3r/GUI/MainFrame.pm:137
+msgid "Controller"
+msgstr "OvladaÄ"
+
+#: src/libslic3r/PrintConfig.cpp:2408
+msgid "Controls the bridge type between two neigboring pillars. Can be zig-zag, cross (double zig-zag) or dynamic which will automatically switch between the first two depending on the distance of the two pillars."
+msgstr "ŘÃdà typ mostu mezi dvÄ›ma sousednÃmi sloupky. Může být zig-zag, cross (double zig-zag) nebo dynamic. Typ automaticky pÅ™epÃná mezi prvnÃmi dvÄ›ma v závislosti na vzdálenosti dvou sloupků."
+
+#: src/slic3r/GUI/Tab.cpp:1489
+msgid "Cooling"
+msgstr "ChlazenÃ"
+
+#: src/libslic3r/PrintConfig.cpp:628
+msgid "Cooling moves are gradually accelerating beginning at this speed. "
+msgstr "Chladicà pohyby se postupnÄ› zrychlujà a zaÄÃnajà touto rychlostÃ."
+
+#: src/libslic3r/PrintConfig.cpp:647
+msgid "Cooling moves are gradually accelerating towards this speed. "
+msgstr "ChladÃcà pohyby se postupnÄ› zrychlujà až k této rychlosti."
+
+#: src/slic3r/GUI/Tab.cpp:1510
+msgid "Cooling thresholds"
+msgstr "PodmÃnky chlazenÃ"
+
+#: src/libslic3r/PrintConfig.cpp:291
+msgid "Cooling tube length"
+msgstr "Délka chladÃcà trubiÄky"
+
+#: src/libslic3r/PrintConfig.cpp:283
+msgid "Cooling tube position"
+msgstr "Pozice chladÃcà trubiÄky"
+
+#: lib/Slic3r/GUI/Plater.pm:304 lib/Slic3r/GUI/Plater.pm:992
+msgid "Copies"
+msgstr "KopiÃ"
+
+#: src/slic3r/GUI/Tab.cpp:2878
+msgid "Copy"
+msgstr "KopÃrovat"
+
+#: src/slic3r/GUI/MainFrame.cpp:454
+msgid "Copy selection to clipboard"
+msgstr "KopÃrovat výbÄ›r do schránky"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:139
+msgid "Copy to clipboard"
+msgstr "KopÃrovat do schránky"
+
+#: src/libslic3r/PrintConfig.cpp:2324 src/libslic3r/PrintConfig.cpp:2325
+msgid "Correction for expansion"
+msgstr "Korekce expanze"
+
+#: src/slic3r/GUI/Tab.cpp:2059 src/slic3r/GUI/Tab.cpp:3310
+msgid "Corrections"
+msgstr "Korekce"
+
+#: src/slic3r/GUI/Plater.cpp:216 src/slic3r/GUI/Plater.cpp:1056
+#: src/libslic3r/PrintConfig.cpp:717
+msgid "Cost"
+msgstr "Náklady"
+
+#: src/slic3r/GUI/Plater.cpp:2140
+msgid "Could not arrange model objects! Some geometries may be invalid."
+msgstr "Objekty nelze uspořádat! Některé geometrie mohou být neplatné."
+
+#: src/slic3r/Utils/Duet.cpp:56
+msgid "Could not connect to Duet"
+msgstr "Nelze se připojit k Duet"
+
+#: src/slic3r/Utils/OctoPrint.cpp:90
+msgid "Could not connect to OctoPrint"
+msgstr "Nelze se spojit s OctoPrintem"
+
+#: src/slic3r/Utils/OctoPrint.cpp:200
+msgid "Could not connect to Prusa SLA"
+msgstr "Nelze se připojit k Prusa SLA"
+
+#: src/slic3r/GUI/Tab.cpp:1710
+msgid "Could not get a valid Printer Host reference"
+msgstr "Nelze zÃskat platný odkaz na tiskový server"
+
+#: src/slic3r/Utils/Duet.cpp:151
+msgid "Could not get resources to create a new connection"
+msgstr "Nelze zÃskat prostÅ™edky pro vytvoÅ™enà nového spojenÃ"
+
+#: src/libslic3r/PrintConfig.cpp:1872
+msgid "Cover the top contact layer of the supports with loops. Disabled by default."
+msgstr "Zakrýt smyÄkami hornà kontaktnà vrstvu podpÄ›r. Ve výchozÃm nastavenà zakázáno."
+
+#: src/libslic3r/PrintConfig.cpp:73
+msgid "Cracks smaller than 2x gap closing radius are being filled during the triangle mesh slicing. The gap closing operation may reduce the final print resolution, therefore it is advisable to keep the value reasonably low."
+msgstr "Praskliny menšà než 2x polomÄ›r uzavÅ™enà mezery se vyplnà bÄ›hem slicovánà trojúhelnÃkových sÃtÃ. Operace uzavÃránà mezery může snÞit koneÄné rozliÅ¡enà tisku, proto je vhodné udržovat rozumnÄ› nÃzkou hodnotu."
+
+#: src/libslic3r/Zipper.cpp:61
+msgid "CRC-32 check failed"
+msgstr "CRC-32 kontrola selhala"
+
+#: src/libslic3r/PrintConfig.cpp:2460
+msgid "Critical angle"
+msgstr "Kritický úhel"
+
+#: src/libslic3r/PrintConfig.cpp:2417
+msgid "Cross"
+msgstr "Cross"
+
+#: src/libslic3r/PrintConfig.cpp:800
+msgid "Cubic"
+msgstr "Kubická"
+
+#: src/slic3r/GUI/wxExtensions.cpp:2413
+#, possible-c-format
+msgid "Current mode is %s"
+msgstr "Aktuálnà režim je %s"
+
+#: src/slic3r/GUI/Tab.cpp:909
+msgid "Current preset is inherited from "
+msgstr "Aktuálnà nastavenà je zděděno od "
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:45
+msgid "Current version:"
+msgstr "Aktuálnà verze:"
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:93 src/slic3r/GUI/GUI_Preview.cpp:239
+#: src/libslic3r/GCode/PreviewData.cpp:175
+msgid "Custom"
+msgstr "VlastnÃ"
+
+#: src/libslic3r/PrintConfig.cpp:96
+msgid "Custom CA certificate file can be specified for HTTPS OctoPrint connections, in crt/pem format. If left blank, the default OS CA certificate repository is used."
+msgstr "Pro HTTPS připojenà OctoPrintu lze zadat vlastnà CA certifikát ve formátu crt/pem. Pokud zůstane pole prázdné, použije se výchozà úložiště certifikátů OS CA."
+
+#: src/slic3r/GUI/Tab.cpp:1563 src/slic3r/GUI/Tab.cpp:1948
+msgid "Custom G-code"
+msgstr "Vlastnà G-code"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:373
+msgid "Custom Printer"
+msgstr "Vlastnà tiskárna"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:373
+msgid "Custom Printer Setup"
+msgstr "Vlastnà nastavenà tiskárny"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:377
+msgid "Custom profile name:"
+msgstr "Vlastnà název profilu:"
+
+#: xs/src/slic3r/GUI/ConfigWizard.cpp:254
+msgid "Custom setup"
+msgstr "Vlastnà nastavenÃ"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 src/libslic3r/PrintConfig.cpp:3013
+msgid "Cut"
+msgstr "Řezat"
+
+#: src/libslic3r/PrintConfig.cpp:3014
+msgid "Cut model at the given Z."
+msgstr "RozÅ™Ãznout model v dané výšce Z."
+
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:43
+msgid "Cut object:"
+msgstr "Řezat objekt:"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:88
+msgid "Cut [C]"
+msgstr "Řezat [C]"
+
+#: lib/Slic3r/GUI/Plater.pm:262 lib/Slic3r/GUI/Plater.pm:278
+#: lib/Slic3r/GUI/Plater.pm:2296
+msgid "Cut…"
+msgstr "Řezat…"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1055
+msgid "Cylinder"
+msgstr "Válec"
+
+#: src/libslic3r/PrintConfig.cpp:3115
+msgid "Data directory"
+msgstr "Složka Data"
+
+#: src/libslic3r/Zipper.cpp:55
+msgid "decompression failed or archive is corrupted"
+msgstr "dekomprese selhala nebo je archiv poškozen"
+
+#: src/slic3r/GUI/Plater.cpp:2899
+msgid "Decrease copies"
+msgstr "Odebrat kopie"
+
+#: src/slic3r/GUI/GUI_App.cpp:594 src/slic3r/GUI/GUI_ObjectList.cpp:1245
+#: src/libslic3r/PrintConfig.cpp:299
+msgid "Default"
+msgstr "VýchozÃ"
+
+#: xs/src/slic3r/GUI/Tab.cpp:2130
+msgid "Default "
+msgstr "Výchozà "
+
+#: xs/src/slic3r/GUI/Field.cpp:98
+msgid "default"
+msgstr "výchozÃ"
+
+#: src/libslic3r/PrintConfig.cpp:730
+msgid "Default base angle for infill orientation. Cross-hatching will be applied to this. Bridges will be infilled using the best direction Slic3r can detect, so this setting does not affect them."
+msgstr "Výchozà úhel pro orientaci výplnÄ›. Bude pro nÄ›j použito křÞové Å¡rafovánÃ. Mosty budou vyplnÄ›ny nejlepÅ¡Ãm smÄ›rem, který Slic3r dokáže rozpoznat, takže toto nastavenà je neovlivnÃ."
+
+#: src/libslic3r/PrintConfig.cpp:522
+msgid "Default extrusion width"
+msgstr "Výchozà šÃÅ™ka extruze"
+
+#: src/slic3r/GUI/Tab.cpp:937
+msgid "default filament profile"
+msgstr "výchozà profil filamentu"
+
+#: src/libslic3r/PrintConfig.cpp:309
+msgid "Default filament profile"
+msgstr "Výchozà profil filamentu"
+
+#: src/libslic3r/PrintConfig.cpp:310
+msgid "Default filament profile associated with the current printer profile. On selection of the current printer profile, this filament profile will be activated."
+msgstr "Výchozà materiálový profil spojený se souÄasným profilem tiskárny. PÅ™i výbÄ›ru souÄasného profilu tiskárny se aktivuje tento materiálový profil."
+
+#: src/slic3r/GUI/Tab.cpp:2757
+#, possible-c-format
+msgid "Default preset (%s)"
+msgstr "Výchozà přednastavenà (%s)"
+
+#: xs/src/slic3r/GUI/Tab.cpp:2410 xs/src/slic3r/GUI/Tab.cpp:2496
+msgid "Default presets"
+msgstr "Výchozà pÅ™ednastavenÃ"
+
+#: src/libslic3r/GCode/PreviewData.cpp:491
+msgid "Default print color"
+msgstr "Výchozà barva tisku"
+
+#: src/slic3r/GUI/Tab.cpp:934
+msgid "default print profile"
+msgstr "výchozà tiskový profil"
+
+#: src/libslic3r/PrintConfig.cpp:316
+msgid "Default print profile"
+msgstr "Výchozà tiskový profil"
+
+#: src/libslic3r/PrintConfig.cpp:317 src/libslic3r/PrintConfig.cpp:2341
+#: src/libslic3r/PrintConfig.cpp:2352
+msgid "Default print profile associated with the current printer profile. On selection of the current printer profile, this print profile will be activated."
+msgstr "Výchozà tiskový profil spojený se souÄasným profilem tiskárny. PÅ™i výbÄ›ru souÄasného profilu tiskárny se aktivuje tento tiskový profil."
+
+#: src/slic3r/GUI/Tab.cpp:951
+msgid "default SLA material profile"
+msgstr "výchozà profil pro SLA materiál"
+
+#: src/libslic3r/PrintConfig.cpp:2340 src/libslic3r/PrintConfig.cpp:2351
+msgid "Default SLA material profile"
+msgstr "Výchozà profil pro SLA materiál"
+
+#: src/slic3r/GUI/Tab.cpp:955
+msgid "default SLA print profile"
+msgstr "výchozà SLA tiskový profil"
+
+#: src/slic3r/GUI/Field.cpp:105
+msgid "default value"
+msgstr "výchozà hodnota"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:375
+msgid "Define a custom printer profile"
+msgstr "Vytvořit vlastnà tiskový profil"
+
+#: src/libslic3r/PrintConfig.cpp:2529
+msgid "Defines the cavity depth. Set to zero to disable the cavity."
+msgstr "Definuje hloubku dutiny. Chcete-li dutinu vypnout, nastavte ji na nulu."
+
+#: src/libslic3r/PrintConfig.cpp:2533
+msgid "Defines the pad cavity depth. Set to zero to disable the cavity. Be careful when enabling this feature, as some resins may produce an extreme suction effect inside the cavity, which makes pealing the print off the vat foil difficult."
+msgstr "Definuje hloubku dutiny. Chcete-li dutinu vypnout, nastavte ji na nulu. PÅ™i povolovánà této funkce buÄte opatrnÃ, protože nÄ›které pryskyÅ™ice mohou způsobit extrémnà sacà efekt uvnitÅ™ dutiny, což ztěžuje odlupovánà tisku z fólie ve vaniÄce."
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:237
+msgid "degenerate facets"
+msgstr "Degenerace facetů"
+
+#: src/libslic3r/PrintConfig.cpp:2572
+msgid "degrees"
+msgstr "stupňů"
+
+#: src/libslic3r/PrintConfig.cpp:608
msgid "Delay after unloading"
msgstr "ZpoždÄ›nà po vyjmutÃ"
-#: src/libslic3r/PrintConfig.cpp:600
-msgid ""
-"Time to wait after the filament is unloaded. May help to get reliable "
-"toolchanges with flexible materials that may need more time to shrink to "
-"original dimensions. "
-msgstr ""
-"Doba Äekánà po vysunutà filamentu. Může pomoci ke spolehlivé výmÄ›nÄ› nástrojů "
-"s flexibilnÃmi materiály, které potÅ™ebujà vÃce Äasu ke smrÅ¡tÄ›nà na původnà "
-"rozměry. "
+#: src/slic3r/GUI/Tab.cpp:2935
+msgid "delete"
+msgstr "smazat"
-#: src/libslic3r/PrintConfig.cpp:610
-msgid "Number of cooling moves"
-msgstr ""
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1257 src/slic3r/GUI/Plater.cpp:2891
+#: src/slic3r/GUI/Plater.cpp:2909 src/slic3r/GUI/Tab.cpp:2937
+msgid "Delete"
+msgstr "Smazat"
-#: src/libslic3r/PrintConfig.cpp:611
-msgid ""
-"Filament is cooled by being moved back and forth in the cooling tubes. "
-"Specify desired number of these moves "
-msgstr ""
+#: src/slic3r/GUI/MainFrame.cpp:449
+msgid "Delete &all"
+msgstr "Sm&azat vše"
-#: src/libslic3r/PrintConfig.cpp:620
-msgid "Speed of the first cooling move"
-msgstr ""
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:138
+msgid "Delete All"
+msgstr "Smazat Vše"
-#: src/libslic3r/PrintConfig.cpp:621
-msgid "Cooling moves are gradually accelerating beginning at this speed. "
-msgstr ""
+#: src/slic3r/GUI/Plater.cpp:3298
+msgid "Delete all"
+msgstr "Smazat vše"
-#: src/libslic3r/PrintConfig.cpp:629
-msgid "Minimal purge on wipe tower"
-msgstr ""
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:187
+msgid "Delete color change marker for current layer"
+msgstr "Odebrat znaÄku zmÄ›ny barvy pro aktuálnà vrstvu"
-#: src/libslic3r/PrintConfig.cpp:630
-msgid ""
-"After a tool change, the exact position of the newly loaded filament inside "
-"the nozzle may not be known, and the filament pressure is likely not yet "
-"stable. Before purging the print head into an infill or a sacrificial "
-"object, Slic3r will always prime this amount of material into the wipe tower "
-"to produce successive infill or sacrificial object extrusions reliably."
-msgstr ""
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:137
+msgid "Delete selected"
+msgstr "Smazat vybrané"
-#: src/libslic3r/PrintConfig.cpp:635
-msgid "mm³"
-msgstr ""
+#: src/slic3r/GUI/Tab.cpp:131
+msgid "Delete this preset"
+msgstr "Smazat pÅ™ednastavenÃ"
-#: src/libslic3r/PrintConfig.cpp:641
-msgid "Speed of the last cooling move"
-msgstr ""
+#: src/slic3r/GUI/MainFrame.cpp:449
+msgid "Deletes all objects"
+msgstr "Smazat všechny objekty"
-#: src/libslic3r/PrintConfig.cpp:642
-msgid "Cooling moves are gradually accelerating towards this speed. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:650
-msgid "Filament load time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:651
-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 ""
-
-#: src/libslic3r/PrintConfig.cpp:659
-msgid "Ramming parameters"
-msgstr "Parametry rapidnà extruze"
-
-#: src/libslic3r/PrintConfig.cpp:660
-msgid ""
-"This string is edited by RammingDialog and contains ramming specific "
-"parameters "
-msgstr ""
-"This string is edited by RammingDialog and contains ramming specific "
-"parameters "
-
-#: src/libslic3r/PrintConfig.cpp:667
-msgid "Filament unload time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:668
-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 ""
-
-#: src/libslic3r/PrintConfig.cpp:677
-msgid ""
-"Enter your filament diameter here. Good precision is required, so use a "
-"caliper and do multiple measurements along the filament, then compute the "
-"average."
-msgstr ""
-"Zde zadejte průměr filamentu. Je zapotřebà správné přesnosti, proto použijte "
-"Å¡upleru a proveÄte nÄ›kolik měřenà podél filamentu, poté vypoÄtete průmÄ›r."
+#: src/slic3r/GUI/MainFrame.cpp:447
+msgid "Deletes the current selection"
+msgstr "Smaže aktuálnà výběr"
#: src/libslic3r/PrintConfig.cpp:685
msgid "Density"
msgstr "Hustota"
+#: src/libslic3r/PrintConfig.cpp:744
+msgid "Density of internal infill, expressed in the range 0% - 100%."
+msgstr "Hustota vnitřnà výplně, vyjádřená v rozmezà 0% až 100%."
+
+#: src/slic3r/GUI/Tab.cpp:1200 src/slic3r/GUI/Tab.cpp:1584
+#: src/slic3r/GUI/Tab.cpp:1992 src/slic3r/GUI/Tab.cpp:2086
+#: src/slic3r/GUI/Tab.cpp:3336 src/slic3r/GUI/Tab.cpp:3445
+msgid "Dependencies"
+msgstr "Závislosti"
+
+#: src/libslic3r/PrintConfig.cpp:1542 src/libslic3r/PrintConfig.cpp:1543
+msgid "Deretraction Speed"
+msgstr "Rychlost deretrakce"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1235
+msgid "Deselect by rectangle"
+msgstr "OdznaÄit obdélnÃkovým výbÄ›rem myÅ¡i"
+
+#: src/libslic3r/PrintConfig.cpp:1833
+msgid "detachable"
+msgstr "oddělitelný"
+
+#: src/libslic3r/PrintConfig.cpp:1304
+msgid "Detect bridging perimeters"
+msgstr "Detekovat perimetry pÅ™emostÄ›nÃ"
+
+#: src/libslic3r/PrintConfig.cpp:1988
+msgid "Detect single-width walls (parts where two extrusions don't fit and we need to collapse them into a single trace)."
+msgstr "Detekuje stÄ›ny o tloušťce jedné Äáry (Äásti, kam se dvÄ› Äáry nemohou vejÃt a je potÅ™eba slouÄit je do Äáry jedné)."
+
+#: src/libslic3r/PrintConfig.cpp:1986
+msgid "Detect thin walls"
+msgstr "Detekovat tenké zdi"
+
+#: src/libslic3r/PrintConfig.cpp:3083
+msgid "Detect unconnected parts in the given model(s) and split them into separate objects."
+msgstr "Rozpoznat nepÅ™ipojené Äásti daného modelu(ů) a rozdÄ›lit je do samostatných objektů."
+
+#: src/slic3r/GUI/Plater.cpp:1713
+msgid "Detected advanced data"
+msgstr "Byla detekována data z pokroÄilého režimu"
+
+#: src/slic3r/GUI/GLCanvas3D.cpp:723
+msgid "Detected object outside print volume\nResolve a clash to continue slicing/export process correctly"
+msgstr "Detekován objekt mimo tiskový prostor\nVyÅ™eÅ¡te konflikt, abyste mohli správnÄ› pokraÄovat v procesu slicovánÃ/exportu"
+
+#: src/slic3r/GUI/GLCanvas3D.cpp:719
+msgid "Detected object outside print volume"
+msgstr "Detekován objekt mimo tiskový prostor."
+
+#: src/slic3r/GUI/GLCanvas3D.cpp:720
+msgid "Detected toolpath outside print volume"
+msgstr "Byla detekována cesta mimo tiskový objem"
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:88 src/libslic3r/PrintConfig.cpp:677
+msgid "Diameter"
+msgstr "Průměr"
+
+#: src/libslic3r/PrintConfig.cpp:2443
+msgid "Diameter in mm of the pillar base"
+msgstr "Průměr základny podpěr v mm"
+
+#: src/libslic3r/PrintConfig.cpp:2399
+msgid "Diameter in mm of the support pillars"
+msgstr "Průměr podpěrných sloupů v mm"
+
+#: src/libslic3r/PrintConfig.cpp:2371
+msgid "Diameter of the pointing side of the head"
+msgstr "Průměr konce podpůrného hrotu"
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:89
+msgid "Diameter of the print bed. It is assumed that origin (0,0) is located in the center."
+msgstr "PrůmÄ›r tiskové podložky. PÅ™epokládaný poÄátek (0,0) je umÃstÄ›n uprostÅ™ed."
+
+#: src/libslic3r/PrintConfig.cpp:1569
+msgid "Direction"
+msgstr "Směr"
+
+#: xs/src/slic3r/GUI/Preferences.cpp:76
+msgid "Disable communication with the printer over a serial / USB cable. This simplifies the user interface in case the printer is never attached to the computer."
+msgstr "Zakázat komunikaci s tiskárnou pÅ™es sériový / USB kabel. To zjednoduÅ¡uje uživatelské rozhranà v pÅ™ÃpadÄ›, že tiskárna nenà nikdy pÅ™ipojena k poÄÃtaÄi."
+
+#: src/libslic3r/PrintConfig.cpp:323
+msgid "Disable fan for the first"
+msgstr "Vypnutà chlazenà pro prvnÃch"
+
+#: xs/src/slic3r/GUI/Preferences.cpp:74
+msgid "Disable USB/serial connection"
+msgstr "Vypnout USB/sériové pÅ™ipojenÃ"
+
+#: src/libslic3r/PrintConfig.cpp:1280
+msgid "Disables retraction when the travel path does not exceed the upper layer's perimeters (and thus any ooze will be probably invisible)."
+msgstr "Vypne retrakce, pokud dráha nepÅ™ekroÄà perimetr vrchnà vrstvy (a proto bude pravdÄ›podobnÄ› jakékoliv odkapávánà neviditelné)."
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:869
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1241
+msgid "Discard changes"
+msgstr "Zahodit změny"
+
+#: src/slic3r/GUI/Tab.cpp:2784
+msgid "Discard changes and continue anyway?"
+msgstr "Zahodit zmÄ›ny a pokraÄovat?"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177
+msgid "Displacement (mm)"
+msgstr "Posunutà (mm)"
+
+#: src/slic3r/GUI/Tab.cpp:2041
+msgid "Display"
+msgstr "Displej"
+
+#: src/libslic3r/PrintConfig.cpp:2208
+msgid "Display height"
+msgstr "Výška displeje"
+
+#: src/libslic3r/PrintConfig.cpp:2227
+msgid "Display orientation"
+msgstr "Orientace displeje"
+
+#: src/slic3r/GUI/MainFrame.cpp:510
+msgid "Display the Print Host Upload Queue window"
+msgstr "Zobrazit okno s frontou nahrávánà do tiskového serveru."
+
+#: src/libslic3r/PrintConfig.cpp:2202
+msgid "Display width"
+msgstr "Å ÃÅ™ka displeje"
+
+#: src/libslic3r/PrintConfig.cpp:341
+msgid "Distance between copies"
+msgstr "Vzdálenost mezi kopiemi"
+
+#: src/libslic3r/PrintConfig.cpp:1610
+msgid "Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion."
+msgstr "Vzdálenost mezi obrysem a objektem (objekty). Nastavte tuto hodnotu na nulu, pro slouÄenà obrysu s pÅ™edmÄ›tem (pÅ™edmÄ›ty) a tvorbu lÃmce pro dosaženà lepšà pÅ™ilnavosti."
+
+#: src/libslic3r/PrintConfig.cpp:1609
+msgid "Distance from object"
+msgstr "Vzdálenost od objektu"
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:80
+msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle."
+msgstr "Vzdálenost souÅ™adnice 0,0 G-code od pÅ™ednÃho levého rohu obdélnÃku."
+
+#: src/libslic3r/PrintConfig.cpp:284
+msgid "Distance of the center-point of the cooling tube from the extruder tip "
+msgstr "Vzdálenost ze stÅ™edu chladÃcà trubiÄky ke Å¡piÄce extruderu "
+
+#: src/libslic3r/PrintConfig.cpp:1313
+msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware. "
+msgstr "Vzdálenost Å¡piÄky extruderu od mÃsta, kde je zaparkován filament pÅ™i vytaženÃ. MÄ›la by se shodovat s hodnotou ve firmware tiskárny. "
+
+#: src/libslic3r/PrintConfig.cpp:342
+msgid "Distance used for the auto-arrange feature of the plater."
+msgstr "Vzdálenost, použitá pro funkci automatického rozmÃstÄ›nà po podložce."
+
+#: src/libslic3r/PrintConfig.cpp:3097
+msgid "Do not fail if a file supplied to --load does not exist."
+msgstr "Nepodařà se, pokud neexistuje soubor dodaný k pÅ™epÃnaÄi --load."
+
+#: src/libslic3r/PrintConfig.cpp:3041
+msgid "Do not rearrange the given models before merging and keep their original XY coordinates."
+msgstr "NepÅ™euspořádávejte modely pÅ™ed slouÄenÃm a tÃm ponechánÃm jejich původnÃch souÅ™adnic v XY."
+
+#: src/slic3r/GUI/Field.cpp:181
+#, possible-c-format
+msgid "Do you mean %d%% instead of %d %s?\nSelect YES if you want to change this value to %d%%, \nor NO if you are sure that %d %s is a correct value."
+msgstr "MyslÃte %d%% namÃsto %d %s?\nVyberte ANO, pokud chcete zmÄ›nit tuto hodnotu na %d%% nebo NE, pokud jste si jisti, že %d %s je správná hodnota."
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1022
+msgid "Do you want to save your manually edited support points ?\n"
+msgstr "Chcete uložit ruÄnÄ› upravované podpÄ›rné body?\n"
+
+#: src/libslic3r/PrintConfig.cpp:3040
+msgid "Don't arrange"
+msgstr "Neuspořádávat"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:55
+msgid "Don't notify about new releases any more"
+msgstr "Neupozorňovat na nové verze"
+
+#: src/libslic3r/PrintConfig.cpp:333
+msgid "Don't support bridges"
+msgstr "Nevytvářet podpěry pod mosty"
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2161
+msgid "Done"
+msgstr "DokonÄeno"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:20
+msgid "Downgrade"
+msgstr "Downgrade"
+
+#: lib/Slic3r/GUI/Plater/2D.pm:132
+msgid "Drag your objects here"
+msgstr "Přetáhněte své objekty sem"
+
+#: src/libslic3r/PrintConfig.cpp:3044
+msgid "Duplicate"
+msgstr "Duplikovat"
+
+#: src/libslic3r/PrintConfig.cpp:3049
+msgid "Duplicate by grid"
+msgstr "Duplikovat mřÞkou"
+
+#: src/libslic3r/PrintConfig.cpp:2418
+msgid "Dynamic"
+msgstr "Dynamic"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:238
+msgid "edges fixed"
+msgstr "hrany opraveny"
+
+#: src/libslic3r/PrintConfig.cpp:349
+msgid "Elephant foot compensation"
+msgstr "Kompenzace rozplácnutà prvnà vrstvy"
+
+#: src/libslic3r/SLAPrint.cpp:624
+msgid "Elevation is too low for object."
+msgstr "Výška od podložky je pro objekt pÅ™ÃliÅ¡ nÃzká."
+
+#: src/libslic3r/PrintConfig.cpp:1044
+msgid "Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute intervals into the G-code to let the firmware show accurate remaining time. As of now only the Prusa i3 MK3 firmware recognizes M73. Also the i3 MK3 firmware supports M73 Qxx Sxx for the silent mode."
+msgstr "Vkládánà M73 P[poÄet vytiÅ¡tÄ›ných procent] R[zbývajÃcà Äas v minutách] v 1 minutových intervalech do G-codu, aby firmware ukázal pÅ™esný zbývajÃcà Äas. M73 nynà rozpoznává pouze firmware tiskárny Prusa i3 MK3. Firmware i3 MK3 také podporuje M73 Qxx Sxx pro tichý režim."
+
+#: src/slic3r/GUI/Tab.cpp:1490 src/libslic3r/PrintConfig.cpp:1286
+#: src/libslic3r/PrintConfig.cpp:2099
+msgid "Enable"
+msgstr "Zapnout"
+
+#: src/libslic3r/PrintConfig.cpp:277
+msgid "Enable auto cooling"
+msgstr "Zapnutà automatického chlazenÃ"
+
+#: src/libslic3r/PrintConfig.cpp:539
+msgid "Enable fan if layer print time is below"
+msgstr "Zapnout ventilátor, pokud je doba tisku vrstvy kratšà než"
+
+#: src/libslic3r/PrintConfig.cpp:1781
+msgid "Enable support material generation."
+msgstr "Zapne generovánà podpěr."
+
+#: src/libslic3r/PrintConfig.cpp:918
+msgid "Enable this to add comments into the G-Code labeling print moves with what object they belong to, which is useful for the Octoprint CancelObject plugin. This settings is NOT compatible with Single Extruder Multi Material setup and Wipe into Object / Wipe into Infill."
+msgstr "ZapnÄ›te tuto možnost, chcete-li do G-Code pÅ™idávat komentáře, které budou urÄovat, pÅ™ÃsluÅ¡nost tiskových pohybů k jednotlivým objektům. To je užiteÄné pro Octoprint plugin CancelObject. Nastavenà NENà kompatibilnà se Single Extruder Multi Material konfiguracà a s ÄiÅ¡tÄ›nÃm trysky do objektu / výplnÄ›."
+
+#: src/libslic3r/PrintConfig.cpp:881
+msgid "Enable this to get a commented G-code file, with each line explained by a descriptive text. If you print from SD card, the additional weight of the file could make your firmware slow down."
+msgstr "Aktivacà zÃskáte komentovaný soubor G-code, pÅ™iÄemž každý řádek je doplnÄ›n popisným textem. Pokud tisknete z SD karty, dodateÄné informace v souboru můžou zpomalit firmware."
+
+#: src/libslic3r/PrintConfig.cpp:2085
+msgid "Enable variable layer height feature"
+msgstr "Zapnout variabilnà výšku vrstev"
+
+#: src/slic3r/GUI/Tab.cpp:1570 src/slic3r/GUI/Tab.cpp:1955
+#: src/libslic3r/PrintConfig.cpp:359 src/libslic3r/PrintConfig.cpp:369
+msgid "End G-code"
+msgstr "Konec G-code"
+
+#: src/libslic3r/PrintConfig.cpp:1838
+msgid "Enforce support for the first"
+msgstr "ZesÃlit podpÄ›ry pro prvnÃch"
+
+#: src/libslic3r/PrintConfig.cpp:1845
+msgid "Enforce support for the first n layers"
+msgstr "Vynucenà podpÄ›r pro prvnÃch n vrstev"
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:197
+#: src/slic3r/GUI/PrintHostDialogs.cpp:228
+msgid "Enqueued"
+msgstr "Zařazeno do fronty"
+
+#: src/libslic3r/PrintConfig.cpp:380
+msgid "Ensure vertical shell thickness"
+msgstr "Zajistit tloušťku svislých stěn"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2709
+msgid "Enter new name"
+msgstr "Zadejte nový název"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:622
+msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed."
+msgstr "Zadejte požadovanou teplotu filamentu, aby se spojil s vyhÅ™Ãvanou podložkou."
+
+#: src/slic3r/GUI/ConfigWizard.cpp:570
+msgid "Enter the diameter of your filament."
+msgstr "Zadejte průměr vašeho filamentu."
+
+#: src/slic3r/GUI/ConfigWizard.cpp:557
+msgid "Enter the diameter of your printer's hot end nozzle."
+msgstr "Zadejte průměr trysky hotendu vašà tiskárny."
+
+#: lib/Slic3r/GUI/Plater.pm:1158
+msgid "Enter the new max size for the selected object:"
+msgstr "Zvolte nový maximálnà rozměr pro zvolný objekt:"
+
+#: lib/Slic3r/GUI/Plater.pm:1132
+#, possible-perl-format
+msgid "Enter the new size for the selected object (print bed: %smm):"
+msgstr "Zadejte novou velikost vybraného objektu (tisková podložka: %smm):"
+
+#: lib/Slic3r/GUI/Plater.pm:992
+msgid "Enter the number of copies of the selected object:"
+msgstr "Zadejte poÄet kopià pro vybraný objekt:"
+
+#: lib/Slic3r/GUI/Plater.pm:1042
+msgid "Enter the rotation angle:"
+msgstr "Zadejte úhel natoÄenÃ:"
+
+#: lib/Slic3r/GUI/Plater.pm:1137 lib/Slic3r/GUI/Plater.pm:1163
+#, no-perl-format
+msgid "Enter the scale % for the selected object:"
+msgstr "Zadejte rozměr % pro zvolený objekt:"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:608
+msgid "Enter the temperature needed for extruding your filament."
+msgstr "Zadejte požadovanou teplotu pro extruzi vašeho filamentu."
+
+#: src/libslic3r/PrintConfig.cpp:718
+msgid "Enter your filament cost per kg here. This is only for statistical information."
+msgstr "Zde zadejte cenu filamentu za kg. Sloužà pouze pro statistické informace."
+
#: src/libslic3r/PrintConfig.cpp:686
-msgid ""
-"Enter your filament density here. This is only for statistical information. "
-"A decent way is to weigh a known length of filament and compute the ratio of "
-"the length to volume. Better is to calculate the volume directly through "
-"displacement."
-msgstr ""
-"Zde zadejte hustotu filamentu. Toto je pouze pro statistické informace. "
-"PÅ™Ãpustný způsob je zvážit známou délku filamentu a vypoÄÃtat pomÄ›r délky k "
-"objemu. Je lepšà vypoÄÃtat objem pÅ™Ãmo pÅ™es posun."
+msgid "Enter your filament density here. This is only for statistical information. A decent way is to weigh a known length of filament and compute the ratio of the length to volume. Better is to calculate the volume directly through displacement."
+msgstr "Zde zadejte hustotu filamentu. Toto je pouze pro statistické informace. PÅ™Ãpustný způsob je zvážit známou délku filamentu a vypoÄÃtat pomÄ›r délky k objemu. Je lepšà vypoÄÃtat objem pÅ™Ãmo pÅ™es posun."
+
+#: src/libslic3r/PrintConfig.cpp:678
+msgid "Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average."
+msgstr "Zde zadejte průmÄ›r filamentu. Je zapotÅ™ebà správné pÅ™esnosti, proto použijte Å¡upleru a proveÄte nÄ›kolik měřenà podél filamentu, poté vypoÄtete průmÄ›r."
+
+#: src/slic3r/GUI/MainFrame.cpp:636 src/slic3r/GUI/PrintHostDialogs.cpp:230
+msgid "Error"
+msgstr "Chyba"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:608
+#, possible-c-format
+msgid "Error accessing port at %s: %s"
+msgstr "Chyba pÅ™i pÅ™Ãstupu k portu na %s : %s"
+
+#: lib/Slic3r/GUI/Plater.pm:1760
+msgid "Error exporting 3MF file "
+msgstr "Chyba při exportu souboru 3MF "
+
+#: src/slic3r/GUI/Plater.cpp:3593
+#, possible-c-format
+msgid "Error exporting 3MF file %s"
+msgstr "Chyba při exportu souboru 3MF %s"
+
+#: lib/Slic3r/GUI/Plater.pm:1744
+msgid "Error exporting AMF file "
+msgstr "Chyba při exportu souboru AMF "
+
+#: src/slic3r/GUI/Plater.cpp:3564
+#, possible-c-format
+msgid "Error exporting AMF file %s"
+msgstr "Chyba při exportu souboru AMF %s"
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:271
+msgid "Error uploading to print host:"
+msgstr "Chyba při nahrávánà do tiskového serveru:"
+
+#: xs/src/slic3r/Utils/OctoPrint.cpp:98
+msgid "Error while uploading to the OctoPrint server"
+msgstr "Chyba při nahrávánà na server OctoPrint"
+
+#: src/libslic3r/Zipper.cpp:105
+msgid "Error with zip archive"
+msgstr "Chyba v zip archivu"
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:333 src/slic3r/GUI/GUI_ObjectList.cpp:1431
+msgid "Error! "
+msgstr "Chyba! "
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:610
+#, possible-c-format
+msgid "Error: %s"
+msgstr "Chyba: %s"
+
+#: src/slic3r/GUI/Plater.cpp:217 src/slic3r/GUI/Plater.cpp:1028
+#: src/slic3r/GUI/Plater.cpp:1070
+msgid "Estimated printing time"
+msgstr "Odhadovaný Äas tisku"
+
+#: lib/Slic3r/GUI/Plater.pm:1618
+msgid "Estimated printing time (normal mode)"
+msgstr "Předpokládaná doba tisku (normálnà režim)"
+
+#: lib/Slic3r/GUI/Plater.pm:1620
+msgid "Estimated printing time (silent mode)"
+msgstr "Předpokládaná doba tisku (tichý režim)"
+
+#: src/slic3r/GUI/Plater.cpp:424
+msgid "Everywhere"
+msgstr "Všude"
+
+#: src/slic3r/GUI/PresetHints.cpp:46
+#, possible-c-format
+msgid "except for the first %d layers"
+msgstr "s výjimkou prvnÃch %d vrstev"
+
+#: src/slic3r/GUI/PresetHints.cpp:50
+msgid "except for the first layer"
+msgstr "vyjma prvnà vrstvy"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:148
+#, possible-c-format
+msgid "Exit %s"
+msgstr "UkonÄit %s"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:144
+msgid "Exit Slic3r"
+msgstr "UkonÄit Slic3r"
+
+#: src/libslic3r/PrintConfig.cpp:335
+msgid "Experimental option for preventing support material from being generated under bridged areas."
+msgstr "Experimentálnà nastavenà pro zabráněnà tvorbě podpěr v oblastech po mosty."
+
+#: src/libslic3r/PrintConfig.cpp:1306
+msgid "Experimental option to adjust flow for overhangs (bridge flow will be used), to apply bridge speed to them and enable fan."
+msgstr "Experimentálnà volba pro nastavenà průtoku pro přesahy (použije se průtok jako u mostů), aplikuje se na ně rychlost mostu a spustà se ventilátor."
+
+#: src/slic3r/GUI/GUI_App.cpp:676 src/slic3r/GUI/wxExtensions.cpp:2461
+msgid "Expert"
+msgstr "Expert"
+
+#: src/slic3r/GUI/GUI_App.cpp:676
+msgid "Expert View Mode"
+msgstr "Režim Expert"
+
+#: src/slic3r/GUI/MainFrame.cpp:602 src/slic3r/GUI/Plater.cpp:3821
+msgid "Export"
+msgstr "Exportovat"
+
+#: src/slic3r/GUI/MainFrame.cpp:373
+msgid "Export &Config"
+msgstr "Exportovat Konfigura&ci"
+
+#: src/slic3r/GUI/MainFrame.cpp:362 src/slic3r/GUI/MainFrame.cpp:602
+msgid "Export &G-code"
+msgstr "Exportovat &G-code"
+
+#: src/libslic3r/PrintConfig.cpp:2949
+msgid "Export 3MF"
+msgstr "Exportovat 3MF"
+
+#: src/slic3r/GUI/MainFrame.cpp:375
+msgid "Export all presets to file"
+msgstr "Exportovat všechna přednastavenà do souboru"
+
+#: src/libslic3r/PrintConfig.cpp:2954
+msgid "Export AMF"
+msgstr "Exportovat AMF"
+
+#: src/slic3r/GUI/Plater.cpp:1932
+msgid "Export AMF file:"
+msgstr "Exportovat AMF soubor:"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1219 src/slic3r/GUI/Plater.cpp:2927
+msgid "Export as STL"
+msgstr "Exportovat jako STL"
+
+#: lib/Slic3r/GUI/Plater.pm:1416
+msgid "Export cancelled"
+msgstr "Export zrušen"
+
+#: src/slic3r/GUI/MainFrame.cpp:375
+msgid "Export Config &Bundle"
+msgstr "Exportovat KonfiguraÄnà &BalÃk"
+
+#: src/slic3r/GUI/MainFrame.cpp:373
+msgid "Export current configuration to file"
+msgstr "Exportovat souÄasnou konfiguraci do souboru"
+
+#: lib/Slic3r/GUI/MainFrame.pm:281
+msgid "Export current plate as 3MF"
+msgstr "Exportovat stávajÃcà plochu jako 3MF"
+
+#: src/slic3r/GUI/MainFrame.cpp:370
+msgid "Export current plate as AMF"
+msgstr "Exportovat stávajÃcà plochu jako AMF"
+
+#: src/slic3r/GUI/MainFrame.cpp:362
+msgid "Export current plate as G-code"
+msgstr "Exportovat stávajÃcà plochu do G-code"
+
+#: src/slic3r/GUI/MainFrame.cpp:366
+msgid "Export current plate as STL"
+msgstr "Exportovat stávajÃcà plochu jako STL"
+
+#: src/slic3r/GUI/MainFrame.cpp:368
+msgid "Export current plate as STL including supports"
+msgstr "Exportovat stávajÃcà plochu vÄetnÄ› podpÄ›r jako STL"
+
+#: src/slic3r/GUI/Plater.cpp:2722
+msgid "Export failed"
+msgstr "Exportovánà selhalo"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 src/slic3r/GUI/Plater.cpp:733
+#: src/slic3r/GUI/Plater.cpp:3821 src/libslic3r/PrintConfig.cpp:2964
+msgid "Export G-code"
+msgstr "Exportovat G-code"
+
+#: lib/Slic3r/GUI/MainFrame.pm:272
+msgid "Export G-code..."
+msgstr "Exportovat G-code…"
+
+#: lib/Slic3r/GUI/Plater.pm:322
+msgid "Export G-code…"
+msgstr "Exportovat G-code…"
+
+#: src/libslic3r/PrintConfig.cpp:2931
+msgid "Export OBJ"
+msgstr "Exportovat OBJ"
+
+#: lib/Slic3r/GUI/Plater.pm:2307
+msgid "Export object as STL…"
+msgstr "Exportovat objekt jako STL…"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:368
+msgid "Export of a temporary 3mf file failed"
+msgstr "Export doÄasného 3MF souboru selhalo."
+
+#: src/slic3r/GUI/MainFrame.cpp:370
+msgid "Export plate as &AMF"
+msgstr "Exportovat plochu jako &AMF"
+
+#: src/slic3r/GUI/MainFrame.cpp:366
+msgid "Export plate as &STL"
+msgstr "Exportovat plochu jako &STL"
+
+#: lib/Slic3r/GUI/MainFrame.pm:281
+msgid "Export plate as 3MF..."
+msgstr "Exportovat plochu jako 3MF..."
+
+#: lib/Slic3r/GUI/MainFrame.pm:278
+msgid "Export plate as AMF..."
+msgstr "Exportovat plochu jako AMF..."
+
+#: src/slic3r/GUI/MainFrame.cpp:368
+msgid "Export plate as STL including supports"
+msgstr "Exportovat plochu vÄetnÄ› podpÄ›r jako STL soubor"
+
+#: lib/Slic3r/GUI/MainFrame.pm:275
+msgid "Export plate as STL..."
+msgstr "Exportovat plochu jako STL..."
+
+#: xs/src/slic3r/GUI/GUI.cpp:930
+msgid "Export print config"
+msgstr "Exportovat nastavenà tisku"
+
+#: src/libslic3r/PrintConfig.cpp:2943
+msgid "Export SLA"
+msgstr "Exportovat SLA"
+
+#: src/libslic3r/PrintConfig.cpp:2959
+msgid "Export STL"
+msgstr "Exportovat STL"
+
+#: src/slic3r/GUI/Plater.cpp:1925
+msgid "Export STL file:"
+msgstr "Exportovat STL soubor:"
+
+#: lib/Slic3r/GUI/Plater.pm:326
+msgid "Export STL…"
+msgstr "Exportovat STL…"
+
+#: src/libslic3r/PrintConfig.cpp:2924
+msgid "Export SVG"
+msgstr "Exportovat SVG"
+
+#: src/libslic3r/PrintConfig.cpp:2950
+msgid "Export the model(s) as 3MF."
+msgstr "Exportovat model(y) jako 3MF."
+
+#: src/libslic3r/PrintConfig.cpp:2955
+msgid "Export the model(s) as AMF."
+msgstr "Exportovat model(y) jako AMF."
+
+#: src/libslic3r/PrintConfig.cpp:2932
+msgid "Export the model(s) as OBJ."
+msgstr "Exportovat model(y) jako OBJ."
+
+#: src/libslic3r/PrintConfig.cpp:2960
+msgid "Export the model(s) as STL."
+msgstr "Exportovat model(y) jako STL."
+
+#: src/slic3r/GUI/Plater.cpp:2927
+msgid "Export the selected object as STL file"
+msgstr "Exportovat vybrané objekty jako STL soubor"
+
+#: lib/Slic3r/GUI/Plater.pm:2307
+msgid "Export this single object as STL file"
+msgstr "Exportovat tento jediný objekt jako STL soubor"
+
+#: src/libslic3r/Print.cpp:1517
+msgid "Exporting G-code"
+msgstr "Exportovánà souboru G-code"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:341
+msgid "Exporting model..."
+msgstr "Exportovánà modelu..."
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:219
+#: src/slic3r/Utils/FixModelByWin10.cpp:359
+msgid "Exporting source model"
+msgstr "Exportovánà zdrojového modelu"
+
+#: src/slic3r/GUI/Tab.cpp:3306
+msgid "Exposure"
+msgstr "Osvit"
+
+#: src/libslic3r/PrintConfig.cpp:2310 src/libslic3r/PrintConfig.cpp:2311
+msgid "Exposure time"
+msgstr "Doba osvitu"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:228 src/libslic3r/GCode/PreviewData.cpp:164
+msgid "External perimeter"
+msgstr "Vnějšà perimetr"
+
+#: src/slic3r/GUI/PresetHints.cpp:153
+msgid "external perimeters"
+msgstr "vnějšà perimetry"
+
+#: src/libslic3r/PrintConfig.cpp:415 src/libslic3r/PrintConfig.cpp:425
+msgid "External perimeters"
+msgstr "Vnějšà perimetry"
+
+#: src/libslic3r/PrintConfig.cpp:437
+msgid "External perimeters first"
+msgstr "Nejprve tisknout vnějšà perimetry"
+
+#: src/libslic3r/PrintConfig.cpp:1518 src/libslic3r/PrintConfig.cpp:1526
+msgid "Extra length on restart"
+msgstr "Extra vzdálenost při návratu"
+
+#: src/libslic3r/PrintConfig.cpp:1321
+msgid "Extra loading distance"
+msgstr "Extra délka pÅ™i zavádÄ›nÃ"
+
+#: src/libslic3r/PrintConfig.cpp:445
+msgid "Extra perimeters if needed"
+msgstr "Extra perimetry (pokud jsou potřeba)"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:335 src/slic3r/GUI/Tab.cpp:1479
+#: src/libslic3r/PrintConfig.cpp:455
+msgid "Extruder"
+msgstr "Extruder"
+
+#: src/slic3r/GUI/Tab.cpp:2253 src/libslic3r/GCode/PreviewData.cpp:475
+#, possible-c-format
+msgid "Extruder %d"
+msgstr "Extruder %d"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:592
+msgid "Extruder and Bed Temperatures"
+msgstr "Teploty extruderu a podložky"
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:226
+msgid "Extruder changed to"
+msgstr "Extruder změněn na"
+
+#: src/slic3r/GUI/Tab.cpp:1171
+msgid "Extruder clearance (mm)"
+msgstr "Koliznà oblast extruderu (mm)"
+
+#: src/libslic3r/PrintConfig.cpp:490
+msgid "Extruder Color"
+msgstr "Barva extruderu"
+
+#: src/libslic3r/PrintConfig.cpp:497
+msgid "Extruder offset"
+msgstr "Odsazenà extruderu"
+
+#: src/libslic3r/PrintConfig.cpp:863
+msgid "Extruder temperature for first layer. If you want to control temperature manually during print, set this to zero to disable temperature control commands in the output file."
+msgstr "Teplota extruderu pro prvnà vrstvu. Chcete-li bÄ›hem tisku ruÄnÄ› ovládat teplotu, nastavte tuto hodnotu na nulu, aby se ve výstupnÃm souboru zakázaly pÅ™Ãkazy pro Å™Ãzenà teploty."
+
+#: src/libslic3r/PrintConfig.cpp:1978
+msgid "Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output."
+msgstr "Teplota extruderu pro následujÃcà vrstvy po vrstvÄ› prvnÃ. Nastavte tuto hodnotu na nulu, abyste zakázali pÅ™Ãkazy pro Å™Ãzenà teploty na výstupu."
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_ObjectList.cpp:72
+#: src/slic3r/GUI/GUI_ObjectList.cpp:513 src/slic3r/GUI/Tab.cpp:1119
+#: src/slic3r/GUI/Tab.cpp:1844 src/libslic3r/PrintConfig.cpp:456
+#: src/libslic3r/PrintConfig.cpp:954 src/libslic3r/PrintConfig.cpp:1340
+#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1852
+#: src/libslic3r/PrintConfig.cpp:1878 src/libslic3r/PrintConfig.cpp:2151
+#: src/libslic3r/PrintConfig.cpp:2159
+msgid "Extruders"
+msgstr "Extrudery"
+
+#: src/libslic3r/PrintConfig.cpp:507
+msgid "Extrusion axis"
+msgstr "Osa extruderu"
+
+#: src/libslic3r/PrintConfig.cpp:513
+msgid "Extrusion multiplier"
+msgstr "NásobiÄ extruze"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:612
+msgid "Extrusion Temperature:"
+msgstr "Teplota extruze:"
+
+#: src/slic3r/GUI/Tab.cpp:1143
+msgid "Extrusion width"
+msgstr "Å ÃÅ™ka extruze"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:73 src/slic3r/GUI/GUI_ObjectList.cpp:514
+#: src/libslic3r/PrintConfig.cpp:416 src/libslic3r/PrintConfig.cpp:523
+#: src/libslic3r/PrintConfig.cpp:830 src/libslic3r/PrintConfig.cpp:962
+#: src/libslic3r/PrintConfig.cpp:1349 src/libslic3r/PrintConfig.cpp:1688
+#: src/libslic3r/PrintConfig.cpp:1861 src/libslic3r/PrintConfig.cpp:2018
+msgid "Extrusion Width"
+msgstr "Å ÃÅ™e extruze"
+
+#: src/slic3r/GUI/Plater.cpp:139
+msgid "Facets"
+msgstr "Facety"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:240
+msgid "facets added"
+msgstr "facety přidány"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:239
+msgid "facets removed"
+msgstr "facety odebrány"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:241
+msgid "facets reversed"
+msgstr "facety otoÄeny"
+
+#: src/libslic3r/PrintConfig.cpp:2302
+msgid "Faded layers"
+msgstr "Vrstvy poÄáteÄnÃho osvitu"
+
+#: src/libslic3r/Zipper.cpp:47
+msgid "failed finding central directory"
+msgstr "selhalo nalezenà kořenového adresáře"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:235
+msgid "Failed loading the input model."
+msgstr "NaÄtenà vstupnÃho modelu se nezdaÅ™ilo."
+
+#: src/libslic3r/PrintBase.cpp:65
+msgid "Failed processing of the output_filename_format template."
+msgstr "Zpracovánà šablony output_filename_format selhalo."
+
+#: src/slic3r/GUI/PresetHints.cpp:38
+msgid "Fan "
+msgstr "Ventilátor "
+
+#: src/slic3r/GUI/Tab.cpp:1501
+msgid "Fan settings"
+msgstr "Nastavenà ventilátoru"
+
+#: src/slic3r/GUI/Tab.cpp:1502
+msgid "Fan speed"
+msgstr "Rychlost ventilátoru"
+
+#: src/libslic3r/PrintConfig.cpp:2240
+msgid "Fast"
+msgstr "Rychlý"
+
+#: src/libslic3r/PrintConfig.cpp:2241
+msgid "Fast tilt"
+msgstr "Rychlý náklon"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:212 src/slic3r/GUI/GUI_Preview.cpp:537
+#: src/libslic3r/GCode/PreviewData.cpp:394
+msgid "Feature type"
+msgstr "Typ"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/GUI_Preview.cpp:225
+msgid "Feature types"
+msgstr "Typy extruzÃ"
+
+#: lib/Slic3r/GUI/Plater.pm:256
+msgid "Fewer"
+msgstr "Méně"
+
+#: src/slic3r/GUI/Plater.cpp:682 src/slic3r/GUI/Tab.cpp:1470
+#: src/slic3r/GUI/Tab.cpp:1471
+msgid "Filament"
+msgstr "Filament"
+
+#: src/slic3r/GUI/Preset.cpp:1275
+msgid "filament"
+msgstr "filament"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:541
+msgid "Filament and Nozzle Diameters"
+msgstr "Průměry filamentu a trysky"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:574
+msgid "Filament Diameter:"
+msgstr "Průměr filamentu:"
+
+#: src/libslic3r/PrintConfig.cpp:619
+msgid "Filament is cooled by being moved back and forth in the cooling tubes. Specify desired number of these moves "
+msgstr "Filament je chlazen pohyby tam a zpÄ›t v chladicà trubiÄce. Zadejte požadovaný poÄet tÄ›chto pohybů"
+
+#: src/libslic3r/PrintConfig.cpp:654
+msgid "Filament load time"
+msgstr "Doba zaváděnà filamentu"
+
+#: src/libslic3r/PrintConfig.cpp:556
+msgid "Filament notes"
+msgstr "Poznámky k filamentu"
+
+#: src/libslic3r/PrintConfig.cpp:1312
+msgid "Filament parking position"
+msgstr "Parkovacà pozice filamentu"
+
+#: src/slic3r/GUI/Tab.cpp:1516
+msgid "Filament properties"
+msgstr "Vlastnosti filamentu"
+
+#: src/slic3r/GUI/Tab.hpp:335
+msgid "Filament Settings"
+msgstr "Nastavenà filamentu"
+
+#: src/libslic3r/PrintConfig.cpp:694
+msgid "Filament type"
+msgstr "Typ filamentu"
+
+#: src/libslic3r/PrintConfig.cpp:669
+msgid "Filament unload time"
+msgstr "Doba vysouvánà filamentu"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:47
+msgid "filaments"
+msgstr "filamenty"
+
+#: lib/Slic3r/GUI/Plater.pm:1555
+msgid "File added to print queue"
+msgstr "Soubor byl přidán do tiskové fronty"
+
+#: src/libslic3r/Zipper.cpp:75
+msgid "file close failed"
+msgstr "zavřenà souboru selhalo"
+
+#: src/libslic3r/Zipper.cpp:69
+msgid "file create failed"
+msgstr "vytvořenà souboru selhalo"
+
+#: src/slic3r/GUI/MainFrame.cpp:642
+msgid "File Not Found"
+msgstr "Soubor nenalezen"
+
+#: src/libslic3r/Zipper.cpp:89
+msgid "file not found"
+msgstr "Soubor nenalezen"
+
+#: src/libslic3r/Zipper.cpp:67
+msgid "file open failed"
+msgstr "otevřenà souboru selhalo"
+
+#: src/libslic3r/Zipper.cpp:73
+msgid "file read failed"
+msgstr "Ätenà souboru se nezdaÅ™ilo"
+
+#: src/libslic3r/Zipper.cpp:77
+msgid "file seek failed"
+msgstr "hledánà souboru selhalo"
+
+#: src/libslic3r/Zipper.cpp:79
+msgid "file stat failed"
+msgstr "soubor stat selhal"
+
+#: src/libslic3r/Zipper.cpp:39
+msgid "file too large"
+msgstr "soubor je pÅ™ÃliÅ¡ velký"
+
+#: src/libslic3r/Zipper.cpp:71
+msgid "file write failed"
+msgstr "zápis souboru se nezdařil"
+
+#: src/libslic3r/PrintConfig.cpp:728
+msgid "Fill angle"
+msgstr "Úhel výplně"
+
+#: src/libslic3r/PrintConfig.cpp:742
+msgid "Fill density"
+msgstr "Hustota výplně"
+
+#: src/libslic3r/PrintConfig.cpp:779
+msgid "Fill pattern"
+msgstr "Vzor výplně"
+
+#: src/libslic3r/PrintConfig.cpp:410
+msgid "Fill pattern for bottom infill. This only affects the bottom external visible layer, and not its adjacent solid shells."
+msgstr "Vzor výplně pro spodnà vrstvy. Ovlivňuje pouze spodnà vnějšà viditelné vrstvy. Neovlivňuje následné plné vrstvy."
+
+#: src/libslic3r/PrintConfig.cpp:781
+msgid "Fill pattern for general low-density infill."
+msgstr "Vzor výplnÄ› pro obecnou výplň s nÃzkou hustotou."
+
+#: src/libslic3r/PrintConfig.cpp:390
+msgid "Fill pattern for top infill. This only affects the top visible layer, and not its adjacent solid shells."
+msgstr "Nastavte vzor pro hornà výplň. Ovlivňuje pouze hornà viditelnou vrstvu a ne jejà sousednà plné vrstvy."
+
+#: xs/src/libslic3r/PrintConfig.cpp:285
+msgid "Fill pattern for top/bottom infill. This only affects the external visible layer, and not its adjacent solid shells."
+msgstr "Vzor výplnÄ› pro vrchnÃ/spodnà vrstvy. Ovlivňuje pouze vnÄ›jšà viditelné vrstvy. Neovlivňuje sousednà plné vrstvy."
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2154
+msgid "Filtering"
+msgstr "FiltrovánÃ"
+
+#: src/slic3r/GUI/BonjourDialog.cpp:225
+msgid "Finished"
+msgstr "DokonÄeno"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:486 src/slic3r/GUI/Tab.cpp:1920
+msgid "Firmware"
+msgstr "Firmware"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:740
+msgid "Firmware flasher"
+msgstr "Aktualizace firmware"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:765
+msgid "Firmware image:"
+msgstr "Soubor s firmware:"
+
+#: src/slic3r/GUI/Tab.cpp:2431
+msgid "Firmware Retraction"
+msgstr "Firmware Retrakce"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:486
+msgid "Firmware Type"
+msgstr "Typ firmware"
+
+#: src/libslic3r/PrintConfig.cpp:812 src/libslic3r/PrintConfig.cpp:821
+#: src/libslic3r/PrintConfig.cpp:829 src/libslic3r/PrintConfig.cpp:862
+msgid "First layer"
+msgstr "Prvnà vrstva"
+
+#: src/libslic3r/PrintConfig.cpp:841
+msgid "First layer height"
+msgstr "Výška prvnà vrstvy"
+
+#: src/libslic3r/Print.cpp:1328
+msgid "First layer height can't be greater than nozzle diameter"
+msgstr "Výška prvnà vrstvy nesmà být většà než průměr trysky"
+
+#: src/libslic3r/PrintConfig.cpp:852
+msgid "First layer speed"
+msgstr "Rychlost prvnà vrstvy"
+
+#: src/slic3r/GUI/PresetHints.cpp:216
+msgid "First layer volumetric"
+msgstr "Volumetrická hodnota prvnà vrstvy"
+
+#: src/libslic3r/Print.cpp:1313
+msgid "first_layer_height"
+msgstr "first_layer_height"
+
+#: lib/Slic3r/GUI/Plater.pm:2311
+msgid "Fix STL through Netfabb"
+msgstr "Opravit STL pomocà služby Netfabb"
+
+#: lib/Slic3r/GUI/Plater.pm:2311
+msgid "Fix the model by sending it to a Netfabb cloud service through Windows 10 API"
+msgstr "Opravit model zaslánÃm do cloudové služby Netfabb pomocà Window 10 API"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1210
+msgid "Fix through the Netfabb"
+msgstr "Opravit pomocà služby Netfabb"
+
+#: src/slic3r/GUI/GUI_App.cpp:685
+msgid "Flash printer &firmware"
+msgstr "Nahrát &firmware tiskárny"
+
+#: xs/src/slic3r/GUI/GUI.cpp:356
+msgid "Flash printer firmware"
+msgstr "Nahrát firmware tiskárny"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:146
+msgid "Flash!"
+msgstr "Nahrát!"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:275
+msgid "Flashing cancelled."
+msgstr "Nahrávánà zrušeno."
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:274
+msgid "Flashing failed. Please see the avrdude log below."
+msgstr "Nahránà selhalo. ProjdÄ›te si prosÃm avrdude log nÞe."
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:192
+msgid "Flashing failed: "
+msgstr "Nahrávánà selhalo:"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:148
+msgid "Flashing in progress. Please do not disconnect the printer!"
+msgstr "ProbÃhá nahrávánà firmware. ProsÃm neodpojujte tiskárnu!"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:273
+msgid "Flashing succeeded!"
+msgstr "Nahrávánà bylo úspěšné!"
+
+#: src/slic3r/GUI/Tab.cpp:1156
+msgid "Flow"
+msgstr "Průtok"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:188
+msgid "For more information please visit our wiki page:"
+msgstr "Pro vÃce informacà prosÃm navÅ¡tivte našà wiki stránku:"
+
+#: src/slic3r/GUI/Tab.cpp:1295
+msgid "For the Wipe Tower to work with the soluble supports, the support layers\nneed to be synchronized with the object layers.\n\nShall I synchronize support layers in order to enable the Wipe Tower?"
+msgstr "U ÄistÃcà věže pokud pracujte s rozpustnými materiály, je tÅ™eba\nsynchronizovat vrstvy podpÄ›r s vrstvami objektů.\n\nMám synchronizovat vrstvy podpÄ›r, aby bylo možné zapnout ÄŒistÃcà věž?"
+
+#: src/libslic3r/Print.cpp:1302
+msgid "For the Wipe Tower to work with the soluble supports, the support layers need to be synchronized with the object layers."
+msgstr "U ÄistÃcà věže pokud pracujte s rozpustnými materiály, je tÅ™eba\nsynchronizovat vrstvy podpÄ›r s vrstvami objektů."
+
+#: src/libslic3r/PrintConfig.cpp:1660
+msgid "Force solid infill for regions having a smaller area than the specified threshold."
+msgstr "Vynucenà plné výplně pro oblasti, které majà menšà plochu, než je stanovená prahová hodnota."
+
+#: src/libslic3r/PrintConfig.cpp:1023
+msgid "Force the generation of solid shells between adjacent materials/volumes. Useful for multi-extruder prints with translucent materials or manual soluble support material."
+msgstr "Vynucenà vytvářenà pevných skoÅ™epin mezi sousednÃmi materiály/objemy. UžiteÄné pro tisk s vÃce extrudery s průsvitnými materiály nebo ruÄnÄ› rozpustným podpůrným materiálem."
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:262
+msgid "From"
+msgstr "Předchozà extruder"
+
+#: src/slic3r/GUI/MainFrame.cpp:525
+msgid "Front"
+msgstr "Zepředu"
+
+#: src/slic3r/GUI/MainFrame.cpp:525
+msgid "Front View"
+msgstr "Pohled zepředu"
+
+#: src/slic3r/GUI/Tab.cpp:2151
+msgid "Full Power"
+msgstr "Plný výkon (režim Normal)"
+
+#: src/slic3r/GUI/MainFrame.cpp:677
+msgid "G-code"
+msgstr "G-code"
+
+#: lib/Slic3r/GUI/Plater.pm:1561
+msgid "G-code file exported to "
+msgstr "Soubor G-code byl exportován do "
+
+#: src/libslic3r/PrintConfig.cpp:888
+msgid "G-code flavor"
+msgstr "Druh G-code"
#: src/libslic3r/PrintConfig.cpp:689
msgid "g/cm³"
msgstr "g/cm³"
-#: src/libslic3r/PrintConfig.cpp:695
-msgid "Filament type"
-msgstr "Typ filamentu"
+#: src/slic3r/GUI/GUI_Preview.cpp:234 src/libslic3r/PrintConfig.cpp:870
+#: src/libslic3r/GCode/PreviewData.cpp:170
+msgid "Gap fill"
+msgstr "Výplň tenkých stěn"
-#: src/libslic3r/PrintConfig.cpp:696
-msgid "The filament material type for use in custom G-codes."
-msgstr ""
+#: src/slic3r/GUI/Preferences.cpp:19 src/slic3r/GUI/Tab.cpp:1812
+#: src/slic3r/GUI/Tab.cpp:2013
+msgid "General"
+msgstr "Obecné"
-#: src/libslic3r/PrintConfig.cpp:712
-msgid "Soluble material"
-msgstr "Rozpustný materiál"
+#: src/libslic3r/PrintConfig.cpp:1242
+msgid "Generate no less than the number of skirt loops required to consume the specified amount of filament on the bottom layer. For multi-extruder machines, this minimum applies to each extruder."
+msgstr "Nevygenerovat ménÄ›, než poÄet obrysových smyÄek, potÅ™ebných ke spotÅ™ebovánà specifikovaného množstvà filamentu na spodnà vrstvu. U strojů s vÃce extrudery platà toto minimum pro každý extruder."
-#: src/libslic3r/PrintConfig.cpp:713
-msgid "Soluble material is most likely used for a soluble support."
-msgstr "Rozpustný materiál je pÅ™evážnÄ› použÃván pro tisk rozpustných podpor."
+#: src/libslic3r/SLA/SLASupportTree.cpp:2155
+msgid "Generate pinheads"
+msgstr "Generovat podpůrné hroty"
-#: src/libslic3r/PrintConfig.cpp:719
-msgid ""
-"Enter your filament cost per kg here. This is only for statistical "
-"information."
-msgstr ""
-"Zde zadejte cenu filamentu za kg. Sloužà pouze pro statistické informace."
+#: src/libslic3r/PrintConfig.cpp:1779
+msgid "Generate support material"
+msgstr "Generovat podpěry"
-#: src/libslic3r/PrintConfig.cpp:720
-msgid "money/kg"
-msgstr "korun/kg"
+#: src/libslic3r/PrintConfig.cpp:1840
+msgid "Generate support material for the specified number of layers counting from bottom, regardless of whether normal support material is enabled or not and regardless of any angle threshold. This is useful for getting more adhesion of objects having a very thin or poor footprint on the build plate."
+msgstr "Vygeneruje podpÄ›ry pro zadaný poÄet vrstev poÄÃtaných od spodnÃho okraje, bez ohledu na to, zda jsou povoleny standartnà podpÄ›ry nebo nikoliv a bez ohledu na jakýkoli prah úhlu. To je užiteÄné pro zÃskánà vÄ›tšà pÅ™ilnavosti pÅ™edmÄ›tů s velmi tenkou nebo Å¡patnou stopou na tiskové podložce."
-#: src/libslic3r/PrintConfig.cpp:729
-msgid "Fill angle"
-msgstr "Úhel výplně"
+#: src/libslic3r/PrintConfig.cpp:2362
+msgid "Generate supports"
+msgstr "Generovat podpěry"
-#: src/libslic3r/PrintConfig.cpp:731
-msgid ""
-"Default base angle for infill orientation. Cross-hatching will be applied to "
-"this. Bridges will be infilled using the best direction Slic3r can detect, "
-"so this setting does not affect them."
-msgstr ""
-"Výchozà úhel pro orientaci výplnÄ›. Bude pro nÄ›j použito křÞové Å¡rafovánÃ. "
-"Mosty budou vyplnÄ›ny nejlepÅ¡Ãm smÄ›rem, který Slic3r dokáže rozpoznat, takže "
-"toto nastavenà je neovlivnÃ."
+#: src/libslic3r/PrintConfig.cpp:2364
+msgid "Generate supports for the models"
+msgstr "Generovat podpěry modelů"
-#: src/libslic3r/PrintConfig.cpp:744
-msgid "Fill density"
-msgstr "Hustota výplně"
+#: src/libslic3r/Print.cpp:1492
+msgid "Generating brim"
+msgstr "Generovánà lÃmce"
-#: src/libslic3r/PrintConfig.cpp:746
-msgid "Density of internal infill, expressed in the range 0% - 100%."
-msgstr "Hustota vnitřnà výplně, vyjádřená v rozmezà 0% až 100%."
+#: src/libslic3r/SLAPrint.cpp:58
+msgid "Generating pad"
+msgstr "Generovánà podložky"
-#: src/libslic3r/PrintConfig.cpp:782
-msgid "Fill pattern"
-msgstr "Vzor výplně"
+#: src/libslic3r/Print.cpp:1484
+msgid "Generating skirt"
+msgstr "Generovánà obrysových smyÄek"
-#: src/libslic3r/PrintConfig.cpp:784
-msgid "Fill pattern for general low-density infill."
-msgstr "Vzor výplnÄ› pro obecnou výplň s nÃzkou hustotou."
+#: src/libslic3r/SLAPrint.cpp:56 src/libslic3r/SLAPrint.cpp:809
+msgid "Generating support points"
+msgstr "Generovánà podpěrných bodů"
-#: src/libslic3r/PrintConfig.cpp:801
+#: src/libslic3r/SLAPrint.cpp:57
+msgid "Generating support tree"
+msgstr "Generovánà podpěr typu strom"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1551
+msgid "Generic"
+msgstr "Obecný"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:144
+msgid "Gizmo cut"
+msgstr "Gizmo řez"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:141
+msgid "Gizmo move"
+msgstr "Gizmo posuv"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:145
+msgid "Gizmo Place face on bed"
+msgstr "Gizmo UmÃstit plochou na podložku"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:143
+msgid "Gizmo rotate"
+msgstr "Gizmo rotace"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:142
+msgid "Gizmo scale"
+msgstr "Gizmo měřÃtko"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:146
+msgid "Gizmo SLA support points"
+msgstr "Gizmo SLA podpěrné body"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:571
+msgid "Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average."
+msgstr "Je zapotÅ™ebà velká pÅ™esnost, proto použijte posuvné měřÃtko (Å¡upleru) a proveÄte nÄ›kolik měřenà po délce filamentu, poté vypoÄÃtejte průmÄ›r."
+
+#: src/libslic3r/PrintConfig.cpp:797
msgid "Grid"
-msgstr ""
+msgstr "MřÞka"
-#: src/libslic3r/PrintConfig.cpp:802
-msgid "Triangles"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:803
-msgid "Stars"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:804
-msgid "Cubic"
-msgstr ""
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1846
+msgid "Group manipulation"
+msgstr "Manipulace se skupinou"
#: src/libslic3r/PrintConfig.cpp:805
-msgid "Line"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:807 src/libslic3r/PrintConfig.cpp:2023
-msgid "Honeycomb"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:808
-msgid "3D Honeycomb"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:809
msgid "Gyroid"
-msgstr ""
+msgstr "Gyroid"
-#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:826
-#: src/libslic3r/PrintConfig.cpp:835 src/libslic3r/PrintConfig.cpp:871
-msgid "First layer"
-msgstr "Prvnà vrstva"
+#: src/slic3r/GUI/Tab.cpp:2775
+msgid "has the following unsaved changes:"
+msgstr "má neuložené následujÃcà zmÄ›ny:"
-#: src/libslic3r/PrintConfig.cpp:817
-msgid ""
-"This is the acceleration your printer will use for first layer. Set zero to "
-"disable acceleration control for first layer."
-msgstr ""
-"Toto je zrychlenÃ, které vaÅ¡e tiskárna použije pro prvnà vrstvu. Nastavte "
-"nulu pro vypnutà řÃzenà zrychlenà pro prvnà vrstvu."
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:838
+msgid "Head diameter: "
+msgstr "Průměr hrotu:"
-#: src/libslic3r/PrintConfig.cpp:827
-msgid ""
-"Heated build plate temperature for the first layer. Set this to zero to "
-"disable bed temperature control commands in the output."
-msgstr ""
-"Teplota vyhÅ™Ãvané tiskové podložky pro prvnà vrstvu. NastavenÃm tuto hodnoty "
-"na nulu vypnete pÅ™Ãkazy pro Å™Ãzenà teploty ve vrstvÄ› ve výstupu."
+#: src/slic3r/GUI/Tab.cpp:3483
+msgid "Head penetration should not be greater than the head width."
+msgstr "Průnik podpěry do modelu by neměl být většà než je tloušťka hrotu podpěry."
-#: src/libslic3r/PrintConfig.cpp:837
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for first "
-"layer. You can use this to force fatter extrudates for better adhesion. If "
-"expressed as percentage (for example 120%) it will be computed over first "
-"layer height. If set to zero, it will use the default extrusion width."
-msgstr ""
-"NastavenÃm kladné hodnoty zvolÃte manuálnà šÃÅ™ku vytlaÄovánà pro prvnà "
-"vrstvu. Toto můžete použÃt k vytlaÄovánà tlustšà extruze pro lepšà "
-"pÅ™ilnavost. Pokud je vyjádÅ™eno jako procenty (napÅ™Ãklad 120%), bude "
-"vypoÄteno z výšky prvnà vrstvy. Pokud je nastavena na nulu, použije se "
-"výchozà šÃÅ™ka vytlaÄovánÃ."
+#: src/libslic3r/PrintConfig.cpp:822
+msgid "Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output."
+msgstr "Teplota vyhÅ™Ãvané tiskové podložky pro prvnà vrstvu. NastavenÃm tuto hodnoty na nulu vypnete pÅ™Ãkazy pro Å™Ãzenà teploty ve vrstvÄ› ve výstupu."
-#: src/libslic3r/PrintConfig.cpp:848
-msgid "First layer height"
-msgstr "Výška prvnà vrstvy"
-
-#: src/libslic3r/PrintConfig.cpp:850
-msgid ""
-"When printing with very low layer heights, you might still want to print a "
-"thicker bottom layer to improve adhesion and tolerance for non perfect build "
-"plates. This can be expressed as an absolute value or as a percentage (for "
-"example: 150%) over the default layer height."
-msgstr ""
-"PÅ™i tisku s velmi nÃzkými výškami vrstev můžete stále vytisknout tlustšà "
-"spodnà vrstvu pro zlepšenà přilnavosti a toleranci pro nedokonale "
-"zkalibrovanou tiskovou podložku. Může být vyjádřeno jako absolutnà hodnota "
-"nebo jako procento (napÅ™Ãklad: 150%) z výchozà výšky vrstvy."
-
-#: src/libslic3r/PrintConfig.cpp:854 src/libslic3r/PrintConfig.cpp:1003
-#: src/libslic3r/PrintConfig.cpp:1884
-msgid "mm or %"
-msgstr "mm nebo %"
-
-#: src/libslic3r/PrintConfig.cpp:860
-msgid "First layer speed"
-msgstr "Rychlost prvnà vrstvy"
-
-#: src/libslic3r/PrintConfig.cpp:861
-msgid ""
-"If expressed as absolute value in mm/s, this speed will be applied to all "
-"the print moves of the first layer, regardless of their type. If expressed "
-"as a percentage (for example: 40%) it will scale the default speeds."
-msgstr ""
-"Pokud je vyjádřena jako absolutnà hodnota v mm / s, bude tato rychlost "
-"použita pro všechny pohyby tisku prvnà vrstvy bez ohledu na jejich typ. "
-"Pokud je hodnota vyjádÅ™ena procenty (napÅ™Ãklad: 40%), zmÄ›nà v závisloti na "
-"výchozÃch rychlostech."
-
-#: src/libslic3r/PrintConfig.cpp:872
-msgid ""
-"Extruder temperature for first layer. If you want to control temperature "
-"manually during print, set this to zero to disable temperature control "
-"commands in the output file."
-msgstr ""
-"Teplota extruderu pro prvnà vrstvu. Chcete-li bÄ›hem tisku ruÄnÄ› ovládat "
-"teplotu, nastavte tuto hodnotu na nulu, aby se ve výstupnÃm souboru zakázaly "
-"pÅ™Ãkazy pro Å™Ãzenà teploty."
-
-#: src/libslic3r/PrintConfig.cpp:882
-msgid ""
-"Speed for filling small gaps using short zigzag moves. Keep this reasonably "
-"low to avoid too much shaking and resonance issues. Set zero to disable gaps "
-"filling."
-msgstr ""
-"Rychlost plněnà malých mezer pomocà krátkých cikcak pohybů. Udržujte tuto "
-"hodnotu pomÄ›rnÄ› nÃzkou, aby nedoÅ¡lo k pÅ™ÃliÅ¡ným otÅ™esům a problémům s "
-"rezonancÃ. Nastavte nulu pro vypnutà vyplnÄ›nà mezery."
-
-#: src/libslic3r/PrintConfig.cpp:890
-msgid "Verbose G-code"
-msgstr "Komentáře do G-code"
-
-#: src/libslic3r/PrintConfig.cpp:891
-msgid ""
-"Enable this to get a commented G-code file, with each line explained by a "
-"descriptive text. If you print from SD card, the additional weight of the "
-"file could make your firmware slow down."
-msgstr ""
-"Aktivacà zÃskáte komentovaný soubor G-code, pÅ™iÄemž každý řádek je doplnÄ›n "
-"popisným textem. Pokud tisknete z SD karty, dodateÄné informace v souboru "
-"můžou zpomalit firmware."
-
-#: src/libslic3r/PrintConfig.cpp:899
-msgid "G-code flavor"
-msgstr "Druh G-code"
-
-#: src/libslic3r/PrintConfig.cpp:900
-msgid ""
-"Some G/M-code commands, including temperature control and others, are not "
-"universal. Set this option to your printer's firmware to get a compatible "
-"output. The \"No extrusion\" flavor prevents Slic3r from exporting any "
-"extrusion value at all."
-msgstr ""
-"NÄ›které pÅ™Ãkazy G/M code, vÄetnÄ› Å™Ãzenà teploty a jiné, nejsou univerzálnÃ. "
-"Vyberte typ firmwaru který použÃvá vaÅ¡e tiskárna pro dosaženà kompatibilnÃho "
-"výstupu. PÅ™Ãkazy typu “No extrusion†zabraňujà Slic3ru zcela exportovat "
-"jakoukoliv hodnotu extruze."
-
-#: src/libslic3r/PrintConfig.cpp:924
-msgid "No extrusion"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:929
-msgid "High extruder current on filament swap"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:930
-msgid ""
-"It may be beneficial to increase the extruder motor current during the "
-"filament exchange sequence to allow for rapid ramming feed rates and to "
-"overcome resistance when loading a filament with an ugly shaped tip."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:939
-msgid ""
-"This is the acceleration your printer will use for infill. Set zero to "
-"disable acceleration control for infill."
-msgstr ""
-"Toto je zrychlenÃ, které vaÅ¡e tiskárna použije pro výplň. Nastavte nulu, "
-"chcete-li vypnout Å™Ãzenà zrychlenà pro výplň."
-
-#: src/libslic3r/PrintConfig.cpp:948
-msgid "Combine infill every"
-msgstr "Kombinovat výplň každou"
-
-#: src/libslic3r/PrintConfig.cpp:950
-msgid ""
-"This feature allows to combine infill and speed up your print by extruding "
-"thicker infill layers while preserving thin perimeters, thus accuracy."
-msgstr ""
-"Tato funkce umožňuje kombinovat výplň a urychlit tisk pomocà extruzà "
-"silnÄ›jÅ¡Ãch výplňových vrstev pÅ™i zachovánà tenkých obvodů, a tÃm i pÅ™esnosti."
-
-#: src/libslic3r/PrintConfig.cpp:954
-msgid "Combine infill every n layers"
-msgstr "Kombinovat výplň každou n vrstvu"
-
-#: src/libslic3r/PrintConfig.cpp:960
-msgid "Infill extruder"
-msgstr "Extruder pro výplň"
-
-#: src/libslic3r/PrintConfig.cpp:962
-msgid "The extruder to use when printing infill."
-msgstr "Extruder který se použije pro tisk výplnÃ."
-
-#: src/libslic3r/PrintConfig.cpp:971
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill. If "
-"left zero, default extrusion width will be used if set, otherwise 1.125 x "
-"nozzle diameter will be used. You may want to use fatter extrudates to speed "
-"up the infill and make your parts stronger. If expressed as percentage (for "
-"example 90%) it will be computed over layer height."
-msgstr ""
-"NastavenÃm kladné hodnoty upravÃte manuálnÄ› Å¡ÃÅ™ku extruze pro výplň. Pokud "
-"je ponechána nula, použije se standardnà šÃÅ™ka extruze, pokud je nastavena, "
-"jinak se použije průmÄ›r trysky 1,125 x. Je možné, že budete chtÃt použÃt "
-"tlustšà extruze, pro zrychlenà výplně a zpevněnà vašich výtisků. Pokud je "
-"vyjádÅ™eno jako procenty (napÅ™Ãklad 90%), bude vypoÄteno z výšky vrstvy."
-
-#: src/libslic3r/PrintConfig.cpp:981
-msgid "Infill before perimeters"
-msgstr "Tisknout výplň před tiskem perimetrů"
-
-#: src/libslic3r/PrintConfig.cpp:982
-msgid ""
-"This option will switch the print order of perimeters and infill, making the "
-"latter first."
-msgstr "Tato volba obrátà poÅ™adà tisku obvodů a výplnÃ."
-
-#: src/libslic3r/PrintConfig.cpp:988
-msgid "Only infill where needed"
-msgstr "Výplň pouze kde je potřeba"
-
-#: src/libslic3r/PrintConfig.cpp:990
-msgid ""
-"This option will limit infill to the areas actually needed for supporting "
-"ceilings (it will act as internal support material). If enabled, slows down "
-"the G-code generation due to the multiple checks involved."
-msgstr ""
-"Tato volba omezuje výplň na plochy skuteÄnÄ› potÅ™ebné pro podporu stropů "
-"(bude se chovat jako vnitřnà podpůrný materiál). Je-li tato volba zapnuta, "
-"zpomaluje generovánà G-code kvůli několikanásobným kontrolám."
-
-#: src/libslic3r/PrintConfig.cpp:998
-msgid "Infill/perimeters overlap"
-msgstr "Přesah pro výplň/perimetry"
-
-#: src/libslic3r/PrintConfig.cpp:1000
-msgid ""
-"This setting applies an additional overlap between infill and perimeters for "
-"better bonding. Theoretically this shouldn't be needed, but backlash might "
-"cause gaps. If expressed as percentage (example: 15%) it is calculated over "
-"perimeter extrusion width."
-msgstr ""
-"Toto nastavenà uplatňuje dodateÄné pÅ™ekrytà mezi výplnà a obvodem pro lepšà "
-"spojenÃ. Teoreticky by to nemÄ›lo být potÅ™eba, ale reakce by mohla způsobit "
-"mezery. Pokud je vyjádÅ™eno procenty (napÅ™Ãklad: 15%), vypoÄÃtá se z Å¡ÃÅ™ky "
-"extruze perimetrů."
-
-#: src/libslic3r/PrintConfig.cpp:1012
-msgid "Speed for printing the internal fill. Set to zero for auto."
-msgstr "Rychlost tisku vnitřnà výplně. Pro automatické nastavenà zadejte nulu."
-
-#: src/libslic3r/PrintConfig.cpp:1020
-msgid "Inherits profile"
-msgstr "Zdědà profil"
-
-#: src/libslic3r/PrintConfig.cpp:1021
-msgid "Name of the profile, from which this profile inherits."
-msgstr "Název profilu, ze kterého tento profil zdÄ›dÃ."
-
-#: src/libslic3r/PrintConfig.cpp:1032
-msgid "Interface shells"
-msgstr "Mezilehlé stěny"
-
-#: src/libslic3r/PrintConfig.cpp:1033
-msgid ""
-"Force the generation of solid shells between adjacent materials/volumes. "
-"Useful for multi-extruder prints with translucent materials or manual "
-"soluble support material."
-msgstr ""
-"Vynucenà vytvářenà pevných skoÅ™epin mezi sousednÃmi materiály/objemy. "
-"UžiteÄné pro tisk s vÃce extrudery s průsvitnými materiály nebo ruÄnÄ› "
-"rozpustným podpůrným materiálem."
-
-#: src/libslic3r/PrintConfig.cpp:1043
-msgid ""
-"This custom code is inserted at every layer change, right after the Z move "
-"and before the extruder moves to the first layer point. Note that you can "
-"use placeholder variables for all Slic3r settings as well as [layer_num] and "
-"[layer_z]."
-msgstr ""
-"Tento vlastnà kód je vložen při každé změně vrstvy, hned po pohybu Z a "
-"pÅ™edtÃm, než se extruder pÅ™esune na prvnà bod vrstvy. Můžete pÅ™idávat "
-"zástupné proměnné pro veškeré nastavenà Slic3ru, stejně tak jako [layer_num] "
-"a [layer_z]."
-
-#: src/libslic3r/PrintConfig.cpp:1054
-msgid "Supports remaining times"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1055
-msgid ""
-"Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute "
-"intervals into the G-code to let the firmware show accurate remaining time. "
-"As of now only the Prusa i3 MK3 firmware recognizes M73. Also the i3 MK3 "
-"firmware supports M73 Qxx Sxx for the silent mode."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1063
-msgid "Supports silent mode"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1064
-msgid "Set silent mode for the G-code flavor"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1087
-msgid "Maximum feedrate %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1089
-msgid "Maximum feedrate of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1097
-msgid "Maximum acceleration %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1099
-msgid "Maximum acceleration of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1107
-msgid "Maximum jerk %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1109
-msgid "Maximum jerk of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122
-msgid "Minimum feedrate when extruding"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133
-msgid "Minimum travel feedrate"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144
-msgid "Maximum acceleration when extruding"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1153 src/libslic3r/PrintConfig.cpp:1155
-msgid "Maximum acceleration when retracting"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1173
-msgid "Max"
-msgstr "Maximum"
-
-#: src/libslic3r/PrintConfig.cpp:1164
-msgid "This setting represents the maximum speed of your fan."
-msgstr "Toto nastavenà vyjadřuje maximálnà rychlost ventilátoru."
-
-#: src/libslic3r/PrintConfig.cpp:1174
-#, no-c-format
-msgid ""
-"This is the highest printable layer height for this extruder, used to cap "
-"the variable layer height and support layer height. Maximum recommended "
-"layer height is 75% of the extrusion width to achieve reasonable inter-layer "
-"adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter."
-msgstr ""
-"Toto je nejvÄ›tšà možná výška vrstvy pro tento extruder, který se použÃvá k "
-"zakrytà výšky promÄ›nné vrstvy a výšky podpůrné vrstvy. Maximálnà doporuÄená "
-"výška vrstvy Äinà 75% Å¡ÃÅ™ky vytlaÄovánÃ, aby se dosáhlo pÅ™iměřené "
-"přilnavosti mezi vrstvami. Pokud je nastavena hodnota 0, je výška vrstvy "
-"omezena na 75% průměru trysky."
-
-#: src/libslic3r/PrintConfig.cpp:1185
-msgid "Max print speed"
-msgstr "Maximálnà rychlost tisku"
-
-#: src/libslic3r/PrintConfig.cpp:1186
-msgid ""
-"When setting other speed settings to 0 Slic3r will autocalculate the optimal "
-"speed in order to keep constant extruder pressure. This experimental setting "
-"is used to set the highest print speed you want to allow."
-msgstr ""
-"Pokud jsou všechna ostatnà nastavenà rychlosti na hodnotě nula, Slic3r "
-"automaticky vypoÄÃtá optimálnà rychlost pro udrženà konstantnÃho tlaku v "
-"extruderu. Toto experimentálnà nastavenà sloužà k nastavenà nejvyššà "
-"rychlosti tisku, kterou chcete povolit."
-
-#: src/libslic3r/PrintConfig.cpp:1197
-msgid ""
-"This experimental setting is used to set the maximum volumetric speed your "
-"extruder supports."
-msgstr ""
-"Toto experimentálnà nastavenà sloužà k nastavenà maximálnà objemové "
-"rychlosti, kterou váš extruder podporuje."
-
-#: src/libslic3r/PrintConfig.cpp:1206
-msgid "Max volumetric slope positive"
-msgstr "Maximálnà pozitivnà objemový sklon"
-
-#: src/libslic3r/PrintConfig.cpp:1207 src/libslic3r/PrintConfig.cpp:1219
-msgid ""
-"This experimental setting is used to limit the speed of change in extrusion "
-"rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate "
-"of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/"
-"s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds."
-msgstr ""
-"Toto experimentálnà nastavenà se použÃvá k omezenà rychlosti zmÄ›ny "
-"objemového průtoku. Hodnota 1,8mm³/s² zajišťuje, že změna objemového průtoku "
-"z 1,8 mm³/s (Å¡ÃÅ™ka extruze 0,45 mm, výška extruze 0,2 mm, rychlost posuvu 20 "
-"mm/s) na 5,4 mm³/s (rychlost posuvu 60 mm/s) potrvá nejméně 2 sekundy."
-
-#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1223
-msgid "mm³/s²"
-msgstr "mm³/s²"
-
-#: src/libslic3r/PrintConfig.cpp:1218
-msgid "Max volumetric slope negative"
-msgstr "Maximálnà negativnà objemový sklon"
-
-#: src/libslic3r/PrintConfig.cpp:1230 src/libslic3r/PrintConfig.cpp:1240
-msgid "Min"
-msgstr "Minimum"
-
-#: src/libslic3r/PrintConfig.cpp:1231
-msgid "This setting represents the minimum PWM your fan needs to work."
-msgstr ""
-"Toto nastavenà představuje minimálnà hodnotu PWM, kterou ventilátor "
-"potřebuje, aby pracoval."
-
-#: src/libslic3r/PrintConfig.cpp:1241
-msgid ""
-"This is the lowest printable layer height for this extruder and limits the "
-"resolution for variable layer height. Typical values are between 0.05 mm and "
-"0.1 mm."
-msgstr ""
-"Nejmenšà tisknutelná výška vrstvy pro tento extruder. Omezuje rozlišenà pro "
-"výšku proměnné vrstvy. Typické hodnoty jsou mezi 0,05 mm a 0,1 mm."
-
-#: src/libslic3r/PrintConfig.cpp:1250
-msgid "Min print speed"
-msgstr "Minimálnà rychlost tisku"
-
-#: src/libslic3r/PrintConfig.cpp:1251
-msgid "Slic3r will not scale speed down below this speed."
-msgstr "Slic3r nebude měnit rychlost pod tuto rychlost."
-
-#: src/libslic3r/PrintConfig.cpp:1259
-msgid "Minimal filament extrusion length"
-msgstr "Minimálnà délka extruze filamentu"
-
-#: src/libslic3r/PrintConfig.cpp:1260
-msgid ""
-"Generate no less than the number of skirt loops required to consume the "
-"specified amount of filament on the bottom layer. For multi-extruder "
-"machines, this minimum applies to each extruder."
-msgstr ""
-"Nevygenerovat ménÄ›, než poÄet obrysových smyÄek, potÅ™ebných ke spotÅ™ebovánà "
-"specifikovaného množstvà filamentu na spodnà vrstvu. U strojů s vÃce "
-"extrudery platà toto minimum pro každý extruder."
-
-#: src/libslic3r/PrintConfig.cpp:1270
-msgid "Configuration notes"
-msgstr "KonfiguraÄnà poznámky"
-
-#: src/libslic3r/PrintConfig.cpp:1271
-msgid ""
-"You can put here your personal notes. This text will be added to the G-code "
-"header comments."
-msgstr ""
-"Zde můžete zadat své osobnà poznámky. Tento text bude přidán do komentáře "
-"záhlavà G code."
-
-#: src/libslic3r/PrintConfig.cpp:1281
-msgid "Nozzle diameter"
-msgstr "Průměr trysky"
-
-#: src/libslic3r/PrintConfig.cpp:1282
-msgid ""
-"This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)"
-msgstr "PrůmÄ›r trysky extruderu (napÅ™Ãklad: 0.5, 0.35 atd.)"
-
-#: src/libslic3r/PrintConfig.cpp:1288
-msgid "Host Type"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1289
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field must contain "
-"the kind of the host."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1301
-msgid "API Key / Password"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1302
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the API Key or the password required for authentication."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1317
-msgid "Hostname, IP or URL"
-msgstr "Název hosta, IP nebo URL"
-
-#: src/libslic3r/PrintConfig.cpp:1318
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the hostname, IP address or URL of the printer host instance."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1325
-msgid "Only retract when crossing perimeters"
-msgstr "Provést retrakci pouze pÅ™i pÅ™ejÞdÄ›nà perimetrů"
-
-#: src/libslic3r/PrintConfig.cpp:1326
-msgid ""
-"Disables retraction when the travel path does not exceed the upper layer's "
-"perimeters (and thus any ooze will be probably invisible)."
-msgstr ""
-"Vypne retrakce, pokud dráha nepÅ™ekroÄà perimetr vrchnà vrstvy (a proto bude "
-"pravděpodobně jakékoliv odkapávánà neviditelné)."
-
-#: src/libslic3r/PrintConfig.cpp:1334
-msgid ""
-"This option will drop the temperature of the inactive extruders to prevent "
-"oozing. It will enable a tall skirt automatically and move extruders outside "
-"such skirt when changing temperatures."
-msgstr ""
-"Tato volba snÞà teplotu neaktivnÃch extruderů, aby u nich nedoÅ¡lo k "
-"vytékánÃ."
-
-#: src/libslic3r/PrintConfig.cpp:1342
-msgid "Output filename format"
-msgstr "Formát názvu výstupnÃho souboru"
-
-#: src/libslic3r/PrintConfig.cpp:1343
-msgid ""
-"You can use all configuration options as variables inside this template. For "
-"example: [layer_height], [fill_density] etc. You can also use [timestamp], "
-"[year], [month], [day], [hour], [minute], [second], [version], "
-"[input_filename], [input_filename_base]."
-msgstr ""
-"V této Å¡ablonÄ› můžete použÃt vÅ¡echny možnosti konfigurace jako promÄ›nné. "
-"Můžete napÅ™Ãklad použÃt: [layer_height], [fill_density] etc. Také můžete "
-"použÃt [timestamp], [year], [month], [day], [hour], [minute], [second], "
-"[version], [input_filename], [input_filename_base]."
-
-#: src/libslic3r/PrintConfig.cpp:1353
-msgid "Detect bridging perimeters"
-msgstr "Detekovat perimetry pÅ™emostÄ›nÃ"
-
-#: src/libslic3r/PrintConfig.cpp:1355
-msgid ""
-"Experimental option to adjust flow for overhangs (bridge flow will be used), "
-"to apply bridge speed to them and enable fan."
-msgstr ""
-"Experimentálnà volba pro nastavenà průtoku pro přesahy (použije se průtok "
-"jako u mostů), aplikuje se na ně rychlost mostu a spustà se ventilátor."
-
-#: src/libslic3r/PrintConfig.cpp:1362
-msgid "Filament parking position"
-msgstr "Parkovacà pozice filamentu"
-
-#: src/libslic3r/PrintConfig.cpp:1363
-msgid ""
-"Distance of the extruder tip from the position where the filament is parked "
-"when unloaded. This should match the value in printer firmware. "
-msgstr ""
-"Vzdálenost Å¡piÄky extruderu od mÃsta, kde je zaparkován filament pÅ™i "
-"vytaženÃ. MÄ›la by se shodovat s hodnotou ve firmware tiskárny. "
-
-#: src/libslic3r/PrintConfig.cpp:1372
-msgid "Extra loading distance"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1373
-msgid ""
-"When set to zero, the distance the filament is moved from parking position "
-"during load is exactly the same as it was moved back during unload. When "
-"positive, it is loaded further, if negative, the loading move is shorter "
-"than unloading. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1382 src/libslic3r/PrintConfig.cpp:1402
-#: src/libslic3r/PrintConfig.cpp:1415 src/libslic3r/PrintConfig.cpp:1425
-msgid "Perimeters"
-msgstr "Perimetry"
-
-#: src/libslic3r/PrintConfig.cpp:1383
-msgid ""
-"This is the acceleration your printer will use for perimeters. A high value "
-"like 9000 usually gives good results if your hardware is up to the job. Set "
-"zero to disable acceleration control for perimeters."
-msgstr ""
-"Jedná se o akceleraci, kterou vaše tiskárna použije pro perimetry. Vysoká "
-"hodnota, jako je 9000, obvykle dává dobré výsledky, pokud je váš hardware v "
-"pořádku. Nastavte nulu pro vypnutà řÃzenà zrychlenà pro perimetry."
-
-#: src/libslic3r/PrintConfig.cpp:1392
-msgid "Perimeter extruder"
-msgstr "Extruder pro perimetry"
-
-#: src/libslic3r/PrintConfig.cpp:1394
-msgid ""
-"The extruder to use when printing perimeters and brim. First extruder is 1."
-msgstr ""
-"Extruder, který se použÃvá pÅ™i tisku perimetrů a lÃmce. Prvnà extruder je 1."
-
-#: src/libslic3r/PrintConfig.cpp:1404
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for perimeters. "
-"You may want to use thinner extrudates to get more accurate surfaces. If "
-"left zero, default extrusion width will be used if set, otherwise 1.125 x "
-"nozzle diameter will be used. If expressed as percentage (for example 200%) "
-"it will be computed over layer height."
-msgstr ""
-"NastavenÃm na kladnou hodnotu nastavÃte manuálnÄ› Å¡ÃÅ™ku vytlaÄovánà "
-"perimetrů. Chcete-li zÃskat pÅ™esnÄ›jšà povrchy, můžete použÃt tenÄà extruze. "
-"Pokud je ponechána nula, použije se standardnà šÃÅ™ka extruze, pokud je "
-"nastavena, jinak se použije průměr trysky 1,125 x. Pokud je vyjádřeno "
-"procenty (napÅ™Ãklad 200%), vypoÄte se z výšky vrstvy."
-
-#: src/libslic3r/PrintConfig.cpp:1417
-msgid ""
-"Speed for perimeters (contours, aka vertical shells). Set to zero for auto."
-msgstr ""
-"Rychlost pro perimetry (obrysy, neboli svislé stěny). Zadejte nulu pro "
-"automatické nastavenÃ."
-
-#: src/libslic3r/PrintConfig.cpp:1427
-msgid ""
-"This option sets the number of perimeters to generate for each layer. Note "
-"that Slic3r may increase this number automatically when it detects sloping "
-"surfaces which benefit from a higher number of perimeters if the Extra "
-"Perimeters option is enabled."
-msgstr ""
-"Tato volba nastavuje poÄet perimetrů, které je tÅ™eba vygenerovat pro každou "
-"vrstvu. Slic3r může toto ÄÃslo automaticky zvýšit, pokud detekuje Å¡ikmé "
-"plochy, které se tisknou lépe s vyššÃm poÄtem obvodů, pokud je zapnuta "
-"možnost Extra perimetry."
-
-#: src/libslic3r/PrintConfig.cpp:1431
-msgid "(minimum)"
-msgstr "(minimálně)"
-
-#: src/libslic3r/PrintConfig.cpp:1439
-msgid ""
-"If you want to process the output G-code through custom scripts, just list "
-"their absolute paths here. Separate multiple scripts with a semicolon. "
-"Scripts will be passed the absolute path to the G-code file as the first "
-"argument, and they can access the Slic3r config settings by reading "
-"environment variables."
-msgstr ""
-"Pokud chcete zpracovat výstupnà G-code pomocà vlastnÃch skriptů, staÄà zde "
-"uvést jejich absolutnà cesty. OddÄ›lte vÃce skriptů stÅ™ednÃkem. Skripty "
-"předajà absolutnà cestu k souboru G-code jako prvnà argument a mohou "
-"pÅ™istupovat k nastavenà konfigurace Slic3ru ÄtenÃm promÄ›nných prostÅ™edÃ."
-
-#: src/libslic3r/PrintConfig.cpp:1452
-msgid "Printer type"
-msgstr "Typ tiskárny"
-
-#: src/libslic3r/PrintConfig.cpp:1453
-msgid "Type of the printer."
-msgstr "Typ tiskárny."
-
-#: src/libslic3r/PrintConfig.cpp:1457
-msgid "Printer notes"
-msgstr "Poznámky o tiskárně"
-
-#: src/libslic3r/PrintConfig.cpp:1458
-msgid "You can put your notes regarding the printer here."
-msgstr "Zde můžete uvést poznámky týkajÃcà se tiskárny."
-
-#: src/libslic3r/PrintConfig.cpp:1467
-msgid "Printer vendor"
-msgstr "Prodejce tiskárny"
-
-#: src/libslic3r/PrintConfig.cpp:1468
-msgid "Name of the printer vendor."
-msgstr "Název prodejce tiskárny."
-
-#: src/libslic3r/PrintConfig.cpp:1472
-msgid "Printer variant"
-msgstr "Varianta tiskárny"
-
-#: src/libslic3r/PrintConfig.cpp:1473
-msgid ""
-"Name of the printer variant. For example, the printer variants may be "
-"differentiated by a nozzle diameter."
-msgstr ""
-"Název varianty tiskárny. Varianty tiskárny mohou být napÅ™Ãklad rozliÅ¡eny "
-"podle průměru trysky."
-
-#: src/libslic3r/PrintConfig.cpp:1483
-msgid "Raft layers"
-msgstr "Vrstev raftu"
-
-#: src/libslic3r/PrintConfig.cpp:1485
-msgid ""
-"The object will be raised by this number of layers, and support material "
-"will be generated under it."
-msgstr ""
-"Objekt se zvýšà tÃmto poÄtem vrstev a pod nÃm bude vytvoÅ™en podpůrný "
-"materiál."
-
-#: src/libslic3r/PrintConfig.cpp:1494
-msgid "Resolution"
-msgstr "RozliÅ¡enÃ"
-
-#: src/libslic3r/PrintConfig.cpp:1495
-msgid ""
-"Minimum detail resolution, used to simplify the input file for speeding up "
-"the slicing job and reducing memory usage. High-resolution models often "
-"carry more detail than printers can render. Set to zero to disable any "
-"simplification and use full resolution from input."
-msgstr ""
-"Minimálnà rozliÅ¡enà detailů, které se použÃvajà pro zjednoduÅ¡enà vstupnÃho "
-"souboru pro urychlenà slicovacà úlohy a snÞenà využità pamÄ›ti. Modely s "
-"vysokým rozliÅ¡enÃm Äasto obsahujà vÃce detailů než tiskárny dokážou "
-"vykreslit. Nastavte na nulu, chcete-li zakázat jakékoli zjednodušenà a "
-"použÃt vstup v plném rozliÅ¡enÃ."
-
-#: src/libslic3r/PrintConfig.cpp:1506
-msgid "Minimum travel after retraction"
-msgstr "Minimálnà rychloposun po retrakci"
-
-#: src/libslic3r/PrintConfig.cpp:1507
-msgid ""
-"Retraction is not triggered when travel moves are shorter than this length."
-msgstr ""
-"Retrakce nenà spuštěna, pokud jsou rychloposuny pojezdu kratšà než tato "
-"délka."
-
-#: src/libslic3r/PrintConfig.cpp:1514
-msgid "Retract amount before wipe"
-msgstr "Délka retrakce pÅ™ed oÄiÅ¡tÄ›nÃm"
-
-#: src/libslic3r/PrintConfig.cpp:1515
-msgid ""
-"With bowden extruders, it may be wise to do some amount of quick retract "
-"before doing the wipe movement."
-msgstr ""
-"U bowdenových extrudérů může být vhodné provést rychlé retrakce než se "
-"spustà oÄiÅ¡tÄ›nÃ."
-
-#: src/libslic3r/PrintConfig.cpp:1523
-msgid "Retract on layer change"
-msgstr "Retrakce při změně vrstvy"
-
-#: src/libslic3r/PrintConfig.cpp:1524
-msgid "This flag enforces a retraction whenever a Z move is done."
-msgstr "Tato možnost vyvolá retrakci, kdykoli je proveden pohyb Z."
-
-#: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:1539
-msgid "Length"
-msgstr "Vzdálenost"
-
-#: src/libslic3r/PrintConfig.cpp:1531
-msgid "Retraction Length"
-msgstr "Vzdálenost retrakce"
-
-#: src/libslic3r/PrintConfig.cpp:1532
-msgid ""
-"When retraction is triggered, filament is pulled back by the specified "
-"amount (the length is measured on raw filament, before it enters the "
-"extruder)."
-msgstr ""
-"Při spuštěnà retrakce se filament zatáhne zpět o zadané množstvà (délka se "
-"měřà na surovém filamentu, než vstoupà do extruderu)."
-
-#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1544
-msgid "mm (zero to disable)"
-msgstr "mm (nula pro vypnutÃ)"
-
-#: src/libslic3r/PrintConfig.cpp:1540
-msgid "Retraction Length (Toolchange)"
-msgstr "Vzdálenost retrakce (při změně nástroje)"
-
-#: src/libslic3r/PrintConfig.cpp:1541
-msgid ""
-"When retraction is triggered before changing tool, filament is pulled back "
-"by the specified amount (the length is measured on raw filament, before it "
-"enters the extruder)."
-msgstr ""
-"Při výměně nástroje se spustà retrakce a filament se zatáhne zpět o zadané "
-"množstvà (délka se měřà na surovém filamentu, než vstoupà do extruderu)."
-
-#: src/libslic3r/PrintConfig.cpp:1550
-msgid "Lift Z"
-msgstr "Zvednout Z"
-
-#: src/libslic3r/PrintConfig.cpp:1551
-msgid ""
-"If you set this to a positive value, Z is quickly raised every time a "
-"retraction is triggered. When using multiple extruders, only the setting for "
-"the first extruder will be considered."
-msgstr ""
-"ZadánÃm kladné hodnoty, se Z rychle pÅ™izvedne pÅ™i každém vyvolánà retrakce. "
-"PÅ™i použità vÃce extruderů bude použito pouze nastavenà pro prvnà extruder."
-
-#: src/libslic3r/PrintConfig.cpp:1559
-msgid "Above Z"
-msgstr "Nad Z"
-
-#: src/libslic3r/PrintConfig.cpp:1560
-msgid "Only lift Z above"
-msgstr "Zvednout Z pouze nad"
-
-#: src/libslic3r/PrintConfig.cpp:1561
-msgid ""
-"If you set this to a positive value, Z lift will only take place above the "
-"specified absolute Z. You can tune this setting for skipping lift on the "
-"first layers."
-msgstr ""
-"ZadánÃm kladné hodnoty se zdvih Z uskuteÄnà pouze nad zadanou absolutnà "
-"hodnotou Z. Toto nastavenà můžete zvolit pro pÅ™eskoÄenà pÅ™izvednutà u "
-"prvnÃch vrstev."
-
-#: src/libslic3r/PrintConfig.cpp:1569
-msgid "Below Z"
-msgstr "Pod Z"
-
-#: src/libslic3r/PrintConfig.cpp:1570
-msgid "Only lift Z below"
-msgstr "Zvednout Z pouze pod"
-
-#: src/libslic3r/PrintConfig.cpp:1571
-msgid ""
-"If you set this to a positive value, Z lift will only take place below the "
-"specified absolute Z. You can tune this setting for limiting lift to the "
-"first layers."
-msgstr ""
-"ZadánÃm kladné hodnoty se zdvih Z uskuteÄnà pouze pod zadanou absolutnà "
-"hodnotou Z. Toto nastavenà můžete zvolit pro pÅ™eskoÄenà pÅ™izvednutà u "
-"prvnÃch vrstev."
-
-#: src/libslic3r/PrintConfig.cpp:1580 src/libslic3r/PrintConfig.cpp:1589
-msgid "Extra length on restart"
-msgstr "Extra vzdálenost při návratu"
-
-#: src/libslic3r/PrintConfig.cpp:1581
-msgid ""
-"When the retraction is compensated after the travel move, the extruder will "
-"push this additional amount of filament. This setting is rarely needed."
-msgstr ""
-"Když je retrakce kompenzována po rychloposunu, extruder vytlaÄuje toto dalšà "
-"množstvà filamentu. Toto nastavenà je zÅ™Ãdkakdy potÅ™eba."
-
-#: src/libslic3r/PrintConfig.cpp:1590
-msgid ""
-"When the retraction is compensated after changing tool, the extruder will "
-"push this additional amount of filament."
-msgstr ""
-"Když je retrakce kompenzována po zmÄ›nÄ› nástroje, extruder vytlaÄuje toto "
-"dalšà množstvà filamentu."
-
-#: src/libslic3r/PrintConfig.cpp:1598 src/libslic3r/PrintConfig.cpp:1599
-msgid "Retraction Speed"
-msgstr "Rychlost retrakce"
-
-#: src/libslic3r/PrintConfig.cpp:1600
-msgid "The speed for retractions (it only applies to the extruder motor)."
-msgstr "Rychlost retrakce (toto nastavenà platà pouze pro motor extruderu)."
-
-#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1608
-msgid "Deretraction Speed"
-msgstr "Rychlost deretrakce"
-
-#: src/libslic3r/PrintConfig.cpp:1609
-msgid ""
-"The speed for loading of a filament into extruder after retraction (it only "
-"applies to the extruder motor). If left to zero, the retraction speed is "
-"used."
-msgstr ""
-"Rychlost vtlaÄenà filamentu do extruderu po retrakci (vztahuje se pouze na "
-"motor extruderu). Pokud je ponecháno na nulu, použije se rychlost retrakce."
-
-#: src/libslic3r/PrintConfig.cpp:1617
-msgid "Seam position"
-msgstr "Pozice švu"
-
-#: src/libslic3r/PrintConfig.cpp:1619
-msgid "Position of perimeters starting points."
-msgstr "Pozice zaÄátku perimetrů."
-
-#: src/libslic3r/PrintConfig.cpp:1626
-msgid "Random"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1627
-msgid "Nearest"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1628
-msgid "Aligned"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1629
-msgid "Rear"
-msgstr "Zezadu"
-
-#: src/libslic3r/PrintConfig.cpp:1636
-msgid "Direction"
-msgstr "Směr"
-
-#: src/libslic3r/PrintConfig.cpp:1638
-msgid "Preferred direction of the seam"
-msgstr "Preferovaný směr švu"
-
-#: src/libslic3r/PrintConfig.cpp:1639
-msgid "Seam preferred direction"
-msgstr "Preferovaný směr švu"
-
-#: src/libslic3r/PrintConfig.cpp:1647
-msgid "Jitter"
-msgstr "Rozkmit (Jitter)"
-
-#: src/libslic3r/PrintConfig.cpp:1649
-msgid "Seam preferred direction jitter"
-msgstr "Seam preferred direction jitter"
-
-#: src/libslic3r/PrintConfig.cpp:1650
-msgid "Preferred direction of the seam - jitter"
-msgstr "Preferovaný směr švu - rozkmit"
-
-#: src/libslic3r/PrintConfig.cpp:1661
-msgid "USB/serial port for printer connection."
-msgstr "USB/sériový port pro připojenà tiskárny."
-
-#: src/libslic3r/PrintConfig.cpp:1669
-msgid "Serial port speed"
-msgstr "Rychlost sériového portu"
-
-#: src/libslic3r/PrintConfig.cpp:1670
-msgid "Speed (baud) of USB/serial port for printer connection."
-msgstr "Rychlost (baud) USB/sériového portu pro připojenà tiskárny."
-
-#: src/libslic3r/PrintConfig.cpp:1679
-msgid "Distance from object"
-msgstr "Vzdálenost od objektu"
-
-#: src/libslic3r/PrintConfig.cpp:1680
-msgid ""
-"Distance between skirt and object(s). Set this to zero to attach the skirt "
-"to the object(s) and get a brim for better adhesion."
-msgstr ""
-"Vzdálenost mezi obrysem a objektem (objekty). Nastavte tuto hodnotu na nulu, "
-"pro slouÄenà obrysu s pÅ™edmÄ›tem (pÅ™edmÄ›ty) a tvorbu lÃmce pro dosaženà lepšà "
-"přilnavosti."
-
-#: src/libslic3r/PrintConfig.cpp:1688
-msgid "Skirt height"
-msgstr "Výška obrysu"
-
-#: src/libslic3r/PrintConfig.cpp:1689
-msgid ""
-"Height of skirt expressed in layers. Set this to a tall value to use skirt "
-"as a shield against drafts."
-msgstr ""
-"Výška obrysu vyjádřená ve vrstvách. Nastavte tuto hodnotu vysokou, pro "
-"použità obrysu jako stÃnÄ›nà proti průvanu."
-
-#: src/libslic3r/PrintConfig.cpp:1697
-msgid "Loops (minimum)"
-msgstr "SmyÄek (minimálnÄ›)"
-
-#: src/libslic3r/PrintConfig.cpp:1698
-msgid "Skirt Loops"
-msgstr "PoÄet obrysových smyÄek"
-
-#: src/libslic3r/PrintConfig.cpp:1699
-msgid ""
-"Number of loops for the skirt. If the Minimum Extrusion Length option is "
-"set, the number of loops might be greater than the one configured here. Set "
-"this to zero to disable skirt completely."
-msgstr ""
-"PoÄet obrysových smyÄek. Je-li nastavena možnost Minimálnà délka extruze, "
-"poÄet obrysových smyÄek může být vÄ›tšà než poÄet zde nakonfigurovaných. "
-"Nastavte tuto hodnotu na nulu, pro úplné deaktivovánÃ."
-
-#: src/libslic3r/PrintConfig.cpp:1708
-msgid "Slow down if layer print time is below"
-msgstr "Zpomalit tisk pokud je doba tisku kratšà než"
-
-#: src/libslic3r/PrintConfig.cpp:1709
-msgid ""
-"If layer print time is estimated below this number of seconds, print moves "
-"speed will be scaled down to extend duration to this value."
-msgstr ""
-"Pokud je doba tisku vrstvy odhadnuta kratšà než tento poÄet sekund, rychlost "
-"tisku se zpomalÃ, aby se prodloužila doba tisku této vrstvy."
-
-#: src/libslic3r/PrintConfig.cpp:1720
-msgid "Small perimeters"
-msgstr "Malé perimetry"
-
-#: src/libslic3r/PrintConfig.cpp:1722
-msgid ""
-"This separate setting will affect the speed of perimeters having radius <= "
-"6.5mm (usually holes). If expressed as percentage (for example: 80%) it will "
-"be calculated on the perimeters speed setting above. Set to zero for auto."
-msgstr ""
-"Toto oddělené nastavenà ovlivnà rychlost perimetrů o poloměru <= 6,5 mm "
-"(obvykle dÃry). Pokud je vyjádÅ™eno jako procentnà podÃl (napÅ™Ãklad: 80%), "
-"vypoÄte se z výše uvedeného nastavenà rychlosti perimetrů. Pro automatické "
-"nastavenà zadejte nulu."
-
-#: src/libslic3r/PrintConfig.cpp:1732
-msgid "Solid infill threshold area"
-msgstr "Prahová hodnota plochy pro plnou výplň"
-
-#: src/libslic3r/PrintConfig.cpp:1734
-msgid ""
-"Force solid infill for regions having a smaller area than the specified "
-"threshold."
-msgstr ""
-"Vynucenà plné výplně pro oblasti, které majà menšà plochu, než je stanovená "
-"prahová hodnota."
-
-#: src/libslic3r/PrintConfig.cpp:1735
-msgid "mm²"
-msgstr "mm²"
-
-#: src/libslic3r/PrintConfig.cpp:1742
-msgid "Solid infill extruder"
-msgstr "Extruder pro plnou výplň"
-
-#: src/libslic3r/PrintConfig.cpp:1744
-msgid "The extruder to use when printing solid infill."
-msgstr "Extruder který bude použit pÅ™i tisku plných výplnÃ."
-
-#: src/libslic3r/PrintConfig.cpp:1751
-msgid "Solid infill every"
-msgstr "Plná výplň každou"
-
-#: src/libslic3r/PrintConfig.cpp:1753
-msgid ""
-"This feature allows to force a solid layer every given number of layers. "
-"Zero to disable. You can set this to any value (for example 9999); Slic3r "
-"will automatically choose the maximum possible number of layers to combine "
-"according to nozzle diameter and layer height."
-msgstr ""
-"Tato funkce umožňuje vynucenà plné vrstvy za každý daný poÄet vrstev. Pro "
-"vypnutà nastavte nulu. Můžete nastavit libovolnou hodnotu (napÅ™Ãklad 9999); "
-"Slic3r automaticky zvolà maximálnà poÄet vrstev, které se budou kombinovat "
-"podle průměru trysky a výšky vrstvy."
-
-#: src/libslic3r/PrintConfig.cpp:1766
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill for "
-"solid surfaces. If left zero, default extrusion width will be used if set, "
-"otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
-"(for example 90%) it will be computed over layer height."
-msgstr ""
-"Zadejte kladnou hodnotu, chcete-li nastavit manuálnÄ› Å¡ÃÅ™ku extruze pro výplň "
-"plných povrchů. Pokud je ponechána nula, použije se standardnà šÃÅ™ka "
-"extruze, pokud je nastavena, jinak se použije průměr trysky 1,125 x. Pokud "
-"je vyjádÅ™ena procenty (napÅ™Ãklad 90%), bude vypoÄtena z výšky vrstvy."
-
-#: src/libslic3r/PrintConfig.cpp:1777
-msgid ""
-"Speed for printing solid regions (top/bottom/internal horizontal shells). "
-"This can be expressed as a percentage (for example: 80%) over the default "
-"infill speed above. Set to zero for auto."
-msgstr ""
-"Rychlost tisku plných oblastà (vrchnà / spodnà / vnitřnà vodorovné stěny). "
-"Může být vyjádÅ™eno procenty (napÅ™Ãklad: 80%) oproti výchozà rychlosti "
-"vyplnÄ›nÃ. Pro automatické nastavenà zadejte nulu."
-
-#: src/libslic3r/PrintConfig.cpp:1789
-msgid "Number of solid layers to generate on top and bottom surfaces."
-msgstr "PoÄet plných vstev generovaných na vrchnÃch a spodnÃch povrÅ¡Ãch."
-
-#: src/libslic3r/PrintConfig.cpp:1796
-msgid "Spiral vase"
-msgstr "Spirálová váza"
-
-#: src/libslic3r/PrintConfig.cpp:1797
-msgid ""
-"This feature will raise Z gradually while printing a single-walled object in "
-"order to remove any visible seam. This option requires a single perimeter, "
-"no infill, no top solid layers and no support material. You can still set "
-"any number of bottom solid layers as well as skirt/brim loops. It won't work "
-"when printing more than an object."
-msgstr ""
-"Tato funkce zvýšà postupně Z při tisku jednovrstvého objektu, aby se "
-"odstranil jakýkoli viditelný šev. Tato volba vyžaduje jediný obvod, žádnou "
-"výplň, žádné vrchnà plné vrstvy a žádný podpůrný materiál. Můžete stále "
-"nastavit libovolný poÄet spodnÃch plných vrstev, stejnÄ› jako obrysové "
-"smyÄky / lÃmec. PÅ™i tisku vÃce než jednoho objektu nebude toto nastavenà "
-"fungovat."
-
-#: src/libslic3r/PrintConfig.cpp:1806
-msgid "Temperature variation"
-msgstr "Temperature variation"
-
-#: src/libslic3r/PrintConfig.cpp:1807
-msgid ""
-"Temperature difference to be applied when an extruder is not active. Enables "
-"a full-height \"sacrificial\" skirt on which the nozzles are periodically "
-"wiped."
-msgstr ""
-"Teplotnà rozdÃl, který se použije v pÅ™ÃpadÄ›, že extruder nenà aktivnÃ. "
-"Umožňuje “obÄ›tnÆobrysy v plné výšce objektu, na kterém jsou trysky "
-"periodicky oÄiÅ¡tÄ›ny."
-
-#: src/libslic3r/PrintConfig.cpp:1818
-msgid ""
-"This start procedure is inserted at the beginning, after bed has reached the "
-"target temperature and extruder just started heating, and before extruder "
-"has finished heating. If Slic3r detects M104 or M190 in your custom codes, "
-"such commands will not be prepended automatically so you're free to "
-"customize the order of heating commands and other custom actions. Note that "
-"you can use placeholder variables for all Slic3r settings, so you can put a "
-"\"M109 S[first_layer_temperature]\" command wherever you want."
-msgstr ""
-"Tento spouÅ¡tÄ›cà postup je vložen na zaÄátku, poté, co vyhÅ™Ãvaná tisková "
-"podložka dosáhla cÃlové teploty a extruder se právÄ› zaÄal ohÅ™Ãvat a pÅ™edtÃm, "
-"než dosáhl cÃlové teploty extruder . Pokud Slic3r detekuje M104 nebo M190 ve "
-"vaÅ¡ich vlastnÃch kódech, takové pÅ™Ãkazy nebudou automaticky pÅ™edkládány, "
-"takže máte možnost upravit poÅ™adà pÅ™Ãkazů pro vytápÄ›nà a dalšà vlastnà akce. "
-"Pro vÅ¡echny nastavenà Slic3ru můžete použÃt zástupné promÄ›nné, takže můžete "
-"zadat pÅ™Ãkaz “M109 S [first_layer_temperature]†kdekoli chcete."
-
-#: src/libslic3r/PrintConfig.cpp:1834
-msgid ""
-"This start procedure is inserted at the beginning, after any printer start "
-"gcode. This is used to override settings for a specific filament. If Slic3r "
-"detects M104, M109, M140 or M190 in your custom codes, such commands will "
-"not be prepended automatically so you're free to customize the order of "
-"heating commands and other custom actions. Note that you can use placeholder "
-"variables for all Slic3r settings, so you can put a \"M109 "
-"S[first_layer_temperature]\" command wherever you want. If you have multiple "
-"extruders, the gcode is processed in extruder order."
-msgstr ""
-"Tento postup spuÅ¡tÄ›nà je vložen na zaÄátku, po každém spuÅ¡tÄ›nà G-code "
-"tiskárny. Toto sloužà k přepsánà nastavenà pro konkrétnà filament. Pokud "
-"Slic3r detekuje M104, M109, M140 nebo M190 ve vaÅ¡ich vlastnÃch kódech, "
-"takové pÅ™Ãkazy nebudou automaticky pÅ™edkládány, takže máte možnost "
-"pÅ™izpůsobit poÅ™adà pÅ™Ãkazů k ohÅ™evu a dalšà vlastnà akce. Pro vÅ¡echny "
-"nastavenà Slic3ru můžete použÃt zástupné promÄ›nné, takže můžete zadat pÅ™Ãkaz "
-"“M109 S [first_layer_temperature]†kdekoli chcete. Pokud máte vÃce "
-"extruderů, G-code se zpracovává v pořadà extruderů."
-
-#: src/libslic3r/PrintConfig.cpp:1850
-msgid "Single Extruder Multi Material"
-msgstr "MultiMaterial tisk s jednÃm extrudérem"
-
-#: src/libslic3r/PrintConfig.cpp:1851
-msgid "The printer multiplexes filaments into a single hot end."
-msgstr "Tiskárna pÅ™epÃná nÄ›kolik filamentů v jednou hot endu."
-
-#: src/libslic3r/PrintConfig.cpp:1857
-msgid "Prime all printing extruders"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1858
-msgid ""
-"If enabled, all printing extruders will be primed at the front edge of the "
-"print bed at the start of the print."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1864
-msgid "Generate support material"
-msgstr "Generovat podpory"
-
-#: src/libslic3r/PrintConfig.cpp:1866
-msgid "Enable support material generation."
-msgstr "Zapne generovánà podpor."
-
-#: src/libslic3r/PrintConfig.cpp:1871
-msgid "Auto generated supports"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1873
-msgid ""
-"If checked, supports will be generated automatically based on the overhang "
-"threshold value. If unchecked, supports will be generated inside the "
-"\"Support Enforcer\" volumes only."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1880
-msgid "XY separation between an object and its support"
-msgstr "XY vzdálenost mezi objektem a podporami"
-
-#: src/libslic3r/PrintConfig.cpp:1882
-msgid ""
-"XY separation between an object and its support. If expressed as percentage "
-"(for example 50%), it will be calculated over external perimeter width."
-msgstr ""
-"XY vzdálenost mezi objektem a podporami. Pokud je vyjádřeno procenty "
-"(napÅ™Ãklad 50%), bude vypoÄÃtána z Å¡ÃÅ™ky perimetru."
-
-#: src/libslic3r/PrintConfig.cpp:1893
-msgid "Pattern angle"
-msgstr "Úhel vzoru"
-
-#: src/libslic3r/PrintConfig.cpp:1895
-msgid ""
-"Use this setting to rotate the support material pattern on the horizontal "
-"plane."
-msgstr "Toto nastavenà použijte pro horizontálnà otoÄenà vzoru."
-
-#: src/libslic3r/PrintConfig.cpp:1906
-msgid ""
-"Only create support if it lies on a build plate. Don't create support on a "
-"print."
-msgstr ""
-"Podpory vytvářet pouze v pÅ™ÃpadÄ›, že ležà na tiskové podložce. Nevytvářà "
-"podpory na výtisky."
-
-#: src/libslic3r/PrintConfig.cpp:1913
-msgid "Contact Z distance"
-msgstr "Mezera mezi podporami a objektem v ose Z"
-
-#: src/libslic3r/PrintConfig.cpp:1915
-msgid ""
-"The vertical distance between object and support material interface. Setting "
-"this to 0 will also prevent Slic3r from using bridge flow and speed for the "
-"first object layer."
-msgstr ""
-"Vertikálnà vzdálenost mezi objektem a podporami. NastavenÃm tohoto parametru "
-"na hodnotu 0 se také zabránà tomu, aby Slic3r použil parametry průtoku a "
-"rychlosti pro mosty při tisku prvnà vrstvy objektu."
-
-#: src/libslic3r/PrintConfig.cpp:1923
-msgid "soluble"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1924
-msgid "detachable"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1929
-msgid "Enforce support for the first"
-msgstr "ZesÃlit podpory pro prvnÃch"
-
-#: src/libslic3r/PrintConfig.cpp:1931
-msgid ""
-"Generate support material for the specified number of layers counting from "
-"bottom, regardless of whether normal support material is enabled or not and "
-"regardless of any angle threshold. This is useful for getting more adhesion "
-"of objects having a very thin or poor footprint on the build plate."
-msgstr ""
-"Vygeneruje podpory pro zadaný poÄet vrstev poÄÃtaných od spodnÃho okraje, "
-"bez ohledu na to, zda jsou povoleny standartnà podpory nebo nikoliv a bez "
-"ohledu na jakýkoli prah úhlu. To je užiteÄné pro zÃskánà vÄ›tšà pÅ™ilnavosti "
-"předmětů s velmi tenkou nebo špatnou stopou na tiskové podložce."
-
-#: src/libslic3r/PrintConfig.cpp:1937
-msgid "Enforce support for the first n layers"
-msgstr "Vynucenà podpor pro prvnÃch n vrstev"
-
-#: src/libslic3r/PrintConfig.cpp:1943
-msgid "Support material/raft/skirt extruder"
-msgstr "Extruder pro podpory/raft/obrys"
-
-#: src/libslic3r/PrintConfig.cpp:1945
-msgid ""
-"The extruder to use when printing support material, raft and skirt (1+, 0 to "
-"use the current extruder to minimize tool changes)."
-msgstr ""
-"Extruder, který se použÃvá pÅ™i tisku podpor, raftu a obrysu (1+, 0 pro "
-"použità aktuálnÃho extruderu pro co nejménÄ› zmÄ›n nástroje)."
-
-#: src/libslic3r/PrintConfig.cpp:1955
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for support "
-"material. If left zero, default extrusion width will be used if set, "
-"otherwise nozzle diameter will be used. If expressed as percentage (for "
-"example 90%) it will be computed over layer height."
-msgstr ""
-"Zadejte kladnou hodnotu, chcete-li nastavit manuálnÄ› Å¡ÃÅ™ku extruze pro "
-"podpory. Pokud je ponechána nula, použije se výchozà šÃÅ™ka extruze, pokud je "
-"nastavena, jinak se použije průměr trysky. Pokud je vyjádřena procenty "
-"(napÅ™Ãklad 90%), bude vypoÄtena z výšky vrstvy."
-
-#: src/libslic3r/PrintConfig.cpp:1964
-msgid "Interface loops"
-msgstr "Kontaktnà smyÄky"
-
-#: src/libslic3r/PrintConfig.cpp:1966
-msgid ""
-"Cover the top contact layer of the supports with loops. Disabled by default."
-msgstr ""
-"Zakrýt smyÄkami hornà kontaktnà vrstvu podpor. Ve výchozÃm nastavenà "
-"zakázáno."
-
-#: src/libslic3r/PrintConfig.cpp:1972
-msgid "Support material/raft interface extruder"
-msgstr "Extruder pro kontaktnà podpory/raft"
-
-#: src/libslic3r/PrintConfig.cpp:1974
-msgid ""
-"The extruder to use when printing support material interface (1+, 0 to use "
-"the current extruder to minimize tool changes). This affects raft too."
-msgstr ""
-"Extruder, který se použije pÅ™i tisku kontaktnÃch vrstev podpor (1+, 0 pro "
-"použità aktuálnÃho extruderu, aby se minimalizovaly zmÄ›ny nástroje). To "
-"ovlivňuje i raft."
-
-#: src/libslic3r/PrintConfig.cpp:1982
-msgid "Interface layers"
-msgstr "Kontaktnà vrstvy"
-
-#: src/libslic3r/PrintConfig.cpp:1984
-msgid ""
-"Number of interface layers to insert between the object(s) and support "
-"material."
-msgstr "PoÄet interface vrstev vložených mezi objekt (objekty) a podpory."
-
-#: src/libslic3r/PrintConfig.cpp:1992
-msgid "Interface pattern spacing"
-msgstr "RozteÄ kontaktnÃch vrstev"
-
-#: src/libslic3r/PrintConfig.cpp:1994
-msgid "Spacing between interface lines. Set zero to get a solid interface."
-msgstr ""
-"RozteÄ linià kontaktnÃch vrstev. Nastavte nulu pro zÃskánà plných "
-"kontaktnÃch vrstev."
-
-#: src/libslic3r/PrintConfig.cpp:2004
-msgid ""
-"Speed for printing support material interface layers. If expressed as "
-"percentage (for example 50%) it will be calculated over support material "
-"speed."
-msgstr ""
-"Rychlost tisku podpůrných interface vrstev. Pokud je vyjádřen procentnà "
-"podÃl (napÅ™Ãklad 50%), vypoÄÃtá se podle rychlosti tisku podpor."
-
-#: src/libslic3r/PrintConfig.cpp:2013
-msgid "Pattern"
-msgstr "Vzor"
-
-#: src/libslic3r/PrintConfig.cpp:2015
-msgid "Pattern used to generate support material."
-msgstr "Vzor použitý pro generovánà podpor."
-
-#: src/libslic3r/PrintConfig.cpp:2022
-msgid "Rectilinear grid"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2028
-msgid "Pattern spacing"
-msgstr "RozteÄ podpor"
-
-#: src/libslic3r/PrintConfig.cpp:2030
-msgid "Spacing between support material lines."
-msgstr "RozteÄ linià podpor."
-
-#: src/libslic3r/PrintConfig.cpp:2040
-msgid "Speed for printing support material."
-msgstr "Rychlost tisku podpor."
-
-#: src/libslic3r/PrintConfig.cpp:2047
-msgid "Synchronize with object layers"
-msgstr "Synchronizovat s vrstvami objektu"
-
-#: src/libslic3r/PrintConfig.cpp:2049
-msgid ""
-"Synchronize support layers with the object print layers. This is useful with "
-"multi-material printers, where the extruder switch is expensive."
-msgstr ""
-"Synchronizovánà vrstev podpor s vrstvami objektu. Toto je velmi užiteÄné u "
-"multi-materiálových tiskáren, kde je pÅ™epÃnánà extruderů drahé."
-
-#: src/libslic3r/PrintConfig.cpp:2056
-msgid "Overhang threshold"
-msgstr "Meznà úhel převisu"
-
-#: src/libslic3r/PrintConfig.cpp:2058
-msgid ""
-"Support material will not be generated for overhangs whose slope angle (90° "
-"= vertical) is above the given threshold. In other words, this value "
-"represent the most horizontal slope (measured from the horizontal plane) "
-"that you can print without support material. Set to zero for automatic "
-"detection (recommended)."
-msgstr ""
-"Podpory nebudou vytvořeny pro převisy, jejichž úhel sklonu (90° = "
-"vertikálnÃ) je nad danou prahovou hodnotou. Jinými slovy, tato hodnota "
-"představuje největšà horizontálnà sklon (měřený od horizontálnà roviny), "
-"který můžete tisknout bez podpůrného materiálu. Nastavte na nulu pro "
-"automatickou detekci (doporuÄeno)."
-
-#: src/libslic3r/PrintConfig.cpp:2071
-msgid "With sheath around the support"
-msgstr "S pouzdrem okolo podpor"
-
-#: src/libslic3r/PrintConfig.cpp:2073
-msgid ""
-"Add a sheath (a single perimeter line) around the base support. This makes "
-"the support more reliable, but also more difficult to remove."
-msgstr ""
-"PÅ™idá pouzdro (jednu obvodovou Äáru) kolem podpor. DÃky tomu je podpora "
-"spolehlivÄ›jÅ¡Ã, ale také obtÞnÄ›jšà na odstranÄ›nÃ."
-
-#: src/libslic3r/PrintConfig.cpp:2081
-msgid ""
-"Extruder temperature for layers after the first one. Set this to zero to "
-"disable temperature control commands in the output."
-msgstr ""
-"Teplota extruderu pro následujÃcà vrstvy po vrstvÄ› prvnÃ. Nastavte tuto "
-"hodnotu na nulu, abyste zakázali pÅ™Ãkazy pro Å™Ãzenà teploty na výstupu."
-
-#: src/libslic3r/PrintConfig.cpp:2084
-msgid "Temperature"
-msgstr "Teplota"
-
-#: src/libslic3r/PrintConfig.cpp:2090
-msgid "Detect thin walls"
-msgstr "Detekovat tenké zdi"
-
-#: src/libslic3r/PrintConfig.cpp:2092
-msgid ""
-"Detect single-width walls (parts where two extrusions don't fit and we need "
-"to collapse them into a single trace)."
-msgstr ""
-"Detekuje stÄ›ny o tlošťce jedné Äáry (Äásti, kam se dvÄ› Äáry nemohou vejÃt a "
-"je potÅ™eba slouÄit je do Äáry jedné)."
-
-#: src/libslic3r/PrintConfig.cpp:2099
-msgid "Threads"
-msgstr "Vlákna"
-
-#: src/libslic3r/PrintConfig.cpp:2100
-msgid ""
-"Threads are used to parallelize long-running tasks. Optimal threads number "
-"is slightly above the number of available cores/processors."
-msgstr ""
-"Vlákna jsou použÃvána pro paralelizaci ÄasovÄ› nároÄnÄ›jÅ¡Ãch úloh. Optimálnà "
-"poÄet vláken je mÃrnÄ› nad poÄtem dostupných jader/procesorů."
-
-#: src/libslic3r/PrintConfig.cpp:2112
-msgid ""
-"This custom code is inserted right before every extruder change. Note that "
-"you can use placeholder variables for all Slic3r settings as well as "
-"[previous_extruder] and [next_extruder]."
-msgstr ""
-"Tento vlastnà kód je vložen těsně před každou změnou extruderu. Můžete "
-"použÃt zástupné promÄ›nné pro vÅ¡echna nastavenà Slic3ru, stejnÄ› jako "
-"[previous_extruder] a [next_extruder]."
-
-#: src/libslic3r/PrintConfig.cpp:2125
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill for "
-"top surfaces. You may want to use thinner extrudates to fill all narrow "
-"regions and get a smoother finish. If left zero, default extrusion width "
-"will be used if set, otherwise nozzle diameter will be used. If expressed as "
-"percentage (for example 90%) it will be computed over layer height."
-msgstr ""
-"Zadejte kladnou hodnotu, chcete-li nastavit manuálnÄ› Å¡ÃÅ™ku extruze pro výplň "
-"vrchnÃch ploch. Možná budete chtÃt použÃt tenÄà extruzi, abyste vyplnili "
-"vÅ¡echny úzké oblasti a zÃskali hladšà povrch. Pokud je ponechána nula, "
-"použije se výchozà šÃÅ™ka extruze, pokud je nastavena, jinak se použije "
-"průmÄ›r trysky. Pokud je vyjádÅ™ena procenty (napÅ™Ãklad 90%), bude vypoÄtena z "
-"výšky vrstvy."
-
-#: src/libslic3r/PrintConfig.cpp:2137
-msgid ""
-"Speed for printing top solid layers (it only applies to the uppermost "
-"external layers and not to their internal solid layers). You may want to "
-"slow down this to get a nicer surface finish. This can be expressed as a "
-"percentage (for example: 80%) over the solid infill speed above. Set to zero "
-"for auto."
-msgstr ""
-"Rychlost tisku vrchnÃch plných vrstev (vztahuje se pouze na nejvyššà hornà "
-"vrstvy a nikoli na jejich vnitřnà plné vrstvy). Rychlost lze zpomalit, "
-"abyste zÃskali hezÄà povrchovou úpravu. Může být vyjádÅ™ena procenty "
-"(napÅ™Ãklad: 80%) z rychlosti plné výplnÄ› materiálu výše. Pro automatické "
-"nastavenà zadejte nulu."
-
-#: src/libslic3r/PrintConfig.cpp:2149
-msgctxt "Layers"
-msgid "Top"
-msgstr "HornÃch"
-
-#: src/libslic3r/PrintConfig.cpp:2151
-msgid "Number of solid layers to generate on top surfaces."
-msgstr "PoÄet vrchnÃch generovaných plných vrstev."
-
-#: src/libslic3r/PrintConfig.cpp:2153
-msgid "Top solid layers"
-msgstr "VrchnÃch plných vrstev"
-
-#: src/libslic3r/PrintConfig.cpp:2159
-msgid "Speed for travel moves (jumps between distant extrusion points)."
-msgstr "Rychlost posunů (přejezdy mezi body extruze)."
-
-#: src/libslic3r/PrintConfig.cpp:2168
-msgid "Use firmware retraction"
-msgstr "PoužÃt retrakce z firmwaru"
-
-#: src/libslic3r/PrintConfig.cpp:2169
-msgid ""
-"This experimental setting uses G10 and G11 commands to have the firmware "
-"handle the retraction. This is only supported in recent Marlin."
-msgstr ""
-"Toto experimentálnà nastavenà použÃvá pÅ™Ãkazy G10 a G11, aby si firmware "
-"poradil s retrakcÃ. Toto je podporováno pouze v poslednÃch verzÃch firmwaru "
-"Marlin."
-
-#: src/libslic3r/PrintConfig.cpp:2176
-msgid "Use relative E distances"
-msgstr "PoužÃt relativnà E vzdálenosti"
-
-#: src/libslic3r/PrintConfig.cpp:2177
-msgid ""
-"If your firmware requires relative E values, check this, otherwise leave it "
-"unchecked. Most firmwares use absolute values."
-msgstr ""
-"Pokud váš firmware vyžaduje relativnà hodnoty E, zaškrtněte toto, jinak "
-"nechte nezaÅ¡krtnuté. VÄ›tÅ¡ina firmwarů použÃvá absolutnà hodnoty."
-
-#: src/libslic3r/PrintConfig.cpp:2184
-msgid "Use volumetric E"
-msgstr "PoužÃt volumetrickou hodnotu E"
-
-#: src/libslic3r/PrintConfig.cpp:2185
-msgid ""
-"This experimental setting uses outputs the E values in cubic millimeters "
-"instead of linear millimeters. If your firmware doesn't already know "
-"filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] "
-"T0' in your start G-code in order to turn volumetric mode on and use the "
-"filament diameter associated to the filament selected in Slic3r. This is "
-"only supported in recent Marlin."
-msgstr ""
-"Toto experimentálnà nastavenà použÃvá výstupnà hodnoty E v kubických "
-"milimetrech mÃsto lineárnÃch milimetrů. Pokud firmware dosud nezná průmÄ›r "
-"(průmÄ›ry) filamentu, můžete v poÄáteÄnÃm G-code zadat pÅ™Ãkazy jako “M200 D "
-"[filament_diameter_0] T0â€, pro se zapnutà volumetrického režimu a použità "
-"průměru filamentu přidruženého k vybranému filamentu ve Slic3ru. Toto je "
-"podporováno pouze v poslednÃch verzÃch firmwaru Marlin."
-
-#: src/libslic3r/PrintConfig.cpp:2196
-msgid "Enable variable layer height feature"
-msgstr "Zapnout variabilnà výšku vrstev"
-
-#: src/libslic3r/PrintConfig.cpp:2197
-msgid ""
-"Some printers or printer setups may have difficulties printing with a "
-"variable layer height. Enabled by default."
-msgstr ""
-"NÄ›které tiskárny nebo nastavenà tiskárny mohou mÃt potÞe s tiskem s "
-"promÄ›nnou výškou vrstvy. Ve výchozÃm nastavenà je zapnuto."
-
-#: src/libslic3r/PrintConfig.cpp:2204
-msgid "Wipe while retracting"
-msgstr "OÄistit pÅ™i retrakci"
-
-#: src/libslic3r/PrintConfig.cpp:2205
-msgid ""
-"This flag will move the nozzle while retracting to minimize the possible "
-"blob on leaky extruders."
-msgstr ""
-"Toto nastavenà pÅ™emÃstà trysku pÅ™i retrakci, aby se minimalizovalo možné "
-"vytékánà materiálu."
-
-#: src/libslic3r/PrintConfig.cpp:2213
-msgid ""
-"Multi material printers may need to prime or purge extruders on tool "
-"changes. Extrude the excess material into the wipe tower."
-msgstr ""
-"Multimateriálové tiskárny mohou potřebovat, aby při výměně nástrojů "
-"vyÄistili extrudery. VytlaÄà pÅ™ebyteÄný materiál do ÄistÃcà věže."
-
-#: src/libslic3r/PrintConfig.cpp:2220
-msgid "Purging volumes - load/unload volumes"
-msgstr "Objemy ÄiÅ¡tÄ›nà - zavádÄ›né / vyjmuté objemy"
-
-#: src/libslic3r/PrintConfig.cpp:2221
-msgid ""
-"This vector saves required volumes to change from/to each tool used on the "
-"wipe tower. These values are used to simplify creation of the full purging "
-"volumes below. "
-msgstr ""
-"Tento vektor ukládá potÅ™ebné objemy pro zmÄ›nu z/na každý extruder použÃvaný "
-"na ÄistÃcà veži. Tyto hodnoty jsou použity pro zjednoduÅ¡enà vytvoÅ™enà "
-"celkových objemů ÄiÅ¡tÄ›nà nÞe. "
-
-#: src/libslic3r/PrintConfig.cpp:2228
-msgid "Purging volumes - matrix"
-msgstr "Objemy ÄiÅ¡tÄ›nà - matice"
-
-#: src/libslic3r/PrintConfig.cpp:2229
-msgid ""
-"This matrix describes volumes (in cubic milimetres) required to purge the "
-"new filament on the wipe tower for any given pair of tools. "
-msgstr ""
-"Tato matice popisuje objemy (v kubických milimetrech) nutné k vyÄiÅ¡tÄ›nà "
-"nového filamentu na ÄistÃcà věži pro danou dvojici nástrojů. "
-
-#: src/libslic3r/PrintConfig.cpp:2239
-msgid "Position X"
-msgstr "Pozice X"
-
-#: src/libslic3r/PrintConfig.cpp:2240
-msgid "X coordinate of the left front corner of a wipe tower"
-msgstr "X souÅ™adnice levého pÅ™ednÃho rohu ÄistÃcà věže"
-
-#: src/libslic3r/PrintConfig.cpp:2247
-msgid "Position Y"
-msgstr "Pozice Y"
-
-#: src/libslic3r/PrintConfig.cpp:2248
-msgid "Y coordinate of the left front corner of a wipe tower"
-msgstr "Y souÅ™adnice levého pÅ™ednÃho rohu ÄistÃcà věže"
-
-#: src/libslic3r/PrintConfig.cpp:2256
-msgid "Width of a wipe tower"
-msgstr "Å ÃÅ™ka ÄistÃcà věže"
-
-#: src/libslic3r/PrintConfig.cpp:2263
-msgid "Wipe tower rotation angle"
-msgstr "Úhel natoÄenà ÄistÃcà věže"
-
-#: src/libslic3r/PrintConfig.cpp:2264
-msgid "Wipe tower rotation angle with respect to x-axis "
-msgstr "Úhel natoÄenà ÄistÃcà věže s ohledem na osu X "
-
-#: src/libslic3r/PrintConfig.cpp:2265
-msgid "degrees"
-msgstr "stupňů"
-
-#: src/libslic3r/PrintConfig.cpp:2272
-msgid "Wipe into this object's infill"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2273
-msgid ""
-"Purging after toolchange will done inside this object's infills. This lowers "
-"the amount of waste but may result in longer print time due to additional "
-"travel moves."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2281
-msgid "Wipe into this object"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2282
-msgid ""
-"Object will be used to purge the nozzle after a toolchange to save material "
-"that would otherwise end up in the wipe tower and decrease print time. "
-"Colours of the objects will be mixed as a result."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2289
-msgid "Maximal bridging distance"
-msgstr "Maximálnà vzdálenost pÅ™emostÄ›nÃ"
-
-#: src/libslic3r/PrintConfig.cpp:2290
-msgid "Maximal distance between supports on sparse infill sections. "
-msgstr "Maximálnà vzdálenost mezi podporami u Äástà s Å™Ãdkou výplnÃ. "
-
-#: src/libslic3r/PrintConfig.cpp:2297
-msgid "XY Size Compensation"
-msgstr "Kompenzace XY rozměrů"
-
-#: src/libslic3r/PrintConfig.cpp:2299
-msgid ""
-"The object will be grown/shrunk in the XY plane by the configured value "
-"(negative = inwards, positive = outwards). This might be useful for fine-"
-"tuning hole sizes."
-msgstr ""
-"Objekt bude roztažen / smrštěn v rovině XY nastavenou hodnotou (negativnà = "
-"smÄ›rem dovnitÅ™, pozitivnà = smÄ›rem ven). To může být užiteÄné pro jemné "
-"doladěnà otvorů."
-
-#: src/libslic3r/PrintConfig.cpp:2308
-msgid "Z offset"
-msgstr "Odsazenà Z"
-
-#: src/libslic3r/PrintConfig.cpp:2309
-msgid ""
-"This value will be added (or subtracted) from all the Z coordinates in the "
-"output G-code. It is used to compensate for bad Z endstop position: for "
-"example, if your endstop zero actually leaves the nozzle 0.3mm far from the "
-"print bed, set this to -0.3 (or fix your endstop)."
-msgstr ""
-"Tato hodnota bude pÅ™idána (nebo odeÄtena) ze vÅ¡ech souÅ™adnic Z ve výstupnÃm "
-"G-code. PoužÃvá se ke kompenzovánà špatné pozice endstopu Z. NapÅ™Ãklad pokud "
-"endstop 0 skuteÄnÄ› ponechá trysku 0,3 mm daleko od tiskové podložky, "
-"nastavte hodnotu -0,3 (nebo dolaÄte svůj koncový doraz)."
-
-#: src/libslic3r/PrintConfig.cpp:2319
-msgid "Bed size X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2320 src/libslic3r/PrintConfig.cpp:2327
-#: src/libslic3r/PrintConfig.cpp:2334 src/libslic3r/PrintConfig.cpp:2343
-#: src/libslic3r/PrintConfig.cpp:2351 src/libslic3r/PrintConfig.cpp:2359
-msgid "Dwarf"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2326
-msgid "Bed size Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2333
-msgid "Picture resolution X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2335 src/libslic3r/PrintConfig.cpp:2344
-msgid "px"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2342
-msgid "Picture resolution Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2350 src/libslic3r/PrintConfig.cpp:2430
-#: src/libslic3r/PrintConfig.cpp:2431
-msgid "Exposure time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2358
-msgid "Exposure time first layers"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2373
-msgid "Display width"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2374
-msgid "Width of the display"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2380
-msgid "Display height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2381
-msgid "Height of the display"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2387
-msgid "Number of pixels in"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2389
-msgid "Number of pixels in X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2396
-msgid "Number of pixels in Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2402
-msgid "Display orientation"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2403
-msgid ""
-"Set the actual LCD display orientation inside the SLA printer. Portrait mode "
-"will flip the meaning of display width and height parameters and the output "
-"images will be rotated by 90 degrees."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2410
-msgid "Landscape"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2411
-msgid "Portrait"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2415 src/libslic3r/PrintConfig.cpp:2416
-msgid "Printer scaling correction"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2422 src/libslic3r/PrintConfig.cpp:2423
-msgid "Initial layer height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439
-msgid "Initial exposure time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2446 src/libslic3r/PrintConfig.cpp:2447
-msgid "Correction for expansion when printing"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2452 src/libslic3r/PrintConfig.cpp:2453
-msgid "Correction for expansion after curing"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2458
-msgid "SLA print material notes"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2459
-msgid "You can put your notes regarding the SLA print material here."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2468 src/libslic3r/PrintConfig.cpp:2478
-msgid "Default SLA material profile"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2487
-msgid "Generate supports"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2489
-msgid "Generate supports for the models"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2494
-msgid "Support head front diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2496
-msgid "Diameter of the pointing side of the head"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2503
-msgid "Support head penetration"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2505
-msgid "How much the pinhead has to penetrate the model surface"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2512
-msgid "Support head width"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2514
-msgid "Width from the back sphere center to the front sphere center"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2521
-msgid "Support pillar diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2523
-msgid "Diameter in mm of the support pillars"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2530
-msgid "Support pillar connection mode"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2531
-msgid ""
-"Controls the bridge type between two neigboring pillars. Can be zig-zag, "
-"cross (double zig-zag) or dynamic which will automatically switch between "
-"the first two depending on the distance of the two pillars."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2540
-msgid "Zig-Zag"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2541
-msgid "Cross"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2542
-msgid "Dynamic"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2546
-msgid "Pillar widening factor"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2548
-msgid ""
-"Merging bridges or pillars into another pillars can increase the radius. "
-"Zero means no increase, one means full increase."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2557
-msgid "Support base diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2559
-msgid "Diameter in mm of the pillar base"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2566
-msgid "Support base height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2568
-msgid "The height of the pillar base cone"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2575
-msgid "Critical angle"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2577
-msgid "The default angle for connecting support sticks and junctions."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2584
-msgid "Max bridge length"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2586
-msgid "The max length of a bridge"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2593
-msgid "Object elevation"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2595
-msgid "How much the supports should lift up the supported object."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2602
-msgid "Density on horizontal surfaces"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2604
-msgid ""
-"How many support points (approximately) should be placed on horizontal "
-"surface."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2605 src/libslic3r/PrintConfig.cpp:2614
-msgid "points per square dm"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2611
-msgid "Density on surfaces at 45 degrees"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2613
-msgid ""
-"How many support points (approximately) should be placed on surface sloping "
-"at 45 degrees."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2620
-msgid "Minimal support point height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2622
-msgid "No support points will be placed lower than this value from the bottom."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2629
-msgid "Use pad"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2631
-msgid "Add a pad underneath the supported model"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2636
-msgid "Pad wall thickness"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2645
-msgid "Pad wall height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2654
-msgid "Max merge distance"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2663
-msgid "Pad edge radius"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3017
-msgid "Cut model at the given Z."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3022
-msgid "Dont arrange"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3023
-msgid ""
-"Don't arrange the objects on the build plate. The model coordinates define "
-"the absolute positions on the build plate. The option --center will be "
-"ignored."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3030
-msgid "User data directory"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3031
-msgid ""
-"Load and store settings at the given directory. This is useful for "
-"maintaining different profiles or including configurations from a network "
-"storage."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3038
-msgid "Export 3MF"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3039
-msgid "Slice the model and export slices as 3MF."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3044
-msgid "Slice"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3045
-msgid "Slice the model and export gcode."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3050
-msgid "Help"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3051
-msgid "Show this help."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3056
-msgid "Use GUI"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3057
-msgid ""
-"Forces the GUI launch instead of command line slicing (if you supply a model "
-"file, it will be loaded into the plater)"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3063
-msgid "Output Model Info"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3064
-msgid "Write information about the model to the console."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3069
-msgid "Load config file"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3070
-msgid ""
-"Load configuration from the specified file. It can be used more than once to "
-"load options from multiple files."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3075
-msgid "Do not use GUI"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3076
-msgid ""
-"Forces the command line slicing instead of gui. This takes precedence over --"
-"gui if both are present."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3081
-msgid "Output File"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3082
-msgid ""
-"The file where the output will be written (if not specified, it will be "
-"based on the input file)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3088
-msgid "Rotation angle around the Z axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3093
-msgid "Rotate around X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3094
-msgid "Rotation angle around the X axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3099
-msgid "Rotate around Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3100
-msgid "Rotation angle around the Y axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3105
-msgid "Save config file"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3106
-msgid "Save configuration to the specified file."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3112
-msgid "Scaling factor (default: 1)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3125
-msgid "Print center"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3126
-msgid "Center the print around the given center (default: 100, 100)."
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:176
-msgid "Mixed"
-msgstr "SmÃÅ¡ený"
+#: src/slic3r/GUI/GUI_Preview.cpp:213 src/libslic3r/PrintConfig.cpp:468
+msgid "Height"
+msgstr "Výška"
#: src/libslic3r/GCode/PreviewData.cpp:396
msgid "Height (mm)"
msgstr "Výška (mm)"
-#: src/libslic3r/GCode/PreviewData.cpp:398
-msgid "Width (mm)"
-msgstr "Å ÃÅ™ka (mm)"
+#: src/libslic3r/PrintConfig.cpp:1618
+msgid "Height of skirt expressed in layers. Set this to a tall value to use skirt as a shield against drafts."
+msgstr "Výška obrysu vyjádÅ™ená ve vrstvách. Nastavte tuto hodnotu vysokou, pro použità obrysu jako stÃnÄ›nà proti průvanu."
+
+#: src/libslic3r/PrintConfig.cpp:2209
+msgid "Height of the display"
+msgstr "Výška displeje"
+
+#: src/libslic3r/PrintConfig.cpp:225
+msgid "Heights at which a filament change is to occur. "
+msgstr "Výšky, pÅ™i kterých má dojÃt ke zmÄ›nÄ› filamentu."
+
+#: src/slic3r/GUI/ConfigWizard.cpp:300
+#, possible-c-format
+msgid "Hello, welcome to %s! This %s helps you with the initial configuration; just a few settings and you will be ready to print."
+msgstr "ZdravÃm, vÃtejte v %s! Tento %s vám pomůže se základnà konfiguracÃ; jen nÄ›kolik nastavenà a budete pÅ™ipraveni k tisku."
+
+#: src/slic3r/GUI/ConfigWizard.cpp:290
+#, possible-c-format
+msgid "Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial configuration; just a few settings and you will be ready to print."
+msgstr "ZdravÃm, vÃtejte ve Slic3r Prusa Edition! Tento %s vám pomůže se základnà konfiguracÃ; jen nÄ›kolik nastavenà a budete pÅ™ipraveni k tisku."
+
+#: src/libslic3r/PrintConfig.cpp:2976
+msgid "Help"
+msgstr "Nápověda"
+
+#: src/libslic3r/PrintConfig.cpp:2982
+msgid "Help (FFF options)"
+msgstr "Nápověda (pro FFF)"
+
+#: src/libslic3r/PrintConfig.cpp:2987
+msgid "Help (SLA options)"
+msgstr "Nápověda (pro SLA)"
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:225
+msgid "Here you can adjust required purging volume (mm³) for any given pair of tools."
+msgstr "Zde můžete upravit požadovaný objem ÄiÅ¡tÄ›nà (mm³) pro kteroukoliv dvojici extruderů."
+
+#: src/libslic3r/PrintConfig.cpp:925
+msgid "High extruder current on filament swap"
+msgstr "Zvýšený proud do extruderového motoru při výměně filamentu"
+
+#: src/libslic3r/PrintConfig.cpp:400 src/libslic3r/PrintConfig.cpp:806
+msgid "Hilbert Curve"
+msgstr "Hilbertova křivka"
+
+#: src/slic3r/GUI/Plater.cpp:873
+msgid "Hold Shift to Slice & Export G-code"
+msgstr "Stiskni Shift pro Slicovánà & Export G-codu"
+
+#: src/libslic3r/PrintConfig.cpp:803 src/libslic3r/PrintConfig.cpp:1924
+msgid "Honeycomb"
+msgstr "Plástev"
+
+#: src/slic3r/GUI/Tab.cpp:1013
+msgid "Horizontal shells"
+msgstr "Vodorovné stěny"
+
+#: src/libslic3r/PrintConfig.cpp:209
+msgid "Horizontal width of the brim that will be printed around each object on the first layer."
+msgstr "Å Ãrka lÃmce který bude vytiÅ¡tÄ›n v prvnà vrstvÄ› okolo každého objektu."
+
+#: src/libslic3r/PrintConfig.cpp:1267
+msgid "Host Type"
+msgstr "Typ tiskového serveru"
+
+#: src/slic3r/GUI/BonjourDialog.cpp:73
+msgid "Hostname"
+msgstr "Název serveru"
+
+#: src/libslic3r/PrintConfig.cpp:81
+msgid "Hostname, IP or URL"
+msgstr "Název serveru, IP nebo URL"
+
+#: src/slic3r/GUI/Tab.cpp:136
+msgid "Hover the cursor over buttons to find more information \nor click this button."
+msgstr "Pro vÃce informacà pÅ™ejeÄte kurzorem nad tlaÄÃtky\nnebo na tlaÄÃtko kliknÄ›te."
+
+#: src/libslic3r/PrintConfig.cpp:2380
+msgid "How much the pinhead has to penetrate the model surface"
+msgstr "Jak moc hrot podpěry pronikne do povrchu modelu"
+
+#: src/libslic3r/PrintConfig.cpp:2491
+msgid "How much the supports should lift up the supported object."
+msgstr "O jakou vzdálenost majà podpěry zvednout objekt."
+
+#: src/libslic3r/PrintConfig.cpp:95
+msgid "HTTPS CA File"
+msgstr "Soubor HTTPS CA"
+
+#: src/slic3r/GUI/Tab.cpp:1731
+msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate."
+msgstr "Soubor HTTPS CA je volitelný. Je nutný pouze pokud použijte HTTPS certifikát s vlastnÃm podpisem."
+
+#: src/slic3r/GUI/Tab.cpp:1773
+#, possible-c-format
+msgid "HTTPS CA File:\n \tOn this system, %s uses HTTPS certificates from the system Certificate Store or Keychain.\n \tTo use a custom CA file, please import your CA file into Certificate Store / Keychain."
+msgstr "Soubor HTTPS CA:\nV tomto systému použÃvá %s certifikáty HTTPS ze systému Certificate Store nebo Keychain. Chcete-li použÃt vlastnà soubor CA, importujte soubor CA do Certificate Store / Keychain."
+
+#: src/slic3r/GUI/Tab.cpp:1725
+msgid "HTTPS CA File:\n\tOn this system, Slic3r uses HTTPS certificates from the system Certificate Store or Keychain.\n\tTo use a custom CA file, please import your CA file into Certificate Store / Keychain."
+msgstr "Soubor HTTPS CA:\nV tomto systému použÃvá Slic3r certifikáty HTTPS ze systému Certificate Store nebo Keychain. Chcete-li použÃt vlastnà soubor CA, importujte soubor CA do Certificate Store / Keychain."
+
+#: src/libslic3r/PrintConfig.cpp:1787
+msgid "If checked, supports will be generated automatically based on the overhang threshold value. If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only."
+msgstr "Pokud je zaÅ¡krtnuto, budou podpÄ›ry generovány automaticky na základÄ› prahové hodnoty pÅ™evisu. Pokud nenà zaÅ¡krtnuto, bude podpÄ›ra generována pouze v mÃstech, kde je umÃstÄ›n objekt pro \"Vynucenà podpÄ›r\"."
+
+#: src/slic3r/GUI/ConfigWizard.cpp:413
+#, possible-c-format
+msgid "If enabled, %s checks for new application versions online. When a new version becomes available, a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done."
+msgstr "Pokud je povoleno, kontroluje %s novÄ› dostupné verze. V pÅ™ÃpadÄ›, že je nová verze k dispozici, zobrazà se notifikace pÅ™i dalÅ¡Ãm startu programu (nikdy bÄ›hem užÃvánà aplikace). Tento systém sloužà pouze pro upozornÄ›nà uživatele, nedocházà k automatické instalaci."
+
+#: src/slic3r/GUI/ConfigWizard.cpp:423
+#, possible-c-format
+msgid "If enabled, %s downloads updates of built-in system presets in the background.These updates are downloaded into a separate temporary location.When a new preset version becomes available it is offered at application startup."
+msgstr "Pokud je povoleno, stáhne %s na pozadà aktualizace vestavÄ›ných systémových pÅ™ednastavenÃ. Tyto aktualizace jsou staženy do doÄasného umÃstÄ›nÃ. Pokud je k dispozici nové pÅ™ednastavenÃ, zobrazà se upozornÄ›nà pÅ™i startu programu."
+
+#: src/libslic3r/PrintConfig.cpp:1774
+msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
+msgstr "Pokud je tato možnost povolena, vÅ¡echny tiskové extrudery na zaÄátku tisku vytlaÄà na pÅ™ednÃm okraji podložky malé množstvà materiálu."
+
+#: src/slic3r/GUI/Preferences.cpp:63
+msgid "If enabled, Slic3r checks for new versions of "
+msgstr "Pokud je povoleno, Slic3r kontroluje dostupnost nové verze"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:401 src/slic3r/GUI/Preferences.cpp:61
+msgid "If enabled, Slic3r checks for new versions of Slic3r PE online. When a new version becomes available a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done."
+msgstr "Pokud je povoleno, kontroluje Slic3r novÄ› dostupné verze Slic3r PE. V pÅ™ÃpadÄ›, že je nová verze k dispozici, zobrazà se notifikace pÅ™i dalÅ¡Ãm startu programu (nikdy bÄ›hem užÃvánà aplikace). Tento systém sloužà pouze pro upozornÄ›nà uživatele, nedocházà k automatické instalaci."
+
+#: src/slic3r/GUI/Preferences.cpp:71
+msgid "If enabled, Slic3r downloads updates of built-in system presets in the background. These updates are downloaded into a separate temporary location. When a new preset version becomes available it is offered at application startup."
+msgstr "Pokud je povoleno, stáhne Slic3r na pozadà aktualizace vestavÄ›ných systémových pÅ™ednastavenÃ. Tyto aktualizace jsou staženy do doÄasného umÃstÄ›nÃ. Pokud je k dispozici nové pÅ™ednastavenÃ, zobrazà se upozornÄ›nà pÅ™i startu programu."
+
+#: src/slic3r/GUI/Preferences.cpp:105
+msgid "If enabled, the 3D scene will be rendered in Retina resolution. If you are experiencing 3D performance problems, disabling this option may help."
+msgstr "Pokud je tato volba povolena, bude 3D scéna vykreslena v rozliÅ¡enà Retina. Pokud docházà k potÞÃm s výkonem, zkuste tuto volbu vypnout."
+
+#: src/slic3r/GUI/PresetHints.cpp:28
+#, possible-c-format
+msgid "If estimated layer time is below ~%ds, fan will run at %d%% and print speed will be reduced so that no less than %ds are spent on that layer (however, speed will never be reduced below %dmm/s)."
+msgstr "Pokud je odhadovaný Äas vrstvy nižšà než ~% ds, bude ventilátor pracovat na %d%% a rychlost tisku bude snÞena tak, aby na tuto vrstvu nebylo použito ménÄ› než %ds (rychlost vÅ¡ak nikdy nebude snÞena pod %dmm/s)."
+
+#: src/libslic3r/PrintConfig.cpp:853
+msgid "If expressed as absolute value in mm/s, this speed will be applied to all the print moves of the first layer, regardless of their type. If expressed as a percentage (for example: 40%) it will scale the default speeds."
+msgstr "Pokud je vyjádÅ™ena jako absolutnà hodnota v mm / s, bude tato rychlost použita pro vÅ¡echny pohyby tisku prvnà vrstvy bez ohledu na jejich typ. Pokud je hodnota vyjádÅ™ena procenty (napÅ™Ãklad: 40%), zmÄ›nà v závislosti na výchozÃch rychlostech."
+
+#: src/libslic3r/PrintConfig.cpp:540
+msgid "If layer print time is estimated below this number of seconds, fan will be enabled and its speed will be calculated by interpolating the minimum and maximum speeds."
+msgstr "Pokud je doba tisku vrstvy odhadnuta jako kratšà než tato nastavená hodnota ve vteÅ™inách, ventilátor bude aktivován a jeho rychlost bude vypoÄtena interpolacà minimálnà a maximálnà rychlosti."
+
+#: src/libslic3r/PrintConfig.cpp:1636
+msgid "If layer print time is estimated below this number of seconds, print moves speed will be scaled down to extend duration to this value."
+msgstr "Pokud je doba tisku vrstvy odhadnuta kratšà než tento poÄet sekund, rychlost tisku se zpomalÃ, aby se prodloužila doba tisku této vrstvy."
+
+#: src/libslic3r/PrintConfig.cpp:534
+msgid "If this is enabled, fan will never be disabled and will be kept running at least at its minimum speed. Useful for PLA, harmful for ABS."
+msgstr "Pokud je tato funkce zapnutá, ventilátor nebude nikdy vypnut a bude udržován v chodu alespoň rychlostà která je nastavena jako minimálnà rychlost. UžiteÄné pro PLA, Å¡kodlivé pro ABS."
+
+#: src/slic3r/GUI/Preferences.cpp:46
+msgid "If this is enabled, Slic3r will auto-center objects around the print bed center."
+msgstr "Pokud je tato možnost povolena, Slic3r bude automaticky centrovat objekty kolem středu tiskové plochy."
+
+#: src/slic3r/GUI/Preferences.cpp:54
+msgid "If this is enabled, Slic3r will pre-process objects as soon as they're loaded in order to save time when exporting G-code."
+msgstr "Pokud je tato možnost povolena, Slic3r pÅ™edprojektuje objekty, jakmile budou naÄteny, aby Å¡etÅ™il Äas pÅ™i exportu G-code."
+
+#: src/slic3r/GUI/Preferences.cpp:38
+msgid "If this is enabled, Slic3r will prompt the last output directory instead of the one containing the input files."
+msgstr "Pokud je tato volba povolena, Slic3r vyvolá poslednà výstupnà adresář namÃsto toho, který obsahuje vstupnà soubory."
+
+#: src/slic3r/GUI/Preferences.cpp:95
+msgid "If you have rendering issues caused by a buggy OpenGL 2.0 driver, you may try to check this checkbox. This will disable the layer height editing and anti aliasing, so it is likely better to upgrade your graphics driver."
+msgstr "Pokud máte problémy s vykreslovánÃm způsobené chybným ovladaÄem OpenGL 2.0, můžete se pokusit zaÅ¡krtnout toto polÃÄko. TÃm se vypnou úpravy výšky hladiny a vyhlazenÃ, takže je lepšà upgradovat grafický ovladaÄ."
+
+#: src/libslic3r/PrintConfig.cpp:1492
+msgid "If you set this to a positive value, Z is quickly raised every time a retraction is triggered. When using multiple extruders, only the setting for the first extruder will be considered."
+msgstr "ZadánÃm kladné hodnoty, se Z rychle pÅ™izvedne pÅ™i každém vyvolánà retrakce. PÅ™i použità vÃce extruderů bude použito pouze nastavenà pro prvnà extruder."
+
+#: src/libslic3r/PrintConfig.cpp:1501
+msgid "If you set this to a positive value, Z lift will only take place above the specified absolute Z. You can tune this setting for skipping lift on the first layers."
+msgstr "ZadánÃm kladné hodnoty se zdvih Z uskuteÄnà pouze nad zadanou absolutnà hodnotou Z. Toto nastavenà můžete zvolit pro pÅ™eskoÄenà pÅ™izvednutà u prvnÃch vrstev."
+
+#: src/libslic3r/PrintConfig.cpp:1510
+msgid "If you set this to a positive value, Z lift will only take place below the specified absolute Z. You can tune this setting for limiting lift to the first layers."
+msgstr "ZadánÃm kladné hodnoty se zdvih Z uskuteÄnà pouze pod zadanou absolutnà hodnotou Z. Toto nastavenà můžete zvolit pro pÅ™eskoÄenà pÅ™izvednutà u prvnÃch vrstev."
+
+#: src/libslic3r/PrintConfig.cpp:1384
+msgid "If you want to process the output G-code through custom scripts, just list their absolute paths here. Separate multiple scripts with a semicolon. Scripts will be passed the absolute path to the G-code file as the first argument, and they can access the Slic3r config settings by reading environment variables."
+msgstr "Pokud chcete zpracovat výstupnà G-code pomocà vlastnÃch skriptů, staÄà zde uvést jejich absolutnà cesty. OddÄ›lte vÃce skriptů stÅ™ednÃkem. Skripty pÅ™edajà absolutnà cestu k souboru G-code jako prvnà argument a mohou pÅ™istupovat k nastavenà konfigurace Slic3ru ÄtenÃm promÄ›nných prostÅ™edÃ."
+
+#: src/libslic3r/PrintConfig.cpp:498
+msgid "If your firmware doesn't handle the extruder displacement you need the G-code to take it into account. This option lets you specify the displacement of each extruder with respect to the first one. It expects positive coordinates (they will be subtracted from the XY coordinate)."
+msgstr "Pokud firmware nezpracovává umÃstÄ›nà extruderu správnÄ›, potÅ™ebujete aby to vzal G-code v úvahu. Toto nastavenà umožňuje urÄit odsazenà každého extruderu vzhledem k prvnÃmu. OÄekávajà se pozitivnà souÅ™adnice (budou odeÄteny od souÅ™adnice XY)."
+
+#: src/libslic3r/PrintConfig.cpp:2068
+msgid "If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values."
+msgstr "Pokud váš firmware vyžaduje relativnà hodnoty E, zaÅ¡krtnÄ›te toto, jinak nechte nezaÅ¡krtnuté. VÄ›tÅ¡ina firmwarů použÃvá absolutnà hodnoty."
+
+#: src/libslic3r/PrintConfig.cpp:3096
+msgid "Ignore non-existent config files"
+msgstr "Ignorovat neexistujÃcà konfiguraÄnà soubory"
+
+#: src/slic3r/GUI/MainFrame.cpp:352
+msgid "Import &Config"
+msgstr "Importovat Konfigura&ci"
+
+#: src/slic3r/GUI/MainFrame.cpp:357
+msgid "Import Config &Bundle"
+msgstr "Importovat KonfiguraÄnà &BalÃk"
+
+#: src/slic3r/GUI/MainFrame.cpp:354
+msgid "Import Config from &project"
+msgstr "NaÄÃst konfiguraci z &projektu"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:383
+msgid "Import of the repaired 3mf file failed"
+msgstr "Import opraveného 3MF souboru selhal"
+
+#: src/slic3r/GUI/MainFrame.cpp:349
+msgid "Import STL/OBJ/AM&F/3MF"
+msgstr "Importovat STL/OBJ/AM&F/3MF"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:106
+msgid "Import STL/OBJ/AMF/3MF without config, keep bed"
+msgstr "Nahrát soubor STL/OBJ/AMF/3MF bez konfigurace (zachová stávajÃcà tiskovou plochu)"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2416
+#, possible-c-format
+msgid "In this mode you can select only other %s Items%s"
+msgstr "V tomto režimu můžete vybrat pouze jinou/jiný %s %s"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:132
+msgid "Incompatible bundles:"
+msgstr "Nekompatibilnà balÃky:"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:70
+#, possible-c-format
+msgid "Incompatible with this %s"
+msgstr "Nekompatibilnà s tÃmto %s"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69
+msgid "Incompatible with this Slic3r"
+msgstr "Nekompatibilnà s tÃmto Slic3rem"
+
+#: src/slic3r/GUI/Plater.cpp:2813 src/slic3r/GUI/Plater.cpp:2825
+#: src/slic3r/GUI/Plater.cpp:2897
+msgid "Increase copies"
+msgstr "Přidat kopie"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:29 src/slic3r/GUI/GUI_ObjectList.cpp:69
+#: src/slic3r/GUI/GUI_ObjectList.cpp:510 src/slic3r/GUI/Plater.cpp:439
+#: src/slic3r/GUI/Tab.cpp:1030 src/slic3r/GUI/Tab.cpp:1031
+#: src/slic3r/GUI/Tab.cpp:1360 src/libslic3r/PrintConfig.cpp:167
+#: src/libslic3r/PrintConfig.cpp:389 src/libslic3r/PrintConfig.cpp:729
+#: src/libslic3r/PrintConfig.cpp:743 src/libslic3r/PrintConfig.cpp:780
+#: src/libslic3r/PrintConfig.cpp:933 src/libslic3r/PrintConfig.cpp:943
+#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:979
+#: src/libslic3r/PrintConfig.cpp:998 src/libslic3r/PrintConfig.cpp:1659
+#: src/libslic3r/PrintConfig.cpp:1676
+msgid "Infill"
+msgstr "Výplň"
+
+#: src/slic3r/GUI/PresetHints.cpp:171
+msgid "infill"
+msgstr "výplň"
+
+#: src/libslic3r/PrintConfig.cpp:972
+msgid "Infill before perimeters"
+msgstr "Tisknout výplň před tiskem perimetrů"
+
+#: src/libslic3r/PrintConfig.cpp:953
+msgid "Infill extruder"
+msgstr "Extruder pro výplň"
+
+#: src/libslic3r/PrintConfig.cpp:987
+msgid "Infill/perimeters overlap"
+msgstr "Přesah pro výplň/perimetry"
+
+#: src/libslic3r/Print.cpp:1476
+msgid "Infilling layers"
+msgstr "Generovánà výplně vrstev"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2424
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2497 src/slic3r/GUI/Plater.cpp:118
+msgid "Info"
+msgstr "Info"
+
+#: src/libslic3r/PrintConfig.cpp:1008
+msgid "Inherits profile"
+msgstr "Zdědà profil"
+
+#: src/libslic3r/PrintConfig.cpp:2317 src/libslic3r/PrintConfig.cpp:2318
+msgid "Initial exposure time"
+msgstr "Doba poÄáteÄnÃho osvitu"
+
+#: src/libslic3r/PrintConfig.cpp:2295 src/libslic3r/PrintConfig.cpp:2296
+msgid "Initial layer height"
+msgstr "Výška prvnà vrstvy"
+
+#: src/slic3r/GUI/Field.cpp:155
+msgid "Input value is out of range"
+msgstr "Zadaná hodnota je mimo rozsah"
+
+#: src/slic3r/GUI/GUI_App.cpp:661
+msgid "Inspect / activate configuration snapshots"
+msgstr "Zkontrolovat / aktivovat zálohy konfigurace"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1887
+msgid "Instance manipulation"
+msgstr "Manipulace s instancà objektu"
+
+#: src/slic3r/GUI/wxExtensions.cpp:358
+msgid "Instances"
+msgstr "Instance"
+
+#: src/slic3r/GUI/wxExtensions.cpp:365
+#, possible-c-format
+msgid "Instance_%d"
+msgstr "Instance_%d"
+
+#: src/libslic3r/PrintConfig.cpp:1886
+msgid "Interface layers"
+msgstr "Kontaktnà vrstvy"
+
+#: src/libslic3r/PrintConfig.cpp:1870
+msgid "Interface loops"
+msgstr "Kontaktnà smyÄky"
+
+#: src/libslic3r/PrintConfig.cpp:1895
+msgid "Interface pattern spacing"
+msgstr "RozteÄ kontaktnÃch vrstev"
+
+#: src/libslic3r/PrintConfig.cpp:1022
+msgid "Interface shells"
+msgstr "Mezilehlé stěny"
+
+#: src/libslic3r/Zipper.cpp:87
+msgid "internal error"
+msgstr "internà chyba"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:230 src/libslic3r/GCode/PreviewData.cpp:166
+msgid "Internal infill"
+msgstr "Vnitřnà výplň"
+
+#: xs/src/slic3r/Utils/OctoPrint.cpp:120
+msgid "Invalid API key"
+msgstr "Neplatný API klÃÄ"
+
+#: src/slic3r/GUI/Plater.cpp:2397
+msgid "Invalid data"
+msgstr "Neplatná data"
+
+#: src/libslic3r/Zipper.cpp:83
+msgid "invalid filename"
+msgstr "neplatný název souboru"
+
+#: src/slic3r/GUI/Tab.cpp:3484
+msgid "Invalid Head penetration"
+msgstr "Neplatný průnik podpěry do modelu"
+
+#: src/libslic3r/Zipper.cpp:51
+msgid "invalid header or archive is corrupted"
+msgstr "neplatná hlaviÄka nebo je archiv poÅ¡kozen"
+
+#: src/slic3r/GUI/Field.cpp:150 src/slic3r/GUI/Field.cpp:173
+msgid "Invalid numeric input."
+msgstr "Neplatný ÄÃselný vstup."
+
+#: src/libslic3r/Zipper.cpp:81
+msgid "invalid parameter"
+msgstr "neplatný parametr"
+
+#: src/slic3r/GUI/Tab.cpp:3497
+msgid "Invalid pinhead diameter"
+msgstr "Neplatný průměr hrotu"
+
+#: lib/Slic3r/GUI/Plater.pm:1042
+msgid "Invalid rotation angle entered"
+msgstr "Zadán neplatný úhel natoÄenÃ"
+
+#: lib/Slic3r/GUI/Plater.pm:1133 lib/Slic3r/GUI/Plater.pm:1137
+#: lib/Slic3r/GUI/Plater.pm:1158 lib/Slic3r/GUI/Plater.pm:1163
+msgid "Invalid scaling value entered"
+msgstr "Zadána neplatná hodnota pro úpravu rozměru"
+
+#: src/slic3r/GUI/Tab.cpp:2779
+msgid "is not compatible with print profile"
+msgstr "nenà kompatibilnàs tiskovým profilem"
+
+#: src/slic3r/GUI/Tab.cpp:2778
+msgid "is not compatible with printer"
+msgstr "nenà kompatibilnàs tiskárnou"
+
+#: src/slic3r/GUI/MainFrame.cpp:519
+msgid "Iso"
+msgstr "Izometrické"
+
+#: src/slic3r/GUI/MainFrame.cpp:519
+msgid "Iso View"
+msgstr "Izometrické zobrazenÃ"
+
+#: src/slic3r/GUI/Tab.cpp:914
+msgid "It can't be deleted or modified. "
+msgstr "Nelze smazat nebo upravit. "
+
+#: src/libslic3r/PrintConfig.cpp:926
+msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip."
+msgstr "Může být užiteÄné zvýšit proud motoru extruderu bÄ›hem sekvence výmÄ›ny filamentu, aby se umožnily vysoké rychlosti zavádÄ›nà filamentu a aby se pÅ™ekonal odpor pÅ™i zavádÄ›nà filamentu s oÅ¡klivÄ› tvarovanou Å¡piÄkou."
+
+#: src/slic3r/GUI/Tab.cpp:907
+msgid "It's a default preset."
+msgstr "Je to výchozà pÅ™ednastavenÃ."
+
+#: src/slic3r/GUI/Tab.cpp:908
+msgid "It's a system preset."
+msgstr "Jedná se o systémové pÅ™ednastavenÃ."
+
+#: src/slic3r/GUI/GUI.cpp:142 src/slic3r/GUI/Tab.cpp:2796
+msgid "It's impossible to print multi-part object(s) with SLA technology."
+msgstr "SLA technologià nelze tisknout vÃcedÃlné objekty."
+
+#: src/slic3r/GUI/Tab.cpp:2177
+msgid "Jerk limits"
+msgstr "Ryv limity"
+
+#: src/libslic3r/PrintConfig.cpp:1579
+msgid "Jitter"
+msgstr "Rozkmit (Jitter)"
+
+#: src/libslic3r/PrintConfig.cpp:533
+msgid "Keep fan always on"
+msgstr "Ventilátor vždy zapnutý"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:194
+msgid "Keep lower part"
+msgstr "Zachovat spodnà Äást"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:193
+msgid "Keep upper part"
+msgstr "Zachovat hornà Äást"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:13 src/slic3r/GUI/MainFrame.cpp:566
+msgid "Keyboard Shortcuts"
+msgstr "Klávesové zkratky"
+
+#: src/libslic3r/PrintConfig.cpp:917
+msgid "Label objects"
+msgstr "OznaÄovánà objektů"
+
+#: src/libslic3r/PrintConfig.cpp:2234
+msgid "Landscape"
+msgstr "Orientace na Å¡ÃÅ™ku"
+
+#: src/slic3r/GUI/GUI_App.cpp:524
+msgid "Language"
+msgstr "Jazyk"
+
+#: lib/Slic3r/GUI/Plater.pm:265
+msgid "Layer Editing"
+msgstr "Vyhlazenà vrstev"
+
+#: lib/Slic3r/GUI/Plater.pm:280
+msgid "Layer editing"
+msgstr "Vyhlazenà vrstev"
+
+#: src/slic3r/GUI/Tab.cpp:998 src/libslic3r/PrintConfig.cpp:55
+msgid "Layer height"
+msgstr "Výška vrstvy"
+
+#: src/libslic3r/Print.cpp:1332
+msgid "Layer height can't be greater than nozzle diameter"
+msgstr "Výška vrstvy nemůže být většà než je průměr trysky"
+
+#: src/slic3r/GUI/Tab.cpp:2260
+msgid "Layer height limits"
+msgstr "Výškové limity vrstvy"
+
+#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:946
+#: src/libslic3r/PrintConfig.cpp:1435 src/libslic3r/PrintConfig.cpp:1620
+#: src/libslic3r/PrintConfig.cpp:1681 src/libslic3r/PrintConfig.cpp:1844
+#: src/libslic3r/PrintConfig.cpp:1889
+msgid "layers"
+msgstr "vrstva(y)"
+
+#: src/slic3r/GUI/Tab.cpp:3302 src/slic3r/GUI/Tab.cpp:3393
+msgid "Layers"
+msgstr "Vrstvy"
+
+#: src/slic3r/GUI/Tab.cpp:997 src/slic3r/GUI/Tab.cpp:3391
+msgid "Layers and perimeters"
+msgstr "Vrstvy a perimetry"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:28 src/slic3r/GUI/GUI_ObjectList.cpp:68
+#: src/slic3r/GUI/GUI_ObjectList.cpp:509 src/libslic3r/PrintConfig.cpp:56
+#: src/libslic3r/PrintConfig.cpp:150 src/libslic3r/PrintConfig.cpp:381
+#: src/libslic3r/PrintConfig.cpp:438 src/libslic3r/PrintConfig.cpp:446
+#: src/libslic3r/PrintConfig.cpp:842 src/libslic3r/PrintConfig.cpp:1026
+#: src/libslic3r/PrintConfig.cpp:1305 src/libslic3r/PrintConfig.cpp:1371
+#: src/libslic3r/PrintConfig.cpp:1552 src/libslic3r/PrintConfig.cpp:1987
+#: src/libslic3r/PrintConfig.cpp:2044
+msgid "Layers and Perimeters"
+msgstr "Vrstvy a perimetry"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:189
+msgid "Layers Slider Shortcuts"
+msgstr "PosuvnÃky"
+
+#. TRN To be shown in Print Settings "Bottom solid layers"
+#: rc/libslic3r/PrintConfig.cpp:149
+msgctxt "Layers"
+msgid "Bottom"
+msgstr "SpodnÃ"
+
+#. TRN To be shown in Print Settings "Top solid layers"
+#: src/libslic3r/PrintConfig.cpp:2043
+msgctxt "Layers"
+msgid "Top"
+msgstr "VrchnÃ"
+
+#: src/slic3r/GUI/MainFrame.cpp:527
+msgid "Left"
+msgstr "Zleva"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:597
+msgid "Left mouse click - add point"
+msgstr "Kliknutà levým tlaÄÃtkem myÅ¡i - pÅ™idánà bodu"
+
+#: src/slic3r/GUI/MainFrame.cpp:527
+msgid "Left View"
+msgstr "Pohled zleva"
+
+#: src/libslic3r/PrintConfig.cpp:1473 src/libslic3r/PrintConfig.cpp:1481
+msgid "Length"
+msgstr "Vzdálenost"
+
+#: src/libslic3r/PrintConfig.cpp:292
+msgid "Length of the cooling tube to limit space for cooling moves inside it "
+msgstr "Délka kovové trubiÄky urÄené pro ochlazenà a zformovánà filamentu po vytaženà z extruderu "
+
+#: src/libslic3r/PrintConfig.cpp:1491
+msgid "Lift Z"
+msgstr "Zvednout Z"
+
+#: src/libslic3r/PrintConfig.cpp:801
+msgid "Line"
+msgstr "Čára"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1050
+msgid "Load"
+msgstr "NaÄÃst"
+
+#: src/slic3r/GUI/MainFrame.cpp:349
+msgid "Load a model"
+msgstr "NaÄÃst model"
+
+#: src/libslic3r/PrintConfig.cpp:3116
+msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage."
+msgstr "NaÄtÄ›te a uložte nastavenà z/do daného adresáře. To je užiteÄné pro udržovánà různých profilů nebo konfiguracà ze sÃÅ¥ového úložiÅ¡tÄ›."
+
+#: src/libslic3r/PrintConfig.cpp:3100
+msgid "Load config file"
+msgstr "NaÄÃst konfiguraÄnà soubor"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:107
+msgid "Load Config from .ini/amf/3mf/gcode"
+msgstr "NaÄÃst konfiguraci z .ini/amf/3mf/gcode"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:110
+msgid "Load Config from .ini/amf/3mf/gcode and merge"
+msgstr "NaÄÃst konfiguraci z .ini/amf/3mf/gcode a slouÄit"
+
+#: src/slic3r/GUI/MainFrame.cpp:354
+msgid "Load configuration from project file"
+msgstr "NaÄÃst konfiguraci z projektu"
+
+#: src/libslic3r/PrintConfig.cpp:3101
+msgid "Load configuration from the specified file. It can be used more than once to load options from multiple files."
+msgstr "NaÄÃst konfiguraci ze zadaného souboru. Může být použito vÃcekrát než jednou pro naÄtenà z vÃce souborů."
+
+#: src/slic3r/GUI/MainFrame.cpp:352
+msgid "Load exported configuration file"
+msgstr "NaÄÃst exportovaný konfiguraÄnà soubor"
+
+#: src/slic3r/GUI/MainFrame.cpp:357
+msgid "Load presets from a bundle"
+msgstr "NaÄÃst pÅ™ednastavenà z balÃku"
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:97
+msgid "Load shape from STL..."
+msgstr "NaÄÃst tvar ze souboru STL…"
+
+#: lib/Slic3r/GUI/Plater.pm:779
+msgid "Loaded "
+msgstr "NaÄteno "
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:235
+msgid "loaded"
+msgstr "zaváděn"
+
+#: src/slic3r/GUI/Plater.cpp:1782
+msgid "Loaded"
+msgstr "NaÄteno"
+
+#: src/slic3r/GUI/Plater.cpp:1590
+msgid "Loading"
+msgstr "NaÄÃtánÃ"
+
+#: src/slic3r/GUI/GUI_App.cpp:339
+msgid "Loading of a current presets"
+msgstr "NaÄÃtánà aktuálnÃch pÅ™edvoleb"
+
+#: src/slic3r/GUI/GUI_App.cpp:407
+msgid "Loading of a mode view"
+msgstr "NaÄÃtánà režimu zobrazenÃ"
+
+#: src/slic3r/GUI/GUI_App.cpp:399
+msgid "Loading of current presets"
+msgstr "NaÄÃtánà aktuálnÃch pÅ™edvoleb"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:251
+#: src/slic3r/Utils/FixModelByWin10.cpp:378
+msgid "Loading repaired model"
+msgstr "NaÄÃtanà opraveného modelu"
+
+#: src/libslic3r/PrintConfig.cpp:575
+msgid "Loading speed"
+msgstr "Rychlost zavádÄ›nÃ"
+
+#: src/libslic3r/PrintConfig.cpp:583
+msgid "Loading speed at the start"
+msgstr "PoÄáteÄnà rychlost zavádÄ›nÃ"
+
+#: lib/Slic3r/GUI/Plater.pm:713
+msgid "Loading…"
+msgstr "NaÄÃtánÃ…"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:851
+msgid "Lock supports under new islands"
+msgstr "Ukotvi podpěry pod novými ostrůvky"
+
+#: src/slic3r/GUI/Tab.cpp:3103
+msgid "LOCKED LOCK icon indicates that the settings are the same as the system values for the current option group"
+msgstr "Ikona ZAMKNUTÉHO ZÃMKU indikuje, že nastavenà jsou stejná jako systémové hodnoty pro aktuálnà skupinu nastavenÃ"
+
+#: src/slic3r/GUI/Tab.cpp:3119
+msgid "LOCKED LOCK icon indicates that the value is the same as the system value."
+msgstr "Ikona ZAMKNUTÉHO ZÃMKU indikuje, že hodnota je shodná se systémovou hodnotou."
+
+#: src/slic3r/GUI/Tab.cpp:3064
+msgid "LOCKED LOCK;indicates that the settings are the same as the system values for the current option group"
+msgstr "ZAMKNUTà ZÃMEK; indikuje, že nastavenà jsou stejná jako systémové hodnoty pro aktuálnà skupinu nastavenÃ"
+
+#: src/libslic3r/PrintConfig.cpp:3119
+msgid "Logging level"
+msgstr "Úroveň logovánÃ"
+
+#: src/libslic3r/PrintConfig.cpp:1625
+msgid "Loops (minimum)"
+msgstr "SmyÄek (minimálnÄ›)"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:172
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:174
+msgid "Lower Layer"
+msgstr "Nižšà vrstva"
+
+#: src/slic3r/GUI/Tab.cpp:2136 src/slic3r/GUI/Tab.cpp:2209
+#: src/libslic3r/PrintConfig.cpp:1077 src/libslic3r/PrintConfig.cpp:1087
+#: src/libslic3r/PrintConfig.cpp:1097 src/libslic3r/PrintConfig.cpp:1110
+#: src/libslic3r/PrintConfig.cpp:1121 src/libslic3r/PrintConfig.cpp:1132
+#: src/libslic3r/PrintConfig.cpp:1143
+msgid "Machine limits"
+msgstr "Limity stroje"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:129
+msgid "Main Shortcuts"
+msgstr "HlavnÃ"
+
+#: src/slic3r/GUI/Plater.cpp:143
+msgid "Manifold"
+msgstr "Model OK"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:908
+msgid "Manual editing"
+msgstr "Manuálnà úprava"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:675
+msgid "Manual editing [M]"
+msgstr "RuÄnà úprava [M]"
+
+#: src/slic3r/GUI/MainFrame.cpp:604
+msgid "Mate&rial Settings Tab"
+msgstr "Panel nastavenà mate&riálu"
+
+#: src/slic3r/GUI/Tab.cpp:3300
+msgid "Material"
+msgstr "Materiál"
+
+#: src/slic3r/GUI/Tab.hpp:391
+msgid "Material Settings"
+msgstr "Nastavenà materiálu"
+
+#: src/slic3r/GUI/Plater.cpp:140
+msgid "Materials"
+msgstr "Materiálů"
+
+#: src/libslic3r/PrintConfig.cpp:1152 src/libslic3r/PrintConfig.cpp:1161
+msgid "Max"
+msgstr "Maximum"
+
+#: src/libslic3r/PrintConfig.cpp:2470
+msgid "Max bridge length"
+msgstr "Maximálnà délka mostu"
+
+#: src/libslic3r/PrintConfig.cpp:2546
+msgid "Max merge distance"
+msgstr "Maximálnà vzdálenost pro slouÄenÃ"
+
+#: src/libslic3r/PrintConfig.cpp:2479
+msgid "Max pillar linking distance"
+msgstr "Max. vzdálenost propojenà podpěr"
+
+#: src/libslic3r/PrintConfig.cpp:64
+msgid "Max print height"
+msgstr "Maximálnà výška tisku"
+
+#: src/libslic3r/PrintConfig.cpp:1172
+msgid "Max print speed"
+msgstr "Maximálnà rychlost tisku"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:55
+msgid "max slic3r version"
+msgstr "max verze slic3ru"
+
+#: src/libslic3r/PrintConfig.cpp:1203
+msgid "Max volumetric slope negative"
+msgstr "Maximálnà negativnà objemový sklon"
+
+#: src/libslic3r/PrintConfig.cpp:1192
+msgid "Max volumetric slope positive"
+msgstr "Maximálnà pozitivnà objemový sklon"
+
+#: src/libslic3r/PrintConfig.cpp:565 src/libslic3r/PrintConfig.cpp:1182
+msgid "Max volumetric speed"
+msgstr "Maximálnà objemová rychlost"
+
+#: src/libslic3r/PrintConfig.cpp:2167
+msgid "Maximal bridging distance"
+msgstr "Maximálnà vzdálenost pÅ™emostÄ›nÃ"
+
+#: src/libslic3r/PrintConfig.cpp:2168
+msgid "Maximal distance between supports on sparse infill sections. "
+msgstr "Maximálnà vzdálenost mezi podpÄ›rami u Äástà s Å™Ãdkou výplnÃ. "
+
+#: src/libslic3r/PrintConfig.cpp:1086
+msgid "Maximum acceleration %1%"
+msgstr "Maximálnà zrychlenà %1%"
+
+#: src/libslic3r/PrintConfig.cpp:1088
+msgid "Maximum acceleration of the %1% axis"
+msgstr "Maximálnà zrychlenà osy %1%"
+
+#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133
+msgid "Maximum acceleration when extruding"
+msgstr "Maximálnà zrychlenà při extruzi"
+
+#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144
+msgid "Maximum acceleration when retracting"
+msgstr "Maximálnà zrychlenà při retrakci"
+
+#: src/slic3r/GUI/Tab.cpp:2170
+msgid "Maximum accelerations"
+msgstr "Maximálnà zrychlenÃ"
+
+#: src/libslic3r/PrintConfig.cpp:1076
+msgid "Maximum feedrate %1%"
+msgstr "Maximálnà rychlost posuvu %1%"
+
+#: src/libslic3r/PrintConfig.cpp:1078
+msgid "Maximum feedrate of the %1% axis"
+msgstr "Maximálnà rychlost posuvu osy %1%"
+
+#: src/slic3r/GUI/Tab.cpp:2165
+msgid "Maximum feedrates"
+msgstr "Maximálnà rychlosti posuvu"
+
+#: src/libslic3r/PrintConfig.cpp:1096
+msgid "Maximum jerk %1%"
+msgstr "Maximálnà ryv (jerk) %1%"
+
+#: src/libslic3r/PrintConfig.cpp:1098
+msgid "Maximum jerk of the %1% axis"
+msgstr "Maximálnà ryv (jerk) osy %1%"
+
+#: src/libslic3r/PrintConfig.cpp:566
+msgid "Maximum volumetric speed allowed for this filament. Limits the maximum volumetric speed of a print to the minimum of print and filament volumetric speed. Set to zero for no limit."
+msgstr "Maximálnà povolený objem průtoku pro tento filament. Omezuje maximálnà rychlost průtoku pro tisk až na minimálnà rychlost průtoku pro tisk a filament. Zadejte nulu pro nastavenà bez omezenÃ."
+
+#: src/libslic3r/PrintConfig.cpp:3053
+msgid "Merge"
+msgstr "SlouÄit"
+
+#: src/libslic3r/PrintConfig.cpp:2432
+msgid "Merging bridges or pillars into another pillars can increase the radius. Zero means no increase, one means full increase."
+msgstr "SlouÄenà mostů nebo podpÄ›r do jiných podpÄ›r může zvýšit polomÄ›r. Hodnota 0 znamená žádné zvýšenÃ, hodnota 1 znamená maximálnà zvýšenÃ."
+
+#: src/libslic3r/SLAPrint.cpp:71
+msgid "Merging slices and calculating statistics"
+msgstr "SluÄovánà tiskových vrstev a výpoÄet statistik"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:248
+msgid "Mesh repair failed."
+msgstr "Oprava meshe selhala."
+
+#: src/libslic3r/PrintConfig.cpp:3120
+msgid "Messages with severity lower or eqal to the loglevel will be printed out. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal"
+msgstr "Zprávy se závažnostà nižšà nebo rovnou úrovni logovánà budou vypsány. 0: trace, 1: debug, 2: info, 3: warning, 4: error, 5: fatal"
+
+#: src/libslic3r/PrintConfig.cpp:1215 src/libslic3r/PrintConfig.cpp:1224
+msgid "Min"
+msgstr "Minimum"
+
+#: src/libslic3r/PrintConfig.cpp:1233
+msgid "Min print speed"
+msgstr "Minimálnà rychlost tisku"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53
+msgid "min slic3r version"
+msgstr "min verze slic3ru"
+
+#: src/libslic3r/PrintConfig.cpp:2507
+msgid "Minimal distance of the support points"
+msgstr "Minimálnà vzdálenost podpěrných bodů"
+
+#: src/libslic3r/PrintConfig.cpp:1241
+msgid "Minimal filament extrusion length"
+msgstr "Minimálnà délka extruze filamentu"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:877
+msgid "Minimal points distance: "
+msgstr "Minimálnà vzdálenost bodů:"
+
+#: src/libslic3r/PrintConfig.cpp:635
+msgid "Minimal purge on wipe tower"
+msgstr "Minimálnà vytlaÄený objem na ÄistÃcà věži"
+
+#: src/libslic3r/PrintConfig.cpp:1442
+msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input."
+msgstr "Minimálnà rozliÅ¡enà detailů, které se použÃvajà pro zjednoduÅ¡enà vstupnÃho souboru pro urychlenà slicovacà úlohy a snÞenà využità pamÄ›ti. Modely s vysokým rozliÅ¡enÃm Äasto obsahujà vÃce detailů než tiskárny dokážou vykreslit. Nastavte na nulu, chcete-li zakázat jakékoli zjednoduÅ¡enà a použÃt vstup v plném rozliÅ¡enÃ."
+
+#: src/libslic3r/PrintConfig.cpp:1109 src/libslic3r/PrintConfig.cpp:1111
+msgid "Minimum feedrate when extruding"
+msgstr "Minimálnà rychlosti posuvu během extruze"
+
+#: src/slic3r/GUI/Tab.cpp:2182
+msgid "Minimum feedrates"
+msgstr "Minimálnà rychlosti posuvu"
+
+#: src/libslic3r/PrintConfig.cpp:1452
+msgid "Minimum travel after retraction"
+msgstr "Minimálnà dráha extruderu po retrakci"
+
+#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122
+msgid "Minimum travel feedrate"
+msgstr "Minimálnà rychlost při přesunu"
+
+#: src/slic3r/GUI/Plater.cpp:2946
+msgid "Mirror"
+msgstr "Zrcadlit"
+
+#: src/slic3r/GUI/Plater.cpp:2946
+msgid "Mirror the selected object"
+msgstr "Zrcadlit vybraný objekt"
+
+#: src/slic3r/GUI/Plater.cpp:2939
+msgid "Mirror the selected object along the X axis"
+msgstr "Zrcadlit rozměr vybraného objektu podél osy X"
+
+#: src/slic3r/GUI/Plater.cpp:2941
+msgid "Mirror the selected object along the Y axis"
+msgstr "Zrcadlit rozměr vybraného objektu podél osy Y"
+
+#: src/slic3r/GUI/Plater.cpp:2943
+msgid "Mirror the selected object along the Z axis"
+msgstr "Zrcadlit rozměr vybraného objektu podél osy Z"
+
+#: src/slic3r/Utils/OctoPrint.cpp:69
+#, possible-c-format
+msgid "Mismatched type of print host: %s"
+msgstr "Nesprávný typ tiskového serveru: % s"
+
+#: src/libslic3r/GCode/PreviewData.cpp:176
+msgid "Mixed"
+msgstr "SmÃÅ¡ený"
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:87 src/slic3r/GUI/ConfigWizard.cpp:118
+#: src/slic3r/GUI/ConfigWizard.cpp:561 src/slic3r/GUI/ConfigWizard.cpp:575
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:150
+#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:84
+#: src/libslic3r/PrintConfig.cpp:59 src/libslic3r/PrintConfig.cpp:66
+#: src/libslic3r/PrintConfig.cpp:75 src/libslic3r/PrintConfig.cpp:210
+#: src/libslic3r/PrintConfig.cpp:285 src/libslic3r/PrintConfig.cpp:293
+#: src/libslic3r/PrintConfig.cpp:343 src/libslic3r/PrintConfig.cpp:353
+#: src/libslic3r/PrintConfig.cpp:473 src/libslic3r/PrintConfig.cpp:484
+#: src/libslic3r/PrintConfig.cpp:502 src/libslic3r/PrintConfig.cpp:680
+#: src/libslic3r/PrintConfig.cpp:1166 src/libslic3r/PrintConfig.cpp:1227
+#: src/libslic3r/PrintConfig.cpp:1245 src/libslic3r/PrintConfig.cpp:1263
+#: src/libslic3r/PrintConfig.cpp:1315 src/libslic3r/PrintConfig.cpp:1325
+#: src/libslic3r/PrintConfig.cpp:1446 src/libslic3r/PrintConfig.cpp:1454
+#: src/libslic3r/PrintConfig.cpp:1495 src/libslic3r/PrintConfig.cpp:1503
+#: src/libslic3r/PrintConfig.cpp:1513 src/libslic3r/PrintConfig.cpp:1521
+#: src/libslic3r/PrintConfig.cpp:1529 src/libslic3r/PrintConfig.cpp:1612
+#: src/libslic3r/PrintConfig.cpp:1828 src/libslic3r/PrintConfig.cpp:1898
+#: src/libslic3r/PrintConfig.cpp:1932 src/libslic3r/PrintConfig.cpp:2125
+#: src/libslic3r/PrintConfig.cpp:2132 src/libslic3r/PrintConfig.cpp:2139
+#: src/libslic3r/PrintConfig.cpp:2169 src/libslic3r/PrintConfig.cpp:2179
+#: src/libslic3r/PrintConfig.cpp:2189 src/libslic3r/PrintConfig.cpp:2297
+#: src/libslic3r/PrintConfig.cpp:2372 src/libslic3r/PrintConfig.cpp:2381
+#: src/libslic3r/PrintConfig.cpp:2390 src/libslic3r/PrintConfig.cpp:2400
+#: src/libslic3r/PrintConfig.cpp:2444 src/libslic3r/PrintConfig.cpp:2454
+#: src/libslic3r/PrintConfig.cpp:2473 src/libslic3r/PrintConfig.cpp:2483
+#: src/libslic3r/PrintConfig.cpp:2492 src/libslic3r/PrintConfig.cpp:2510
+#: src/libslic3r/PrintConfig.cpp:2525 src/libslic3r/PrintConfig.cpp:2539
+#: src/libslic3r/PrintConfig.cpp:2552 src/libslic3r/PrintConfig.cpp:2562
+msgid "mm"
+msgstr "mm"
+
+#: src/libslic3r/PrintConfig.cpp:1477 src/libslic3r/PrintConfig.cpp:1486
+msgid "mm (zero to disable)"
+msgstr "mm (nula pro vypnutÃ)"
+
+#: src/libslic3r/PrintConfig.cpp:847 src/libslic3r/PrintConfig.cpp:992
+#: src/libslic3r/PrintConfig.cpp:1797
+msgid "mm or %"
+msgstr "mm nebo %"
+
+#: src/libslic3r/PrintConfig.cpp:528
+msgid "mm or % (leave 0 for auto)"
+msgstr "mm nebo % (pro automatické ponechte 0)"
+
+#: src/libslic3r/PrintConfig.cpp:420 src/libslic3r/PrintConfig.cpp:835
+#: src/libslic3r/PrintConfig.cpp:967 src/libslic3r/PrintConfig.cpp:1354
+#: src/libslic3r/PrintConfig.cpp:1692 src/libslic3r/PrintConfig.cpp:1865
+#: src/libslic3r/PrintConfig.cpp:2023
+msgid "mm or % (leave 0 for default)"
+msgstr "mm nebo % (ponechte 0 jako výchozÃ)"
+
+#: src/libslic3r/PrintConfig.cpp:201 src/libslic3r/PrintConfig.cpp:577
+#: src/libslic3r/PrintConfig.cpp:585 src/libslic3r/PrintConfig.cpp:594
+#: src/libslic3r/PrintConfig.cpp:602 src/libslic3r/PrintConfig.cpp:629
+#: src/libslic3r/PrintConfig.cpp:648 src/libslic3r/PrintConfig.cpp:874
+#: src/libslic3r/PrintConfig.cpp:1001 src/libslic3r/PrintConfig.cpp:1079
+#: src/libslic3r/PrintConfig.cpp:1099 src/libslic3r/PrintConfig.cpp:1112
+#: src/libslic3r/PrintConfig.cpp:1123 src/libslic3r/PrintConfig.cpp:1176
+#: src/libslic3r/PrintConfig.cpp:1235 src/libslic3r/PrintConfig.cpp:1363
+#: src/libslic3r/PrintConfig.cpp:1537 src/libslic3r/PrintConfig.cpp:1546
+#: src/libslic3r/PrintConfig.cpp:1941 src/libslic3r/PrintConfig.cpp:2053
+msgid "mm/s"
+msgstr "mm/s"
+
+#: src/libslic3r/PrintConfig.cpp:430 src/libslic3r/PrintConfig.cpp:856
+#: src/libslic3r/PrintConfig.cpp:1651 src/libslic3r/PrintConfig.cpp:1702
+#: src/libslic3r/PrintConfig.cpp:1908 src/libslic3r/PrintConfig.cpp:2035
+msgid "mm/s or %"
+msgstr "mm/s nebo %"
+
+#: src/libslic3r/PrintConfig.cpp:160 src/libslic3r/PrintConfig.cpp:303
+#: src/libslic3r/PrintConfig.cpp:815 src/libslic3r/PrintConfig.cpp:936
+#: src/libslic3r/PrintConfig.cpp:1089 src/libslic3r/PrintConfig.cpp:1134
+#: src/libslic3r/PrintConfig.cpp:1145 src/libslic3r/PrintConfig.cpp:1334
+msgid "mm/s²"
+msgstr "mm/s²"
+
+#: src/libslic3r/PrintConfig.cpp:1661
+msgid "mm²"
+msgstr "mm²"
+
+#: src/libslic3r/PrintConfig.cpp:640
+msgid "mm³"
+msgstr "mm³"
+
+#: src/libslic3r/PrintConfig.cpp:569 src/libslic3r/PrintConfig.cpp:1185
+msgid "mm³/s"
+msgstr "mm³/s"
+
+#: src/libslic3r/PrintConfig.cpp:1197 src/libslic3r/PrintConfig.cpp:1208
+msgid "mm³/s²"
+msgstr "mm³/s²"
+
+#: src/slic3r/GUI/GUI_App.cpp:681
+msgid "Mode"
+msgstr "Režim"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58
+msgid "model"
+msgstr "model"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:340
+msgid "Model fixing"
+msgstr "Opravovánà modelu"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:423
+#: src/slic3r/Utils/FixModelByWin10.cpp:426
+msgid "Model Repair by the Netfabb service"
+msgstr "Oprava modelu službou Netfabb"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:406
+msgid "Model repair canceled"
+msgstr "Oprava modelu byla zrušena"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:426
+msgid "Model repair failed: \n"
+msgstr "Oprava modelu selhala:\n"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:400
+msgid "Model repair finished"
+msgstr "Oprava modelu byla dokonÄena"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:423
+msgid "Model repaired successfully"
+msgstr "Model byl úspěšně opraven"
+
+#: src/slic3r/GUI/Preset.cpp:207
+msgid "modified"
+msgstr "upraveno"
+
+#: src/slic3r/GUI/Tab.cpp:1100
+msgid "Modifiers"
+msgstr "Modifikátory"
+
+#: src/libslic3r/PrintConfig.cpp:719
+msgid "money/kg"
+msgstr "korun/kg"
+
+#: lib/Slic3r/GUI/Plater.pm:255
+msgid "More"
+msgstr "VÃce"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1238
+msgid "Move clipping plane"
+msgstr "Posunout řezovou rovinu"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:183
+msgid "Move current slider thumb Down"
+msgstr "Posunout aktivnà posuvnÃk dolů"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:182
+msgid "Move current slider thumb Up"
+msgstr "Posunout aktivnà posuvnÃk nahoru"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:176
+msgid "Move current slider thump Down"
+msgstr "Posunout aktivnà posuvnÃk dolů"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:175
+msgid "Move current slider thump Up"
+msgstr "Posunout aktivnà posuvnÃk nahoru"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1231
+msgid "Move point"
+msgstr "Posunout bod"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:51
+msgid "Move [M]"
+msgstr "Přesunout [M]"
+
+#: src/libslic3r/PrintConfig.cpp:2100
+msgid "Multi material printers may need to prime or purge extruders on tool changes. Extrude the excess material into the wipe tower."
+msgstr "Multimateriálové tiskárny mohou potÅ™ebovat, aby pÅ™i výmÄ›nÄ› nástrojů vyÄistili extrudery. VytlaÄà pÅ™ebyteÄný materiál do ÄistÃcà věže."
+
+#: src/slic3r/GUI/Plater.cpp:1661 src/slic3r/GUI/Plater.cpp:1769
+msgid "Multi-part object detected"
+msgstr "Detekován objekt obsahujÃcà vÃce ÄástÃ"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:400 src/slic3r/GUI/FirmwareDialog.cpp:436
+#, possible-c-format
+msgid "Multiple %s devices found. Please only connect one at a time for flashing."
+msgstr "Bylo nalezeno vÃce zaÅ™Ãzenà %s . BÄ›hem flashovánà mÄ›jte pÅ™ipojené pouze jedno."
+
+#: src/slic3r/GUI/Tab.cpp:1118
+msgid "Multiple Extruders"
+msgstr "VÃce Extruderů"
+
+#: src/slic3r/GUI/Plater.cpp:1766
+msgid "Multiple objects were loaded for a multi-material printer.\nInstead of considering them as multiple objects, should I consider\nthese files to represent a single object having multiple parts?\n"
+msgstr "Bylo nahráno vÃce objektů pro multi materiálovou tiskárnu.\nMajà být vloženy jako jeden objekt obsahujÃcà vÃce ÄástÃ, \nnamÃsto vloženà nÄ›kolika objektů?\n"
+
+#: src/libslic3r/PrintConfig.cpp:3050
+msgid "Multiply copies by creating a grid."
+msgstr "Vynásobà kopie vytvoÅ™enÃm mřÞky."
+
+#: src/libslic3r/PrintConfig.cpp:3045
+msgid "Multiply copies by this factor."
+msgstr "Vynásobà kopie tÃmto ÄÃslem."
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:176
+msgid "Name"
+msgstr "Název"
+
+#: src/libslic3r/PrintConfig.cpp:1418
+msgid "Name of the printer variant. For example, the printer variants may be differentiated by a nozzle diameter."
+msgstr "Název varianty tiskárny. Varianty tiskárny mohou být napÅ™Ãklad rozliÅ¡eny podle průmÄ›ru trysky."
+
+#: src/libslic3r/PrintConfig.cpp:1412
+msgid "Name of the printer vendor."
+msgstr "Název prodejce tiskárny."
+
+#: src/libslic3r/PrintConfig.cpp:1009
+msgid "Name of the profile, from which this profile inherits."
+msgstr "Název profilu, ze kterého tento profil zdÄ›dÃ."
+
+#: src/libslic3r/PrintConfig.cpp:1560
+msgid "Nearest"
+msgstr "NejbližšÃ"
+
+#: src/slic3r/GUI/BonjourDialog.cpp:55
+msgid "Network lookup"
+msgstr "Hledánà v sÃti"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:30
+#, possible-c-format
+msgid "New version of %s is available"
+msgstr "Je dostupná nová verze %s"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:29
+msgid "New version of Slic3r PE is available"
+msgstr "Je dostupná nová verze Slic3r PE"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:47
+msgid "New version:"
+msgstr "Nová verze:"
+
+#: src/libslic3r/PrintConfig.cpp:912
+msgid "No extrusion"
+msgstr "Žádná extruze"
+
+#: src/slic3r/GUI/MainFrame.cpp:635
+msgid "No previously sliced file."
+msgstr "Žádné dÅ™Ãve slicované soubory."
+
+#: src/slic3r/GUI/RammingChart.cpp:23
+msgid "NO RAMMING AT ALL"
+msgstr "ŽÃDNà RAPIDNà EXTRUZE"
+
+#: src/libslic3r/PrintConfig.cpp:2509
+msgid "No support points will be placed closer than this threshold."
+msgstr "Žádné podpůrné body nebudou umÃstÄ›ny blÞe než je tento práh."
+
+#: src/slic3r/GUI/ConfigWizard.cpp:190 src/slic3r/GUI/Plater.cpp:422
+#: src/libslic3r/GCode/PreviewData.cpp:162
+msgid "None"
+msgstr "Žádné"
+
+#: src/slic3r/GUI/Plater.cpp:1073
+msgid "normal mode"
+msgstr "normálnà režim"
+
+#: src/libslic3r/Zipper.cpp:49
+msgid "not a ZIP archive"
+msgstr "nenà ZIP archiv"
+
+#: src/slic3r/Utils/OctoPrint.cpp:90
+msgid "Note: OctoPrint version at least 1.1.0 is required."
+msgstr "Poznámka: Je vyžadován OctoPrint ve verzi alespoň 1.1.0."
+
+#: src/slic3r/GUI/Tab.cpp:1193 src/slic3r/GUI/Tab.cpp:1194
+#: src/slic3r/GUI/Tab.cpp:1576 src/slic3r/GUI/Tab.cpp:1577
+#: src/slic3r/GUI/Tab.cpp:1985 src/slic3r/GUI/Tab.cpp:1986
+#: src/slic3r/GUI/Tab.cpp:2079 src/slic3r/GUI/Tab.cpp:2080
+#: src/slic3r/GUI/Tab.cpp:3328 src/slic3r/GUI/Tab.cpp:3329
+msgid "Notes"
+msgstr "Poznámky"
+
+#: src/slic3r/GUI/GUI.cpp:277
+msgid "Notice"
+msgstr "OznámenÃ"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:118
+msgid "nozzle"
+msgstr "tryska"
+
+#: src/libslic3r/PrintConfig.cpp:1261
+msgid "Nozzle diameter"
+msgstr "Průměr trysky"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:560
+msgid "Nozzle Diameter:"
+msgstr "Průměr trysky:"
+
+#: src/libslic3r/PrintConfig.cpp:618
+msgid "Number of cooling moves"
+msgstr "PoÄet chladÃcÃch pohybů"
+
+#: src/slic3r/GUI/Tab.cpp:1845
+msgid "Number of extruders of the printer."
+msgstr "PoÄet extrudérů tiskárny."
+
+#: src/libslic3r/PrintConfig.cpp:1888
+msgid "Number of interface layers to insert between the object(s) and support material."
+msgstr "PoÄet interface vrstev vložených mezi objekt (objekty) a podpÄ›ry."
+
+#: src/libslic3r/PrintConfig.cpp:1627
+msgid "Number of loops for the skirt. If the Minimum Extrusion Length option is set, the number of loops might be greater than the one configured here. Set this to zero to disable skirt completely."
+msgstr "PoÄet obrysových smyÄek. Je-li nastavena možnost Minimálnà délka extruze, poÄet obrysových smyÄek může být vÄ›tšà než poÄet zde nakonfigurovaných. Nastavte tuto hodnotu na nulu, pro úplné deaktivovánÃ."
+
+#: src/libslic3r/PrintConfig.cpp:2214
+msgid "Number of pixels in"
+msgstr "PoÄet pixelů v ose"
+
+#: src/libslic3r/PrintConfig.cpp:2216
+msgid "Number of pixels in X"
+msgstr "PoÄet pixelů v ose X"
+
+#: src/libslic3r/PrintConfig.cpp:2222
+msgid "Number of pixels in Y"
+msgstr "PoÄet pixelů v ose Y"
+
+#: src/libslic3r/PrintConfig.cpp:151
+msgid "Number of solid layers to generate on bottom surfaces."
+msgstr "PoÄet plných vrstev."
+
+#: src/libslic3r/PrintConfig.cpp:1711
+msgid "Number of solid layers to generate on top and bottom surfaces."
+msgstr "PoÄet plných vrstev generovaných na vrchnÃch a spodnÃch povrÅ¡Ãch."
+
+#: src/libslic3r/PrintConfig.cpp:2045
+msgid "Number of solid layers to generate on top surfaces."
+msgstr "PoÄet vrchnÃch generovaných plných vrstev."
+
+#: src/libslic3r/PrintConfig.cpp:2303
+msgid "Number of the layers needed for the exposure time fade from initial exposure time to the exposure time"
+msgstr "PoÄet vrstev potÅ™ebných pro pÅ™echod z poÄáteÄnà doby osvitu na dobu osvitu."
+
+#: src/slic3r/GUI/Plater.cpp:218
+msgid "Number of tool changes"
+msgstr "PoÄet zmÄ›n nástroje"
+
+#: src/libslic3r/PrintConfig.cpp:2489
+msgid "Object elevation"
+msgstr "Nadzvednutà objektu"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1858
+msgid "Object manipulation"
+msgstr "Manipulace s objektem"
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:27
+msgid "Object Manipulation"
+msgstr "Manipulace s objektem"
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:78
+msgid "Object name"
+msgstr "Jméno objektu"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2412
+msgid "Object or Instance"
+msgstr "Objekt nebo Instanci"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1868
+msgid "Object Settings to modify"
+msgstr "Změna nastavenà objektu"
+
+#: src/slic3r/GUI/Plater.cpp:1875
+msgid "Object too large?"
+msgstr "Objekt moc velký?"
+
+#: src/libslic3r/PrintConfig.cpp:2161
+msgid "Object will be used to purge the nozzle after a toolchange to save material that would otherwise end up in the wipe tower and decrease print time. Colours of the objects will be mixed as a result."
+msgstr "Objekty budou použity k vyÄiÅ¡tÄ›nà barvy filamentu v trysce po zmÄ›nÄ› extruderu, aby se uÅ¡etÅ™il materiál, který by jinak skonÄil v ÄistÃcà věži. Výsledkem budou objekty s náhodnÄ› mixovanými barvami."
+
+#: src/slic3r/GUI/Plater.cpp:1018
+msgid "object(s)"
+msgstr "objekt(y)"
+
+#: src/slic3r/GUI/Plater.cpp:1043 src/slic3r/GUI/Plater.cpp:1058
+msgid "objects"
+msgstr "objekty"
+
+#: xs/src/libslic3r/PrintConfig.cpp:2006
+msgid "Objects will be used to wipe the nozzle after a toolchange to save material that would otherwise end up in the wipe tower and decrease print time. Colours of the objects will be mixed as a result."
+msgstr "Objekty budou použity k vyÄiÅ¡tÄ›nà barvy filamentu v trysce po zmÄ›nÄ› extruderu, aby se uÅ¡etÅ™il materiál, který by jinak skonÄil v ÄistÃcà věži. Výsledkem budou objekty s náhodnÄ› mixovanými barvami."
+
+#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:808
+msgid "Octagram Spiral"
+msgstr "Octagram Spiral"
+
+#: xs/src/slic3r/GUI/Tab.cpp:1520 xs/src/slic3r/Utils/OctoPrint.cpp:110
+msgid "OctoPrint upload"
+msgstr "OctoPrint nahrávánÃ"
+
+#: lib/Slic3r/GUI/Plater.pm:1576
+msgid "OctoPrint upload finished."
+msgstr "Nahrávánà do OctoPrintu dokonÄeno."
+
+#: src/slic3r/GUI/BonjourDialog.cpp:76
+msgid "OctoPrint version"
+msgstr "Verze OctoPrintu"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2419
+msgid "of a current Object"
+msgstr "souÄasného Objektu"
+
+#: src/libslic3r/Print.cpp:1285
+msgid "One or more object were assigned an extruder that the printer does not have."
+msgstr "Jeden nebo vÃce objektů bylo pÅ™iÅ™azeno extruderu, který tiskárna nemá."
+
+#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:2425
+msgid "Only create support if it lies on a build plate. Don't create support on a print."
+msgstr "PodpÄ›ry vytvářet pouze v pÅ™ÃpadÄ›, že ležà na tiskové podložce. Nevytvářà podpÄ›ry na výtisky."
+
+#: src/libslic3r/PrintConfig.cpp:978
+msgid "Only infill where needed"
+msgstr "Výplň pouze kde je potřeba"
+
+#: src/slic3r/GUI/Tab.cpp:2271
+msgid "Only lift Z"
+msgstr "Pouze zvednout Z"
+
+#: src/libslic3r/PrintConfig.cpp:1500
+msgid "Only lift Z above"
+msgstr "Zvednout Z pouze nad"
+
+#: src/libslic3r/PrintConfig.cpp:1509
+msgid "Only lift Z below"
+msgstr "Zvednout Z pouze pod"
+
+#: src/libslic3r/PrintConfig.cpp:1279
+msgid "Only retract when crossing perimeters"
+msgstr "Provést retrakci pouze pÅ™i pÅ™ejÞdÄ›nà perimetrů"
+
+#: src/slic3r/GUI/Tab.cpp:1126
+msgid "Ooze prevention"
+msgstr "Prevence odkapávánÃ"
+
+#: lib/Slic3r/GUI/MainFrame.pm:215
+msgid "Open a model"
+msgstr "OtevÅ™Ãt model"
+
+#: src/slic3r/GUI/MainFrame.cpp:339
+msgid "Open a project file"
+msgstr "OtevÅ™Ãt soubor s projektem"
+
+#: src/slic3r/GUI/Tab.cpp:1745
+msgid "Open CA certificate file"
+msgstr "OtevÅ™Ãt soubor s certifikátem CA"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:105
+msgid "Open project STL/OBJ/AMF/3MF with config, delete bed"
+msgstr "OtevÅ™Ãt soubor STL/OBJ/AMF/3MF s konfiguracà (smaže tiskovou plochu)"
+
+#: lib/Slic3r/GUI/MainFrame.pm:215
+msgid "Open STL/OBJ/AMF/3MF…\tCtrl+O"
+msgstr "OtevÅ™Ãt STL/OBJ/AMF/3MF… Ctrl+O"
+
+#: src/slic3r/GUI/MainFrame.cpp:554
+#, possible-c-format
+msgid "Open the %s manual in your browser"
+msgstr "OtevÅ™Ãt návod k %s v prohlÞeÄi"
+
+#: src/slic3r/GUI/MainFrame.cpp:551
+#, possible-c-format
+msgid "Open the %s website in your browser"
+msgstr "OtevÅ™Ãt webovou stránku %s v prohlÞeÄi"
+
+#: lib/Slic3r/GUI/Plater.pm:2296
+msgid "Open the 3D cutting tool"
+msgstr "OtevÅ™ete nástroj 3D Å™ezánÃ"
+
+#: lib/Slic3r/GUI/Plater.pm:2300
+msgid "Open the object editor dialog"
+msgstr "Otevře dialogové okno editoru objektů"
+
+#: src/slic3r/GUI/MainFrame.cpp:544
+msgid "Open the Prusa Edition releases page in your browser"
+msgstr "OtevÅ™Ãt stránku vydánà Prusa Edice ve vaÅ¡em prohlÞeÄi"
+
+#: src/slic3r/GUI/MainFrame.cpp:542
+msgid "Open the Prusa3D drivers download page in your browser"
+msgstr "OtevÅ™Ãt stránku pro stahovánà Prusa 3D ovladaÄů ve vaÅ¡em prohlÞeÄi"
+
+#: src/slic3r/GUI/MainFrame.cpp:470
+msgid "Open the Slic3r manual in your browser"
+msgstr "OtevÅ™Ãt Slic3r návod ve vaÅ¡em prohlÞeÄi"
+
+#: src/slic3r/GUI/MainFrame.cpp:468
+msgid "Open the Slic3r website in your browser"
+msgstr "OtevÅ™Ãt webovou stránku Slic3ru ve vaÅ¡em prohlÞeÄi"
+
+#: src/slic3r/GUI/Plater.cpp:2994
+msgid "Optimize orientation"
+msgstr "Optimalizovat orientaci"
+
+#: src/slic3r/GUI/Plater.cpp:2994
+msgid "Optimize the rotation of the object for better print results."
+msgstr "Optimalizujte rotaci objektu pro lepšà výsledky tisku."
+
+#: src/libslic3r/PrintConfig.cpp:112
+msgid "Optimize travel moves in order to minimize the crossing of perimeters. This is mostly useful with Bowden extruders which suffer from oozing. This feature slows down both the print and the G-code generation."
+msgstr "Optimalizovat rychloposuny do poÅ™adà aby se minimalizovalo pÅ™ejÞdÄ›nà perimetrů. NejvÃce užiteÄné u Bowdenových extruderů které trpà na vytékánà filamentu. Toto nastavenà zpomaluje tisk i generovánà G-code."
+
+#: src/slic3r/GUI/Tab.cpp:1070
+msgid "Options for support material and raft"
+msgstr "Volby pro podpěry a raft"
+
+#: src/slic3r/GUI/Plater.cpp:2251
+msgid "Orientation found."
+msgstr "Orientace nalezena."
+
+#: src/slic3r/GUI/Plater.cpp:2185
+msgid "Orientation search canceled"
+msgstr "Hledávánà optimálnà orientace bylo zrušeno"
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:79
+msgid "Origin"
+msgstr "PoÄátek"
+
+#: src/slic3r/GUI/Tab.cpp:1165
+msgid "Other"
+msgstr "OstatnÃ"
+
+#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:1977
+msgid "Other layers"
+msgstr "Ostatnà vrstvy"
+
+#: xs/src/slic3r/GUI/ConfigWizard.cpp:252
+msgid "Other vendors"
+msgstr "Ostatnà výrobci"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:438
+msgid "Other Vendors"
+msgstr "Ostatnà výrobci"
+
+#: src/slic3r/GUI/Tab.cpp:1180 src/slic3r/GUI/Tab.cpp:3440
+msgid "Output file"
+msgstr "Výstupnà soubor"
+
+#: src/libslic3r/PrintConfig.cpp:3104
+msgid "Output File"
+msgstr "Výstupnà soubor"
+
+#: src/libslic3r/PrintConfig.cpp:1294
+msgid "Output filename format"
+msgstr "Formát názvu výstupnÃho souboru"
+
+#: src/libslic3r/PrintConfig.cpp:2992
+msgid "Output Model Info"
+msgstr "Info o výstupnÃm modelu"
+
+#: src/slic3r/GUI/Tab.cpp:1168 src/slic3r/GUI/Tab.cpp:3439
+msgid "Output options"
+msgstr "Možnosti výstupu"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:229 src/libslic3r/GCode/PreviewData.cpp:165
+msgid "Overhang perimeter"
+msgstr "Perimetr převisu"
+
+#: src/libslic3r/PrintConfig.cpp:1955
+msgid "Overhang threshold"
+msgstr "Meznà úhel převisu"
+
+#: src/slic3r/GUI/Tab.cpp:1153
+msgid "Overlap"
+msgstr "PÅ™ekrytÃ"
+
+#: src/slic3r/GUI/MainFrame.cpp:478
+msgid "P&rint Settings Tab"
+msgstr "Panel nastavenà tisku"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:79 src/slic3r/GUI/GUI_ObjectList.cpp:520
+#: src/slic3r/GUI/Tab.cpp:3425 src/slic3r/GUI/Tab.cpp:3426
+#: src/libslic3r/PrintConfig.cpp:2516 src/libslic3r/PrintConfig.cpp:2523
+#: src/libslic3r/PrintConfig.cpp:2537 src/libslic3r/PrintConfig.cpp:2547
+#: src/libslic3r/PrintConfig.cpp:2560 src/libslic3r/PrintConfig.cpp:2569
+msgid "Pad"
+msgstr "Podložka"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:39
+msgid "Pad and Support"
+msgstr "Podložka a Podppěry"
+
+#: src/libslic3r/PrintConfig.cpp:2559
+msgid "Pad edge radius"
+msgstr "Poloměr hrany podložky"
+
+#: src/libslic3r/PrintConfig.cpp:2532
+msgid "Pad wall height"
+msgstr "Výška boÄnice podložky"
+
+#: src/libslic3r/PrintConfig.cpp:2568
+msgid "Pad wall slope"
+msgstr "Sklon boÄnice podložky"
+
+#: src/libslic3r/PrintConfig.cpp:2522
+msgid "Pad wall thickness"
+msgstr "Tloušťka stěny podložky"
+
+#: src/slic3r/GUI/Field.cpp:108
+msgid "parameter name"
+msgstr "název parametru"
+
+#: src/slic3r/GUI/Field.cpp:184
+msgid "Parameter validation"
+msgstr "Validace parametru"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2412
+msgid "Part"
+msgstr "Část"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1881
+msgid "Part manipulation"
+msgstr "Manipulace s Äástmi"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1872
+msgid "Part Settings to modify"
+msgstr "ZmÄ›na nastavenà Äásti"
+
+#: src/slic3r/GUI/MainFrame.cpp:456
+msgid "Paste clipboard"
+msgstr "Vložit ze schránky"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:140
+msgid "Paste from clipboard"
+msgstr "Vložit ze schránky"
+
+#: src/libslic3r/PrintConfig.cpp:1915
+msgid "Pattern"
+msgstr "Vzor"
+
+#: src/libslic3r/PrintConfig.cpp:1805
+msgid "Pattern angle"
+msgstr "Úhel vzoru"
+
+#: src/libslic3r/PrintConfig.cpp:1929
+msgid "Pattern spacing"
+msgstr "RozteÄ podpÄ›r"
+
+#: src/libslic3r/PrintConfig.cpp:1917
+msgid "Pattern used to generate support material."
+msgstr "Vzor použitý pro generovánà podpěr."
+
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:36
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:198
+msgid "Perform cut"
+msgstr "Provést řez"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:227 src/libslic3r/GCode/PreviewData.cpp:163
+msgid "Perimeter"
+msgstr "Perimetr"
+
+#: src/libslic3r/PrintConfig.cpp:1339
+msgid "Perimeter extruder"
+msgstr "Extruder pro perimetry"
+
+#: src/slic3r/GUI/PresetHints.cpp:162
+msgid "perimeters"
+msgstr "perimetry"
+
+#: src/libslic3r/PrintConfig.cpp:1330 src/libslic3r/PrintConfig.cpp:1348
+#: src/libslic3r/PrintConfig.cpp:1360 src/libslic3r/PrintConfig.cpp:1370
+msgid "Perimeters"
+msgstr "Perimetry"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:440
+#, possible-c-format
+msgid "Pick another vendor supported by %s:"
+msgstr "Vyberte si jiného prodejce podporovaného v %s:"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:423
+msgid "Pick another vendor supported by Slic3r PE:"
+msgstr "Vyberte si jiného prodejce podporovaného v Slic3r PE:"
+
+#: src/libslic3r/PrintConfig.cpp:2430
+msgid "Pillar widening factor"
+msgstr "Koeficient rozšiřovánà podpěry"
+
+#: src/slic3r/GUI/Tab.cpp:3496
+msgid "Pinhead diameter should be smaller than the pillar diameter."
+msgstr "Průměr hrotu by měl být menšà než průměr podpěry."
+
+#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:32
+msgid "Place on face [F]"
+msgstr "UmÃstit plochou na podložku [F]"
+
+#: src/slic3r/GUI/Plater.cpp:2897
+msgid "Place one more copy of the selected object"
+msgstr "Přidá jednu kopii vybraného objektu"
+
+#: src/slic3r/GUI/MainFrame.cpp:161
+msgid "Plater"
+msgstr "Podložka"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
+msgid "Plater Shortcuts"
+msgstr "Podložka"
+
+#: src/slic3r/GUI/GUI.cpp:143
+msgid "Please check and fix your object list."
+msgstr "Zkontrolujte a opravte seznam objektů."
+
+#: src/slic3r/GUI/Tab.cpp:2797
+msgid "Please check your object list before preset changing."
+msgstr "PÅ™ed zmÄ›nou nastavenà zkontrolujte prosÃm seznam objektů."
+
+#: lib/Slic3r/GUI/Plater.pm:1897
+msgid "Please install the OpenGL modules to use this feature (see build instructions)."
+msgstr "Pro použità této funkce prosÃm nainstalujte OpenGL moduly (viz instrukce vlastnÃho sestavenÃ)."
+
+#: src/slic3r/GUI/GUI_App.cpp:742
+msgid "Please, check your changes before."
+msgstr "ProsÃm, nejdÅ™Ãve zkontrolujte provedené zmÄ›ny."
+
+#: src/libslic3r/PrintConfig.cpp:2235
+msgid "Portrait"
+msgstr "Orientace na výšku"
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:150
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:193
+msgid "Position"
+msgstr "Pozice"
+
+#: src/slic3r/GUI/Tab.cpp:2265
+msgid "Position (for multi-extruder printers)"
+msgstr "Pozice (pro tiskárny s vÃce extrudery)"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:177
+msgid "Position (mm)"
+msgstr "Pozice (mm)"
+
+#: src/libslic3r/PrintConfig.cpp:1553
+msgid "Position of perimeters starting points."
+msgstr "Pozice zaÄátku perimetrů."
+
+#: src/libslic3r/PrintConfig.cpp:2123
+msgid "Position X"
+msgstr "Pozice X"
+
+#: src/libslic3r/PrintConfig.cpp:2130
+msgid "Position Y"
+msgstr "Pozice Y"
+
+#: src/slic3r/GUI/Tab.cpp:1187 src/libslic3r/PrintConfig.cpp:1383
+msgid "Post-processing scripts"
+msgstr "PostprodukÄnà skripty"
+
+#: src/slic3r/GUI/MainFrame.cpp:489
+msgid "Pre&view"
+msgstr "Náhled"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:121 src/slic3r/GUI/Preferences.cpp:10
+msgid "Preferences"
+msgstr "NastavenÃ"
+
+#: src/libslic3r/PrintConfig.cpp:1571
+msgid "Preferred direction of the seam"
+msgstr "Preferovaný směr švu"
+
+#: src/libslic3r/PrintConfig.cpp:1582
+msgid "Preferred direction of the seam - jitter"
+msgstr "Preferovaný směr švu - rozkmit"
+
+#: src/slic3r/GUI/Tab.cpp:2758
+#, possible-c-format
+msgid "Preset (%s)"
+msgstr "Přednastavenà (%s)"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:148
+msgid "Press to scale or rotate selected objects\naround their own center"
+msgstr "StisknutÃm zmÄ›nÃte velikost nebo otoÄÃte vybranými objekty kolem vlastnÃho stÅ™edu"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:127
+msgid "Press to select multiple object or move multiple object with mouse"
+msgstr "StisknutÃm vyberte vÃce objektů nebo pÅ™esuňte vÃce objektů pomocà myÅ¡i"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:147
+#, no-c-format
+msgid "Press to snap by 5% in Gizmo scale\nor by 1mm in Gizmo move"
+msgstr "Stiskněte pro změnu velikosti s krokem 5%\nnebo pro posun s krokem 1mm"
+
+#: src/slic3r/GUI/Tab.cpp:2288
+msgid "Preview"
+msgstr "Náhled"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:176
+msgid "Preview Shortcuts"
+msgstr "Náhled"
+
+#: src/slic3r/GUI/MainFrame.cpp:641
+msgid "Previously sliced file ("
+msgstr "DÅ™Ãve slicovaný soubor ("
+
+#: src/libslic3r/PrintConfig.cpp:1773
+msgid "Prime all printing extruders"
+msgstr "PÅ™Ãprava vÅ¡ech tiskových extruderů"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1274
+msgid "print"
+msgstr "tisk"
+
+#: src/slic3r/GUI/MainFrame.cpp:510
+msgid "Print &Host Upload Queue"
+msgstr "Fronta na&hrávánà do tiskového serveru"
+
+#: src/libslic3r/PrintConfig.cpp:439
+msgid "Print contour perimeters from the outermost one to the innermost one instead of the default inverse order."
+msgstr "Tisk obrysových perimetrů od vnÄ›jÅ¡Ãch po vnitÅ™nà namÃsto opaÄného výchozÃho poÅ™adÃ."
+
+#: src/slic3r/GUI/ConfigWizard.cpp:541
+msgid "Print Diameters"
+msgstr "Průměry tisku"
+
+#: src/slic3r/GUI/Tab.cpp:1917 src/slic3r/GUI/Tab.cpp:2074
+msgid "Print Host upload"
+msgstr "Nahránà do tiskového serveru"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:122
+#: src/slic3r/GUI/PrintHostDialogs.cpp:135
+msgid "Print host upload queue"
+msgstr "Fronta nahrávanà do tiskového serveru"
+
+#: src/slic3r/GUI/Tab.hpp:317 src/slic3r/GUI/Tab.hpp:405
+msgid "Print Settings"
+msgstr "Nastavenà tisku"
+
+#: src/slic3r/GUI/Plater.cpp:681
+msgid "Print settings"
+msgstr "Nastavenà tisku"
+
+#: src/slic3r/GUI/Tab.cpp:1520
+msgid "Print speed override"
+msgstr "Přepsánà rychlosti tisku"
+
+#: src/slic3r/GUI/MainFrame.cpp:483
+msgid "Print&er Settings Tab"
+msgstr "Panel nastavenà tiskárny"
+
+#: src/slic3r/GUI/Plater.cpp:685
+msgid "Printer"
+msgstr "Tiskárna"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:48 src/slic3r/GUI/Preset.cpp:1278
+msgid "printer"
+msgstr "tiskárna"
+
+#: src/libslic3r/PrintConfig.cpp:2274 src/libslic3r/PrintConfig.cpp:2275
+msgid "Printer absolute correction"
+msgstr "Absolutnà korekce tiskárny"
+
+#: src/libslic3r/PrintConfig.cpp:2282 src/libslic3r/PrintConfig.cpp:2283
+msgid "Printer gamma correction"
+msgstr "Gamma korekce tiskárny"
+
+#: src/slic3r/GUI/Tab.cpp:926
+msgid "printer model"
+msgstr "model tiskárny"
+
+#: src/libslic3r/PrintConfig.cpp:1402
+msgid "Printer notes"
+msgstr "Poznámky o tiskárně"
+
+#: src/libslic3r/PrintConfig.cpp:2266 src/libslic3r/PrintConfig.cpp:2267
+#: src/libslic3r/PrintConfig.cpp:2268
+msgid "Printer scaling correction"
+msgstr "Korekce měřÃtka tisku"
+
+#: src/slic3r/GUI/Tab.hpp:368
+msgid "Printer Settings"
+msgstr "Nastavenà tiskárny"
+
+#: src/libslic3r/PrintConfig.cpp:42 src/libslic3r/PrintConfig.cpp:43
+msgid "Printer technology"
+msgstr "Technologie tisku"
+
+#: src/libslic3r/PrintConfig.cpp:1396
+msgid "Printer type"
+msgstr "Typ tiskárny"
+
+#: src/libslic3r/PrintConfig.cpp:1417
+msgid "Printer variant"
+msgstr "Varianta tiskárny"
+
+#: src/libslic3r/PrintConfig.cpp:1411
+msgid "Printer vendor"
+msgstr "Prodejce tiskárny"
+
+#: src/libslic3r/Print.cpp:1294
+msgid "Printing with multiple extruders of differing nozzle diameters. If support is to be printed with the current extruder (support_material_extruder == 0 or support_material_interface_extruder == 0), all nozzles have to be of the same diameter."
+msgstr "Tisk s vÃce extrudery různých průmÄ›rů trysek. Má-li být podpÄ›ra tisknuta aktuálnÃm extruderem (support_material_extruder == 0 nebo support_material_interface_extruder == 0), musà mÃt vÅ¡echny trysky stejný průmÄ›r."
+
+#: lib/Slic3r/GUI/Plater.pm:324
+msgid "Print…"
+msgstr "Tisk…"
+
+#: src/slic3r/GUI/MainFrame.cpp:704
+msgid "Processing "
+msgstr "Zpracovávám "
+
+#: lib/Slic3r/GUI/Plater.pm:713 lib/Slic3r/GUI/Plater.pm:727
+msgid "Processing input file\n"
+msgstr "Zpracovávám vstupnà soubor\n"
+
+#: src/slic3r/GUI/Plater.cpp:1600
+#, possible-c-format
+msgid "Processing input file %s\n"
+msgstr "Zpracovávám vstupnà soubor %s\n"
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2160
+msgid "Processing small holes"
+msgstr "Zpracovánà malých otvorů"
+
+#: src/slic3r/GUI/Tab.cpp:1201 src/slic3r/GUI/Tab.cpp:1585
+#: src/slic3r/GUI/Tab.cpp:1993 src/slic3r/GUI/Tab.cpp:2087
+#: src/slic3r/GUI/Tab.cpp:3337 src/slic3r/GUI/Tab.cpp:3446
+msgid "Profile dependencies"
+msgstr "Profilové závislosti"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:779
+msgid "Progress:"
+msgstr "Průběh:"
+
+#: src/slic3r/GUI/MainFrame.cpp:542
+msgid "Prusa 3D &Drivers"
+msgstr "Prusa 3&D OvladaÄe"
+
+#: lib/Slic3r/GUI/MainFrame.pm:338
+msgid "Prusa 3D Drivers"
+msgstr "Prusa 3D OvladaÄe"
+
+#: src/slic3r/GUI/MainFrame.cpp:544
+msgid "Prusa Edition &Releases"
+msgstr "Vydánà P&rusa Edice"
+
+#: lib/Slic3r/GUI/MainFrame.pm:341
+msgid "Prusa Edition Releases"
+msgstr "Vydánà Prusa Edice"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1109
+msgid "Prusa FFF Technology Printers"
+msgstr "Prusa tiskárny technologie FFF"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1112
+msgid "Prusa MSLA Technology Printers"
+msgstr "Prusa tiskárny technologie MSLA"
+
+#: src/libslic3r/PrintConfig.cpp:2153
+msgid "Purging after toolchange will done inside this object's infills. This lowers the amount of waste but may result in longer print time due to additional travel moves."
+msgstr "VyÄiÅ¡tÄ›nà trysky po výmÄ›nÄ› filamentu se provede uvnitÅ™ výplnà tohoto objektu. TÃm se snižuje množstvà odpadu, ale může to mÃt za následek delšà dobu tisku v důsledku dodateÄných pohybů."
+
+#: xs/src/libslic3r/PrintConfig.cpp:1996
+msgid "Purging into infill"
+msgstr "Čištěnà do výplně"
+
+#: xs/src/libslic3r/PrintConfig.cpp:2005
+msgid "Purging into objects"
+msgstr "Čištěnà do objektů"
+
+#: src/slic3r/GUI/Plater.cpp:456
+msgid "Purging volumes"
+msgstr "Objemy ÄiÅ¡tÄ›nÃ"
+
+#: src/libslic3r/PrintConfig.cpp:2106
+msgid "Purging volumes - load/unload volumes"
+msgstr "Objemy ÄiÅ¡tÄ›nà - zavádÄ›né / vyjmuté objemy"
+
+#: src/libslic3r/PrintConfig.cpp:2113
+msgid "Purging volumes - matrix"
+msgstr "Objemy ÄiÅ¡tÄ›nà - matice"
+
+#: lib/Slic3r/GUI/MainFrame.pm:232
+msgid "Q&uick Slice…\tCtrl+U"
+msgstr "R&ychlé SlicovánÃ…\tCtrl+U"
+
+#: src/slic3r/GUI/Tab.cpp:1019
+msgid "Quality (slower slicing)"
+msgstr "Kvalita (pomalejšà slicing)"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:854 src/slic3r/GUI/GUI_ObjectList.cpp:1139
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1145
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1377
+#, possible-c-format
+msgid "Quick Add Settings (%s)"
+msgstr "Rychlé přidánà nastavenà (%s)"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:112
+msgid "Quick slice"
+msgstr "Rychlé slicovánÃ"
+
+#: src/slic3r/GUI/MainFrame.cpp:383
+msgid "Quick Slice"
+msgstr "Rychlé SlicovánÃ"
+
+#: lib/Slic3r/GUI/MainFrame.pm:238
+msgid "Quick Slice and Save &As…\tCtrl+Alt+U"
+msgstr "Rychlé Slicovánà a Uložit &jako…\tCtrl+Alt+U"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:115
+msgid "Quick slice and Save as"
+msgstr "Rychlé Slicovánà a Uložit jako"
+
+#: src/slic3r/GUI/MainFrame.cpp:389
+msgid "Quick Slice and Save As"
+msgstr "Rychlé Slicovánà a Uložit jako"
+
+#: src/slic3r/GUI/MainFrame.cpp:409
+#, possible-c-format
+msgid "Quit %s"
+msgstr "UkonÄit %s"
+
+#: src/slic3r/GUI/MainFrame.cpp:340
+msgid "Quit Slic3r"
+msgstr "UkonÄit Slic3r"
+
+#: src/libslic3r/PrintConfig.cpp:479
+msgid "Radius"
+msgstr "Rádius"
+
+#: src/slic3r/GUI/Tab.cpp:1066
+msgid "Raft"
+msgstr "Raft"
+
+#: src/libslic3r/PrintConfig.cpp:1431
+msgid "Raft layers"
+msgstr "Vrstev raftu"
+
+#: xs/src/slic3r/GUI/Tab.cpp:1299
+msgid "Ramming"
+msgstr "Rapidnà extruze"
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:14
+msgid "Ramming customization"
+msgstr "Přizpůsobenà rapidnà extruze"
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:40
+msgid "Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n\nThis is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc."
+msgstr "Rapidnà extruze oznaÄuje rychlé vytlaÄenà filamentu tÄ›snÄ› pÅ™ed jeho výmÄ›nou za jiný v multi material tiskárnÄ› s jednÃm extruderem. ÚÄelem je správnÄ› vytvarovat konec vysouvaného filamentu tak, aby neblokoval zasunutà nového filamentu a také mohl být sám pozdÄ›ji opÄ›tovnÄ› zasunut. Tento proces je důležitý a rozdÃlné materiály mohou pro zÃskánà optimálnÃho tvaru vyžadovat různé rychlosti extruze. Z tohoto důvodu jsou objemové průtoky pÅ™i rapidnà extruzi uživatelsky upravitelné.\n\nToto nastavenà je urÄeno pro pokroÄilé uživatele, nesprávné nastavenà velmi pravdÄ›podobnÄ› povede k zaseknutà filamentu, vybrouÅ¡enà filamentu podávacÃm koleÄkem, atd."
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:90
+msgid "Ramming line spacing"
+msgstr "Rozestup linek při rapidnà extruzi"
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:88
+msgid "Ramming line width"
+msgstr "Å ÃÅ™ka linky pÅ™i rapidnà extruzi"
+
+#: src/libslic3r/PrintConfig.cpp:662
+msgid "Ramming parameters"
+msgstr "Parametry rapidnà extruze"
+
+#: src/slic3r/GUI/Tab.cpp:1545
+msgid "Ramming settings"
+msgstr "Nastavenà rapidnà extruze"
+
+#: src/libslic3r/PrintConfig.cpp:1559
+msgid "Random"
+msgstr "Náhodný"
+
+#: src/libslic3r/SLAPrint.cpp:72
+msgid "Rasterizing layers"
+msgstr "Rasterizace vrstev"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:151
+msgid "Re-configure"
+msgstr "Přenastavit"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:783
+msgid "Ready"
+msgstr "Připraveno"
+
+#: src/slic3r/GUI/Plater.cpp:2406
+msgid "Ready to slice"
+msgstr "PÅ™ipraven ke slicovánÃ"
+
+#: src/slic3r/GUI/MainFrame.cpp:526 src/libslic3r/PrintConfig.cpp:1562
+msgid "Rear"
+msgstr "Zezadu"
+
+#: src/slic3r/GUI/MainFrame.cpp:526
+msgid "Rear View"
+msgstr "Pohled zezadu"
+
+#: src/slic3r/GUI/PresetHints.cpp:264
+#, possible-c-format
+msgid "Recommended object thin wall thickness for layer height %.2f and "
+msgstr "DoporuÄená tloušťka stÄ›ny objektu pro výšku vrstvy %.2f a"
+
+#: src/slic3r/GUI/PresetHints.cpp:247
+msgid "Recommended object thin wall thickness: Not available due to invalid layer height."
+msgstr "DoporuÄená tloušťka stÄ›ny objektu: Nenà k dispozici kvůli neplatné výšce vrstvy."
+
+#: src/slic3r/GUI/GUI_App.cpp:386 src/slic3r/GUI/GUI_App.cpp:395
+msgid "Recreating"
+msgstr "ObnovenÃ"
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:68
+msgid "Rectangular"
+msgstr "ObdélnÃkový"
+
+#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:796
+#: src/libslic3r/PrintConfig.cpp:1922
+msgid "Rectilinear"
+msgstr "PÅ™ÃmoÄará"
+
+#: src/libslic3r/PrintConfig.cpp:1923
+msgid "Rectilinear grid"
+msgstr "PÅ™ÃmoÄará mřÞka"
+
+#: src/slic3r/GUI/Tab.cpp:1037
+msgid "Reducing printing time"
+msgstr "Zkracovánà tiskového Äasu"
+
+#: src/slic3r/GUI/Plater.cpp:2924
+msgid "Reload from Disk"
+msgstr "Znovu naÄÃst z Disku"
+
+#: src/slic3r/GUI/Plater.cpp:2924
+msgid "Reload the selected file from Disk"
+msgstr "Znovu naÄÃst vybraný objekt z Disku"
+
+#: src/slic3r/GUI/Preferences.cpp:36
+msgid "Remember output directory"
+msgstr "Pamatovat si výstupnà složku"
+
+#: src/slic3r/GUI/Tab.cpp:2935
+msgid "remove"
+msgstr "odebrat"
+
+#: src/slic3r/GUI/Tab.cpp:2937
+msgid "Remove"
+msgstr "Odebrat"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:859
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:912
+msgid "Remove all points"
+msgstr "Odebrat všechny body"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:125
+msgid "Remove Instance from selected object"
+msgstr "Odebrat instanci vybraného objektu"
+
+#: src/slic3r/GUI/Plater.cpp:2899
+msgid "Remove one copy of the selected object"
+msgstr "Odstranà jednu kopii vybraného objektu"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1230
+msgid "Remove point"
+msgstr "Odebrat bod"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1233
+msgid "Remove point from selection"
+msgstr "Odebrat bod z výběru"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:855
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1237
+msgid "Remove selected points"
+msgstr "Odebrat oznaÄené body"
+
+#: src/slic3r/GUI/Plater.cpp:2891 src/slic3r/GUI/Plater.cpp:2909
+msgid "Remove the selected object"
+msgstr "Odstranit vybraný objekt"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:305
+msgid "Remove user profiles - install from scratch (a snapshot will be taken beforehand)"
+msgstr "Odstranit uživatelské profily - Äistá instalace (nejprve bude provedena záloha)"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1200
+msgid "Rename"
+msgstr "Přejmenovat"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2709
+msgid "Renaming"
+msgstr "PÅ™ejmenovánÃ"
+
+#: src/libslic3r/PrintConfig.cpp:3125
+msgid "Render with a software renderer"
+msgstr "Vykreslenà pomocà softwaru"
+
+#: src/libslic3r/PrintConfig.cpp:3126
+msgid "Render with a software renderer. The bundled MESA software renderer is loaded instead of the default OpenGL driver."
+msgstr "Vykreslenà pomocà softwaru. NamÃsto výchozÃho ovladaÄe OpenGL je naÄten dodaný softwarový renderer MESA."
+
+#: src/slic3r/GUI/MainFrame.cpp:772 src/libslic3r/PrintConfig.cpp:3058
+msgid "Repair"
+msgstr "Oprava"
+
+#: lib/Slic3r/GUI/MainFrame.pm:258
+msgid "Repair STL file…"
+msgstr "Opravit soubor STL…"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:387
+msgid "Repaired 3MF file contains more than one object"
+msgstr "Opravený soubor 3MF obsahuje vÃce než jeden objekt."
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:391
+msgid "Repaired 3MF file contains more than one volume"
+msgstr "Opravený soubor 3MF obsahuje vÃce než jedno tÄ›leso."
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:385
+msgid "Repaired 3MF file does not contain any object"
+msgstr "Opravený soubor 3MF neobsahuje žádný objekt"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:389
+msgid "Repaired 3MF file does not contain any volume"
+msgstr "Opravený soubor 3MF neobsahuje žádný objemové těleso"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:242
+msgid "Repairing model by the Netfabb service"
+msgstr "Opravovánà modelu službou Netfabb"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:113 src/slic3r/GUI/MainFrame.cpp:395
+msgid "Repeat last quick slice"
+msgstr "Opakovat poslednà rychlé slicovánÃ"
+
+#: src/slic3r/GUI/MainFrame.cpp:395
+msgid "Repeat Last Quick Slice"
+msgstr "Opakovat poslednà rychlé slicovánÃ"
+
+#: src/slic3r/GUI/MainFrame.cpp:561
+msgid "Report an I&ssue"
+msgstr "Nahlá&sit chybu"
+
+#: lib/Slic3r/GUI/MainFrame.pm:361
+msgid "Report an Issue"
+msgstr "Nahlásit chybu"
+
+#: src/slic3r/GUI/MainFrame.cpp:561
+#, possible-c-format
+msgid "Report an issue on %s"
+msgstr "Nahlásit chybu v programu %s"
+
+#: src/slic3r/GUI/MainFrame.cpp:477
+msgid "Report an issue on the Slic3r Prusa Edition"
+msgstr "Nahlásit chybu ve Slic3eru Prusa Edice"
+
+#: src/slic3r/Utils/PresetUpdater.cpp:590
+#, possible-c-format
+msgid "requires max. %s"
+msgstr "vyžaduje max. %s"
+
+#: src/slic3r/Utils/PresetUpdater.cpp:588
+#, possible-c-format
+msgid "requires min. %s"
+msgstr "vyžaduje min. %s"
+
+#: src/slic3r/Utils/PresetUpdater.cpp:583
+#, possible-c-format
+msgid "requires min. %s and max. %s"
+msgstr "vyžaduje min. %s a max. %s"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:772
+msgid "Rescan"
+msgstr "Skenovat"
+
+#: src/slic3r/GUI/Tab.cpp:1879
+msgid "Rescan serial ports"
+msgstr "Znovu prohledat sériové porty"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1239
+msgid "Reset clipping plane"
+msgstr "Obnovit řezovou rovinu"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:928
+msgid "Reset direction"
+msgstr "Resetovat směr"
+
+#: src/libslic3r/PrintConfig.cpp:1441
+msgid "Resolution"
+msgstr "RozliÅ¡enÃ"
+
+#: src/libslic3r/PrintConfig.cpp:1459
+msgid "Retract amount before wipe"
+msgstr "Délka retrakce pÅ™ed oÄiÅ¡tÄ›nÃm"
+
+#: src/libslic3r/PrintConfig.cpp:1467
+msgid "Retract on layer change"
+msgstr "Retrakce při změně vrstvy"
+
+#: src/slic3r/GUI/Tab.cpp:2268
+msgid "Retraction"
+msgstr "Retrakce"
+
+#: src/libslic3r/PrintConfig.cpp:1453
+msgid "Retraction is not triggered when travel moves are shorter than this length."
+msgstr "Retrakce nenà spuštěna, pokud jsou rychloposuny pojezdu kratšà než tato délka."
+
+#: src/libslic3r/PrintConfig.cpp:1474
+msgid "Retraction Length"
+msgstr "Vzdálenost retrakce"
+
+#: src/libslic3r/PrintConfig.cpp:1482
+msgid "Retraction Length (Toolchange)"
+msgstr "Vzdálenost retrakce (při změně extruderu)"
+
+#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1535
+msgid "Retraction Speed"
+msgstr "Rychlost retrakce"
+
+#: src/slic3r/GUI/Tab.cpp:2284
+msgid "Retraction when tool is disabled (advanced settings for multi-extruder setups)"
+msgstr "Retrakce pro neaktivnà extruder (pokroÄilé nastavenà pro tiskárny typu MultiMaterial)"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:244
+msgid "Retractions"
+msgstr "Retrakce"
+
+#: src/slic3r/GUI/MainFrame.cpp:528
+msgid "Right"
+msgstr "Zprava"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:279
+msgid "Right button click the icon to change the object settings"
+msgstr "KlepnutÃm pravým tlaÄÃtkem myÅ¡i na ikonu zmÄ›nÃte nastavenà objektu"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:250
+msgid "Right button click the icon to fix STL through Netfabb"
+msgstr "KlepnutÃm pravým tlaÄÃtkem myÅ¡i se spustà oprava STL souboru pomocà služby Netfabb"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:598
+msgid "Right mouse click - remove point"
+msgstr "Kliknutà pravým tlaÄÃtkem myÅ¡i - odebránà bodu"
+
+#: src/slic3r/GUI/MainFrame.cpp:528
+msgid "Right View"
+msgstr "Pohled zprava"
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:233
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253
+#: src/libslic3r/PrintConfig.cpp:3062
+msgid "Rotate"
+msgstr "OtoÄit"
+
+#: lib/Slic3r/GUI/Plater.pm:2228
+msgid "Rotate 45° clockwise"
+msgstr "OtoÄit o 45° ve smÄ›ru hodinových ruÄiÄek"
+
+#: lib/Slic3r/GUI/Plater.pm:2231
+msgid "Rotate 45° counter-clockwise"
+msgstr "OtoÄit o 45° proti smÄ›ru hodinových ruÄiÄek"
+
+#: lib/Slic3r/GUI/Plater.pm:1042
+msgid "Rotate around "
+msgstr "OtoÄit okolo"
+
+#: src/libslic3r/PrintConfig.cpp:3067
+msgid "Rotate around X"
+msgstr "OtoÄit okolo osy X"
+
+#: src/libslic3r/PrintConfig.cpp:3072
+msgid "Rotate around Y"
+msgstr "OtoÄit okolo osy Y"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:35
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:195
+msgid "Rotate lower part upwards"
+msgstr "OtoÄit spodnà Äást Å™ezem dolů"
+
+#: lib/Slic3r/GUI/Plater.pm:2228
+msgid "Rotate the selected object by 45° clockwise"
+msgstr "OtoÄit vybraný objekt o 45° ve smÄ›ru hodinových ruÄiÄek"
+
+#: lib/Slic3r/GUI/Plater.pm:2231
+msgid "Rotate the selected object by 45° counter-clockwise"
+msgstr "OtoÄit vybraný objekt o 45° proti smÄ›ru hodinových ruÄiÄek"
+
+#: lib/Slic3r/GUI/Plater.pm:2236
+msgid "Rotate the selected object by an arbitrary angle"
+msgstr "OtoÄit vybraným objektem o libovolný úhel"
+
+#: lib/Slic3r/GUI/Plater.pm:2238
+msgid "Rotate the selected object by an arbitrary angle around X axis"
+msgstr "OtoÄit vybraným objektem o libovolný úhel kolem osy X"
+
+#: lib/Slic3r/GUI/Plater.pm:2241
+msgid "Rotate the selected object by an arbitrary angle around Y axis"
+msgstr "OtoÄit vybraným objektem o libovolný úhel kolem osy Y"
+
+#: lib/Slic3r/GUI/Plater.pm:2244
+msgid "Rotate the selected object by an arbitrary angle around Z axis"
+msgstr "OtoÄit vybraným objektem o libovolný úhel kolem osy Z"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:458
+msgid "Rotate [R]"
+msgstr "OtoÄit [R]"
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:151
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:194
+msgid "Rotation"
+msgstr "OtáÄenÃ"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:491
+msgid "Rotation (deg)"
+msgstr "OtáÄenà (stupnÄ›)"
+
+#: src/libslic3r/PrintConfig.cpp:3068
+msgid "Rotation angle around the X axis in degrees."
+msgstr "Úhel otoÄenà kolem osy X ve stupnÃch."
+
+#: src/libslic3r/PrintConfig.cpp:3073
+msgid "Rotation angle around the Y axis in degrees."
+msgstr "Úhel otoÄenà kolem osy Y ve stupnÃch."
+
+#: src/libslic3r/PrintConfig.cpp:3063
+msgid "Rotation angle around the Z axis in degrees."
+msgstr "Úhel otoÄenà kolem osy Z ve stupnÃch."
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2158
+msgid "Routing supports to model surface"
+msgstr "Směrovánà podpěr k povrchu modelu"
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2157
+msgid "Routing to ground"
+msgstr "Směrovánà k zemi"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:298 src/slic3r/GUI/GUI_App.cpp:658
+#, possible-c-format
+msgid "Run %s"
+msgstr "Spustit %s"
+
+#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81
+#: src/slic3r/GUI/WipeTowerDialog.cpp:82 src/libslic3r/PrintConfig.cpp:612
+#: src/libslic3r/PrintConfig.cpp:656 src/libslic3r/PrintConfig.cpp:671
+#: src/libslic3r/PrintConfig.cpp:2243 src/libslic3r/PrintConfig.cpp:2252
+#: src/libslic3r/PrintConfig.cpp:2312 src/libslic3r/PrintConfig.cpp:2319
+msgid "s"
+msgstr "s"
+
+#: src/slic3r/GUI/MainFrame.cpp:677 src/slic3r/GUI/Tab.cpp:3239
+msgid "Save "
+msgstr "Uložit "
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1023
+msgid "Save changes?"
+msgstr "Uložit změny?"
+
+#: src/libslic3r/PrintConfig.cpp:2997
+msgid "Save config file"
+msgstr "Uložit konfiguraÄnà soubor"
+
+#: src/slic3r/GUI/MainFrame.cpp:786
+msgid "Save configuration as:"
+msgstr "Uložit konfiguraci jako:"
+
+#: src/libslic3r/PrintConfig.cpp:2998
+msgid "Save configuration to the specified file."
+msgstr "Uložit konfiguraci do zadaného souboru."
+
+#: src/slic3r/GUI/Tab.cpp:130
+msgid "Save current "
+msgstr "Uložit stávajÃcà "
+
+#: src/slic3r/GUI/MainFrame.cpp:341
+msgid "Save current project file"
+msgstr "Uložit stávajÃcà projekt"
+
+#: src/slic3r/GUI/MainFrame.cpp:343
+msgid "Save current project file as"
+msgstr "Uložit stávajÃcà projekt jako"
+
+#: src/slic3r/GUI/Plater.cpp:1938
+msgid "Save file as:"
+msgstr "Uložit soubor jako:"
+
+#: src/slic3r/GUI/Plater.cpp:3433
+msgid "Save G-code file as:"
+msgstr "Uložit G-code jako:"
+
+#: src/slic3r/GUI/MainFrame.cpp:757
+msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
+msgstr "Uložit soubor OBJ (méně náchylný na chyby souřadnic než STL) jako:"
+
+#: src/slic3r/GUI/Tab.hpp:417
+msgid "Save preset"
+msgstr "Uložit pÅ™ednastavenÃ"
+
+#: src/slic3r/GUI/MainFrame.cpp:843
+msgid "Save presets bundle as:"
+msgstr "Uložit balÃk pÅ™ednastavenà jako:"
+
+#: src/slic3r/GUI/MainFrame.cpp:343
+msgid "Save Project &as"
+msgstr "Uložit Projekt j&ako"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:109
+msgid "Save project (3MF)"
+msgstr "Uložit projekt (3MF)"
+
+#: src/slic3r/GUI/Plater.cpp:3433
+msgid "Save SL1 file as:"
+msgstr "Uložit SL1 soubor jako:"
+
+#: src/slic3r/GUI/MainFrame.cpp:692
+msgid "Save zip file as:"
+msgstr "Uložit ZIP soubor jako:"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:263
+#: src/slic3r/Utils/FixModelByWin10.cpp:270
+#: src/slic3r/Utils/FixModelByWin10.cpp:302
+msgid "Saving mesh into the 3MF container failed."
+msgstr "Ukládánà meshe do 3MF kontejneru selhalo."
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:152
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:234
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254
+#: src/libslic3r/PrintConfig.cpp:3077
+msgid "Scale"
+msgstr "MěřÃtko"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:276
+msgid "Scale (%)"
+msgstr "MěřÃtko (%)"
+
+#: lib/Slic3r/GUI/Plater.pm:1133 lib/Slic3r/GUI/Plater.pm:1137
+msgid "Scale along "
+msgstr "Upravit rozměr podél "
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:195
+msgid "Scale factors"
+msgstr "MěřÃtka"
+
+#: lib/Slic3r/GUI/Plater.pm:2262 lib/Slic3r/GUI/Plater.pm:2278
+msgid "Scale the selected object along a single axis"
+msgstr "Změnit rozměr vybraného objektu podél jedné osy"
+
+#: lib/Slic3r/GUI/Plater.pm:2267 lib/Slic3r/GUI/Plater.pm:2283
+msgid "Scale the selected object along the X axis"
+msgstr "Změnit rozměr vybraného objektu podél osy X"
+
+#: lib/Slic3r/GUI/Plater.pm:2264 lib/Slic3r/GUI/Plater.pm:2280
+msgid "Scale the selected object along the XYZ axes"
+msgstr "Změnit rozměr vybraného objektu podél os XYZ"
+
+#: lib/Slic3r/GUI/Plater.pm:2270 lib/Slic3r/GUI/Plater.pm:2286
+msgid "Scale the selected object along the Y axis"
+msgstr "Změnit rozměr vybraného objektu podél osy Y"
+
+#: lib/Slic3r/GUI/Plater.pm:2273 lib/Slic3r/GUI/Plater.pm:2289
+msgid "Scale the selected object along the Z axis"
+msgstr "Změnit rozměr vybraného objektu podél osy Z"
+
+#: src/libslic3r/PrintConfig.cpp:3086
+msgid "Scale to Fit"
+msgstr "ZmÄ›nit měřÃtko, aby se objekt veÅ¡el do tiskového prostoru"
+
+#: src/libslic3r/PrintConfig.cpp:3087
+msgid "Scale to fit the given volume."
+msgstr "Změnit velikost, aby se objekt vešel do zadaného tiskového prostoru."
+
+#: lib/Slic3r/GUI/Plater.pm:2278
+msgid "Scale to size"
+msgstr "Upravit do rozměru"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:51
+msgid "Scale [S]"
+msgstr "Upravit velikost [S]"
+
+#: lib/Slic3r/GUI/Plater.pm:260 lib/Slic3r/GUI/Plater.pm:276
+msgid "Scale…"
+msgstr "Velikost…"
+
+#: src/libslic3r/PrintConfig.cpp:3078
+msgid "Scaling factor or percentage."
+msgstr "Procentuálnà měřÃtko."
+
+#: src/libslic3r/PrintConfig.cpp:1551
+msgid "Seam position"
+msgstr "Pozice švu"
+
+#: src/libslic3r/PrintConfig.cpp:1572
+msgid "Seam preferred direction"
+msgstr "Preferovaný směr švu"
+
+#: src/libslic3r/PrintConfig.cpp:1581
+msgid "Seam preferred direction jitter"
+msgstr "Seam preferred direction jitter"
+
+#: src/slic3r/GUI/BonjourDialog.cpp:218
+msgid "Searching for devices"
+msgstr "Hledám zaÅ™ÃzenÃ"
+
+#: src/slic3r/GUI/Plater.cpp:2190
+msgid "Searching for optimal orientation"
+msgstr "Hledánà optimálnà orientace"
+
+#: lib/Slic3r/GUI/MainFrame.pm:300
+msgid "Select &Controller Tab\tCtrl+T"
+msgstr "Zobrazit panel OvladaÄ\tCtrl+T"
+
+#: lib/Slic3r/GUI/MainFrame.pm:311
+msgid "Select &Filament Settings Tab\tCtrl+3"
+msgstr "Zobrazit panel Nastavenà filamentu\tCtrl+3"
+
+#: lib/Slic3r/GUI/MainFrame.pm:294
+msgid "Select &Plater Tab\tCtrl+1"
+msgstr "Zobrazit panel Podložka\tCtrl+1"
+
+#: xs/src/slic3r/GUI/ConfigWizard.cpp:108
+msgid "Select all"
+msgstr "Vybrat vše"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:136
+msgid "Select All objects"
+msgstr "Vybrat všechny objekty"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1236
+msgid "Select all points"
+msgstr "Vybrat všechny body"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1089
+msgid "Select all standard printers"
+msgstr "Vybrat všechny standardnà tiskárny"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1234
+msgid "Select by rectangle"
+msgstr "OznaÄit obdélnÃkovým výbÄ›rem myÅ¡i"
+
+#: src/slic3r/GUI/MainFrame.cpp:806 src/slic3r/GUI/MainFrame.cpp:870
+msgid "Select configuration to load:"
+msgstr "Zvolte konfiguraci k naÄtenÃ:"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2834
+msgid "Select extruder number for selected objects and/or parts"
+msgstr "Vyberte ÄÃslo extruderu pro vybrané objekty a / nebo Äásti"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2847
+msgid "Select extruder number:"
+msgstr "Vyberte ÄÃslo extruderu:"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:117
+msgid "Select Filament Settings Tab"
+msgstr "Zobrazit panel Nastavenà filamentu"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:127
+msgid "Select multiple object/Move multiple object"
+msgstr "Vybrat vÃce objektů/PÅ™esunout vÃce objektů"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1251
+msgid "Select new extruder for the object/part"
+msgstr "Vyberte nový extruder pro objekt/Äást"
+
+#: xs/src/slic3r/GUI/ConfigWizard.cpp:109
+msgid "Select none"
+msgstr "OdznaÄit vÅ¡e"
+
+#: lib/Slic3r/GUI/MainFrame.pm:308
+msgid "Select P&rint Settings Tab\tCtrl+2"
+msgstr "Zobrazit panel Nastavenà tisku\tCtrl+2"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:114
+msgid "Select Plater Tab"
+msgstr "Zobrazit panel Podložka"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:116
+msgid "Select Print Settings Tab"
+msgstr "Zobrazit panel Nastavenà tisku"
+
+#: lib/Slic3r/GUI/MainFrame.pm:314
+msgid "Select Print&er Settings Tab\tCtrl+4"
+msgstr "Zobrazit panel Nastavenà tiskárny\tCtrl+4"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:118
+msgid "Select Printer Settings Tab"
+msgstr "Zobrazit panel Nastavenà tiskárny"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:917
+msgid "Select showing settings"
+msgstr "Zvolte nastavenà zobrazenà "
+
+#: src/slic3r/GUI/GUI_App.cpp:524
+msgid "Select the language"
+msgstr "Výběr jazyka"
+
+#: src/slic3r/GUI/Tab.cpp:57
+msgid "Select the print profiles this profile is compatible with."
+msgstr "Vyberte tiskové profily, s nimiž je tento profil kompatibilnÃ."
+
+#: src/slic3r/GUI/Tab.cpp:51
+msgid "Select the printers this profile is compatible with."
+msgstr "Vyberte tiskárny, s nimiž je tento profil kompatibilnÃ."
+
+#: src/slic3r/GUI/MainFrame.cpp:744
+msgid "Select the STL file to repair:"
+msgstr "Vyberte STL soubor k opravÄ›:"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2545
+msgid "Select type of part"
+msgstr "Vyberte typ souÄásti"
+
+#: src/slic3r/GUI/Plater.cpp:421
+msgid "Select what kind of support do you need"
+msgstr "Vyberte typ podpěr, které potřebujete"
+
+#: src/slic3r/GUI/MainFrame.cpp:444
+msgid "Selects all objects"
+msgstr "Vybrat všechny objekty"
+
+#: src/slic3r/GUI/Plater.cpp:3822
+msgid "Send G-code"
+msgstr "Odeslat G-code"
+
+#: xs/src/slic3r/Utils/OctoPrint.cpp:33
+msgid "Send G-Code to printer"
+msgstr "Odeslat G-code do tiskárny"
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:33
+msgid "Send G-Code to printer host"
+msgstr "Odeslat G-Code do tiskového serveru"
+
+#: src/slic3r/GUI/Plater.cpp:731 src/slic3r/GUI/Plater.cpp:3822
+msgid "Send to printer"
+msgstr "Odeslat do tiskárny"
+
+#: xs/src/slic3r/Utils/OctoPrint.cpp:111 lib/Slic3r/GUI/Plater.pm:1558
+msgid "Sending G-code file to the OctoPrint server..."
+msgstr "OdesÃlánà souboru G-code na server OctoPrint…"
+
+#: src/slic3r/GUI/Tab.cpp:1169
+msgid "Sequential printing"
+msgstr "SekvenÄnà tisk"
+
+#: src/slic3r/GUI/Tab.cpp:1874 src/libslic3r/PrintConfig.cpp:1591
+msgid "Serial port"
+msgstr "Sériový port"
+
+#: src/libslic3r/PrintConfig.cpp:1599
+msgid "Serial port speed"
+msgstr "Rychlost sériového portu"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:769
+msgid "Serial port:"
+msgstr "Sériový port:"
+
+#: src/slic3r/GUI/BonjourDialog.cpp:74
+msgid "Service name"
+msgstr "Název služby"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1192
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1331
+msgid "Set as a Separated Object"
+msgstr "Změnit na oddělený objekt"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1331
+msgid "Set as a Separated Objects"
+msgstr "Převést na oddělené objekty"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2833
+msgid "Set extruder for selected items"
+msgstr "Zvolte extruder pro vybrané položky"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:185
+msgid "Set lower thumb to current slider thumb"
+msgstr "Aktivovat spodnà ukazatel aktivnÃho posuvnÃku"
+
+#: src/slic3r/GUI/Plater.cpp:2901
+msgid "Set number of copies"
+msgstr "Zadat poÄet kopiÃ"
+
+#: lib/Slic3r/GUI/Plater.pm:2224
+msgid "Set number of copies…"
+msgstr "Zadat poÄet kopiÃ…"
+
+#: src/libslic3r/PrintConfig.cpp:1053
+msgid "Set silent mode for the G-code flavor"
+msgstr "Nastavit přiznak G-codu pro tichý režim"
+
+#: src/libslic3r/PrintConfig.cpp:2228
+msgid "Set the actual LCD display orientation inside the SLA printer. Portrait mode will flip the meaning of display width and height parameters and the output images will be rotated by 90 degrees."
+msgstr "Nastavte skuteÄnou orientaci LCD displeje uvnitÅ™ SLA tiskárny. Režim Orientace na výšku pÅ™evrátà význam parametrů Å¡ÃÅ™ky a výšky a výstupnà obrazy budou otoÄeny o 90 stupňů."
+
+#: src/slic3r/GUI/ConfigWizard.cpp:527
+msgid "Set the shape of your printer's bed."
+msgstr "Nastavte tvar a rozměry vašà tiskové podložky."
+
+#: src/libslic3r/PrintConfig.cpp:524
+msgid "Set this to a non-zero value to allow a manual extrusion width. If left to zero, Slic3r derives extrusion widths from the nozzle diameter (see the tooltips for perimeter extrusion width, infill extrusion width etc). If expressed as percentage (for example: 230%), it will be computed over layer height."
+msgstr "NastavenÃm kladné hodnoty povolÃte manuálnà šÃÅ™ku extruze. Pokud je hodnota ponechána na nule, Slic3r odvozuje Å¡ÃÅ™ku extruze z průmÄ›ru trysky (viz nápovÄ›dy pro Å¡ÃÅ™ku extruze perimetru, Å¡ÃÅ™ku extruze výplnÄ› apod.). Pokud je hodnota vyjádÅ™ena procenty (napÅ™Ãklad: 230%), vypoÄÃtá se z výšky vrstvy."
+
+#: src/libslic3r/PrintConfig.cpp:417
+msgid "Set this to a non-zero value to set a manual extrusion width for external perimeters. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%), it will be computed over layer height."
+msgstr "NastavenÃm na kladnou hodnotu, definuje Å¡ÃÅ™ku manuálnà extruze pro vnÄ›jšà obvod. Pokud je ponechána nula, použije se výchozà šÃÅ™ka extruze, pokud je nastavena, jinak se použije průmÄ›r trysky 1,125 x. Pokud je hodnota vyjádÅ™ena jako procento (napÅ™Ãklad 200%), vypoÄÃtá se podle výšky vrstvy."
+
+#: src/libslic3r/PrintConfig.cpp:831
+msgid "Set this to a non-zero value to set a manual extrusion width for first layer. You can use this to force fatter extrudates for better adhesion. If expressed as percentage (for example 120%) it will be computed over first layer height. If set to zero, it will use the default extrusion width."
+msgstr "NastavenÃm kladné hodnoty zvolÃte manuálnà šÃÅ™ku vytlaÄovánà pro prvnà vrstvu. Toto můžete použÃt k vytlaÄovánà tlustšà extruze pro lepšà pÅ™ilnavost. Pokud je vyjádÅ™eno jako procenty (napÅ™Ãklad 120%), bude vypoÄteno z výšky prvnà vrstvy. Pokud je nastavena na nulu, použije se výchozà šÃÅ™ka vytlaÄovánÃ."
+
+#: src/libslic3r/PrintConfig.cpp:1689
+msgid "Set this to a non-zero value to set a manual extrusion width for infill for solid surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height."
+msgstr "Zadejte kladnou hodnotu, chcete-li nastavit manuálnÄ› Å¡ÃÅ™ku extruze pro výplň plných povrchů. Pokud je ponechána nula, použije se standardnà šÃÅ™ka extruze, pokud je nastavena, jinak se použije průmÄ›r trysky 1,125 x. Pokud je vyjádÅ™ena procenty (napÅ™Ãklad 90%), bude vypoÄtena z výšky vrstvy."
+
+#: src/libslic3r/PrintConfig.cpp:2019
+msgid "Set this to a non-zero value to set a manual extrusion width for infill for top surfaces. You may want to use thinner extrudates to fill all narrow regions and get a smoother finish. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height."
+msgstr "Zadejte kladnou hodnotu, chcete-li nastavit manuálnÄ› Å¡ÃÅ™ku extruze pro výplň vrchnÃch ploch. Možná budete chtÃt použÃt tenÄà extruzi, abyste vyplnili vÅ¡echny úzké oblasti a zÃskali hladšà povrch. Pokud je ponechána nula, použije se výchozà šÃÅ™ka extruze, pokud je nastavena, jinak se použije průmÄ›r trysky. Pokud je vyjádÅ™ena procenty (napÅ™Ãklad 90%), bude vypoÄtena z výšky vrstvy."
+
+#: src/libslic3r/PrintConfig.cpp:963
+msgid "Set this to a non-zero value to set a manual extrusion width for infill. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. You may want to use fatter extrudates to speed up the infill and make your parts stronger. If expressed as percentage (for example 90%) it will be computed over layer height."
+msgstr "NastavenÃm kladné hodnoty upravÃte manuálnÄ› Å¡ÃÅ™ku extruze pro výplň. Pokud je ponechána nula, použije se standardnà šÃÅ™ka extruze, pokud je nastavena, jinak se použije průmÄ›r trysky 1,125 x. Je možné, že budete chtÃt použÃt tlustšà extruze, pro zrychlenà výplnÄ› a zpevnÄ›nà vaÅ¡ich výtisků. Pokud je vyjádÅ™eno jako procenty (napÅ™Ãklad 90%), bude vypoÄteno z výšky vrstvy."
+
+#: src/libslic3r/PrintConfig.cpp:1350
+msgid "Set this to a non-zero value to set a manual extrusion width for perimeters. You may want to use thinner extrudates to get more accurate surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%) it will be computed over layer height."
+msgstr "NastavenÃm na kladnou hodnotu nastavÃte manuálnÄ› Å¡ÃÅ™ku vytlaÄovánà perimetrů. Chcete-li zÃskat pÅ™esnÄ›jšà povrchy, můžete použÃt tenÄà extruze. Pokud je ponechána nula, použije se standardnà šÃÅ™ka extruze, pokud je nastavena, jinak se použije průmÄ›r trysky 1,125 x. Pokud je vyjádÅ™eno procenty (napÅ™Ãklad 200%), vypoÄte se z výšky vrstvy."
+
+#: src/libslic3r/PrintConfig.cpp:1862
+msgid "Set this to a non-zero value to set a manual extrusion width for support material. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height."
+msgstr "Zadejte kladnou hodnotu, chcete-li nastavit manuálnÄ› Å¡ÃÅ™ku extruze pro podpÄ›ry. Pokud je ponechána nula, použije se výchozà šÃÅ™ka extruze, pokud je nastavena, jinak se použije průmÄ›r trysky. Pokud je vyjádÅ™ena procenty (napÅ™Ãklad 90%), bude vypoÄtena z výšky vrstvy."
+
+#: src/libslic3r/PrintConfig.cpp:480
+msgid "Set this to the clearance radius around your extruder. If the extruder is not centered, choose the largest value for safety. This setting is used to check for collisions and to display the graphical preview in the plater."
+msgstr "Zadejte horizontálnà rádius koliznÃho prostoru okolo extruderu. Pokud tryska nenà v centru tohoto rádiusu, zvolte nejdelšà vzdálenost. Toto nastavenà sloužà ke kontrole kolizà a zobrazenà grafického náhledu na podložce."
+
+#: src/libslic3r/PrintConfig.cpp:65
+msgid "Set this to the maximum height that can be reached by your extruder while printing."
+msgstr "Nastavte tuto hodnotu na maximálnà výšku, která může být dosažena extruderem během tisku."
+
+#: src/libslic3r/PrintConfig.cpp:469
+msgid "Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects."
+msgstr "Zadejte vertikálnà vzdálenost mezi tryskou a (obvykle) tyÄemi osy X. Jinými slovy, je to výška koliznÃho prostoru okolo extruderu a pÅ™edstavuje maximálnà hloubku, které může extruder dosáhnout pÅ™ed kolizà s jinými, již vytiÅ¡tÄ›nými, objekty."
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:184
+msgid "Set upper thumb to current slider thumb"
+msgstr "Aktivovat hornà ukazatel aktivnÃho posuvnÃku"
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:143
+msgid "Settings"
+msgstr "NastavenÃ"
+
+#: lib/Slic3r/GUI/Plater.pm:264 lib/Slic3r/GUI/Plater.pm:279
+#: lib/Slic3r/GUI/Plater.pm:2300
+msgid "Settings…"
+msgstr "NastavenÃ…"
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:60
+msgid "Shape"
+msgstr "Tvar"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:246
+msgid "Shells"
+msgstr "Skořápky"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:599
+msgid "Shift + Left (+ drag) - select point(s)"
+msgstr "Shift + Levé tlaÄÃtko (klik nebo taženÃ) - výbÄ›r bodu(ů)"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:221
+msgid "Show"
+msgstr "Zobrazit"
+
+#: src/slic3r/GUI/MainFrame.cpp:559
+msgid "Show &Configuration Folder"
+msgstr "OtevÅ™Ãt adresář nastavenÃ"
+
+#: src/slic3r/GUI/MainFrame.cpp:563
+msgid "Show about dialog"
+msgstr "Zobrazit okno o Slic3ru"
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:339
+msgid "Show advanced settings"
+msgstr "Zobrazit rozÅ¡ÃÅ™ená nastavenÃ"
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:158
+msgid "Show error message"
+msgstr "Zobrazit chybovou hlášku"
+
+#: src/slic3r/GUI/Preferences.cpp:84
+msgid "Show incompatible print and filament presets"
+msgstr "Zobrazit nekompatibilnà přednastavenà tisku a filamentu"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:126
+msgid "Show keyboard shortcuts list"
+msgstr "Zobrazit přehled klávesových zkratek"
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:339
+msgid "Show simplified settings"
+msgstr "Zobrazit jednoduché nastavenÃ"
+
+#: src/slic3r/GUI/MainFrame.cpp:557
+msgid "Show system information"
+msgstr "Zobrazit systémové informace"
+
+#: src/slic3r/GUI/MainFrame.cpp:487
+msgid "Show the 3D editing view"
+msgstr "Zobrazit 3D editaci"
+
+#: src/slic3r/GUI/MainFrame.cpp:489
+msgid "Show the 3D slices preview"
+msgstr "Zobrazit 3D náhled vrstev"
+
+#: src/slic3r/GUI/MainFrame.cpp:480
+msgid "Show the filament settings"
+msgstr "Zobrazit nastavenà filamentu"
+
+#: src/libslic3r/PrintConfig.cpp:2983
+msgid "Show the full list of print/G-code configuration options."
+msgstr "Zobrazit kompletnà seznam možnostà konfigurace tisku / G-codu."
+
+#: src/libslic3r/PrintConfig.cpp:2988
+msgid "Show the full list of SLA print configuration options."
+msgstr "Zobrazit kompletnà seznam možnostà konfigurace SLA tisku."
+
+#: src/slic3r/GUI/MainFrame.cpp:566
+msgid "Show the list of the keyboard shortcuts"
+msgstr "Zobrazit seznam klávesových zkratek"
+
+#: src/slic3r/GUI/MainFrame.cpp:471
+msgid "Show the plater"
+msgstr "Zobrazit podložku"
+
+#: src/slic3r/GUI/MainFrame.cpp:478
+msgid "Show the print settings"
+msgstr "Zobrazit nastavenà tisku"
+
+#: lib/Slic3r/GUI/MainFrame.pm:300
+msgid "Show the printer controller"
+msgstr "Zobrazit ovladaÄ tiskárny"
+
+#: src/slic3r/GUI/MainFrame.cpp:483
+msgid "Show the printer settings"
+msgstr "Zobrazit nastavenà tiskárny"
+
+#: src/libslic3r/PrintConfig.cpp:2977
+msgid "Show this help."
+msgstr "Zobrazà tuto nápovědu."
+
+#: src/slic3r/GUI/MainFrame.cpp:559
+msgid "Show user configuration folder (datadir)"
+msgstr "Zobrazit uživatelský adresář konfigurace (datadir)"
+
+#: src/slic3r/GUI/Tab.cpp:2157
+msgid "Silent"
+msgstr "Tichý"
+
+#: src/slic3r/GUI/Plater.cpp:1077
+msgid "silent mode"
+msgstr "tichý režim"
+
+#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/wxExtensions.cpp:2459
+msgid "Simple"
+msgstr "Jednoduchý"
+
+#: src/slic3r/GUI/GUI_App.cpp:674
+msgid "Simple View Mode"
+msgstr "Jednoduchý režim"
+
+#: src/slic3r/GUI/Tab.cpp:2231 src/slic3r/GUI/Tab.cpp:2239
+msgid "Single extruder MM setup"
+msgstr "Nastavenà jednoho extruderu MM"
+
+#: src/libslic3r/PrintConfig.cpp:1767
+msgid "Single Extruder Multi Material"
+msgstr "MultiMaterial tisk s jednÃm extrudérem"
+
+#: src/slic3r/GUI/Tab.cpp:2240
+msgid "Single extruder multimaterial parameters"
+msgstr "Parametry jednoho multi materiálového extruderu"
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:72
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:153 src/slic3r/GUI/Plater.cpp:137
+#: src/slic3r/GUI/Tab.cpp:2257
+msgid "Size"
+msgstr "Rozměr"
+
+#: src/slic3r/GUI/Tab.cpp:1813 src/slic3r/GUI/Tab.cpp:2014
+msgid "Size and coordinates"
+msgstr "RozmÄ›ry a poÄátek"
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:73
+msgid "Size in X and Y of the rectangular plate."
+msgstr "RozmÄ›r obdélnÃkové tiskové podložky v ose X a Y."
+
+#: src/slic3r/GUI/GUI_Preview.cpp:235 src/slic3r/GUI/Tab.cpp:1050
+#: src/libslic3r/GCode/PreviewData.cpp:171
+msgid "Skirt"
+msgstr "Obrys"
+
+#: src/slic3r/GUI/Tab.cpp:1049
+msgid "Skirt and brim"
+msgstr "Obrys a lÃmec"
+
+#: src/libslic3r/PrintConfig.cpp:1617
+msgid "Skirt height"
+msgstr "Výška obrysu"
+
+#: src/libslic3r/PrintConfig.cpp:1626
+msgid "Skirt Loops"
+msgstr "PoÄet obrysových smyÄek"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1200
+msgid "SLA gizmo keyboard shortcuts"
+msgstr "Klávesové zkratky pro SLA gizma"
+
+#: src/slic3r/GUI/Plater.cpp:684 src/slic3r/GUI/Preset.cpp:1277
+msgid "SLA material"
+msgstr "SLA materiál"
+
+#: src/slic3r/GUI/Plater.cpp:683 src/slic3r/GUI/Preset.cpp:1276
+msgid "SLA print"
+msgstr "SLA tisk"
+
+#: src/libslic3r/PrintConfig.cpp:2331
+msgid "SLA print material notes"
+msgstr "Poznámky pro SLA materiál"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:995
+msgid "SLA Support Points [L]"
+msgstr "SLA Podpěrné Body [L]"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1055
+msgid "Slab"
+msgstr "Deska"
+
+#: src/slic3r/GUI/MainFrame.cpp:470
+msgid "Slic3r &Manual"
+msgstr "Slic3r návod"
+
+#: src/slic3r/GUI/MainFrame.cpp:468
+msgid "Slic3r &Website"
+msgstr "Slic3r &Webová stránka"
+
+#: src/libslic3r/PrintConfig.cpp:1268
+msgid "Slic3r can upload G-code files to a printer host. This field must contain the kind of the host."
+msgstr "Slic3r může nahrát soubory G-code do tiskového serveru. Toto pole musà obsahovat druh tiskového serveru."
+
+#: src/libslic3r/PrintConfig.cpp:89
+msgid "Slic3r can upload G-code files to a printer host. This field should contain the API Key or the password required for authentication."
+msgstr "Slic3r může nahrát soubory do tiskového serveru. Toto pole by mÄ›lo obsahovat klÃÄ API požadovaný pro ověřenÃ."
+
+#: src/libslic3r/PrintConfig.cpp:82
+msgid "Slic3r can upload G-code files to a printer host. This field should contain the hostname, IP address or URL of the printer host instance."
+msgstr "Slic3r může nahrát soubory G-code do tiskového serveru. Toto pole by mělo obsahovat název serveru (hostname), IP adresu nebo URL tiskového serveru."
+
+#: xs/src/libslic3r/PrintConfig.cpp:1110
+msgid "Slic3r can upload G-code files to OctoPrint. This field should contain the API Key required for authentication."
+msgstr "Slic3r může nahrát soubory G-code do OctoPrintu. Toto pole by mÄ›lo obsahovat klÃÄ API požadovaný pro ověřenÃ."
+
+#: xs/src/libslic3r/PrintConfig.cpp:1124
+msgid "Slic3r can upload G-code files to OctoPrint. This field should contain the hostname, IP address or URL of the OctoPrint instance."
+msgstr "Slic3r může nahrát soubory G-code do OctoPrintu. Toto pole by mělo obsahovat název hosta (hostname), IP adresu nebo URL instance OctoPrint."
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:111
+msgid "Slic3r configuration is incompatible"
+msgstr "Konfigurace Slic3ru nenà kompatibilnÃ"
+
+#: lib/Slic3r/GUI/Plater.pm:1021
+msgid "Slic3r Error"
+msgstr "Chyba Slic3ru"
+
+#: src/slic3r/GUI/MsgDialog.cpp:71
+msgid "Slic3r error"
+msgstr "Chyba Slic3ru"
+
+#: src/slic3r/GUI/MsgDialog.cpp:71
+msgid "Slic3r has encountered an error"
+msgstr "Došlo k chybě Slic3ru"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:111
+msgid "Slic3r incompatibility"
+msgstr "Nekompatibilita Slic3ru"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:168
+#, possible-c-format
+msgid "Slic3r PE now uses an updated configuration structure.\n\nSo called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\nAn inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n\nPlease proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates."
+msgstr "Slic3r PE nynà použÃvá aktualizovanou konfiguraÄnà strukturu.\n\nByly uvedeny takzvaná \"Systémová pÅ™ednastavenÃ\", která obsahujà výchozà nastavenà pro rozliÄné tiskárny. Tato systémová pÅ™ednastavenà nemohou být upravena, mÃsto toho si nynà uživatel může vytvoÅ™it svá vlastnà pÅ™ednastavenà tÃm, že zdÄ›dà nastavenà z jednoho ze systémových pÅ™ednastavenÃ.\nNovÄ› vytvoÅ™ené pÅ™ednastavenà může buÄ zdÄ›dit urÄitou hodnotu od svého pÅ™edchůdce nebo ji pÅ™epsat upravenou hodnotou.\n\nProsÃm postupujte dle %s, který následuje pro nastavenà nových pÅ™ednastavenà a vyberte si, zdali chcete jejich automatickou aktualizaci."
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:13
+msgid "Slic3r Prusa Edition - Keyboard Shortcuts"
+msgstr "Slic3r Prusa Edition - Klávesové zkratky"
+
+#: src/slic3r/GUI/SysInfoDialog.cpp:44
+msgid "Slic3r Prusa Edition - System Information"
+msgstr "Slic3r Prusa Edition - Systémové informace"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:45
+msgid "slic3r version"
+msgstr "verze slic3ru"
+
+#: src/slic3r/GUI/GUI_App.cpp:623
+msgid "Slic3r View Mode"
+msgstr "Režim zobrazenà Slic3ru"
+
+#: src/libslic3r/PrintConfig.cpp:1234
+msgid "Slic3r will not scale speed down below this speed."
+msgstr "Slic3r nebude měnit rychlost pod tuto rychlost."
+
+#: src/libslic3r/PrintConfig.cpp:2970
+msgid "Slice"
+msgstr "Slicovat"
+
+#: src/slic3r/GUI/MainFrame.cpp:383
+msgid "Slice a file into a G-code"
+msgstr "Slicovat soubor do G-code"
+
+#: src/slic3r/GUI/MainFrame.cpp:389
+msgid "Slice a file into a G-code, save as"
+msgstr "Slicovat soubor do G-code, uložit jako"
+
+#: lib/Slic3r/GUI/MainFrame.pm:251
+msgid "Slice file to a multi-layer SVG"
+msgstr "Slicovat soubor do vÃce-vrstvého SVG"
+
+#: src/libslic3r/PrintConfig.cpp:71
+msgid "Slice gap closing radius"
+msgstr "Poloměr uzavřenà mezery v tiskové vrstvě"
+
+#: src/slic3r/GUI/Plater.cpp:734 src/slic3r/GUI/Plater.cpp:2412
+#: src/slic3r/GUI/Plater.cpp:3618
+msgid "Slice now"
+msgstr "Slicovat"
+
+#: src/libslic3r/PrintConfig.cpp:2944
+msgid "Slice the model and export SLA printing layers as PNG."
+msgstr "Naslicuje model a exportuje SLA tiskové vrstvy jako PNG soubory."
+
+#: src/libslic3r/PrintConfig.cpp:2965
+msgid "Slice the model and export toolpaths as G-code."
+msgstr "Naslicujte model a exportujte cesty jako G-code."
+
+#: src/libslic3r/PrintConfig.cpp:2971
+msgid "Slice the model as FFF or SLA based on the printer_technology configuration value."
+msgstr "Slicovat model jako FFF nebo SLA tisk na základÄ› konfiguraÄnà hodnoty printer_technology."
+
+#: lib/Slic3r/GUI/MainFrame.pm:251
+msgid "Slice to SV&G…\tCtrl+G"
+msgstr "Slicovat do SV&G…\tCtrl+G"
+
+#: src/slic3r/GUI/Plater.cpp:193
+msgid "Sliced Info"
+msgstr "Informace o slicovánÃ"
+
+#: src/slic3r/GUI/MainFrame.cpp:704 src/slic3r/GUI/Plater.cpp:2412
+#: src/slic3r/GUI/Plater.cpp:3615 src/slic3r/GUI/Tab.cpp:1159
+#: src/slic3r/GUI/Tab.cpp:3436
+msgid "Slicing"
+msgstr "SlicovánÃ"
+
+#: lib/Slic3r/GUI/Plater.pm:1391
+msgid "Slicing cancelled"
+msgstr "Slicovánà zrušeno"
+
+#: src/libslic3r/SLAPrint.cpp:1459
+msgid "Slicing done"
+msgstr "Slicovánà dokonÄeno"
+
+#: src/slic3r/GUI/MainFrame.cpp:729
+msgid "Slicing Done!"
+msgstr "Slicovánà dokonÄeno!"
+
+#. TRN To be shown at the status bar on SLA slicing error.
+#: src/libslic3r/SLAPrint.cpp:709
+msgid "Slicing had to be stopped due to an internal error."
+msgstr "Slicovánà muselo být zastaveno kvůli vnitřnà chybě."
+
+#: src/libslic3r/SLAPrint.cpp:55
+msgid "Slicing model"
+msgstr "Slicovaný model"
+
+#: src/libslic3r/SLAPrint.cpp:59
+msgid "Slicing supports"
+msgstr "Slicovánà podpěr"
+
+#: lib/Slic3r/GUI/MainFrame.pm:483
+msgid "Slicing…"
+msgstr "SlicovánÃ…"
+
+#: src/libslic3r/PrintConfig.cpp:2249
+msgid "Slow"
+msgstr "Pomalý"
+
+#: src/libslic3r/PrintConfig.cpp:1635
+msgid "Slow down if layer print time is below"
+msgstr "Zpomalit tisk pokud je doba tisku kratšà než"
+
+#: src/libslic3r/PrintConfig.cpp:2250
+msgid "Slow tilt"
+msgstr "Pomalý náklon"
+
+#: src/libslic3r/PrintConfig.cpp:1646
+msgid "Small perimeters"
+msgstr "Malé perimetry"
+
+#: src/slic3r/GUI/GUI_App.cpp:697
+msgid "Snapshot name"
+msgstr "Název zálohy"
+
+#: src/slic3r/GUI/PresetHints.cpp:181
+msgid "solid infill"
+msgstr "plná výplň"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:231 src/libslic3r/PrintConfig.cpp:1687
+#: src/libslic3r/PrintConfig.cpp:1697 src/libslic3r/GCode/PreviewData.cpp:167
+msgid "Solid infill"
+msgstr "Plná výplň"
+
+#: src/libslic3r/PrintConfig.cpp:1675
+msgid "Solid infill every"
+msgstr "Plná výplň každou"
+
+#: src/libslic3r/PrintConfig.cpp:1667
+msgid "Solid infill extruder"
+msgstr "Extruder pro plnou výplň"
+
+#: src/libslic3r/PrintConfig.cpp:1658
+msgid "Solid infill threshold area"
+msgstr "Prahová hodnota plochy pro plnou výplň"
+
+#: src/slic3r/GUI/Tab.cpp:1014 src/libslic3r/PrintConfig.cpp:1710
+msgid "Solid layers"
+msgstr "Plných vrstev"
+
+#: src/libslic3r/PrintConfig.cpp:1832
+msgid "soluble"
+msgstr "rozpustný"
+
+#: src/libslic3r/PrintConfig.cpp:711
+msgid "Soluble material"
+msgstr "Rozpustný materiál"
+
+#: src/libslic3r/PrintConfig.cpp:712
+msgid "Soluble material is most likely used for a soluble support."
+msgstr "Rozpustný materiál je pÅ™evážnÄ› použÃván pro tisk rozpustných podpÄ›r."
+
+#: src/libslic3r/PrintConfig.cpp:889
+msgid "Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer's firmware to get a compatible output. The \"No extrusion\" flavor prevents Slic3r from exporting any extrusion value at all."
+msgstr "NÄ›které pÅ™Ãkazy G/M code, vÄetnÄ› Å™Ãzenà teploty a jiné, nejsou univerzálnÃ. Vyberte typ firmwaru který použÃvá vaÅ¡e tiskárna pro dosaženà kompatibilnÃho výstupu. PÅ™Ãkazy typu “No extrusion†zabraňujà Slic3ru zcela exportovat jakoukoliv hodnotu extruze."
+
+#: src/slic3r/GUI/GLCanvas3D.cpp:721
+msgid "Some objects are not visible when editing supports"
+msgstr "Některé objekty nejsou při úpravách podpěr viditelné"
+
+#: src/libslic3r/Print.cpp:1162
+msgid "Some objects are too close; your extruder will collide with them."
+msgstr "NÄ›které objekty jsou pÅ™ÃliÅ¡ blÃzko; Extruder do nich narazÃ."
+
+#: src/libslic3r/Print.cpp:1177
+msgid "Some objects are too tall and cannot be printed without extruder collisions."
+msgstr "NÄ›které objekty jsou pÅ™ÃliÅ¡ vysoké a nelze je tisknout bez kolizà extruderu."
+
+#: src/libslic3r/PrintConfig.cpp:2548
+msgid "Some objects can get along with a few smaller pads instead of a single big one. This parameter defines how far the center of two smaller pads should be. If theyare closer, they will get merged into one pad."
+msgstr "NÄ›které objekty mohou být na nÄ›kolika menÅ¡Ãch podložkách namÃsto jedné velké. Tento parametr definuje, jak daleko může být stÅ™ed dvou menÅ¡Ãch podložek. Pokud budou blÞe, budou slouÄeny do jedné podložky."
+
+#: src/libslic3r/PrintConfig.cpp:2086
+msgid "Some printers or printer setups may have difficulties printing with a variable layer height. Enabled by default."
+msgstr "NÄ›které tiskárny nebo nastavenà tiskárny mohou mÃt potÞe s tiskem s promÄ›nnou výškou vrstvy. Ve výchozÃm nastavenà je zapnuto."
+
+#: src/libslic3r/PrintConfig.cpp:1897
+msgid "Spacing between interface lines. Set zero to get a solid interface."
+msgstr "RozteÄ linià kontaktnÃch vrstev. Nastavte nulu pro zÃskánà plných kontaktnÃch vrstev."
+
+#: src/libslic3r/PrintConfig.cpp:1931
+msgid "Spacing between support material lines."
+msgstr "RozteÄ linià podpÄ›r."
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:71 src/slic3r/GUI/GUI_ObjectList.cpp:512
+#: src/slic3r/GUI/GUI_Preview.cpp:215 src/slic3r/GUI/Tab.cpp:1084
+#: src/libslic3r/PrintConfig.cpp:199 src/libslic3r/PrintConfig.cpp:426
+#: src/libslic3r/PrintConfig.cpp:871 src/libslic3r/PrintConfig.cpp:999
+#: src/libslic3r/PrintConfig.cpp:1361 src/libslic3r/PrintConfig.cpp:1598
+#: src/libslic3r/PrintConfig.cpp:1647 src/libslic3r/PrintConfig.cpp:1698
+#: src/libslic3r/PrintConfig.cpp:2029
+msgid "Speed"
+msgstr "Rychlost"
+
+#: src/libslic3r/PrintConfig.cpp:1600
+msgid "Speed (baud) of USB/serial port for printer connection."
+msgstr "Rychlost (baud) USB/sériového portu pro připojenà tiskárny."
#: src/libslic3r/GCode/PreviewData.cpp:400
msgid "Speed (mm/s)"
msgstr "Rychlost (mm/s)"
+#: src/libslic3r/PrintConfig.cpp:872
+msgid "Speed for filling small gaps using short zigzag moves. Keep this reasonably low to avoid too much shaking and resonance issues. Set zero to disable gaps filling."
+msgstr "Rychlost plnÄ›nà malých mezer pomocà krátkých cikcak pohybů. Udržujte tuto hodnotu pomÄ›rnÄ› nÃzkou, aby nedoÅ¡lo k pÅ™ÃliÅ¡ným otÅ™esům a problémům s rezonancÃ. Nastavte nulu pro vypnutà vyplnÄ›nà mezery."
+
+#: src/slic3r/GUI/Tab.cpp:1097
+msgid "Speed for non-print moves"
+msgstr "Netiskové rychlosti"
+
+#: src/libslic3r/PrintConfig.cpp:1362
+msgid "Speed for perimeters (contours, aka vertical shells). Set to zero for auto."
+msgstr "Rychlost pro perimetry (obrysy, neboli svislé stÄ›ny). Zadejte nulu pro automatické nastavenÃ."
+
+#: src/slic3r/GUI/Tab.cpp:1085
+msgid "Speed for print moves"
+msgstr "Rychlosti pohybů tiskárny"
+
+#: src/libslic3r/PrintConfig.cpp:200
+msgid "Speed for printing bridges."
+msgstr "Rychlost pro vytvářenà mostů."
+
+#: src/libslic3r/PrintConfig.cpp:1699
+msgid "Speed for printing solid regions (top/bottom/internal horizontal shells). This can be expressed as a percentage (for example: 80%) over the default infill speed above. Set to zero for auto."
+msgstr "Rychlost tisku plných oblastà (vrchnà / spodnà / vnitÅ™nà vodorovné stÄ›ny). Může být vyjádÅ™eno procenty (napÅ™Ãklad: 80%) oproti výchozà rychlosti vyplnÄ›nÃ. Pro automatické nastavenà zadejte nulu."
+
+#: src/libslic3r/PrintConfig.cpp:1906
+msgid "Speed for printing support material interface layers. If expressed as percentage (for example 50%) it will be calculated over support material speed."
+msgstr "Rychlost tisku podpÄ›rných interface vrstev. Pokud je vyjádÅ™en procentnà podÃl (napÅ™Ãklad 50%), vypoÄÃtá se podle rychlosti tisku podpÄ›r."
+
+#: src/libslic3r/PrintConfig.cpp:1940
+msgid "Speed for printing support material."
+msgstr "Rychlost tisku podpěr."
+
+#: src/libslic3r/PrintConfig.cpp:1000
+msgid "Speed for printing the internal fill. Set to zero for auto."
+msgstr "Rychlost tisku vnitřnà výplně. Pro automatické nastavenà zadejte nulu."
+
+#: src/libslic3r/PrintConfig.cpp:2030
+msgid "Speed for printing top solid layers (it only applies to the uppermost external layers and not to their internal solid layers). You may want to slow down this to get a nicer surface finish. This can be expressed as a percentage (for example: 80%) over the solid infill speed above. Set to zero for auto."
+msgstr "Rychlost tisku vrchnÃch plných vrstev (vztahuje se pouze na nejvyššà hornà vrstvy a nikoli na jejich vnitÅ™nà plné vrstvy). Rychlost lze zpomalit, abyste zÃskali hezÄà povrchovou úpravu. Může být vyjádÅ™ena procenty (napÅ™Ãklad: 80%) z rychlosti plné výplnÄ› materiálu výše. Pro automatické nastavenà zadejte nulu."
+
+#: src/libslic3r/PrintConfig.cpp:2052
+msgid "Speed for travel moves (jumps between distant extrusion points)."
+msgstr "Rychlost posunů (přejezdy mezi body extruze)."
+
+#: src/libslic3r/PrintConfig.cpp:627
+msgid "Speed of the first cooling move"
+msgstr "Rychlost prvnÃho pohybu chlazenÃ"
+
+#: src/libslic3r/PrintConfig.cpp:646
+msgid "Speed of the last cooling move"
+msgstr "Rychlost poslednÃho pohybu chlazenÃ"
+
+#: src/libslic3r/PrintConfig.cpp:584
+msgid "Speed used at the very beginning of loading phase. "
+msgstr "Rychlost použitá na samém poÄátku zavádÄ›cà fáze"
+
+#: src/libslic3r/PrintConfig.cpp:576
+msgid "Speed used for loading the filament on the wipe tower. "
+msgstr "Rychlost použitá pro zavádÄ›nà filamentu na ÄistÃcà věž. "
+
+#: src/libslic3r/PrintConfig.cpp:592
+msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming). "
+msgstr "Rychlost vysouvánà filamentu pÅ™i výmÄ›nÄ› na ÄistÃcà věži (úvodnà Äást vysunutà okamžitÄ› po rapidnà extruzi nenà ovlivnÄ›na). "
+
+#: src/libslic3r/PrintConfig.cpp:601
+msgid "Speed used for unloading the tip of the filament immediately after ramming. "
+msgstr "Rychlost použitá pÅ™i vysouvánà špiÄky filamentu bezprostÅ™ednÄ› po rapidnà extruzi."
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1055
+msgid "Sphere"
+msgstr "Koule"
+
+#: src/slic3r/GUI/Tab.cpp:1254
+msgid "Spiral Vase"
+msgstr "Spirálová váza"
+
+#: src/libslic3r/PrintConfig.cpp:1717
+msgid "Spiral vase"
+msgstr "Spirálová váza"
+
+#: src/slic3r/GUI/Plater.cpp:2971 src/slic3r/GUI/Plater.cpp:2988
+#: src/slic3r/GUI/Plater.cpp:3008 src/libslic3r/PrintConfig.cpp:3082
+msgid "Split"
+msgstr "Rozdělit"
+
+#: src/slic3r/GUI/Plater.cpp:2971
+msgid "Split the selected object"
+msgstr "Rozdělit vybraný objekt"
+
+#: src/slic3r/GUI/Plater.cpp:2966 src/slic3r/GUI/Plater.cpp:2988
+msgid "Split the selected object into individual objects"
+msgstr "Rozdělit vybraný objekt na jednotlivé objekty"
+
+#: lib/Slic3r/GUI/Plater.pm:2293
+msgid "Split the selected object into individual parts"
+msgstr "RozdÄ›lit vybraný objekt na jednotlivé Äásti"
+
+#: src/slic3r/GUI/Plater.cpp:2968 src/slic3r/GUI/Plater.cpp:3008
+msgid "Split the selected object into individual sub-parts"
+msgstr "RozdÄ›lit vybraný objekt na jednotlivé dÃlÄà Äásti"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1110
+msgid "Split to parts"
+msgstr "RozdÄ›lit na Äásti"
+
+#: src/libslic3r/PrintConfig.cpp:799
+msgid "Stars"
+msgstr "Hvězdy"
+
+#: src/slic3r/GUI/Tab.cpp:1564 src/slic3r/GUI/Tab.cpp:1949
+#: src/libslic3r/PrintConfig.cpp:1736 src/libslic3r/PrintConfig.cpp:1751
+msgid "Start G-code"
+msgstr "ZaÄátek G-code"
+
+#: src/slic3r/GUI/MainFrame.cpp:403
+msgid "Start new slicing process"
+msgstr "Zahájit nový slicovacà proces"
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:35
+msgid "Start printing after upload"
+msgstr "Spustit tisk po nahránÃ"
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2153
+msgid "Starting"
+msgstr "SpuÅ¡tÄ›nÃ"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:782
+msgid "Status:"
+msgstr "Stav:"
+
+#: lib/Slic3r/GUI/Plater.pm:1659 lib/Slic3r/GUI/Plater.pm:1701
+msgid "STL file exported to "
+msgstr "Soubor STL byl exportován do "
+
+#: src/slic3r/GUI/Plater.cpp:3545
+#, possible-c-format
+msgid "STL file exported to %s"
+msgstr "Soubor STL exportován do %s"
+
+#: src/slic3r/GUI/Tab.cpp:1716 src/slic3r/GUI/Tab.cpp:1901
+msgid "Success!"
+msgstr "Úspěch!"
+
+#: src/slic3r/GUI/PresetHints.cpp:200
+msgid "support"
+msgstr "podpěry"
+
+#: xs/src/slic3r/GUI/GUI.cpp:859
+msgid "Support"
+msgstr "Podpěra"
+
+#: src/libslic3r/PrintConfig.cpp:2441
+msgid "Support base diameter"
+msgstr "Průměr podpěrné základny"
+
+#: src/libslic3r/PrintConfig.cpp:2451
+msgid "Support base height"
+msgstr "Výška podpěrné základny"
+
+#: src/slic3r/GUI/Tab.cpp:1316
+msgid "Support Generator"
+msgstr "Generátor Podpěr"
+
+#: src/slic3r/GUI/Tab.cpp:3401
+msgid "Support head"
+msgstr "Hrot podpěry"
+
+#: src/libslic3r/PrintConfig.cpp:2369
+msgid "Support head front diameter"
+msgstr "Délka hrotu podpěry"
+
+#: src/libslic3r/PrintConfig.cpp:2378
+msgid "Support head penetration"
+msgstr "Průnik podpěry do modelu"
+
+#: src/libslic3r/PrintConfig.cpp:2387
+msgid "Support head width"
+msgstr "Tloušťka hrotu podpěry"
+
+#: src/slic3r/GUI/PresetHints.cpp:210
+msgid "support interface"
+msgstr "kontaktnà vrstva podpěr"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:30 src/slic3r/GUI/GUI_ObjectList.cpp:70
+#: src/slic3r/GUI/GUI_ObjectList.cpp:511 src/slic3r/GUI/GUI_Preview.cpp:236
+#: src/slic3r/GUI/Tab.cpp:1059 src/slic3r/GUI/Tab.cpp:1060
+#: src/libslic3r/PrintConfig.cpp:334 src/libslic3r/PrintConfig.cpp:1432
+#: src/libslic3r/PrintConfig.cpp:1780 src/libslic3r/PrintConfig.cpp:1786
+#: src/libslic3r/PrintConfig.cpp:1794 src/libslic3r/PrintConfig.cpp:1806
+#: src/libslic3r/PrintConfig.cpp:1816 src/libslic3r/PrintConfig.cpp:1824
+#: src/libslic3r/PrintConfig.cpp:1839 src/libslic3r/PrintConfig.cpp:1860
+#: src/libslic3r/PrintConfig.cpp:1871 src/libslic3r/PrintConfig.cpp:1887
+#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:1905
+#: src/libslic3r/PrintConfig.cpp:1916 src/libslic3r/PrintConfig.cpp:1930
+#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1939
+#: src/libslic3r/PrintConfig.cpp:1948 src/libslic3r/PrintConfig.cpp:1956
+#: src/libslic3r/PrintConfig.cpp:1970 src/libslic3r/GCode/PreviewData.cpp:172
+msgid "Support material"
+msgstr "Podpěry"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/PrintConfig.cpp:1904
+#: src/libslic3r/GCode/PreviewData.cpp:173
+msgid "Support material interface"
+msgstr "Kontaktnà vrstvy podpěr"
+
+#: src/libslic3r/PrintConfig.cpp:1957
+msgid "Support material will not be generated for overhangs whose slope angle (90° = vertical) is above the given threshold. In other words, this value represent the most horizontal slope (measured from the horizontal plane) that you can print without support material. Set to zero for automatic detection (recommended)."
+msgstr "PodpÄ›ry nebudou vytvoÅ™eny pro pÅ™evisy, jejichž úhel sklonu (90° = vertikálnÃ) je nad danou prahovou hodnotou. Jinými slovy, tato hodnota pÅ™edstavuje nejvÄ›tšà horizontálnà sklon (měřený od horizontálnà roviny), který můžete tisknout bez podpÄ›rného materiálu. Nastavte na nulu pro automatickou detekci (doporuÄeno)."
+
+#: src/libslic3r/PrintConfig.cpp:1877
+msgid "Support material/raft interface extruder"
+msgstr "Extruder pro kontaktnà podpěry/raft"
+
+#: src/libslic3r/PrintConfig.cpp:1851
+msgid "Support material/raft/skirt extruder"
+msgstr "Extruder pro podpěry/raft/obrys"
+
+#: src/slic3r/GUI/Plater.cpp:423 src/libslic3r/PrintConfig.cpp:1815
+#: src/libslic3r/PrintConfig.cpp:2423
+msgid "Support on build plate only"
+msgstr "Pouze na tiskové podložce"
+
+#: src/slic3r/GUI/Tab.cpp:3406
+msgid "Support pillar"
+msgstr "PodpÄ›rný pilÃÅ™"
+
+#: src/libslic3r/PrintConfig.cpp:2407
+msgid "Support pillar connection mode"
+msgstr "Propojenà podpěr"
+
+#: src/libslic3r/PrintConfig.cpp:2397
+msgid "Support pillar diameter"
+msgstr "Tloušťka podpěry"
+
+#: src/libslic3r/PrintConfig.cpp:2499
+msgid "Support points density"
+msgstr "Hustota podpěrných bodů"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:888
+msgid "Support points density: "
+msgstr "Hustota podpěrných bodů:"
+
+#: xs/src/libslic3r/PrintConfig.cpp:896
+msgid "Support silent mode"
+msgstr "Podpora tichého režimu"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:78 src/slic3r/GUI/GUI_ObjectList.cpp:519
+#: src/slic3r/GUI/Plater.cpp:418 src/slic3r/GUI/Tab.cpp:3397
+#: src/slic3r/GUI/Tab.cpp:3398 src/libslic3r/PrintConfig.cpp:2363
+#: src/libslic3r/PrintConfig.cpp:2370 src/libslic3r/PrintConfig.cpp:2379
+#: src/libslic3r/PrintConfig.cpp:2388 src/libslic3r/PrintConfig.cpp:2398
+#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2431
+#: src/libslic3r/PrintConfig.cpp:2442 src/libslic3r/PrintConfig.cpp:2452
+#: src/libslic3r/PrintConfig.cpp:2461 src/libslic3r/PrintConfig.cpp:2471
+#: src/libslic3r/PrintConfig.cpp:2480 src/libslic3r/PrintConfig.cpp:2490
+#: src/libslic3r/PrintConfig.cpp:2500 src/libslic3r/PrintConfig.cpp:2508
+msgid "Supports"
+msgstr "Podpěry"
+
+#: src/slic3r/GUI/Plater.cpp:1018
+msgid "supports and pad"
+msgstr "podpěry a podložka"
+
+#: src/libslic3r/PrintConfig.cpp:1043
+msgid "Supports remaining times"
+msgstr "Podpora zbývajÃcÃch tiskových Äasů"
+
+#: src/libslic3r/PrintConfig.cpp:1052
+msgid "Supports silent mode"
+msgstr "Podporuje tichý režim"
+
+#: src/slic3r/GUI/Tab.cpp:1313
+msgid "Supports work better, if the following feature is enabled:\n- Detect bridging perimeters\n\nShall I adjust those settings for supports?"
+msgstr "PodpÄ›ry fungujà lépe, pokud je povolena následujÃcà funkce:\n- Zjistit pÅ™emosÅ¥ovacà perimetry\n\nMám tyto nastavenà pro podpÄ›ry upravit?"
+
+#: src/slic3r/GUI/Preferences.cpp:76
+msgid "Suppress \" - default - \" presets"
+msgstr "PotlaÄit “ - výchozà - “ pÅ™ednastavenÃ"
+
+#: src/slic3r/GUI/Preferences.cpp:78
+msgid "Suppress \" - default - \" presets in the Print / Filament / Printer selections once there are any other valid presets available."
+msgstr "PotlaÄit “ - výchozà - “ pÅ™ednastavenà v nabÃdkách Tisk / Filament / Tiskárna, jakmile budou k dispozici dalšà platné pÅ™edvolby."
+
+#: src/slic3r/GUI/MainFrame.cpp:677
+msgid "SVG"
+msgstr "SVG"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:119
+msgid "Switch to 3D"
+msgstr "Přepnout do 3D"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1242
+msgid "Switch to editing mode"
+msgstr "Přepnout do režimu editace"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:120
+msgid "Switch to Preview"
+msgstr "Přepnout do náhledu"
+
+#: src/slic3r/GUI/wxExtensions.cpp:2412
+#, possible-c-format
+msgid "Switch to the %s mode"
+msgstr "Přepnout do režimu %s"
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:327
+msgid "Switching to simple settings will discard changes done in the advanced mode!\n\nDo you want to proceed?"
+msgstr "PÅ™epnutÃm do jednoduchého nastavenà ztratÃte zmÄ›ny provedené v pokroÄilém režimu!\n\nOpravdu chcete pokraÄovat?"
+
+#: src/libslic3r/PrintConfig.cpp:1949
+msgid "Synchronize support layers with the object print layers. This is useful with multi-material printers, where the extruder switch is expensive."
+msgstr "Synchronizovánà vrstev podpÄ›r s vrstvami objektu. Toto je velmi užiteÄné u multi-materiálových tiskáren, kde je pÅ™epÃnánà extruderů drahé."
+
+#: src/libslic3r/PrintConfig.cpp:1947
+msgid "Synchronize with object layers"
+msgstr "Synchronizovat s vrstvami objektu"
+
+#: src/slic3r/GUI/MainFrame.cpp:557
+msgid "System &Info"
+msgstr "&Informace o systému"
+
+#: lib/Slic3r/GUI/MainFrame.pm:355
+msgid "System Info"
+msgstr "Informace o systému"
+
+#: src/slic3r/GUI/SysInfoDialog.cpp:44
+msgid "System Information"
+msgstr "Systémové informace"
+
+#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:970
+#: src/slic3r/GUI/Preset.cpp:1035 src/slic3r/GUI/Preset.cpp:1067
+#: src/slic3r/GUI/PresetBundle.cpp:1488 src/slic3r/GUI/PresetBundle.cpp:1553
+msgid "System presets"
+msgstr "Systémová pÅ™ednastavenÃ"
+
+#: src/slic3r/GUI/GUI_App.cpp:662
+msgid "Take Configuration &Snapshot"
+msgstr "Prové&st Zálohu Konfigurace"
+
+#: xs/src/slic3r/GUI/GUI.cpp:350
+msgid "Take Configuration Snapshot"
+msgstr "Provést Zálohu Konfigurace"
+
+#: src/slic3r/GUI/GUI_App.cpp:697
+msgid "Taking configuration snapshot"
+msgstr "Ukládánà zálohy nastavenÃ"
+
+#: src/slic3r/GUI/Tab.cpp:1478
+msgid "Temperature "
+msgstr "Teplota "
+
+#: src/libslic3r/PrintConfig.cpp:1980
+msgid "Temperature"
+msgstr "Teplota"
+
+#: src/libslic3r/PrintConfig.cpp:1727
+msgid "Temperature difference to be applied when an extruder is not active. Enables a full-height \"sacrificial\" skirt on which the nozzles are periodically wiped."
+msgstr "Teplotnà rozdÃl, který se použije v pÅ™ÃpadÄ›, že extruder nenà aktivnÃ. Umožňuje “obÄ›tnÆobrysy v plné výšce objektu, na kterém jsou trysky periodicky oÄiÅ¡tÄ›ny."
+
+#: src/libslic3r/PrintConfig.cpp:1726
+msgid "Temperature variation"
+msgstr "KolÃsánà teploty"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:592
+msgid "Temperatures"
+msgstr "Teploty"
+
+#: src/slic3r/GUI/Tab.cpp:1700 src/slic3r/GUI/Tab.cpp:1888
+msgid "Test"
+msgstr "Test"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:530
+#, possible-c-format
+msgid "The %s device could not have been found"
+msgstr "ZaÅ™Ãzenà %s nebylo nalezeno"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:417
+#, possible-c-format
+msgid "The %s device was not found.\nIf the device is connected, please press the Reset button next to the USB connector ..."
+msgstr "ZaÅ™Ãzenà %s nebylo nalezeno. Pokud je zaÅ™Ãzenà pÅ™ipojeno, stisknÄ›te tlaÄÃtko Reset vedle USB konektoru ..."
+
+#: src/libslic3r/PrintConfig.cpp:2462
+msgid "The default angle for connecting support sticks and junctions."
+msgstr "Výchozà úhel pro pÅ™ipojenà nosných tyÄà a spojek."
+
+#: src/libslic3r/PrintConfig.cpp:457
+msgid "The extruder to use (unless more specific extruder settings are specified). This value overrides perimeter and infill extruders, but not the support extruders."
+msgstr "Extruder, který chcete použÃt (pokud nejsou zvoleny specifiÄtÄ›jšà nastavenà extruderu). Tato hodnota pÅ™epÃÅ¡e nastavenà perimetrového a výplňového exrtuderu, ale ne nastavenà extruderu pro podpÄ›ry."
+
+#: src/libslic3r/PrintConfig.cpp:955
+msgid "The extruder to use when printing infill."
+msgstr "Extruder který se použije pro tisk výplnÃ."
+
+#: src/libslic3r/PrintConfig.cpp:1341
+msgid "The extruder to use when printing perimeters and brim. First extruder is 1."
+msgstr "Extruder, který se použÃvá pÅ™i tisku perimetrů a lÃmce. Prvnà extruder je 1."
+
+#: src/libslic3r/PrintConfig.cpp:1669
+msgid "The extruder to use when printing solid infill."
+msgstr "Extruder který bude použit pÅ™i tisku plných výplnÃ."
+
+#: src/libslic3r/PrintConfig.cpp:1879
+msgid "The extruder to use when printing support material interface (1+, 0 to use the current extruder to minimize tool changes). This affects raft too."
+msgstr "Extruder, který se použije pÅ™i tisku kontaktnÃch vrstev podpÄ›r (1+, 0 pro použità aktuálnÃho extruderu, aby se minimalizovaly zmÄ›ny nástroje). To ovlivňuje i raft."
+
+#: src/libslic3r/PrintConfig.cpp:1853
+msgid "The extruder to use when printing support material, raft and skirt (1+, 0 to use the current extruder to minimize tool changes)."
+msgstr "Extruder, který se použÃvá pÅ™i tisku podpÄ›r, raftu a obrysu (1+, 0 pro použità aktuálnÃho extruderu pro co nejménÄ› zmÄ›n nástroje)."
+
+#: src/libslic3r/PrintConfig.cpp:695
+msgid "The filament material type for use in custom G-codes."
+msgstr "Typ filamentu pro použità ve vlastnÃch G-code."
+
+#: src/libslic3r/PrintConfig.cpp:3105
+msgid "The file where the output will be written (if not specified, it will be based on the input file)."
+msgstr "Soubor, do kterého bude zapisován výstup (pokud nenà zadán, bude vycházet ze vstupnÃho souboru)."
+
+#: src/libslic3r/PrintConfig.cpp:351
+msgid "The first layer will be shrunk in the XY plane by the configured value to compensate for the 1st layer squish aka an Elephant Foot effect."
+msgstr "Prvnà vrstva bude v rovině XY zmenšena nakonfigurovanou hodnotou, která kompenzuje rozplácnutà prvnà vrstvy."
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2726
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2813 src/slic3r/GUI/Tab.cpp:3279
+msgid "the following characters are not allowed:"
+msgstr "následujÃcà znaky nejsou povolené:"
+
+#: src/slic3r/GUI/Tab.cpp:3283
+msgid "the following postfix are not allowed:"
+msgstr "následujÃcà postfixy nejsou povolené:"
+
+#: src/libslic3r/PrintConfig.cpp:2453
+msgid "The height of the pillar base cone"
+msgstr "Výška ukotvenà podpěrného kužele"
+
+#: src/libslic3r/PrintConfig.cpp:2481
+msgid "The max distance of two pillars to get linked with each other. A zero value will prohibit pillar cascading."
+msgstr "Maximálnà vzdálenost dvou podpůrných pilÃřů pro vzájemné provázánÃ. Nulová hodnota zakáže provazovánÃ."
+
+#: src/libslic3r/PrintConfig.cpp:2472
+msgid "The max length of a bridge"
+msgstr "Maximálnà délka pÅ™emostÄ›nÃ."
+
+#: src/libslic3r/PrintConfig.cpp:2176
+msgid "The object will be grown/shrunk in the XY plane by the configured value (negative = inwards, positive = outwards). This might be useful for fine-tuning hole sizes."
+msgstr "Objekt bude roztažen / smrÅ¡tÄ›n v rovinÄ› XY nastavenou hodnotou (negativnà = smÄ›rem dovnitÅ™, pozitivnà = smÄ›rem ven). To může být užiteÄné pro jemné doladÄ›nà otvorů."
+
+#: src/libslic3r/PrintConfig.cpp:1433
+msgid "The object will be raised by this number of layers, and support material will be generated under it."
+msgstr "Objekt se zvýšà tÃmto poÄtem vrstev a pod nÃm bude vytvoÅ™en podpůrný materiál."
+
+#: src/libslic3r/PrintConfig.cpp:2259
+msgid "The percentage of the bed area. \nIf the print area exceeds the specified value, \nthen a slow tilt will be used, otherwise - a fast tilt"
+msgstr "ProcentuálnÄ› vyjádÅ™ená zabraná tisková plocha.\nPokud tisk zabere vÃce než je zadaná hodnota,\nbude použit pomalý náklon. V ostatnÃch pÅ™Ãpadech bude použit rychlý náklon."
+
+#: src/libslic3r/PrintConfig.cpp:1768
+msgid "The printer multiplexes filaments into a single hot end."
+msgstr "Tiskárna pÅ™epÃná nÄ›kolik filamentů v jednou hot endu."
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:342
+msgid "The selected file contains no geometry."
+msgstr "Vybraný soubor neobsahuje geometrii."
+
+#: src/slic3r/GUI/BedShapeDialog.cpp:346
+msgid "The selected file contains several disjoint areas. This is not supported."
+msgstr "Vybraný soubor obsahuje několik nespojených ploch. Tato možnost nenà podporována."
+
+#: src/slic3r/GUI/Plater.cpp:2271
+msgid "The selected object can't be split because it contains more than one volume/material."
+msgstr "Vybraný objekt nemůže být rozdÄ›len, protože obsahuje vÃce než jeden objem/materiál."
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1737 src/slic3r/GUI/Plater.cpp:2279
+msgid "The selected object couldn't be split because it contains only one part."
+msgstr "Vybraný objekt nemůže být rozdÄ›len, protože obsahuje pouze jednu Äást."
+
+#: src/libslic3r/PrintConfig.cpp:2570
+msgid "The slope of the pad wall relative to the bed plane. 90 degrees means straight walls."
+msgstr "Sklon boÄnic vzhledem k podložce. 90 stupňů znamená kolmé stÄ›ny."
+
+#: src/libslic3r/PrintConfig.cpp:1544
+msgid "The speed for loading of a filament into extruder after retraction (it only applies to the extruder motor). If left to zero, the retraction speed is used."
+msgstr "Rychlost vtlaÄenà filamentu do extruderu po retrakci (vztahuje se pouze na motor extruderu). Pokud je ponecháno na nulu, použije se rychlost retrakce."
+
+#: src/libslic3r/PrintConfig.cpp:1536
+msgid "The speed for retractions (it only applies to the extruder motor)."
+msgstr "Rychlost retrakce (toto nastavenà platà pouze pro motor extruderu)."
+
+#: src/slic3r/GUI/Tab.cpp:1247
+#, no-c-format
+msgid "The Spiral Vase mode requires:\n- one perimeter\n- no top solid layers\n- 0% fill density\n- no support material\n- no ensure_vertical_shell_thickness\n\nShall I adjust those settings in order to enable Spiral Vase?"
+msgstr "Mód spirálové vázy vyžaduje:\n- jeden perimetr\n- žádné plné vrchnà vrstvy\n- 0% hustota výplně\n- žádné podpěry\n- nezjišťovánà vertikálnà tloušťky pláště\n\nMám tyto nastavenà upravit tak, aby bylo možné mód spirálové vázy zapnout?"
+
+#: src/libslic3r/Print.cpp:1187
+msgid "The Spiral Vase option can only be used when printing a single object."
+msgstr "Možnost \"Spirálová váza\" lze použÃt pouze pÅ™i tisku jednoho objektu."
+
+#: src/libslic3r/Print.cpp:1189
+msgid "The Spiral Vase option can only be used when printing single material objects."
+msgstr "Možnost \"Spirálová váza\" lze použÃt pouze pÅ™i tisku jednÃm materiálem."
+
+#: src/slic3r/GUI/Tab.cpp:2900
+msgid "The supplied name is empty. It can't be saved."
+msgstr "Název je prázdný. Nelze uložit."
+
+#: src/slic3r/GUI/Tab.cpp:3287
+msgid "The supplied name is not available."
+msgstr "Zadaný název nenà dostupný."
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2725
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2812 src/slic3r/GUI/Tab.cpp:3278
+#: src/slic3r/GUI/Tab.cpp:3282
+msgid "The supplied name is not valid;"
+msgstr "Zadaný název nenà platný;"
+
+#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1785
+msgid "The supplied name is not valid; the following characters are not allowed:"
+msgstr "Zadaný název je neplatný; následujÃcà znaky nejsou povoleny:"
+
+#: src/libslic3r/Print.cpp:1268
+msgid "The supplied settings will cause an empty print."
+msgstr "Zadané nastavenà způsobà prázdný tisk."
+
+#: src/libslic3r/PrintConfig.cpp:2524
+msgid "The thickness of the pad and its optional cavity walls."
+msgstr "Tloušťka podložky a jejà volitelné duté stěny."
+
+#: src/libslic3r/PrintConfig.cpp:1825
+msgid "The vertical distance between object and support material interface. Setting this to 0 will also prevent Slic3r from using bridge flow and speed for the first object layer."
+msgstr "Vertikálnà vzdálenost mezi objektem a podpÄ›rami. NastavenÃm tohoto parametru na hodnotu 0 se také zabránà tomu, aby Slic3r použil parametry průtoku a rychlosti pro mosty pÅ™i tisku prvnà vrstvy objektu."
+
+#: src/slic3r/GUI/Tab.cpp:2429
+msgid "The Wipe option is not available when using the Firmware Retraction mode.\n\nShall I disable it in order to enable Firmware Retraction?"
+msgstr "Možnost OÄistit nenà k dispozici pÅ™i použità režimu retrakcà z firmwaru.\n\nMám ji deaktivovat, aby bylo možné povolit retrakce z firmwaru?"
+
+#: src/slic3r/GUI/Tab.cpp:1277
+msgid "The Wipe Tower currently supports the non-soluble supports only\nif they are printed with the current extruder without triggering a tool change.\n(both support_material_extruder and support_material_interface_extruder need to be set to 0).\n\nShall I adjust those settings in order to enable the Wipe Tower?"
+msgstr "ÄŒistÃcà věž v souÄasné dobÄ› podporuje pouze nerozpustné podpÄ›ry\npokud jsou vytiÅ¡tÄ›ny s aktuálnÃm extrudérem bez spuÅ¡tÄ›nà výmÄ›ny nástroje.\n(jak extruder pro tisk podpÄ›r tak extruder pro tisk kontaktnÃch podpÄ›r je tÅ™eba nastavit na 0).\n\nMám tyto nastavenà upravit tak, aby bylo možné zapnout ÄŒistÃcà věž?"
+
+#: src/libslic3r/Print.cpp:1306
+msgid "The Wipe Tower currently supports the non-soluble supports only if they are printed with the current extruder without triggering a tool change. (both support_material_extruder and support_material_interface_extruder need to be set to 0)."
+msgstr "ÄŒistÃcà věž v souÄasné dobÄ› podporuje pouze nerozpustné podpÄ›ry\npokud jsou vytiÅ¡tÄ›ny s aktuálnÃm extrudérem bez spuÅ¡tÄ›nà výmÄ›ny nástroje.\n(jak extruder pro tisk podpor tak extruder pro tisk kontaktnÃch podpÄ›r je tÅ™eba nastavit na 0)."
+
+#: xs/src/libslic3r/Print.cpp:617
+msgid "The Wipe Tower is currently only supported for the Marlin and RepRap/Sprinter G-code flavors."
+msgstr "ÄŒistÃcà věž je v souÄasné dobÄ› možná pouze pro G-cody urÄené pro Marlin a RepRap/Sprinter."
+
+#: src/libslic3r/Print.cpp:1200
+msgid "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter and Repetier G-code flavors."
+msgstr "ÄŒistÃcà věž je v souÄasné dobÄ› možná pouze pro G-cody urÄené pro Marlin, RepRap/Sprinter a Repetier."
+
+#: src/libslic3r/Print.cpp:1202
+msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)."
+msgstr "ÄŒistÃcà věž je v souÄasné dobÄ› možná pouze v pÅ™ÃpadÄ› relativnÃho adresovánà exruderu (use_relative_e_distances=1)."
+
+#: src/libslic3r/Print.cpp:1225
+msgid "The Wipe Tower is only supported for multiple objects if they are printed over an equal number of raft layers"
+msgstr "ÄŒistÃcà věž pro vÃce objektů je možná pouze v pÅ™ÃpadÄ›, že objekty majà stejný poÄet raft vrstev"
+
+#: src/libslic3r/Print.cpp:1227
+msgid "The Wipe Tower is only supported for multiple objects if they are printed with the same support_material_contact_distance"
+msgstr "ÄŒistÃcà věž pro vÃce objektů je možná pouze v pÅ™ÃpadÄ›, že objekty majà shodný parametr support_material_contact_distance."
+
+#: src/libslic3r/Print.cpp:1229
+msgid "The Wipe Tower is only supported for multiple objects if they are sliced equally."
+msgstr "ÄŒistÃcà věž je pÅ™i vÃce objektech možná pouze v pÅ™ÃpadÄ›, že objekty jsou slicovány stejnÄ›."
+
+#: src/libslic3r/Print.cpp:1223
+msgid "The Wipe Tower is only supported for multiple objects if they have equal layer heigths"
+msgstr "ÄŒistÃcà věž je pÅ™i vÃce objektech možná pouze v pÅ™ÃpadÄ›, že objekty majà vÅ¡echny vrstvy stejné výšky."
+
+#: src/libslic3r/Print.cpp:1258
+msgid "The Wipe tower is only supported if all objects have the same layer height profile"
+msgstr "ÄŒistÃcà věž je podporována pouze v pÅ™ÃpadÄ›, že vÅ¡echny objekty majà stejný výškový profil"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:127
+#, possible-c-format
+msgid "This %s version: %s"
+msgstr "Tento %s verze: %s"
+
+#: src/libslic3r/PrintConfig.cpp:140
+msgid "This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want."
+msgstr "Tento kód je vložen mezi objekty, pokud je použit sekvenÄnà tisk. Ve výchozÃm nastavenà je resetován extruder a tisková podložka pomocà non-wait (neÄekacÃm) pÅ™Ãkazem; nicménÄ› pokud jsou pÅ™Ãkazy M104, M109, 140 nebo M190 detekovány v tomto vlastnÃm kódu, Slic3r nebude pÅ™idávat teplotnà pÅ™Ãkazy. Můžete pÅ™idávat zástupné promÄ›nné pro veÅ¡keré nastavenà Slic3ru, takže můžete vložit pÅ™Ãkaz “M109 S[first_layer_temperature]†kamkoliv chcete."
+
+#: src/libslic3r/PrintConfig.cpp:1032
+msgid "This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]."
+msgstr "Tento vlastnà kód je vložen pÅ™i každé zmÄ›nÄ› vrstvy, hned po pohybu Z a pÅ™edtÃm, než se extruder pÅ™esune na prvnà bod vrstvy. Můžete pÅ™idávat zástupné promÄ›nné pro veÅ¡keré nastavenà Slic3ru, stejnÄ› tak jako [layer_num] a [layer_z]."
+
+#: src/libslic3r/PrintConfig.cpp:129
+msgid "This custom code is inserted at every layer change, right before the Z move. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]."
+msgstr "Tento vlastnà kód je vložen pro každou zmÄ›nu vrstvy, pÅ™edtÃm než se pohne Z. Můžete pÅ™idávat zástupné promÄ›nné pro veÅ¡keré nastavenà Slic3ru stejnÄ› tak jako [layer_num] a [layer_z]."
+
+#: src/libslic3r/PrintConfig.cpp:2007
+msgid "This custom code is inserted right before every extruder change. Note that you can use placeholder variables for all Slic3r settings as well as [previous_extruder] and [next_extruder]."
+msgstr "Tento vlastnà kód je vložen tÄ›snÄ› pÅ™ed každou zmÄ›nou extruderu. Můžete použÃt zástupné promÄ›nné pro vÅ¡echna nastavenà Slic3ru, stejnÄ› jako [previous_extruder] a [next_extruder]."
+
+#: src/libslic3r/PrintConfig.cpp:370
+msgid "This end procedure is inserted at the end of the output file, before the printer end gcode. Note that you can use placeholder variables for all Slic3r settings. If you have multiple extruders, the gcode is processed in extruder order."
+msgstr "Tato ukonÄovacà procedura je vložena na konec výstupnÃho souboru, pÅ™ed koneÄným G-code tiskárny. Můžete pÅ™idávat zástupné promÄ›nné pro veÅ¡keré nastavenà Slic3ru. Pokud máte tiskárnu s vÃce extrudery, G-code je zpracován v poÅ™adà extruderů."
+
+#: src/libslic3r/PrintConfig.cpp:360
+msgid "This end procedure is inserted at the end of the output file. Note that you can use placeholder variables for all Slic3r settings."
+msgstr "Tato ukonÄovacà procedura je vložena na konec výstupnÃho souboru. Můžete pÅ™idávat zástupné promÄ›nné pro veÅ¡keré nastavenà Slic3ru."
+
+#: src/libslic3r/PrintConfig.cpp:1193 src/libslic3r/PrintConfig.cpp:1204
+msgid "This experimental setting is used to limit the speed of change in extrusion rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds."
+msgstr "Toto experimentálnà nastavenà se použÃvá k omezenà rychlosti zmÄ›ny objemového průtoku. Hodnota 1,8mm³/s² zajišťuje, že zmÄ›na objemového průtoku z 1,8 mm³/s (Å¡ÃÅ™ka extruze 0,45 mm, výška extruze 0,2 mm, rychlost posuvu 20 mm/s) na 5,4 mm³/s (rychlost posuvu 60 mm/s) potrvá nejménÄ› 2 sekundy."
+
+#: src/libslic3r/PrintConfig.cpp:1183
+msgid "This experimental setting is used to set the maximum volumetric speed your extruder supports."
+msgstr "Toto experimentálnà nastavenà sloužà k nastavenà maximálnà objemové rychlosti, kterou váš extruder podporuje."
+
+#: src/libslic3r/PrintConfig.cpp:2061
+msgid "This experimental setting uses G10 and G11 commands to have the firmware handle the retraction. This is only supported in recent Marlin."
+msgstr "Toto experimentálnà nastavenà použÃvá pÅ™Ãkazy G10 a G11, aby si firmware poradil s retrakcÃ. Toto je podporováno pouze v poslednÃch verzÃch firmwaru Marlin."
+
+#: src/libslic3r/PrintConfig.cpp:2075
+msgid "This experimental setting uses outputs the E values in cubic millimeters instead of linear millimeters. If your firmware doesn't already know filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] T0' in your start G-code in order to turn volumetric mode on and use the filament diameter associated to the filament selected in Slic3r. This is only supported in recent Marlin."
+msgstr "Toto experimentálnà nastavenà použÃvá výstupnà hodnoty E v kubických milimetrech mÃsto lineárnÃch milimetrů. Pokud firmware dosud nezná průmÄ›r (průmÄ›ry) filamentu, můžete v poÄáteÄnÃm G-code zadat pÅ™Ãkazy jako “M200 D [filament_diameter_0] T0â€, pro se zapnutà volumetrického režimu a použità průmÄ›ru filamentu pÅ™idruženého k vybranému filamentu ve Slic3ru. Toto je podporováno pouze v poslednÃch verzÃch firmwaru Marlin."
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2848
+msgid "This extruder will be set for selected items"
+msgstr "Tento extruder bude nastaven pro vybrané položky"
+
+#: src/libslic3r/PrintConfig.cpp:188
+msgid "This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this."
+msgstr "Tato hodnota urÄuje množstvà vytlaÄeného plastu pÅ™i vytvářenà mostů. MÃrným snÞenÃm této hodnoty můžete pÅ™edejÃt pronášenà i když, pÅ™ednastavené hodnoty jsou vÄ›tÅ¡inou dobré a je lepšà experimentovat s chlazenÃm (využitÃm ventilátoru), než s touto hodnotou."
+
+#: src/libslic3r/PrintConfig.cpp:514
+msgid "This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps."
+msgstr "Tento faktor mÄ›nà pomÄ›rné množstvà průtoku. Možná bude tÅ™eba toto nastavenà vyladit, pro dosaženà hezkého povrchu a správné Å¡ÃÅ™ky jednotlivých stÄ›n. Obvyklé hodnoty jsou mezi 0,9 a 1,1. Pokud si myslÃte, že hodnotu potÅ™ebujete zmÄ›nit vÃce, zkontrolujte průmÄ›r filamentu a E kroky ve firmwaru."
+
+#: src/libslic3r/PrintConfig.cpp:178
+msgid "This fan speed is enforced during all bridges and overhangs."
+msgstr "Nastavená rychlost ventilátoru je využita vždy při vytvářenà mostů a přesahů."
+
+#: src/libslic3r/PrintConfig.cpp:944
+msgid "This feature allows to combine infill and speed up your print by extruding thicker infill layers while preserving thin perimeters, thus accuracy."
+msgstr "Tato funkce umožňuje kombinovat výplň a urychlit tisk pomocà extruzà silnÄ›jÅ¡Ãch výplňových vrstev pÅ™i zachovánà tenkých obvodů, a tÃm i pÅ™esnosti."
+
+#: src/libslic3r/PrintConfig.cpp:1677
+msgid "This feature allows to force a solid layer every given number of layers. Zero to disable. You can set this to any value (for example 9999); Slic3r will automatically choose the maximum possible number of layers to combine according to nozzle diameter and layer height."
+msgstr "Tato funkce umožňuje vynucenà plné vrstvy za každý daný poÄet vrstev. Pro vypnutà nastavte nulu. Můžete nastavit libovolnou hodnotu (napÅ™Ãklad 9999); Slic3r automaticky zvolà maximálnà poÄet vrstev, které se budou kombinovat podle průmÄ›ru trysky a výšky vrstvy."
+
+#: src/libslic3r/PrintConfig.cpp:1718
+msgid "This feature will raise Z gradually while printing a single-walled object in order to remove any visible seam. This option requires a single perimeter, no infill, no top solid layers and no support material. You can still set any number of bottom solid layers as well as skirt/brim loops. It won't work when printing more than an object."
+msgstr "Tato funkce zvýšà postupnÄ› Z pÅ™i tisku jednovrstvého objektu, aby se odstranil jakýkoli viditelný Å¡ev. Tato volba vyžaduje jediný obvod, žádnou výplň, žádné vrchnà plné vrstvy a žádný podpůrný materiál. Můžete stále nastavit libovolný poÄet spodnÃch plných vrstev, stejnÄ› jako obrysové smyÄky / lÃmec. PÅ™i tisku vÃce než jednoho objektu nebude toto nastavenà fungovat."
+
+#: src/slic3r/GUI/Plater.cpp:1712
+msgid "This file cannot be loaded in a simple mode. Do you want to switch to an advanced mode?\n"
+msgstr "Tento soubor nelze naÄÃst v jednoduchém režimu. Chcete pÅ™epnout do pokroÄilého režimu?\n"
+
+#: src/slic3r/GUI/Plater.cpp:1650
+msgid "This file cannot be loaded in simple mode. Do you want to switch to expert mode?\n"
+msgstr "Tento soubor nelze naÄÃst v jednoduchém režimu. Chcete pÅ™epnout do expert režimu?\n"
+
+#: src/slic3r/GUI/Plater.cpp:1658
+msgid "This file contains several objects positioned at multiple heights. Instead of considering them as multiple objects, should I consider\nthis file as a single object having multiple parts?\n"
+msgstr "Tento soubor obsahuje nÄ›kolik objektů umÃstÄ›ných v různých výškách. Majà být vloženy jako jeden objekt obsahujÃcà vÃce ÄástÃ,\nnamÃsto vloženà nÄ›kolika objektů?\n"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:313
+#, possible-c-format
+msgid "This firmware hex file does not match the printer model.\nThe hex file is intended for: %s\nPrinter reported: %s\n\nDo you want to continue and flash this hex file anyway?\nPlease only continue if you are sure this is the right thing to do."
+msgstr "Tento hex soubor s firmware neodpovÃdá modelu tiskárny.\nSoubor hex je urÄen pro: %s\nTiskárna oznámila: %s\n\nChcete i pÅ™esto pokraÄovat a nahrát do tiskárny hex soubor?\nPokraÄujte prosÃm, pouze pokud jste si jisti, že je to správný soubor."
+
+#: src/libslic3r/PrintConfig.cpp:278
+msgid "This flag enables the automatic cooling logic that adjusts print speed and fan speed according to layer printing time."
+msgstr "Zapne výpoÄet automatického chlazenÃ, který upravuje rychlost tisku a ventilátoru v závislosti na délce tisku jedné vrstvy."
+
+#: src/slic3r/GUI/Plater.cpp:448
+msgid "This flag enables the brim that will be printed around each object on the first layer."
+msgstr "Tato vlajka zapÃná lÃmec, který bude vytiÅ¡tÄ›n kolem každého objektu pÅ™i prvnà vrstvÄ›."
+
+#: src/libslic3r/PrintConfig.cpp:1468
+msgid "This flag enforces a retraction whenever a Z move is done."
+msgstr "Tato možnost vyvolá retrakci, kdykoli je proveden pohyb Z."
+
+#: src/libslic3r/PrintConfig.cpp:2093
+msgid "This flag will move the nozzle while retracting to minimize the possible blob on leaky extruders."
+msgstr "Toto nastavenà pÅ™emÃstà trysku pÅ™i retrakci, aby se minimalizovalo možné vytékánà materiálu."
+
+#: src/libslic3r/PrintConfig.cpp:2501
+msgid "This is a relative measure of support points density."
+msgstr "Relativnà mÃra hustoty podpÄ›rných bodů."
+
+#: src/libslic3r/PrintConfig.cpp:491 src/libslic3r/PrintConfig.cpp:551
+msgid "This is only used in the Slic3r interface as a visual help."
+msgstr "Toto je v Slic3ru jako názorná pomoc."
+
+#: src/libslic3r/PrintConfig.cpp:300
+msgid "This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all."
+msgstr "Toto je hodnota akcelerace na kterou se tiskárna vrátà po specifických úpravách akcelerace napÅ™Ãklad pÅ™i tisku (perimetru/výplnÄ›). NastavenÃm na nulu zabránÃte návratu rychlostà zcela."
+
+#: src/libslic3r/PrintConfig.cpp:158
+msgid "This is the acceleration your printer will use for bridges. Set zero to disable acceleration control for bridges."
+msgstr "Nastavenà akcelerace tiskárny pÅ™i vytvářenà mostů. NastavenÃm na nulu vypnete ovládánà akcelerace pro mosty."
+
+#: src/libslic3r/PrintConfig.cpp:813
+msgid "This is the acceleration your printer will use for first layer. Set zero to disable acceleration control for first layer."
+msgstr "Toto je zrychlenÃ, které vaÅ¡e tiskárna použije pro prvnà vrstvu. Nastavte nulu pro vypnutà řÃzenà zrychlenà pro prvnà vrstvu."
+
+#: src/libslic3r/PrintConfig.cpp:934
+msgid "This is the acceleration your printer will use for infill. Set zero to disable acceleration control for infill."
+msgstr "Toto je zrychlenÃ, které vaÅ¡e tiskárna použije pro výplň. Nastavte nulu, chcete-li vypnout Å™Ãzenà zrychlenà pro výplň."
+
+#: src/libslic3r/PrintConfig.cpp:1331
+msgid "This is the acceleration your printer will use for perimeters. A high value like 9000 usually gives good results if your hardware is up to the job. Set zero to disable acceleration control for perimeters."
+msgstr "Jedná se o akceleraci, kterou vaÅ¡e tiskárna použije pro perimetry. Vysoká hodnota, jako je 9000, obvykle dává dobré výsledky, pokud je váš hardware v pořádku. Nastavte nulu pro vypnutà řÃzenà zrychlenà pro perimetry."
+
+#: src/libslic3r/PrintConfig.cpp:1262
+msgid "This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)"
+msgstr "PrůmÄ›r trysky extruderu (napÅ™Ãklad: 0.5, 0.35 atd.)"
+
+#: src/libslic3r/PrintConfig.cpp:1162
+#, no-c-format
+msgid "This is the highest printable layer height for this extruder, used to cap the variable layer height and support layer height. Maximum recommended layer height is 75% of the extrusion width to achieve reasonable inter-layer adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter."
+msgstr "Toto je nejvÄ›tšà možná výška vrstvy pro tento extruder, který se použÃvá k zakrytà výšky promÄ›nné vrstvy a výšky podpůrné vrstvy. Maximálnà doporuÄená výška vrstvy Äinà 75% Å¡ÃÅ™ky vytlaÄovánÃ, aby se dosáhlo pÅ™iměřené pÅ™ilnavosti mezi vrstvami. Pokud je nastavena hodnota 0, je výška vrstvy omezena na 75% průmÄ›ru trysky."
+
+#: src/libslic3r/PrintConfig.cpp:1225
+msgid "This is the lowest printable layer height for this extruder and limits the resolution for variable layer height. Typical values are between 0.05 mm and 0.1 mm."
+msgstr "Nejmenšà tisknutelná výška vrstvy pro tento extruder. Omezuje rozlišenà pro výšku proměnné vrstvy. Typické hodnoty jsou mezi 0,05 mm a 0,1 mm."
+
+#: src/libslic3r/PrintConfig.cpp:2114
+msgid "This matrix describes volumes (in cubic milimetres) required to purge the new filament on the wipe tower for any given pair of tools. "
+msgstr "Tato matice popisuje objemy (v kubických milimetrech) nutné k vyÄiÅ¡tÄ›nà nového filamentu na ÄistÃcà věži pro danou dvojici nástrojů. "
+
+#: src/libslic3r/PrintConfig.cpp:1372
+msgid "This option sets the number of perimeters to generate for each layer. Note that Slic3r may increase this number automatically when it detects sloping surfaces which benefit from a higher number of perimeters if the Extra Perimeters option is enabled."
+msgstr "Tato volba nastavuje poÄet perimetrů, které je tÅ™eba vygenerovat pro každou vrstvu. Slic3r může toto ÄÃslo automaticky zvýšit, pokud detekuje Å¡ikmé plochy, které se tisknou lépe s vyššÃm poÄtem obvodů, pokud je zapnuta možnost Extra perimetry."
+
+#: src/libslic3r/PrintConfig.cpp:1287
+msgid "This option will drop the temperature of the inactive extruders to prevent oozing. It will enable a tall skirt automatically and move extruders outside such skirt when changing temperatures."
+msgstr "Tato volba snÞà teplotu neaktivnÃch extruderů, aby u nich nedoÅ¡lo k vytékánÃ."
+
+#: src/libslic3r/PrintConfig.cpp:980
+msgid "This option will limit infill to the areas actually needed for supporting ceilings (it will act as internal support material). If enabled, slows down the G-code generation due to the multiple checks involved."
+msgstr "Tato volba omezuje výplň na plochy skuteÄnÄ› potÅ™ebné pro podpÄ›ru stropů (bude se chovat jako vnitÅ™nà podpÄ›rný materiál). Je-li tato volba zapnuta, zpomaluje generovánà G-code kvůli nÄ›kolikanásobným kontrolám."
+
+#: src/libslic3r/PrintConfig.cpp:973
+msgid "This option will switch the print order of perimeters and infill, making the latter first."
+msgstr "Tato volba obrátà poÅ™adà tisku obvodů a výplnÃ."
+
+#: src/libslic3r/PrintConfig.cpp:427
+msgid "This separate setting will affect the speed of external perimeters (the visible ones). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto."
+msgstr "Toto oddÄ›lené nastavenà ovlivnà rychlost tisku vnÄ›jÅ¡Ãch perimetrů (tÄ›ch viditelných). Pokud je hodnota vyjádÅ™ena procenty (napÅ™Ãklad: 80%), bude rychlost vypoÄÃtána z hodnoty rychlosti tisku perimetrů, nastavené výše. Nastavte nulu pro automatický výpoÄet."
+
+#: src/libslic3r/PrintConfig.cpp:1648
+msgid "This separate setting will affect the speed of perimeters having radius <= 6.5mm (usually holes). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto."
+msgstr "Toto oddÄ›lené nastavenà ovlivnà rychlost perimetrů o polomÄ›ru <= 6,5 mm (obvykle dÃry). Pokud je vyjádÅ™eno jako procentnà podÃl (napÅ™Ãklad: 80%), vypoÄte se z výše uvedeného nastavenà rychlosti perimetrů. Pro automatické nastavenà zadejte nulu."
+
+#: src/libslic3r/PrintConfig.cpp:989
+msgid "This setting applies an additional overlap between infill and perimeters for better bonding. Theoretically this shouldn't be needed, but backlash might cause gaps. If expressed as percentage (example: 15%) it is calculated over perimeter extrusion width."
+msgstr "Toto nastavenà uplatňuje dodateÄné pÅ™ekrytà mezi výplnà a obvodem pro lepšà spojenÃ. Teoreticky by to nemÄ›lo být potÅ™eba, ale reakce by mohla způsobit mezery. Pokud je vyjádÅ™eno procenty (napÅ™Ãklad: 15%), vypoÄÃtá se z Å¡ÃÅ™ky extruze perimetrů."
+
+#: src/libslic3r/PrintConfig.cpp:57
+msgid "This setting controls the height (and thus the total number) of the slices/layers. Thinner layers give better accuracy but take more time to print."
+msgstr "Toto nastavenà řÃdà výšku (a tedy výsledný poÄet) Å™ezů/vrstev. TenÄà vrstva poskytuje lepšà pÅ™esnost, ale tiskne se déle."
+
+#: src/libslic3r/PrintConfig.cpp:1153
+msgid "This setting represents the maximum speed of your fan."
+msgstr "Toto nastavenà vyjadřuje maximálnà rychlost ventilátoru."
+
+#: src/libslic3r/PrintConfig.cpp:1216
+msgid "This setting represents the minimum PWM your fan needs to work."
+msgstr "Toto nastavenà představuje minimálnà hodnotu PWM, kterou ventilátor potřebuje, aby pracoval."
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:123
+#, possible-c-format
+msgid "This Slic3r PE version: %s"
+msgstr "Tato verze Slic3r PE: %s"
+
+#: src/libslic3r/PrintConfig.cpp:1752
+msgid "This start procedure is inserted at the beginning, after any printer start gcode. This is used to override settings for a specific filament. If Slic3r detects M104, M109, M140 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want. If you have multiple extruders, the gcode is processed in extruder order."
+msgstr "Tento postup spuÅ¡tÄ›nà je vložen na zaÄátku, po každém spuÅ¡tÄ›nà G-code tiskárny. Toto sloužà k pÅ™epsánà nastavenà pro konkrétnà filament. Pokud Slic3r detekuje M104, M109, M140 nebo M190 ve vaÅ¡ich vlastnÃch kódech, takové pÅ™Ãkazy nebudou automaticky pÅ™edkládány, takže máte možnost pÅ™izpůsobit poÅ™adà pÅ™Ãkazů k ohÅ™evu a dalšà vlastnà akce. Pro vÅ¡echny nastavenà Slic3ru můžete použÃt zástupné promÄ›nné, takže můžete zadat pÅ™Ãkaz “M109 S [first_layer_temperature]†kdekoli chcete. Pokud máte vÃce extruderů, G-code se zpracovává v poÅ™adà extruderů."
+
+#: src/libslic3r/PrintConfig.cpp:1737
+msgid "This start procedure is inserted at the beginning, after bed has reached the target temperature and extruder just started heating, and before extruder has finished heating. If Slic3r detects M104 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want."
+msgstr "Tento spouÅ¡tÄ›cà postup je vložen na zaÄátku, poté, co vyhÅ™Ãvaná tisková podložka dosáhla cÃlové teploty a extruder se právÄ› zaÄal ohÅ™Ãvat a pÅ™edtÃm, než dosáhl cÃlové teploty extruder. Pokud Slic3r detekuje M104 nebo M190 ve vaÅ¡ich vlastnÃch kódech, takové pÅ™Ãkazy nebudou automaticky pÅ™edkládány, takže máte možnost upravit poÅ™adà pÅ™Ãkazů pro vytápÄ›nà a dalšà vlastnà akce. Pro vÅ¡echny nastavenà Slic3ru můžete použÃt zástupné promÄ›nné, takže můžete zadat pÅ™Ãkaz “M109 S [first_layer_temperature]†kdekoli chcete."
+
+#: src/libslic3r/PrintConfig.cpp:663
+msgid "This string is edited by RammingDialog and contains ramming specific parameters "
+msgstr "This string is edited by RammingDialog and contains ramming specific parameters "
+
+#: src/libslic3r/PrintConfig.cpp:2185
+msgid "This value will be added (or subtracted) from all the Z coordinates in the output G-code. It is used to compensate for bad Z endstop position: for example, if your endstop zero actually leaves the nozzle 0.3mm far from the print bed, set this to -0.3 (or fix your endstop)."
+msgstr "Tato hodnota bude pÅ™idána (nebo odeÄtena) ze vÅ¡ech souÅ™adnic Z ve výstupnÃm G-code. PoužÃvá se ke kompenzovánà špatné pozice endstopu Z. NapÅ™Ãklad pokud endstop 0 skuteÄnÄ› ponechá trysku 0,3 mm daleko od tiskové podložky, nastavte hodnotu -0,3 (nebo dolaÄte svůj koncový doraz)."
+
+#: src/libslic3r/PrintConfig.cpp:2107
+msgid "This vector saves required volumes to change from/to each tool used on the wipe tower. These values are used to simplify creation of the full purging volumes below. "
+msgstr "Tento vektor ukládá potÅ™ebné objemy pro zmÄ›nu z/na každý extruder použÃvaný na ÄistÃcà věži. Tyto hodnoty jsou použity pro zjednoduÅ¡enà vytvoÅ™enà celkových objemů ÄiÅ¡tÄ›nà nÞe. "
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:118
+#, possible-c-format
+msgid "This version of %s is not compatible with currently installed configuration bundles.\nThis probably happened as a result of running an older %s after using a newer one.\n\nYou may either exit %s and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this %s.\n"
+msgstr "Tato verze %s nenà kompatibilnà se souÄasnÄ› nainstalovanými balÃÄky nastavenÃ.\nTato situace nejspÃÅ¡e nastala spuÅ¡tÄ›nÃm staršà verze %s po použÃvánà novÄ›jšà verze.\n\nMůžete buÄ ukonÄit %s a zkusit to znovu s novou verzÃ, nebo můžete znovu spustit výchozà konfiguraci. PÅ™ed instalacà kompatibilnÃho nastavenà s touto verzà %s dojde k vytvoÅ™enà zálohy souÄasné konfigurace.\n"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:114
+msgid "This version of Slic3r PE is not compatible with currently installed configuration bundles.\nThis probably happened as a result of running an older Slic3r PE after using a newer one.\n\nYou may either exit Slic3r and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this Slic3r.\n"
+msgstr "Tato verze Slic3r PE nenà kompatibilnà se souÄasnÄ› nainstalovanými balÃÄky nastavenÃ.\nTato situace nejspÃÅ¡e nastala spuÅ¡tÄ›nÃm staršà verze Slic3r PE po použÃvánà novÄ›jšà verze.\n\nMůžete buÄ ukonÄit Slic3r a zkusit to znovu s novou verzÃ, nebo můžete znovu spustit výchozà konfiguraci. PÅ™ed instalacà kompatibilnÃho nastavenà s touto verzà Slic3ru dojde k vytvoÅ™enà zálohy souÄasné konfigurace.\n"
+
+#: src/libslic3r/PrintConfig.cpp:2282
+msgid "This will apply a gamm correction to the rasterized 2D polygons."
+msgstr "Aplikuje korekci gamma na rastrové 2D polygony."
+
+#: src/libslic3r/PrintConfig.cpp:2284
+msgid "This will apply a gamma correction to the rasterized 2D polygons. A gamma value of zero means thresholding with the threshold in the middle. This behaviour eliminates antialiasing without losing holes in polygons."
+msgstr "Aplikuje gamma korekci na rastrové 2D polygony. Hodnota nula znamená nastavenà prahové hodnoty doprostřed. Toto chovánà eliminuje antialiasing bez ztráty otvorů v polygonech."
+
+#: src/libslic3r/PrintConfig.cpp:1994
+msgid "Threads"
+msgstr "Vlákna"
+
+#: src/libslic3r/PrintConfig.cpp:1995
+msgid "Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors."
+msgstr "Vlákna jsou použÃvána pro paralelizaci ÄasovÄ› nároÄnÄ›jÅ¡Ãch úloh. Optimálnà poÄet vláken je mÃrnÄ› nad poÄtem dostupných jader/procesorů."
+
+#: src/slic3r/GUI/Tab.cpp:2052
+msgid "Tilt"
+msgstr "Náklon"
+
+#: src/slic3r/GUI/Tab.cpp:2053
+msgid "Tilt time"
+msgstr "Doba náklonu"
+
+#: src/slic3r/GUI/RammingChart.cpp:76
+msgid "Time"
+msgstr "ÄŒas"
+
+#: src/libslic3r/PrintConfig.cpp:655
+msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to load a new filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator."
+msgstr "Doba, po kterou firmware tiskárny (nebo jednotka Multi Material 2.0) zavádà nový filament bÄ›hem jeho výmÄ›ny (pÅ™i provádÄ›nà kódu T). Tento Äas je pÅ™idán k celkové dobÄ› tisku pomocà G-code odhadovaÄe tiskového Äasu."
+
+#: src/libslic3r/PrintConfig.cpp:670
+msgid "Time for the printer firmware (or the Multi Material Unit 2.0) to unload a filament during a tool change (when executing the T code). This time is added to the total print time by the G-code time estimator."
+msgstr "Doba, po kterou firmware tiskárny (nebo jednotka Multi Material 2.0) vysouvá filament bÄ›hem jeho výmÄ›ny (pÅ™i provádÄ›nà kódu T). Tento Äas je pÅ™idán k celkové dobÄ› tisku pomocà G-code odhadovaÄe tiskového Äasu."
+
+#: src/libslic3r/PrintConfig.cpp:2242
+msgid "Time of the fast tilt"
+msgstr "Doba trvánà rychlého náklonu"
+
+#: src/libslic3r/PrintConfig.cpp:2251
+msgid "Time of the slow tilt"
+msgstr "Doba trvánà pomalého náklonu"
+
+#: src/libslic3r/PrintConfig.cpp:609
+msgid "Time to wait after the filament is unloaded. May help to get reliable toolchanges with flexible materials that may need more time to shrink to original dimensions. "
+msgstr "Doba Äekánà po vysunutà filamentu. Může pomoci ke spolehlivé zmÄ›nÄ› extruderu s flexibilnÃmi materiály, které potÅ™ebujà vÃce Äasu ke smrÅ¡tÄ›nà na původnà rozmÄ›ry. "
+
+#: src/slic3r/GUI/Tab.cpp:916
+msgid "To do that please specify a new name for the preset."
+msgstr "Chcete-li akci provést, prosÃm nejdÅ™Ãve zadejte nový název pÅ™ednastavenÃ."
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:37
+msgid "To download, follow the link below."
+msgstr "Pro staženÃ, kliknÄ›te na odkaz nÞe."
+
+#: src/slic3r/GUI/Plater.cpp:2966
+msgid "To objects"
+msgstr "Objektům"
+
+#: src/slic3r/GUI/Plater.cpp:2968
+msgid "To parts"
+msgstr "Na Äásti"
+
+#: src/libslic3r/Zipper.cpp:37
+msgid "too many files"
+msgstr "pÅ™ÃliÅ¡ mnoho souborů"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:217 src/slic3r/GUI/GUI_Preview.cpp:315
+#: src/slic3r/GUI/GUI_Preview.cpp:481 src/slic3r/GUI/GUI_Preview.cpp:537
+#: src/slic3r/GUI/GUI_Preview.cpp:713 src/libslic3r/GCode/PreviewData.cpp:404
+msgid "Tool"
+msgstr "Nástroj"
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:240
+msgid "Tool #"
+msgstr "Nástroj #"
+
+#: src/slic3r/GUI/Tab.cpp:1973 src/libslic3r/PrintConfig.cpp:2006
+msgid "Tool change G-code"
+msgstr "G-code pro výměnu nástroje"
+
+#: src/slic3r/GUI/Tab.cpp:1530
+msgid "Toolchange parameters with single extruder MM printers"
+msgstr "Parametry pÅ™i výmÄ›nÄ› (Multi Material s jednÃm extruderem)"
+
+#. TRN To be shown in the main menu View->Top
+#: src/slic3r/GUI/MainFrame.cpp:522
+msgid "Top"
+msgstr "Shora"
+
+#: src/libslic3r/PrintConfig.cpp:388
+msgid "Top fill pattern"
+msgstr "Vzor výplně hornà vrstvy"
+
+#: src/slic3r/GUI/PresetHints.cpp:189
+msgid "top solid infill"
+msgstr "vrchnà plná výplň"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:232 src/libslic3r/PrintConfig.cpp:2017
+#: src/libslic3r/PrintConfig.cpp:2028 src/libslic3r/GCode/PreviewData.cpp:168
+msgid "Top solid infill"
+msgstr "Vrchnà plné výplně"
+
+#: src/libslic3r/PrintConfig.cpp:2046
+msgid "Top solid layers"
+msgstr "VrchnÃch plných vrstev"
+
+#: src/slic3r/GUI/MainFrame.cpp:522
+msgid "Top View"
+msgstr "Pohled svrchu"
+
+#: xs/src/libslic3r/PrintConfig.cpp:283
+msgid "Top/bottom fill pattern"
+msgstr "Vzor výplnÄ› hornÃ/spodnà vrstvy"
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:247
+msgid "Total purging volume is calculated by summing two values below, depending on which tools are loaded/unloaded."
+msgstr "Celkový objem ÄiÅ¡tÄ›nà je spoÄÃtán jako souÄet dvou hodnot nÞe v závislosti na tom, které extrudery jsou zavedeny/vyjmuty."
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:84
+msgid "Total rammed volume"
+msgstr "Celkový objem rapidnà extruze"
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:82
+msgid "Total ramming time"
+msgstr "Celkový Äas rapidnà extruze"
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252
+msgid "Translate"
+msgstr "Posunout"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/PrintConfig.cpp:2051
+msgid "Travel"
+msgstr "Rychloposun"
+
+#: src/libslic3r/PrintConfig.cpp:798
+msgid "Triangles"
+msgstr "TrojúhelnÃky"
+
+#: src/libslic3r/PrintConfig.cpp:3059
+msgid "Try to repair any non-manifold meshes (this option is implicitly added whenever we need to slice the model to perform the requested action)."
+msgstr "Pokuste se opravit nemanifoldnà meshe (tato možnost je implicitně přidána vždy, když potřebujeme řezat model)."
+
+#: src/libslic3r/PrintConfig.cpp:1397
+msgid "Type of the printer."
+msgstr "Typ tiskárny."
+
+#: src/libslic3r/Zipper.cpp:35
+msgid "undefined error"
+msgstr "nedefinovaná chyba"
+
+#: src/libslic3r/Zipper.cpp:59
+msgid "unexpected decompressed size"
+msgstr "neoÄekávaná dekomprimovaná velikost"
+
+#: lib/Slic3r/GUI/Plater.pm:2264 lib/Slic3r/GUI/Plater.pm:2280
+msgid "Uniformly…"
+msgstr "Souměrně…"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:27
+msgid "Unknown"
+msgstr "Neznámý"
+
+#: src/slic3r/Utils/Duet.cpp:84 src/slic3r/Utils/Duet.cpp:154
+msgid "Unknown error occured"
+msgstr "Došlo k neznámé chybě"
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:234
+msgid "unloaded"
+msgstr "vyjmuto"
+
+#: src/libslic3r/PrintConfig.cpp:591
+msgid "Unloading speed"
+msgstr "Rychlost vysunutÃ"
+
+#: src/libslic3r/PrintConfig.cpp:600
+msgid "Unloading speed at the start"
+msgstr "PoÄáteÄnà rychlost vysouvánà filamentu "
+
+#: src/slic3r/GUI/Tab.cpp:3105
+msgid "UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system values for the current option group.\nClick to reset all settings for current option group to the system values."
+msgstr "Ikona ODEMKNUTÉHO ZÃMKU indikuje, že nÄ›která nastavenà byla zmÄ›nÄ›na a nejsou shodná se systémovými hodnotami pro danou skupinu nastavenÃ. KliknÄ›te pro reset vÅ¡ech nastavenà aktuálnà skupiny nastavenà na systémové hodnoty."
+
+#: src/slic3r/GUI/Tab.cpp:3120
+msgid "UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system value.\nClick to reset current value to the system value."
+msgstr "Ikona ODEMKNUTÉHO ZÃMKU indikuje, že se hodnota zmÄ›nila a nenà shodná se systémovou hodnotou.\nKliknÄ›te pro reset souÄasné hodnoty na systémovou hodnotu."
+
+#: src/slic3r/GUI/Tab.cpp:3067
+msgid "UNLOCKED LOCK;indicates that some settings were changed and are not equal to the system values for the current option group.\nClick the UNLOCKED LOCK icon to reset all settings for current option group to the system values."
+msgstr "ODEMKNUTà ZÃMEK;indikuje, že nÄ›která nastavenà byla zmÄ›nÄ›na a nejsou shodná se systémovými hodnotami pro danou skupinu nastavenÃ.\nKliknÄ›te na ikonu ODEMKNUTÉHO ZÃMKU pro reset vÅ¡ech nastavenà aktuálnà skupiny nastavenà na systémové hodnoty."
+
+#: src/slic3r/GUI/GUI_Preview.cpp:245
+msgid "Unretractions"
+msgstr "Deretrakce"
+
+#: src/slic3r/GUI/Tab.cpp:2785
+msgid "Unsaved Changes"
+msgstr "Neuložené Změny"
+
+#: src/slic3r/GUI/GUI_App.cpp:790
+msgid "Unsaved Presets"
+msgstr "Neuložená pÅ™ednastavenÃ"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:154
+msgid "Unselect gizmo, keep object selection"
+msgstr "Zrušit gizmo, zachovat výběr objektů"
+
+#: src/libslic3r/Zipper.cpp:63
+msgid "unsupported central directory size"
+msgstr "nepodporovaná velikost centrálnÃho adresáře"
+
+#: src/libslic3r/Zipper.cpp:43
+msgid "unsupported encryption"
+msgstr "nepodporované Å¡ifrovánÃ"
+
+#: src/libslic3r/Zipper.cpp:45
+msgid "unsupported feature"
+msgstr "nepodporovaná funkce"
+
+#: src/libslic3r/Zipper.cpp:41
+msgid "unsupported method"
+msgstr "nepodporovaná metoda"
+
+#: src/libslic3r/Zipper.cpp:53
+msgid "unsupported multidisk archive"
+msgstr "nepodporovaný multidisk archiv"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2414
+msgid "Unsupported selection"
+msgstr "Nepodporovaný výběr"
+
+#: src/libslic3r/GCode/PreviewData.cpp:495
+#, possible-c-format
+msgid "up to %.2f mm"
+msgstr "do % .2f mm"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:30
+msgid "Update available"
+msgstr "Je dostupná aktualizace"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:419 src/slic3r/GUI/Preferences.cpp:69
+msgid "Update built-in Presets automatically"
+msgstr "Aktualizovat vestavěné přednastavenà automaticky"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:401
+msgid "Updates"
+msgstr "Aktualizace"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:426
+msgid "Updates are never applied without user's consent and never overwrite user's customized settings."
+msgstr "Aktualizace nejsou nikdy nainstalovány bez vÄ›domà uživatele a nikdy nepÅ™epÃÅ¡ou upravená uživatelská nastavenÃ."
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:18
+msgid "Upgrade"
+msgstr "Aktualizovat"
+
+#: src/slic3r/GUI/GUI_App.cpp:685
+msgid "Upload a firmware image into an Arduino based printer"
+msgstr "Nahrát firmware do tiskárny s Arduinem"
+
+#: xs/src/slic3r/Utils/OctoPrint.cpp:33
+msgid "Upload to OctoPrint with the following filename:"
+msgstr "Nahrát do OctoPrintu s následujÃcÃm názvem:"
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:33
+msgid "Upload to Printer Host with the following filename:"
+msgstr "Nahrát soubor do tiskového serveru se jménem:"
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:229
+msgid "Uploading"
+msgstr "NahrávánÃ"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:171
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:173
+msgid "Upper Layer"
+msgstr "Vyššà vrstva"
+
+#: src/slic3r/GUI/Tab.cpp:1873
+msgid "USB/Serial connection"
+msgstr "USB/Sériové pÅ™ipojenÃ"
+
+#: src/libslic3r/PrintConfig.cpp:1592
+msgid "USB/serial port for printer connection."
+msgstr "USB/sériový port pro připojenà tiskárny."
+
+#: src/libslic3r/PrintConfig.cpp:2060
+msgid "Use firmware retraction"
+msgstr "PoužÃt retrakce z firmwaru"
+
+#: src/slic3r/GUI/PrintHostDialogs.cpp:42
+msgid "Use forward slashes ( / ) as a directory separator if needed."
+msgstr "Pokud je to nutné, použijte pro oddÄ›lenà složek lomÃtko ( / )."
+
+#: src/slic3r/GUI/Preferences.cpp:93
+msgid "Use legacy OpenGL 1.1 rendering"
+msgstr "Použijte historické OpenGL 1.1 vykreslovánÃ"
+
+#: src/libslic3r/PrintConfig.cpp:2515
+msgid "Use pad"
+msgstr "PoužÃt podložku"
+
+#: src/libslic3r/PrintConfig.cpp:2067
+msgid "Use relative E distances"
+msgstr "PoužÃt relativnà E vzdálenosti"
+
+#: src/slic3r/GUI/Preferences.cpp:103
+msgid "Use Retina resolution for the 3D scene"
+msgstr "Pro 3D scénu použÃt rozliÅ¡enà Retina"
+
+#: src/libslic3r/PrintConfig.cpp:508
+msgid "Use this option to set the axis letter associated to your printer's extruder (usually E but some printers use A)."
+msgstr "Touto volbou nastavÃte pÃsmeno osy pÅ™idružené k extruderu tiskárny (obvykle E, ale nÄ›které tiskárny použÃvajà A)."
+
+#: src/libslic3r/PrintConfig.cpp:1807
+msgid "Use this setting to rotate the support material pattern on the horizontal plane."
+msgstr "Toto nastavenà použijte pro horizontálnà otoÄenà vzoru."
+
+#: src/libslic3r/PrintConfig.cpp:2074
+msgid "Use volumetric E"
+msgstr "PoužÃt volumetrickou hodnotu E"
+
+#: src/slic3r/GUI/Plater.cpp:214
+msgid "Used Filament (g)"
+msgstr "Použito Filamentu (g)"
+
+#: src/slic3r/GUI/Plater.cpp:212 src/slic3r/GUI/Plater.cpp:1041
+msgid "Used Filament (m)"
+msgstr "Použito Filamentu (m)"
+
+#: src/slic3r/GUI/Plater.cpp:213
+msgid "Used Filament (mm³)"
+msgstr "Použito Filamentu (mm³)"
+
+#: src/slic3r/GUI/Plater.cpp:1015
+msgid "Used Material (ml)"
+msgstr "Použitý materiál (ml)"
+
+#: src/slic3r/GUI/Plater.cpp:215
+msgid "Used Material (unit)"
+msgstr "Použito materiálu (jednotka)"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:24
+msgid "User"
+msgstr "Uživatel"
+
+#: src/slic3r/GUI/Preset.cpp:974 src/slic3r/GUI/Preset.cpp:1071
+#: src/slic3r/GUI/PresetBundle.cpp:1558
+msgid "User presets"
+msgstr "Uživatelská pÅ™ednastavenÃ"
+
+#: src/libslic3r/Zipper.cpp:93
+msgid "validation failed"
+msgstr "Validace selhala"
+
+#: src/slic3r/GUI/ButtonsDescription.cpp:41
+msgid "Value is the same as the system value"
+msgstr "Hodnota je shodná se systémovou hodnotou"
+
+#: src/slic3r/GUI/ButtonsDescription.cpp:58
+msgid "Value was changed and is not equal to the system value or the last saved preset"
+msgstr "Hodnota byla zmÄ›nÄ›na a nenà shodná se systémovou hodnotou nebo naposled uloženým pÅ™ednastavenÃm"
+
+#: src/slic3r/GUI/Tab.cpp:2150
+msgid "Values in this column are for Full Power mode"
+msgstr "Hodnoty v tomto sloupci jsou urÄeny pro režim plného výkonu (normal režim)"
+
+#: src/slic3r/GUI/Tab.cpp:2156
+msgid "Values in this column are for Silent mode"
+msgstr "Hodnoty v tomto sloupci jsou pro tichý režim"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:58
+msgid "variants"
+msgstr "varianty"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52 src/slic3r/GUI/Tab.cpp:921
+msgid "vendor"
+msgstr "prodejce"
+
+#: src/libslic3r/PrintConfig.cpp:880
+msgid "Verbose G-code"
+msgstr "Komentáře do G-code"
+
+#: lib/Slic3r/GUI/MainFrame.pm:66
+msgid "Version "
+msgstr "Verze "
+
+#: src/slic3r/GUI/AboutDialog.cpp:67 src/slic3r/GUI/MainFrame.cpp:53
+msgid "Version"
+msgstr "Verze"
+
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52
+msgid "version"
+msgstr "verze"
+
+#: src/slic3r/GUI/Tab.cpp:1002
+msgid "Vertical shells"
+msgstr "Svislé stěny"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:209
+msgid "View"
+msgstr "ZobrazenÃ"
+
+#: src/libslic3r/SLAPrint.cpp:857 src/libslic3r/SLAPrint.cpp:867
+#: src/libslic3r/SLAPrint.cpp:915
+msgid "Visualizing supports"
+msgstr "Vizualizace podpěr"
+
+#: src/slic3r/GUI/Plater.cpp:138
+msgid "Volume"
+msgstr "Obsah"
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:248
+msgid "Volume to purge (mm³) when the filament is being"
+msgstr "Objem k vyÄiÅ¡tÄ›nà (mm³) pokud je filament"
+
+#: src/slic3r/GUI/PresetHints.cpp:216
+msgid "Volumetric"
+msgstr "Volumetrický"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:216
+msgid "Volumetric flow rate"
+msgstr "Objemový průtok"
+
#: src/libslic3r/GCode/PreviewData.cpp:402
msgid "Volumetric flow rate (mm3/s)"
msgstr "Objemový průtok (mm3/s)"
-#: src/libslic3r/GCode/PreviewData.cpp:491
-msgid "Default print color"
-msgstr ""
+#: src/slic3r/GUI/RammingChart.cpp:81
+msgid "Volumetric speed"
+msgstr "Objemová rychlost"
-#: src/libslic3r/GCode/PreviewData.cpp:495
-#, c-format
-msgid "up to %.2f mm"
-msgstr ""
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:1168 src/slic3r/GUI/GUI.cpp:283
+#: src/slic3r/GUI/WipeTowerDialog.cpp:44 src/slic3r/GUI/WipeTowerDialog.cpp:328
+msgid "Warning"
+msgstr "VarovánÃ"
-#: src/libslic3r/GCode/PreviewData.cpp:499
-#, c-format
-msgid "above %.2f mm"
-msgstr ""
+#: src/slic3r/GUI/ConfigWizard.cpp:294
+msgid "Welcome"
+msgstr "VÃtejte"
-#: src/libslic3r/GCode/PreviewData.cpp:504
-#, c-format
-msgid "%.2f - %.2f mm"
-msgstr ""
+#: src/slic3r/GUI/ConfigWizard.cpp:294
+#, possible-c-format
+msgid "Welcome to the %s %s"
+msgstr "VÃtejte v %s %s"
-#~ msgid ""
-#~ "\n"
-#~ "Non-positive value."
-#~ msgstr ""
-#~ "\n"
-#~ "Nezáporná hodnota."
+#: src/slic3r/GUI/ConfigWizard.cpp:284
+#, possible-c-format
+msgid "Welcome to the Slic3r %s"
+msgstr "VÃtejte v Slic3r %s"
-#~ msgid ""
-#~ "\n"
-#~ "Not a numeric value."
-#~ msgstr ""
-#~ "\n"
-#~ "NeÄÃselná hodnota."
+#: lib/Slic3r/GUI/Plater/2D.pm:131
+msgid "What do you want to print today? â„¢"
+msgstr "Co chcete dnes tisknout? â„¢"
-#~ msgid " preset\n"
-#~ msgstr " pÅ™ednastavenÃ\n"
+#: src/slic3r/GUI/Preferences.cpp:86
+msgid "When checked, the print and filament presets are shown in the preset editor even if they are marked as incompatible with the active printer"
+msgstr "Pokud je zaÅ¡krtnuto, pÅ™ednastavenà tisku a filamentu se zobrazujà v editoru pÅ™ednastavenÃ, i když jsou oznaÄeny jako nekompatibilnà s aktivnà tiskárnou"
-#~ msgid " preset"
-#~ msgstr " pÅ™ednastavenÃ"
+#: src/slic3r/GUI/PresetHints.cpp:221
+msgid "when printing "
+msgstr "při tisku "
-#~ msgid "&Load Config Bundle"
-#~ msgstr "&NaÄÃst KonfiguraÄnà BalÃk"
+#: src/libslic3r/PrintConfig.cpp:216
+msgid "When printing multi-material objects, this settings will make slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)."
+msgstr "PÅ™ipnutà pÅ™ekrývajÃcÃch se objektů jeden k druhému pÅ™i Multimateriálovém tisku. (Druhá Äást se pÅ™ipne k prvnÃ, tÅ™età Äást k prvnà a druhé, atd)."
-#~ msgid "&Load Config"
-#~ msgstr "&NaÄÃst Konfiguraci"
+#: src/libslic3r/PrintConfig.cpp:217
+msgid "When printing multi-material objects, this settings will make Slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)."
+msgstr "PÅ™ipnutà pÅ™ekrývajÃcÃch se objektů jeden k druhému pÅ™i Multimateriálovém tisku. (Druhá Äást se pÅ™ipne k prvnÃ, tÅ™età Äást k prvnà a druhé, atd)."
-#~ msgid "&Object"
-#~ msgstr "&Objekt"
+#: src/libslic3r/PrintConfig.cpp:269
+msgid "When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware."
+msgstr "PÅ™i tisku vÃce objektů nebo kopià tiskárna kompletnÄ› dokonÄà jeden objekt, pÅ™edtÃm než zaÄne tisknout druhý (zaÄÃná od spodnà vrstvy). Tato vlastnost je výhodná z důvodů snÞenà rizika zniÄených výtisků. Slic3r by mÄ›l varovat pÅ™i možné kolizi extruderu s objektem a zabránit mu, pÅ™esto doporuÄujeme obezÅ™etnost."
-#~ msgid "&Plater"
-#~ msgstr "&Podložka"
+#: src/libslic3r/PrintConfig.cpp:843
+msgid "When printing with very low layer heights, you might still want to print a thicker bottom layer to improve adhesion and tolerance for non perfect build plates. This can be expressed as an absolute value or as a percentage (for example: 150%) over the default layer height."
+msgstr "PÅ™i tisku s velmi nÃzkými výškami vrstev můžete stále vytisknout tlustšà spodnà vrstvu pro zlepÅ¡enà pÅ™ilnavosti a toleranci pro nedokonale zkalibrovanou tiskovou podložku. Může být vyjádÅ™eno jako absolutnà hodnota nebo jako procento (napÅ™Ãklad: 150%) z výchozà výšky vrstvy."
-#~ msgid ""
-#~ "Disable communication with the printer over a serial / USB cable. This "
-#~ "simplifies the user interface in case the printer is never attached to "
-#~ "the computer."
-#~ msgstr ""
-#~ "Zakázat komunikaci s tiskárnou přes sériový / USB kabel. To zjednodušuje "
-#~ "uživatelské rozhranà v pÅ™ÃpadÄ›, že tiskárna nenà nikdy pÅ™ipojena k "
-#~ "poÄÃtaÄi."
+#: src/libslic3r/PrintConfig.cpp:1483
+msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Při výměně nástroje se spustà retrakce a filament se zatáhne zpět o zadané množstvà (délka se měřà na surovém filamentu, než vstoupà do extruderu)."
-#~ msgid "Disable USB/serial connection"
-#~ msgstr "Vypnout USB/sériové pÅ™ipojenÃ"
+#: src/libslic3r/PrintConfig.cpp:1475
+msgid "When retraction is triggered, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
+msgstr "Při spuštěnà retrakce se filament zatáhne zpět o zadané množstvà (délka se měřà na surovém filamentu, než vstoupà do extruderu)."
-#~ msgid "Drag your objects here"
-#~ msgstr "Přetáhněte své objekty sem"
+#: src/libslic3r/PrintConfig.cpp:1322
+msgid "When set to zero, the distance the filament is moved from parking position during load is exactly the same as it was moved back during unload. When positive, it is loaded further, if negative, the loading move is shorter than unloading. "
+msgstr "Když je hodnota nastavena na nulu, vzdálenost o kterou se filament posune bÄ›hem zavádÄ›nÃ, je stejná, jako zpÄ›tný posun bÄ›hem vysouvánà filamentu. Je-li hodnota kladná, je filament posunut vÃce,. Je-li hodnota záporná, posun pÅ™i zavádÄ›nà je kratšà než pÅ™i vysouvánÃ."
-#~ msgid "Error while uploading to the OctoPrint server"
-#~ msgstr "Chyba při nahrávánà na server OctoPrint"
+#: src/libslic3r/PrintConfig.cpp:1173
+msgid "When setting other speed settings to 0 Slic3r will autocalculate the optimal speed in order to keep constant extruder pressure. This experimental setting is used to set the highest print speed you want to allow."
+msgstr "Pokud jsou vÅ¡echna ostatnà nastavenà rychlosti na hodnotÄ› nula, Slic3r automaticky vypoÄÃtá optimálnà rychlost pro udrženà konstantnÃho tlaku v extruderu. Toto experimentálnà nastavenà sloužà k nastavenà nejvyššà rychlosti tisku, kterou chcete povolit."
-#~ msgid "Export cancelled"
-#~ msgstr "Export zrušen"
+#: src/libslic3r/PrintConfig.cpp:1527
+msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
+msgstr "Když je retrakce kompenzována po zmÄ›nÄ› nástroje, extruder vytlaÄuje toto dalšà množstvà filamentu."
-#~ msgid "File added to print queue"
-#~ msgstr "Soubor byl přidán do tiskové fronty"
+#: src/libslic3r/PrintConfig.cpp:1519
+msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
+msgstr "Když je retrakce kompenzována po rychloposunu, extruder vytlaÄuje toto dalšà množstvà filamentu. Toto nastavenà je zÅ™Ãdkakdy potÅ™eba."
-#~ msgid "G-code file exported to "
-#~ msgstr "Soubor G-code byl exportován do "
+#: src/slic3r/GUI/Tab.cpp:3108
+msgid "WHITE BULLET icon indicates a non system preset."
+msgstr "Ikona BÃLÉ TEÄŒKY indikuje nesystémové pÅ™ednastavenÃ."
-#~ msgid "Invalid API key"
-#~ msgstr "Neplatný API klÃÄ"
+#: src/slic3r/GUI/Tab.cpp:3111
+msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group."
+msgstr "Ikona BÃLÉ TEÄŒKY indikuje, že nastavenà jsou shodná s naposledy uloženým pÅ™ednastavenÃm pro danou skupinu nastavenÃ."
-#~ msgid "Load shape from STL"
-#~ msgstr "NaÄÃst tvar ze souboru STL"
+#: src/slic3r/GUI/Tab.cpp:3126
+msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset."
+msgstr "Ikona BÃLÉ TEÄŒKY indikuje, že je hodnota shodná s naposledy uloženým pÅ™ednastavenÃm."
-#~ msgid "OctoPrint upload"
-#~ msgstr "OctoPrint nahrávánÃ"
+#: src/slic3r/GUI/Tab.cpp:3073
+msgid "WHITE BULLET;for the left button: \tindicates a non-system preset,\nfor the right button: \tindicates that the settings hasn't been modified."
+msgstr "BÃLà TEÄŒKA;pro levé tlaÄÃtko: indikuje nesystémové pÅ™ednastavenÃ,\npro pravé tlaÄÃtko: indikuje, že nastavenà nebylo zmÄ›nÄ›no."
-#~ msgid "OctoPrint upload finished."
-#~ msgstr "Nahrávánà do OctoPrintu dokonÄeno."
+#: src/slic3r/GUI/GUI_Preview.cpp:214 src/libslic3r/PrintConfig.cpp:2137
+msgid "Width"
+msgstr "Å ÃÅ™ka"
-#~ msgid ""
-#~ "Please install the OpenGL modules to use this feature (see build "
-#~ "instructions)."
-#~ msgstr ""
-#~ "Pro použità této funkce prosÃm nainstalujte OpenGL moduly (viz instrukce "
-#~ "vlastnÃho sestavenÃ)."
+#: src/libslic3r/GCode/PreviewData.cpp:398
+msgid "Width (mm)"
+msgstr "Å ÃÅ™ka (mm)"
-#~ msgid ""
-#~ "Slic3r can upload G-code files to OctoPrint. This field should contain "
-#~ "the API Key required for authentication."
-#~ msgstr ""
-#~ "Slic3r může nahrát soubory G-code do OctoPrintu. Toto pole by mělo "
-#~ "obsahovat klÃÄ API požadovaný pro ověřenÃ."
+#: src/libslic3r/PrintConfig.cpp:2389
+msgid "Width from the back sphere center to the front sphere center"
+msgstr "Å ÃÅ™ka od stÅ™edu zadnà koule ke stÅ™edu pÅ™ednà koule"
-#~ msgid ""
-#~ "Slic3r can upload G-code files to OctoPrint. This field should contain "
-#~ "the hostname, IP address or URL of the OctoPrint instance."
-#~ msgstr ""
-#~ "Slic3r může nahrát soubory G-code do OctoPrintu. Toto pole by mělo "
-#~ "obsahovat název hosta (hostname), IP adresu nebo URL instance OctoPrint."
+#: src/libslic3r/PrintConfig.cpp:2138
+msgid "Width of a wipe tower"
+msgstr "Å ÃÅ™ka ÄistÃcà věže"
-#~ msgid "What do you want to print today? â„¢"
-#~ msgstr "Co chcete dnes tisknout? â„¢"
+#: src/libslic3r/PrintConfig.cpp:2203
+msgid "Width of the display"
+msgstr "Å ÃÅ™ka displeje"
+
+#: src/slic3r/GUI/PresetHints.cpp:43
+#, possible-c-format
+msgid "will always run at %d%% "
+msgstr "bude vždy běžet na %d%% "
+
+#: src/slic3r/GUI/PresetHints.cpp:52
+msgid "will be turned off."
+msgstr "bude vypnut."
+
+#: src/libslic3r/PrintConfig.cpp:2276
+msgid "Will inflate or deflate the sliced 2D polygons according to the sign of the correction."
+msgstr "Vytvořà offset každé vrstvy v rovinÄ› XY. Kladná hodnota - offset smÄ›rem ven, plocha polygonu se zvÄ›tÅ¡Ã. Záporná hodnota - offset smÄ›rem dovnitÅ™, plocha polygonu se zmenÅ¡Ã."
+
+#: src/libslic3r/PrintConfig.cpp:2160
+msgid "Wipe into this object"
+msgstr "VyÄistit do tohoto objektu"
+
+#: src/libslic3r/PrintConfig.cpp:2152
+msgid "Wipe into this object's infill"
+msgstr "VyÄiÅ¡tÄ›nà do výplnÄ› tohoto objektu"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/Tab.cpp:1130
+#: src/libslic3r/GCode/PreviewData.cpp:174
+msgid "Wipe tower"
+msgstr "ÄŒistÃcà věž"
+
+#: src/slic3r/GUI/Tab.cpp:1281 src/slic3r/GUI/Tab.cpp:1298
+msgid "Wipe Tower"
+msgstr "ÄŒistÃcà věž"
+
+#: src/slic3r/GUI/Plater.cpp:1043 src/slic3r/GUI/Plater.cpp:1058
+msgid "wipe tower"
+msgstr "ÄistÃcà věž"
+
+#: src/slic3r/GUI/WipeTowerDialog.cpp:141
+msgid "Wipe tower - Purging volume adjustment"
+msgstr "ÄŒistÃcà věž - Úprava objemu ÄiÅ¡tÄ›nÃ"
+
+#: src/libslic3r/PrintConfig.cpp:2144
+msgid "Wipe tower rotation angle"
+msgstr "Úhel natoÄenà ÄistÃcà věže"
+
+#: src/libslic3r/PrintConfig.cpp:2145
+msgid "Wipe tower rotation angle with respect to x-axis "
+msgstr "Úhel natoÄenà ÄistÃcà věže s ohledem na osu X "
+
+#: src/libslic3r/PrintConfig.cpp:2092
+msgid "Wipe while retracting"
+msgstr "OÄistit pÅ™i retrakci"
+
+#: xs/src/libslic3r/PrintConfig.cpp:1997
+msgid "Wiping after toolchange will be preferentially done inside infills. This lowers the amount of waste but may result in longer print time due to additional travel moves."
+msgstr "ÄŒiÅ¡tÄ›nà po výmÄ›nÄ› extruderu bude pÅ™ednostnÄ› provádÄ›no do vnitÅ™nÃch výplnÃ. TÃm se snižuje množstvà odpadu, ale může to mÃt za následek delšà dobu tisku v důsledku dodateÄných pohybů."
+
+#: src/libslic3r/PrintConfig.cpp:1460
+msgid "With bowden extruders, it may be wise to do some amount of quick retract before doing the wipe movement."
+msgstr "U bowdenových extrudérů může být vhodné provést rychlé retrakce než se spustà oÄiÅ¡tÄ›nÃ."
+
+#: src/libslic3r/PrintConfig.cpp:1969
+msgid "With sheath around the support"
+msgstr "Pouzdro okolo podpěr"
+
+#: src/slic3r/GUI/UpdateDialogs.cpp:76
+msgid "Would you like to install it?\n\nNote that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n\nUpdated configuration bundles:"
+msgstr "PÅ™ejete si spustit instalaci?\n\nNejprve bude provedena kompletnà záloha nastavenÃ. V pÅ™ÃpadÄ› problémů s novou verzà ji bude možné kdykoliv obnovit.\n\nAktualizované balÃÄky nastavenÃ:"
+
+#: src/libslic3r/Zipper.cpp:95
+msgid "write calledback failed"
+msgstr "zpětné volánà se nezdařilo"
+
+#: src/libslic3r/PrintConfig.cpp:2993
+msgid "Write information about the model to the console."
+msgstr "Vypsat informace o modelu do konsole."
+
+#: src/slic3r/Utils/Duet.cpp:148
+msgid "Wrong password"
+msgstr "Chybné heslo"
+
+#: src/libslic3r/PrintConfig.cpp:2124
+msgid "X coordinate of the left front corner of a wipe tower"
+msgstr "X souÅ™adnice levého pÅ™ednÃho rohu ÄistÃcà věže"
+
+#: src/libslic3r/PrintConfig.cpp:1793
+msgid "XY separation between an object and its support"
+msgstr "XY vzdálenost mezi objektem a podpěrami"
+
+#: src/libslic3r/PrintConfig.cpp:1795
+msgid "XY separation between an object and its support. If expressed as percentage (for example 50%), it will be calculated over external perimeter width."
+msgstr "XY vzdálenost mezi objektem a podpÄ›rami. Pokud je vyjádÅ™eno procenty (napÅ™Ãklad 50%), bude vypoÄÃtána z Å¡ÃÅ™ky perimetru."
+
+#: src/libslic3r/PrintConfig.cpp:2174
+msgid "XY Size Compensation"
+msgstr "Kompenzace XY rozměrů"
+
+#: src/libslic3r/PrintConfig.cpp:2131
+msgid "Y coordinate of the left front corner of a wipe tower"
+msgstr "Y souÅ™adnice levého pÅ™ednÃho rohu ÄistÃcà věže"
+
+#: src/slic3r/GUI/Plater.cpp:992
+msgid "Yes"
+msgstr "Ano"
+
+#: src/libslic3r/PrintConfig.cpp:1252
+msgid "You can put here your personal notes. This text will be added to the G-code header comments."
+msgstr "Zde můžete zadat své osobnà poznámky. Tento text bude přidán do komentáře záhlavà G code."
+
+#: src/libslic3r/PrintConfig.cpp:557
+msgid "You can put your notes regarding the filament here."
+msgstr "Zde můžete vložit poznámky týkajÃcà se filamentu."
+
+#: src/libslic3r/PrintConfig.cpp:1403
+msgid "You can put your notes regarding the printer here."
+msgstr "Zde můžete uvést poznámky týkajÃcà se tiskárny."
+
+#: src/libslic3r/PrintConfig.cpp:2332
+msgid "You can put your notes regarding the SLA print material here."
+msgstr "Zde můžete vkládat své poznámky týkajÃcà se tiskového materiálu SLA."
+
+#: src/libslic3r/PrintConfig.cpp:324
+msgid "You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse."
+msgstr "NastavenÃm poÄtu prvnÃch vrstev s vypnutým chlazenÃm pro nezhorÅ¡ovánà pÅ™ilnavosti."
+
+#: src/libslic3r/PrintConfig.cpp:1295
+msgid "You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]."
+msgstr "V této Å¡ablonÄ› můžete použÃt vÅ¡echny možnosti konfigurace jako promÄ›nné. Můžete napÅ™Ãklad použÃt: [layer_height], [fill_density] etc. Také můžete použÃt [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]."
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2538
+msgid "You can't change a type of the last solid part of the object."
+msgstr "Nelze zmÄ›nit typ poslednà plné Äásti objektu."
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1711
+msgid "You can't delete the last intance from object."
+msgstr "Nelze smazat poslednà instanci z objektu."
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1694
+msgid "You can't delete the last solid part from object."
+msgstr "Nelze smazat poslednà Äást z objektu."
+
+#: src/slic3r/GUI/Plater.cpp:1746
+#, possible-c-format
+msgid "You can't to add the object(s) from %s because of one or some of them is(are) multi-part"
+msgstr "Nemůžete pÅ™idat objekt(y) z %s, protože jeden nebo nÄ›které z nich je(jsou) vÃcedÃlné"
+
+#: src/slic3r/GUI/GUI_App.cpp:789
+msgid "You have unsaved changes "
+msgstr "Máte neuložené změny "
+
+#: src/slic3r/GUI/Preferences.cpp:130
+#, possible-c-format
+msgid "You need to restart %s to make the changes effective."
+msgstr "Chcete-li provést zmÄ›ny, musÃte restartovat aplikaci %s."
+
+#: src/slic3r/GUI/Preferences.cpp:126
+msgid "You need to restart Slic3r to make the changes effective."
+msgstr "Chcete-li provést zmÄ›ny, musÃte restartovat aplikaci Slic3r."
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2415
+#, possible-c-format
+msgid "You started your selection with %s Item."
+msgstr "ZaÄali jste výbÄ›r s položkou %s."
+
+#: src/slic3r/GUI/MainFrame.cpp:772
+msgid "Your file was repaired."
+msgstr "Váš soubor byl opraven."
+
+#: src/slic3r/GUI/Plater.cpp:1874
+msgid "Your object appears to be too large, so it was automatically scaled down to fit your print bed."
+msgstr "Váš objekt se zdá být pÅ™ÃliÅ¡ velký, takže byl automaticky zmenÅ¡en, aby se veÅ¡el na tiskovou podložku."
+
+#: src/libslic3r/PrintConfig.cpp:2184
+msgid "Z offset"
+msgstr "Odsazenà Z"
+
+#: src/libslic3r/PrintConfig.cpp:2416
+msgid "Zig-Zag"
+msgstr "Zig-Zag"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:152
+msgid "Zoom in"
+msgstr "PřiblÞit"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:153
+msgid "Zoom out"
+msgstr "Oddálit"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:150
+msgid "Zoom to all objects in scene, if none selected"
+msgstr "Pohled na všechny objekty ve scéně, pokud žádný nenà vybraný"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:149
+msgid "Zoom to Bed"
+msgstr "Pohled na tiskovou plochu"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:151
+msgid "Zoom to selected object"
+msgstr "Pohled na vybraný objekt"
+
+#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:733
+#: src/libslic3r/PrintConfig.cpp:1570 src/libslic3r/PrintConfig.cpp:1580
+#: src/libslic3r/PrintConfig.cpp:1808 src/libslic3r/PrintConfig.cpp:1962
+#: src/libslic3r/PrintConfig.cpp:2146 src/libslic3r/PrintConfig.cpp:2463
+msgid "°"
+msgstr "°"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:613 src/slic3r/GUI/ConfigWizard.cpp:627
+msgid "°C"
+msgstr "°C"
diff --git a/resources/localization/de_DE/Slic3rPE.mo b/resources/localization/de_DE/Slic3rPE.mo
deleted file mode 100644
index 523edac01..000000000
Binary files a/resources/localization/de_DE/Slic3rPE.mo and /dev/null differ
diff --git a/resources/localization/de_DE/Slic3rPE_de.po b/resources/localization/de_DE/Slic3rPE_de.po
deleted file mode 100644
index 8d4d49460..000000000
--- a/resources/localization/de_DE/Slic3rPE_de.po
+++ /dev/null
@@ -1,7082 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-17 13:39+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Oleksandra Iushchenko \n"
-"Language-Team: \n"
-"Language: de\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Poedit 2.0.8\n"
-
-#: src/slic3r/GUI/AboutDialog.cpp:33
-msgid "About Slic3r"
-msgstr "Über Slic3r"
-
-#: src/slic3r/GUI/AboutDialog.cpp:68 src/slic3r/GUI/MainFrame.cpp:51
-msgid "Version"
-msgstr "Version"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:43
-msgid "Shape"
-msgstr "Form"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:50
-msgid "Rectangular"
-msgstr "Rechteckig"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:54
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:207 src/slic3r/GUI/Plater.cpp:125
-#: src/slic3r/GUI/Tab.cpp:2122
-msgid "Size"
-msgstr "Grösse"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:55
-msgid "Size in X and Y of the rectangular plate."
-msgstr "Grösse der rechteckigen Platte in X und Y."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:61
-msgid "Origin"
-msgstr "Nullpunkt"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:62
-msgid ""
-"Distance of the 0,0 G-code coordinate from the front left corner of the "
-"rectangle."
-msgstr ""
-"Abstand der 0,0 G-Code-Koordinate von der linken vorderen Ecke des Rechtecks."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:66
-msgid "Circular"
-msgstr "Kreisförmig"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:69 src/slic3r/GUI/ConfigWizard.cpp:92
-#: src/slic3r/GUI/ConfigWizard.cpp:456 src/slic3r/GUI/ConfigWizard.cpp:470
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:80
-#: src/libslic3r/PrintConfig.cpp:50 src/libslic3r/PrintConfig.cpp:58
-#: src/libslic3r/PrintConfig.cpp:180 src/libslic3r/PrintConfig.cpp:254
-#: src/libslic3r/PrintConfig.cpp:263 src/libslic3r/PrintConfig.cpp:315
-#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:448
-#: src/libslic3r/PrintConfig.cpp:460 src/libslic3r/PrintConfig.cpp:480
-#: src/libslic3r/PrintConfig.cpp:679 src/libslic3r/PrintConfig.cpp:1178
-#: src/libslic3r/PrintConfig.cpp:1243 src/libslic3r/PrintConfig.cpp:1263
-#: src/libslic3r/PrintConfig.cpp:1283 src/libslic3r/PrintConfig.cpp:1365
-#: src/libslic3r/PrintConfig.cpp:1376 src/libslic3r/PrintConfig.cpp:1499
-#: src/libslic3r/PrintConfig.cpp:1508 src/libslic3r/PrintConfig.cpp:1554
-#: src/libslic3r/PrintConfig.cpp:1563 src/libslic3r/PrintConfig.cpp:1574
-#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1592
-#: src/libslic3r/PrintConfig.cpp:1682 src/libslic3r/PrintConfig.cpp:1918
-#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2031
-#: src/libslic3r/PrintConfig.cpp:2241 src/libslic3r/PrintConfig.cpp:2249
-#: src/libslic3r/PrintConfig.cpp:2257 src/libslic3r/PrintConfig.cpp:2291
-#: src/libslic3r/PrintConfig.cpp:2302 src/libslic3r/PrintConfig.cpp:2313
-#: src/libslic3r/PrintConfig.cpp:2321 src/libslic3r/PrintConfig.cpp:2328
-#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2497
-#: src/libslic3r/PrintConfig.cpp:2506 src/libslic3r/PrintConfig.cpp:2515
-#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2560
-#: src/libslic3r/PrintConfig.cpp:2569 src/libslic3r/PrintConfig.cpp:2587
-#: src/libslic3r/PrintConfig.cpp:2596 src/libslic3r/PrintConfig.cpp:2623
-#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2648
-#: src/libslic3r/PrintConfig.cpp:2657 src/libslic3r/PrintConfig.cpp:2666
-msgid "mm"
-msgstr "mm"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:70 src/libslic3r/PrintConfig.cpp:676
-msgid "Diameter"
-msgstr "Durchmesser"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:71
-msgid ""
-"Diameter of the print bed. It is assumed that origin (0,0) is located in the "
-"center."
-msgstr ""
-"Durchmesser des Druckbettes. Es wird angenommen, dass der Ursprung (0,0) "
-"sich im Mittelpunkt befindet."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:75 src/slic3r/GUI/GUI_Preview.cpp:265
-#: src/libslic3r/GCode/PreviewData.cpp:175
-msgid "Custom"
-msgstr "Benutzerdefiniert"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:79
-msgid "Load shape from STL..."
-msgstr ""
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:125
-msgid "Settings"
-msgstr "Einstellungen"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:298
-msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Wählen Sie eine Datei als Druckbettkontur aus (STL/OBJ/AMF/3MF/PRUSA):"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:315 src/slic3r/GUI/GUI_ObjectList.cpp:835
-msgid "Error! "
-msgstr "Fehler! "
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:324
-msgid "The selected file contains no geometry."
-msgstr "Die ausgewählte Datei enthält keine Geometrie."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:328
-msgid ""
-"The selected file contains several disjoint areas. This is not supported."
-msgstr ""
-"Die ausgewählte Datei enthält mehrere nicht zusammenhängende Bereiche. Dies "
-"wird nicht unterstützt."
-
-#: src/slic3r/GUI/BedShapeDialog.hpp:44 src/slic3r/GUI/ConfigWizard.cpp:419
-msgid "Bed Shape"
-msgstr "Druckbrettprofil"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:54
-msgid "Network lookup"
-msgstr "Network Lookup"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:67
-msgid "Address"
-msgstr "Adresse"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:68
-msgid "Hostname"
-msgstr "Hostname"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:69
-msgid "Service name"
-msgstr "Name des Dienstes"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:70
-msgid "OctoPrint version"
-msgstr "OctoPrint Version"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:188
-msgid "Searching for devices"
-msgstr "Es wird nach Geräten gesucht"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:195
-msgid "Finished"
-msgstr "Fertig"
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:15
-msgid "Buttons And Text Colors Description"
-msgstr "Schaltflächen und Textfarben Beschreibung"
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:40
-msgid "Value is the same as the system value"
-msgstr "Der Wert ist gleich wie die Systemeinstellung"
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:57
-msgid ""
-"Value was changed and is not equal to the system value or the last saved "
-"preset"
-msgstr ""
-"Der Wert wurde geändert und ist nicht gleich wie die Systemeinstellung oder "
-"die letzte abgespeicherte Voreinstellung"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:16
-msgid "Upgrade"
-msgstr "Aktualisieren"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:18
-msgid "Downgrade"
-msgstr "Downgrade"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:20
-msgid "Before roll back"
-msgstr "Vor dem Zurückwechseln"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:22
-msgid "User"
-msgstr "Benutzer"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:25
-msgid "Unknown"
-msgstr "Unbekannt"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:37
-msgid "Active: "
-msgstr "Aktiv: "
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43
-msgid "slic3r version"
-msgstr "Slic3r Version"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:44 src/slic3r/GUI/Preset.cpp:1156
-msgid "print"
-msgstr "Druck"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:45
-msgid "filaments"
-msgstr "Filamente"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1160
-msgid "printer"
-msgstr "Drucker"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 src/slic3r/GUI/Tab.cpp:838
-msgid "vendor"
-msgstr "Hersteller"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50
-msgid "version"
-msgstr "Version"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51
-msgid "min slic3r version"
-msgstr "Min. Slic3r Version"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53
-msgid "max slic3r version"
-msgstr "Max. Slic3r Version"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
-msgid "model"
-msgstr "Modell"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
-msgid "variants"
-msgstr "Varianten"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68
-msgid "Incompatible with this Slic3r"
-msgstr "Nicht kompatibel mit diesem Slic3r"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71
-msgid "Activate"
-msgstr "Aktivieren"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:97
-msgid "Configuration Snapshots"
-msgstr "Konfigurations-Momentaufnahmen"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:92
-msgid "nozzle"
-msgstr "Düse"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:93
-msgid "default"
-msgstr "Standard"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:116
-msgid "Select all"
-msgstr "Alles auswählen"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:117
-msgid "Select none"
-msgstr "Auswahl aufheben"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:226
-#, c-format
-msgid "Welcome to the Slic3r %s"
-msgstr "Willkommen in Slic3r %s"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:226
-msgid "Welcome"
-msgstr "Willkommen"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:232 src/slic3r/GUI/GUI_App.cpp:606
-#, c-format
-msgid "Run %s"
-msgstr "%s ausführen"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:234
-#, c-format
-msgid ""
-"Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial "
-"configuration; just a few settings and you will be ready to print."
-msgstr ""
-"Hallo, willkommen bei Slic3r Prusa Edition! Dieses %s hilft Ihnen bei der "
-"Erstkonfiguration; nur ein paar Einstellungen und Sie sind bereit zum "
-"Drucken."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:238
-msgid ""
-"Remove user profiles - install from scratch (a snapshot will be taken "
-"beforehand)"
-msgstr ""
-"Benutzerprofile entfernen - von Grund auf neu installieren (eine "
-"Momentaufnahme wird vorab erstellt)"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:263
-msgid "Other vendors"
-msgstr "Andere Hersteller"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:265
-msgid "Custom setup"
-msgstr "Benutzerdefiniertes Setup"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:289
-msgid "Automatic updates"
-msgstr "Automatische Updates"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:289
-msgid "Updates"
-msgstr "Updates"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:297 src/slic3r/GUI/Preferences.cpp:59
-msgid "Check for application updates"
-msgstr "Nach Updates suchen"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:300 src/slic3r/GUI/Preferences.cpp:61
-msgid ""
-"If enabled, Slic3r checks for new versions of Slic3r PE online. When a new "
-"version becomes available a notification is displayed at the next "
-"application startup (never during program usage). This is only a "
-"notification mechanisms, no automatic installation is done."
-msgstr ""
-"Falls aktiviert, sucht Slic3r online nach neuen Versionen von Slic3r PE. "
-"Falls eine neue Version verfügbar ist, wird eine Mitteilung beim nächsten "
-"Programmstart angezeigt (aber nie während der Programmausführung). Dies "
-"dient nur der Mitteilung; es findet keine automatische Installation statt."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:304 src/slic3r/GUI/Preferences.cpp:67
-msgid "Update built-in Presets automatically"
-msgstr "Eingebaute Voreinstellungen automatisch aktualisieren"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:307 src/slic3r/GUI/Preferences.cpp:69
-msgid ""
-"If enabled, Slic3r downloads updates of built-in system presets in the "
-"background. These updates are downloaded into a separate temporary location. "
-"When a new preset version becomes available it is offered at application "
-"startup."
-msgstr ""
-"Wenn aktiviert, lädt Slic3r Updates der eingebauten Systemvoreinstellungen "
-"im Hintergrund herunter. Diese Updates werden in einen separaten temporären "
-"Speicherort heruntergeladen. Wenn eine neue Voreinstellungsversion verfügbar "
-"wird, wird sie beim Programmstart angeboten."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:308
-msgid ""
-"Updates are never applied without user's consent and never overwrite user's "
-"customized settings."
-msgstr ""
-"Updates werden niemals ohne das Einverständnis des Benutzers ausgeführt, und "
-"werden niemals die vom Benutzer geänderten Einstellungen überschreiben."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:313
-msgid ""
-"Additionally a backup snapshot of the whole configuration is created before "
-"an update is applied."
-msgstr ""
-"Zusätzlich wird ein Momentaufnahme der gesamten Konfiguration als Sicherung "
-"erstellt, bevor ein Update durchgeführt wird."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:320
-msgid "Other Vendors"
-msgstr "Andere Hersteller"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:322
-msgid "Pick another vendor supported by Slic3r PE:"
-msgstr "Wählen Sie einen anderen von Slic3r PE unterstützten Hersteller:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:381
-msgid "Firmware Type"
-msgstr "Firmware Typ"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:381 src/slic3r/GUI/Tab.cpp:1820
-msgid "Firmware"
-msgstr "Firmware"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:385
-msgid "Choose the type of firmware used by your printer."
-msgstr "Wählen Sie den Typ der von Ihrem Drucker verwendeten Firmware."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:419
-msgid "Bed Shape and Size"
-msgstr "Bettform und -größe"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:422
-msgid "Set the shape of your printer's bed."
-msgstr "Stellen Sie die Konturen Ihres Druckerbettes ein."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:436
-msgid "Filament and Nozzle Diameters"
-msgstr "Filament- und Düsendurchmesser"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:436
-msgid "Print Diameters"
-msgstr "Druckdurchmesser"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:452
-msgid "Enter the diameter of your printer's hot end nozzle."
-msgstr "Geben Sie den Durchmesser der Hotenddüse ein."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:455
-msgid "Nozzle Diameter:"
-msgstr "Düsendurchmesser:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:465
-msgid "Enter the diameter of your filament."
-msgstr "Geben Sie den Durchmesser des Filaments ein."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:466
-msgid ""
-"Good precision is required, so use a caliper and do multiple measurements "
-"along the filament, then compute the average."
-msgstr ""
-"Eine hohe Genauigkeit ist erforderlich, also verwenden Sie einen "
-"Messschieber und führen Sie mehrere Messungen entlang des Filaments durch, "
-"um dann den Mittelwert zu berechnen."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:469
-msgid "Filament Diameter:"
-msgstr "Filamentdurchmesser:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:487
-msgid "Extruder and Bed Temperatures"
-msgstr "Extruder- und Druckbetttemperatur"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:487
-msgid "Temperatures"
-msgstr "Temperaturen"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:503
-msgid "Enter the temperature needed for extruding your filament."
-msgstr ""
-"Geben Sie die Temperatur ein, die für die Extrusion Ihres Filaments benötigt "
-"wird."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:504
-msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS."
-msgstr "Ein Daumenwert ist 160 bis 230 °C für PLA, und 215 bis 250 °C für ABS."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:507
-msgid "Extrusion Temperature:"
-msgstr "Extrusionstemperatur:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:508 src/slic3r/GUI/ConfigWizard.cpp:522
-msgid "°C"
-msgstr "°C"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:517
-msgid ""
-"Enter the bed temperature needed for getting your filament to stick to your "
-"heated bed."
-msgstr ""
-"Geben Sie die Betttemperatur ein, die erforderlich ist, damit Ihr Filament "
-"an Ihrem beheizten Bett haftet."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:518
-msgid ""
-"A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have "
-"no heated bed."
-msgstr ""
-"Ein Daumenwert ist 60 °C für PLA und 110 °C für ABS. Auf 0 setzen, falls "
-"kein beheiztes Bett vorhanden ist."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:521
-msgid "Bed Temperature:"
-msgstr "Betttemperatur:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:833
-msgid "< &Back"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:834
-msgid "&Next >"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:835
-msgid "&Finish"
-msgstr "&Beenden"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:906
-msgid "Configuration Wizard"
-msgstr "Konfigurations-Assistent"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:907
-msgid "Configuration &Wizard"
-msgstr "Konfigurations-&Assistent"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:909
-msgid "Configuration Assistant"
-msgstr "Konfigurations-Assistent"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:910
-msgid "Configuration &Assistant"
-msgstr "Konfigurations-&Assistent"
-
-#: src/slic3r/GUI/Field.cpp:109
-msgid "default value"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:112
-msgid "parameter name"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:140
-#, c-format
-msgid "%s doesn't support percentage"
-msgstr "%s akzeptiert keine Prozentangaben"
-
-#: src/slic3r/GUI/Field.cpp:148 src/slic3r/GUI/Field.cpp:168
-msgid ""
-"Input value contains incorrect symbol(s).\n"
-"Use, please, only digits"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:153
-msgid "Input value is out of range"
-msgstr "Der Eingabewert ist nicht im gültigen Bereich"
-
-#: src/slic3r/GUI/Field.cpp:176
-#, c-format
-msgid ""
-"Do you mean %d%% instead of %d %s?\n"
-"Select YES if you want to change this value to %d%%, \n"
-"or NO if you are sure that %d %s is a correct value."
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:179
-msgid "Parameter validation"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:133
-msgid "Flash!"
-msgstr "Flash!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:134 src/slic3r/GUI/GLGizmo.cpp:2270
-msgid "Cancel"
-msgstr "Abbrechen"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:135
-msgid "Flashing in progress. Please do not disconnect the printer!"
-msgstr "Es wird geflashed. Bitte nicht den Drucker abklemmen!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:245
-msgid "Flashing succeeded!"
-msgstr "Flashen erfolgreich!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:246
-msgid "Flashing failed. Please see the avrdude log below."
-msgstr "Flashen misslungen. Bitte überprüfen Sie das Avrdude log unterhalb."
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:247
-msgid "Flashing cancelled."
-msgstr "Flashen abgebrochen."
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:279
-#, c-format
-msgid "Flashing failed: %s"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:293
-#, c-format
-msgid ""
-"This firmware hex file does not match the printer model.\n"
-"The hex file is intended for: %s\n"
-"Printer reported: %s\n"
-"\n"
-"Do you want to continue and flash this hex file anyway?\n"
-"Please only continue if you are sure this is the right thing to do."
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:380 src/slic3r/GUI/FirmwareDialog.cpp:414
-msgid ""
-"Multiple Original Prusa i3 MMU 2.0 devices found. Please only connect one at "
-"a time for flashing."
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:508
-msgid "The device could not have been found"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:581
-#, c-format
-msgid "Error accessing port at %s: %s"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:690
-msgid "Firmware flasher"
-msgstr "Firmware Flasher"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:712
-msgid "Firmware image:"
-msgstr "Firmware Image:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:716
-msgid "Serial port:"
-msgstr "Serieller Port:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:718
-msgid "Autodetected"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:719
-msgid "Rescan"
-msgstr "Rescan"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:726
-msgid "Progress:"
-msgstr "Fortschritt:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:729
-msgid "Status:"
-msgstr "Status:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:730
-msgid "Ready"
-msgstr "Fertig"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:750
-msgid "Advanced: avrdude output log"
-msgstr "Fortgeschritten: Avrdude Output Log"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:809
-msgid ""
-"Are you sure you want to cancel firmware flashing?\n"
-"This could leave your printer in an unusable state!"
-msgstr ""
-"Sind Sie sicher, dass Sie das Flashen der Firmware abbrechen wollen? Dies "
-"könnte Ihren Drucker in einen unbrauchbaren Zustand versetzen!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:810
-msgid "Confirmation"
-msgstr "Bestätigung"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:813
-msgid "Cancelling..."
-msgstr ""
-
-#: src/slic3r/GUI/GLCanvas3D.cpp:4640
-msgid "Detected object outside print volume"
-msgstr ""
-
-#: src/slic3r/GUI/GLCanvas3D.cpp:7962
-msgid "Detected toolpath outside print volume"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:751 src/slic3r/GUI/GUI_ObjectManipulation.cpp:300
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:322
-#: src/libslic3r/PrintConfig.cpp:3087
-msgid "Rotate"
-msgstr "Drehen"
-
-#: src/slic3r/GUI/GLGizmo.cpp:785
-msgid "Rotation (deg)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:841 src/slic3r/GUI/GUI_ObjectManipulation.cpp:206
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:301
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:323
-#: src/libslic3r/PrintConfig.cpp:3111
-msgid "Scale"
-msgstr "Skalieren"
-
-#: src/slic3r/GUI/GLGizmo.cpp:1072
-msgid "Scale (%)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1200
-msgid "Move"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Position (mm)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Displacement (mm)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1430
-msgid "Place on face"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2207
-msgid "Left mouse click - add point"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2208
-msgid "Right mouse click - remove point"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2211
-msgid "Generate points automatically"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2212
-msgid "Remove all points"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2245
-msgid "SLA Support Points"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2268 src/slic3r/GUI/GLGizmo.cpp:2468
-msgid "Rotate lower part upwards"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2269 src/slic3r/GUI/GLGizmo.cpp:2470
-msgid "Perform cut"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2276
-msgid "Cut object:"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2356 src/slic3r/GUI/GLGizmo.cpp:2461
-#: src/libslic3r/PrintConfig.cpp:3016
-msgid "Cut"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2466
-msgid "Keep upper part"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2467
-msgid "Keep lower part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI.cpp:242
-msgid "Notice"
-msgstr "Hinweis"
-
-#: src/slic3r/GUI/GUI.cpp:248
-msgid "Attempt to free unreferenced scalar"
-msgstr "Versuch, unreferenzierte Skalare freizugeben"
-
-#: src/slic3r/GUI/GUI.cpp:250 src/slic3r/GUI/WipeTowerDialog.cpp:40
-#: src/slic3r/GUI/WipeTowerDialog.cpp:322
-msgid "Warning"
-msgstr "Warnung"
-
-#: src/slic3r/GUI/GUI_App.cpp:377
-msgid "Choose one file (3MF):"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:389
-msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Wählen Sie eine oder mehrere Dateien (STL/OBJ/AMF/3MF/PRUSA):"
-
-#: src/slic3r/GUI/GUI_App.cpp:451
-msgid "Array of language names and identifiers should have the same size."
-msgstr ""
-"Felder mit Sprachnamen und Bezeichnern sollten die gleiche Größe haben."
-
-#: src/slic3r/GUI/GUI_App.cpp:461
-msgid "Select the language"
-msgstr "Wählen Sie die Sprache aus"
-
-#: src/slic3r/GUI/GUI_App.cpp:461
-msgid "Language"
-msgstr "Spache"
-
-#: src/slic3r/GUI/GUI_App.cpp:529 src/libslic3r/PrintConfig.cpp:270
-msgid "Default"
-msgstr "Standard"
-
-#: src/slic3r/GUI/GUI_App.cpp:609
-msgid "&Configuration Snapshots"
-msgstr "&Konfigurations-Momentaufnahmen"
-
-#: src/slic3r/GUI/GUI_App.cpp:609
-msgid "Inspect / activate configuration snapshots"
-msgstr "Inspiziere / aktiviere Konfigurations-Momentaufnahmen"
-
-#: src/slic3r/GUI/GUI_App.cpp:610
-msgid "Take Configuration &Snapshot"
-msgstr "Erfassen einer Konfigurations-Momentauf&nahme"
-
-#: src/slic3r/GUI/GUI_App.cpp:610
-msgid "Capture a configuration snapshot"
-msgstr "Erfassen einer Konfigurations-Momentaufnahme"
-
-#: src/slic3r/GUI/GUI_App.cpp:613
-msgid "&Preferences"
-msgstr "&Einstellungen"
-
-#: src/slic3r/GUI/GUI_App.cpp:613
-msgid "Application preferences"
-msgstr "Anwendungseinstellungen"
-
-#: src/slic3r/GUI/GUI_App.cpp:616
-msgid "Simple"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:616
-msgid "Simple View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:617 src/slic3r/GUI/GUI_ObjectList.cpp:39
-#: src/slic3r/GUI/Tab.cpp:948 src/slic3r/GUI/Tab.cpp:962
-#: src/slic3r/GUI/Tab.cpp:1058 src/slic3r/GUI/Tab.cpp:1061
-#: src/slic3r/GUI/Tab.cpp:1425 src/slic3r/GUI/Tab.cpp:1840
-#: src/libslic3r/PrintConfig.cpp:156 src/libslic3r/PrintConfig.cpp:323
-#: src/libslic3r/PrintConfig.cpp:999 src/libslic3r/PrintConfig.cpp:2298
-msgid "Advanced"
-msgstr "Erweiterte Einstellungen"
-
-#: src/slic3r/GUI/GUI_App.cpp:617
-msgid "Advanced View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:618
-msgid "Expert"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:618
-msgid "Expert View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:620
-msgid "Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:620
-msgid "Slic3r View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:622
-msgid "Change Application &Language"
-msgstr "Wechsel der Anwendungs&sprache"
-
-#: src/slic3r/GUI/GUI_App.cpp:624
-msgid "Flash printer &firmware"
-msgstr "Flashe Drucker &Firmware"
-
-#: src/slic3r/GUI/GUI_App.cpp:624
-msgid "Upload a firmware image into an Arduino based printer"
-msgstr "Lade ein Firmware Image zu einem Arduino basierten Drucker hoch"
-
-#: src/slic3r/GUI/GUI_App.cpp:636
-msgid "Taking configuration snapshot"
-msgstr "Ich erfasse eine Momentaufnahme der Konfiguration"
-
-#: src/slic3r/GUI/GUI_App.cpp:636
-msgid "Snapshot name"
-msgstr "Name der Momentaufnahme"
-
-#: src/slic3r/GUI/GUI_App.cpp:674
-msgid "Application will be restarted"
-msgstr "Anwendung wird neu gestartet"
-
-#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/Tab.cpp:2606
-msgid "Attention!"
-msgstr "Achtung!"
-
-#: src/slic3r/GUI/GUI_App.cpp:691
-msgid "&Configuration"
-msgstr "&Konfiguration"
-
-#: src/slic3r/GUI/GUI_App.cpp:711
-msgid "You have unsaved changes "
-msgstr "Sie haben nicht gespeicherte Änderungen "
-
-#: src/slic3r/GUI/GUI_App.cpp:711
-msgid ". Discard changes and continue anyway?"
-msgstr ". Änderungen verwerfen und fortfahren?"
-
-#: src/slic3r/GUI/GUI_App.cpp:712
-msgid "Unsaved Presets"
-msgstr "Nicht abgespeicherte Voreinstellungen"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:31 src/libslic3r/PrintConfig.cpp:47
-#: src/libslic3r/PrintConfig.cpp:115 src/libslic3r/PrintConfig.cpp:357
-#: src/libslic3r/PrintConfig.cpp:410 src/libslic3r/PrintConfig.cpp:419
-#: src/libslic3r/PrintConfig.cpp:849 src/libslic3r/PrintConfig.cpp:1037
-#: src/libslic3r/PrintConfig.cpp:1354 src/libslic3r/PrintConfig.cpp:1426
-#: src/libslic3r/PrintConfig.cpp:1618 src/libslic3r/PrintConfig.cpp:2091
-#: src/libslic3r/PrintConfig.cpp:2150
-msgid "Layers and Perimeters"
-msgstr "Schichten und Konturen"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:32 src/slic3r/GUI/Tab.cpp:952
-#: src/slic3r/GUI/Tab.cpp:953 src/slic3r/GUI/Tab.cpp:1274
-#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:366
-#: src/libslic3r/PrintConfig.cpp:730 src/libslic3r/PrintConfig.cpp:745
-#: src/libslic3r/PrintConfig.cpp:783 src/libslic3r/PrintConfig.cpp:938
-#: src/libslic3r/PrintConfig.cpp:949 src/libslic3r/PrintConfig.cpp:969
-#: src/libslic3r/PrintConfig.cpp:989 src/libslic3r/PrintConfig.cpp:1010
-#: src/libslic3r/PrintConfig.cpp:1733 src/libslic3r/PrintConfig.cpp:1752
-msgid "Infill"
-msgstr "Infill"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_Preview.cpp:262
-#: src/slic3r/GUI/Tab.cpp:980 src/slic3r/GUI/Tab.cpp:981
-#: src/libslic3r/PrintConfig.cpp:305 src/libslic3r/PrintConfig.cpp:1484
-#: src/libslic3r/PrintConfig.cpp:1865 src/libslic3r/PrintConfig.cpp:1872
-#: src/libslic3r/PrintConfig.cpp:1881 src/libslic3r/PrintConfig.cpp:1894
-#: src/libslic3r/PrintConfig.cpp:1905 src/libslic3r/PrintConfig.cpp:1914
-#: src/libslic3r/PrintConfig.cpp:1930 src/libslic3r/PrintConfig.cpp:1953
-#: src/libslic3r/PrintConfig.cpp:1965 src/libslic3r/PrintConfig.cpp:1983
-#: src/libslic3r/PrintConfig.cpp:1993 src/libslic3r/PrintConfig.cpp:2003
-#: src/libslic3r/PrintConfig.cpp:2014 src/libslic3r/PrintConfig.cpp:2029
-#: src/libslic3r/PrintConfig.cpp:2038 src/libslic3r/PrintConfig.cpp:2039
-#: src/libslic3r/PrintConfig.cpp:2048 src/libslic3r/PrintConfig.cpp:2057
-#: src/libslic3r/PrintConfig.cpp:2072 src/libslic3r/GCode/PreviewData.cpp:172
-msgid "Support material"
-msgstr "Stützmaterial"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_Preview.cpp:241
-#: src/slic3r/GUI/Tab.cpp:1005 src/libslic3r/PrintConfig.cpp:169
-#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:881
-#: src/libslic3r/PrintConfig.cpp:1011 src/libslic3r/PrintConfig.cpp:1416
-#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1721
-#: src/libslic3r/PrintConfig.cpp:1776 src/libslic3r/PrintConfig.cpp:2136
-msgid "Speed"
-msgstr "Geschwindigkeit"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/Tab.cpp:1038
-#: src/slic3r/GUI/Tab.cpp:1744 src/libslic3r/PrintConfig.cpp:430
-#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:1393
-#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1944
-#: src/libslic3r/PrintConfig.cpp:1973 src/libslic3r/PrintConfig.cpp:2271
-#: src/libslic3r/PrintConfig.cpp:2280
-msgid "Extruders"
-msgstr "Extruder"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/libslic3r/PrintConfig.cpp:387
-#: src/libslic3r/PrintConfig.cpp:504 src/libslic3r/PrintConfig.cpp:836
-#: src/libslic3r/PrintConfig.cpp:970 src/libslic3r/PrintConfig.cpp:1403
-#: src/libslic3r/PrintConfig.cpp:1765 src/libslic3r/PrintConfig.cpp:1954
-#: src/libslic3r/PrintConfig.cpp:2124
-msgid "Extrusion Width"
-msgstr "Extrusionsbreite"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:41 src/slic3r/GUI/Tab.cpp:3179
-#: src/slic3r/GUI/Tab.cpp:3180 src/libslic3r/PrintConfig.cpp:2488
-#: src/libslic3r/PrintConfig.cpp:2495 src/libslic3r/PrintConfig.cpp:2504
-#: src/libslic3r/PrintConfig.cpp:2513 src/libslic3r/PrintConfig.cpp:2522
-#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2558
-#: src/libslic3r/PrintConfig.cpp:2567 src/libslic3r/PrintConfig.cpp:2576
-#: src/libslic3r/PrintConfig.cpp:2585 src/libslic3r/PrintConfig.cpp:2594
-#: src/libslic3r/PrintConfig.cpp:2603 src/libslic3r/PrintConfig.cpp:2612
-#: src/libslic3r/PrintConfig.cpp:2621
-msgid "Supports"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:42 src/slic3r/GUI/Tab.cpp:3205
-#: src/slic3r/GUI/Tab.cpp:3206 src/libslic3r/PrintConfig.cpp:2630
-#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2646
-#: src/libslic3r/PrintConfig.cpp:2655 src/libslic3r/PrintConfig.cpp:2664
-msgid "Pad"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:115
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:129
-msgid "Name"
-msgstr "Name"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:134
-msgid "Right button click the icon to change the object settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:142
-#, c-format
-msgid "Auto-repaired (%d errors):\n"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:145
-msgid "degenerate facets"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:146
-msgid "edges fixed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:147
-msgid "facets removed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:148
-msgid "facets added"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:149
-msgid "facets reversed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:150
-msgid "backwards edges"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:164
-msgid "Right button click the icon to fix STL through Netfabb"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:196 src/slic3r/GUI/Tab.cpp:1389
-#: src/libslic3r/PrintConfig.cpp:429
-msgid "Extruder"
-msgstr "Extruder"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:615
-msgid "Select showing settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:655
-msgid "Load"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659 src/slic3r/GUI/GUI_ObjectList.cpp:688
-#: src/slic3r/GUI/GUI_ObjectList.cpp:691
-msgid "Box"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Cylinder"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Sphere"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Slab"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:671 src/slic3r/GUI/GUI_ObjectList.cpp:685
-msgid "Add part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:672
-msgid "Add modifier"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:673 src/slic3r/GUI/GUI_ObjectList.cpp:687
-msgid "Add support enforcer"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:674 src/slic3r/GUI/GUI_ObjectList.cpp:690
-msgid "Add support blocker"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:711
-msgid "Split to parts"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:725
-msgid "Add settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:739
-msgid "Change type"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1009
-msgid "You can't delete the last solid part from object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1017
-msgid "You can't delete the last intance from object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1044 src/slic3r/GUI/Plater.cpp:1825
-msgid ""
-"The selected object couldn't be split because it contains only one part."
-msgstr ""
-"Das ausgewählte Objekt konnte nicht getrennt werden, da es nur aus einem "
-"Teil besteht."
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1138
-msgid "Group manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1149
-msgid "Object manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1159
-msgid "Object Settings to modify"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1163
-msgid "Part Settings to modify"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1173
-msgid "Part manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1180
-msgid "Instance manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1655
-msgid "You can't change a type of the last solid part of the object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1662
-msgid "Select type of part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1744 src/slic3r/GUI/Tab.cpp:3070
-#: src/slic3r/GUI/Tab.cpp:3074
-msgid "The supplied name is not valid;"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1745 src/slic3r/GUI/Tab.cpp:3071
-msgid "the following characters are not allowed:"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:21
-msgid "Object Manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:132
-msgid "Object name"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252
-msgid "Position"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:205
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253
-msgid "Rotation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254
-msgid "Scale factors"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:321
-msgid "Translate"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_Preview.cpp:235
-msgid "View"
-msgstr "Ansicht"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/GUI_Preview.cpp:550
-#: src/libslic3r/GCode/PreviewData.cpp:394
-msgid "Feature type"
-msgstr "Merkmalstyp"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/PrintConfig.cpp:443
-msgid "Height"
-msgstr "Höhe"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/PrintConfig.cpp:2255
-msgid "Width"
-msgstr "Breite"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:242
-msgid "Volumetric flow rate"
-msgstr "Volumetrische Flussrate"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:243 src/slic3r/GUI/GUI_Preview.cpp:347
-#: src/slic3r/GUI/GUI_Preview.cpp:496 src/slic3r/GUI/GUI_Preview.cpp:718
-#: src/libslic3r/GCode/PreviewData.cpp:404
-msgid "Tool"
-msgstr "Werkzeug"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:244 src/slic3r/GUI/GUI_Preview.cpp:550
-#: src/libslic3r/GCode/PreviewData.cpp:406
-msgid "Color Print"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_Preview.cpp:247
-msgid "Show"
-msgstr "Anzeigen"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/GUI_Preview.cpp:251
-msgid "Feature types"
-msgstr "Merkmalstypen"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/GCode/PreviewData.cpp:163
-msgid "Perimeter"
-msgstr "Aussenschicht"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:254 src/libslic3r/GCode/PreviewData.cpp:164
-msgid "External perimeter"
-msgstr "Aussenschicht"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/GCode/PreviewData.cpp:165
-msgid "Overhang perimeter"
-msgstr "Überhängende Aussenschicht"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:256 src/libslic3r/GCode/PreviewData.cpp:166
-msgid "Internal infill"
-msgstr "Internes Infill"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:257 src/libslic3r/PrintConfig.cpp:1764
-#: src/libslic3r/PrintConfig.cpp:1775 src/libslic3r/GCode/PreviewData.cpp:167
-msgid "Solid infill"
-msgstr "Stabiles Infill"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:258 src/libslic3r/PrintConfig.cpp:2123
-#: src/libslic3r/PrintConfig.cpp:2135 src/libslic3r/GCode/PreviewData.cpp:168
-msgid "Top solid infill"
-msgstr "Oberes stabiles Infill"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:259 src/libslic3r/GCode/PreviewData.cpp:169
-msgid "Bridge infill"
-msgstr "Überbrückungs-Infill"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:260 src/libslic3r/PrintConfig.cpp:880
-#: src/libslic3r/GCode/PreviewData.cpp:170
-msgid "Gap fill"
-msgstr "Lückenfüllung"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:261 src/slic3r/GUI/Tab.cpp:971
-#: src/libslic3r/GCode/PreviewData.cpp:171
-msgid "Skirt"
-msgstr "Schürze"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:263 src/libslic3r/PrintConfig.cpp:2002
-#: src/libslic3r/GCode/PreviewData.cpp:173
-msgid "Support material interface"
-msgstr "Schnittstelle zum Stützmaterial"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:264 src/slic3r/GUI/Tab.cpp:1049
-#: src/libslic3r/GCode/PreviewData.cpp:174
-msgid "Wipe tower"
-msgstr "Reinigungssäule"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:269 src/libslic3r/PrintConfig.cpp:2158
-msgid "Travel"
-msgstr "Eilgang"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:270
-msgid "Retractions"
-msgstr "Einzüge"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:271
-msgid "Unretractions"
-msgstr "Wiedereinzüge"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:272
-msgid "Shells"
-msgstr "Konturhüllen"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:12
-msgid "Slic3r Prusa Edition - Keyboard Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:47
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:126
-msgid "Main Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:101
-msgid "Open project STL/OBJ/AMF/3MF with config, delete bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:102
-msgid "Import STL/OBJ/AMF/3MF without config, keep bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:103
-msgid "Load Config from .ini/amf/3mf/gcode"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:104 src/slic3r/GUI/Plater.cpp:605
-msgid "Export G-code"
-msgstr "Export G-Code"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:105
-msgid "Save project (3MF)"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:106
-msgid "Load Config from .ini/amf/3mf/gcode and merge"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:107
-msgid "(Re)slice"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:108
-msgid "Quick slice"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 src/slic3r/GUI/MainFrame.cpp:289
-msgid "Repeat last quick slice"
-msgstr "Letzten Quick Slice wiederholen"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:110
-msgid "Select Plater Tab"
-msgstr "Reiter \"Druckplatte\" auswählen"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:111
-msgid "Quick slice and Save as"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:112
-msgid "Select Print Settings Tab"
-msgstr "Reiter \"Druckeinstellungen\" auswählen"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:113
-msgid "Select Filament Settings Tab"
-msgstr "Reiter \"Filamenteinstellungen\" auswählen"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:114
-msgid "Select Printer Settings Tab"
-msgstr "Reiter \"Druckereinstellungen\" auswählen"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:115
-msgid "Switch to 3D"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:116
-msgid "Switch to Preview"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 src/slic3r/GUI/Preferences.cpp:10
-msgid "Preferences"
-msgstr "Einstellungen"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:118
-#: src/slic3r/GUI/PrintHostDialogs.cpp:89
-msgid "Print host upload queue"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:119
-msgid "Camera view "
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:120
-msgid "Add Instance to selected object "
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:121
-msgid "Remove Instance from selected object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:122
-msgid "Show keyboard shortcuts list"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:123
-msgid "Switch between 3D and Preview"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:124
-msgid "Select multiple object/Move multiple object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:132
-msgid "Arrange"
-msgstr "Anordnen"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:133
-msgid "Select All objects"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:134
-msgid "Delete selected"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:135
-msgid "Delete All"
-msgstr "Alle löschen"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:136
-msgid "Gizmo move"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:137
-msgid "Gizmo scale"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:138
-msgid "Gizmo rotate"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:139
-msgid "Gizmo cut"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:140
-msgid "Gizmo Place face on bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:141
-msgid "Gizmo SLA support points"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:142
-msgid "Zoom to Bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:143
-msgid "Zoom to all objects in scene, if none selected"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:144
-msgid "Zoom to selected object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:145
-msgid "Zoom in"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:146
-msgid "Zoom out"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:147
-msgid "Unselect gizmo, keep object selection"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:149
-msgid "Plater Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
-msgid "Arrow Up"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
-msgid "Upper Layer"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
-msgid "Arrow Down"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
-msgid "Lower Layer"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:158
-msgid "Preview Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:53
-msgid ""
-" - Remember to check for updates at http://github.com/prusa3d/slic3r/releases"
-msgstr ""
-" - Denken Sie an die Überprüfung von Updates auf http://github.com/prusa3d/"
-"slic3r/releases"
-
-#: src/slic3r/GUI/MainFrame.cpp:130
-msgid "Plater"
-msgstr "Druckplatte"
-
-#: src/slic3r/GUI/MainFrame.cpp:236
-msgid "&Open"
-msgstr "Ö&ffne"
-
-#: src/slic3r/GUI/MainFrame.cpp:236
-msgid "Open a project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:238
-msgid "&Save"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:238
-msgid "Save current project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:240
-msgid "Save &as"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:240
-msgid "Save current project file as"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:246
-msgid "Import STL/OBJ/AM&F/3MF"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:246
-msgid "Load a model"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:249
-msgid "Import &Config"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:249
-msgid "Load exported configuration file"
-msgstr "Laden einer exportierten Konfigurationsdatei"
-
-#: src/slic3r/GUI/MainFrame.cpp:251
-msgid "Import Config from &project"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:251
-msgid "Load configuration from project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:254
-msgid "Import Config &Bundle"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:254
-msgid "Load presets from a bundle"
-msgstr "Lade Voreinstellungen aus einer Sammlung"
-
-#: src/slic3r/GUI/MainFrame.cpp:256
-msgid "&Import"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:259
-msgid "Export &G-code"
-msgstr "Export &G-Code"
-
-#: src/slic3r/GUI/MainFrame.cpp:259
-msgid "Export current plate as G-code"
-msgstr "Exportiere die aktuelle Plattenbelegung als G-Code"
-
-#: src/slic3r/GUI/MainFrame.cpp:262
-msgid "Export plate as &STL"
-msgstr "Exportiere die Plattenbelegung als &STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:262
-msgid "Export current plate as STL"
-msgstr "Exportiere die aktuelle Plattenbelegung als STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:264
-msgid "Export plate as &AMF"
-msgstr "Exportiere die Plattenbelegung als &AMF"
-
-#: src/slic3r/GUI/MainFrame.cpp:264
-msgid "Export current plate as AMF"
-msgstr "Exportiere die aktuelle Plattenbelegung als AMF"
-
-#: src/slic3r/GUI/MainFrame.cpp:267
-msgid "Export &Config"
-msgstr "Exportiere &Konfiguration"
-
-#: src/slic3r/GUI/MainFrame.cpp:267
-msgid "Export current configuration to file"
-msgstr "Exportiere die aktuelle Konfiguration in eine Datei"
-
-#: src/slic3r/GUI/MainFrame.cpp:269
-msgid "Export Config &Bundle"
-msgstr "Konfigurations&samlung exportieren"
-
-#: src/slic3r/GUI/MainFrame.cpp:269
-msgid "Export all presets to file"
-msgstr "Exportiere alle Voreinstellungen in eine Datei"
-
-#: src/slic3r/GUI/MainFrame.cpp:271
-msgid "&Export"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:277
-msgid "Quick Slice"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:277
-msgid "Slice a file into a G-code"
-msgstr "Datei zu G-Code slicen"
-
-#: src/slic3r/GUI/MainFrame.cpp:283
-msgid "Quick Slice and Save As"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:283
-msgid "Slice a file into a G-code, save as"
-msgstr "Datei zu G-Code slicen, speichern als"
-
-#: src/slic3r/GUI/MainFrame.cpp:289
-msgid "Repeat Last Quick Slice"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:297
-msgid "(Re)Slice &Now"
-msgstr "(Re)Slice &jetzt"
-
-#: src/slic3r/GUI/MainFrame.cpp:297
-msgid "Start new slicing process"
-msgstr "Neuen Slicing-Prozess starten"
-
-#: src/slic3r/GUI/MainFrame.cpp:300
-msgid "&Repair STL file"
-msgstr "STL-Datei &reparieren"
-
-#: src/slic3r/GUI/MainFrame.cpp:300
-msgid "Automatically repair an STL file"
-msgstr "Repariere automatisch die STL Datei"
-
-#: src/slic3r/GUI/MainFrame.cpp:303
-msgid "&Quit"
-msgstr "&Beenden"
-
-#: src/slic3r/GUI/MainFrame.cpp:303
-msgid "Quit Slic3r"
-msgstr "Slic3r beenden"
-
-#: src/slic3r/GUI/MainFrame.cpp:321
-msgid "&Select all"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:321
-msgid "Selects all objects"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:324
-msgid "&Delete selected"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:324
-msgid "Deletes the current selection"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:326
-msgid "Delete &all"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:326
-msgid "Deletes all objects"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:339
-msgid "&Plater Tab"
-msgstr "\"Druck&platte\" auswählen"
-
-#: src/slic3r/GUI/MainFrame.cpp:339
-msgid "Show the plater"
-msgstr "Druckplatte anzeigen"
-
-#: src/slic3r/GUI/MainFrame.cpp:346
-msgid "P&rint Settings Tab"
-msgstr "\"D&ruckeinstellungen\" auswählen"
-
-#: src/slic3r/GUI/MainFrame.cpp:346
-msgid "Show the print settings"
-msgstr "Druckeinstellungen anzeigen"
-
-#: src/slic3r/GUI/MainFrame.cpp:348
-msgid "&Filament Settings Tab"
-msgstr "\"&Filamenteinstellungen\" auswählen"
-
-#: src/slic3r/GUI/MainFrame.cpp:348
-msgid "Show the filament settings"
-msgstr "Filamenteinstellungen anzeigen"
-
-#: src/slic3r/GUI/MainFrame.cpp:350
-msgid "Print&er Settings Tab"
-msgstr "\"Druck&ereinstellungen\" auswählen"
-
-#: src/slic3r/GUI/MainFrame.cpp:350
-msgid "Show the printer settings"
-msgstr "Druckereinstellungen anzeigen"
-
-#: src/slic3r/GUI/MainFrame.cpp:354
-msgid "3&D"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:354
-msgid "Show the 3D editing view"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:356
-msgid "Pre&view"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:356
-msgid "Show the 3D slices preview"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:377
-msgid "Print &Host Upload Queue"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:377
-msgid "Display the Print Host Upload Queue window"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "&Iso"
-msgstr "&Iso"
-
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "Iso View"
-msgstr "Iso Ansicht"
-
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "&Top"
-msgstr "Von &oben"
-
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "Top View"
-msgstr "Ansicht von oben"
-
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "&Bottom"
-msgstr "Von &Unten"
-
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "Bottom View"
-msgstr "Ansicht von Unten"
-
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "&Front"
-msgstr "&Front"
-
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "Front View"
-msgstr "Frontalansicht"
-
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "R&ear"
-msgstr "&Hinten"
-
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "Rear View"
-msgstr "Ansicht von Hinten"
-
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "&Left"
-msgstr "&Links"
-
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "Left View"
-msgstr "Anicht von Links"
-
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "&Right"
-msgstr "&Rechts"
-
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "Right View"
-msgstr "Ansicht von rechts"
-
-#: src/slic3r/GUI/MainFrame.cpp:409
-msgid "Prusa 3D &Drivers"
-msgstr "Prusa 3D &Treiber"
-
-#: src/slic3r/GUI/MainFrame.cpp:409
-msgid "Open the Prusa3D drivers download page in your browser"
-msgstr "Download-Seite für die Prusa3D-Treiber in Ihrem Browser öffnen"
-
-#: src/slic3r/GUI/MainFrame.cpp:411
-msgid "Prusa Edition &Releases"
-msgstr "Prusa Edition &Release"
-
-#: src/slic3r/GUI/MainFrame.cpp:411
-msgid "Open the Prusa Edition releases page in your browser"
-msgstr "Seite mit den Prusa Edition-Releases in Ihrem Browser öffnen"
-
-#: src/slic3r/GUI/MainFrame.cpp:417
-msgid "Slic3r &Website"
-msgstr "Slic3r &Website"
-
-#: src/slic3r/GUI/MainFrame.cpp:417
-msgid "Open the Slic3r website in your browser"
-msgstr "Slic3r-Website in Ihrem Browser öffnen"
-
-#: src/slic3r/GUI/MainFrame.cpp:419
-msgid "Slic3r &Manual"
-msgstr "Slic3r &Handbuch"
-
-#: src/slic3r/GUI/MainFrame.cpp:419
-msgid "Open the Slic3r manual in your browser"
-msgstr "Slic3r-Handbuch in Ihrem Browser öffnen"
-
-#: src/slic3r/GUI/MainFrame.cpp:422
-msgid "System &Info"
-msgstr "System&informationen"
-
-#: src/slic3r/GUI/MainFrame.cpp:422
-msgid "Show system information"
-msgstr "Systeminformationen anzeigen"
-
-#: src/slic3r/GUI/MainFrame.cpp:424
-msgid "Show &Configuration Folder"
-msgstr "Zeige Konfigurationsordner (&C)"
-
-#: src/slic3r/GUI/MainFrame.cpp:424
-msgid "Show user configuration folder (datadir)"
-msgstr "Zeige User Konfiguration Ordner (datadir)"
-
-#: src/slic3r/GUI/MainFrame.cpp:426
-msgid "Report an I&ssue"
-msgstr "Einen F&ehler melden"
-
-#: src/slic3r/GUI/MainFrame.cpp:426
-msgid "Report an issue on the Slic3r Prusa Edition"
-msgstr "Einen Fehler in der Slic3r Prusa Edition melden"
-
-#: src/slic3r/GUI/MainFrame.cpp:428
-msgid "&About Slic3r"
-msgstr "&Über Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:428
-msgid "Show about dialog"
-msgstr "\"Über\"-Dialog anzeigen"
-
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "&Keyboard Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "Show the list of the keyboard shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:439
-msgid "&File"
-msgstr "&Datei"
-
-#: src/slic3r/GUI/MainFrame.cpp:440
-msgid "&Edit"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:441
-msgid "&Window"
-msgstr "&Fenster"
-
-#: src/slic3r/GUI/MainFrame.cpp:442
-msgid "&View"
-msgstr "&Anzeige"
-
-#: src/slic3r/GUI/MainFrame.cpp:445
-msgid "&Help"
-msgstr "&Hilfe"
-
-#: src/slic3r/GUI/MainFrame.cpp:472
-msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Wählen Sie eine Datei zum Slicen (STL/OBJ/AMF/3MF/PRUSA):"
-
-#: src/slic3r/GUI/MainFrame.cpp:486
-msgid "No previously sliced file."
-msgstr "Keine vorher gesclicete Datei."
-
-#: src/slic3r/GUI/MainFrame.cpp:487 src/slic3r/GUI/PrintHostDialogs.cpp:173
-msgid "Error"
-msgstr "Fehler"
-
-#: src/slic3r/GUI/MainFrame.cpp:492
-msgid "Previously sliced file ("
-msgstr "Vorher geslicete Datei ("
-
-#: src/slic3r/GUI/MainFrame.cpp:492
-msgid ") not found."
-msgstr ") nicht gefunden."
-
-#: src/slic3r/GUI/MainFrame.cpp:493
-msgid "File Not Found"
-msgstr "Datei nicht gefunden"
-
-#: src/slic3r/GUI/MainFrame.cpp:531 src/slic3r/GUI/Tab.cpp:3031
-msgid "Save "
-msgstr "Speichern "
-
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid "SVG"
-msgstr "SVG"
-
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid "G-code"
-msgstr "G-Code"
-
-# Context: L('Save ') . ($params{export_svg} ? L('SVG') : L('G-code')) . L(' file as:'), e.g. "Save G-Code file as:"
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid " file as:"
-msgstr " Datei als:"
-
-#: src/slic3r/GUI/MainFrame.cpp:548
-msgid "Save zip file as:"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:560
-msgid "Slicing"
-msgstr "Der Slice wird berechnet"
-
-#: src/slic3r/GUI/MainFrame.cpp:560
-msgid "Processing "
-msgstr "Berechnung "
-
-#: src/slic3r/GUI/MainFrame.cpp:583
-msgid " was successfully sliced."
-msgstr " wurde erfolgreich gesliced."
-
-#: src/slic3r/GUI/MainFrame.cpp:585
-msgid "Slicing Done!"
-msgstr "Der Slice ist beendet!"
-
-#: src/slic3r/GUI/MainFrame.cpp:600
-msgid "Select the STL file to repair:"
-msgstr "Geben Sie die STL-Datei an, die repariert werden soll:"
-
-#: src/slic3r/GUI/MainFrame.cpp:614
-msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
-msgstr ""
-"Speichern als OBJ-Datei (weniger anfällig für Koordinatenfehler als STL):"
-
-#: src/slic3r/GUI/MainFrame.cpp:629
-msgid "Your file was repaired."
-msgstr "Ihre Datei wurde repariert."
-
-#: src/slic3r/GUI/MainFrame.cpp:629
-msgid "Repair"
-msgstr "Reparieren"
-
-#: src/slic3r/GUI/MainFrame.cpp:643
-msgid "Save configuration as:"
-msgstr "Konfiguration speichern unter:"
-
-#: src/slic3r/GUI/MainFrame.cpp:663 src/slic3r/GUI/MainFrame.cpp:727
-msgid "Select configuration to load:"
-msgstr "Konfiguration zum Laden auswählen:"
-
-#: src/slic3r/GUI/MainFrame.cpp:700
-msgid "Save presets bundle as:"
-msgstr "Sichern der Voreinstellungssammlung unter:"
-
-#: src/slic3r/GUI/MainFrame.cpp:751
-#, c-format
-msgid "%d presets successfully imported."
-msgstr "%d Voreinstellungen erfolgreich importiert."
-
-#: src/slic3r/GUI/MsgDialog.cpp:66
-msgid "Slic3r error"
-msgstr "Slic3r Fehler"
-
-#: src/slic3r/GUI/MsgDialog.cpp:66
-msgid "Slic3r has encountered an error"
-msgstr "Slic3r ist auf einen Fehler gestoßen"
-
-#: src/slic3r/GUI/MsgDialog.cpp:84
-msgid "Copy to clipboard"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:107
-msgid "Info"
-msgstr "Info"
-
-#: src/slic3r/GUI/Plater.cpp:126
-msgid "Volume"
-msgstr "Volumen"
-
-#: src/slic3r/GUI/Plater.cpp:127
-msgid "Facets"
-msgstr "Flächen"
-
-#: src/slic3r/GUI/Plater.cpp:128
-msgid "Materials"
-msgstr "Material"
-
-#: src/slic3r/GUI/Plater.cpp:131
-msgid "Manifold"
-msgstr "Hülle ok"
-
-#: src/slic3r/GUI/Plater.cpp:174
-msgid "Sliced Info"
-msgstr "Slice-Info"
-
-#: src/slic3r/GUI/Plater.cpp:193 src/slic3r/GUI/Plater.cpp:823
-msgid "Used Filament (m)"
-msgstr "Verbrauchtes Filament (m)"
-
-#: src/slic3r/GUI/Plater.cpp:194
-msgid "Used Filament (mm³)"
-msgstr "Verbrauchtes Filament (mm³)"
-
-#: src/slic3r/GUI/Plater.cpp:195
-msgid "Used Filament (g)"
-msgstr "Verbrauchtes Filament (g)"
-
-#: src/slic3r/GUI/Plater.cpp:196 src/slic3r/GUI/Plater.cpp:838
-#: src/libslic3r/PrintConfig.cpp:718
-msgid "Cost"
-msgstr "Preis"
-
-#: src/slic3r/GUI/Plater.cpp:197 src/slic3r/GUI/Plater.cpp:852
-msgid "Estimated printing time"
-msgstr "Erwartete Druckzeit"
-
-#: src/slic3r/GUI/Plater.cpp:198
-msgid "Number of tool changes"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:361
-msgid "Support"
-msgstr "Stützen"
-
-#: src/slic3r/GUI/Plater.cpp:364
-msgid "Select what kind of support do you need"
-msgstr "Wählen Sie aus, welche Art von Unterstützung Sie benötigen"
-
-#: src/slic3r/GUI/Plater.cpp:365 src/libslic3r/GCode/PreviewData.cpp:162
-msgid "None"
-msgstr "Kein"
-
-#: src/slic3r/GUI/Plater.cpp:366 src/libslic3r/PrintConfig.cpp:1904
-msgid "Support on build plate only"
-msgstr "Stützmaterial nur auf dem Druckbrett"
-
-#: src/slic3r/GUI/Plater.cpp:367
-msgid "Everywhere"
-msgstr "Überall"
-
-#: src/slic3r/GUI/Plater.cpp:379 src/slic3r/GUI/Tab.cpp:977
-msgid "Brim"
-msgstr "Rand"
-
-#: src/slic3r/GUI/Plater.cpp:381
-msgid ""
-"This flag enables the brim that will be printed around each object on the "
-"first layer."
-msgstr ""
-"Dieses Kontrollkästchen aktiviert den Rand (Brim), der um jedes Objekt auf "
-"der ersten Ebene gedruckt wird."
-
-#: src/slic3r/GUI/Plater.cpp:390
-msgid "Purging volumes"
-msgstr "Reinigungsvolumen"
-
-#: src/slic3r/GUI/Plater.cpp:556
-msgid "Print settings"
-msgstr "Druckeinstellungen"
-
-#: src/slic3r/GUI/Plater.cpp:557 src/slic3r/GUI/Tab.cpp:1380
-#: src/slic3r/GUI/Tab.cpp:1381
-msgid "Filament"
-msgstr "Filament"
-
-#: src/slic3r/GUI/Plater.cpp:558 src/slic3r/GUI/Preset.cpp:1158
-msgid "SLA print"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:559 src/slic3r/GUI/Preset.cpp:1159
-msgid "SLA material"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:560
-msgid "Printer"
-msgstr "Drucker"
-
-#: src/slic3r/GUI/Plater.cpp:588
-msgid "Send to printer"
-msgstr "Zum Drucker senden"
-
-#: src/slic3r/GUI/Plater.cpp:607
-msgid "Slice now"
-msgstr "Jetzt slicen"
-
-#: src/slic3r/GUI/Plater.cpp:787
-#, c-format
-msgid "%d (%d shells)"
-msgstr "%d (%d Konturhüllen)"
-
-#: src/slic3r/GUI/Plater.cpp:792
-#, c-format
-msgid "Auto-repaired (%d errors)"
-msgstr "Auto-Reparatur (%d Fehler)"
-
-#: src/slic3r/GUI/Plater.cpp:795
-#, c-format
-msgid ""
-"%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d "
-"facets reversed, %d backwards edges"
-msgstr ""
-"%d degenerierte Flächen, %d Kanten korrigiert, %d Flächen entfernt, %d "
-"Flächen hinzugefügt, %d Flächen umgekehrt, %d rückwärtige Kanten"
-
-#: src/slic3r/GUI/Plater.cpp:805
-msgid "Yes"
-msgstr "Ja"
-
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
-msgid "objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
-msgid "wipe tower"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:855
-msgid "normal mode"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:859
-msgid "silent mode"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1304
-msgid "Loading"
-msgstr "Laden"
-
-#: src/slic3r/GUI/Plater.cpp:1314
-#, c-format
-msgid "Processing input file %s\n"
-msgstr "Eingabe Datei wird verarbeitet %s\n"
-
-#: src/slic3r/GUI/Plater.cpp:1366
-msgid ""
-"This file contains several objects positioned at multiple heights. Instead "
-"of considering them as multiple objects, should I consider\n"
-"this file as a single object having multiple parts?\n"
-msgstr ""
-"Diese Datei enthält mehrere Objekte, die in verschiedenen Höhen positioniert "
-"sind. Anstatt sie als mehrere Objekte zu betrachten, soll ich diese Datei "
-"als ein einzelnes Objekt mit mehreren Teilen betrachten?\n"
-
-#: src/slic3r/GUI/Plater.cpp:1369 src/slic3r/GUI/Plater.cpp:1411
-msgid "Multi-part object detected"
-msgstr "Objekt mit mehreren Teilen erkannt"
-
-#: src/slic3r/GUI/Plater.cpp:1388
-#, c-format
-msgid ""
-"You can't to add the object(s) from %s because of one or some of them "
-"is(are) multi-part"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1408
-msgid ""
-"Multiple objects were loaded for a multi-material printer.\n"
-"Instead of considering them as multiple objects, should I consider\n"
-"these files to represent a single object having multiple parts?\n"
-msgstr ""
-"Für einen Multimaterialdrucker wurden mehrere Objekte geladen.\n"
-"Soll ich, anstatt sie als mehrere Objekte zu betrachten, \n"
-"diese Dateien als ein einzelnes Objekt mit mehreren Teilen behandeln?\n"
-
-#: src/slic3r/GUI/Plater.cpp:1424
-msgid "Loaded"
-msgstr "Geladen"
-
-#: src/slic3r/GUI/Plater.cpp:1492
-msgid ""
-"Your object appears to be too large, so it was automatically scaled down to "
-"fit your print bed."
-msgstr ""
-"Ihr Objekt scheint zu gross zu sein. Es wurde deshalb automatisch "
-"verkleinert, um auf Ihre Druckplatte zu passen."
-
-#: src/slic3r/GUI/Plater.cpp:1493
-msgid "Object too large?"
-msgstr "Objekt zu groß?"
-
-#: src/slic3r/GUI/Plater.cpp:1536
-msgid "Export print config"
-msgstr "Export Druckkonfiguration"
-
-#: src/slic3r/GUI/Plater.cpp:1538
-msgid "Save file as:"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1702
-msgid "Arranging canceled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1705
-msgid "Arranging"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1736
-msgid "Could not arrange model objects! Some geometries may be invalid."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1740
-msgid "Arranging done."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1782
-msgid "Orientation search canceled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1787
-msgid "Searching for optimal orientation"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1797
-msgid "Orientation found."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1818
-msgid ""
-"The selected object can't be split because it contains more than one volume/"
-"material."
-msgstr ""
-"Das ausgewählte Objekt konnte nicht getrennt werden, weil es aus mehr als "
-"einem Volumen/Material besteht."
-
-#: src/slic3r/GUI/Plater.cpp:1945 src/slic3r/GUI/PrintHostDialogs.cpp:174
-msgid "Cancelling"
-msgstr "Abbrechen"
-
-#: src/slic3r/GUI/Plater.cpp:1962
-msgid "Another export job is currently running."
-msgstr "Ein anderer Exportjob läuft zur Zeit."
-
-#: src/slic3r/GUI/Plater.cpp:2215
-msgid "Export failed"
-msgstr "Export ist fehlgeschlagen"
-
-#: src/slic3r/GUI/Plater.cpp:2219 src/slic3r/GUI/PrintHostDialogs.cpp:175
-msgid "Cancelled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2346 src/slic3r/GUI/Tab.cpp:2736
-msgid "Delete"
-msgstr "Löschen"
-
-#: src/slic3r/GUI/Plater.cpp:2346
-msgid "Remove the selected object"
-msgstr "Ausgewähltes Objekt entfernen"
-
-#: src/slic3r/GUI/Plater.cpp:2349
-msgid "Increase copies"
-msgstr "Erhöhe Anzahl"
-
-#: src/slic3r/GUI/Plater.cpp:2349
-msgid "Place one more copy of the selected object"
-msgstr "Eine weitere Kopie des ausgewählten Objekts positionieren"
-
-#: src/slic3r/GUI/Plater.cpp:2351
-msgid "Decrease copies"
-msgstr "Verringere Anzahl"
-
-#: src/slic3r/GUI/Plater.cpp:2351
-msgid "Remove one copy of the selected object"
-msgstr "Eine Kopie des ausgewählten Objekts entfernen"
-
-#: src/slic3r/GUI/Plater.cpp:2353
-msgid "Set number of copies"
-msgstr "Anzahl der Kopien angeben"
-
-#: src/slic3r/GUI/Plater.cpp:2353
-msgid "Change the number of copies of the selected object"
-msgstr "Ändere die Anzahl der Kopien der ausgewählten Objekte"
-
-#: src/slic3r/GUI/Plater.cpp:2363
-msgid "Reload from Disk"
-msgstr "Von Festplatte neu laden"
-
-#: src/slic3r/GUI/Plater.cpp:2363
-msgid "Reload the selected file from Disk"
-msgstr "Ausgewählte Datei von Festplatte neu laden"
-
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export object as STL"
-msgstr "Exportiere das Objekt als STL"
-
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export this single object as STL file"
-msgstr "Exportiere dieses einzelne Objekt als STL Datei"
-
-#: src/slic3r/GUI/Plater.cpp:2375
-msgid "Along X axis"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2375
-msgid "Mirror the selected object along the X axis"
-msgstr "Ausgewähltes Objekt entlang der X-Achse spiegeln"
-
-#: src/slic3r/GUI/Plater.cpp:2377
-msgid "Along Y axis"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2377
-msgid "Mirror the selected object along the Y axis"
-msgstr "Ausgewähltes Objekt entlang der Y-Achse spiegeln"
-
-#: src/slic3r/GUI/Plater.cpp:2379
-msgid "Along Z axis"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2379
-msgid "Mirror the selected object along the Z axis"
-msgstr "Ausgewähltes Objekt entlang der Z-Achse spiegeln"
-
-#: src/slic3r/GUI/Plater.cpp:2382
-msgid "Mirror"
-msgstr "Spiegeln"
-
-#: src/slic3r/GUI/Plater.cpp:2382
-msgid "Mirror the selected object"
-msgstr "Ausgewähltes Objekt spiegeln"
-
-#: src/slic3r/GUI/Plater.cpp:2400
-msgid "To objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2400 src/slic3r/GUI/Plater.cpp:2431
-msgid "Split the selected object into individual objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2402
-msgid "To parts"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2402 src/slic3r/GUI/Plater.cpp:2451
-msgid "Split the selected object into individual sub-parts"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2405 src/slic3r/GUI/Plater.cpp:2431
-#: src/slic3r/GUI/Plater.cpp:2451
-msgid "Split"
-msgstr "Trennen"
-
-#: src/slic3r/GUI/Plater.cpp:2405
-msgid "Split the selected object"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2435
-msgid "Optimize orientation"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2435
-msgid "Optimize the rotation of the object for better print results."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2795
-msgid "Save G-code file as:"
-msgstr "Speichere G-Code Datei als:"
-
-#: src/slic3r/GUI/Plater.cpp:2795
-msgid "Save Zip file as:"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2845
-#, c-format
-msgid "STL file exported to %s"
-msgstr "Die STL-Datei wurde exportiert zu %s"
-
-#: src/slic3r/GUI/Plater.cpp:2861
-#, c-format
-msgid "AMF file exported to %s"
-msgstr "AMF Datei exportiert nach %s"
-
-#: src/slic3r/GUI/Plater.cpp:2864
-#, c-format
-msgid "Error exporting AMF file %s"
-msgstr "Fehler beim Exportieren der AMF Datei %s"
-
-#: src/slic3r/GUI/Plater.cpp:2891
-#, c-format
-msgid "3MF file exported to %s"
-msgstr "3MF Datei exportiert nach %s"
-
-#: src/slic3r/GUI/Plater.cpp:2894
-#, c-format
-msgid "Error exporting 3MF file %s"
-msgstr "Fehler beim Exportieren der 3MF Datei %s"
-
-#: src/slic3r/GUI/Preferences.cpp:17 src/slic3r/GUI/Tab.cpp:1712
-#: src/slic3r/GUI/Tab.cpp:1911
-msgid "General"
-msgstr "Allgemein"
-
-#: src/slic3r/GUI/Preferences.cpp:34
-msgid "Remember output directory"
-msgstr "Ausgabeverzeichnis merken"
-
-#: src/slic3r/GUI/Preferences.cpp:36
-msgid ""
-"If this is enabled, Slic3r will prompt the last output directory instead of "
-"the one containing the input files."
-msgstr ""
-"Wenn diese Option aktiviert ist, öffnet Slic3r das letzte Ausgabeverzeichnis "
-"anstelle des Verzeichnisses, in dem sich die Eingabedateien befinden."
-
-#: src/slic3r/GUI/Preferences.cpp:42
-msgid "Auto-center parts"
-msgstr "Teile automatisch zentrieren"
-
-#: src/slic3r/GUI/Preferences.cpp:44
-msgid ""
-"If this is enabled, Slic3r will auto-center objects around the print bed "
-"center."
-msgstr ""
-"Wenn diese Option aktiviert ist, zentriert Slic3r Objekte automatisch um die "
-"Mitte des Druckbettes."
-
-#: src/slic3r/GUI/Preferences.cpp:50
-msgid "Background processing"
-msgstr "Hintergrundberechnung"
-
-#: src/slic3r/GUI/Preferences.cpp:52
-msgid ""
-"If this is enabled, Slic3r will pre-process objects as soon as they're "
-"loaded in order to save time when exporting G-code."
-msgstr ""
-"Wenn diese Option aktiviert ist, wird Slic3r Objekte vorverarbeiten, sobald "
-"sie geladen werden, um Zeit beim Export von G-Code zu sparen."
-
-#: src/slic3r/GUI/Preferences.cpp:74
-msgid "Suppress \" - default - \" presets"
-msgstr "\"Standard\"-Einstellungen unterdrücken"
-
-#: src/slic3r/GUI/Preferences.cpp:76
-msgid ""
-"Suppress \" - default - \" presets in the Print / Filament / Printer "
-"selections once there are any other valid presets available."
-msgstr ""
-"\"Standard\"-Einstellungen in den Auswahlen für Druck / Filament / Drucker "
-"unterdrücken, falls andere gültige Voreinstellungen vorhanden sind."
-
-#: src/slic3r/GUI/Preferences.cpp:82
-msgid "Show incompatible print and filament presets"
-msgstr "Inkompatible Druck- und Filamenteinstellungen anzeigen"
-
-#: src/slic3r/GUI/Preferences.cpp:84
-msgid ""
-"When checked, the print and filament presets are shown in the preset editor "
-"even if they are marked as incompatible with the active printer"
-msgstr ""
-"Falls angekreuzt, werden Voreinstellungen für Druck und Filament im "
-"Voreinstellungseditor auch dann angezeigt, wenn sie als inkompatibel zum "
-"aktiven Drucker gekennzeichnet wurden"
-
-#: src/slic3r/GUI/Preferences.cpp:90
-msgid "Use legacy OpenGL 1.1 rendering"
-msgstr "Älteres OpenGL 1.1-Rendering verwenden"
-
-#: src/slic3r/GUI/Preferences.cpp:92
-msgid ""
-"If you have rendering issues caused by a buggy OpenGL 2.0 driver, you may "
-"try to check this checkbox. This will disable the layer height editing and "
-"anti aliasing, so it is likely better to upgrade your graphics driver."
-msgstr ""
-"Wenn Sie Rendering-Probleme haben, die durch einen fehlerhaften OpenGL 2.0-"
-"Treiber verursacht wurden, können Sie versuchen, dieses Kontrollkästchen zu "
-"aktivieren. Dies deaktiviert die Bearbeitung der Ebenenhöhe und das Anti-"
-"Aliasing, so dass es wahrscheinlich sinnvoller ist, den Grafiktreiber zu "
-"aktualisieren."
-
-#: src/slic3r/GUI/Preferences.cpp:115
-msgid "You need to restart Slic3r to make the changes effective."
-msgstr "Sie müssen Slic3r neu starten, damit die Änderungen wirksam werden."
-
-#: src/slic3r/GUI/Preset.cpp:170
-msgid "modified"
-msgstr ""
-
-#: src/slic3r/GUI/Preset.cpp:862 src/slic3r/GUI/Preset.cpp:902
-#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:962
-#: src/slic3r/GUI/PresetBundle.cpp:1459 src/slic3r/GUI/PresetBundle.cpp:1512
-msgid "System presets"
-msgstr "Systemvoreinstellungen"
-
-#: src/slic3r/GUI/Preset.cpp:906 src/slic3r/GUI/Preset.cpp:966
-#: src/slic3r/GUI/PresetBundle.cpp:1517
-msgid "User presets"
-msgstr "Benutzerdefinierte Voreinstellungen"
-
-#: src/slic3r/GUI/Preset.cpp:1157
-msgid "filament"
-msgstr ""
-
-#: src/slic3r/GUI/PresetHints.cpp:28
-#, c-format
-msgid ""
-"If estimated layer time is below ~%ds, fan will run at %d%% and print speed "
-"will be reduced so that no less than %ds are spent on that layer (however, "
-"speed will never be reduced below %dmm/s)."
-msgstr ""
-"Wenn die geschätzte Schichtzeit unter ~%ds liegt, läuft der Lüfter mit %d%% "
-"und die Druckgeschwindigkeit wird reduziert, so dass nicht weniger als %ds "
-"für diese Schicht verwendet werden (die Geschwindigkeit wird jedoch nie "
-"unter %dmm/s reduziert)."
-
-#: src/slic3r/GUI/PresetHints.cpp:32
-#, c-format
-msgid ""
-"\n"
-"If estimated layer time is greater, but still below ~%ds, fan will run at a "
-"proportionally decreasing speed between %d%% and %d%%."
-msgstr ""
-"\n"
-"Falls die erwartete Schichtdruckzeit größer, aber noch unterhalb von ~%d "
-"Sekunden ist, wird der Lüfter mit einer sich proportional verringernden "
-"Geschwindigkeit zwischen %d%% und %d%% laufen."
-
-#: src/slic3r/GUI/PresetHints.cpp:36
-msgid ""
-"\n"
-"During the other layers, fan "
-msgstr ""
-"\n"
-"Während der übrigen Schichten, Ventilator "
-
-#: src/slic3r/GUI/PresetHints.cpp:38
-msgid "Fan "
-msgstr "Ventilator "
-
-#: src/slic3r/GUI/PresetHints.cpp:43
-#, c-format
-msgid "will always run at %d%% "
-msgstr "wird immer mit %d%% laufen "
-
-#: src/slic3r/GUI/PresetHints.cpp:46
-#, c-format
-msgid "except for the first %d layers"
-msgstr "außer für die ersten %d Schichten"
-
-#: src/slic3r/GUI/PresetHints.cpp:50
-msgid "except for the first layer"
-msgstr "außer für die erste Schicht"
-
-#: src/slic3r/GUI/PresetHints.cpp:52
-msgid "will be turned off."
-msgstr "wird abgeschaltet."
-
-#: src/slic3r/GUI/PresetHints.cpp:153
-msgid "external perimeters"
-msgstr "Aussenschichten"
-
-#: src/slic3r/GUI/PresetHints.cpp:162
-msgid "perimeters"
-msgstr "Aussenschichten"
-
-#: src/slic3r/GUI/PresetHints.cpp:171
-msgid "infill"
-msgstr "Infill"
-
-#: src/slic3r/GUI/PresetHints.cpp:181
-msgid "solid infill"
-msgstr "Stabiles Infill"
-
-#: src/slic3r/GUI/PresetHints.cpp:189
-msgid "top solid infill"
-msgstr "Oberes stabiles Infill"
-
-#: src/slic3r/GUI/PresetHints.cpp:200
-msgid "support"
-msgstr "Stützen"
-
-#: src/slic3r/GUI/PresetHints.cpp:210
-msgid "support interface"
-msgstr "Schnittstelle zu den Stützen"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "First layer volumetric"
-msgstr "Volumenparameter der ersten Schicht"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "Bridging volumetric"
-msgstr "Überbrückungvolumen"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "Volumetric"
-msgstr "Volumetrisch"
-
-#: src/slic3r/GUI/PresetHints.cpp:217
-msgid " flow rate is maximized "
-msgstr " die Durchflussmenge ist am Maximum "
-
-#: src/slic3r/GUI/PresetHints.cpp:220
-msgid "by the print profile maximum"
-msgstr "mit dem Maximum des Druckerprofils"
-
-#: src/slic3r/GUI/PresetHints.cpp:221
-msgid "when printing "
-msgstr "während dem Druck "
-
-#: src/slic3r/GUI/PresetHints.cpp:222
-msgid " with a volumetric rate "
-msgstr " mit einer Volumenrate von "
-
-#: src/slic3r/GUI/PresetHints.cpp:226
-#, c-format
-msgid "%3.2f mm³/s"
-msgstr "%3.2f mm³/s"
-
-#: src/slic3r/GUI/PresetHints.cpp:228
-#, c-format
-msgid " at filament speed %3.2f mm/s."
-msgstr " mit einer Filamentgeschwindigkeit von %3.2f mm³/s."
-
-#: src/slic3r/GUI/PresetHints.cpp:247
-msgid ""
-"Recommended object thin wall thickness: Not available due to invalid layer "
-"height."
-msgstr ""
-"Empfohlene Stärke der dünnen Wände des Objekts: Nicht verfügbar wegen "
-"unzulässiger Schichthöhe."
-
-#: src/slic3r/GUI/PresetHints.cpp:264
-#, c-format
-msgid "Recommended object thin wall thickness for layer height %.2f and "
-msgstr ""
-"Empfohlene Stärke der dünnen Wände des Objekts für die Schichthöhe %.2f und "
-
-#: src/slic3r/GUI/PresetHints.cpp:271
-#, c-format
-msgid "%d lines: %.2lf mm"
-msgstr "%d Linien: %.2lf mm"
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
-msgid "Send G-Code to printer host"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
-msgid "Upload to Printer Host with the following filename:"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:31
-msgid "Start printing after upload"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:33
-msgid "Use forward slashes ( / ) as a directory separator if needed."
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:111
-msgid "Cancel selected"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:113
-msgid "Show error message"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:115
-msgid "Close"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:152
-#: src/slic3r/GUI/PrintHostDialogs.cpp:171
-msgid "Enqueued"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:172
-msgid "Uploading"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:176
-msgid "Completed"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:214
-msgid "Error uploading to print host:"
-msgstr ""
-
-#: src/slic3r/GUI/RammingChart.cpp:23
-msgid "NO RAMMING AT ALL"
-msgstr "ÜBERHAUPT KEIN RAMMEN"
-
-#: src/slic3r/GUI/RammingChart.cpp:76
-msgid "Time"
-msgstr "Zeit"
-
-#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78 src/libslic3r/PrintConfig.cpp:603
-#: src/libslic3r/PrintConfig.cpp:653 src/libslic3r/PrintConfig.cpp:670
-#: src/libslic3r/PrintConfig.cpp:2352 src/libslic3r/PrintConfig.cpp:2360
-#: src/libslic3r/PrintConfig.cpp:2432 src/libslic3r/PrintConfig.cpp:2440
-msgid "s"
-msgstr "s"
-
-#: src/slic3r/GUI/RammingChart.cpp:81
-msgid "Volumetric speed"
-msgstr "Volumengeschwindigkeit"
-
-#: src/slic3r/GUI/SysInfoDialog.cpp:40
-msgid "Slic3r Prusa Edition - System Information"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:49 src/libslic3r/PrintConfig.cpp:202
-msgid "Compatible printers"
-msgstr "Kompatible Drucker"
-
-#: src/slic3r/GUI/Tab.cpp:50
-msgid "Select the printers this profile is compatible with."
-msgstr "Wählen Sie die Drucker aus, die mit diesem Profil kompatibel sind."
-
-#: src/slic3r/GUI/Tab.cpp:55 src/libslic3r/PrintConfig.cpp:215
-msgid "Compatible print profiles"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:56
-msgid "Select the print profiles this profile is compatible with."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:118
-msgid "Save current "
-msgstr "Aktuell sichern "
-
-#: src/slic3r/GUI/Tab.cpp:119
-msgid "Delete this preset"
-msgstr "Lösche diese Voreinstellung"
-
-#: src/slic3r/GUI/Tab.cpp:131
-msgid ""
-"Hover the cursor over buttons to find more information \n"
-"or click this button."
-msgstr ""
-"Bewegen Sie den Mauszeiger über die Schaltflächen, um weitere Informationen "
-"zu erhalten,\n"
-"oder klicken Sie auf diese Schaltfläche."
-
-#: src/slic3r/GUI/Tab.cpp:824
-msgid "It's a default preset."
-msgstr "Dies ist eine Standard-Voreinstellung."
-
-#: src/slic3r/GUI/Tab.cpp:825
-msgid "It's a system preset."
-msgstr "Dies ist eine Systemvoreinstellung."
-
-#: src/slic3r/GUI/Tab.cpp:826
-msgid "Current preset is inherited from "
-msgstr "Aktuelle Voreinstellung ist abgeleitet von "
-
-#: src/slic3r/GUI/Tab.cpp:831
-msgid "It can't be deleted or modified. "
-msgstr "Es ist keine Löschung oder Änderung möglich. "
-
-#: src/slic3r/GUI/Tab.cpp:832
-msgid ""
-"Any modifications should be saved as a new preset inherited from this one. "
-msgstr ""
-"Alle Änderungen sollten als neues Preset gespeichert werden, das von diesem "
-"vererbt wurde. "
-
-#: src/slic3r/GUI/Tab.cpp:833
-msgid "To do that please specify a new name for the preset."
-msgstr ""
-"Zur Ausführung geben Sie bitte einen neuen Namen für die Voreinstellung ein."
-
-#: src/slic3r/GUI/Tab.cpp:837
-msgid "Additional information:"
-msgstr "Weitere Informationen:"
-
-#: src/slic3r/GUI/Tab.cpp:843
-msgid "printer model"
-msgstr "Druckermodell"
-
-#: src/slic3r/GUI/Tab.cpp:851
-msgid "default print profile"
-msgstr "Standard-Druckprofil"
-
-#: src/slic3r/GUI/Tab.cpp:854
-msgid "default filament profile"
-msgstr "Standard-Filamentprofil"
-
-#: src/slic3r/GUI/Tab.cpp:868
-msgid "default SLA material profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:872
-msgid "default SLA print profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:919 src/slic3r/GUI/Tab.cpp:3174
-msgid "Layers and perimeters"
-msgstr "Schichten und Umfänge"
-
-#: src/slic3r/GUI/Tab.cpp:920 src/libslic3r/PrintConfig.cpp:46
-msgid "Layer height"
-msgstr "Schichthöhe"
-
-#: src/slic3r/GUI/Tab.cpp:924
-msgid "Vertical shells"
-msgstr "Vertikale Konturhüllen"
-
-#: src/slic3r/GUI/Tab.cpp:935
-msgid "Horizontal shells"
-msgstr "Horizontale Konturhüllen"
-
-#: src/slic3r/GUI/Tab.cpp:936 src/libslic3r/PrintConfig.cpp:1788
-msgid "Solid layers"
-msgstr "Kompakte Schichten"
-
-#: src/slic3r/GUI/Tab.cpp:941
-msgid "Quality (slower slicing)"
-msgstr "Qualität (langsameres Slicen)"
-
-#: src/slic3r/GUI/Tab.cpp:958
-msgid "Reducing printing time"
-msgstr "Druckzeit wird verkürzt"
-
-#: src/slic3r/GUI/Tab.cpp:970
-msgid "Skirt and brim"
-msgstr "Schürze und Rand"
-
-#: src/slic3r/GUI/Tab.cpp:987
-msgid "Raft"
-msgstr "Raft"
-
-#: src/slic3r/GUI/Tab.cpp:991
-msgid "Options for support material and raft"
-msgstr "Optionen für Stützmaterial und Raft"
-
-#: src/slic3r/GUI/Tab.cpp:1006
-msgid "Speed for print moves"
-msgstr "Geschwindigkeit für Druckbewegungen"
-
-#: src/slic3r/GUI/Tab.cpp:1018
-msgid "Speed for non-print moves"
-msgstr "Geschwindigkeit für Bewegungen zwischen den Druckvorgängen"
-
-#: src/slic3r/GUI/Tab.cpp:1021
-msgid "Modifiers"
-msgstr "Veränderer"
-
-#: src/slic3r/GUI/Tab.cpp:1024
-msgid "Acceleration control (advanced)"
-msgstr "Beschleunigungskontrolle (fortgeschritten)"
-
-#: src/slic3r/GUI/Tab.cpp:1031
-msgid "Autospeed (advanced)"
-msgstr "Automatische Geschindigkeit (fortgeschritten)"
-
-#: src/slic3r/GUI/Tab.cpp:1037
-msgid "Multiple Extruders"
-msgstr "Mehrere Extruder"
-
-#: src/slic3r/GUI/Tab.cpp:1045
-msgid "Ooze prevention"
-msgstr "Vermeidung von Nachsickern (Ooze)"
-
-#: src/slic3r/GUI/Tab.cpp:1062
-msgid "Extrusion width"
-msgstr "Extrusionbreite"
-
-#: src/slic3r/GUI/Tab.cpp:1072
-msgid "Overlap"
-msgstr "Überlappung"
-
-#: src/slic3r/GUI/Tab.cpp:1075
-msgid "Flow"
-msgstr "Fluss"
-
-#: src/slic3r/GUI/Tab.cpp:1078
-msgid "Other"
-msgstr "Sonstige"
-
-#: src/slic3r/GUI/Tab.cpp:1085 src/slic3r/GUI/Tab.cpp:3213
-msgid "Output options"
-msgstr "Ausgabeoptionen"
-
-#: src/slic3r/GUI/Tab.cpp:1086
-msgid "Sequential printing"
-msgstr "Sequentielles Drucken"
-
-#: src/slic3r/GUI/Tab.cpp:1088
-msgid "Extruder clearance (mm)"
-msgstr "Extruder Abstand (mm)"
-
-#: src/slic3r/GUI/Tab.cpp:1097 src/slic3r/GUI/Tab.cpp:3214
-msgid "Output file"
-msgstr "Ausgabedatei"
-
-#: src/slic3r/GUI/Tab.cpp:1103 src/libslic3r/PrintConfig.cpp:1438
-msgid "Post-processing scripts"
-msgstr "Nachbearbeitungs Script"
-
-#: src/slic3r/GUI/Tab.cpp:1109 src/slic3r/GUI/Tab.cpp:1110
-#: src/slic3r/GUI/Tab.cpp:1483 src/slic3r/GUI/Tab.cpp:1484
-#: src/slic3r/GUI/Tab.cpp:1883 src/slic3r/GUI/Tab.cpp:1884
-#: src/slic3r/GUI/Tab.cpp:1964 src/slic3r/GUI/Tab.cpp:1965
-#: src/slic3r/GUI/Tab.cpp:3119 src/slic3r/GUI/Tab.cpp:3120
-msgid "Notes"
-msgstr "Anmerkungen"
-
-#: src/slic3r/GUI/Tab.cpp:1116 src/slic3r/GUI/Tab.cpp:1491
-#: src/slic3r/GUI/Tab.cpp:1890 src/slic3r/GUI/Tab.cpp:1971
-#: src/slic3r/GUI/Tab.cpp:3127 src/slic3r/GUI/Tab.cpp:3219
-msgid "Dependencies"
-msgstr "Abhängigkeiten"
-
-#: src/slic3r/GUI/Tab.cpp:1117 src/slic3r/GUI/Tab.cpp:1492
-#: src/slic3r/GUI/Tab.cpp:1891 src/slic3r/GUI/Tab.cpp:1972
-#: src/slic3r/GUI/Tab.cpp:3128 src/slic3r/GUI/Tab.cpp:3220
-msgid "Profile dependencies"
-msgstr "Profil Abhängigkeiten"
-
-#: src/slic3r/GUI/Tab.cpp:1161
-#, no-c-format
-msgid ""
-"The Spiral Vase mode requires:\n"
-"- one perimeter\n"
-"- no top solid layers\n"
-"- 0% fill density\n"
-"- no support material\n"
-"- no ensure_vertical_shell_thickness\n"
-"\n"
-"Shall I adjust those settings in order to enable Spiral Vase?"
-msgstr ""
-"Der Spiralvasen-Modus erfordert:\n"
-"- eine Aussenschicht\n"
-"- keine stabilen Schichten oben\n"
-"- 0% Fülldichte\n"
-"- keine Stützen\n"
-"- kein ensure_vertical_shell_thickness\n"
-"\n"
-"Soll ich diese Einstellungen anpassen, um den Spiralvasen-Modus zu "
-"aktivieren?"
-
-#: src/slic3r/GUI/Tab.cpp:1168
-msgid "Spiral Vase"
-msgstr "Spiralvase"
-
-#: src/slic3r/GUI/Tab.cpp:1191
-msgid ""
-"The Wipe Tower currently supports the non-soluble supports only\n"
-"if they are printed with the current extruder without triggering a tool "
-"change.\n"
-"(both support_material_extruder and support_material_interface_extruder need "
-"to be set to 0).\n"
-"\n"
-"Shall I adjust those settings in order to enable the Wipe Tower?"
-msgstr ""
-"Die Reinigungssäule unterstützt zur Zeit nichtlösliche Stützen nur, falls "
-"sie mit dem aktuellen Extruder ohne einen Werkzeugwechsel gedruckt werden "
-"(sowohl support_material_extruder wie auch "
-"support_material_interface_extruder müssen auf Null gesetzt werden).\n"
-"\n"
-"Soll ich diese Einstellungen anpassen, um die Reinigungssäule zu aktivieren?"
-
-#: src/slic3r/GUI/Tab.cpp:1195 src/slic3r/GUI/Tab.cpp:1212
-msgid "Wipe Tower"
-msgstr "Reinigungssäule"
-
-#: src/slic3r/GUI/Tab.cpp:1209
-msgid ""
-"For the Wipe Tower to work with the soluble supports, the support layers\n"
-"need to be synchronized with the object layers.\n"
-"\n"
-"Shall I synchronize support layers in order to enable the Wipe Tower?"
-msgstr ""
-"Damit der Reinigungsturm mit den löslichen Trägermaterialien arbeiten kann, "
-"müssen die Stützschichten mit den Objektschichten synchronisiert werden. "
-"Soll ich Unterstützungsschichten synchronisieren, um den Reinigungsturm zu "
-"aktivieren?"
-
-#: src/slic3r/GUI/Tab.cpp:1227
-msgid ""
-"Supports work better, if the following feature is enabled:\n"
-"- Detect bridging perimeters\n"
-"\n"
-"Shall I adjust those settings for supports?"
-msgstr ""
-"Stützen funktionieren besser, falls die folgende Option aktiviert ist:\n"
-"- Aussenschichten von Überbrückungen erkennen\n"
-"\n"
-"Soll ich diese Einstellung für die Stützen anpassen?"
-
-#: src/slic3r/GUI/Tab.cpp:1230
-msgid "Support Generator"
-msgstr "Generator für die Stützen"
-
-# Used in context: _("The ") + str_fill_pattern + _(" infill pattern is not supposed to work at 100% density.\n")
-#: src/slic3r/GUI/Tab.cpp:1272
-msgid "The "
-msgstr "Der/Die "
-
-#: src/slic3r/GUI/Tab.cpp:1272
-#, no-c-format
-msgid ""
-" infill pattern is not supposed to work at 100% density.\n"
-"\n"
-"Shall I switch to rectilinear fill pattern?"
-msgstr ""
-" Infillmuster ist nicht empfohlen für 100% Füllvolumen.\n"
-"\n"
-"Soll auf das rechtlineare Füllmuster umgestellt werden?"
-
-#: src/slic3r/GUI/Tab.cpp:1388
-msgid "Temperature "
-msgstr "Temperatur "
-
-#: src/slic3r/GUI/Tab.cpp:1394
-msgid "Bed"
-msgstr "Druckbett"
-
-#: src/slic3r/GUI/Tab.cpp:1399
-msgid "Cooling"
-msgstr "Kühlung"
-
-#: src/slic3r/GUI/Tab.cpp:1400 src/libslic3r/PrintConfig.cpp:1333
-#: src/libslic3r/PrintConfig.cpp:2212
-msgid "Enable"
-msgstr "Aktivieren"
-
-#: src/slic3r/GUI/Tab.cpp:1411
-msgid "Fan settings"
-msgstr "Ventilator Einstellungen"
-
-#: src/slic3r/GUI/Tab.cpp:1412
-msgid "Fan speed"
-msgstr "Ventilatorgeschwindigkeit"
-
-#: src/slic3r/GUI/Tab.cpp:1420
-msgid "Cooling thresholds"
-msgstr "Kühlungsschwellwerte"
-
-#: src/slic3r/GUI/Tab.cpp:1426
-msgid "Filament properties"
-msgstr "Filament Eigenschaften"
-
-#: src/slic3r/GUI/Tab.cpp:1430
-msgid "Print speed override"
-msgstr "Korrektur der Druckgeschwindigkeit"
-
-#: src/slic3r/GUI/Tab.cpp:1440
-msgid "Toolchange parameters with single extruder MM printers"
-msgstr "Werkzeugwechsel-Parameter für MM-Drucker mit einem Extruder"
-
-#: src/slic3r/GUI/Tab.cpp:1455
-msgid "Ramming settings"
-msgstr "Einstellungen für das Rammen"
-
-#: src/slic3r/GUI/Tab.cpp:1470 src/slic3r/GUI/Tab.cpp:1846
-msgid "Custom G-code"
-msgstr "Benutzerdefinierter G-Code"
-
-#: src/slic3r/GUI/Tab.cpp:1471 src/slic3r/GUI/Tab.cpp:1847
-#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:1833
-msgid "Start G-code"
-msgstr "Start G-Code"
-
-#: src/slic3r/GUI/Tab.cpp:1477 src/slic3r/GUI/Tab.cpp:1853
-#: src/libslic3r/PrintConfig.cpp:333 src/libslic3r/PrintConfig.cpp:344
-msgid "End G-code"
-msgstr "G-Code am Ende"
-
-#: src/slic3r/GUI/Tab.cpp:1588 src/slic3r/GUI/Tab.cpp:1642
-msgid " Browse "
-msgstr " Suchen "
-
-#: src/slic3r/GUI/Tab.cpp:1605 src/slic3r/GUI/Tab.cpp:1788
-msgid "Test"
-msgstr "Test"
-
-#: src/slic3r/GUI/Tab.cpp:1615
-msgid "Could not get a valid Printer Host reference"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1621 src/slic3r/GUI/Tab.cpp:1801
-msgid "Success!"
-msgstr "Erfolg!"
-
-#: src/slic3r/GUI/Tab.cpp:1636
-msgid ""
-"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
-"signed certificate."
-msgstr ""
-"HTTPS-CA-Datei ist optional. Sie wird nur benötigt, wenn Sie HTTPS mit einem "
-"selbstsignierten Zertifikat verwenden."
-
-#: src/slic3r/GUI/Tab.cpp:1648
-msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
-msgstr "Zertifikatsdatei (*.crt, *.pem)|*.crt;*.pem|alle Dateien|*.*"
-
-#: src/slic3r/GUI/Tab.cpp:1649
-msgid "Open CA certificate file"
-msgstr "Open CA Zertifikat Datei"
-
-#: src/slic3r/GUI/Tab.cpp:1676
-msgid ""
-"HTTPS CA File:\n"
-"\tOn this system, Slic3r uses HTTPS certificates from the system Certificate "
-"Store or Keychain.\n"
-"\tTo use a custom CA file, please import your CA file into Certificate "
-"Store / Keychain."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1713 src/slic3r/GUI/Tab.cpp:1912
-msgid "Size and coordinates"
-msgstr "Grösse und Koordinaten"
-
-#: src/slic3r/GUI/Tab.cpp:1717 src/slic3r/GUI/Tab.cpp:1916
-#: src/slic3r/GUI/Tab.cpp:2792
-msgid " Set "
-msgstr " Setzen "
-
-#: src/slic3r/GUI/Tab.cpp:1740
-msgid "Capabilities"
-msgstr "Fähigkeiten"
-
-#: src/slic3r/GUI/Tab.cpp:1745
-msgid "Number of extruders of the printer."
-msgstr "Anzahl der Extruder des Druckers."
-
-#: src/slic3r/GUI/Tab.cpp:1773
-msgid "USB/Serial connection"
-msgstr "USB/Serielle Verbindung"
-
-#: src/slic3r/GUI/Tab.cpp:1774 src/libslic3r/PrintConfig.cpp:1660
-msgid "Serial port"
-msgstr "Serieller Port"
-
-#: src/slic3r/GUI/Tab.cpp:1779
-msgid "Rescan serial ports"
-msgstr "Serielle Schnittstellen nochmals abfragen"
-
-#: src/slic3r/GUI/Tab.cpp:1801
-msgid "Connection to printer works correctly."
-msgstr "Verbindung zum Drucker funktioniert einwandfrei."
-
-#: src/slic3r/GUI/Tab.cpp:1804
-msgid "Connection failed."
-msgstr "Verbindung ist fehlgeschlagen."
-
-#: src/slic3r/GUI/Tab.cpp:1817 src/slic3r/GUI/Tab.cpp:1961
-msgid "Print Host upload"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1859 src/libslic3r/PrintConfig.cpp:92
-msgid "Before layer change G-code"
-msgstr "G-Code vor dem Schichtwechsel"
-
-#: src/slic3r/GUI/Tab.cpp:1865 src/libslic3r/PrintConfig.cpp:1042
-msgid "After layer change G-code"
-msgstr "G-Code am Schichtende"
-
-#: src/slic3r/GUI/Tab.cpp:1871 src/libslic3r/PrintConfig.cpp:2111
-msgid "Tool change G-code"
-msgstr "G-Code für Werkzeugwechsel"
-
-#: src/slic3r/GUI/Tab.cpp:1877
-msgid "Between objects G-code (for sequential printing)"
-msgstr "G-Code zwischen Objekten (Sequentielles Drucken)"
-
-#: src/slic3r/GUI/Tab.cpp:1938
-msgid "Display"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1949 src/slic3r/GUI/Tab.cpp:3102
-msgid "Corrections"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2011 src/slic3r/GUI/Tab.cpp:2073
-#: src/libslic3r/PrintConfig.cpp:1088 src/libslic3r/PrintConfig.cpp:1098
-#: src/libslic3r/PrintConfig.cpp:1108 src/libslic3r/PrintConfig.cpp:1121
-#: src/libslic3r/PrintConfig.cpp:1132 src/libslic3r/PrintConfig.cpp:1143
-#: src/libslic3r/PrintConfig.cpp:1154
-msgid "Machine limits"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2025
-msgid "Values in this column are for Full Power mode"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2026
-msgid "Full Power"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2031
-msgid "Values in this column are for Silent mode"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2032
-msgid "Silent"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2040
-msgid "Maximum feedrates"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2045
-msgid "Maximum accelerations"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2052
-msgid "Jerk limits"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2057
-msgid "Minimum feedrates"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2095 src/slic3r/GUI/Tab.cpp:2103
-msgid "Single extruder MM setup"
-msgstr "Einzelner Extruder MM Setup"
-
-#: src/slic3r/GUI/Tab.cpp:2104
-msgid "Single extruder multimaterial parameters"
-msgstr "Einzelner Extruder Multimaterial Parameter"
-
-#: src/slic3r/GUI/Tab.cpp:2118 src/libslic3r/GCode/PreviewData.cpp:475
-#, c-format
-msgid "Extruder %d"
-msgstr "Extruder %d"
-
-#: src/slic3r/GUI/Tab.cpp:2125
-msgid "Layer height limits"
-msgstr "Schichthöhen Grenzen"
-
-#: src/slic3r/GUI/Tab.cpp:2130
-msgid "Position (for multi-extruder printers)"
-msgstr "Position (für Multi-Extruder-Drucker)"
-
-#: src/slic3r/GUI/Tab.cpp:2133
-msgid "Retraction"
-msgstr "Einzug"
-
-#: src/slic3r/GUI/Tab.cpp:2136
-msgid "Only lift Z"
-msgstr "Nur Z anheben"
-
-#: src/slic3r/GUI/Tab.cpp:2149
-msgid ""
-"Retraction when tool is disabled (advanced settings for multi-extruder "
-"setups)"
-msgstr ""
-"Einzug, wenn das Werkzeug deaktiviert ist (weiterführende Einstellungen für "
-"Multi-Extruder-Einrichtungen)"
-
-#: src/slic3r/GUI/Tab.cpp:2153
-msgid "Preview"
-msgstr "Vorschau"
-
-#: src/slic3r/GUI/Tab.cpp:2284
-msgid ""
-"The Wipe option is not available when using the Firmware Retraction mode.\n"
-"\n"
-"Shall I disable it in order to enable Firmware Retraction?"
-msgstr ""
-"Die Reinigungsoption ist nicht verfügbar, wenn der Firmware-Einzug verwendet "
-"wird.\n"
-"\n"
-"Soll ich sie ausschalten, um den Firmware-Einzug zu aktivieren?"
-
-#: src/slic3r/GUI/Tab.cpp:2286
-msgid "Firmware Retraction"
-msgstr "Firmware Einzug"
-
-#: src/slic3r/GUI/Tab.cpp:2565
-#, c-format
-msgid "Default preset (%s)"
-msgstr "Standard Voreinstellung (%s)"
-
-#: src/slic3r/GUI/Tab.cpp:2566
-#, c-format
-msgid "Preset (%s)"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2583
-msgid "has the following unsaved changes:"
-msgstr "hat die folgenden ungesicherten Änderungen:"
-
-#: src/slic3r/GUI/Tab.cpp:2586
-msgid "is not compatible with printer"
-msgstr "ist mit dem Drucker nicht kompatibel"
-
-#: src/slic3r/GUI/Tab.cpp:2587
-msgid "is not compatible with print profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2589
-msgid "and it has the following unsaved changes:"
-msgstr "und hat die folgenden ungesicherten Änderungen:"
-
-#: src/slic3r/GUI/Tab.cpp:2592
-msgid "Discard changes and continue anyway?"
-msgstr "Änderungen verwerfen und fortfahren?"
-
-#: src/slic3r/GUI/Tab.cpp:2593
-msgid "Unsaved Changes"
-msgstr "Nicht abgespeicherte Änderungen"
-
-#: src/slic3r/GUI/Tab.cpp:2604
-msgid "It's impossible to print multi-part object(s) with SLA technology."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2605
-msgid "Please check your object list before preset changing."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2699
-msgid "The supplied name is empty. It can't be saved."
-msgstr "Der angegebene Name ist leer. Die Speicherung kann nicht erfolgen."
-
-#: src/slic3r/GUI/Tab.cpp:2704
-msgid "Cannot overwrite a system profile."
-msgstr "Systemprofil kann nicht überschrieben werden."
-
-#: src/slic3r/GUI/Tab.cpp:2708
-msgid "Cannot overwrite an external profile."
-msgstr "Ein externes Profil kann nicht überschrieben werden."
-
-#: src/slic3r/GUI/Tab.cpp:2734
-msgid "remove"
-msgstr "Entfernen"
-
-#: src/slic3r/GUI/Tab.cpp:2734
-msgid "delete"
-msgstr "löschen"
-
-#: src/slic3r/GUI/Tab.cpp:2735
-msgid "Are you sure you want to "
-msgstr "Wollen Sie wirklich "
-
-#: src/slic3r/GUI/Tab.cpp:2735
-msgid " the selected preset?"
-msgstr " die ausgewählte Voreinstellung?"
-
-#: src/slic3r/GUI/Tab.cpp:2736
-msgid "Remove"
-msgstr "Entfernen"
-
-#: src/slic3r/GUI/Tab.cpp:2737
-msgid " Preset"
-msgstr " Voreinstellung"
-
-#: src/slic3r/GUI/Tab.cpp:2791
-msgid "All"
-msgstr "Alle"
-
-#: src/slic3r/GUI/Tab.cpp:2869
-msgid ""
-"LOCKED LOCK;indicates that the settings are the same as the system values "
-"for the current option group"
-msgstr ""
-"GESCHLOSSENES SCHLOSS;zeigt an, dass die Einstellungen mit den Systemwerten "
-"der aktuellen Optionsgruppe übereinstimmen"
-
-#: src/slic3r/GUI/Tab.cpp:2872
-msgid ""
-"UNLOCKED LOCK;indicates that some settings were changed and are not equal to "
-"the system values for the current option group.\n"
-"Click the UNLOCKED LOCK icon to reset all settings for current option group "
-"to the system values."
-msgstr ""
-"GEÖFFNETES SCHLOSS;Zeigt an, dass einige Einstellungen geändert wurden und "
-"nicht mehr mit den Systemeinstellungen für die aktuelle Gruppe von Optionen "
-"identisch sind.\n"
-"Klicken Sie auf das Symbol mit dem GEÖFFNETEN SCHLOSS, um alle Einstellungen "
-"für die aktuelle Optionsgruppe auf die Systemeinstellungen zurückzusetzen."
-
-#: src/slic3r/GUI/Tab.cpp:2878
-msgid ""
-"WHITE BULLET;for the left button: \tindicates a non-system preset,\n"
-"for the right button: \tindicates that the settings hasn't been modified."
-msgstr ""
-"WEISSER PUNKT;Beim linken Knopf: zeigt eine Nicht-Systemeinstellung an. Beim "
-"rechten Knopf: zeigt an, dass die Einstellung nicht geändert wurde."
-
-#: src/slic3r/GUI/Tab.cpp:2882
-msgid ""
-"BACK ARROW;indicates that the settings were changed and are not equal to the "
-"last saved preset for the current option group.\n"
-"Click the BACK ARROW icon to reset all settings for the current option group "
-"to the last saved preset."
-msgstr ""
-"BACK ARROW; zeigt an, dass die Einstellungen geändert wurden und nicht mit "
-"dem zuletzt gespeicherten Preset für die aktuelle Optionsgruppe "
-"übereinstimmen. \n"
-"Klicken Sie auf das Symbol PFEIL ZURÜCK, um alle Einstellungen für die "
-"aktuelle Optionsgruppe auf das zuletzt gespeicherte Preset zurückzusetzen."
-
-#: src/slic3r/GUI/Tab.cpp:2908
-msgid ""
-"LOCKED LOCK icon indicates that the settings are the same as the system "
-"values for the current option group"
-msgstr ""
-"GESCHLOSSENES SCHLOSS-Symbol zeigt an, dass die Einstellungen mit den "
-"Systemwerten der aktuellen Optionsgruppe übereinstimmen"
-
-#: src/slic3r/GUI/Tab.cpp:2910
-msgid ""
-"UNLOCKED LOCK icon indicates that some settings were changed and are not "
-"equal to the system values for the current option group.\n"
-"Click to reset all settings for current option group to the system values."
-msgstr ""
-"Das Symbol GEÖFFNETES SCHLOSS zeigt an, dass einige Einstellungen geändert "
-"wurden und nicht mehr mit den Systemeinstellungen für die aktuelle "
-"Optionsgruppe identisch sind.\n"
-"Klicken Sie, um alle Einstellungen für die aktuelle Optionsgruppe auf die "
-"Systemeinstellungen zurückzusetzen."
-
-#: src/slic3r/GUI/Tab.cpp:2913
-msgid "WHITE BULLET icon indicates a non system preset."
-msgstr ""
-"Das Symbol mit dem WEISSEN PUNKT zeigt eine Nicht-Systemeinstellung an."
-
-#: src/slic3r/GUI/Tab.cpp:2916
-msgid ""
-"WHITE BULLET icon indicates that the settings are the same as in the last "
-"saved preset for the current option group."
-msgstr ""
-"Das Symbol WEISSER PUNKT zeigt an, dass die Einstellungen dieselben sind wie "
-"in der zuletzt gespeicherten Voreinstellung für die aktuelle Optionsgruppe."
-
-#: src/slic3r/GUI/Tab.cpp:2918
-msgid ""
-"BACK ARROW icon indicates that the settings were changed and are not equal "
-"to the last saved preset for the current option group.\n"
-"Click to reset all settings for the current option group to the last saved "
-"preset."
-msgstr ""
-"Das Symbol PFEIL ZURÜCK zeigt an, dass die Einstellungen geändert wurden und "
-"nicht mit dem zuletzt gespeicherten Preset für die aktuelle Optionsgruppe "
-"übereinstimmen. Klicken Sie hier, um alle Einstellungen für die aktuelle "
-"Optionsgruppe auf das zuletzt gespeicherte Preset zurückzusetzen."
-
-#: src/slic3r/GUI/Tab.cpp:2924
-msgid ""
-"LOCKED LOCK icon indicates that the value is the same as the system value."
-msgstr ""
-"GESCHLOSSENES SCHLOSS-Symbol zeigt an, dass der Wert mit dem Systemwert "
-"übereinstimmt."
-
-#: src/slic3r/GUI/Tab.cpp:2925
-msgid ""
-"UNLOCKED LOCK icon indicates that the value was changed and is not equal to "
-"the system value.\n"
-"Click to reset current value to the system value."
-msgstr ""
-"Das Symbol GEÖFFNETES SCHLOSS zeigt an, dass der Wert geändert wurde und "
-"nicht mit der Systemeinstellung identisch ist.\n"
-"Klicken Sie, um den aktuellen Wert auf die Systemeinstellung zurückzusetzen."
-
-#: src/slic3r/GUI/Tab.cpp:2931
-msgid ""
-"WHITE BULLET icon indicates that the value is the same as in the last saved "
-"preset."
-msgstr ""
-"Das Symbol WEISSER PUNKT zeigt an, dass der Wert identisch ist mit "
-"demjenigen in der zuletzt gespeicherten Voreinstellung."
-
-#: src/slic3r/GUI/Tab.cpp:2932
-msgid ""
-"BACK ARROW icon indicates that the value was changed and is not equal to the "
-"last saved preset.\n"
-"Click to reset current value to the last saved preset."
-msgstr ""
-"Das Symbol PFEIL ZURÜCK zeigt an, dass der Wert geändert wurde und nicht mit "
-"dem zuletzt gespeicherten Preset übereinstimmt. \n"
-"Klicken Sie, um den aktuellen Wert auf das zuletzt gespeicherte Preset "
-"zurückzusetzen."
-
-# Used in this context: _("Save ") + title + _(" as:")
-#: src/slic3r/GUI/Tab.cpp:3031
-msgid " as:"
-msgstr " als:"
-
-#: src/slic3r/GUI/Tab.cpp:3075
-msgid "the following postfix are not allowed:"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3079
-msgid "The supplied name is not available."
-msgstr "Der angegebene Name ist nicht verfügbar."
-
-#: src/slic3r/GUI/Tab.cpp:3092
-msgid "Material"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3094 src/slic3r/GUI/Tab.cpp:3176
-msgid "Layers"
-msgstr "Schichten"
-
-#: src/slic3r/GUI/Tab.cpp:3098
-msgid "Exposure"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3183
-msgid "Support head"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3188
-msgid "Support pillar"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3196
-msgid "Connection of the support sticks and junctions"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3200
-msgid "Automatic generation"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.hpp:293 src/slic3r/GUI/Tab.hpp:381
-msgid "Print Settings"
-msgstr "Druckeinstellungen"
-
-#: src/slic3r/GUI/Tab.hpp:311
-msgid "Filament Settings"
-msgstr "Filamenteinstellungen"
-
-#: src/slic3r/GUI/Tab.hpp:344
-msgid "Printer Settings"
-msgstr "Druckereinstellungen"
-
-#: src/slic3r/GUI/Tab.hpp:367
-msgid "Material Settings"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.hpp:393
-msgid "Save preset"
-msgstr "Sichern der Voreinstellung"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
-msgid "Update available"
-msgstr "Ein Update ist verfügbar"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
-msgid "New version of Slic3r PE is available"
-msgstr "Eine neue Version von Slic3r PE ist verfügbar"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:35
-msgid "To download, follow the link below."
-msgstr "Zum Herunterladen folgen Sie dem untenstehenden Link."
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:42
-msgid "Current version:"
-msgstr "Aktuelle Version:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:44
-msgid "New version:"
-msgstr "Neue Version:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:52
-msgid "Don't notify about new releases any more"
-msgstr "Keine Benachrichtigung mehr über neue Releases"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:70 src/slic3r/GUI/UpdateDialogs.cpp:162
-msgid "Configuration update"
-msgstr "Konfigurationsupdate"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:70
-msgid "Configuration update is available"
-msgstr "Konfigurationsupdate ist verfügbar"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:73
-msgid ""
-"Would you like to install it?\n"
-"\n"
-"Note that a full configuration snapshot will be created first. It can then "
-"be restored at any time should there be a problem with the new version.\n"
-"\n"
-"Updated configuration bundles:"
-msgstr ""
-"Möchten Sie dies installieren?\n"
-"\n"
-"Beachten Sie, dass zuerst eine Momentaufnahme der gesamten Konfiguration "
-"erstellt wird. Diese kann dann jederzeit wiederhergestellt werden, falls es "
-"ein Problem mit der neuen Version gibt.\n"
-"\n"
-"Aktualisierte Konfigurationssammlungen:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
-msgid "Slic3r incompatibility"
-msgstr "Slic3r-Inkompatibilität"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
-msgid "Slic3r configuration is incompatible"
-msgstr "Slic3r Konfiguration ist nicht kompatibel"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:112
-msgid ""
-"This version of Slic3r PE is not compatible with currently installed "
-"configuration bundles.\n"
-"This probably happened as a result of running an older Slic3r PE after using "
-"a newer one.\n"
-"\n"
-"You may either exit Slic3r and try again with a newer version, or you may re-"
-"run the initial configuration. Doing so will create a backup snapshot of the "
-"existing configuration before installing files compatible with this Slic3r.\n"
-msgstr ""
-"Diese Version von Slic3r PE ist nicht kompatibel zu den aktuell "
-"installierten Konfigurationssammlungen.\n"
-"Dies wurde wahrscheinlich dadurch verursacht, dass Sie eine ältere Slic3r PE "
-"Version benutzt haben, nachdem Sie eine neuere ausgeführt hatten.\n"
-"\n"
-"Sie können Slic3r entweder beenden und es mit einer neueren Version nochmals "
-"versuchen, oder Sie können die erstmalige Startkonfiguration nochmals "
-"wiederholen. In diesem Fall wird eine Sicherungskopie der aktuellen "
-"Konfiguration erstellt, bevor die mit dieser Slic3r-Version kompatiblen "
-"Dateien installiert werden.\n"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:121
-#, c-format
-msgid "This Slic3r PE version: %s"
-msgstr "Diese Slic3r PE Version: %s"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:126
-msgid "Incompatible bundles:"
-msgstr "Inkompatible Konfigurationssammlungen:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:142
-msgid "Exit Slic3r"
-msgstr "Slic3r beenden"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:145
-msgid "Re-configure"
-msgstr "Neu konfigurieren"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:166
-#, c-format
-msgid ""
-"Slic3r PE now uses an updated configuration structure.\n"
-"\n"
-"So called 'System presets' have been introduced, which hold the built-in "
-"default settings for various printers. These System presets cannot be "
-"modified, instead, users now may create their own presets inheriting "
-"settings from one of the System presets.\n"
-"An inheriting preset may either inherit a particular value from its parent "
-"or override it with a customized value.\n"
-"\n"
-"Please proceed with the %s that follows to set up the new presets and to "
-"choose whether to enable automatic preset updates."
-msgstr ""
-"Slic3r PE verwendet nun eine aktualisierte Konfigurationsstruktur.\n"
-"\n"
-"Sogenannte 'Systemeinstellungen' wurden eingeführt; diese enthalten die "
-"eingebauten Standardeinstellungen für verschiedene Drucker. Diese "
-"Systemeinstellungen können nicht verändert werden. Stattdessen können "
-"Benutzer nun ihre eigenen Voreinstellungen erstellen, die Werte von einer "
-"der Systemeinstellungen übernehmen.\n"
-"Eine übernehmende Voreinstellung kann entweder einen bestimmten Wert von "
-"ihrem Vorbild übernehmen, oder ihn mit einem eigenen Wert überschreiben.\n"
-"\n"
-"Bitte fahren Sie fort mit '%s'. Dies folgt nun, um die neuen Einstellungen "
-"einzurichten sowie auszuwählen, ob Einstellungen automatisch aktualisiert "
-"werden dürfen."
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:182
-msgid "For more information please visit our wiki page:"
-msgstr "Für weitere Informationen besuchen Sie bitte unsere Wiki-Seite:"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:10
-msgid "Ramming customization"
-msgstr "Einstellungen für das Rammen"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:36
-msgid ""
-"Ramming denotes the rapid extrusion just before a tool change in a single-"
-"extruder MM printer. Its purpose is to properly shape the end of the "
-"unloaded filament so it does not prevent insertion of the new filament and "
-"can itself be reinserted later. This phase is important and different "
-"materials can require different extrusion speeds to get the good shape. For "
-"this reason, the extrusion rates during ramming are adjustable.\n"
-"\n"
-"This is an expert-level setting, incorrect adjustment will likely lead to "
-"jams, extruder wheel grinding into filament etc."
-msgstr ""
-"Rammen steht für die beschleunigte Extrusion unmittelbar vor einem "
-"Werkzeugwechsel in einem MM-Drucker mit einem Extruder. Der Zweck ist, die "
-"Spitze des entladenen Filaments geeignet zu formen, damit es das Laden des "
-"neuen Filaments nicht behindert und später selber wieder eingeführt werden "
-"kann. Diese Phase ist wichtig und verschiedene Materialien können "
-"unterschiedliche Extrusionsgeschwindigkeiten benötigen, um die richtige Form "
-"zu erzielen. Aus diesem Grund können die Extrusionsraten für das Rammen "
-"angepasst werden.\n"
-"\n"
-"Dies ist eine Einstellung für fortgeschrittene Benutzer. Falsche Anpassungen "
-"werden sehr wahrscheinlich zu Verstopfungen führen oder dazu, dass die Zähne "
-"der Extruderwelle ins Filament einschneiden usw."
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78
-msgid "Total ramming time"
-msgstr "Gesamte Rammdauer"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:80
-msgid "Total rammed volume"
-msgstr "Gesamtes Rammvolumen"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:84
-msgid "Ramming line width"
-msgstr "Breite der Rammlinie"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:86
-msgid "Ramming line spacing"
-msgstr "Abstand der Rammlinien"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:138
-msgid "Wipe tower - Purging volume adjustment"
-msgstr "Reinigungsturm - Anpassung des Reinigungsvolumens"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:219
-msgid ""
-"Here you can adjust required purging volume (mm³) for any given pair of "
-"tools."
-msgstr ""
-"Hier können Sie das erforderliche Reinigungsvolumen (mm³) für ein beliebiges "
-"Werkzeugpaar einstellen."
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:220
-msgid "Extruder changed to"
-msgstr "Extruder geändert auf"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:228
-msgid "unloaded"
-msgstr "entladen wird"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:229
-msgid "loaded"
-msgstr "geladen wird"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:234
-msgid "Tool #"
-msgstr "Werkzeug #"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:241
-msgid ""
-"Total purging volume is calculated by summing two values below, depending on "
-"which tools are loaded/unloaded."
-msgstr ""
-"Das gesamte Reinigungsvolumen wird durch die Addition folgender zwei Werte "
-"berechnet, je nachdem welche Werkzeuge geladen/entladen sind."
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:242
-msgid "Volume to purge (mm³) when the filament is being"
-msgstr "Volumen zum Reinigen (mm³) wenn das Filament ist"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:256
-msgid "From"
-msgstr "Von"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:321
-msgid ""
-"Switching to simple settings will discard changes done in the advanced "
-"mode!\n"
-"\n"
-"Do you want to proceed?"
-msgstr ""
-"Das Umschalten auf einfache Einstellungen verwirft die im erweiterten Modus "
-"vorgenommenen Änderungen!\n"
-"\n"
-"Wollen Sie fortfahren?"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
-msgid "Show simplified settings"
-msgstr "Vereinfachte Einstellungen anzeigen"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
-msgid "Show advanced settings"
-msgstr "Ausführliche Einstellungen anzeigen"
-
-#: src/slic3r/Utils/OctoPrint.cpp:65
-#, c-format
-msgid "Mismatched type of print host: %s"
-msgstr ""
-
-#: src/slic3r/Utils/OctoPrint.cpp:80
-msgid "Connection to OctoPrint works correctly."
-msgstr "Verbindung zu Octoprint funktioniert einwandfrei."
-
-#: src/slic3r/Utils/OctoPrint.cpp:86
-msgid "Could not connect to OctoPrint"
-msgstr "Ich konnte keine Verbindung zu OctoPrint herstellen"
-
-#: src/slic3r/Utils/OctoPrint.cpp:86
-msgid "Note: OctoPrint version at least 1.1.0 is required."
-msgstr "Hinweis: Es ist mindestens die OctoPrint-Version 1.1.0 erforderlich."
-
-#: src/slic3r/Utils/OctoPrint.cpp:181
-msgid "Connection to Prusa SLA works correctly."
-msgstr ""
-
-#: src/slic3r/Utils/OctoPrint.cpp:186
-msgid "Could not connect to Prusa SLA"
-msgstr ""
-
-#: src/slic3r/Utils/PresetUpdater.cpp:571
-#, c-format
-msgid "requires min. %s and max. %s"
-msgstr "benötigt min. %s und max. %s"
-
-#: src/slic3r/Utils/PresetUpdater.cpp:576
-#, c-format
-msgid "requires min. %s"
-msgstr ""
-
-#: src/slic3r/Utils/PresetUpdater.cpp:578
-#, c-format
-msgid "requires max. %s"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:219
-#: src/slic3r/Utils/FixModelByWin10.cpp:349
-msgid "Exporting the source model"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:235
-msgid "Failed loading the input model."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:242
-msgid "Repairing the model by the Netfabb service"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:248
-msgid "Mesh repair failed."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:251
-#: src/slic3r/Utils/FixModelByWin10.cpp:367
-msgid "Loading the repaired model"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:263
-#: src/slic3r/Utils/FixModelByWin10.cpp:270
-#: src/slic3r/Utils/FixModelByWin10.cpp:302
-msgid "Saving mesh into the 3MF container failed."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:334
-msgid "Model fixing"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:335
-msgid "Exporting model..."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:357
-msgid "Export of a temporary 3mf file failed"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:372
-msgid "Import of the repaired 3mf file failed"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:375
-msgid "Model repair finished"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:379
-msgid "Model repair canceled"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
-msgid "Model repaired successfully"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
-msgid "Model Repair by the Netfabb service"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
-msgid "Model repair failed: \n"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1175
-msgid "All objects are outside of the print volume."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1201
-msgid "Some objects are too close; your extruder will collide with them."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1216
-msgid ""
-"Some objects are too tall and cannot be printed without extruder collisions."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1226
-msgid "The Spiral Vase option can only be used when printing a single object."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1228
-msgid ""
-"The Spiral Vase option can only be used when printing single material "
-"objects."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1234
-msgid ""
-"All extruders must have the same diameter for single extruder multimaterial "
-"printer."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1239
-msgid ""
-"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter "
-"and Repetier G-code flavors."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1241
-msgid ""
-"The Wipe Tower is currently only supported with the relative extruder "
-"addressing (use_relative_e_distances=1)."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1253
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they have equal "
-"layer heigths"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1255
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they are printed "
-"over an equal number of raft layers"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1257
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they are printed "
-"with the same support_material_contact_distance"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1259
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they are sliced "
-"equally."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1281
-msgid ""
-"The Wipe tower is only supported if all objects have the same layer height "
-"profile"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1290
-msgid "The supplied settings will cause an empty print."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1307
-msgid ""
-"One or more object were assigned an extruder that the printer does not have."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1316
-msgid ""
-"Printing with multiple extruders of differing nozzle diameters. If support "
-"is to be printed with the current extruder (support_material_extruder == 0 "
-"or support_material_interface_extruder == 0), all nozzles have to be of the "
-"same diameter."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1324
-msgid ""
-"For the Wipe Tower to work with the soluble supports, the support layers "
-"need to be synchronized with the object layers."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1328
-msgid ""
-"The Wipe Tower currently supports the non-soluble supports only if they are "
-"printed with the current extruder without triggering a tool change. (both "
-"support_material_extruder and support_material_interface_extruder need to be "
-"set to 0)."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1335
-msgid "first_layer_height"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1350
-msgid "First layer height can't be greater than nozzle diameter"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1354
-msgid "Layer height can't be greater than nozzle diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:32 src/libslic3r/PrintConfig.cpp:33
-msgid "Printer technology"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:41
-msgid "Bed shape"
-msgstr "Druckbettkontur"
-
-#: src/libslic3r/PrintConfig.cpp:48
-msgid ""
-"This setting controls the height (and thus the total number) of the slices/"
-"layers. Thinner layers give better accuracy but take more time to print."
-msgstr ""
-"Diese Einstellung bestimmt die Höhe (und damit die Gesamtanzahl) der "
-"Scheiben/Schichten. Dünnere Schichten ergeben eine bessere Genauigkeit, "
-"benötigen aber mehr Zeit zum drucken."
-
-#: src/libslic3r/PrintConfig.cpp:56
-msgid "Max print height"
-msgstr "Max. Druckhöhe"
-
-#: src/libslic3r/PrintConfig.cpp:57
-msgid ""
-"Set this to the maximum height that can be reached by your extruder while "
-"printing."
-msgstr ""
-"Stellen Sie hier die maximale Höhe ein, die Ihr Extruder beim Drucken "
-"erreichen kann."
-
-#: src/libslic3r/PrintConfig.cpp:73
-msgid "Avoid crossing perimeters"
-msgstr "Kreuzen der Kontur vermeiden"
-
-#: src/libslic3r/PrintConfig.cpp:74
-msgid ""
-"Optimize travel moves in order to minimize the crossing of perimeters. This "
-"is mostly useful with Bowden extruders which suffer from oozing. This "
-"feature slows down both the print and the G-code generation."
-msgstr ""
-"Optimieren Sie die Verfahrbewegungen, um das Überschreiten von Konturen zu "
-"minimieren. Dies ist vor allem bei Bowdenextrudern nützlich, die unter "
-"sickerndem Material leiden. Diese Funktion verlangsamt sowohl den Druck als "
-"auch die Generierung des G-Codes."
-
-#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:2080
-msgid "Other layers"
-msgstr "Andere Schichten"
-
-#: src/libslic3r/PrintConfig.cpp:83
-msgid ""
-"Bed temperature for layers after the first one. Set this to zero to disable "
-"bed temperature control commands in the output."
-msgstr ""
-"Druckbett-Temperatur für Schichten nach der ersten Schicht. Setzen Sie "
-"diesen Wert auf Null, um die Befehle zur Steuerung der Betttemperatur im "
-"Output zu deaktivieren."
-
-#: src/libslic3r/PrintConfig.cpp:86
-msgid "Bed temperature"
-msgstr "Druckbetttemperatur"
-
-#: src/libslic3r/PrintConfig.cpp:93
-msgid ""
-"This custom code is inserted at every layer change, right before the Z move. "
-"Note that you can use placeholder variables for all Slic3r settings as well "
-"as [layer_num] and [layer_z]."
-msgstr ""
-"Dieser benutzerdefinierte Code wird bei jedem Lagenwechsel, unmittelbar vor "
-"der Z Bewegung, eingefügt. Beachten Sie, dass Sie Platzhaltervariablen für "
-"alle Slic3r-Einstellungen sowie [layer_num] und [layer_z] verwenden können."
-
-#: src/libslic3r/PrintConfig.cpp:104
-msgid "Between objects G-code"
-msgstr "G-Code zwischen Objekten"
-
-#: src/libslic3r/PrintConfig.cpp:105
-msgid ""
-"This code is inserted between objects when using sequential printing. By "
-"default extruder and bed temperature are reset using non-wait command; "
-"however if M104, M109, M140 or M190 are detected in this custom code, Slic3r "
-"will not add temperature commands. Note that you can use placeholder "
-"variables for all Slic3r settings, so you can put a \"M109 "
-"S[first_layer_temperature]\" command wherever you want."
-msgstr ""
-"Dieser Code wird beim sequentiellen Drucken zwischen Objekten eingefügt. "
-"Standardmäßig werden Extruder- und Betttemperatur mit dem Befehl, der nicht "
-"auf die Änderung wartet, zurückgesetzt. Wenn jedoch M104, M109, M140 oder "
-"M190 in diesem benutzerdefinierten Code erkannt werden, fügt Slic3r keine "
-"Temperaturbefehle hinzu. Beachten Sie, dass Sie Platzhaltervariablen für "
-"alle Slic3r-Einstellungen verwenden können, so dass Sie einen \"M109 "
-"S[first_layer_temperature]\"-Befehl an beliebiger Stelle platzieren können."
-
-#: src/libslic3r/PrintConfig.cpp:114
-msgctxt "Layers"
-msgid "Bottom"
-msgstr "Unten"
-
-#: src/libslic3r/PrintConfig.cpp:116
-msgid "Number of solid layers to generate on bottom surfaces."
-msgstr "Anzahl der zu erzeugenden festen Schichten auf der Bodenfläche."
-
-#: src/libslic3r/PrintConfig.cpp:118
-msgid "Bottom solid layers"
-msgstr "Kompakte Basisschichten"
-
-#: src/libslic3r/PrintConfig.cpp:123
-msgid "Bridge"
-msgstr "Überbrückung"
-
-#: src/libslic3r/PrintConfig.cpp:124
-msgid ""
-"This is the acceleration your printer will use for bridges. Set zero to "
-"disable acceleration control for bridges."
-msgstr ""
-"Die Beschleunigung, die Ihr Drucker für Brücken verwendet. Setzen Sie dies "
-"auf Null, um die Beschleunigungskontrolle bei Brücken zu deaktivieren."
-
-#: src/libslic3r/PrintConfig.cpp:126 src/libslic3r/PrintConfig.cpp:274
-#: src/libslic3r/PrintConfig.cpp:819 src/libslic3r/PrintConfig.cpp:941
-#: src/libslic3r/PrintConfig.cpp:1100 src/libslic3r/PrintConfig.cpp:1145
-#: src/libslic3r/PrintConfig.cpp:1156 src/libslic3r/PrintConfig.cpp:1386
-msgid "mm/s²"
-msgstr "mm/s²"
-
-#: src/libslic3r/PrintConfig.cpp:133
-msgid "Bridging angle"
-msgstr "Überbrückungswinkel"
-
-#: src/libslic3r/PrintConfig.cpp:135
-msgid ""
-"Bridging angle override. If left to zero, the bridging angle will be "
-"calculated automatically. Otherwise the provided angle will be used for all "
-"bridges. Use 180° for zero angle."
-msgstr ""
-"Überbrückungswinkel Übersteuerung. Wird der Wert auf Null gesetzt, wird der "
-"Überbrückungswinkel automatisch berechnet. Andernfalls wird der angegebene "
-"Winkel für alle Brücken verwendet. Verwenden Sie 180° für den Nullwinkel."
-
-#: src/libslic3r/PrintConfig.cpp:138 src/libslic3r/PrintConfig.cpp:734
-#: src/libslic3r/PrintConfig.cpp:1637 src/libslic3r/PrintConfig.cpp:1648
-#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:2063
-#: src/libslic3r/PrintConfig.cpp:2578
-msgid "°"
-msgstr "°"
-
-#: src/libslic3r/PrintConfig.cpp:145
-msgid "Bridges fan speed"
-msgstr "Brückenventilatorgeschwindigkeit"
-
-#: src/libslic3r/PrintConfig.cpp:146
-msgid "This fan speed is enforced during all bridges and overhangs."
-msgstr ""
-"Die Lüftergeschwindigkeit, die für Überbrückungen und Überhänge benutzt wird."
-
-#: src/libslic3r/PrintConfig.cpp:147 src/libslic3r/PrintConfig.cpp:747
-#: src/libslic3r/PrintConfig.cpp:1165 src/libslic3r/PrintConfig.cpp:1232
-#: src/libslic3r/PrintConfig.cpp:1517
-msgid "%"
-msgstr "%"
-
-#: src/libslic3r/PrintConfig.cpp:155
-msgid "Bridge flow ratio"
-msgstr "Brückenflussverhältnis"
-
-#: src/libslic3r/PrintConfig.cpp:157
-msgid ""
-"This factor affects the amount of plastic for bridging. You can decrease it "
-"slightly to pull the extrudates and prevent sagging, although default "
-"settings are usually good and you should experiment with cooling (use a fan) "
-"before tweaking this."
-msgstr ""
-"Diese Einstellung beeinflusst den Materialausstoss bei Brücken. Sie können "
-"den Wert leicht verringern, um die Extrusionsfäden zu strecken und ein "
-"Durchhängen zu vermeiden. Die Standardwerte sind aber normalerweise "
-"ausreichend und Sie sollten zuerst mit der Lüftergeschwindigkeit "
-"experimentieren, bevor Sie diesen Wert verändern."
-
-#: src/libslic3r/PrintConfig.cpp:168
-msgid "Bridges"
-msgstr "Überbrückungen"
-
-#: src/libslic3r/PrintConfig.cpp:170
-msgid "Speed for printing bridges."
-msgstr "Brückendruckgeschwindigkeit."
-
-#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:564
-#: src/libslic3r/PrintConfig.cpp:573 src/libslic3r/PrintConfig.cpp:583
-#: src/libslic3r/PrintConfig.cpp:592 src/libslic3r/PrintConfig.cpp:623
-#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:884
-#: src/libslic3r/PrintConfig.cpp:1013 src/libslic3r/PrintConfig.cpp:1090
-#: src/libslic3r/PrintConfig.cpp:1110 src/libslic3r/PrintConfig.cpp:1123
-#: src/libslic3r/PrintConfig.cpp:1134 src/libslic3r/PrintConfig.cpp:1189
-#: src/libslic3r/PrintConfig.cpp:1252 src/libslic3r/PrintConfig.cpp:1418
-#: src/libslic3r/PrintConfig.cpp:1601 src/libslic3r/PrintConfig.cpp:1611
-#: src/libslic3r/PrintConfig.cpp:2041 src/libslic3r/PrintConfig.cpp:2160
-msgid "mm/s"
-msgstr "mm/s"
-
-#: src/libslic3r/PrintConfig.cpp:178
-msgid "Brim width"
-msgstr "Randbreite"
-
-#: src/libslic3r/PrintConfig.cpp:179
-msgid ""
-"Horizontal width of the brim that will be printed around each object on the "
-"first layer."
-msgstr ""
-"Horizontalbreite des Randes, der um jedes Objekt auf der Bodenschicht "
-"gedruckt wird."
-
-#: src/libslic3r/PrintConfig.cpp:187
-msgid "Clip multi-part objects"
-msgstr "Beschneiden von Objekten aus mehreren Teilen"
-
-#: src/libslic3r/PrintConfig.cpp:188
-msgid ""
-"When printing multi-material objects, this settings will make slic3r to clip "
-"the overlapping object parts one by the other (2nd part will be clipped by "
-"the 1st, 3rd part will be clipped by the 1st and 2nd etc)."
-msgstr ""
-"Wenn Multi-Material-Objekte gedruckt werden, wird Slic3r mit diesen "
-"Einstellungen einen überlappenden Teil des Objekts durch den anderen "
-"einschränken (zweiter Teil wird durch den ersten Teil eingeschränkt, dritter "
-"Teil wird durch den ersten und zweiten eingeschränkt usw.)."
-
-#: src/libslic3r/PrintConfig.cpp:196
-msgid "Colorprint height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:197
-msgid "Heights at which a filament change is to occur. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:207
-msgid "Compatible printers condition"
-msgstr "Kompatible Druckerbedingung"
-
-#: src/libslic3r/PrintConfig.cpp:208
-msgid ""
-"A boolean expression using the configuration values of an active printer "
-"profile. If this expression evaluates to true, this profile is considered "
-"compatible with the active printer profile."
-msgstr ""
-"Ein boolescher Ausdruck, der die Konfigurationswerte eines aktiven "
-"Druckerprofils verwendet. Wenn dieser Ausdruck als wahr bewertet wird, wird "
-"dieses Profil als kompatibel mit dem aktiven Druckerprofil angesehen."
-
-#: src/libslic3r/PrintConfig.cpp:220
-msgid "Compatible print profiles condition"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:221
-msgid ""
-"A boolean expression using the configuration values of an active print "
-"profile. If this expression evaluates to true, this profile is considered "
-"compatible with the active print profile."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:235
-msgid "Complete individual objects"
-msgstr "Kompatible Einzelobjekte"
-
-#: src/libslic3r/PrintConfig.cpp:236
-msgid ""
-"When printing multiple objects or copies, this feature will complete each "
-"object before moving onto next one (and starting it from its bottom layer). "
-"This feature is useful to avoid the risk of ruined prints. Slic3r should "
-"warn and prevent you from extruder collisions, but beware."
-msgstr ""
-"Wenn mehrere Objekte oder Kopien gedruckt werden, wird bei dieser "
-"Einstellung jedes Objekt vollständig gedruckt, bevor das nächste (angefangen "
-"mit der Bodenschicht) begonnen wird. Diese Einstellung ist nützlich, um "
-"Fehldrucke zu vermeiden. Slic3r sollte vor Extruderkollisionen warnen und "
-"diese verhindern, aber seien Sie trotzdem aufmerksam."
-
-#: src/libslic3r/PrintConfig.cpp:245
-msgid "Enable auto cooling"
-msgstr "Automatische Kühlung aktivieren"
-
-#: src/libslic3r/PrintConfig.cpp:246
-msgid ""
-"This flag enables the automatic cooling logic that adjusts print speed and "
-"fan speed according to layer printing time."
-msgstr ""
-"Diese Einstellung aktiviert the Logik, die die Druckgeschwindigkeit und "
-"Lüftergeschwindigkeit automatisch gemäß der Schichtdruckdauer regelt."
-
-#: src/libslic3r/PrintConfig.cpp:252
-msgid "Cooling tube position"
-msgstr "Position des Kühlschlauchs"
-
-#: src/libslic3r/PrintConfig.cpp:253
-msgid "Distance of the center-point of the cooling tube from the extruder tip "
-msgstr "Abstand des Mittelpunktes des Kühlrohres von der Extruderspitze "
-
-#: src/libslic3r/PrintConfig.cpp:261
-msgid "Cooling tube length"
-msgstr "Länge des Kühlschlauchs"
-
-#: src/libslic3r/PrintConfig.cpp:262
-msgid "Length of the cooling tube to limit space for cooling moves inside it "
-msgstr ""
-"Länge des Kühlschlauchs, um den Raum für Kühlbewegungen im Inneren zu "
-"begrenzen "
-
-#: src/libslic3r/PrintConfig.cpp:271
-msgid ""
-"This is the acceleration your printer will be reset to after the role-"
-"specific acceleration values are used (perimeter/infill). Set zero to "
-"prevent resetting acceleration at all."
-msgstr ""
-"Dies ist der Beschleunigungswert, auf den Ihr Drucker zurückgesetzt wird, "
-"nachdem aufgabenspezifische Beschleunigungswerte (Aussenschichten/Infill) "
-"verwendet wurden. Setzen Sie dies auf Null, um ein Zurückstellen der "
-"Beschleunigungswerte zu deaktivieren."
-
-#: src/libslic3r/PrintConfig.cpp:281
-msgid "Default filament profile"
-msgstr "Standard-Filamentprofil"
-
-#: src/libslic3r/PrintConfig.cpp:282
-msgid ""
-"Default filament profile associated with the current printer profile. On "
-"selection of the current printer profile, this filament profile will be "
-"activated."
-msgstr ""
-"Standard-Filamentprofil, das dem aktuellen Druckerprofil zugeordnet ist. Bei "
-"Auswahl des aktuellen Druckerprofils wird dieses Filamentprofil aktiviert."
-
-#: src/libslic3r/PrintConfig.cpp:287
-msgid "Default print profile"
-msgstr "Standard-Druckprofil"
-
-#: src/libslic3r/PrintConfig.cpp:288 src/libslic3r/PrintConfig.cpp:2469
-#: src/libslic3r/PrintConfig.cpp:2479
-msgid ""
-"Default print profile associated with the current printer profile. On "
-"selection of the current printer profile, this print profile will be "
-"activated."
-msgstr ""
-"Standarddruckprofil, das dem aktuellen Druckerprofil zugeordnet ist. Bei "
-"Auswahl des aktuellen Druckerprofils wird dieses Druckprofil aktiviert."
-
-#: src/libslic3r/PrintConfig.cpp:293
-msgid "Disable fan for the first"
-msgstr "Ventilator für die Ersten"
-
-#: src/libslic3r/PrintConfig.cpp:294
-msgid ""
-"You can set this to a positive value to disable fan at all during the first "
-"layers, so that it does not make adhesion worse."
-msgstr ""
-"Sie können einen positiven Wert eingeben, um den Lüfter vollständig für die "
-"ersten Schichten auszuschalten, damit er die Haftung nicht beeinträchtigt."
-
-#: src/libslic3r/PrintConfig.cpp:296 src/libslic3r/PrintConfig.cpp:952
-#: src/libslic3r/PrintConfig.cpp:1487 src/libslic3r/PrintConfig.cpp:1691
-#: src/libslic3r/PrintConfig.cpp:1757 src/libslic3r/PrintConfig.cpp:1935
-#: src/libslic3r/PrintConfig.cpp:1985
-msgid "layers"
-msgstr "Schichten"
-
-#: src/libslic3r/PrintConfig.cpp:304
-msgid "Don't support bridges"
-msgstr "Brücken nicht unterstützen"
-
-#: src/libslic3r/PrintConfig.cpp:306
-msgid ""
-"Experimental option for preventing support material from being generated "
-"under bridged areas."
-msgstr ""
-"Experimentelle Option zur Verhinderung der Bildung von Trägermaterial unter "
-"Überbrückungsflächen."
-
-#: src/libslic3r/PrintConfig.cpp:313
-msgid "Distance between copies"
-msgstr "Abstand zwischen Kopien"
-
-#: src/libslic3r/PrintConfig.cpp:314
-msgid "Distance used for the auto-arrange feature of the plater."
-msgstr "Abstand für die automatische Druckplattenbelegung."
-
-#: src/libslic3r/PrintConfig.cpp:322
-msgid "Elephant foot compensation"
-msgstr "Elefantenfuss Kompensation"
-
-#: src/libslic3r/PrintConfig.cpp:324
-msgid ""
-"The first layer will be shrunk in the XY plane by the configured value to "
-"compensate for the 1st layer squish aka an Elephant Foot effect."
-msgstr ""
-"Die erste Schicht wird in der XY-Ebene um den vorgegebenen Wert verkleinert, "
-"um das Ausquetschen in der ersten Schicht (\"Elephant Foot\"-Effekt) zu "
-"kompensieren."
-
-#: src/libslic3r/PrintConfig.cpp:334
-msgid ""
-"This end procedure is inserted at the end of the output file. Note that you "
-"can use placeholder variables for all Slic3r settings."
-msgstr ""
-"Dieser G-Code wird am Ende der Ausgabedatei angehängt. Sie können "
-"Platzhaltervariablen für alle Slic3r-Einstellungen verwenden."
-
-#: src/libslic3r/PrintConfig.cpp:345
-msgid ""
-"This end procedure is inserted at the end of the output file, before the "
-"printer end gcode. Note that you can use placeholder variables for all "
-"Slic3r settings. If you have multiple extruders, the gcode is processed in "
-"extruder order."
-msgstr ""
-"Diese Endprozedur wird am Ende der Ausgabedatei vor dem DruckerEnde G-Code "
-"eingefügt. Beachten Sie, dass Sie Platzhaltervariablen für alle Slic3r-"
-"Einstellungen verwenden können. Wenn Sie über mehrere Extruder verfügen, "
-"wird der G-Code in der Extruderreihenfolge verarbeitet."
-
-#: src/libslic3r/PrintConfig.cpp:356
-msgid "Ensure vertical shell thickness"
-msgstr "Stelle die vertikale Hüllenstärke sicher"
-
-#: src/libslic3r/PrintConfig.cpp:358
-msgid ""
-"Add solid infill near sloping surfaces to guarantee the vertical shell "
-"thickness (top+bottom solid layers)."
-msgstr ""
-"Fügen Sie stabiles Infill in der Nähe von schrägen Flächen hinzu, um die "
-"vertikale Schalenstärke zu gewährleisten (obere und untere massive "
-"Schichten)."
-
-#: src/libslic3r/PrintConfig.cpp:365
-msgid "Top/bottom fill pattern"
-msgstr "Boden- und Deckenfüllmuster"
-
-#: src/libslic3r/PrintConfig.cpp:367
-msgid ""
-"Fill pattern for top/bottom infill. This only affects the external visible "
-"layer, and not its adjacent solid shells."
-msgstr ""
-"Füllmuster für die obere und untere Füllung. Dies wirkt sich nur auf die "
-"äußere sichtbare Schicht aus, nicht aber auf die angrenzenden soliden "
-"Konturen."
-
-#: src/libslic3r/PrintConfig.cpp:376 src/libslic3r/PrintConfig.cpp:800
-#: src/libslic3r/PrintConfig.cpp:2021
-msgid "Rectilinear"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:377 src/libslic3r/PrintConfig.cpp:806
-msgid "Concentric"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:378 src/libslic3r/PrintConfig.cpp:810
-msgid "Hilbert Curve"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:379 src/libslic3r/PrintConfig.cpp:811
-msgid "Archimedean Chords"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:380 src/libslic3r/PrintConfig.cpp:812
-msgid "Octagram Spiral"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:386 src/libslic3r/PrintConfig.cpp:397
-msgid "External perimeters"
-msgstr "Aussenschichten"
-
-#: src/libslic3r/PrintConfig.cpp:388
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for external "
-"perimeters. If left zero, default extrusion width will be used if set, "
-"otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
-"(for example 200%), it will be computed over layer height."
-msgstr ""
-"Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite "
-"für externe Aussenschichten anzugeben. Falls auf Null belassen, wird die "
-"Standard-Extrusionsbreite verwendet (falls angeben), ansonsten wird der "
-"Durchmesser der Druckdüse x 1,125 verwendet. Falls als Prozentwert (z.B. "
-"200%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet."
-
-#: src/libslic3r/PrintConfig.cpp:391 src/libslic3r/PrintConfig.cpp:841
-#: src/libslic3r/PrintConfig.cpp:975 src/libslic3r/PrintConfig.cpp:1408
-#: src/libslic3r/PrintConfig.cpp:1769 src/libslic3r/PrintConfig.cpp:1958
-#: src/libslic3r/PrintConfig.cpp:2129
-msgid "mm or % (leave 0 for default)"
-msgstr "mm oder % (für Standardwert auf Null belassen)"
-
-#: src/libslic3r/PrintConfig.cpp:399
-msgid ""
-"This separate setting will affect the speed of external perimeters (the "
-"visible ones). If expressed as percentage (for example: 80%) it will be "
-"calculated on the perimeters speed setting above. Set to zero for auto."
-msgstr ""
-"Diese separate Einstellung wirkt sich auf die Geschwindigkeit der äusseren "
-"(sichtbaren) Aussenschichten aus. Als Prozentwert eingegeben (z.B. 80%), "
-"wird sie ausgehend von der obigen Geschwindigkeitseinstellung für "
-"Aussenschichten berechnet. Für die automatische Berechnung auf Null setzen."
-
-#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:864
-#: src/libslic3r/PrintConfig.cpp:1725 src/libslic3r/PrintConfig.cpp:1780
-#: src/libslic3r/PrintConfig.cpp:2006 src/libslic3r/PrintConfig.cpp:2142
-msgid "mm/s or %"
-msgstr "mm/s oder %"
-
-#: src/libslic3r/PrintConfig.cpp:409
-msgid "External perimeters first"
-msgstr "Aussenkonturen zuerst drucken"
-
-#: src/libslic3r/PrintConfig.cpp:411
-msgid ""
-"Print contour perimeters from the outermost one to the innermost one instead "
-"of the default inverse order."
-msgstr ""
-"Drucken Sie Konturumfänge von der äußersten zur innersten Kontur anstatt der "
-"standardmäßigen umgekehrten Reihenfolge."
-
-#: src/libslic3r/PrintConfig.cpp:418
-msgid "Extra perimeters if needed"
-msgstr "Extra Konturen wenn notwendig"
-
-#: src/libslic3r/PrintConfig.cpp:420
-#, no-c-format
-msgid ""
-"Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r "
-"keeps adding perimeters, until more than 70% of the loop immediately above "
-"is supported."
-msgstr ""
-"Fügen Sie bei Bedarf weitere Perimeter hinzu, um Spalten in schrägen Wänden "
-"zu vermeiden. Slic3r fügt immer wieder Perimeter hinzu, bis mehr als 70% der "
-"unmittelbar darüber liegenden Schleife unterstützt werden."
-
-#: src/libslic3r/PrintConfig.cpp:431
-msgid ""
-"The extruder to use (unless more specific extruder settings are specified). "
-"This value overrides perimeter and infill extruders, but not the support "
-"extruders."
-msgstr ""
-"Der Extruder, der verwendet werden soll, falls keine sonstigen "
-"Extrudereinstellungen angegeben wurden. Dies übersteuert die Angaben für die "
-"Aussenschicht- und Infill-Extruder, aber nicht die Angabe des Extruders für "
-"die Stützen."
-
-#: src/libslic3r/PrintConfig.cpp:444
-msgid ""
-"Set this to the vertical distance between your nozzle tip and (usually) the "
-"X carriage rods. In other words, this is the height of the clearance "
-"cylinder around your extruder, and it represents the maximum depth the "
-"extruder can peek before colliding with other printed objects."
-msgstr ""
-"Stellen Sie dies auf den vertikalen Abstand zwischen Ihrer Düsenspitze und "
-"(in der Regel) den X-Wagenstangen ein. Mit anderen Worten, das ist die Höhe "
-"des Abstandszylinders um Ihren Extruder herum und stellt die maximale Tiefe "
-"dar, die der Extruder vor der Kollision mit anderen Druckobjekten sehen kann."
-
-#: src/libslic3r/PrintConfig.cpp:455
-msgid "Radius"
-msgstr "Radius"
-
-#: src/libslic3r/PrintConfig.cpp:456
-msgid ""
-"Set this to the clearance radius around your extruder. If the extruder is "
-"not centered, choose the largest value for safety. This setting is used to "
-"check for collisions and to display the graphical preview in the plater."
-msgstr ""
-"Stellen Sie dies auf den Freiraumradius um Ihren Extruder ein. Wenn der "
-"Extruder nicht zentriert ist, wählen Sie zur Sicherheit den größten Wert. "
-"Diese Einstellung wird verwendet, um Kollisionen zu prüfen und die grafische "
-"Vorschau auf der Druckplatte anzuzeigen."
-
-#: src/libslic3r/PrintConfig.cpp:467
-msgid "Extruder Color"
-msgstr "Extruder Farbe"
-
-#: src/libslic3r/PrintConfig.cpp:468 src/libslic3r/PrintConfig.cpp:535
-msgid "This is only used in the Slic3r interface as a visual help."
-msgstr ""
-"Dies wird nur als visuelles Hilfsmittel in der Slic3r-Benutzeroberfläche "
-"verwendet."
-
-#: src/libslic3r/PrintConfig.cpp:475
-msgid "Extruder offset"
-msgstr "Extruder Offset"
-
-#: src/libslic3r/PrintConfig.cpp:476
-msgid ""
-"If your firmware doesn't handle the extruder displacement you need the G-"
-"code to take it into account. This option lets you specify the displacement "
-"of each extruder with respect to the first one. It expects positive "
-"coordinates (they will be subtracted from the XY coordinate)."
-msgstr ""
-"Wenn Ihre Firmware die Verschiebung des Extruders nicht beherrscht, "
-"benötigen Sie den G-Code, um sie zu berücksichtigen. Mit dieser Option "
-"können Sie die Verschiebung jedes Extruders in Bezug auf den ersten Extruder "
-"festlegen. Es erwartet positive Koordinaten (sie werden von der XY-"
-"Koordinate subtrahiert)."
-
-#: src/libslic3r/PrintConfig.cpp:486
-msgid "Extrusion axis"
-msgstr "Extrusionsachse"
-
-#: src/libslic3r/PrintConfig.cpp:487
-msgid ""
-"Use this option to set the axis letter associated to your printer's extruder "
-"(usually E but some printers use A)."
-msgstr ""
-"Verwenden Sie diese Einstellung, um den Buchstaben der Achse anzugeben, die "
-"mit Ihrem Extruder verknüpft ist (normalerweise E, aber bei manchen Druckern "
-"ist dies A)."
-
-#: src/libslic3r/PrintConfig.cpp:493
-msgid "Extrusion multiplier"
-msgstr "Extrusionsfaktor"
-
-#: src/libslic3r/PrintConfig.cpp:494
-msgid ""
-"This factor changes the amount of flow proportionally. You may need to tweak "
-"this setting to get nice surface finish and correct single wall widths. "
-"Usual values are between 0.9 and 1.1. If you think you need to change this "
-"more, check filament diameter and your firmware E steps."
-msgstr ""
-"Dieser Faktor ändert die Extrusionsmenge proportional. Sie müssen diese "
-"Einstellung möglicherweise anpassen, um schöne Oberflächen und korrekte "
-"Hüllendicken zu erhalten. Die üblichen Werte bewegen sich zwischen 0,9 und "
-"1,1. Falls Sie grössere Anpassungen eingeben müssen, kontrollieren Sie auch "
-"den Filamentdurchmesser und die E-Schritte in Ihrer Firmware."
-
-#: src/libslic3r/PrintConfig.cpp:503
-msgid "Default extrusion width"
-msgstr "Standardextrusionsbreite"
-
-#: src/libslic3r/PrintConfig.cpp:505
-msgid ""
-"Set this to a non-zero value to allow a manual extrusion width. If left to "
-"zero, Slic3r derives extrusion widths from the nozzle diameter (see the "
-"tooltips for perimeter extrusion width, infill extrusion width etc). If "
-"expressed as percentage (for example: 230%), it will be computed over layer "
-"height."
-msgstr ""
-"Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite "
-"zuzulassen. Falls auf Null belassen, wird Slic3r die Extrusionsbreiten vom "
-"Durchmesser der Druckdüse ableiten (siehe die Hilfstexte für die "
-"Extrusionsbreite für Aussenschichten, Infill usw.). Falls als Prozentwert (z."
-"B. 230%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet."
-
-#: src/libslic3r/PrintConfig.cpp:509
-msgid "mm or % (leave 0 for auto)"
-msgstr "mm oder % (für automatischen Wert auf Null belassen)"
-
-#: src/libslic3r/PrintConfig.cpp:515
-msgid "Keep fan always on"
-msgstr "Ventilator ständig laufen lassen"
-
-#: src/libslic3r/PrintConfig.cpp:516
-msgid ""
-"If this is enabled, fan will never be disabled and will be kept running at "
-"least at its minimum speed. Useful for PLA, harmful for ABS."
-msgstr ""
-"Wenn diese Option aktiviert ist, wird der Lüfter niemals deaktiviert und "
-"läuft mindestens mit seiner Minimaldrehzahl weiter. Sinnvoll für PLA, "
-"ungeignet für ABS."
-
-#: src/libslic3r/PrintConfig.cpp:522
-msgid "Enable fan if layer print time is below"
-msgstr "Ventilator anschalten wenn die Schichtdruckzeit geringer ist als"
-
-#: src/libslic3r/PrintConfig.cpp:523
-msgid ""
-"If layer print time is estimated below this number of seconds, fan will be "
-"enabled and its speed will be calculated by interpolating the minimum and "
-"maximum speeds."
-msgstr ""
-"Wenn die Druckzeit der Ebenen unter dieser Anzahl von Sekunden liegt, wird "
-"der Lüfter aktiviert und seine Geschwindigkeit durch Interpolation der "
-"minimalen und maximalen Geschwindigkeiten berechnet."
-
-#: src/libslic3r/PrintConfig.cpp:525 src/libslic3r/PrintConfig.cpp:1711
-msgid "approximate seconds"
-msgstr "ungefähre Sekunden"
-
-#: src/libslic3r/PrintConfig.cpp:534
-msgid "Color"
-msgstr "Farbe"
-
-#: src/libslic3r/PrintConfig.cpp:541
-msgid "Filament notes"
-msgstr "Filament Bemerkungen"
-
-#: src/libslic3r/PrintConfig.cpp:542
-msgid "You can put your notes regarding the filament here."
-msgstr "Sie können Ihre Notizen zum Filament hier eingeben."
-
-#: src/libslic3r/PrintConfig.cpp:551 src/libslic3r/PrintConfig.cpp:1196
-msgid "Max volumetric speed"
-msgstr "Maximale Volumengeschwindigkeit"
-
-#: src/libslic3r/PrintConfig.cpp:552
-msgid ""
-"Maximum volumetric speed allowed for this filament. Limits the maximum "
-"volumetric speed of a print to the minimum of print and filament volumetric "
-"speed. Set to zero for no limit."
-msgstr ""
-"Maximale volumetrische Geschwindigkeit, die für dieses Filament zulässig "
-"ist. Begrenzt die maximale volumetrische Geschwindigkeit eines Drucks auf "
-"das Minimum von Druck- und Filament-Volumengeschwindigkeit. Wird auf Null "
-"gesetzt, wenn es keine Begrenzung gibt."
-
-#: src/libslic3r/PrintConfig.cpp:555 src/libslic3r/PrintConfig.cpp:1199
-msgid "mm³/s"
-msgstr "mm³/s"
-
-#: src/libslic3r/PrintConfig.cpp:562
-msgid "Loading speed"
-msgstr "Ladegeschwindigkeit"
-
-#: src/libslic3r/PrintConfig.cpp:563
-msgid "Speed used for loading the filament on the wipe tower. "
-msgstr ""
-"Geschwindigkeit, mit der Filament auf dem Reinigungsturm geladen wird. "
-
-#: src/libslic3r/PrintConfig.cpp:571
-msgid "Loading speed at the start"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:572
-msgid "Speed used at the very beginning of loading phase. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:580
-msgid "Unloading speed"
-msgstr "Entladegeschwindigkeit"
-
-#: src/libslic3r/PrintConfig.cpp:581
-msgid ""
-"Speed used for unloading the filament on the wipe tower (does not affect "
-"initial part of unloading just after ramming). "
-msgstr ""
-"Geschwindigkeit, mit der Filament auf dem Reinigungsturm entladen wird "
-"(betrifft nicht den ersten Teil des Entladens direkt nach dem Rammen). "
-
-#: src/libslic3r/PrintConfig.cpp:590
-msgid "Unloading speed at the start"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:591
-msgid ""
-"Speed used for unloading the tip of the filament immediately after ramming. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:599
-msgid "Delay after unloading"
-msgstr "Verzögerung nach dem Entladen"
-
-#: src/libslic3r/PrintConfig.cpp:600
-msgid ""
-"Time to wait after the filament is unloaded. May help to get reliable "
-"toolchanges with flexible materials that may need more time to shrink to "
-"original dimensions. "
-msgstr ""
-"Wartezeit, nachdem das Filament entladen wurde. Dies kann zu zuverlässigeren "
-"Werkzeugwechseln beitragen bei flexiblen Materialien, die mehr Zeit zum "
-"Schrumpfen auf ihre ursprüngliche Grösse brauchen. "
-
-#: src/libslic3r/PrintConfig.cpp:610
-msgid "Number of cooling moves"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:611
-msgid ""
-"Filament is cooled by being moved back and forth in the cooling tubes. "
-"Specify desired number of these moves "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:620
-msgid "Speed of the first cooling move"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:621
-msgid "Cooling moves are gradually accelerating beginning at this speed. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:629
-msgid "Minimal purge on wipe tower"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:630
-msgid ""
-"After a tool change, the exact position of the newly loaded filament inside "
-"the nozzle may not be known, and the filament pressure is likely not yet "
-"stable. Before purging the print head into an infill or a sacrificial "
-"object, Slic3r will always prime this amount of material into the wipe tower "
-"to produce successive infill or sacrificial object extrusions reliably."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:635
-msgid "mm³"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:641
-msgid "Speed of the last cooling move"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:642
-msgid "Cooling moves are gradually accelerating towards this speed. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:650
-msgid "Filament load time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:651
-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 ""
-
-#: src/libslic3r/PrintConfig.cpp:659
-msgid "Ramming parameters"
-msgstr "Rammparameter"
-
-#: src/libslic3r/PrintConfig.cpp:660
-msgid ""
-"This string is edited by RammingDialog and contains ramming specific "
-"parameters "
-msgstr ""
-"Diese Zeichenfolge wird vom RammDialog angepasst und enthält für das Rammen "
-"spezifische Parameter "
-
-#: src/libslic3r/PrintConfig.cpp:667
-msgid "Filament unload time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:668
-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 ""
-
-#: src/libslic3r/PrintConfig.cpp:677
-msgid ""
-"Enter your filament diameter here. Good precision is required, so use a "
-"caliper and do multiple measurements along the filament, then compute the "
-"average."
-msgstr ""
-"Geben Sie hier Ihren Filamentdurchmesser ein. Eine hohe Genauigkeit ist "
-"erforderlich, also verwenden Sie einen Messschieber und führen Sie mehrere "
-"Messungen entlang des Filaments durch, um dann den Mittelwert zu berechnen."
-
-#: src/libslic3r/PrintConfig.cpp:685
-msgid "Density"
-msgstr "Dichte"
-
-#: src/libslic3r/PrintConfig.cpp:686
-msgid ""
-"Enter your filament density here. This is only for statistical information. "
-"A decent way is to weigh a known length of filament and compute the ratio of "
-"the length to volume. Better is to calculate the volume directly through "
-"displacement."
-msgstr ""
-"Geben Sie hier Ihre Filamentdichte ein. Dies dient ausschließlich "
-"statistischen Zwecken. Ein vernünftiger Weg ist es, eine bekannte "
-"Filamentlänge zu wiegen und das Verhältnis von Länge zu Volumen zu "
-"berechnen. Besser ist es, das Volumen direkt durch Verdrängung zu berechnen."
-
-#: src/libslic3r/PrintConfig.cpp:689
-msgid "g/cm³"
-msgstr "g/cm³"
-
-#: src/libslic3r/PrintConfig.cpp:695
-msgid "Filament type"
-msgstr "Filament Typ"
-
-#: src/libslic3r/PrintConfig.cpp:696
-msgid "The filament material type for use in custom G-codes."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:712
-msgid "Soluble material"
-msgstr "Lösliches Material"
-
-#: src/libslic3r/PrintConfig.cpp:713
-msgid "Soluble material is most likely used for a soluble support."
-msgstr "Lösliches Material wird meistens für lösliche Stützen verwendet."
-
-#: src/libslic3r/PrintConfig.cpp:719
-msgid ""
-"Enter your filament cost per kg here. This is only for statistical "
-"information."
-msgstr ""
-"Geben Sie hier Ihre Filamentkosten pro kg ein. Dies dient ausschließlich "
-"statistischen Zwecken."
-
-#: src/libslic3r/PrintConfig.cpp:720
-msgid "money/kg"
-msgstr "Kosten/kg"
-
-#: src/libslic3r/PrintConfig.cpp:729
-msgid "Fill angle"
-msgstr "Füllwinkel"
-
-#: src/libslic3r/PrintConfig.cpp:731
-msgid ""
-"Default base angle for infill orientation. Cross-hatching will be applied to "
-"this. Bridges will be infilled using the best direction Slic3r can detect, "
-"so this setting does not affect them."
-msgstr ""
-"Standard-Grundwinkel für die Ausrichtung der Füllung. Hierfür werden "
-"Kreuzschraffuren verwendet. Brücken werden mit der besten Richtung gefüllt, "
-"die Slic3r erkennen kann, so dass diese Einstellung sie nicht beeinflusst."
-
-#: src/libslic3r/PrintConfig.cpp:744
-msgid "Fill density"
-msgstr "Fülldichte"
-
-#: src/libslic3r/PrintConfig.cpp:746
-msgid "Density of internal infill, expressed in the range 0% - 100%."
-msgstr "Infilldichte. Als Prozentwert von 0% - 100% ausgedrückt."
-
-#: src/libslic3r/PrintConfig.cpp:782
-msgid "Fill pattern"
-msgstr "Füllmuster"
-
-#: src/libslic3r/PrintConfig.cpp:784
-msgid "Fill pattern for general low-density infill."
-msgstr "Füllmuster für allgemeines Infill mit niedriger Dichte."
-
-#: src/libslic3r/PrintConfig.cpp:801
-msgid "Grid"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:802
-msgid "Triangles"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:803
-msgid "Stars"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:804
-msgid "Cubic"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:805
-msgid "Line"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:807 src/libslic3r/PrintConfig.cpp:2023
-msgid "Honeycomb"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:808
-msgid "3D Honeycomb"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:809
-msgid "Gyroid"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:826
-#: src/libslic3r/PrintConfig.cpp:835 src/libslic3r/PrintConfig.cpp:871
-msgid "First layer"
-msgstr "Erste Schicht"
-
-#: src/libslic3r/PrintConfig.cpp:817
-msgid ""
-"This is the acceleration your printer will use for first layer. Set zero to "
-"disable acceleration control for first layer."
-msgstr ""
-"Die Beschleunigung, die Ihr Drucker für die erste Schicht verwendet. Setzen "
-"Sie dies auf Null, um die Beschleunigungskontrolle bei der ersten Schicht zu "
-"deaktivieren."
-
-#: src/libslic3r/PrintConfig.cpp:827
-msgid ""
-"Heated build plate temperature for the first layer. Set this to zero to "
-"disable bed temperature control commands in the output."
-msgstr ""
-"Druckbetttemperatur für die erste Schicht. Setzen Sie diesen Wert auf Null, "
-"um die Befehle zur Steuerung der Betttemperatur im Ausgang zu deaktivieren."
-
-#: src/libslic3r/PrintConfig.cpp:837
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for first "
-"layer. You can use this to force fatter extrudates for better adhesion. If "
-"expressed as percentage (for example 120%) it will be computed over first "
-"layer height. If set to zero, it will use the default extrusion width."
-msgstr ""
-"Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite "
-"für die erste Druckschicht anzugeben. Sie können damit eine dickere "
-"Extrusion für bessere Haftung erzwingen. Falls auf Null belassen, wird die "
-"Standard-Extrusionsbreite verwendet. Falls als Prozentwert (z.B. 120%) "
-"angegeben, wird dieser ausgehend von der Schichthöhe berechnet."
-
-#: src/libslic3r/PrintConfig.cpp:848
-msgid "First layer height"
-msgstr "Höhe der ersten Schicht"
-
-#: src/libslic3r/PrintConfig.cpp:850
-msgid ""
-"When printing with very low layer heights, you might still want to print a "
-"thicker bottom layer to improve adhesion and tolerance for non perfect build "
-"plates. This can be expressed as an absolute value or as a percentage (for "
-"example: 150%) over the default layer height."
-msgstr ""
-"Wenn mit sehr kleinen Schichthöhen gedruckt wird, möchten Sie vielleicht "
-"trotzdem eine dickere Bodenschicht drucken, um die Haftung sowie die "
-"Toleranz bei nicht perfekt ebenen Druckplatten zu verbessern. Dieser Wert "
-"kann als Absolutwert oder als Prozentwert (z.B. 150%) der "
-"Standardschichthöhe angegeben werden."
-
-#: src/libslic3r/PrintConfig.cpp:854 src/libslic3r/PrintConfig.cpp:1003
-#: src/libslic3r/PrintConfig.cpp:1884
-msgid "mm or %"
-msgstr "mm oder %"
-
-#: src/libslic3r/PrintConfig.cpp:860
-msgid "First layer speed"
-msgstr "Druckgeschwindigkeit der ersten Schicht"
-
-#: src/libslic3r/PrintConfig.cpp:861
-msgid ""
-"If expressed as absolute value in mm/s, this speed will be applied to all "
-"the print moves of the first layer, regardless of their type. If expressed "
-"as a percentage (for example: 40%) it will scale the default speeds."
-msgstr ""
-"Wird diese Geschwindigkeit als Absolutwert in mm/s angegeben, so wird sie "
-"auf alle Druckbewegungen der ersten Lage angewendet, unabhängig von ihrem "
-"Typ. In Prozent ausgedrückt (z.B. 40%) skaliert es die voreingestellten "
-"Geschwindigkeiten."
-
-#: src/libslic3r/PrintConfig.cpp:872
-msgid ""
-"Extruder temperature for first layer. If you want to control temperature "
-"manually during print, set this to zero to disable temperature control "
-"commands in the output file."
-msgstr ""
-"Extrudertemperatur für die erste Schicht. Wenn Sie die Temperatur während "
-"des Druckvorgangs manuell regeln möchten, setzen Sie diesen Wert auf Null, "
-"um die Temperatursteuerbefehle in der Ausgabedatei zu deaktivieren."
-
-#: src/libslic3r/PrintConfig.cpp:882
-msgid ""
-"Speed for filling small gaps using short zigzag moves. Keep this reasonably "
-"low to avoid too much shaking and resonance issues. Set zero to disable gaps "
-"filling."
-msgstr ""
-"Geschwindigkeit, mit der kleine Lücken mit kurzen Zickzackbewegungen gefüllt "
-"werden. Beschränken Sie diese auf einen mässigen Wert, um übermässiges "
-"Rütteln und Resonanzprobleme zu vermeiden. Auf Null gesetzt, wird das Füllen "
-"kleiner Lücken deaktiviert."
-
-#: src/libslic3r/PrintConfig.cpp:890
-msgid "Verbose G-code"
-msgstr "Ausführlicher G-Code"
-
-#: src/libslic3r/PrintConfig.cpp:891
-msgid ""
-"Enable this to get a commented G-code file, with each line explained by a "
-"descriptive text. If you print from SD card, the additional weight of the "
-"file could make your firmware slow down."
-msgstr ""
-"Aktivieren Sie diese Option, um eine kommentierte G-Code-Datei zu erhalten, "
-"wobei jede Zeile durch einen beschreibenden Text erklärt wird. Wenn Sie von "
-"einer SD-Karte drucken, kann die zusätzliche Dateigröße dazu führen, dass "
-"Ihre Firmware langsamer wird."
-
-#: src/libslic3r/PrintConfig.cpp:899
-msgid "G-code flavor"
-msgstr "G-Code Typ"
-
-#: src/libslic3r/PrintConfig.cpp:900
-msgid ""
-"Some G/M-code commands, including temperature control and others, are not "
-"universal. Set this option to your printer's firmware to get a compatible "
-"output. The \"No extrusion\" flavor prevents Slic3r from exporting any "
-"extrusion value at all."
-msgstr ""
-"Einige G/M-Code-Befehle, einschließlich Temperatursteuerung und andere, sind "
-"nicht universell. Stellen Sie diese Option auf die Firmware Ihres Druckers "
-"ein, um eine kompatible Ausgabe zu erhalten. Die Eigenschaft \"Keine "
-"Extrusion\" verhindert, dass Slic3r überhaupt einen Extrusionswert "
-"exportiert."
-
-#: src/libslic3r/PrintConfig.cpp:924
-msgid "No extrusion"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:929
-msgid "High extruder current on filament swap"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:930
-msgid ""
-"It may be beneficial to increase the extruder motor current during the "
-"filament exchange sequence to allow for rapid ramming feed rates and to "
-"overcome resistance when loading a filament with an ugly shaped tip."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:939
-msgid ""
-"This is the acceleration your printer will use for infill. Set zero to "
-"disable acceleration control for infill."
-msgstr ""
-"Diese Stellung bestimmt die Beschleunigung des Druckers für Infill. Setzen "
-"Sie dies auf Null, um die Beschleunigungskontrolle für Infill zu "
-"deaktivieren."
-
-#: src/libslic3r/PrintConfig.cpp:948
-msgid "Combine infill every"
-msgstr "Infill kombinieren alle"
-
-#: src/libslic3r/PrintConfig.cpp:950
-msgid ""
-"This feature allows to combine infill and speed up your print by extruding "
-"thicker infill layers while preserving thin perimeters, thus accuracy."
-msgstr ""
-"Diese Einstellung erlaubt es, Infill zu kombinieren und die Druckdauer zu "
-"verringern, indem dickere Infill-Schichten gedruckt werden, während "
-"gleichzeitig dünne Aussenschichten und damit die Genauigkeit erhalten "
-"bleiben."
-
-#: src/libslic3r/PrintConfig.cpp:954
-msgid "Combine infill every n layers"
-msgstr "Kombiniere das Infill all n Schichten"
-
-#: src/libslic3r/PrintConfig.cpp:960
-msgid "Infill extruder"
-msgstr "Infill Extruder"
-
-#: src/libslic3r/PrintConfig.cpp:962
-msgid "The extruder to use when printing infill."
-msgstr "Extruder der beim Infill benutzt wird."
-
-#: src/libslic3r/PrintConfig.cpp:971
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill. If "
-"left zero, default extrusion width will be used if set, otherwise 1.125 x "
-"nozzle diameter will be used. You may want to use fatter extrudates to speed "
-"up the infill and make your parts stronger. If expressed as percentage (for "
-"example 90%) it will be computed over layer height."
-msgstr ""
-"Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite "
-"für den Infill anzugeben. Falls auf Null belassen, wird die Standard-"
-"Extrusionsbreite verwendet (falls angeben), ansonsten wird der Durchmesser "
-"der Druckdüse x 1,125 verwendet. Dickere Extrusionsbreiten sind vorteilhaft, "
-"um den Infill zu beschleunigen und um die Teile stärker zu machen. Falls als "
-"Prozentwert (z.B. 90%) angegeben, wird dieser ausgehend von der Schichthöhe "
-"berechnet."
-
-#: src/libslic3r/PrintConfig.cpp:981
-msgid "Infill before perimeters"
-msgstr "Infill vor Kontur"
-
-#: src/libslic3r/PrintConfig.cpp:982
-msgid ""
-"This option will switch the print order of perimeters and infill, making the "
-"latter first."
-msgstr ""
-"Diese Einstellungen kehrt die Druckreihenfolge von Aussenschichten und "
-"Infill um, sodass der Infill zuerst gedruckt wird."
-
-#: src/libslic3r/PrintConfig.cpp:988
-msgid "Only infill where needed"
-msgstr "Infill nur wo es notwendig ist drucken"
-
-#: src/libslic3r/PrintConfig.cpp:990
-msgid ""
-"This option will limit infill to the areas actually needed for supporting "
-"ceilings (it will act as internal support material). If enabled, slows down "
-"the G-code generation due to the multiple checks involved."
-msgstr ""
-"Diese Einstellung beschränkt den Infill auf die Bereiche, die tatsächlich "
-"für das Stützen von Decken benötigt werden (der Infill dient hier als "
-"internes Stützmaterial). Falls aktiviert, kann dies die Erstellung des G-"
-"Codes wegen zusätzlichen Kontrollschritten verlangsamen."
-
-#: src/libslic3r/PrintConfig.cpp:998
-msgid "Infill/perimeters overlap"
-msgstr "Infill/Kontur Überlappung"
-
-#: src/libslic3r/PrintConfig.cpp:1000
-msgid ""
-"This setting applies an additional overlap between infill and perimeters for "
-"better bonding. Theoretically this shouldn't be needed, but backlash might "
-"cause gaps. If expressed as percentage (example: 15%) it is calculated over "
-"perimeter extrusion width."
-msgstr ""
-"Diese Einstellung fügt eine zusätzliche Überlappung zwischen Aussenschichten "
-"und Infill ein, um die Haftung zu verbessern. Theoretisch sollte dies nicht "
-"notwendig sein, doch vorhandenes Getriebespiel könnte Lücken erzeugen. Als "
-"Prozentwert eingegeben (z.B. 15%) wird sie ausgehend von der "
-"Extrusionsbreite für die Aussenschicht ausgerechnet."
-
-#: src/libslic3r/PrintConfig.cpp:1012
-msgid "Speed for printing the internal fill. Set to zero for auto."
-msgstr "Druckgeschwindigkeit für den Infill. Für Automatik auf Null setzen."
-
-#: src/libslic3r/PrintConfig.cpp:1020
-msgid "Inherits profile"
-msgstr "Übernimmt Profil"
-
-#: src/libslic3r/PrintConfig.cpp:1021
-msgid "Name of the profile, from which this profile inherits."
-msgstr "Name des Profils, von dem dieses Profil abgeleitet wurde."
-
-#: src/libslic3r/PrintConfig.cpp:1032
-msgid "Interface shells"
-msgstr "Schnittstellenshells"
-
-#: src/libslic3r/PrintConfig.cpp:1033
-msgid ""
-"Force the generation of solid shells between adjacent materials/volumes. "
-"Useful for multi-extruder prints with translucent materials or manual "
-"soluble support material."
-msgstr ""
-"Erzwingt die Erzeugung von festen Schalen zwischen benachbarten Materialien/"
-"Volumina. Geeignet für Multiextruderdrucke mit transluzenten Materialien "
-"oder manuell löslichen Trägermaterialien."
-
-#: src/libslic3r/PrintConfig.cpp:1043
-msgid ""
-"This custom code is inserted at every layer change, right after the Z move "
-"and before the extruder moves to the first layer point. Note that you can "
-"use placeholder variables for all Slic3r settings as well as [layer_num] and "
-"[layer_z]."
-msgstr ""
-"Dieser benutzerdefinierte Code wird bei jedem Schichtwechsel eingefügt, "
-"direkt nach der Z-Bewegung und bevor der Extruder zum ersten Lagenpunkt "
-"fährt. Beachten Sie, dass Sie Platzhaltervariablen für alle Slic3r-"
-"Einstellungen sowie [layer_num] und [layer_z] verwenden können."
-
-#: src/libslic3r/PrintConfig.cpp:1054
-msgid "Supports remaining times"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1055
-msgid ""
-"Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute "
-"intervals into the G-code to let the firmware show accurate remaining time. "
-"As of now only the Prusa i3 MK3 firmware recognizes M73. Also the i3 MK3 "
-"firmware supports M73 Qxx Sxx for the silent mode."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1063
-msgid "Supports silent mode"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1064
-msgid "Set silent mode for the G-code flavor"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1087
-msgid "Maximum feedrate %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1089
-msgid "Maximum feedrate of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1097
-msgid "Maximum acceleration %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1099
-msgid "Maximum acceleration of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1107
-msgid "Maximum jerk %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1109
-msgid "Maximum jerk of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122
-msgid "Minimum feedrate when extruding"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133
-msgid "Minimum travel feedrate"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144
-msgid "Maximum acceleration when extruding"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1153 src/libslic3r/PrintConfig.cpp:1155
-msgid "Maximum acceleration when retracting"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1173
-msgid "Max"
-msgstr "Max"
-
-#: src/libslic3r/PrintConfig.cpp:1164
-msgid "This setting represents the maximum speed of your fan."
-msgstr "Diese Einstellung bestimmt die maximale Geschwindigkeit Ihres Lüfters."
-
-#: src/libslic3r/PrintConfig.cpp:1174
-#, no-c-format
-msgid ""
-"This is the highest printable layer height for this extruder, used to cap "
-"the variable layer height and support layer height. Maximum recommended "
-"layer height is 75% of the extrusion width to achieve reasonable inter-layer "
-"adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter."
-msgstr ""
-"Dies ist die höchste druckbare Schichthöhe für diesen Extruder, mit der die "
-"variable Schichthöhe und Stützschichthöhe abgedeckt wird. Die maximale "
-"empfohlene Schichthöhe beträgt 75% der Extrusionsbreite, um eine angemessene "
-"Zwischenlagenhaftung zu erreichen. Bei Einstellung auf 0 ist die Lagenhöhe "
-"auf 75% des Düsendurchmessers begrenzt."
-
-#: src/libslic3r/PrintConfig.cpp:1185
-msgid "Max print speed"
-msgstr "Maximale Druckgeschwindigkeit"
-
-#: src/libslic3r/PrintConfig.cpp:1186
-msgid ""
-"When setting other speed settings to 0 Slic3r will autocalculate the optimal "
-"speed in order to keep constant extruder pressure. This experimental setting "
-"is used to set the highest print speed you want to allow."
-msgstr ""
-"Wenn andere Geschwindigkeitseinstellungen auf Null gesetzt wurden, wird "
-"Slic3r die optimale Geschwindigkeit automatisch berechnen, um den "
-"Extruderdruck konstant zu halten. Diese experimentelle Einstellung erlaubt "
-"Ihnen, die höchste zulässige Druckgeschwindigkeit anzugeben."
-
-#: src/libslic3r/PrintConfig.cpp:1197
-msgid ""
-"This experimental setting is used to set the maximum volumetric speed your "
-"extruder supports."
-msgstr ""
-"Diese experimentelle Einstellung gibt die maximale volumetrische "
-"Geschwindigkeit an, die von Ihrem Extruder unterstützt wird."
-
-#: src/libslic3r/PrintConfig.cpp:1206
-msgid "Max volumetric slope positive"
-msgstr "Max. volumetrische Steigung positiv"
-
-#: src/libslic3r/PrintConfig.cpp:1207 src/libslic3r/PrintConfig.cpp:1219
-msgid ""
-"This experimental setting is used to limit the speed of change in extrusion "
-"rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate "
-"of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/"
-"s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds."
-msgstr ""
-"Diese experimentelle Einstellung beschränkt die Änderungsgeschwindigkeit der "
-"Extrusionsmenge. Ein Wert von 1.8 mm³/s² gewährleistet, dass eine Änderung "
-"der Extrusionsmenge von 1.8 mm³/s (0.45mm Extrusionsbreite, 0.2mm "
-"Extrusionshöhe, Vorschub 20 mm/s) zu 5.4 mm³/s (Vorschub 60 mm/s) mindestens "
-"2 Sekunden dauern wird."
-
-#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1223
-msgid "mm³/s²"
-msgstr "mm³/s²"
-
-#: src/libslic3r/PrintConfig.cpp:1218
-msgid "Max volumetric slope negative"
-msgstr "Max. volumetrische Steigung negativ"
-
-#: src/libslic3r/PrintConfig.cpp:1230 src/libslic3r/PrintConfig.cpp:1240
-msgid "Min"
-msgstr "Min"
-
-#: src/libslic3r/PrintConfig.cpp:1231
-msgid "This setting represents the minimum PWM your fan needs to work."
-msgstr ""
-"Diese Einstellung gibt den minimalen PWM-Wert an, den Ihr Lüfter für den "
-"Betrieb benötigt."
-
-#: src/libslic3r/PrintConfig.cpp:1241
-msgid ""
-"This is the lowest printable layer height for this extruder and limits the "
-"resolution for variable layer height. Typical values are between 0.05 mm and "
-"0.1 mm."
-msgstr ""
-"Dies ist die niedrigste druckbare Schichthöhe für diesen Extruder und "
-"begrenzt die Auflösung bei variabler Schichthöhe. Typische Werte liegen "
-"zwischen 0,05 mm und 0,1 mm."
-
-#: src/libslic3r/PrintConfig.cpp:1250
-msgid "Min print speed"
-msgstr "Minimale Druckgeschwindigkeit"
-
-#: src/libslic3r/PrintConfig.cpp:1251
-msgid "Slic3r will not scale speed down below this speed."
-msgstr ""
-"Slic3r wird die Geschwindigkeit nicht unterhalb dieser Geschwindigkeit "
-"skalieren."
-
-#: src/libslic3r/PrintConfig.cpp:1259
-msgid "Minimal filament extrusion length"
-msgstr "Minimale Filament Extrusionlänge"
-
-#: src/libslic3r/PrintConfig.cpp:1260
-msgid ""
-"Generate no less than the number of skirt loops required to consume the "
-"specified amount of filament on the bottom layer. For multi-extruder "
-"machines, this minimum applies to each extruder."
-msgstr ""
-"Erzeugt nicht weniger als die Anzahl der Schürzenschleifen, die benötigt "
-"wird, um die angegebene Menge an Filament auf der unteren Schicht zu "
-"verbrauchen. Bei Multiextruder-Maschinen gilt dieses Minimum für jeden "
-"Extruder."
-
-#: src/libslic3r/PrintConfig.cpp:1270
-msgid "Configuration notes"
-msgstr "Konfigurationsnotizen"
-
-#: src/libslic3r/PrintConfig.cpp:1271
-msgid ""
-"You can put here your personal notes. This text will be added to the G-code "
-"header comments."
-msgstr ""
-"Sie können hier Ihre persönlichen Notizen eingeben. Der Text wird dem "
-"Header vom G-Code hinzugefügt."
-
-#: src/libslic3r/PrintConfig.cpp:1281
-msgid "Nozzle diameter"
-msgstr "Düsendurchmesser"
-
-#: src/libslic3r/PrintConfig.cpp:1282
-msgid ""
-"This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)"
-msgstr "Durchmesser der Extruderdüse (z.B.: 0.5, 0.35 usw.)"
-
-#: src/libslic3r/PrintConfig.cpp:1288
-msgid "Host Type"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1289
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field must contain "
-"the kind of the host."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1301
-msgid "API Key / Password"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1302
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the API Key or the password required for authentication."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1317
-msgid "Hostname, IP or URL"
-msgstr "Hostname, IP oder URL"
-
-#: src/libslic3r/PrintConfig.cpp:1318
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the hostname, IP address or URL of the printer host instance."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1325
-msgid "Only retract when crossing perimeters"
-msgstr "Nur bei Umfangsüberquerungen einziehen"
-
-#: src/libslic3r/PrintConfig.cpp:1326
-msgid ""
-"Disables retraction when the travel path does not exceed the upper layer's "
-"perimeters (and thus any ooze will be probably invisible)."
-msgstr ""
-"Deaktiviert den Einzug, wenn der Verfahrweg die Perimeter der oberen Schicht "
-"nicht überschreitet (und somit ist der Auslauf wahrscheinlich unsichtbar)."
-
-#: src/libslic3r/PrintConfig.cpp:1334
-msgid ""
-"This option will drop the temperature of the inactive extruders to prevent "
-"oozing. It will enable a tall skirt automatically and move extruders outside "
-"such skirt when changing temperatures."
-msgstr ""
-"Mit dieser Option wird die Temperatur der inaktiven Extruder gesenkt, um ein "
-"Materialnachsickern zu verhindern. Es aktiviert automatisch eine hohe "
-"Schürze und bewegt die Extruder bei Temperaturänderungen ausserhalb dieser "
-"Schürze."
-
-#: src/libslic3r/PrintConfig.cpp:1342
-msgid "Output filename format"
-msgstr "Ausgabe Dateinamen Format"
-
-#: src/libslic3r/PrintConfig.cpp:1343
-msgid ""
-"You can use all configuration options as variables inside this template. For "
-"example: [layer_height], [fill_density] etc. You can also use [timestamp], "
-"[year], [month], [day], [hour], [minute], [second], [version], "
-"[input_filename], [input_filename_base]."
-msgstr ""
-"Sie können alle Konfigurationsoptionen als Variablen in dieser Vorlage "
-"benutzen. Zum Beispiel: [layer_height], [fill_density] usw. Sie können "
-"auch [timestamp], [year], [month], [day], [hour], [minute], [second], "
-"[version], [input_filename], und [input_filename_base] benutzen."
-
-#: src/libslic3r/PrintConfig.cpp:1353
-msgid "Detect bridging perimeters"
-msgstr "Umfangbrücken entdecken"
-
-#: src/libslic3r/PrintConfig.cpp:1355
-msgid ""
-"Experimental option to adjust flow for overhangs (bridge flow will be used), "
-"to apply bridge speed to them and enable fan."
-msgstr ""
-"Experimentelle Option zur Anpassung des Durchflusses für Überhänge "
-"(Brückenvolumenfluss wird verwendet), zur Anwendung der "
-"Brückengeschwindigkeit und zur Aktivierung des Lüfters."
-
-#: src/libslic3r/PrintConfig.cpp:1362
-msgid "Filament parking position"
-msgstr "Filament Parkposition"
-
-#: src/libslic3r/PrintConfig.cpp:1363
-msgid ""
-"Distance of the extruder tip from the position where the filament is parked "
-"when unloaded. This should match the value in printer firmware. "
-msgstr ""
-"Abstand der Extruderspitze von der Position, an der das Filament beim "
-"Entladen abgestellt wird. Dies sollte mit dem Wert in der Drucker-Firmware "
-"übereinstimmen. "
-
-#: src/libslic3r/PrintConfig.cpp:1372
-msgid "Extra loading distance"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1373
-msgid ""
-"When set to zero, the distance the filament is moved from parking position "
-"during load is exactly the same as it was moved back during unload. When "
-"positive, it is loaded further, if negative, the loading move is shorter "
-"than unloading. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1382 src/libslic3r/PrintConfig.cpp:1402
-#: src/libslic3r/PrintConfig.cpp:1415 src/libslic3r/PrintConfig.cpp:1425
-msgid "Perimeters"
-msgstr "Konturen"
-
-#: src/libslic3r/PrintConfig.cpp:1383
-msgid ""
-"This is the acceleration your printer will use for perimeters. A high value "
-"like 9000 usually gives good results if your hardware is up to the job. Set "
-"zero to disable acceleration control for perimeters."
-msgstr ""
-"Dies ist die Beschleunigung, die der Drucker für Aussenschichten benutzen "
-"wird. Ein hoher Wert wie 9000 ergibt üblicherweise gute Resultate falls Ihre "
-"Hardware mithalten kann. Setzen Sie dies auf Null, um die "
-"Beschleunigungskontrolle bei Aussenschichten zu deaktivieren."
-
-#: src/libslic3r/PrintConfig.cpp:1392
-msgid "Perimeter extruder"
-msgstr "Umfang Extruder"
-
-#: src/libslic3r/PrintConfig.cpp:1394
-msgid ""
-"The extruder to use when printing perimeters and brim. First extruder is 1."
-msgstr ""
-"Extruder der beim Umfang und Rand Drucken benutzt werden soll. Der erste "
-"Extruder ist 1."
-
-#: src/libslic3r/PrintConfig.cpp:1404
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for perimeters. "
-"You may want to use thinner extrudates to get more accurate surfaces. If "
-"left zero, default extrusion width will be used if set, otherwise 1.125 x "
-"nozzle diameter will be used. If expressed as percentage (for example 200%) "
-"it will be computed over layer height."
-msgstr ""
-"Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite "
-"für Aussenschichten anzugeben. Dünnere Extrusionsbreiten sind vorteilhaft, "
-"um genauere Oberflächen zu erhalten. Falls auf Null belassen, wird die "
-"Standard-Extrusionsbreite verwendet (falls angeben), ansonsten wird der "
-"Durchmesser der Druckdüse x 1,125 verwendet. Falls als Prozentwert (z.B. "
-"200%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet."
-
-#: src/libslic3r/PrintConfig.cpp:1417
-msgid ""
-"Speed for perimeters (contours, aka vertical shells). Set to zero for auto."
-msgstr ""
-"Geschwindigkeit für Aussenschichten (Konturen, bzw. vertikale Hüllen). Für "
-"Automatik auf Null setzen."
-
-#: src/libslic3r/PrintConfig.cpp:1427
-msgid ""
-"This option sets the number of perimeters to generate for each layer. Note "
-"that Slic3r may increase this number automatically when it detects sloping "
-"surfaces which benefit from a higher number of perimeters if the Extra "
-"Perimeters option is enabled."
-msgstr ""
-"Diese Stellung bestimmt die Anzahl der Aussenschichten, die für jede Schicht "
-"erzeugt werden. Slic3r kann diese Zahl automatisch vergrössern, wenn es "
-"schräge Oberflächen erkennt, die sich mit einer höheren Zahl von "
-"Aussenschichten besser drucken lassen, wenn die \"Zusätzliche "
-"Aussenschichten falls notwendig\" Option aktiviert ist."
-
-#: src/libslic3r/PrintConfig.cpp:1431
-msgid "(minimum)"
-msgstr "(Minimum)"
-
-#: src/libslic3r/PrintConfig.cpp:1439
-msgid ""
-"If you want to process the output G-code through custom scripts, just list "
-"their absolute paths here. Separate multiple scripts with a semicolon. "
-"Scripts will be passed the absolute path to the G-code file as the first "
-"argument, and they can access the Slic3r config settings by reading "
-"environment variables."
-msgstr ""
-"Wenn Sie den Ausgabe-G-Code durch eigene Skripte verarbeiten wollen, geben "
-"Sie hier einfach die absoluten Pfade an. Trennen Sie mehrere Skripte durch "
-"ein Semikolon. Skripten werden als erstes Argument die absoluten Pfad zur G-"
-"Code-Datei übergeben, und sie können auf die Slic3r-"
-"Konfigurationseinstellungen zugreifen, indem sie Umgebungsvariablen lesen."
-
-#: src/libslic3r/PrintConfig.cpp:1452
-msgid "Printer type"
-msgstr "Druckertyp"
-
-#: src/libslic3r/PrintConfig.cpp:1453
-msgid "Type of the printer."
-msgstr "Druckertyp."
-
-#: src/libslic3r/PrintConfig.cpp:1457
-msgid "Printer notes"
-msgstr "Drucker Anmerkungen"
-
-#: src/libslic3r/PrintConfig.cpp:1458
-msgid "You can put your notes regarding the printer here."
-msgstr "Sie können Ihre Bemerkungen zum Drucker hier eingeben."
-
-#: src/libslic3r/PrintConfig.cpp:1467
-msgid "Printer vendor"
-msgstr "Druckerhersteller"
-
-#: src/libslic3r/PrintConfig.cpp:1468
-msgid "Name of the printer vendor."
-msgstr "Name des Druckerherstellers."
-
-#: src/libslic3r/PrintConfig.cpp:1472
-msgid "Printer variant"
-msgstr "Druckervariante"
-
-#: src/libslic3r/PrintConfig.cpp:1473
-msgid ""
-"Name of the printer variant. For example, the printer variants may be "
-"differentiated by a nozzle diameter."
-msgstr ""
-"Name der Druckervariante. Beispielsweise können die Druckervarianten durch "
-"einen Düsendurchmesser unterschieden werden."
-
-#: src/libslic3r/PrintConfig.cpp:1483
-msgid "Raft layers"
-msgstr "Raft Schichten"
-
-#: src/libslic3r/PrintConfig.cpp:1485
-msgid ""
-"The object will be raised by this number of layers, and support material "
-"will be generated under it."
-msgstr ""
-"Das Objekt wird um diese Anzahl von Schichten angehoben, und darunter wird "
-"Trägermaterial erzeugt."
-
-#: src/libslic3r/PrintConfig.cpp:1494
-msgid "Resolution"
-msgstr "Auflösung"
-
-#: src/libslic3r/PrintConfig.cpp:1495
-msgid ""
-"Minimum detail resolution, used to simplify the input file for speeding up "
-"the slicing job and reducing memory usage. High-resolution models often "
-"carry more detail than printers can render. Set to zero to disable any "
-"simplification and use full resolution from input."
-msgstr ""
-"Minimale Detailauflösung, die verwendet wird, um die Eingabedatei zu "
-"vereinfachen, um den Slicingjob zu beschleunigen und den Speicherverbrauch "
-"zu reduzieren. Hochauflösende Modelle weisen oft mehr Details auf, als der "
-"Drucker wiedergeben kann. Setzen Sie den Wert auf Null, um die Vereinfachung "
-"zu deaktivieren und die volle Auflösung des Eingangsdatei zu verwenden."
-
-#: src/libslic3r/PrintConfig.cpp:1506
-msgid "Minimum travel after retraction"
-msgstr "Minimalbewegung nach Einziehen"
-
-#: src/libslic3r/PrintConfig.cpp:1507
-msgid ""
-"Retraction is not triggered when travel moves are shorter than this length."
-msgstr ""
-"Der Einzug wird nicht ausgelöst, wenn die Fahrbewegungen kürzer als diese "
-"Länge sind."
-
-#: src/libslic3r/PrintConfig.cpp:1514
-msgid "Retract amount before wipe"
-msgstr "Einzugslänge vor einer Reinigung"
-
-#: src/libslic3r/PrintConfig.cpp:1515
-msgid ""
-"With bowden extruders, it may be wise to do some amount of quick retract "
-"before doing the wipe movement."
-msgstr ""
-"Bei Bowden-Extrudern kann es ratsam sein, vor der Reinigungsbewegung einen "
-"kurzen Einzug auszuführen."
-
-#: src/libslic3r/PrintConfig.cpp:1523
-msgid "Retract on layer change"
-msgstr "Bei Schichtwechsel Einziehen"
-
-#: src/libslic3r/PrintConfig.cpp:1524
-msgid "This flag enforces a retraction whenever a Z move is done."
-msgstr "Diese Stellung erzwingt einen Einzug bei jeder Z-Bewegung."
-
-#: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:1539
-msgid "Length"
-msgstr "Länge"
-
-#: src/libslic3r/PrintConfig.cpp:1531
-msgid "Retraction Length"
-msgstr "Einzugslänge"
-
-#: src/libslic3r/PrintConfig.cpp:1532
-msgid ""
-"When retraction is triggered, filament is pulled back by the specified "
-"amount (the length is measured on raw filament, before it enters the "
-"extruder)."
-msgstr ""
-"Wenn der Einzug ausgelöst wird, wird das Filament um diese Länge "
-"eingezogen. (Die Länge wird am unverarbeiteten Filament vor dem Extruder "
-"gemessen)."
-
-#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1544
-msgid "mm (zero to disable)"
-msgstr "mm (Null eingeben zum deaktivieren)"
-
-#: src/libslic3r/PrintConfig.cpp:1540
-msgid "Retraction Length (Toolchange)"
-msgstr "Einzugslänge (Werkzeugwechsel)"
-
-#: src/libslic3r/PrintConfig.cpp:1541
-msgid ""
-"When retraction is triggered before changing tool, filament is pulled back "
-"by the specified amount (the length is measured on raw filament, before it "
-"enters the extruder)."
-msgstr ""
-"Wenn der Einzug vor dem Werkzeugwechsel ausgelöst wird, wird das Filament um "
-"diese Länge eingezogen. (Die Länge wird am unverarbeiteten Filament vor dem "
-"Extruder gemessen)."
-
-#: src/libslic3r/PrintConfig.cpp:1550
-msgid "Lift Z"
-msgstr "Z Hebung"
-
-#: src/libslic3r/PrintConfig.cpp:1551
-msgid ""
-"If you set this to a positive value, Z is quickly raised every time a "
-"retraction is triggered. When using multiple extruders, only the setting for "
-"the first extruder will be considered."
-msgstr ""
-"Wenn Sie diesen Wert auf einen positiven Wert setzen, wird Z bei jedem "
-"Auslösen eines Einzugs schnell angehoben. Bei Verwendung mehrerer Extruder "
-"wird nur die Einstellung für den ersten Extruder berücksichtigt."
-
-#: src/libslic3r/PrintConfig.cpp:1559
-msgid "Above Z"
-msgstr "Über Z"
-
-#: src/libslic3r/PrintConfig.cpp:1560
-msgid "Only lift Z above"
-msgstr "Z nur Anheben über"
-
-#: src/libslic3r/PrintConfig.cpp:1561
-msgid ""
-"If you set this to a positive value, Z lift will only take place above the "
-"specified absolute Z. You can tune this setting for skipping lift on the "
-"first layers."
-msgstr ""
-"Wenn Sie diesen Wert auf einen positiven Wert setzen, erfolgt der Z-Hub nur "
-"oberhalb des angegebenen absoluten Z-Wertes. Sie können diese Einstellung "
-"für das Auslassen von Z-Hüben auf den ersten Ebenen einstellen."
-
-#: src/libslic3r/PrintConfig.cpp:1569
-msgid "Below Z"
-msgstr "Unter Z"
-
-#: src/libslic3r/PrintConfig.cpp:1570
-msgid "Only lift Z below"
-msgstr "Z anheben nur unter"
-
-#: src/libslic3r/PrintConfig.cpp:1571
-msgid ""
-"If you set this to a positive value, Z lift will only take place below the "
-"specified absolute Z. You can tune this setting for limiting lift to the "
-"first layers."
-msgstr ""
-"Wenn Sie diesen Wert auf einen positiven Wert setzen, erfolgt der Z-Hub nur "
-"unterhalb des angegebenen absoluten Z-Wertes. Sie können diese Einstellung "
-"so einstellen, dass der Z-Hub auf die ersten Lagen begrenzt wird."
-
-#: src/libslic3r/PrintConfig.cpp:1580 src/libslic3r/PrintConfig.cpp:1589
-msgid "Extra length on restart"
-msgstr "Extra Länge bei Neustart"
-
-#: src/libslic3r/PrintConfig.cpp:1581
-msgid ""
-"When the retraction is compensated after the travel move, the extruder will "
-"push this additional amount of filament. This setting is rarely needed."
-msgstr ""
-"Wenn der Einzug nach der Zwischenbewegung kompensiert wurde, wird der "
-"Extruder diese zusätzliche Menge an Filament ausgeben. Diese Einstellung "
-"wird selten benötigt."
-
-#: src/libslic3r/PrintConfig.cpp:1590
-msgid ""
-"When the retraction is compensated after changing tool, the extruder will "
-"push this additional amount of filament."
-msgstr ""
-"Wenn der Einzug nach dem Werkzeugwechsel kompensiert wurde, wird der "
-"Extruder diese zusätzliche Menge an Filament ausgeben."
-
-#: src/libslic3r/PrintConfig.cpp:1598 src/libslic3r/PrintConfig.cpp:1599
-msgid "Retraction Speed"
-msgstr "Einzugsgeschwindigkeit"
-
-#: src/libslic3r/PrintConfig.cpp:1600
-msgid "The speed for retractions (it only applies to the extruder motor)."
-msgstr "Die Einzugsgeschwindigkeit (sie betrifft nur den Extruderantrieb)."
-
-#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1608
-msgid "Deretraction Speed"
-msgstr "Wiedereinzugsgeschwindigkeit"
-
-#: src/libslic3r/PrintConfig.cpp:1609
-msgid ""
-"The speed for loading of a filament into extruder after retraction (it only "
-"applies to the extruder motor). If left to zero, the retraction speed is "
-"used."
-msgstr ""
-"Die Geschwindigkeit, mit der ein Filament nach dem Einzug wieder in den "
-"Extruder vorgeschoben wird. Falls Null, wird die Einzugsgeschwindigkeit "
-"verwendet."
-
-#: src/libslic3r/PrintConfig.cpp:1617
-msgid "Seam position"
-msgstr "Nahtposition"
-
-#: src/libslic3r/PrintConfig.cpp:1619
-msgid "Position of perimeters starting points."
-msgstr "Position des Startpunktes des Umfangs."
-
-#: src/libslic3r/PrintConfig.cpp:1626
-msgid "Random"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1627
-msgid "Nearest"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1628
-msgid "Aligned"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1629
-msgid "Rear"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1636
-msgid "Direction"
-msgstr "Richtung"
-
-#: src/libslic3r/PrintConfig.cpp:1638
-msgid "Preferred direction of the seam"
-msgstr "Bevorzugte Richtung für die Naht"
-
-#: src/libslic3r/PrintConfig.cpp:1639
-msgid "Seam preferred direction"
-msgstr "Bevorzugte Richtung für Nähte"
-
-#: src/libslic3r/PrintConfig.cpp:1647
-msgid "Jitter"
-msgstr "Jitter"
-
-#: src/libslic3r/PrintConfig.cpp:1649
-msgid "Seam preferred direction jitter"
-msgstr "Bevorzugte Zitterrichtung für Nähte"
-
-#: src/libslic3r/PrintConfig.cpp:1650
-msgid "Preferred direction of the seam - jitter"
-msgstr "Bevorzugte Zitterrichtung für die Naht"
-
-#: src/libslic3r/PrintConfig.cpp:1661
-msgid "USB/serial port for printer connection."
-msgstr "USB-/serielle Schnittstelle für den Druckeranschluss."
-
-#: src/libslic3r/PrintConfig.cpp:1669
-msgid "Serial port speed"
-msgstr "Serielle Portgeschwindigkeit"
-
-#: src/libslic3r/PrintConfig.cpp:1670
-msgid "Speed (baud) of USB/serial port for printer connection."
-msgstr ""
-"Geschwindigkeit (baud) des USB/seriellen Ports für den Drucker Anschluß."
-
-#: src/libslic3r/PrintConfig.cpp:1679
-msgid "Distance from object"
-msgstr "Abstand vom Objekt"
-
-#: src/libslic3r/PrintConfig.cpp:1680
-msgid ""
-"Distance between skirt and object(s). Set this to zero to attach the skirt "
-"to the object(s) and get a brim for better adhesion."
-msgstr ""
-"Distanz zwischen Schürze und Objekt. Auf Null stellen um die Schürze an das "
-"Objekt zu verbinden und einen Rand für bessere Haftung zu generieren."
-
-#: src/libslic3r/PrintConfig.cpp:1688
-msgid "Skirt height"
-msgstr "Schürzenhöhe"
-
-#: src/libslic3r/PrintConfig.cpp:1689
-msgid ""
-"Height of skirt expressed in layers. Set this to a tall value to use skirt "
-"as a shield against drafts."
-msgstr ""
-"Höhe der Schürze in Schichten. Eine hohe Schürze kann gegen Zugluft "
-"schützen."
-
-#: src/libslic3r/PrintConfig.cpp:1697
-msgid "Loops (minimum)"
-msgstr "Schleifen (minimal)"
-
-#: src/libslic3r/PrintConfig.cpp:1698
-msgid "Skirt Loops"
-msgstr "Schleifen für die Schürze"
-
-#: src/libslic3r/PrintConfig.cpp:1699
-msgid ""
-"Number of loops for the skirt. If the Minimum Extrusion Length option is "
-"set, the number of loops might be greater than the one configured here. Set "
-"this to zero to disable skirt completely."
-msgstr ""
-"Anzahl der Schleifen für die Schürze. Wenn die Option Minimale "
-"Extrusionslänge gesetzt ist, kann die Anzahl der Schleifen größer sein als "
-"die hier konfigurierte. Setzen Sie diesen Wert auf Null, um die Schürze "
-"komplett zu deaktivieren."
-
-#: src/libslic3r/PrintConfig.cpp:1708
-msgid "Slow down if layer print time is below"
-msgstr "Langsamer drucken wenn die Schichtdruckzeit geringer ist als"
-
-#: src/libslic3r/PrintConfig.cpp:1709
-msgid ""
-"If layer print time is estimated below this number of seconds, print moves "
-"speed will be scaled down to extend duration to this value."
-msgstr ""
-"Wenn die Druckzeit der Ebene unter dieser Anzahl von Sekunden liegt, wird "
-"die Geschwindigkeit des Druckvorgangs verringert, um die Zeitdauer auf "
-"diesen Wert zu verlängern."
-
-#: src/libslic3r/PrintConfig.cpp:1720
-msgid "Small perimeters"
-msgstr "Dünne Aussenschichten"
-
-#: src/libslic3r/PrintConfig.cpp:1722
-msgid ""
-"This separate setting will affect the speed of perimeters having radius <= "
-"6.5mm (usually holes). If expressed as percentage (for example: 80%) it will "
-"be calculated on the perimeters speed setting above. Set to zero for auto."
-msgstr ""
-"Diese separate Einstellung wirkt sich auf die Geschwindigkeit von "
-"Aussenschichten mit einem Radius <= 6,5 mm (üblicherweise Bohrungen) aus. "
-"Als Prozentwert eingegeben (z.B. 80%), wird sie ausgehend von der obigen "
-"Geschwindigkeitseinstellung für Aussenschichten berechnet. Für eine "
-"automatische Berechnung setzen Sie dies auf Null."
-
-#: src/libslic3r/PrintConfig.cpp:1732
-msgid "Solid infill threshold area"
-msgstr "Massives Infill Flächen Schwellwert"
-
-#: src/libslic3r/PrintConfig.cpp:1734
-msgid ""
-"Force solid infill for regions having a smaller area than the specified "
-"threshold."
-msgstr ""
-"Feste Füllung für Bereiche, die eine kleinere Fläche als die angegebene "
-"Schwelle aufweisen."
-
-#: src/libslic3r/PrintConfig.cpp:1735
-msgid "mm²"
-msgstr "mm²"
-
-#: src/libslic3r/PrintConfig.cpp:1742
-msgid "Solid infill extruder"
-msgstr "Massives Infill Extruder"
-
-#: src/libslic3r/PrintConfig.cpp:1744
-msgid "The extruder to use when printing solid infill."
-msgstr "Der Extruder der beim Drucken von solidem Infill benutzt werden soll."
-
-#: src/libslic3r/PrintConfig.cpp:1751
-msgid "Solid infill every"
-msgstr "Massives Infill alle"
-
-#: src/libslic3r/PrintConfig.cpp:1753
-msgid ""
-"This feature allows to force a solid layer every given number of layers. "
-"Zero to disable. You can set this to any value (for example 9999); Slic3r "
-"will automatically choose the maximum possible number of layers to combine "
-"according to nozzle diameter and layer height."
-msgstr ""
-"Diese Einstellung erzwingt eine stabile Schicht nach einer vorgegebenen "
-"Anzahl von Schichten. Null deaktiviert diese Einstellung. Sie können jeden "
-"Wert eingeben (z.B. 9999); Slic3r wird automatisch die grösstmögliche Anzahl "
-"von Schichten wählen, die in Abhängigkeit von Düsendurchmesser und "
-"Schichthöhe kombiniert werden können."
-
-#: src/libslic3r/PrintConfig.cpp:1766
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill for "
-"solid surfaces. If left zero, default extrusion width will be used if set, "
-"otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
-"(for example 90%) it will be computed over layer height."
-msgstr ""
-"Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite "
-"für den Infill bei stabilen Flächen anzugeben. Falls auf Null belassen, wird "
-"die Standard-Extrusionsbreite verwendet (falls angeben), ansonsten wird der "
-"Durchmesser der Druckdüse x 1,125 verwendet. Falls als Prozentwert (z.B. "
-"90%) angegeben, wird dieser ausgehend von der Schichthöhe berechnet."
-
-#: src/libslic3r/PrintConfig.cpp:1777
-msgid ""
-"Speed for printing solid regions (top/bottom/internal horizontal shells). "
-"This can be expressed as a percentage (for example: 80%) over the default "
-"infill speed above. Set to zero for auto."
-msgstr ""
-"Druckgeschwindigkeit für stabile Bereiche (obere/untere/innenliegende "
-"waagrechte Hüllen). Sie kann als Prozentwert (z.B. 80%) der oben "
-"eingegebenen standardmässigen Infill-Geschwindigkeit angegeben werden. Für "
-"Automatik auf Null setzen."
-
-#: src/libslic3r/PrintConfig.cpp:1789
-msgid "Number of solid layers to generate on top and bottom surfaces."
-msgstr ""
-"Anzahl der zu erzeugenden festen Schichten auf der Ober- und Unterseite."
-
-#: src/libslic3r/PrintConfig.cpp:1796
-msgid "Spiral vase"
-msgstr "Spiralvasenmodus"
-
-#: src/libslic3r/PrintConfig.cpp:1797
-msgid ""
-"This feature will raise Z gradually while printing a single-walled object in "
-"order to remove any visible seam. This option requires a single perimeter, "
-"no infill, no top solid layers and no support material. You can still set "
-"any number of bottom solid layers as well as skirt/brim loops. It won't work "
-"when printing more than an object."
-msgstr ""
-"Dieses Verfahren erhöht die Z-Position allmählich, während eine einfache "
-"Hülle gedruckt wird, um jeglichen sichtbaren Saum zu vermeiden. Diese Option "
-"setzt eine einzige Aussenschicht, keinen Infill, keine stabilen "
-"Deckenschichten und keine Stützen voraus. Sie können immer noch eine "
-"beliebige Anzahl von Bodenschichten sowie Schleifen für Schürzen und Rand "
-"einstellen. Die Methode funktioniert nicht, wenn mehr als ein Objekt "
-"gedruckt wird."
-
-#: src/libslic3r/PrintConfig.cpp:1806
-msgid "Temperature variation"
-msgstr "Temperaturen"
-
-#: src/libslic3r/PrintConfig.cpp:1807
-msgid ""
-"Temperature difference to be applied when an extruder is not active. Enables "
-"a full-height \"sacrificial\" skirt on which the nozzles are periodically "
-"wiped."
-msgstr ""
-"Der anzuwendende Temperaturunterschied, wenn kein Extruder aktiv ist. Dies "
-"aktiviert eine \"Wegwerf-\"Schürze über die ganze Druckhöhe, auf der die "
-"Düsen periodisch gereinigt werden."
-
-#: src/libslic3r/PrintConfig.cpp:1818
-msgid ""
-"This start procedure is inserted at the beginning, after bed has reached the "
-"target temperature and extruder just started heating, and before extruder "
-"has finished heating. If Slic3r detects M104 or M190 in your custom codes, "
-"such commands will not be prepended automatically so you're free to "
-"customize the order of heating commands and other custom actions. Note that "
-"you can use placeholder variables for all Slic3r settings, so you can put a "
-"\"M109 S[first_layer_temperature]\" command wherever you want."
-msgstr ""
-"Dieser Startvorgang wird am Anfang eingefügt, nachdem das Heizbett die "
-"Zieltemperatur erreicht hat und der Extruder gerade erst mit dem Aufheizen "
-"begonnen hat, und bevor der Extruder fertig aufgeheizt ist. Falls Slic3r "
-"M104 oder M190 in Ihren benutzerdefinierten Codes erkennt, werden solche "
-"Befehle nicht automatisch vorangestellt, sodass Sie die Reihenfolge der "
-"Heizbefehle und anderer benutzerdefinierter Aktionen anpassen können. "
-"Beachten Sie, dass Sie Platzhaltervariablen für alle Slic3r-Einstellungen "
-"verwenden können, sodass Sie einen \"M109 S[first_layer_temperature]\"-"
-"Befehl an beliebiger Stelle platzieren können."
-
-#: src/libslic3r/PrintConfig.cpp:1834
-msgid ""
-"This start procedure is inserted at the beginning, after any printer start "
-"gcode. This is used to override settings for a specific filament. If Slic3r "
-"detects M104, M109, M140 or M190 in your custom codes, such commands will "
-"not be prepended automatically so you're free to customize the order of "
-"heating commands and other custom actions. Note that you can use placeholder "
-"variables for all Slic3r settings, so you can put a \"M109 "
-"S[first_layer_temperature]\" command wherever you want. If you have multiple "
-"extruders, the gcode is processed in extruder order."
-msgstr ""
-"Dieser Startvorgang wird am Anfang nach dem G-Code für den Druckerstart "
-"eingefügt. Damit können Einstellungen für ein bestimmtes Filament "
-"übersteuert werden. Falls Slic3r M104, M109, M140 oder M190 in Ihren "
-"benutzerdefinierten Codes erkennt, werden solche Befehle nicht automatisch "
-"vorangestellt, sodass Sie die Reihenfolge der Heizbefehle und anderer "
-"benutzerdefinierter Aktionen anpassen können. Beachten Sie, dass Sie "
-"Platzhaltervariablen für alle Slic3r-Einstellungen verwenden können, sodass "
-"Sie einen \"M109 S[first_layer_temperature]\"-Befehl an beliebiger Stelle "
-"platzieren können. Falls Sie mehrere Extruder haben, wird der G-Code in der "
-"Reihenfolge der Extruder ausgeführt."
-
-#: src/libslic3r/PrintConfig.cpp:1850
-msgid "Single Extruder Multi Material"
-msgstr "Einzelner Extruder mit Multi-Material"
-
-#: src/libslic3r/PrintConfig.cpp:1851
-msgid "The printer multiplexes filaments into a single hot end."
-msgstr "Der Drucker multiplext mehrere Filamente in einem Hotend."
-
-#: src/libslic3r/PrintConfig.cpp:1857
-msgid "Prime all printing extruders"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1858
-msgid ""
-"If enabled, all printing extruders will be primed at the front edge of the "
-"print bed at the start of the print."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1864
-msgid "Generate support material"
-msgstr "Generiere Stützstrukturen"
-
-#: src/libslic3r/PrintConfig.cpp:1866
-msgid "Enable support material generation."
-msgstr "Aktiviert Generierung von Stützstrukturen."
-
-#: src/libslic3r/PrintConfig.cpp:1871
-msgid "Auto generated supports"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1873
-msgid ""
-"If checked, supports will be generated automatically based on the overhang "
-"threshold value. If unchecked, supports will be generated inside the "
-"\"Support Enforcer\" volumes only."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1880
-msgid "XY separation between an object and its support"
-msgstr "XY-Abstand zwischen einem Objekt und seinen Stützen"
-
-#: src/libslic3r/PrintConfig.cpp:1882
-msgid ""
-"XY separation between an object and its support. If expressed as percentage "
-"(for example 50%), it will be calculated over external perimeter width."
-msgstr ""
-"XY-Abstand zwischen einem Objekt und seinen Stützen. Falls in Prozenten "
-"angegeben (z.B. 50%), wird der Abstand von der Breite der Aussenschicht "
-"ausgehend berechnet."
-
-#: src/libslic3r/PrintConfig.cpp:1893
-msgid "Pattern angle"
-msgstr "Muster Winkel"
-
-#: src/libslic3r/PrintConfig.cpp:1895
-msgid ""
-"Use this setting to rotate the support material pattern on the horizontal "
-"plane."
-msgstr ""
-"Verwenden Sie diese Einstellung, um das Muster für das Stützmaterial auf der "
-"horizontalen Ebene zu drehen."
-
-#: src/libslic3r/PrintConfig.cpp:1906
-msgid ""
-"Only create support if it lies on a build plate. Don't create support on a "
-"print."
-msgstr ""
-"Nur dann Stützen schaffen, wenn sie auf der Druckplattform aufbauen. "
-"Erstellt keine Stützstrukturen, die auf dem Ausdruck gründen würden."
-
-#: src/libslic3r/PrintConfig.cpp:1913
-msgid "Contact Z distance"
-msgstr "Kontakt Z-Abstand"
-
-#: src/libslic3r/PrintConfig.cpp:1915
-msgid ""
-"The vertical distance between object and support material interface. Setting "
-"this to 0 will also prevent Slic3r from using bridge flow and speed for the "
-"first object layer."
-msgstr ""
-"Der vertikale Abstand zwischen Objekt und Trägermaterialschnittstelle. Wenn "
-"Sie diesen Wert auf 0 setzen, wird Slic3r auch verhindern, dass Bridge-Flow "
-"und -Geschwindigkeit für die erste Objektschicht verwendet werden."
-
-#: src/libslic3r/PrintConfig.cpp:1923
-msgid "soluble"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1924
-msgid "detachable"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1929
-msgid "Enforce support for the first"
-msgstr "Erzwinge Stützstrukturen bei den ersten"
-
-#: src/libslic3r/PrintConfig.cpp:1931
-msgid ""
-"Generate support material for the specified number of layers counting from "
-"bottom, regardless of whether normal support material is enabled or not and "
-"regardless of any angle threshold. This is useful for getting more adhesion "
-"of objects having a very thin or poor footprint on the build plate."
-msgstr ""
-"Generiere Stützmaterial für die angegebene Anzahl von Schichten, die von "
-"unten gezählt werden, unabhängig davon, ob normales Stützmaterial aktiviert "
-"ist oder nicht und unabhängig von einer Winkelschwelle. Dies ist nützlich, "
-"um die Haftung von Objekten mit einem sehr dünnen oder schlechten Standfuß "
-"auf der Bauplatte zu erhöhen."
-
-#: src/libslic3r/PrintConfig.cpp:1937
-msgid "Enforce support for the first n layers"
-msgstr "Erzwinge Stützmaterial bei den ersten n Schichten"
-
-#: src/libslic3r/PrintConfig.cpp:1943
-msgid "Support material/raft/skirt extruder"
-msgstr "Stützmaterial/Raft/Schürzen Extruder"
-
-#: src/libslic3r/PrintConfig.cpp:1945
-msgid ""
-"The extruder to use when printing support material, raft and skirt (1+, 0 to "
-"use the current extruder to minimize tool changes)."
-msgstr ""
-"Der Extruder, der für den Druck von Stützmaterial, Raft und Schürze "
-"verwendet wird (1+, oder Null um den aktuellen Extruder für die Minimierung "
-"von Werkzeugwechseln zu verwenden)."
-
-#: src/libslic3r/PrintConfig.cpp:1955
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for support "
-"material. If left zero, default extrusion width will be used if set, "
-"otherwise nozzle diameter will be used. If expressed as percentage (for "
-"example 90%) it will be computed over layer height."
-msgstr ""
-"Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite "
-"für das Stützmaterial anzugeben. Falls auf Null belassen, wird die Standard-"
-"Extrusionsbreite verwendet (falls angeben), ansonsten wird der Durchmesser "
-"der Druckdüse verwendet. Als Prozentwert (z.B. 90%) angegeben, wird dieser "
-"ausgehend von der Schichthöhe berechnet."
-
-#: src/libslic3r/PrintConfig.cpp:1964
-msgid "Interface loops"
-msgstr "Kontaktschleifen"
-
-#: src/libslic3r/PrintConfig.cpp:1966
-msgid ""
-"Cover the top contact layer of the supports with loops. Disabled by default."
-msgstr ""
-"Decken Sie die obere Kontaktschicht der Stützen mit Schleifen ab. "
-"Standardmäßig deaktiviert."
-
-#: src/libslic3r/PrintConfig.cpp:1972
-msgid "Support material/raft interface extruder"
-msgstr "Stützmaterial/Raft Schnittstellen Extruder"
-
-#: src/libslic3r/PrintConfig.cpp:1974
-msgid ""
-"The extruder to use when printing support material interface (1+, 0 to use "
-"the current extruder to minimize tool changes). This affects raft too."
-msgstr ""
-"Der Extruder, der für den Druck von Schnittstellen zum Stützmaterial "
-"verwendet wird (1+, oder Null um den aktuellen Extruder für die Minimierung "
-"von Werkzeugwechseln zu verwenden). Dies betrifft auch den Raft."
-
-#: src/libslic3r/PrintConfig.cpp:1982
-msgid "Interface layers"
-msgstr "Schnittstellen Schichten"
-
-#: src/libslic3r/PrintConfig.cpp:1984
-msgid ""
-"Number of interface layers to insert between the object(s) and support "
-"material."
-msgstr ""
-"Anzahl der Schnittstellenschichten, die zwischen Objekt(en) und "
-"Trägermaterial eingefügt werden sollen."
-
-#: src/libslic3r/PrintConfig.cpp:1992
-msgid "Interface pattern spacing"
-msgstr "Schnittstellenmuster Abstand"
-
-#: src/libslic3r/PrintConfig.cpp:1994
-msgid "Spacing between interface lines. Set zero to get a solid interface."
-msgstr ""
-"Abstand zwischen den Schnittstellenlinien. Auf Null stellen, um ein solides "
-"Interface zu erhalten."
-
-#: src/libslic3r/PrintConfig.cpp:2004
-msgid ""
-"Speed for printing support material interface layers. If expressed as "
-"percentage (for example 50%) it will be calculated over support material "
-"speed."
-msgstr ""
-"Geschwindigkeit für den Druck von Trägermaterial-Schnittstellenschichten. "
-"Wenn es als Prozentsatz (z.B. 50%) ausgedrückt wird, wird es über die "
-"Geschwindigkeit des Trägermaterials berechnet."
-
-#: src/libslic3r/PrintConfig.cpp:2013
-msgid "Pattern"
-msgstr "Muster"
-
-#: src/libslic3r/PrintConfig.cpp:2015
-msgid "Pattern used to generate support material."
-msgstr "Unterstützungsmaterialmuster."
-
-#: src/libslic3r/PrintConfig.cpp:2022
-msgid "Rectilinear grid"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2028
-msgid "Pattern spacing"
-msgstr "Muster Abstand"
-
-#: src/libslic3r/PrintConfig.cpp:2030
-msgid "Spacing between support material lines."
-msgstr "Abstand zwischen Stützmateriallinien."
-
-#: src/libslic3r/PrintConfig.cpp:2040
-msgid "Speed for printing support material."
-msgstr "Druckgeschwindigkeit des Stützmaterials."
-
-#: src/libslic3r/PrintConfig.cpp:2047
-msgid "Synchronize with object layers"
-msgstr "Mit Objektschichten synchronisieren"
-
-#: src/libslic3r/PrintConfig.cpp:2049
-msgid ""
-"Synchronize support layers with the object print layers. This is useful with "
-"multi-material printers, where the extruder switch is expensive."
-msgstr ""
-"Stützschichten mit den Druckschichten des Objekts synchronisieren. Dies ist "
-"nützlich bei Multi-Material-Druckern, bei denen der Wechsel des Extruders "
-"kostenaufwendig ist."
-
-#: src/libslic3r/PrintConfig.cpp:2056
-msgid "Overhang threshold"
-msgstr "Überhangsschwellwert"
-
-#: src/libslic3r/PrintConfig.cpp:2058
-msgid ""
-"Support material will not be generated for overhangs whose slope angle (90° "
-"= vertical) is above the given threshold. In other words, this value "
-"represent the most horizontal slope (measured from the horizontal plane) "
-"that you can print without support material. Set to zero for automatic "
-"detection (recommended)."
-msgstr ""
-"Für Überhänge, deren Neigungswinkel (90° = vertikal) oberhalb der "
-"vorgegebenen Schwelle liegt, wird kein Stützmaterial erzeugt. Mit anderen "
-"Worten, dieser Wert stellt die größte horizontale Steigung (gemessen von der "
-"horizontalen Ebene) dar, die Sie ohne Trägermaterial drucken können. Für die "
-"automatische Erkennung auf Null setzen (empfohlen)."
-
-#: src/libslic3r/PrintConfig.cpp:2071
-msgid "With sheath around the support"
-msgstr "Mit Umhüllung der Stützen"
-
-#: src/libslic3r/PrintConfig.cpp:2073
-msgid ""
-"Add a sheath (a single perimeter line) around the base support. This makes "
-"the support more reliable, but also more difficult to remove."
-msgstr ""
-"Fügen Sie eine Sheath (eine einzelne Druckkontur) um die Basisschicht herum "
-"hinzu. Das macht das Stützmaterial zuverlässiger, aber auch schwieriger zu "
-"entfernen."
-
-#: src/libslic3r/PrintConfig.cpp:2081
-msgid ""
-"Extruder temperature for layers after the first one. Set this to zero to "
-"disable temperature control commands in the output."
-msgstr ""
-"Extrudertemperatur für Schichten nach der ersten Schicht. Setzen Sie diesen "
-"Wert auf Null, um die Temperaturregelbefehle im Ausgabedatei zu deaktivieren."
-
-#: src/libslic3r/PrintConfig.cpp:2084
-msgid "Temperature"
-msgstr "Temperatur"
-
-#: src/libslic3r/PrintConfig.cpp:2090
-msgid "Detect thin walls"
-msgstr "Dünne Wände erkennen"
-
-#: src/libslic3r/PrintConfig.cpp:2092
-msgid ""
-"Detect single-width walls (parts where two extrusions don't fit and we need "
-"to collapse them into a single trace)."
-msgstr ""
-"Erkennen von Wänden mit einfacher Breite (Teile, bei denen zwei Extrusionen "
-"nicht passen und wir sie in eine einzige Druckspur zusammenfassen müssen)."
-
-#: src/libslic3r/PrintConfig.cpp:2099
-msgid "Threads"
-msgstr "Threads"
-
-#: src/libslic3r/PrintConfig.cpp:2100
-msgid ""
-"Threads are used to parallelize long-running tasks. Optimal threads number "
-"is slightly above the number of available cores/processors."
-msgstr ""
-"Threads werden benutzt, um mehrere zeitaufwendige Berechnungen gleichzeitig "
-"auszuführen. Die optimale Anzahl beträgt etwas mehr als die Anzahl der "
-"verfügbaren Kerne/Prozessoren."
-
-#: src/libslic3r/PrintConfig.cpp:2112
-msgid ""
-"This custom code is inserted right before every extruder change. Note that "
-"you can use placeholder variables for all Slic3r settings as well as "
-"[previous_extruder] and [next_extruder]."
-msgstr ""
-"Dieser Code wird unmittelbar vor jedem Extruderwechsel eingefügt. Beachten "
-"Sie, dass Sie Platzhaltervariablen für alle Slic3r-Einstellungen sowie für "
-"[previous_extruder] und [next_extruder] verwenden können."
-
-#: src/libslic3r/PrintConfig.cpp:2125
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill for "
-"top surfaces. You may want to use thinner extrudates to fill all narrow "
-"regions and get a smoother finish. If left zero, default extrusion width "
-"will be used if set, otherwise nozzle diameter will be used. If expressed as "
-"percentage (for example 90%) it will be computed over layer height."
-msgstr ""
-"Setzen Sie dies auf einen Nicht-Nullwert, um eine manuelle Extrusionsbreite "
-"für die oberen Aussenflächen anzugeben. Dünnere Extrusionsbreiten sind "
-"vorteilhaft, um Engstellen auszufüllen und um eine schönere Oberfläche zu "
-"erhalten. Falls auf Null belassen, wird die Standard-Extrusionsbreite "
-"verwendet (falls angeben), ansonsten wird der Durchmesser der Druckdüse "
-"verwendet. Falls als Prozentwert (z.B. 90%) angegeben, wird dieser ausgehend "
-"von der Schichthöhe berechnet."
-
-#: src/libslic3r/PrintConfig.cpp:2137
-msgid ""
-"Speed for printing top solid layers (it only applies to the uppermost "
-"external layers and not to their internal solid layers). You may want to "
-"slow down this to get a nicer surface finish. This can be expressed as a "
-"percentage (for example: 80%) over the solid infill speed above. Set to zero "
-"for auto."
-msgstr ""
-"Druckgeschwindigkeit für die oberen stabilen Schichten (betrifft nur die "
-"obersten Aussenschichten und nicht deren innenliegende stabilen Schichten). "
-"Wir empfehlen, diesen Wert zu reduzieren, um eine schönere Oberfläche zu "
-"erhalten. Dies kann als Prozentwert (z.B. 80%) der oben eingegebenen "
-"Geschwindigkeit für stabiles Infill angegeben werden. Für Automatik auf Null "
-"setzen."
-
-#: src/libslic3r/PrintConfig.cpp:2149
-msgctxt "Layers"
-msgid "Top"
-msgstr "Decke"
-
-#: src/libslic3r/PrintConfig.cpp:2151
-msgid "Number of solid layers to generate on top surfaces."
-msgstr "Anzahl der zu erzeugenden festen Schichten auf der Oberseite."
-
-#: src/libslic3r/PrintConfig.cpp:2153
-msgid "Top solid layers"
-msgstr "Obere stabile Schichten"
-
-#: src/libslic3r/PrintConfig.cpp:2159
-msgid "Speed for travel moves (jumps between distant extrusion points)."
-msgstr "Bewegungsgeschwindigkeit (zwischen weit entfernten Extrusionsorten)."
-
-#: src/libslic3r/PrintConfig.cpp:2168
-msgid "Use firmware retraction"
-msgstr "Firmware-Einzug aktivieren"
-
-#: src/libslic3r/PrintConfig.cpp:2169
-msgid ""
-"This experimental setting uses G10 and G11 commands to have the firmware "
-"handle the retraction. This is only supported in recent Marlin."
-msgstr ""
-"Diese experimentelle Einstellung benutzt G10 und G11 Befehle, damit die "
-"Druckerfirmware den Einzug übernimmt. Dies wird nur von neueren Marlin-"
-"Versionen unterstützt."
-
-#: src/libslic3r/PrintConfig.cpp:2176
-msgid "Use relative E distances"
-msgstr "Relative Abstände für Extrusion benutzen"
-
-#: src/libslic3r/PrintConfig.cpp:2177
-msgid ""
-"If your firmware requires relative E values, check this, otherwise leave it "
-"unchecked. Most firmwares use absolute values."
-msgstr ""
-"Wenn Ihre Firmware relative E-Werte benötigt, diese Option aktivieren, "
-"ansonsten lassen Sie sie unmarkiert. Die meisten Firmwares verwenden "
-"absolute Werte."
-
-#: src/libslic3r/PrintConfig.cpp:2184
-msgid "Use volumetric E"
-msgstr "Volumetrisches E benutzen"
-
-#: src/libslic3r/PrintConfig.cpp:2185
-msgid ""
-"This experimental setting uses outputs the E values in cubic millimeters "
-"instead of linear millimeters. If your firmware doesn't already know "
-"filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] "
-"T0' in your start G-code in order to turn volumetric mode on and use the "
-"filament diameter associated to the filament selected in Slic3r. This is "
-"only supported in recent Marlin."
-msgstr ""
-"Diese experimentelle Einstellung generiert E-Koordinaten in Kubikmillimetern "
-"stat in linearen Millimetern. Wenn die Firmware den Filamentdurchmesser "
-"noch nicht kennt, können Sie Befehle wie 'M200 D[filament_diameter_0] T0' in "
-"den Start-G-Code eingeben, um den volumetrischen Modus zu aktivieren und den "
-"in Slic3r angegebenen Filamentdurchmesser zu benutzen. Dies wird nur von "
-"neueren Marlin-Versionen unterstützt."
-
-#: src/libslic3r/PrintConfig.cpp:2196
-msgid "Enable variable layer height feature"
-msgstr "Variable Schichthöhen aktivieren"
-
-#: src/libslic3r/PrintConfig.cpp:2197
-msgid ""
-"Some printers or printer setups may have difficulties printing with a "
-"variable layer height. Enabled by default."
-msgstr ""
-"Mit einigen Druckern oder Druckerkonfigurationen ist es schwierig, mit einer "
-"variablen Schichthöhe zu drucken. Standardmässig aktiviert."
-
-#: src/libslic3r/PrintConfig.cpp:2204
-msgid "Wipe while retracting"
-msgstr "Während Einzug reinigen"
-
-#: src/libslic3r/PrintConfig.cpp:2205
-msgid ""
-"This flag will move the nozzle while retracting to minimize the possible "
-"blob on leaky extruders."
-msgstr ""
-"Diese Einstellung wird die Düse während dem Einzug bewegen, um mögliche "
-"Tropfen bei einem undichten Extruder zu minimieren."
-
-#: src/libslic3r/PrintConfig.cpp:2213
-msgid ""
-"Multi material printers may need to prime or purge extruders on tool "
-"changes. Extrude the excess material into the wipe tower."
-msgstr ""
-"Multi-Material-Drucker müssen eventuell Extruder bei Werkzeugwechseln vor- "
-"oder nachspülen. Extrudieren Sie das überschüssige Material in den "
-"Reinigungsturm."
-
-#: src/libslic3r/PrintConfig.cpp:2220
-msgid "Purging volumes - load/unload volumes"
-msgstr "Reinigungsvolumen - Lade-/Entladevolumen"
-
-#: src/libslic3r/PrintConfig.cpp:2221
-msgid ""
-"This vector saves required volumes to change from/to each tool used on the "
-"wipe tower. These values are used to simplify creation of the full purging "
-"volumes below. "
-msgstr ""
-"Dieser Vektor speichert die erforderlichen Volumina für den Wechsel von/zu "
-"jedem am Reinigungsturm verwendeten Werkzeug. Diese Werte werden verwendet, "
-"um die Erstellung des vollen Reinigungsvolumens zu vereinfachen. "
-
-#: src/libslic3r/PrintConfig.cpp:2228
-msgid "Purging volumes - matrix"
-msgstr "Reinigungsvolumen - Matrix"
-
-#: src/libslic3r/PrintConfig.cpp:2229
-msgid ""
-"This matrix describes volumes (in cubic milimetres) required to purge the "
-"new filament on the wipe tower for any given pair of tools. "
-msgstr ""
-"Diese Matrix beschreibt die Volumina (in Kubikmillimetern), die benötigt "
-"werden, um das neue Filament auf dem Reinigungsturm für ein bestimmtes "
-"Werkzeugpaar zu reinigen. "
-
-#: src/libslic3r/PrintConfig.cpp:2239
-msgid "Position X"
-msgstr "X-Position"
-
-#: src/libslic3r/PrintConfig.cpp:2240
-msgid "X coordinate of the left front corner of a wipe tower"
-msgstr "X-Koordinate der linken vorderen Ecke der Reinigungssäule"
-
-#: src/libslic3r/PrintConfig.cpp:2247
-msgid "Position Y"
-msgstr "Y-Position"
-
-#: src/libslic3r/PrintConfig.cpp:2248
-msgid "Y coordinate of the left front corner of a wipe tower"
-msgstr "Y-Koordinate der linken vorderen Ecke der Reinigungssäule"
-
-#: src/libslic3r/PrintConfig.cpp:2256
-msgid "Width of a wipe tower"
-msgstr "Breite der Reinigungssäule"
-
-#: src/libslic3r/PrintConfig.cpp:2263
-msgid "Wipe tower rotation angle"
-msgstr "Rotationswinkel des Reinigungsturms"
-
-#: src/libslic3r/PrintConfig.cpp:2264
-msgid "Wipe tower rotation angle with respect to x-axis "
-msgstr "Rotationswinkel des Reinigungsturms bezogen auf die X-Achse "
-
-#: src/libslic3r/PrintConfig.cpp:2265
-msgid "degrees"
-msgstr "Grad"
-
-#: src/libslic3r/PrintConfig.cpp:2272
-msgid "Wipe into this object's infill"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2273
-msgid ""
-"Purging after toolchange will done inside this object's infills. This lowers "
-"the amount of waste but may result in longer print time due to additional "
-"travel moves."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2281
-msgid "Wipe into this object"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2282
-msgid ""
-"Object will be used to purge the nozzle after a toolchange to save material "
-"that would otherwise end up in the wipe tower and decrease print time. "
-"Colours of the objects will be mixed as a result."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2289
-msgid "Maximal bridging distance"
-msgstr "Maximaler Überbrückungsabstand"
-
-#: src/libslic3r/PrintConfig.cpp:2290
-msgid "Maximal distance between supports on sparse infill sections. "
-msgstr "Maximalabstand zwischen Stützen auf spärlichen Infill-Abschnitten. "
-
-#: src/libslic3r/PrintConfig.cpp:2297
-msgid "XY Size Compensation"
-msgstr "XY-Grössenausgleich"
-
-#: src/libslic3r/PrintConfig.cpp:2299
-msgid ""
-"The object will be grown/shrunk in the XY plane by the configured value "
-"(negative = inwards, positive = outwards). This might be useful for fine-"
-"tuning hole sizes."
-msgstr ""
-"Das Objekt wird in der XY-Ebene um den konfigurierten Wert (negativ = "
-"einwärts, positiv = auswärts) vergrößert/verkleinert. Dies kann bei der "
-"Feinabstimmung von Lochgrößen hilfreich sein."
-
-#: src/libslic3r/PrintConfig.cpp:2308
-msgid "Z offset"
-msgstr "Z-Abstand"
-
-#: src/libslic3r/PrintConfig.cpp:2309
-msgid ""
-"This value will be added (or subtracted) from all the Z coordinates in the "
-"output G-code. It is used to compensate for bad Z endstop position: for "
-"example, if your endstop zero actually leaves the nozzle 0.3mm far from the "
-"print bed, set this to -0.3 (or fix your endstop)."
-msgstr ""
-"Dieser Wert wird zu allen Z-Koordinaten im ausgegebenen G-Code hinzuaddiert "
-"oder davon abgezogen. Damit kann eine fehlerhafte Z-Endanschlagsposition "
-"kompensiert werden: wenn z.B. bei Ihrem Nullwert die Druckdüse sich beim "
-"Endanschlag 0.3mm über der Druckplatte befindet, setzen Sie diesen Wert auf "
-"-0.3 (oder stellen Sie Ihren Endanschlag neu ein)."
-
-#: src/libslic3r/PrintConfig.cpp:2319
-msgid "Bed size X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2320 src/libslic3r/PrintConfig.cpp:2327
-#: src/libslic3r/PrintConfig.cpp:2334 src/libslic3r/PrintConfig.cpp:2343
-#: src/libslic3r/PrintConfig.cpp:2351 src/libslic3r/PrintConfig.cpp:2359
-msgid "Dwarf"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2326
-msgid "Bed size Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2333
-msgid "Picture resolution X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2335 src/libslic3r/PrintConfig.cpp:2344
-msgid "px"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2342
-msgid "Picture resolution Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2350 src/libslic3r/PrintConfig.cpp:2430
-#: src/libslic3r/PrintConfig.cpp:2431
-msgid "Exposure time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2358
-msgid "Exposure time first layers"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2373
-msgid "Display width"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2374
-msgid "Width of the display"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2380
-msgid "Display height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2381
-msgid "Height of the display"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2387
-msgid "Number of pixels in"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2389
-msgid "Number of pixels in X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2396
-msgid "Number of pixels in Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2402
-msgid "Display orientation"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2403
-msgid ""
-"Set the actual LCD display orientation inside the SLA printer. Portrait mode "
-"will flip the meaning of display width and height parameters and the output "
-"images will be rotated by 90 degrees."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2410
-msgid "Landscape"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2411
-msgid "Portrait"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2415 src/libslic3r/PrintConfig.cpp:2416
-msgid "Printer scaling correction"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2422 src/libslic3r/PrintConfig.cpp:2423
-msgid "Initial layer height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439
-msgid "Initial exposure time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2446 src/libslic3r/PrintConfig.cpp:2447
-msgid "Correction for expansion when printing"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2452 src/libslic3r/PrintConfig.cpp:2453
-msgid "Correction for expansion after curing"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2458
-msgid "SLA print material notes"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2459
-msgid "You can put your notes regarding the SLA print material here."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2468 src/libslic3r/PrintConfig.cpp:2478
-msgid "Default SLA material profile"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2487
-msgid "Generate supports"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2489
-msgid "Generate supports for the models"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2494
-msgid "Support head front diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2496
-msgid "Diameter of the pointing side of the head"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2503
-msgid "Support head penetration"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2505
-msgid "How much the pinhead has to penetrate the model surface"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2512
-msgid "Support head width"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2514
-msgid "Width from the back sphere center to the front sphere center"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2521
-msgid "Support pillar diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2523
-msgid "Diameter in mm of the support pillars"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2530
-msgid "Support pillar connection mode"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2531
-msgid ""
-"Controls the bridge type between two neigboring pillars. Can be zig-zag, "
-"cross (double zig-zag) or dynamic which will automatically switch between "
-"the first two depending on the distance of the two pillars."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2540
-msgid "Zig-Zag"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2541
-msgid "Cross"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2542
-msgid "Dynamic"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2546
-msgid "Pillar widening factor"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2548
-msgid ""
-"Merging bridges or pillars into another pillars can increase the radius. "
-"Zero means no increase, one means full increase."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2557
-msgid "Support base diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2559
-msgid "Diameter in mm of the pillar base"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2566
-msgid "Support base height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2568
-msgid "The height of the pillar base cone"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2575
-msgid "Critical angle"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2577
-msgid "The default angle for connecting support sticks and junctions."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2584
-msgid "Max bridge length"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2586
-msgid "The max length of a bridge"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2593
-msgid "Object elevation"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2595
-msgid "How much the supports should lift up the supported object."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2602
-msgid "Density on horizontal surfaces"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2604
-msgid ""
-"How many support points (approximately) should be placed on horizontal "
-"surface."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2605 src/libslic3r/PrintConfig.cpp:2614
-msgid "points per square dm"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2611
-msgid "Density on surfaces at 45 degrees"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2613
-msgid ""
-"How many support points (approximately) should be placed on surface sloping "
-"at 45 degrees."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2620
-msgid "Minimal support point height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2622
-msgid "No support points will be placed lower than this value from the bottom."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2629
-msgid "Use pad"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2631
-msgid "Add a pad underneath the supported model"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2636
-msgid "Pad wall thickness"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2645
-msgid "Pad wall height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2654
-msgid "Max merge distance"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2663
-msgid "Pad edge radius"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3017
-msgid "Cut model at the given Z."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3022
-msgid "Dont arrange"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3023
-msgid ""
-"Don't arrange the objects on the build plate. The model coordinates define "
-"the absolute positions on the build plate. The option --center will be "
-"ignored."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3030
-msgid "User data directory"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3031
-msgid ""
-"Load and store settings at the given directory. This is useful for "
-"maintaining different profiles or including configurations from a network "
-"storage."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3038
-msgid "Export 3MF"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3039
-msgid "Slice the model and export slices as 3MF."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3044
-msgid "Slice"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3045
-msgid "Slice the model and export gcode."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3050
-msgid "Help"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3051
-msgid "Show this help."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3056
-msgid "Use GUI"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3057
-msgid ""
-"Forces the GUI launch instead of command line slicing (if you supply a model "
-"file, it will be loaded into the plater)"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3063
-msgid "Output Model Info"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3064
-msgid "Write information about the model to the console."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3069
-msgid "Load config file"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3070
-msgid ""
-"Load configuration from the specified file. It can be used more than once to "
-"load options from multiple files."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3075
-msgid "Do not use GUI"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3076
-msgid ""
-"Forces the command line slicing instead of gui. This takes precedence over --"
-"gui if both are present."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3081
-msgid "Output File"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3082
-msgid ""
-"The file where the output will be written (if not specified, it will be "
-"based on the input file)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3088
-msgid "Rotation angle around the Z axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3093
-msgid "Rotate around X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3094
-msgid "Rotation angle around the X axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3099
-msgid "Rotate around Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3100
-msgid "Rotation angle around the Y axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3105
-msgid "Save config file"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3106
-msgid "Save configuration to the specified file."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3112
-msgid "Scaling factor (default: 1)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3125
-msgid "Print center"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3126
-msgid "Center the print around the given center (default: 100, 100)."
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:176
-msgid "Mixed"
-msgstr "Gemischt"
-
-#: src/libslic3r/GCode/PreviewData.cpp:396
-msgid "Height (mm)"
-msgstr "Höhe (mm)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:398
-msgid "Width (mm)"
-msgstr "Breite (mm)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:400
-msgid "Speed (mm/s)"
-msgstr "Geschwindigkeit (mm/s)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:402
-msgid "Volumetric flow rate (mm3/s)"
-msgstr "Volumetrische Flussrate (mm3/s)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:491
-msgid "Default print color"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:495
-#, c-format
-msgid "up to %.2f mm"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:499
-#, c-format
-msgid "above %.2f mm"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:504
-#, c-format
-msgid "%.2f - %.2f mm"
-msgstr ""
diff --git a/resources/localization/en_US/Slic3rPE_en.po b/resources/localization/en_US/PrusaSlicer_en.po
similarity index 65%
rename from resources/localization/en_US/Slic3rPE_en.po
rename to resources/localization/en_US/PrusaSlicer_en.po
index ddf8ebe4c..9e5335586 100644
--- a/resources/localization/en_US/Slic3rPE_en.po
+++ b/resources/localization/en_US/PrusaSlicer_en.po
@@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-17 13:39+0100\n"
-"PO-Revision-Date: 2019-01-17 15:05+0100\n"
+"POT-Creation-Date: 2019-04-09 14:34+0200\n"
+"PO-Revision-Date: 2019-04-09 15:04+0200\n"
"Language: en\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -17,11 +17,11 @@ msgstr ""
"Language-Team: \n"
"X-Generator: Poedit 2.0.8\n"
-#: src/slic3r/GUI/AboutDialog.cpp:33
+#: src/slic3r/GUI/AboutDialog.cpp:35
msgid "About Slic3r"
msgstr "About Slic3r"
-#: src/slic3r/GUI/AboutDialog.cpp:68 src/slic3r/GUI/MainFrame.cpp:51
+#: src/slic3r/GUI/AboutDialog.cpp:64 src/slic3r/GUI/MainFrame.cpp:52
msgid "Version"
msgstr "Version"
@@ -29,25 +29,25 @@ msgstr "Version"
msgid "Shape"
msgstr "Shape"
-#: src/slic3r/GUI/BedShapeDialog.cpp:50
+#: src/slic3r/GUI/BedShapeDialog.cpp:51
msgid "Rectangular"
msgstr "Rectangular"
-#: src/slic3r/GUI/BedShapeDialog.cpp:54
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:207 src/slic3r/GUI/Plater.cpp:125
-#: src/slic3r/GUI/Tab.cpp:2122
+#: src/slic3r/GUI/BedShapeDialog.cpp:55
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:118 src/slic3r/GUI/Plater.cpp:136
+#: src/slic3r/GUI/Tab.cpp:2185
msgid "Size"
msgstr "Size"
-#: src/slic3r/GUI/BedShapeDialog.cpp:55
+#: src/slic3r/GUI/BedShapeDialog.cpp:56
msgid "Size in X and Y of the rectangular plate."
msgstr "Size in X and Y of the rectangular plate."
-#: src/slic3r/GUI/BedShapeDialog.cpp:61
+#: src/slic3r/GUI/BedShapeDialog.cpp:62
msgid "Origin"
msgstr "Origin"
-#: src/slic3r/GUI/BedShapeDialog.cpp:62
+#: src/slic3r/GUI/BedShapeDialog.cpp:63
msgid ""
"Distance of the 0,0 G-code coordinate from the front left corner of the "
"rectangle."
@@ -55,47 +55,47 @@ msgstr ""
"Distance of the 0,0 G-code coordinate from the front left corner of the "
"rectangle."
-#: src/slic3r/GUI/BedShapeDialog.cpp:66
+#: src/slic3r/GUI/BedShapeDialog.cpp:67
msgid "Circular"
msgstr "Circular"
-#: src/slic3r/GUI/BedShapeDialog.cpp:69 src/slic3r/GUI/ConfigWizard.cpp:92
-#: src/slic3r/GUI/ConfigWizard.cpp:456 src/slic3r/GUI/ConfigWizard.cpp:470
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:80
-#: src/libslic3r/PrintConfig.cpp:50 src/libslic3r/PrintConfig.cpp:58
-#: src/libslic3r/PrintConfig.cpp:180 src/libslic3r/PrintConfig.cpp:254
-#: src/libslic3r/PrintConfig.cpp:263 src/libslic3r/PrintConfig.cpp:315
-#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:448
-#: src/libslic3r/PrintConfig.cpp:460 src/libslic3r/PrintConfig.cpp:480
-#: src/libslic3r/PrintConfig.cpp:679 src/libslic3r/PrintConfig.cpp:1178
-#: src/libslic3r/PrintConfig.cpp:1243 src/libslic3r/PrintConfig.cpp:1263
-#: src/libslic3r/PrintConfig.cpp:1283 src/libslic3r/PrintConfig.cpp:1365
-#: src/libslic3r/PrintConfig.cpp:1376 src/libslic3r/PrintConfig.cpp:1499
-#: src/libslic3r/PrintConfig.cpp:1508 src/libslic3r/PrintConfig.cpp:1554
-#: src/libslic3r/PrintConfig.cpp:1563 src/libslic3r/PrintConfig.cpp:1574
-#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1592
-#: src/libslic3r/PrintConfig.cpp:1682 src/libslic3r/PrintConfig.cpp:1918
-#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2031
-#: src/libslic3r/PrintConfig.cpp:2241 src/libslic3r/PrintConfig.cpp:2249
-#: src/libslic3r/PrintConfig.cpp:2257 src/libslic3r/PrintConfig.cpp:2291
-#: src/libslic3r/PrintConfig.cpp:2302 src/libslic3r/PrintConfig.cpp:2313
-#: src/libslic3r/PrintConfig.cpp:2321 src/libslic3r/PrintConfig.cpp:2328
-#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2497
-#: src/libslic3r/PrintConfig.cpp:2506 src/libslic3r/PrintConfig.cpp:2515
-#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2560
-#: src/libslic3r/PrintConfig.cpp:2569 src/libslic3r/PrintConfig.cpp:2587
-#: src/libslic3r/PrintConfig.cpp:2596 src/libslic3r/PrintConfig.cpp:2623
-#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2648
-#: src/libslic3r/PrintConfig.cpp:2657 src/libslic3r/PrintConfig.cpp:2666
+#: src/slic3r/GUI/BedShapeDialog.cpp:70 src/slic3r/GUI/ConfigWizard.cpp:111
+#: src/slic3r/GUI/ConfigWizard.cpp:544 src/slic3r/GUI/ConfigWizard.cpp:558
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:115
+#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:84
+#: src/libslic3r/PrintConfig.cpp:59 src/libslic3r/PrintConfig.cpp:66
+#: src/libslic3r/PrintConfig.cpp:75 src/libslic3r/PrintConfig.cpp:209
+#: src/libslic3r/PrintConfig.cpp:284 src/libslic3r/PrintConfig.cpp:292
+#: src/libslic3r/PrintConfig.cpp:342 src/libslic3r/PrintConfig.cpp:352
+#: src/libslic3r/PrintConfig.cpp:472 src/libslic3r/PrintConfig.cpp:483
+#: src/libslic3r/PrintConfig.cpp:501 src/libslic3r/PrintConfig.cpp:679
+#: src/libslic3r/PrintConfig.cpp:1165 src/libslic3r/PrintConfig.cpp:1226
+#: src/libslic3r/PrintConfig.cpp:1244 src/libslic3r/PrintConfig.cpp:1262
+#: src/libslic3r/PrintConfig.cpp:1314 src/libslic3r/PrintConfig.cpp:1324
+#: src/libslic3r/PrintConfig.cpp:1445 src/libslic3r/PrintConfig.cpp:1453
+#: src/libslic3r/PrintConfig.cpp:1494 src/libslic3r/PrintConfig.cpp:1502
+#: src/libslic3r/PrintConfig.cpp:1512 src/libslic3r/PrintConfig.cpp:1520
+#: src/libslic3r/PrintConfig.cpp:1528 src/libslic3r/PrintConfig.cpp:1611
+#: src/libslic3r/PrintConfig.cpp:1827 src/libslic3r/PrintConfig.cpp:1897
+#: src/libslic3r/PrintConfig.cpp:1931 src/libslic3r/PrintConfig.cpp:2123
+#: src/libslic3r/PrintConfig.cpp:2130 src/libslic3r/PrintConfig.cpp:2137
+#: src/libslic3r/PrintConfig.cpp:2167 src/libslic3r/PrintConfig.cpp:2177
+#: src/libslic3r/PrintConfig.cpp:2187 src/libslic3r/PrintConfig.cpp:2293
+#: src/libslic3r/PrintConfig.cpp:2368 src/libslic3r/PrintConfig.cpp:2377
+#: src/libslic3r/PrintConfig.cpp:2386 src/libslic3r/PrintConfig.cpp:2396
+#: src/libslic3r/PrintConfig.cpp:2440 src/libslic3r/PrintConfig.cpp:2450
+#: src/libslic3r/PrintConfig.cpp:2469 src/libslic3r/PrintConfig.cpp:2479
+#: src/libslic3r/PrintConfig.cpp:2488 src/libslic3r/PrintConfig.cpp:2506
+#: src/libslic3r/PrintConfig.cpp:2521 src/libslic3r/PrintConfig.cpp:2532
+#: src/libslic3r/PrintConfig.cpp:2545 src/libslic3r/PrintConfig.cpp:2555
msgid "mm"
msgstr "mm"
-#: src/slic3r/GUI/BedShapeDialog.cpp:70 src/libslic3r/PrintConfig.cpp:676
+#: src/slic3r/GUI/BedShapeDialog.cpp:71 src/libslic3r/PrintConfig.cpp:676
msgid "Diameter"
msgstr "Diameter"
-#: src/slic3r/GUI/BedShapeDialog.cpp:71
+#: src/slic3r/GUI/BedShapeDialog.cpp:72
msgid ""
"Diameter of the print bed. It is assumed that origin (0,0) is located in the "
"center."
@@ -103,66 +103,66 @@ msgstr ""
"Diameter of the print bed. It is assumed that origin (0,0) is located in the "
"center."
-#: src/slic3r/GUI/BedShapeDialog.cpp:75 src/slic3r/GUI/GUI_Preview.cpp:265
+#: src/slic3r/GUI/BedShapeDialog.cpp:76 src/slic3r/GUI/GUI_Preview.cpp:239
#: src/libslic3r/GCode/PreviewData.cpp:175
msgid "Custom"
msgstr "Custom"
-#: src/slic3r/GUI/BedShapeDialog.cpp:79
+#: src/slic3r/GUI/BedShapeDialog.cpp:80
msgid "Load shape from STL..."
msgstr "Load shape from STL..."
-#: src/slic3r/GUI/BedShapeDialog.cpp:125
+#: src/slic3r/GUI/BedShapeDialog.cpp:126
msgid "Settings"
msgstr "Settings"
-#: src/slic3r/GUI/BedShapeDialog.cpp:298
+#: src/slic3r/GUI/BedShapeDialog.cpp:299
msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
msgstr "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
-#: src/slic3r/GUI/BedShapeDialog.cpp:315 src/slic3r/GUI/GUI_ObjectList.cpp:835
+#: src/slic3r/GUI/BedShapeDialog.cpp:316 src/slic3r/GUI/GUI_ObjectList.cpp:1252
msgid "Error! "
msgstr "Error! "
-#: src/slic3r/GUI/BedShapeDialog.cpp:324
+#: src/slic3r/GUI/BedShapeDialog.cpp:325
msgid "The selected file contains no geometry."
msgstr "The selected file contains no geometry."
-#: src/slic3r/GUI/BedShapeDialog.cpp:328
+#: src/slic3r/GUI/BedShapeDialog.cpp:329
msgid ""
"The selected file contains several disjoint areas. This is not supported."
msgstr ""
"The selected file contains several disjoint areas. This is not supported."
-#: src/slic3r/GUI/BedShapeDialog.hpp:44 src/slic3r/GUI/ConfigWizard.cpp:419
+#: src/slic3r/GUI/BedShapeDialog.hpp:44 src/slic3r/GUI/ConfigWizard.cpp:507
msgid "Bed Shape"
msgstr "Bed Shape"
-#: src/slic3r/GUI/BonjourDialog.cpp:54
+#: src/slic3r/GUI/BonjourDialog.cpp:55
msgid "Network lookup"
msgstr "Network lookup"
-#: src/slic3r/GUI/BonjourDialog.cpp:67
+#: src/slic3r/GUI/BonjourDialog.cpp:72
msgid "Address"
msgstr "Address"
-#: src/slic3r/GUI/BonjourDialog.cpp:68
+#: src/slic3r/GUI/BonjourDialog.cpp:73
msgid "Hostname"
msgstr "Hostname"
-#: src/slic3r/GUI/BonjourDialog.cpp:69
+#: src/slic3r/GUI/BonjourDialog.cpp:74
msgid "Service name"
msgstr "Service name"
-#: src/slic3r/GUI/BonjourDialog.cpp:70
+#: src/slic3r/GUI/BonjourDialog.cpp:76
msgid "OctoPrint version"
msgstr "OctoPrint version"
-#: src/slic3r/GUI/BonjourDialog.cpp:188
+#: src/slic3r/GUI/BonjourDialog.cpp:218
msgid "Searching for devices"
msgstr "Searching for devices"
-#: src/slic3r/GUI/BonjourDialog.cpp:195
+#: src/slic3r/GUI/BonjourDialog.cpp:225
msgid "Finished"
msgstr "Finished"
@@ -182,113 +182,118 @@ msgstr ""
"Value was changed and is not equal to the system value or the last saved "
"preset"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:16
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:17
msgid "Upgrade"
msgstr "Upgrade"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:18
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:19
msgid "Downgrade"
msgstr "Downgrade"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:20
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:21
msgid "Before roll back"
msgstr "Before roll back"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:22
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:23
msgid "User"
msgstr "User"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:25
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:26
msgid "Unknown"
msgstr "Unknown"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:37
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:38
msgid "Active: "
msgstr "Active: "
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:44
msgid "slic3r version"
msgstr "slic3r version"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:44 src/slic3r/GUI/Preset.cpp:1156
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:45 src/slic3r/GUI/Preset.cpp:1250
msgid "print"
msgstr "print"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:45
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46
msgid "filaments"
msgstr "filaments"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1160
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:47 src/slic3r/GUI/Preset.cpp:1254
msgid "printer"
msgstr "printer"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 src/slic3r/GUI/Tab.cpp:838
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Tab.cpp:872
msgid "vendor"
msgstr "vendor"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51
msgid "version"
msgstr "version"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52
msgid "min slic3r version"
msgstr "min slic3r version"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:54
msgid "max slic3r version"
msgstr "max slic3r version"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57
msgid "model"
msgstr "model"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57
msgid "variants"
msgstr "variants"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69
msgid "Incompatible with this Slic3r"
msgstr "Incompatible with this Slic3r"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:72
msgid "Activate"
msgstr "Activate"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:97
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:98
msgid "Configuration Snapshots"
msgstr "Configuration Snapshots"
-#: src/slic3r/GUI/ConfigWizard.cpp:92
+#: src/slic3r/GUI/ConfigWizard.cpp:111
msgid "nozzle"
msgstr "nozzle"
-#: src/slic3r/GUI/ConfigWizard.cpp:93
-msgid "(default)"
-msgstr "(default)"
+#: src/slic3r/GUI/ConfigWizard.cpp:115
+msgid "Alternate nozzles:"
+msgstr "Alternate nozzles:"
-#: src/slic3r/GUI/ConfigWizard.cpp:116
-msgid "Select all"
-msgstr "Select all"
+#: src/slic3r/GUI/ConfigWizard.cpp:181
+msgid "All standard"
+msgstr "All standard"
-#: src/slic3r/GUI/ConfigWizard.cpp:117
-msgid "Select none"
-msgstr "Select none"
+#: src/slic3r/GUI/ConfigWizard.cpp:182 src/slic3r/GUI/Tab.cpp:2909
+msgid "All"
+msgstr "All"
-#: src/slic3r/GUI/ConfigWizard.cpp:226
+#: src/slic3r/GUI/ConfigWizard.cpp:183 src/slic3r/GUI/Plater.cpp:414
+#: src/libslic3r/GCode/PreviewData.cpp:162
+msgid "None"
+msgstr "None"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:284
#, c-format
msgid "Welcome to the Slic3r %s"
msgstr "Welcome to the Slic3r %s"
-#: src/slic3r/GUI/ConfigWizard.cpp:226
+#: src/slic3r/GUI/ConfigWizard.cpp:284
msgid "Welcome"
msgstr "Welcome"
-#: src/slic3r/GUI/ConfigWizard.cpp:232 src/slic3r/GUI/GUI_App.cpp:606
+#: src/slic3r/GUI/ConfigWizard.cpp:288 src/slic3r/GUI/GUI_App.cpp:600
#, c-format
msgid "Run %s"
msgstr "Run %s"
-#: src/slic3r/GUI/ConfigWizard.cpp:234
+#: src/slic3r/GUI/ConfigWizard.cpp:290
#, c-format
msgid ""
"Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial "
@@ -297,7 +302,7 @@ msgstr ""
"Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial "
"configuration; just a few settings and you will be ready to print."
-#: src/slic3r/GUI/ConfigWizard.cpp:238
+#: src/slic3r/GUI/ConfigWizard.cpp:294
msgid ""
"Remove user profiles - install from scratch (a snapshot will be taken "
"beforehand)"
@@ -305,27 +310,40 @@ msgstr ""
"Remove user profiles - install from scratch (a snapshot will be taken "
"beforehand)"
-#: src/slic3r/GUI/ConfigWizard.cpp:263
-msgid "Other vendors"
-msgstr "Other vendors"
+#: src/slic3r/GUI/ConfigWizard.cpp:325
+#, c-format
+msgid "%s Family"
+msgstr "%s Family"
-#: src/slic3r/GUI/ConfigWizard.cpp:265
-msgid "Custom setup"
-msgstr "Custom setup"
+#: src/slic3r/GUI/ConfigWizard.cpp:362
+msgid "Custom Printer Setup"
+msgstr "Custom Printer Setup"
-#: src/slic3r/GUI/ConfigWizard.cpp:289
+#: src/slic3r/GUI/ConfigWizard.cpp:362
+msgid "Custom Printer"
+msgstr "Custom Printer"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:364
+msgid "Define a custom printer profile"
+msgstr "Define a custom printer profile"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:366
+msgid "Custom profile name:"
+msgstr "Custom profile name:"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:390
msgid "Automatic updates"
msgstr "Automatic updates"
-#: src/slic3r/GUI/ConfigWizard.cpp:289
+#: src/slic3r/GUI/ConfigWizard.cpp:390
msgid "Updates"
msgstr "Updates"
-#: src/slic3r/GUI/ConfigWizard.cpp:297 src/slic3r/GUI/Preferences.cpp:59
+#: src/slic3r/GUI/ConfigWizard.cpp:398 src/slic3r/GUI/Preferences.cpp:59
msgid "Check for application updates"
msgstr "Check for application updates"
-#: src/slic3r/GUI/ConfigWizard.cpp:300 src/slic3r/GUI/Preferences.cpp:61
+#: src/slic3r/GUI/ConfigWizard.cpp:401 src/slic3r/GUI/Preferences.cpp:61
msgid ""
"If enabled, Slic3r checks for new versions of Slic3r PE online. When a new "
"version becomes available a notification is displayed at the next "
@@ -337,11 +355,11 @@ msgstr ""
"application startup (never during program usage). This is only a "
"notification mechanisms, no automatic installation is done."
-#: src/slic3r/GUI/ConfigWizard.cpp:304 src/slic3r/GUI/Preferences.cpp:67
+#: src/slic3r/GUI/ConfigWizard.cpp:405 src/slic3r/GUI/Preferences.cpp:67
msgid "Update built-in Presets automatically"
msgstr "Update built-in Presets automatically"
-#: src/slic3r/GUI/ConfigWizard.cpp:307 src/slic3r/GUI/Preferences.cpp:69
+#: src/slic3r/GUI/ConfigWizard.cpp:408 src/slic3r/GUI/Preferences.cpp:69
msgid ""
"If enabled, Slic3r downloads updates of built-in system presets in the "
"background. These updates are downloaded into a separate temporary location. "
@@ -353,7 +371,7 @@ msgstr ""
"When a new preset version becomes available it is offered at application "
"startup."
-#: src/slic3r/GUI/ConfigWizard.cpp:308
+#: src/slic3r/GUI/ConfigWizard.cpp:409
msgid ""
"Updates are never applied without user's consent and never overwrite user's "
"customized settings."
@@ -361,7 +379,7 @@ msgstr ""
"Updates are never applied without user's consent and never overwrite user's "
"customized settings."
-#: src/slic3r/GUI/ConfigWizard.cpp:313
+#: src/slic3r/GUI/ConfigWizard.cpp:414
msgid ""
"Additionally a backup snapshot of the whole configuration is created before "
"an update is applied."
@@ -369,55 +387,55 @@ msgstr ""
"Additionally a backup snapshot of the whole configuration is created before "
"an update is applied."
-#: src/slic3r/GUI/ConfigWizard.cpp:320
+#: src/slic3r/GUI/ConfigWizard.cpp:421
msgid "Other Vendors"
msgstr "Other Vendors"
-#: src/slic3r/GUI/ConfigWizard.cpp:322
+#: src/slic3r/GUI/ConfigWizard.cpp:423
msgid "Pick another vendor supported by Slic3r PE:"
msgstr "Pick another vendor supported by Slic3r PE:"
-#: src/slic3r/GUI/ConfigWizard.cpp:381
+#: src/slic3r/GUI/ConfigWizard.cpp:469
msgid "Firmware Type"
msgstr "Firmware Type"
-#: src/slic3r/GUI/ConfigWizard.cpp:381 src/slic3r/GUI/Tab.cpp:1820
+#: src/slic3r/GUI/ConfigWizard.cpp:469 src/slic3r/GUI/Tab.cpp:1870
msgid "Firmware"
msgstr "Firmware"
-#: src/slic3r/GUI/ConfigWizard.cpp:385
+#: src/slic3r/GUI/ConfigWizard.cpp:473
msgid "Choose the type of firmware used by your printer."
msgstr "Choose the type of firmware used by your printer."
-#: src/slic3r/GUI/ConfigWizard.cpp:419
+#: src/slic3r/GUI/ConfigWizard.cpp:507
msgid "Bed Shape and Size"
msgstr "Bed Shape and Size"
-#: src/slic3r/GUI/ConfigWizard.cpp:422
+#: src/slic3r/GUI/ConfigWizard.cpp:510
msgid "Set the shape of your printer's bed."
msgstr "Set the shape of your printer's bed."
-#: src/slic3r/GUI/ConfigWizard.cpp:436
+#: src/slic3r/GUI/ConfigWizard.cpp:524
msgid "Filament and Nozzle Diameters"
msgstr "Filament and Nozzle Diameters"
-#: src/slic3r/GUI/ConfigWizard.cpp:436
+#: src/slic3r/GUI/ConfigWizard.cpp:524
msgid "Print Diameters"
msgstr "Print Diameters"
-#: src/slic3r/GUI/ConfigWizard.cpp:452
+#: src/slic3r/GUI/ConfigWizard.cpp:540
msgid "Enter the diameter of your printer's hot end nozzle."
msgstr "Enter the diameter of your printer's hot end nozzle."
-#: src/slic3r/GUI/ConfigWizard.cpp:455
+#: src/slic3r/GUI/ConfigWizard.cpp:543
msgid "Nozzle Diameter:"
msgstr "Nozzle Diameter:"
-#: src/slic3r/GUI/ConfigWizard.cpp:465
+#: src/slic3r/GUI/ConfigWizard.cpp:553
msgid "Enter the diameter of your filament."
msgstr "Enter the diameter of your filament."
-#: src/slic3r/GUI/ConfigWizard.cpp:466
+#: src/slic3r/GUI/ConfigWizard.cpp:554
msgid ""
"Good precision is required, so use a caliper and do multiple measurements "
"along the filament, then compute the average."
@@ -425,35 +443,35 @@ msgstr ""
"Good precision is required, so use a caliper and do multiple measurements "
"along the filament, then compute the average."
-#: src/slic3r/GUI/ConfigWizard.cpp:469
+#: src/slic3r/GUI/ConfigWizard.cpp:557
msgid "Filament Diameter:"
msgstr "Filament Diameter:"
-#: src/slic3r/GUI/ConfigWizard.cpp:487
+#: src/slic3r/GUI/ConfigWizard.cpp:575
msgid "Extruder and Bed Temperatures"
msgstr "Extruder and Bed Temperatures"
-#: src/slic3r/GUI/ConfigWizard.cpp:487
+#: src/slic3r/GUI/ConfigWizard.cpp:575
msgid "Temperatures"
msgstr "Temperatures"
-#: src/slic3r/GUI/ConfigWizard.cpp:503
+#: src/slic3r/GUI/ConfigWizard.cpp:591
msgid "Enter the temperature needed for extruding your filament."
msgstr "Enter the temperature needed for extruding your filament."
-#: src/slic3r/GUI/ConfigWizard.cpp:504
+#: src/slic3r/GUI/ConfigWizard.cpp:592
msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS."
msgstr "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS."
-#: src/slic3r/GUI/ConfigWizard.cpp:507
+#: src/slic3r/GUI/ConfigWizard.cpp:595
msgid "Extrusion Temperature:"
msgstr "Extrusion Temperature:"
-#: src/slic3r/GUI/ConfigWizard.cpp:508 src/slic3r/GUI/ConfigWizard.cpp:522
+#: src/slic3r/GUI/ConfigWizard.cpp:596 src/slic3r/GUI/ConfigWizard.cpp:610
msgid "°C"
msgstr "°C"
-#: src/slic3r/GUI/ConfigWizard.cpp:517
+#: src/slic3r/GUI/ConfigWizard.cpp:605
msgid ""
"Enter the bed temperature needed for getting your filament to stick to your "
"heated bed."
@@ -461,7 +479,7 @@ msgstr ""
"Enter the bed temperature needed for getting your filament to stick to your "
"heated bed."
-#: src/slic3r/GUI/ConfigWizard.cpp:518
+#: src/slic3r/GUI/ConfigWizard.cpp:606
msgid ""
"A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have "
"no heated bed."
@@ -469,64 +487,78 @@ msgstr ""
"A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have "
"no heated bed."
-#: src/slic3r/GUI/ConfigWizard.cpp:521
+#: src/slic3r/GUI/ConfigWizard.cpp:609
msgid "Bed Temperature:"
msgstr "Bed Temperature:"
-#: src/slic3r/GUI/ConfigWizard.cpp:833
+#: src/slic3r/GUI/ConfigWizard.cpp:1001
+msgid "Select all standard printers"
+msgstr "Select all standard printers"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1004
msgid "< &Back"
msgstr "< &Back"
-#: src/slic3r/GUI/ConfigWizard.cpp:834
+#: src/slic3r/GUI/ConfigWizard.cpp:1005
msgid "&Next >"
msgstr "&Next >"
-#: src/slic3r/GUI/ConfigWizard.cpp:835
+#: src/slic3r/GUI/ConfigWizard.cpp:1006
msgid "&Finish"
msgstr "&Finish"
-#: src/slic3r/GUI/ConfigWizard.cpp:906
+#: src/slic3r/GUI/ConfigWizard.cpp:1007 src/slic3r/GUI/FirmwareDialog.cpp:142
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:37
+#: src/slic3r/GUI/ProgressStatusBar.cpp:28
+msgid "Cancel"
+msgstr "Cancel"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1021
+msgid "Prusa FFF Technology Printers"
+msgstr "Prusa FFF Technology Printers"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1024
+msgid "Prusa MSLA Technology Printers"
+msgstr "Prusa MSLA Technology Printers"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1111
msgid "Configuration Wizard"
msgstr "Configuration Wizard"
-#: src/slic3r/GUI/ConfigWizard.cpp:907
+#: src/slic3r/GUI/ConfigWizard.cpp:1112
msgid "Configuration &Wizard"
msgstr "Configuration &Wizard"
-#: src/slic3r/GUI/ConfigWizard.cpp:909
+#: src/slic3r/GUI/ConfigWizard.cpp:1114
msgid "Configuration Assistant"
msgstr "Configuration Assistant"
-#: src/slic3r/GUI/ConfigWizard.cpp:910
+#: src/slic3r/GUI/ConfigWizard.cpp:1115
msgid "Configuration &Assistant"
msgstr "Configuration &Assistant"
-#: src/slic3r/GUI/Field.cpp:109
+#: src/slic3r/GUI/Field.cpp:112
msgid "default value"
msgstr "default value"
-#: src/slic3r/GUI/Field.cpp:112
+#: src/slic3r/GUI/Field.cpp:115
msgid "parameter name"
msgstr "parameter name"
-#: src/slic3r/GUI/Field.cpp:140
+#: src/slic3r/GUI/Field.cpp:143
#, c-format
msgid "%s doesn't support percentage"
msgstr "%s doesn't support percentage"
-#: src/slic3r/GUI/Field.cpp:148 src/slic3r/GUI/Field.cpp:168
-msgid ""
-"Input value contains incorrect symbol(s).\n"
-"Use, please, only digits"
-msgstr ""
-"Input value contains incorrect symbol(s).\n"
-"Use, please, only digits"
+#: src/slic3r/GUI/Field.cpp:157 src/slic3r/GUI/Field.cpp:180
+msgid "Invalid numeric input."
+msgstr "Invalid numeric input."
-#: src/slic3r/GUI/Field.cpp:153
+#: src/slic3r/GUI/Field.cpp:162
msgid "Input value is out of range"
msgstr "Input value is out of range"
-#: src/slic3r/GUI/Field.cpp:176
+#: src/slic3r/GUI/Field.cpp:188
#, c-format
msgid ""
"Do you mean %d%% instead of %d %s?\n"
@@ -537,40 +569,35 @@ msgstr ""
"Select YES if you want to change this value to %d%%, \n"
"or NO if you are sure that %d %s is a correct value."
-#: src/slic3r/GUI/Field.cpp:179
+#: src/slic3r/GUI/Field.cpp:191
msgid "Parameter validation"
msgstr "Parameter validation"
-#: src/slic3r/GUI/FirmwareDialog.cpp:133
+#: src/slic3r/GUI/FirmwareDialog.cpp:141
msgid "Flash!"
msgstr "Flash!"
-#: src/slic3r/GUI/FirmwareDialog.cpp:134 src/slic3r/GUI/GLGizmo.cpp:2270
-msgid "Cancel"
-msgstr "Cancel"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:135
+#: src/slic3r/GUI/FirmwareDialog.cpp:143
msgid "Flashing in progress. Please do not disconnect the printer!"
msgstr "Flashing in progress. Please do not disconnect the printer!"
-#: src/slic3r/GUI/FirmwareDialog.cpp:245
+#: src/slic3r/GUI/FirmwareDialog.cpp:187
+msgid "Flashing failed: "
+msgstr "Flashing failed: "
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:268
msgid "Flashing succeeded!"
msgstr "Flashing succeeded!"
-#: src/slic3r/GUI/FirmwareDialog.cpp:246
+#: src/slic3r/GUI/FirmwareDialog.cpp:269
msgid "Flashing failed. Please see the avrdude log below."
msgstr "Flashing failed. Please see the avrdude log below."
-#: src/slic3r/GUI/FirmwareDialog.cpp:247
+#: src/slic3r/GUI/FirmwareDialog.cpp:270
msgid "Flashing cancelled."
msgstr "Flashing cancelled."
-#: src/slic3r/GUI/FirmwareDialog.cpp:279
-#, c-format
-msgid "Flashing failed: %s"
-msgstr "Flashing failed: %s"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:293
+#: src/slic3r/GUI/FirmwareDialog.cpp:308
#, c-format
msgid ""
"This firmware hex file does not match the printer model.\n"
@@ -587,60 +614,81 @@ msgstr ""
"Do you want to continue and flash this hex file anyway?\n"
"Please only continue if you are sure this is the right thing to do."
-#: src/slic3r/GUI/FirmwareDialog.cpp:380 src/slic3r/GUI/FirmwareDialog.cpp:414
+#: src/slic3r/GUI/FirmwareDialog.cpp:395 src/slic3r/GUI/FirmwareDialog.cpp:431
+#, c-format
msgid ""
-"Multiple Original Prusa i3 MMU 2.0 devices found. Please only connect one at "
-"a time for flashing."
+"Multiple %s devices found. Please only connect one at a time for flashing."
msgstr ""
-"Multiple Original Prusa i3 MMU 2.0 devices found. Please only connect one at "
-"a time for flashing."
+"Multiple %s devices found. Please only connect one at a time for flashing."
-#: src/slic3r/GUI/FirmwareDialog.cpp:508
-msgid "The device could not have been found"
-msgstr "The device could not have been found"
+#: src/slic3r/GUI/FirmwareDialog.cpp:412
+#, c-format
+msgid ""
+"The %s device was not found.\n"
+"If the device is connected, please press the Reset button next to the USB "
+"connector ..."
+msgstr ""
+"The %s device was not found.\n"
+"If the device is connected, please press the Reset button next to the USB "
+"connector ..."
-#: src/slic3r/GUI/FirmwareDialog.cpp:581
+#: src/slic3r/GUI/FirmwareDialog.cpp:525
+#, c-format
+msgid "The %s device could not have been found"
+msgstr "The %s device could not have been found"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:603
#, c-format
msgid "Error accessing port at %s: %s"
msgstr "Error accessing port at %s: %s"
-#: src/slic3r/GUI/FirmwareDialog.cpp:690
+#: src/slic3r/GUI/FirmwareDialog.cpp:605
+#, c-format
+msgid "Error: %s"
+msgstr "Error: %s"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:735
msgid "Firmware flasher"
msgstr "Firmware flasher"
-#: src/slic3r/GUI/FirmwareDialog.cpp:712
+#: src/slic3r/GUI/FirmwareDialog.cpp:762
msgid "Firmware image:"
msgstr "Firmware image:"
-#: src/slic3r/GUI/FirmwareDialog.cpp:716
+#: src/slic3r/GUI/FirmwareDialog.cpp:766
msgid "Serial port:"
msgstr "Serial port:"
-#: src/slic3r/GUI/FirmwareDialog.cpp:718
+#: src/slic3r/GUI/FirmwareDialog.cpp:768
msgid "Autodetected"
msgstr "Autodetected"
-#: src/slic3r/GUI/FirmwareDialog.cpp:719
+#: src/slic3r/GUI/FirmwareDialog.cpp:769
msgid "Rescan"
msgstr "Rescan"
-#: src/slic3r/GUI/FirmwareDialog.cpp:726
+#: src/slic3r/GUI/FirmwareDialog.cpp:776
msgid "Progress:"
msgstr "Progress:"
-#: src/slic3r/GUI/FirmwareDialog.cpp:729
+#: src/slic3r/GUI/FirmwareDialog.cpp:779
msgid "Status:"
msgstr "Status:"
-#: src/slic3r/GUI/FirmwareDialog.cpp:730
+#: src/slic3r/GUI/FirmwareDialog.cpp:780
msgid "Ready"
msgstr "Ready"
-#: src/slic3r/GUI/FirmwareDialog.cpp:750
-msgid "Advanced: avrdude output log"
-msgstr "Advanced: avrdude output log"
+#: src/slic3r/GUI/FirmwareDialog.cpp:800
+msgid "Advanced: Output log"
+msgstr "Advanced: Output log"
-#: src/slic3r/GUI/FirmwareDialog.cpp:809
+#: src/slic3r/GUI/FirmwareDialog.cpp:811
+#: src/slic3r/GUI/PrintHostDialogs.cpp:161
+msgid "Close"
+msgstr "Close"
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:859
msgid ""
"Are you sure you want to cancel firmware flashing?\n"
"This could leave your printer in an unusable state!"
@@ -648,158 +696,251 @@ msgstr ""
"Are you sure you want to cancel firmware flashing?\n"
"This could leave your printer in an unusable state!"
-#: src/slic3r/GUI/FirmwareDialog.cpp:810
+#: src/slic3r/GUI/FirmwareDialog.cpp:860
msgid "Confirmation"
msgstr "Confirmation"
-#: src/slic3r/GUI/FirmwareDialog.cpp:813
+#: src/slic3r/GUI/FirmwareDialog.cpp:863
msgid "Cancelling..."
msgstr "Cancelling..."
-#: src/slic3r/GUI/GLCanvas3D.cpp:4640
+#: src/slic3r/GUI/GLCanvas3D.cpp:709
msgid "Detected object outside print volume"
msgstr "Detected object outside print volume"
-#: src/slic3r/GUI/GLCanvas3D.cpp:7962
+#: src/slic3r/GUI/GLCanvas3D.cpp:710
msgid "Detected toolpath outside print volume"
msgstr "Detected toolpath outside print volume"
-#: src/slic3r/GUI/GLGizmo.cpp:751 src/slic3r/GUI/GUI_ObjectManipulation.cpp:300
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:322
-#: src/libslic3r/PrintConfig.cpp:3087
-msgid "Rotate"
-msgstr "Rotate"
+#: src/slic3r/GUI/GLCanvas3D.cpp:711
+msgid "Some objects are not visible when editing supports"
+msgstr "Some objects are not visible when editing supports"
-#: src/slic3r/GUI/GLGizmo.cpp:785
-msgid "Rotation (deg)"
-msgstr "Rotation (deg)"
+#: src/slic3r/GUI/GLCanvas3D.cpp:713
+msgid ""
+"Detected object outside print volume\n"
+"Resolve a clash to continue slicing/export process correctly"
+msgstr ""
+"Detected object outside print volume\n"
+"Resolve a clash to continue slicing/export process correctly"
-#: src/slic3r/GUI/GLGizmo.cpp:841 src/slic3r/GUI/GUI_ObjectManipulation.cpp:206
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:301
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:323
-#: src/libslic3r/PrintConfig.cpp:3111
-msgid "Scale"
-msgstr "Scale"
-
-#: src/slic3r/GUI/GLGizmo.cpp:1072
-msgid "Scale (%)"
-msgstr "Scale (%)"
-
-#: src/slic3r/GUI/GLGizmo.cpp:1200
-msgid "Move"
-msgstr "Move"
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Position (mm)"
-msgstr "Position (mm)"
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Displacement (mm)"
-msgstr "Displacement (mm)"
-
-#: src/slic3r/GUI/GLGizmo.cpp:1430
-msgid "Place on face"
-msgstr "Place on face"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2207
-msgid "Left mouse click - add point"
-msgstr "Left mouse click - add point"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2208
-msgid "Right mouse click - remove point"
-msgstr "Right mouse click - remove point"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2211
-msgid "Generate points automatically"
-msgstr "Generate points automatically"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2212
-msgid "Remove all points"
-msgstr "Remove all points"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2245
-msgid "SLA Support Points"
-msgstr "SLA Support Points"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2268 src/slic3r/GUI/GLGizmo.cpp:2468
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:35
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:195
msgid "Rotate lower part upwards"
msgstr "Rotate lower part upwards"
-#: src/slic3r/GUI/GLGizmo.cpp:2269 src/slic3r/GUI/GLGizmo.cpp:2470
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:36
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:198
msgid "Perform cut"
msgstr "Perform cut"
-#: src/slic3r/GUI/GLGizmo.cpp:2276
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:43
msgid "Cut object:"
msgstr "Cut object:"
-#: src/slic3r/GUI/GLGizmo.cpp:2356 src/slic3r/GUI/GLGizmo.cpp:2461
-#: src/libslic3r/PrintConfig.cpp:3016
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:88
+msgid "Cut [C]"
+msgstr "Cut [C]"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 src/libslic3r/PrintConfig.cpp:3006
msgid "Cut"
msgstr "Cut"
-#: src/slic3r/GUI/GLGizmo.cpp:2466
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:193
msgid "Keep upper part"
msgstr "Keep upper part"
-#: src/slic3r/GUI/GLGizmo.cpp:2467
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:194
msgid "Keep lower part"
msgstr "Keep lower part"
-#: src/slic3r/GUI/GUI.cpp:242
-msgid "Notice"
-msgstr "Notice"
+#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:32
+msgid "Place on face [F]"
+msgstr "Place on face [F]"
-#: src/slic3r/GUI/GUI.cpp:248
-msgid "Attempt to free unreferenced scalar"
-msgstr "Attempt to free unreferenced scalar"
+#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:51
+msgid "Move [M]"
+msgstr "Move [M]"
-#: src/slic3r/GUI/GUI.cpp:250 src/slic3r/GUI/WipeTowerDialog.cpp:40
-#: src/slic3r/GUI/WipeTowerDialog.cpp:322
+#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:176
+msgid "Position (mm)"
+msgstr "Position (mm)"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:176
+msgid "Displacement (mm)"
+msgstr "Displacement (mm)"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:458
+msgid "Rotate [R]"
+msgstr "Rotate [R]"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:491
+msgid "Rotation (deg)"
+msgstr "Rotation (deg)"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:51
+msgid "Scale [S]"
+msgstr "Scale [S]"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:276
+msgid "Scale (%)"
+msgstr "Scale (%)"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:597
+msgid "Left mouse click - add point"
+msgstr "Left mouse click - add point"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:598
+msgid "Right mouse click - remove point"
+msgstr "Right mouse click - remove point"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:599
+msgid "Shift + Left (+ drag) - select point(s)"
+msgstr "Shift + Left (+ drag) - select point(s)"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:606
+msgid "Head diameter: "
+msgstr "Head diameter: "
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:618
+msgid "Lock supports under new islands"
+msgstr "Lock supports under new islands"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:622
+msgid "Remove selected points"
+msgstr "Remove selected points"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:626
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:679
+msgid "Remove all points"
+msgstr "Remove all points"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:631
+msgid "Apply changes"
+msgstr "Apply changes"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:636
+msgid "Discard changes"
+msgstr "Discard changes"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:644
+msgid "Minimal points distance: "
+msgstr "Minimal points distance: "
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:655
+msgid "Support points density: "
+msgstr "Support points density: "
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:669
+msgid "Auto-generate points [A]"
+msgstr "Auto-generate points [A]"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:675
+msgid "Manual editing [M]"
+msgstr "Manual editing [M]"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:738
+msgid "SLA Support Points [L]"
+msgstr "SLA Support Points [L]"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:767
+msgid "Do you want to save your manually edited support points ?\n"
+msgstr "Do you want to save your manually edited support points ?\n"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:768
+msgid "Save changes?"
+msgstr "Save changes?"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:897
+msgid ""
+"Autogeneration will erase all manually edited points.\n"
+"\n"
+"Are you sure you want to do it?\n"
+msgstr ""
+"Autogeneration will erase all manually edited points.\n"
+"\n"
+"Are you sure you want to do it?\n"
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:899 src/slic3r/GUI/GUI.cpp:288
+#: src/slic3r/GUI/WipeTowerDialog.cpp:44 src/slic3r/GUI/WipeTowerDialog.cpp:328
msgid "Warning"
msgstr "Warning"
-#: src/slic3r/GUI/GUI_App.cpp:377
+#: src/slic3r/GUI/GUI.cpp:147 src/slic3r/GUI/Tab.cpp:2720
+msgid "It's impossible to print multi-part object(s) with SLA technology."
+msgstr "It's impossible to print multi-part object(s) with SLA technology."
+
+#: src/slic3r/GUI/GUI.cpp:148
+msgid "Please check and fix your object list."
+msgstr "Please check and fix your object list."
+
+#: src/slic3r/GUI/GUI.cpp:149 src/slic3r/GUI/GUI_App.cpp:679
+#: src/slic3r/GUI/Tab.cpp:2722
+msgid "Attention!"
+msgstr "Attention!"
+
+#: src/slic3r/GUI/GUI.cpp:282
+msgid "Notice"
+msgstr "Notice"
+
+#: src/slic3r/GUI/GUI_App.cpp:318
+msgid "Changing of an application language"
+msgstr "Changing of an application language"
+
+#: src/slic3r/GUI/GUI_App.cpp:326 src/slic3r/GUI/GUI_App.cpp:335
+msgid "Recreating"
+msgstr "Recreating"
+
+#: src/slic3r/GUI/GUI_App.cpp:339
+msgid "Loading of a current presets"
+msgstr "Loading of a current presets"
+
+#: src/slic3r/GUI/GUI_App.cpp:347
+msgid "Loading of a mode view"
+msgstr "Loading of a mode view"
+
+#: src/slic3r/GUI/GUI_App.cpp:429
msgid "Choose one file (3MF):"
msgstr "Choose one file (3MF):"
-#: src/slic3r/GUI/GUI_App.cpp:389
+#: src/slic3r/GUI/GUI_App.cpp:441
msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
msgstr "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
-#: src/slic3r/GUI/GUI_App.cpp:451
+#: src/slic3r/GUI/GUI_App.cpp:454
msgid "Array of language names and identifiers should have the same size."
msgstr "Array of language names and identifiers should have the same size."
-#: src/slic3r/GUI/GUI_App.cpp:461
+#: src/slic3r/GUI/GUI_App.cpp:464
msgid "Select the language"
msgstr "Select the language"
-#: src/slic3r/GUI/GUI_App.cpp:461
+#: src/slic3r/GUI/GUI_App.cpp:464
msgid "Language"
msgstr "Language"
-#: src/slic3r/GUI/GUI_App.cpp:529 src/libslic3r/PrintConfig.cpp:270
+#: src/slic3r/GUI/GUI_App.cpp:534 src/slic3r/GUI/GUI_ObjectList.cpp:1067
+#: src/libslic3r/PrintConfig.cpp:298
msgid "Default"
msgstr "Default"
-#: src/slic3r/GUI/GUI_App.cpp:609
+#: src/slic3r/GUI/GUI_App.cpp:603
msgid "&Configuration Snapshots"
msgstr "&Configuration Snapshots"
-#: src/slic3r/GUI/GUI_App.cpp:609
+#: src/slic3r/GUI/GUI_App.cpp:603
msgid "Inspect / activate configuration snapshots"
msgstr "Inspect / activate configuration snapshots"
-#: src/slic3r/GUI/GUI_App.cpp:610
+#: src/slic3r/GUI/GUI_App.cpp:604
msgid "Take Configuration &Snapshot"
msgstr "Take Configuration &Snapshot"
-#: src/slic3r/GUI/GUI_App.cpp:610
+#: src/slic3r/GUI/GUI_App.cpp:604
msgid "Capture a configuration snapshot"
msgstr "Capture a configuration snapshot"
-#: src/slic3r/GUI/GUI_App.cpp:613
+#: src/slic3r/GUI/GUI_App.cpp:607
msgid "&Preferences"
msgstr "&Preferences"
@@ -807,7 +948,7 @@ msgstr "&Preferences"
msgid "Application preferences"
msgstr "Application preferences"
-#: src/slic3r/GUI/GUI_App.cpp:616
+#: src/slic3r/GUI/GUI_App.cpp:616 src/slic3r/GUI/wxExtensions.cpp:2446
msgid "Simple"
msgstr "Simple"
@@ -815,12 +956,14 @@ msgstr "Simple"
msgid "Simple View Mode"
msgstr "Simple View Mode"
-#: src/slic3r/GUI/GUI_App.cpp:617 src/slic3r/GUI/GUI_ObjectList.cpp:39
-#: src/slic3r/GUI/Tab.cpp:948 src/slic3r/GUI/Tab.cpp:962
-#: src/slic3r/GUI/Tab.cpp:1058 src/slic3r/GUI/Tab.cpp:1061
-#: src/slic3r/GUI/Tab.cpp:1425 src/slic3r/GUI/Tab.cpp:1840
-#: src/libslic3r/PrintConfig.cpp:156 src/libslic3r/PrintConfig.cpp:323
-#: src/libslic3r/PrintConfig.cpp:999 src/libslic3r/PrintConfig.cpp:2298
+#: src/slic3r/GUI/GUI_App.cpp:617 src/slic3r/GUI/GUI_ObjectList.cpp:73
+#: src/slic3r/GUI/Tab.cpp:977 src/slic3r/GUI/Tab.cpp:992
+#: src/slic3r/GUI/Tab.cpp:1090 src/slic3r/GUI/Tab.cpp:1093
+#: src/slic3r/GUI/Tab.cpp:1466 src/slic3r/GUI/Tab.cpp:1890
+#: src/slic3r/GUI/Tab.cpp:3347 src/slic3r/GUI/wxExtensions.cpp:2447
+#: src/libslic3r/PrintConfig.cpp:72 src/libslic3r/PrintConfig.cpp:186
+#: src/libslic3r/PrintConfig.cpp:349 src/libslic3r/PrintConfig.cpp:987
+#: src/libslic3r/PrintConfig.cpp:2173
msgid "Advanced"
msgstr "Advanced"
@@ -828,7 +971,7 @@ msgstr "Advanced"
msgid "Advanced View Mode"
msgstr "Advanced View Mode"
-#: src/slic3r/GUI/GUI_App.cpp:618
+#: src/slic3r/GUI/GUI_App.cpp:618 src/slic3r/GUI/wxExtensions.cpp:2448
msgid "Expert"
msgstr "Expert"
@@ -836,573 +979,716 @@ msgstr "Expert"
msgid "Expert View Mode"
msgstr "Expert View Mode"
-#: src/slic3r/GUI/GUI_App.cpp:620
+#: src/slic3r/GUI/GUI_App.cpp:623
msgid "Mode"
msgstr "Mode"
-#: src/slic3r/GUI/GUI_App.cpp:620
+#: src/slic3r/GUI/GUI_App.cpp:623
msgid "Slic3r View Mode"
msgstr "Slic3r View Mode"
-#: src/slic3r/GUI/GUI_App.cpp:622
+#: src/slic3r/GUI/GUI_App.cpp:625
msgid "Change Application &Language"
msgstr "Change Application &Language"
-#: src/slic3r/GUI/GUI_App.cpp:624
+#: src/slic3r/GUI/GUI_App.cpp:627
msgid "Flash printer &firmware"
msgstr "Flash printer &firmware"
-#: src/slic3r/GUI/GUI_App.cpp:624
+#: src/slic3r/GUI/GUI_App.cpp:627
msgid "Upload a firmware image into an Arduino based printer"
msgstr "Upload a firmware image into an Arduino based printer"
-#: src/slic3r/GUI/GUI_App.cpp:636
+#: src/slic3r/GUI/GUI_App.cpp:639
msgid "Taking configuration snapshot"
msgstr "Taking configuration snapshot"
-#: src/slic3r/GUI/GUI_App.cpp:636
+#: src/slic3r/GUI/GUI_App.cpp:639
msgid "Snapshot name"
msgstr "Snapshot name"
-#: src/slic3r/GUI/GUI_App.cpp:674
-msgid "Application will be restarted"
-msgstr "Application will be restarted"
+#: src/slic3r/GUI/GUI_App.cpp:676
+msgid "Application will be restarted after language change."
+msgstr "Application will be restarted after language change."
-#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/Tab.cpp:2606
-msgid "Attention!"
-msgstr "Attention!"
+#: src/slic3r/GUI/GUI_App.cpp:677
+msgid "3D-Scene will be cleaned."
+msgstr "3D-Scene will be cleaned."
-#: src/slic3r/GUI/GUI_App.cpp:691
+#: src/slic3r/GUI/GUI_App.cpp:678
+msgid "Please, check your changes before."
+msgstr "Please, check your changes before."
+
+#: src/slic3r/GUI/GUI_App.cpp:706
msgid "&Configuration"
msgstr "&Configuration"
-#: src/slic3r/GUI/GUI_App.cpp:711
+#: src/slic3r/GUI/GUI_App.cpp:726
msgid "You have unsaved changes "
msgstr "You have unsaved changes "
-#: src/slic3r/GUI/GUI_App.cpp:711
+#: src/slic3r/GUI/GUI_App.cpp:726
msgid ". Discard changes and continue anyway?"
msgstr ". Discard changes and continue anyway?"
-#: src/slic3r/GUI/GUI_App.cpp:712
+#: src/slic3r/GUI/GUI_App.cpp:727
msgid "Unsaved Presets"
msgstr "Unsaved Presets"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:31 src/libslic3r/PrintConfig.cpp:47
-#: src/libslic3r/PrintConfig.cpp:115 src/libslic3r/PrintConfig.cpp:357
-#: src/libslic3r/PrintConfig.cpp:410 src/libslic3r/PrintConfig.cpp:419
-#: src/libslic3r/PrintConfig.cpp:849 src/libslic3r/PrintConfig.cpp:1037
-#: src/libslic3r/PrintConfig.cpp:1354 src/libslic3r/PrintConfig.cpp:1426
-#: src/libslic3r/PrintConfig.cpp:1618 src/libslic3r/PrintConfig.cpp:2091
-#: src/libslic3r/PrintConfig.cpp:2150
+#: src/slic3r/GUI/GUI_ObjectList.cpp:28 src/slic3r/GUI/GUI_ObjectList.cpp:65
+#: src/libslic3r/PrintConfig.cpp:56 src/libslic3r/PrintConfig.cpp:149
+#: src/libslic3r/PrintConfig.cpp:380 src/libslic3r/PrintConfig.cpp:437
+#: src/libslic3r/PrintConfig.cpp:445 src/libslic3r/PrintConfig.cpp:841
+#: src/libslic3r/PrintConfig.cpp:1025 src/libslic3r/PrintConfig.cpp:1304
+#: src/libslic3r/PrintConfig.cpp:1370 src/libslic3r/PrintConfig.cpp:1551
+#: src/libslic3r/PrintConfig.cpp:1986 src/libslic3r/PrintConfig.cpp:2042
msgid "Layers and Perimeters"
msgstr "Layers and Perimeters"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:32 src/slic3r/GUI/Tab.cpp:952
-#: src/slic3r/GUI/Tab.cpp:953 src/slic3r/GUI/Tab.cpp:1274
-#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:366
-#: src/libslic3r/PrintConfig.cpp:730 src/libslic3r/PrintConfig.cpp:745
-#: src/libslic3r/PrintConfig.cpp:783 src/libslic3r/PrintConfig.cpp:938
-#: src/libslic3r/PrintConfig.cpp:949 src/libslic3r/PrintConfig.cpp:969
-#: src/libslic3r/PrintConfig.cpp:989 src/libslic3r/PrintConfig.cpp:1010
-#: src/libslic3r/PrintConfig.cpp:1733 src/libslic3r/PrintConfig.cpp:1752
+#: src/slic3r/GUI/GUI_ObjectList.cpp:29 src/slic3r/GUI/GUI_ObjectList.cpp:66
+#: src/slic3r/GUI/Plater.cpp:431 src/slic3r/GUI/Tab.cpp:981
+#: src/slic3r/GUI/Tab.cpp:982 src/slic3r/GUI/Tab.cpp:1311
+#: src/libslic3r/PrintConfig.cpp:166 src/libslic3r/PrintConfig.cpp:388
+#: src/libslic3r/PrintConfig.cpp:728 src/libslic3r/PrintConfig.cpp:742
+#: src/libslic3r/PrintConfig.cpp:779 src/libslic3r/PrintConfig.cpp:932
+#: src/libslic3r/PrintConfig.cpp:942 src/libslic3r/PrintConfig.cpp:960
+#: src/libslic3r/PrintConfig.cpp:978 src/libslic3r/PrintConfig.cpp:997
+#: src/libslic3r/PrintConfig.cpp:1658 src/libslic3r/PrintConfig.cpp:1675
msgid "Infill"
msgstr "Infill"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_Preview.cpp:262
-#: src/slic3r/GUI/Tab.cpp:980 src/slic3r/GUI/Tab.cpp:981
-#: src/libslic3r/PrintConfig.cpp:305 src/libslic3r/PrintConfig.cpp:1484
-#: src/libslic3r/PrintConfig.cpp:1865 src/libslic3r/PrintConfig.cpp:1872
-#: src/libslic3r/PrintConfig.cpp:1881 src/libslic3r/PrintConfig.cpp:1894
-#: src/libslic3r/PrintConfig.cpp:1905 src/libslic3r/PrintConfig.cpp:1914
-#: src/libslic3r/PrintConfig.cpp:1930 src/libslic3r/PrintConfig.cpp:1953
-#: src/libslic3r/PrintConfig.cpp:1965 src/libslic3r/PrintConfig.cpp:1983
-#: src/libslic3r/PrintConfig.cpp:1993 src/libslic3r/PrintConfig.cpp:2003
-#: src/libslic3r/PrintConfig.cpp:2014 src/libslic3r/PrintConfig.cpp:2029
-#: src/libslic3r/PrintConfig.cpp:2038 src/libslic3r/PrintConfig.cpp:2039
-#: src/libslic3r/PrintConfig.cpp:2048 src/libslic3r/PrintConfig.cpp:2057
-#: src/libslic3r/PrintConfig.cpp:2072 src/libslic3r/GCode/PreviewData.cpp:172
+#: src/slic3r/GUI/GUI_ObjectList.cpp:30 src/slic3r/GUI/GUI_ObjectList.cpp:67
+#: src/slic3r/GUI/GUI_Preview.cpp:236 src/slic3r/GUI/Tab.cpp:1010
+#: src/slic3r/GUI/Tab.cpp:1011 src/libslic3r/PrintConfig.cpp:333
+#: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1779
+#: src/libslic3r/PrintConfig.cpp:1785 src/libslic3r/PrintConfig.cpp:1793
+#: src/libslic3r/PrintConfig.cpp:1805 src/libslic3r/PrintConfig.cpp:1815
+#: src/libslic3r/PrintConfig.cpp:1823 src/libslic3r/PrintConfig.cpp:1838
+#: src/libslic3r/PrintConfig.cpp:1859 src/libslic3r/PrintConfig.cpp:1870
+#: src/libslic3r/PrintConfig.cpp:1886 src/libslic3r/PrintConfig.cpp:1895
+#: src/libslic3r/PrintConfig.cpp:1904 src/libslic3r/PrintConfig.cpp:1915
+#: src/libslic3r/PrintConfig.cpp:1929 src/libslic3r/PrintConfig.cpp:1937
+#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1947
+#: src/libslic3r/PrintConfig.cpp:1955 src/libslic3r/PrintConfig.cpp:1969
+#: src/libslic3r/GCode/PreviewData.cpp:172
msgid "Support material"
msgstr "Support material"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_Preview.cpp:241
-#: src/slic3r/GUI/Tab.cpp:1005 src/libslic3r/PrintConfig.cpp:169
-#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:881
-#: src/libslic3r/PrintConfig.cpp:1011 src/libslic3r/PrintConfig.cpp:1416
-#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1721
-#: src/libslic3r/PrintConfig.cpp:1776 src/libslic3r/PrintConfig.cpp:2136
-msgid "Speed"
-msgstr "Speed"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/Tab.cpp:1038
-#: src/slic3r/GUI/Tab.cpp:1744 src/libslic3r/PrintConfig.cpp:430
-#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:1393
-#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1944
-#: src/libslic3r/PrintConfig.cpp:1973 src/libslic3r/PrintConfig.cpp:2271
-#: src/libslic3r/PrintConfig.cpp:2280
+#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_ObjectList.cpp:69
+#: src/slic3r/GUI/Tab.cpp:1070 src/slic3r/GUI/Tab.cpp:1794
+#: src/libslic3r/PrintConfig.cpp:455 src/libslic3r/PrintConfig.cpp:953
+#: src/libslic3r/PrintConfig.cpp:1339 src/libslic3r/PrintConfig.cpp:1667
+#: src/libslic3r/PrintConfig.cpp:1851 src/libslic3r/PrintConfig.cpp:1877
+#: src/libslic3r/PrintConfig.cpp:2149 src/libslic3r/PrintConfig.cpp:2157
msgid "Extruders"
msgstr "Extruders"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/libslic3r/PrintConfig.cpp:387
-#: src/libslic3r/PrintConfig.cpp:504 src/libslic3r/PrintConfig.cpp:836
-#: src/libslic3r/PrintConfig.cpp:970 src/libslic3r/PrintConfig.cpp:1403
-#: src/libslic3r/PrintConfig.cpp:1765 src/libslic3r/PrintConfig.cpp:1954
-#: src/libslic3r/PrintConfig.cpp:2124
+#: src/slic3r/GUI/GUI_ObjectList.cpp:39
+msgid "Pad and Support"
+msgstr "Pad and Support"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:68 src/slic3r/GUI/GUI_Preview.cpp:215
+#: src/slic3r/GUI/Tab.cpp:1035 src/libslic3r/PrintConfig.cpp:198
+#: src/libslic3r/PrintConfig.cpp:425 src/libslic3r/PrintConfig.cpp:870
+#: src/libslic3r/PrintConfig.cpp:998 src/libslic3r/PrintConfig.cpp:1360
+#: src/libslic3r/PrintConfig.cpp:1597 src/libslic3r/PrintConfig.cpp:1646
+#: src/libslic3r/PrintConfig.cpp:1697 src/libslic3r/PrintConfig.cpp:2028
+msgid "Speed"
+msgstr "Speed"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:70 src/libslic3r/PrintConfig.cpp:415
+#: src/libslic3r/PrintConfig.cpp:522 src/libslic3r/PrintConfig.cpp:829
+#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:1348
+#: src/libslic3r/PrintConfig.cpp:1687 src/libslic3r/PrintConfig.cpp:1860
+#: src/libslic3r/PrintConfig.cpp:2017
msgid "Extrusion Width"
msgstr "Extrusion Width"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:41 src/slic3r/GUI/Tab.cpp:3179
-#: src/slic3r/GUI/Tab.cpp:3180 src/libslic3r/PrintConfig.cpp:2488
-#: src/libslic3r/PrintConfig.cpp:2495 src/libslic3r/PrintConfig.cpp:2504
-#: src/libslic3r/PrintConfig.cpp:2513 src/libslic3r/PrintConfig.cpp:2522
-#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2558
-#: src/libslic3r/PrintConfig.cpp:2567 src/libslic3r/PrintConfig.cpp:2576
-#: src/libslic3r/PrintConfig.cpp:2585 src/libslic3r/PrintConfig.cpp:2594
-#: src/libslic3r/PrintConfig.cpp:2603 src/libslic3r/PrintConfig.cpp:2612
-#: src/libslic3r/PrintConfig.cpp:2621
+#: src/slic3r/GUI/GUI_ObjectList.cpp:75 src/slic3r/GUI/Plater.cpp:410
+#: src/slic3r/GUI/Tab.cpp:3309 src/slic3r/GUI/Tab.cpp:3310
+#: src/libslic3r/PrintConfig.cpp:2359 src/libslic3r/PrintConfig.cpp:2366
+#: src/libslic3r/PrintConfig.cpp:2375 src/libslic3r/PrintConfig.cpp:2384
+#: src/libslic3r/PrintConfig.cpp:2394 src/libslic3r/PrintConfig.cpp:2420
+#: src/libslic3r/PrintConfig.cpp:2427 src/libslic3r/PrintConfig.cpp:2438
+#: src/libslic3r/PrintConfig.cpp:2448 src/libslic3r/PrintConfig.cpp:2457
+#: src/libslic3r/PrintConfig.cpp:2467 src/libslic3r/PrintConfig.cpp:2476
+#: src/libslic3r/PrintConfig.cpp:2486 src/libslic3r/PrintConfig.cpp:2496
+#: src/libslic3r/PrintConfig.cpp:2504
msgid "Supports"
msgstr "Supports"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:42 src/slic3r/GUI/Tab.cpp:3205
-#: src/slic3r/GUI/Tab.cpp:3206 src/libslic3r/PrintConfig.cpp:2630
-#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2646
-#: src/libslic3r/PrintConfig.cpp:2655 src/libslic3r/PrintConfig.cpp:2664
+#: src/slic3r/GUI/GUI_ObjectList.cpp:76 src/slic3r/GUI/Tab.cpp:3337
+#: src/slic3r/GUI/Tab.cpp:3338 src/libslic3r/PrintConfig.cpp:2512
+#: src/libslic3r/PrintConfig.cpp:2519 src/libslic3r/PrintConfig.cpp:2530
+#: src/libslic3r/PrintConfig.cpp:2540 src/libslic3r/PrintConfig.cpp:2553
+#: src/libslic3r/PrintConfig.cpp:2562
msgid "Pad"
msgstr "Pad"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:115
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:129
+#: src/slic3r/GUI/GUI_ObjectList.cpp:173
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:45
msgid "Name"
msgstr "Name"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:134
+#: src/slic3r/GUI/GUI_ObjectList.cpp:201
msgid "Right button click the icon to change the object settings"
msgstr "Right button click the icon to change the object settings"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:142
+#: src/slic3r/GUI/GUI_ObjectList.cpp:209
#, c-format
msgid "Auto-repaired (%d errors):\n"
msgstr "Auto-repaired (%d errors):\n"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:145
+#: src/slic3r/GUI/GUI_ObjectList.cpp:212
msgid "degenerate facets"
msgstr "degenerate facets"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:146
+#: src/slic3r/GUI/GUI_ObjectList.cpp:213
msgid "edges fixed"
msgstr "edges fixed"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:147
+#: src/slic3r/GUI/GUI_ObjectList.cpp:214
msgid "facets removed"
msgstr "facets removed"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:148
+#: src/slic3r/GUI/GUI_ObjectList.cpp:215
msgid "facets added"
msgstr "facets added"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:149
+#: src/slic3r/GUI/GUI_ObjectList.cpp:216
msgid "facets reversed"
msgstr "facets reversed"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:150
+#: src/slic3r/GUI/GUI_ObjectList.cpp:217
msgid "backwards edges"
msgstr "backwards edges"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:164
+#: src/slic3r/GUI/GUI_ObjectList.cpp:231
msgid "Right button click the icon to fix STL through Netfabb"
msgstr "Right button click the icon to fix STL through Netfabb"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:196 src/slic3r/GUI/Tab.cpp:1389
-#: src/libslic3r/PrintConfig.cpp:429
+#: src/slic3r/GUI/GUI_ObjectList.cpp:278 src/slic3r/GUI/Tab.cpp:1430
+#: src/libslic3r/PrintConfig.cpp:454
msgid "Extruder"
msgstr "Extruder"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:615
+#: src/slic3r/GUI/GUI_ObjectList.cpp:683 src/slic3r/GUI/GUI_ObjectList.cpp:963
+#: src/slic3r/GUI/GUI_ObjectList.cpp:969 src/slic3r/GUI/GUI_ObjectList.cpp:1199
+#, c-format
+msgid "Quick Add Settings (%s)"
+msgstr "Quick Add Settings (%s)"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:746
msgid "Select showing settings"
msgstr "Select showing settings"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:655
+#: src/slic3r/GUI/GUI_ObjectList.cpp:874
msgid "Load"
msgstr "Load"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659 src/slic3r/GUI/GUI_ObjectList.cpp:688
-#: src/slic3r/GUI/GUI_ObjectList.cpp:691
+#: src/slic3r/GUI/GUI_ObjectList.cpp:879 src/slic3r/GUI/GUI_ObjectList.cpp:911
+#: src/slic3r/GUI/GUI_ObjectList.cpp:914
msgid "Box"
msgstr "Box"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
+#: src/slic3r/GUI/GUI_ObjectList.cpp:879
msgid "Cylinder"
msgstr "Cylinder"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
+#: src/slic3r/GUI/GUI_ObjectList.cpp:879
msgid "Sphere"
msgstr "Sphere"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
+#: src/slic3r/GUI/GUI_ObjectList.cpp:879
msgid "Slab"
msgstr "Slab"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:671 src/slic3r/GUI/GUI_ObjectList.cpp:685
+#: src/slic3r/GUI/GUI_ObjectList.cpp:890 src/slic3r/GUI/GUI_ObjectList.cpp:906
msgid "Add part"
msgstr "Add part"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:672
+#: src/slic3r/GUI/GUI_ObjectList.cpp:891
msgid "Add modifier"
msgstr "Add modifier"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:673 src/slic3r/GUI/GUI_ObjectList.cpp:687
+#: src/slic3r/GUI/GUI_ObjectList.cpp:892 src/slic3r/GUI/GUI_ObjectList.cpp:910
msgid "Add support enforcer"
msgstr "Add support enforcer"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:674 src/slic3r/GUI/GUI_ObjectList.cpp:690
+#: src/slic3r/GUI/GUI_ObjectList.cpp:893 src/slic3r/GUI/GUI_ObjectList.cpp:913
msgid "Add support blocker"
msgstr "Add support blocker"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:711
+#: src/slic3r/GUI/GUI_ObjectList.cpp:934
msgid "Split to parts"
msgstr "Split to parts"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:725
+#: src/slic3r/GUI/GUI_ObjectList.cpp:942
msgid "Add settings"
msgstr "Add settings"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:739
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1009
msgid "Change type"
msgstr "Change type"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1009
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1016
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1153
+msgid "Set as a Separated Object"
+msgstr "Set as a Separated Object"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1024
+msgid "Rename"
+msgstr "Rename"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1034
+msgid "Fix through the Netfabb"
+msgstr "Fix through the Netfabb"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1041 src/slic3r/GUI/Plater.cpp:2861
+msgid "Export as STL"
+msgstr "Export as STL"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1048
+msgid "Change extruder"
+msgstr "Change extruder"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1073
+msgid "Select new extruder for the object/part"
+msgstr "Select new extruder for the object/part"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1079 src/slic3r/GUI/Plater.cpp:2825
+#: src/slic3r/GUI/Plater.cpp:2843 src/slic3r/GUI/Tab.cpp:2860
+msgid "Delete"
+msgstr "Delete"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1153
+msgid "Set as a Separated Objects"
+msgstr "Set as a Separated Objects"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1374
+msgid "Generic"
+msgstr "Generic"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1516
msgid "You can't delete the last solid part from object."
msgstr "You can't delete the last solid part from object."
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1017
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1533
msgid "You can't delete the last intance from object."
msgstr "You can't delete the last intance from object."
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1044 src/slic3r/GUI/Plater.cpp:1825
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1560 src/slic3r/GUI/Plater.cpp:2219
msgid ""
"The selected object couldn't be split because it contains only one part."
msgstr ""
"The selected object couldn't be split because it contains only one part."
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1138
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1676
msgid "Group manipulation"
msgstr "Group manipulation"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1149
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1688
msgid "Object manipulation"
msgstr "Object manipulation"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1159
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1698
msgid "Object Settings to modify"
msgstr "Object Settings to modify"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1163
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1702
msgid "Part Settings to modify"
msgstr "Part Settings to modify"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1173
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1711
msgid "Part manipulation"
msgstr "Part manipulation"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1180
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1717
msgid "Instance manipulation"
msgstr "Instance manipulation"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1655
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2240
+msgid "Object or Instance"
+msgstr "Object or Instance"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2240
+msgid "Part"
+msgstr "Part"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2242
+msgid "Unsupported selection"
+msgstr "Unsupported selection"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2243
+#, c-format
+msgid "You started your selection with %s Item."
+msgstr "You started your selection with %s Item."
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2244
+#, c-format
+msgid "In this mode you can select only other %s Items%s"
+msgstr "In this mode you can select only other %s Items%s"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2247
+msgid "of a current Object"
+msgstr "of a current Object"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2252
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2325 src/slic3r/GUI/Plater.cpp:117
+msgid "Info"
+msgstr "Info"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2366
msgid "You can't change a type of the last solid part of the object."
msgstr "You can't change a type of the last solid part of the object."
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1662
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2373
msgid "Select type of part"
msgstr "Select type of part"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1744 src/slic3r/GUI/Tab.cpp:3070
-#: src/slic3r/GUI/Tab.cpp:3074
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2538
+msgid "Enter new name"
+msgstr "Enter new name"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2538
+msgid "Renaming"
+msgstr "Renaming"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2554
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2632 src/slic3r/GUI/Tab.cpp:3191
+#: src/slic3r/GUI/Tab.cpp:3195
msgid "The supplied name is not valid;"
msgstr "The supplied name is not valid;"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1745 src/slic3r/GUI/Tab.cpp:3071
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2555
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2633 src/slic3r/GUI/Tab.cpp:3192
msgid "the following characters are not allowed:"
msgstr "the following characters are not allowed:"
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:21
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2653
+msgid "Set extruder for selected items"
+msgstr "Set extruder for selected items"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2654
+msgid "Select extruder number for selected objects and/or parts"
+msgstr "Select extruder number for selected objects and/or parts"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2667
+msgid "Select extruder number:"
+msgstr "Select extruder number:"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2668
+msgid "This extruder will be set for selected items"
+msgstr "This extruder will be set for selected items"
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:25
msgid "Object Manipulation"
msgstr "Object Manipulation"
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:132
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:47
msgid "Object name"
msgstr "Object name"
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:115
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:160
msgid "Position"
msgstr "Position"
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:205
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:116
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:161
msgid "Rotation"
msgstr "Rotation"
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:117
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:201
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:221
+#: src/libslic3r/PrintConfig.cpp:3070
+msgid "Scale"
+msgstr "Scale"
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:162
msgid "Scale factors"
msgstr "Scale factors"
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:321
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:200
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:220
+#: src/libslic3r/PrintConfig.cpp:3055
+msgid "Rotate"
+msgstr "Rotate"
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:219
msgid "Translate"
msgstr "Translate"
-#: src/slic3r/GUI/GUI_Preview.cpp:235
+#: src/slic3r/GUI/GUI_ObjectSettings.cpp:58
+msgid "Additional Settings"
+msgstr "Additional Settings"
+
+#: src/slic3r/GUI/GUI_Preview.cpp:209
msgid "View"
msgstr "View"
-#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/GUI_Preview.cpp:550
+#: src/slic3r/GUI/GUI_Preview.cpp:212 src/slic3r/GUI/GUI_Preview.cpp:525
#: src/libslic3r/GCode/PreviewData.cpp:394
msgid "Feature type"
msgstr "Feature type"
-#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/PrintConfig.cpp:443
+#: src/slic3r/GUI/GUI_Preview.cpp:213 src/libslic3r/PrintConfig.cpp:467
msgid "Height"
msgstr "Height"
-#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/PrintConfig.cpp:2255
+#: src/slic3r/GUI/GUI_Preview.cpp:214 src/libslic3r/PrintConfig.cpp:2135
msgid "Width"
msgstr "Width"
-#: src/slic3r/GUI/GUI_Preview.cpp:242
+#: src/slic3r/GUI/GUI_Preview.cpp:216
msgid "Volumetric flow rate"
msgstr "Volumetric flow rate"
-#: src/slic3r/GUI/GUI_Preview.cpp:243 src/slic3r/GUI/GUI_Preview.cpp:347
-#: src/slic3r/GUI/GUI_Preview.cpp:496 src/slic3r/GUI/GUI_Preview.cpp:718
-#: src/libslic3r/GCode/PreviewData.cpp:404
+#: src/slic3r/GUI/GUI_Preview.cpp:217 src/slic3r/GUI/GUI_Preview.cpp:315
+#: src/slic3r/GUI/GUI_Preview.cpp:469 src/slic3r/GUI/GUI_Preview.cpp:525
+#: src/slic3r/GUI/GUI_Preview.cpp:701 src/libslic3r/GCode/PreviewData.cpp:404
msgid "Tool"
msgstr "Tool"
-#: src/slic3r/GUI/GUI_Preview.cpp:244 src/slic3r/GUI/GUI_Preview.cpp:550
+#: src/slic3r/GUI/GUI_Preview.cpp:218 src/slic3r/GUI/GUI_Preview.cpp:523
#: src/libslic3r/GCode/PreviewData.cpp:406
msgid "Color Print"
msgstr "Color Print"
-#: src/slic3r/GUI/GUI_Preview.cpp:247
+#: src/slic3r/GUI/GUI_Preview.cpp:221
msgid "Show"
msgstr "Show"
-#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/GUI_Preview.cpp:251
+#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/GUI_Preview.cpp:225
msgid "Feature types"
msgstr "Feature types"
-#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/GCode/PreviewData.cpp:163
+#: src/slic3r/GUI/GUI_Preview.cpp:227 src/libslic3r/GCode/PreviewData.cpp:163
msgid "Perimeter"
msgstr "Perimeter"
-#: src/slic3r/GUI/GUI_Preview.cpp:254 src/libslic3r/GCode/PreviewData.cpp:164
+#: src/slic3r/GUI/GUI_Preview.cpp:228 src/libslic3r/GCode/PreviewData.cpp:164
msgid "External perimeter"
msgstr "External perimeter"
-#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/GCode/PreviewData.cpp:165
+#: src/slic3r/GUI/GUI_Preview.cpp:229 src/libslic3r/GCode/PreviewData.cpp:165
msgid "Overhang perimeter"
msgstr "Overhang perimeter"
-#: src/slic3r/GUI/GUI_Preview.cpp:256 src/libslic3r/GCode/PreviewData.cpp:166
+#: src/slic3r/GUI/GUI_Preview.cpp:230 src/libslic3r/GCode/PreviewData.cpp:166
msgid "Internal infill"
msgstr "Internal infill"
-#: src/slic3r/GUI/GUI_Preview.cpp:257 src/libslic3r/PrintConfig.cpp:1764
-#: src/libslic3r/PrintConfig.cpp:1775 src/libslic3r/GCode/PreviewData.cpp:167
+#: src/slic3r/GUI/GUI_Preview.cpp:231 src/libslic3r/PrintConfig.cpp:1686
+#: src/libslic3r/PrintConfig.cpp:1696 src/libslic3r/GCode/PreviewData.cpp:167
msgid "Solid infill"
msgstr "Solid infill"
-#: src/slic3r/GUI/GUI_Preview.cpp:258 src/libslic3r/PrintConfig.cpp:2123
-#: src/libslic3r/PrintConfig.cpp:2135 src/libslic3r/GCode/PreviewData.cpp:168
+#: src/slic3r/GUI/GUI_Preview.cpp:232 src/libslic3r/PrintConfig.cpp:2016
+#: src/libslic3r/PrintConfig.cpp:2027 src/libslic3r/GCode/PreviewData.cpp:168
msgid "Top solid infill"
msgstr "Top solid infill"
-#: src/slic3r/GUI/GUI_Preview.cpp:259 src/libslic3r/GCode/PreviewData.cpp:169
+#: src/slic3r/GUI/GUI_Preview.cpp:233 src/libslic3r/GCode/PreviewData.cpp:169
msgid "Bridge infill"
msgstr "Bridge infill"
-#: src/slic3r/GUI/GUI_Preview.cpp:260 src/libslic3r/PrintConfig.cpp:880
+#: src/slic3r/GUI/GUI_Preview.cpp:234 src/libslic3r/PrintConfig.cpp:869
#: src/libslic3r/GCode/PreviewData.cpp:170
msgid "Gap fill"
msgstr "Gap fill"
-#: src/slic3r/GUI/GUI_Preview.cpp:261 src/slic3r/GUI/Tab.cpp:971
+#: src/slic3r/GUI/GUI_Preview.cpp:235 src/slic3r/GUI/Tab.cpp:1001
#: src/libslic3r/GCode/PreviewData.cpp:171
msgid "Skirt"
msgstr "Skirt"
-#: src/slic3r/GUI/GUI_Preview.cpp:263 src/libslic3r/PrintConfig.cpp:2002
+#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/PrintConfig.cpp:1903
#: src/libslic3r/GCode/PreviewData.cpp:173
msgid "Support material interface"
msgstr "Support material interface"
-#: src/slic3r/GUI/GUI_Preview.cpp:264 src/slic3r/GUI/Tab.cpp:1049
+#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/Tab.cpp:1081
#: src/libslic3r/GCode/PreviewData.cpp:174
msgid "Wipe tower"
msgstr "Wipe tower"
-#: src/slic3r/GUI/GUI_Preview.cpp:269 src/libslic3r/PrintConfig.cpp:2158
+#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/PrintConfig.cpp:2049
msgid "Travel"
msgstr "Travel"
-#: src/slic3r/GUI/GUI_Preview.cpp:270
+#: src/slic3r/GUI/GUI_Preview.cpp:244
msgid "Retractions"
msgstr "Retractions"
-#: src/slic3r/GUI/GUI_Preview.cpp:271
+#: src/slic3r/GUI/GUI_Preview.cpp:245
msgid "Unretractions"
msgstr "Unretractions"
-#: src/slic3r/GUI/GUI_Preview.cpp:272
+#: src/slic3r/GUI/GUI_Preview.cpp:246
msgid "Shells"
msgstr "Shells"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:12
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:13
msgid "Slic3r Prusa Edition - Keyboard Shortcuts"
msgstr "Slic3r Prusa Edition - Keyboard Shortcuts"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:47
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:126
-msgid "Main Shortcuts"
-msgstr "Main Shortcuts"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:101
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:100
msgid "Open project STL/OBJ/AMF/3MF with config, delete bed"
msgstr "Open project STL/OBJ/AMF/3MF with config, delete bed"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:102
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:101
msgid "Import STL/OBJ/AMF/3MF without config, keep bed"
msgstr "Import STL/OBJ/AMF/3MF without config, keep bed"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:103
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:102
msgid "Load Config from .ini/amf/3mf/gcode"
msgstr "Load Config from .ini/amf/3mf/gcode"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:104 src/slic3r/GUI/Plater.cpp:605
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:103 src/slic3r/GUI/Plater.cpp:725
+#: src/slic3r/GUI/Plater.cpp:3673 src/libslic3r/PrintConfig.cpp:2957
msgid "Export G-code"
msgstr "Export G-code"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:105
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:104
msgid "Save project (3MF)"
msgstr "Save project (3MF)"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:106
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:105
msgid "Load Config from .ini/amf/3mf/gcode and merge"
msgstr "Load Config from .ini/amf/3mf/gcode and merge"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:107
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:106
msgid "(Re)slice"
msgstr "(Re)slice"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:108
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:107
msgid "Quick slice"
msgstr "Quick slice"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 src/slic3r/GUI/MainFrame.cpp:289
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 src/slic3r/GUI/MainFrame.cpp:326
msgid "Repeat last quick slice"
msgstr "Repeat last quick slice"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:110
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:109
msgid "Select Plater Tab"
msgstr "Select Plater Tab"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:111
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:110
msgid "Quick slice and Save as"
msgstr "Quick slice and Save as"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:112
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:111
msgid "Select Print Settings Tab"
msgstr "Select Print Settings Tab"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:113
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:112
msgid "Select Filament Settings Tab"
msgstr "Select Filament Settings Tab"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:114
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:113
msgid "Select Printer Settings Tab"
msgstr "Select Printer Settings Tab"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:115
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:114
msgid "Switch to 3D"
msgstr "Switch to 3D"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:116
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:115
msgid "Switch to Preview"
msgstr "Switch to Preview"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 src/slic3r/GUI/Preferences.cpp:10
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 src/slic3r/GUI/Preferences.cpp:10
msgid "Preferences"
msgstr "Preferences"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:118
-#: src/slic3r/GUI/PrintHostDialogs.cpp:89
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:117
+#: src/slic3r/GUI/PrintHostDialogs.cpp:134
msgid "Print host upload queue"
msgstr "Print host upload queue"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:119
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:118
msgid "Camera view "
msgstr "Camera view "
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:120
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:119
msgid "Add Instance to selected object "
msgstr "Add Instance to selected object "
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:121
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:120
msgid "Remove Instance from selected object"
msgstr "Remove Instance from selected object"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:122
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:121
msgid "Show keyboard shortcuts list"
msgstr "Show keyboard shortcuts list"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:123
-msgid "Switch between 3D and Preview"
-msgstr "Switch between 3D and Preview"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:124
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:122
msgid "Select multiple object/Move multiple object"
msgstr "Select multiple object/Move multiple object"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:132
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:124
+msgid "Main Shortcuts"
+msgstr "Main Shortcuts"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:130
msgid "Arrange"
msgstr "Arrange"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:133
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:131
msgid "Select All objects"
msgstr "Select All objects"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:134
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:132
msgid "Delete selected"
msgstr "Delete selected"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:135
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:133
msgid "Delete All"
msgstr "Delete All"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:136
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:134
msgid "Gizmo move"
msgstr "Gizmo move"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:137
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:135
msgid "Gizmo scale"
msgstr "Gizmo scale"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:138
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:136
msgid "Gizmo rotate"
msgstr "Gizmo rotate"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:139
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:137
msgid "Gizmo cut"
msgstr "Gizmo cut"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:140
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:138
msgid "Gizmo Place face on bed"
msgstr "Gizmo Place face on bed"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:141
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:139
msgid "Gizmo SLA support points"
msgstr "Gizmo SLA support points"
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:140
+#, no-c-format
+msgid ""
+"Press to snap by 5% in Gizmo scale\n"
+"or by 1mm in Gizmo move"
+msgstr ""
+"Press to snap by 5% in Gizmo scale\n"
+"or by 1mm in Gizmo move"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:141
+msgid ""
+"Press to scale or rotate selected objects\n"
+"around their own center"
+msgstr ""
+"Press to scale or rotate selected objects\n"
+"around their own center"
+
#: src/slic3r/GUI/KBShortcutsDialog.cpp:142
msgid "Zoom to Bed"
msgstr "Zoom to Bed"
@@ -1431,591 +1717,637 @@ msgstr "Unselect gizmo, keep object selection"
msgid "Plater Shortcuts"
msgstr "Plater Shortcuts"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:164
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:175
msgid "Arrow Up"
msgstr "Arrow Up"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:164
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:166
msgid "Upper Layer"
msgstr "Upper Layer"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:165
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:176
msgid "Arrow Down"
msgstr "Arrow Down"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:165
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:167
msgid "Lower Layer"
msgstr "Lower Layer"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:158
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:169
msgid "Preview Shortcuts"
msgstr "Preview Shortcuts"
-#: src/slic3r/GUI/MainFrame.cpp:53
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:175
+msgid "Move current slider thump Up"
+msgstr "Move current slider thump Up"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:176
+msgid "Move current slider thump Down"
+msgstr "Move current slider thump Down"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:177
+msgid "Arrow Left"
+msgstr "Arrow Left"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:177
+msgid "Set upper thumb to current slider thumb"
+msgstr "Set upper thumb to current slider thumb"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:178
+msgid "Arrow Right"
+msgstr "Arrow Right"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:178
+msgid "Set lower thumb to current slider thumb"
+msgstr "Set lower thumb to current slider thumb"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:179
+msgid "Add color change marker for current layer"
+msgstr "Add color change marker for current layer"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:180
+msgid "Delete color change marker for current layer"
+msgstr "Delete color change marker for current layer"
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:182
+msgid "Layers Slider Shortcuts"
+msgstr "Layers Slider Shortcuts"
+
+#: src/slic3r/GUI/MainFrame.cpp:54
msgid ""
" - Remember to check for updates at http://github.com/prusa3d/slic3r/releases"
msgstr ""
" - Remember to check for updates at http://github.com/prusa3d/slic3r/releases"
-#: src/slic3r/GUI/MainFrame.cpp:130
+#: src/slic3r/GUI/MainFrame.cpp:160
msgid "Plater"
msgstr "Plater"
-#: src/slic3r/GUI/MainFrame.cpp:236
-msgid "&Open"
-msgstr "&Open"
+#: src/slic3r/GUI/MainFrame.cpp:273
+msgid "&Open Project"
+msgstr "&Open Project"
-#: src/slic3r/GUI/MainFrame.cpp:236
+#: src/slic3r/GUI/MainFrame.cpp:273
msgid "Open a project file"
msgstr "Open a project file"
-#: src/slic3r/GUI/MainFrame.cpp:238
-msgid "&Save"
-msgstr "&Save"
+#: src/slic3r/GUI/MainFrame.cpp:275
+msgid "&Save Project"
+msgstr "&Save Project"
-#: src/slic3r/GUI/MainFrame.cpp:238
+#: src/slic3r/GUI/MainFrame.cpp:275
msgid "Save current project file"
msgstr "Save current project file"
-#: src/slic3r/GUI/MainFrame.cpp:240
-msgid "Save &as"
-msgstr "Save &as"
+#: src/slic3r/GUI/MainFrame.cpp:277
+msgid "Save Project &as"
+msgstr "Save Project &as"
-#: src/slic3r/GUI/MainFrame.cpp:240
+#: src/slic3r/GUI/MainFrame.cpp:277
msgid "Save current project file as"
msgstr "Save current project file as"
-#: src/slic3r/GUI/MainFrame.cpp:246
+#: src/slic3r/GUI/MainFrame.cpp:283
msgid "Import STL/OBJ/AM&F/3MF"
msgstr "Import STL/OBJ/AM&F/3MF"
-#: src/slic3r/GUI/MainFrame.cpp:246
+#: src/slic3r/GUI/MainFrame.cpp:283
msgid "Load a model"
msgstr "Load a model"
-#: src/slic3r/GUI/MainFrame.cpp:249
+#: src/slic3r/GUI/MainFrame.cpp:286
msgid "Import &Config"
msgstr "Import &Config"
-#: src/slic3r/GUI/MainFrame.cpp:249
+#: src/slic3r/GUI/MainFrame.cpp:286
msgid "Load exported configuration file"
msgstr "Load exported configuration file"
-#: src/slic3r/GUI/MainFrame.cpp:251
+#: src/slic3r/GUI/MainFrame.cpp:288
msgid "Import Config from &project"
msgstr "Import Config from &project"
-#: src/slic3r/GUI/MainFrame.cpp:251
+#: src/slic3r/GUI/MainFrame.cpp:288
msgid "Load configuration from project file"
msgstr "Load configuration from project file"
-#: src/slic3r/GUI/MainFrame.cpp:254
+#: src/slic3r/GUI/MainFrame.cpp:291
msgid "Import Config &Bundle"
msgstr "Import Config &Bundle"
-#: src/slic3r/GUI/MainFrame.cpp:254
+#: src/slic3r/GUI/MainFrame.cpp:291
msgid "Load presets from a bundle"
msgstr "Load presets from a bundle"
-#: src/slic3r/GUI/MainFrame.cpp:256
+#: src/slic3r/GUI/MainFrame.cpp:293
msgid "&Import"
msgstr "&Import"
-#: src/slic3r/GUI/MainFrame.cpp:259
+#: src/slic3r/GUI/MainFrame.cpp:296
msgid "Export &G-code"
msgstr "Export &G-code"
-#: src/slic3r/GUI/MainFrame.cpp:259
+#: src/slic3r/GUI/MainFrame.cpp:296
msgid "Export current plate as G-code"
msgstr "Export current plate as G-code"
-#: src/slic3r/GUI/MainFrame.cpp:262
+#: src/slic3r/GUI/MainFrame.cpp:299
msgid "Export plate as &STL"
msgstr "Export plate as &STL"
-#: src/slic3r/GUI/MainFrame.cpp:262
+#: src/slic3r/GUI/MainFrame.cpp:299
msgid "Export current plate as STL"
msgstr "Export current plate as STL"
-#: src/slic3r/GUI/MainFrame.cpp:264
+#: src/slic3r/GUI/MainFrame.cpp:301
msgid "Export plate as &AMF"
msgstr "Export plate as &AMF"
-#: src/slic3r/GUI/MainFrame.cpp:264
+#: src/slic3r/GUI/MainFrame.cpp:301
msgid "Export current plate as AMF"
msgstr "Export current plate as AMF"
-#: src/slic3r/GUI/MainFrame.cpp:267
+#: src/slic3r/GUI/MainFrame.cpp:304
msgid "Export &Config"
msgstr "Export &Config"
-#: src/slic3r/GUI/MainFrame.cpp:267
+#: src/slic3r/GUI/MainFrame.cpp:304
msgid "Export current configuration to file"
msgstr "Export current configuration to file"
-#: src/slic3r/GUI/MainFrame.cpp:269
+#: src/slic3r/GUI/MainFrame.cpp:306
msgid "Export Config &Bundle"
msgstr "Export Config &Bundle"
-#: src/slic3r/GUI/MainFrame.cpp:269
+#: src/slic3r/GUI/MainFrame.cpp:306
msgid "Export all presets to file"
msgstr "Export all presets to file"
-#: src/slic3r/GUI/MainFrame.cpp:271
+#: src/slic3r/GUI/MainFrame.cpp:308
msgid "&Export"
msgstr "&Export"
-#: src/slic3r/GUI/MainFrame.cpp:277
+#: src/slic3r/GUI/MainFrame.cpp:314
msgid "Quick Slice"
msgstr "Quick Slice"
-#: src/slic3r/GUI/MainFrame.cpp:277
+#: src/slic3r/GUI/MainFrame.cpp:314
msgid "Slice a file into a G-code"
msgstr "Slice a file into a G-code"
-#: src/slic3r/GUI/MainFrame.cpp:283
+#: src/slic3r/GUI/MainFrame.cpp:320
msgid "Quick Slice and Save As"
msgstr "Quick Slice and Save As"
-#: src/slic3r/GUI/MainFrame.cpp:283
+#: src/slic3r/GUI/MainFrame.cpp:320
msgid "Slice a file into a G-code, save as"
msgstr "Slice a file into a G-code, save as"
-#: src/slic3r/GUI/MainFrame.cpp:289
+#: src/slic3r/GUI/MainFrame.cpp:326
msgid "Repeat Last Quick Slice"
msgstr "Repeat Last Quick Slice"
-#: src/slic3r/GUI/MainFrame.cpp:297
+#: src/slic3r/GUI/MainFrame.cpp:334
msgid "(Re)Slice &Now"
msgstr "(Re)Slice &Now"
-#: src/slic3r/GUI/MainFrame.cpp:297
+#: src/slic3r/GUI/MainFrame.cpp:334
msgid "Start new slicing process"
msgstr "Start new slicing process"
-#: src/slic3r/GUI/MainFrame.cpp:300
+#: src/slic3r/GUI/MainFrame.cpp:337
msgid "&Repair STL file"
msgstr "&Repair STL file"
-#: src/slic3r/GUI/MainFrame.cpp:300
+#: src/slic3r/GUI/MainFrame.cpp:337
msgid "Automatically repair an STL file"
msgstr "Automatically repair an STL file"
-#: src/slic3r/GUI/MainFrame.cpp:303
+#: src/slic3r/GUI/MainFrame.cpp:340
msgid "&Quit"
msgstr "&Quit"
-#: src/slic3r/GUI/MainFrame.cpp:303
+#: src/slic3r/GUI/MainFrame.cpp:340
msgid "Quit Slic3r"
msgstr "Quit Slic3r"
-#: src/slic3r/GUI/MainFrame.cpp:321
+#: src/slic3r/GUI/MainFrame.cpp:374
msgid "&Select all"
msgstr "&Select all"
-#: src/slic3r/GUI/MainFrame.cpp:321
+#: src/slic3r/GUI/MainFrame.cpp:374
msgid "Selects all objects"
msgstr "Selects all objects"
-#: src/slic3r/GUI/MainFrame.cpp:324
+#: src/slic3r/GUI/MainFrame.cpp:377
msgid "&Delete selected"
msgstr "&Delete selected"
-#: src/slic3r/GUI/MainFrame.cpp:324
+#: src/slic3r/GUI/MainFrame.cpp:377
msgid "Deletes the current selection"
msgstr "Deletes the current selection"
-#: src/slic3r/GUI/MainFrame.cpp:326
+#: src/slic3r/GUI/MainFrame.cpp:379
msgid "Delete &all"
msgstr "Delete &all"
-#: src/slic3r/GUI/MainFrame.cpp:326
+#: src/slic3r/GUI/MainFrame.cpp:379
msgid "Deletes all objects"
msgstr "Deletes all objects"
-#: src/slic3r/GUI/MainFrame.cpp:339
+#: src/slic3r/GUI/MainFrame.cpp:392
msgid "&Plater Tab"
msgstr "&Plater Tab"
-#: src/slic3r/GUI/MainFrame.cpp:339
+#: src/slic3r/GUI/MainFrame.cpp:392
msgid "Show the plater"
msgstr "Show the plater"
-#: src/slic3r/GUI/MainFrame.cpp:346
+#: src/slic3r/GUI/MainFrame.cpp:399
msgid "P&rint Settings Tab"
msgstr "P&rint Settings Tab"
-#: src/slic3r/GUI/MainFrame.cpp:346
+#: src/slic3r/GUI/MainFrame.cpp:399
msgid "Show the print settings"
msgstr "Show the print settings"
-#: src/slic3r/GUI/MainFrame.cpp:348
+#: src/slic3r/GUI/MainFrame.cpp:401
msgid "&Filament Settings Tab"
msgstr "&Filament Settings Tab"
-#: src/slic3r/GUI/MainFrame.cpp:348
+#: src/slic3r/GUI/MainFrame.cpp:401
msgid "Show the filament settings"
msgstr "Show the filament settings"
-#: src/slic3r/GUI/MainFrame.cpp:350
+#: src/slic3r/GUI/MainFrame.cpp:403
msgid "Print&er Settings Tab"
msgstr "Print&er Settings Tab"
-#: src/slic3r/GUI/MainFrame.cpp:350
+#: src/slic3r/GUI/MainFrame.cpp:403
msgid "Show the printer settings"
msgstr "Show the printer settings"
-#: src/slic3r/GUI/MainFrame.cpp:354
+#: src/slic3r/GUI/MainFrame.cpp:407
msgid "3&D"
msgstr "3&D"
-#: src/slic3r/GUI/MainFrame.cpp:354
+#: src/slic3r/GUI/MainFrame.cpp:407
msgid "Show the 3D editing view"
msgstr "Show the 3D editing view"
-#: src/slic3r/GUI/MainFrame.cpp:356
+#: src/slic3r/GUI/MainFrame.cpp:409
msgid "Pre&view"
msgstr "Pre&view"
-#: src/slic3r/GUI/MainFrame.cpp:356
+#: src/slic3r/GUI/MainFrame.cpp:409
msgid "Show the 3D slices preview"
msgstr "Show the 3D slices preview"
-#: src/slic3r/GUI/MainFrame.cpp:377
+#: src/slic3r/GUI/MainFrame.cpp:430
msgid "Print &Host Upload Queue"
msgstr "Print &Host Upload Queue"
-#: src/slic3r/GUI/MainFrame.cpp:377
+#: src/slic3r/GUI/MainFrame.cpp:430
msgid "Display the Print Host Upload Queue window"
msgstr "Display the Print Host Upload Queue window"
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "&Iso"
-msgstr "&Iso"
+#: src/slic3r/GUI/MainFrame.cpp:439
+msgid "Iso"
+msgstr "Iso"
-#: src/slic3r/GUI/MainFrame.cpp:388
+#: src/slic3r/GUI/MainFrame.cpp:439
msgid "Iso View"
msgstr "Iso View"
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "&Top"
-msgstr "&Top"
+#: src/slic3r/GUI/MainFrame.cpp:441
+msgid "Top"
+msgstr "Top"
-#: src/slic3r/GUI/MainFrame.cpp:390
+#: src/libslic3r/PrintConfig.cpp:2041
+msgctxt "Layers"
+msgid "Top"
+msgstr "Top"
+
+#: src/slic3r/GUI/MainFrame.cpp:441
msgid "Top View"
msgstr "Top View"
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "&Bottom"
-msgstr "&Bottom"
+#: src/slic3r/GUI/MainFrame.cpp:442
+msgid "Bottom"
+msgstr "Bottom"
-#: src/slic3r/GUI/MainFrame.cpp:391
+#: src/libslic3r/PrintConfig.cpp:148
+msgctxt "Layers"
+msgid "Bottom"
+msgstr "Bottom"
+
+#: src/slic3r/GUI/MainFrame.cpp:442
msgid "Bottom View"
msgstr "Bottom View"
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "&Front"
-msgstr "&Front"
+#: src/slic3r/GUI/MainFrame.cpp:443
+msgid "Front"
+msgstr "Front"
-#: src/slic3r/GUI/MainFrame.cpp:392
+#: src/slic3r/GUI/MainFrame.cpp:443
msgid "Front View"
msgstr "Front View"
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "R&ear"
-msgstr "R&ear"
+#: src/slic3r/GUI/MainFrame.cpp:444 src/libslic3r/PrintConfig.cpp:1561
+msgid "Rear"
+msgstr "Rear"
-#: src/slic3r/GUI/MainFrame.cpp:393
+#: src/slic3r/GUI/MainFrame.cpp:444
msgid "Rear View"
msgstr "Rear View"
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "&Left"
-msgstr "&Left"
+#: src/slic3r/GUI/MainFrame.cpp:445
+msgid "Left"
+msgstr "Left"
-#: src/slic3r/GUI/MainFrame.cpp:394
+#: src/slic3r/GUI/MainFrame.cpp:445
msgid "Left View"
msgstr "Left View"
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "&Right"
-msgstr "&Right"
+#: src/slic3r/GUI/MainFrame.cpp:446
+msgid "Right"
+msgstr "Right"
-#: src/slic3r/GUI/MainFrame.cpp:395
+#: src/slic3r/GUI/MainFrame.cpp:446
msgid "Right View"
msgstr "Right View"
-#: src/slic3r/GUI/MainFrame.cpp:409
+#: src/slic3r/GUI/MainFrame.cpp:460
msgid "Prusa 3D &Drivers"
msgstr "Prusa 3D &Drivers"
-#: src/slic3r/GUI/MainFrame.cpp:409
+#: src/slic3r/GUI/MainFrame.cpp:460
msgid "Open the Prusa3D drivers download page in your browser"
msgstr "Open the Prusa3D drivers download page in your browser"
-#: src/slic3r/GUI/MainFrame.cpp:411
+#: src/slic3r/GUI/MainFrame.cpp:462
msgid "Prusa Edition &Releases"
msgstr "Prusa Edition &Releases"
-#: src/slic3r/GUI/MainFrame.cpp:411
+#: src/slic3r/GUI/MainFrame.cpp:462
msgid "Open the Prusa Edition releases page in your browser"
msgstr "Open the Prusa Edition releases page in your browser"
-#: src/slic3r/GUI/MainFrame.cpp:417
+#: src/slic3r/GUI/MainFrame.cpp:468
msgid "Slic3r &Website"
msgstr "Slic3r &Website"
-#: src/slic3r/GUI/MainFrame.cpp:417
+#: src/slic3r/GUI/MainFrame.cpp:468
msgid "Open the Slic3r website in your browser"
msgstr "Open the Slic3r website in your browser"
-#: src/slic3r/GUI/MainFrame.cpp:419
+#: src/slic3r/GUI/MainFrame.cpp:470
msgid "Slic3r &Manual"
msgstr "Slic3r &Manual"
-#: src/slic3r/GUI/MainFrame.cpp:419
+#: src/slic3r/GUI/MainFrame.cpp:470
msgid "Open the Slic3r manual in your browser"
msgstr "Open the Slic3r manual in your browser"
-#: src/slic3r/GUI/MainFrame.cpp:422
+#: src/slic3r/GUI/MainFrame.cpp:473
msgid "System &Info"
msgstr "System &Info"
-#: src/slic3r/GUI/MainFrame.cpp:422
+#: src/slic3r/GUI/MainFrame.cpp:473
msgid "Show system information"
msgstr "Show system information"
-#: src/slic3r/GUI/MainFrame.cpp:424
+#: src/slic3r/GUI/MainFrame.cpp:475
msgid "Show &Configuration Folder"
msgstr "Show &Configuration Folder"
-#: src/slic3r/GUI/MainFrame.cpp:424
+#: src/slic3r/GUI/MainFrame.cpp:475
msgid "Show user configuration folder (datadir)"
msgstr "Show user configuration folder (datadir)"
-#: src/slic3r/GUI/MainFrame.cpp:426
+#: src/slic3r/GUI/MainFrame.cpp:477
msgid "Report an I&ssue"
msgstr "Report an I&ssue"
-#: src/slic3r/GUI/MainFrame.cpp:426
+#: src/slic3r/GUI/MainFrame.cpp:477
msgid "Report an issue on the Slic3r Prusa Edition"
msgstr "Report an issue on the Slic3r Prusa Edition"
-#: src/slic3r/GUI/MainFrame.cpp:428
+#: src/slic3r/GUI/MainFrame.cpp:479
msgid "&About Slic3r"
msgstr "&About Slic3r"
-#: src/slic3r/GUI/MainFrame.cpp:428
+#: src/slic3r/GUI/MainFrame.cpp:479
msgid "Show about dialog"
msgstr "Show about dialog"
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "&Keyboard Shortcuts"
-msgstr "&Keyboard Shortcuts"
+#: src/slic3r/GUI/MainFrame.cpp:482
+msgid "Keyboard Shortcuts"
+msgstr "Keyboard Shortcuts"
-#: src/slic3r/GUI/MainFrame.cpp:431
+#: src/slic3r/GUI/MainFrame.cpp:482
msgid "Show the list of the keyboard shortcuts"
msgstr "Show the list of the keyboard shortcuts"
-#: src/slic3r/GUI/MainFrame.cpp:439
+#: src/slic3r/GUI/MainFrame.cpp:490
msgid "&File"
msgstr "&File"
-#: src/slic3r/GUI/MainFrame.cpp:440
+#: src/slic3r/GUI/MainFrame.cpp:491
msgid "&Edit"
msgstr "&Edit"
-#: src/slic3r/GUI/MainFrame.cpp:441
+#: src/slic3r/GUI/MainFrame.cpp:492
msgid "&Window"
msgstr "&Window"
-#: src/slic3r/GUI/MainFrame.cpp:442
+#: src/slic3r/GUI/MainFrame.cpp:493
msgid "&View"
msgstr "&View"
-#: src/slic3r/GUI/MainFrame.cpp:445
+#: src/slic3r/GUI/MainFrame.cpp:496
msgid "&Help"
msgstr "&Help"
-#: src/slic3r/GUI/MainFrame.cpp:472
+#: src/slic3r/GUI/MainFrame.cpp:524
msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
msgstr "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
-#: src/slic3r/GUI/MainFrame.cpp:486
+#: src/slic3r/GUI/MainFrame.cpp:538
msgid "No previously sliced file."
msgstr "No previously sliced file."
-#: src/slic3r/GUI/MainFrame.cpp:487 src/slic3r/GUI/PrintHostDialogs.cpp:173
+#: src/slic3r/GUI/MainFrame.cpp:539 src/slic3r/GUI/PrintHostDialogs.cpp:219
msgid "Error"
msgstr "Error"
-#: src/slic3r/GUI/MainFrame.cpp:492
+#: src/slic3r/GUI/MainFrame.cpp:544
msgid "Previously sliced file ("
msgstr "Previously sliced file ("
-#: src/slic3r/GUI/MainFrame.cpp:492
+#: src/slic3r/GUI/MainFrame.cpp:544
msgid ") not found."
msgstr ") not found."
-#: src/slic3r/GUI/MainFrame.cpp:493
+#: src/slic3r/GUI/MainFrame.cpp:545
msgid "File Not Found"
msgstr "File Not Found"
-#: src/slic3r/GUI/MainFrame.cpp:531 src/slic3r/GUI/Tab.cpp:3031
+#: src/slic3r/GUI/MainFrame.cpp:580 src/slic3r/GUI/Tab.cpp:3152
msgid "Save "
msgstr "Save "
-#: src/slic3r/GUI/MainFrame.cpp:531
+#: src/slic3r/GUI/MainFrame.cpp:580
msgid "SVG"
msgstr "SVG"
-#: src/slic3r/GUI/MainFrame.cpp:531
+#: src/slic3r/GUI/MainFrame.cpp:580
msgid "G-code"
msgstr "G-code"
-#: src/slic3r/GUI/MainFrame.cpp:531
+#: src/slic3r/GUI/MainFrame.cpp:580
msgid " file as:"
msgstr " file as:"
-#: src/slic3r/GUI/MainFrame.cpp:548
+#: src/slic3r/GUI/MainFrame.cpp:595
msgid "Save zip file as:"
msgstr "Save zip file as:"
-#: src/slic3r/GUI/MainFrame.cpp:560
+#: src/slic3r/GUI/MainFrame.cpp:607 src/slic3r/GUI/Plater.cpp:2352
+#: src/slic3r/GUI/Plater.cpp:3467 src/slic3r/GUI/Tab.cpp:1110
+#: src/slic3r/GUI/Tab.cpp:3348
msgid "Slicing"
msgstr "Slicing"
-#: src/slic3r/GUI/MainFrame.cpp:560
+#: src/slic3r/GUI/MainFrame.cpp:607
msgid "Processing "
msgstr "Processing "
-#: src/slic3r/GUI/MainFrame.cpp:583
+#: src/slic3r/GUI/MainFrame.cpp:630
msgid " was successfully sliced."
msgstr " was successfully sliced."
-#: src/slic3r/GUI/MainFrame.cpp:585
+#: src/slic3r/GUI/MainFrame.cpp:632
msgid "Slicing Done!"
msgstr "Slicing Done!"
-#: src/slic3r/GUI/MainFrame.cpp:600
+#: src/slic3r/GUI/MainFrame.cpp:647
msgid "Select the STL file to repair:"
msgstr "Select the STL file to repair:"
-#: src/slic3r/GUI/MainFrame.cpp:614
+#: src/slic3r/GUI/MainFrame.cpp:661
msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
msgstr "Save OBJ file (less prone to coordinate errors than STL) as:"
-#: src/slic3r/GUI/MainFrame.cpp:629
+#: src/slic3r/GUI/MainFrame.cpp:676
msgid "Your file was repaired."
msgstr "Your file was repaired."
-#: src/slic3r/GUI/MainFrame.cpp:629
+#: src/slic3r/GUI/MainFrame.cpp:676 src/libslic3r/PrintConfig.cpp:3051
msgid "Repair"
msgstr "Repair"
-#: src/slic3r/GUI/MainFrame.cpp:643
+#: src/slic3r/GUI/MainFrame.cpp:690
msgid "Save configuration as:"
msgstr "Save configuration as:"
-#: src/slic3r/GUI/MainFrame.cpp:663 src/slic3r/GUI/MainFrame.cpp:727
+#: src/slic3r/GUI/MainFrame.cpp:710 src/slic3r/GUI/MainFrame.cpp:774
msgid "Select configuration to load:"
msgstr "Select configuration to load:"
-#: src/slic3r/GUI/MainFrame.cpp:700
+#: src/slic3r/GUI/MainFrame.cpp:747
msgid "Save presets bundle as:"
msgstr "Save presets bundle as:"
-#: src/slic3r/GUI/MainFrame.cpp:751
+#: src/slic3r/GUI/MainFrame.cpp:798
#, c-format
msgid "%d presets successfully imported."
msgstr "%d presets successfully imported."
-#: src/slic3r/GUI/MsgDialog.cpp:66
+#: src/slic3r/GUI/MsgDialog.cpp:71
msgid "Slic3r error"
msgstr "Slic3r error"
-#: src/slic3r/GUI/MsgDialog.cpp:66
+#: src/slic3r/GUI/MsgDialog.cpp:71
msgid "Slic3r has encountered an error"
msgstr "Slic3r has encountered an error"
-#: src/slic3r/GUI/MsgDialog.cpp:84
-msgid "Copy to clipboard"
-msgstr "Copy to clipboard"
-
-#: src/slic3r/GUI/Plater.cpp:107
-msgid "Info"
-msgstr "Info"
-
-#: src/slic3r/GUI/Plater.cpp:126
+#: src/slic3r/GUI/Plater.cpp:137
msgid "Volume"
msgstr "Volume"
-#: src/slic3r/GUI/Plater.cpp:127
+#: src/slic3r/GUI/Plater.cpp:138
msgid "Facets"
msgstr "Facets"
-#: src/slic3r/GUI/Plater.cpp:128
+#: src/slic3r/GUI/Plater.cpp:139
msgid "Materials"
msgstr "Materials"
-#: src/slic3r/GUI/Plater.cpp:131
+#: src/slic3r/GUI/Plater.cpp:142
msgid "Manifold"
msgstr "Manifold"
-#: src/slic3r/GUI/Plater.cpp:174
+#: src/slic3r/GUI/Plater.cpp:188
msgid "Sliced Info"
msgstr "Sliced Info"
-#: src/slic3r/GUI/Plater.cpp:193 src/slic3r/GUI/Plater.cpp:823
+#: src/slic3r/GUI/Plater.cpp:207 src/slic3r/GUI/Plater.cpp:998
msgid "Used Filament (m)"
msgstr "Used Filament (m)"
-#: src/slic3r/GUI/Plater.cpp:194
+#: src/slic3r/GUI/Plater.cpp:208
msgid "Used Filament (mm³)"
msgstr "Used Filament (mm³)"
-#: src/slic3r/GUI/Plater.cpp:195
+#: src/slic3r/GUI/Plater.cpp:209
msgid "Used Filament (g)"
msgstr "Used Filament (g)"
-#: src/slic3r/GUI/Plater.cpp:196 src/slic3r/GUI/Plater.cpp:838
-#: src/libslic3r/PrintConfig.cpp:718
+#: src/slic3r/GUI/Plater.cpp:210
+msgid "Used Material (unit)"
+msgstr "Used Material (unit)"
+
+#: src/slic3r/GUI/Plater.cpp:211 src/slic3r/GUI/Plater.cpp:1013
+#: src/libslic3r/PrintConfig.cpp:716
msgid "Cost"
msgstr "Cost"
-#: src/slic3r/GUI/Plater.cpp:197 src/slic3r/GUI/Plater.cpp:852
+#: src/slic3r/GUI/Plater.cpp:212 src/slic3r/GUI/Plater.cpp:985
+#: src/slic3r/GUI/Plater.cpp:1027
msgid "Estimated printing time"
msgstr "Estimated printing time"
-#: src/slic3r/GUI/Plater.cpp:198
+#: src/slic3r/GUI/Plater.cpp:213
msgid "Number of tool changes"
msgstr "Number of tool changes"
-#: src/slic3r/GUI/Plater.cpp:361
-msgid "Support"
-msgstr "Support"
+#: src/slic3r/GUI/Plater.cpp:290
+msgid "Click to edit preset"
+msgstr "Click to edit preset"
-#: src/slic3r/GUI/Plater.cpp:364
+#: src/slic3r/GUI/Plater.cpp:413
msgid "Select what kind of support do you need"
msgstr "Select what kind of support do you need"
-#: src/slic3r/GUI/Plater.cpp:365 src/libslic3r/GCode/PreviewData.cpp:162
-msgid "None"
-msgstr "None"
-
-#: src/slic3r/GUI/Plater.cpp:366 src/libslic3r/PrintConfig.cpp:1904
+#: src/slic3r/GUI/Plater.cpp:415 src/libslic3r/PrintConfig.cpp:1814
+#: src/libslic3r/PrintConfig.cpp:2419
msgid "Support on build plate only"
msgstr "Support on build plate only"
-#: src/slic3r/GUI/Plater.cpp:367
+#: src/slic3r/GUI/Plater.cpp:416
msgid "Everywhere"
msgstr "Everywhere"
-#: src/slic3r/GUI/Plater.cpp:379 src/slic3r/GUI/Tab.cpp:977
+#: src/slic3r/GUI/Plater.cpp:438 src/slic3r/GUI/Tab.cpp:1007
msgid "Brim"
msgstr "Brim"
-#: src/slic3r/GUI/Plater.cpp:381
+#: src/slic3r/GUI/Plater.cpp:440
msgid ""
"This flag enables the brim that will be printed around each object on the "
"first layer."
@@ -2023,50 +2355,55 @@ msgstr ""
"This flag enables the brim that will be printed around each object on the "
"first layer."
-#: src/slic3r/GUI/Plater.cpp:390
+#: src/slic3r/GUI/Plater.cpp:448
msgid "Purging volumes"
msgstr "Purging volumes"
-#: src/slic3r/GUI/Plater.cpp:556
+#: src/slic3r/GUI/Plater.cpp:673
msgid "Print settings"
msgstr "Print settings"
-#: src/slic3r/GUI/Plater.cpp:557 src/slic3r/GUI/Tab.cpp:1380
-#: src/slic3r/GUI/Tab.cpp:1381
+#: src/slic3r/GUI/Plater.cpp:674 src/slic3r/GUI/Tab.cpp:1421
+#: src/slic3r/GUI/Tab.cpp:1422
msgid "Filament"
msgstr "Filament"
-#: src/slic3r/GUI/Plater.cpp:558 src/slic3r/GUI/Preset.cpp:1158
+#: src/slic3r/GUI/Plater.cpp:675 src/slic3r/GUI/Preset.cpp:1252
msgid "SLA print"
msgstr "SLA print"
-#: src/slic3r/GUI/Plater.cpp:559 src/slic3r/GUI/Preset.cpp:1159
+#: src/slic3r/GUI/Plater.cpp:676 src/slic3r/GUI/Preset.cpp:1253
msgid "SLA material"
msgstr "SLA material"
-#: src/slic3r/GUI/Plater.cpp:560
+#: src/slic3r/GUI/Plater.cpp:677
msgid "Printer"
msgstr "Printer"
-#: src/slic3r/GUI/Plater.cpp:588
+#: src/slic3r/GUI/Plater.cpp:707 src/slic3r/GUI/Plater.cpp:3674
msgid "Send to printer"
msgstr "Send to printer"
-#: src/slic3r/GUI/Plater.cpp:607
+#: src/slic3r/GUI/Plater.cpp:727 src/slic3r/GUI/Plater.cpp:2352
+#: src/slic3r/GUI/Plater.cpp:3470
msgid "Slice now"
msgstr "Slice now"
-#: src/slic3r/GUI/Plater.cpp:787
+#: src/slic3r/GUI/Plater.cpp:860
+msgid "Hold Shift to Slice & Export G-code"
+msgstr "Hold Shift to Slice & Export G-code"
+
+#: src/slic3r/GUI/Plater.cpp:931
#, c-format
msgid "%d (%d shells)"
msgstr "%d (%d shells)"
-#: src/slic3r/GUI/Plater.cpp:792
+#: src/slic3r/GUI/Plater.cpp:936
#, c-format
msgid "Auto-repaired (%d errors)"
msgstr "Auto-repaired (%d errors)"
-#: src/slic3r/GUI/Plater.cpp:795
+#: src/slic3r/GUI/Plater.cpp:939
#, c-format
msgid ""
"%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d "
@@ -2075,36 +2412,48 @@ msgstr ""
"%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d "
"facets reversed, %d backwards edges"
-#: src/slic3r/GUI/Plater.cpp:805
+#: src/slic3r/GUI/Plater.cpp:949
msgid "Yes"
msgstr "Yes"
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
+#: src/slic3r/GUI/Plater.cpp:972
+msgid "Used Material (ml)"
+msgstr "Used Material (ml)"
+
+#: src/slic3r/GUI/Plater.cpp:975
+msgid "object(s)"
+msgstr "object(s)"
+
+#: src/slic3r/GUI/Plater.cpp:975
+msgid "supports and pad"
+msgstr "supports and pad"
+
+#: src/slic3r/GUI/Plater.cpp:1000 src/slic3r/GUI/Plater.cpp:1015
msgid "objects"
msgstr "objects"
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
+#: src/slic3r/GUI/Plater.cpp:1000 src/slic3r/GUI/Plater.cpp:1015
msgid "wipe tower"
msgstr "wipe tower"
-#: src/slic3r/GUI/Plater.cpp:855
+#: src/slic3r/GUI/Plater.cpp:1030
msgid "normal mode"
msgstr "normal mode"
-#: src/slic3r/GUI/Plater.cpp:859
+#: src/slic3r/GUI/Plater.cpp:1034
msgid "silent mode"
msgstr "silent mode"
-#: src/slic3r/GUI/Plater.cpp:1304
+#: src/slic3r/GUI/Plater.cpp:1544
msgid "Loading"
msgstr "Loading"
-#: src/slic3r/GUI/Plater.cpp:1314
+#: src/slic3r/GUI/Plater.cpp:1554
#, c-format
msgid "Processing input file %s\n"
msgstr "Processing input file %s\n"
-#: src/slic3r/GUI/Plater.cpp:1366
+#: src/slic3r/GUI/Plater.cpp:1612
msgid ""
"This file contains several objects positioned at multiple heights. Instead "
"of considering them as multiple objects, should I consider\n"
@@ -2114,11 +2463,23 @@ msgstr ""
"of considering them as multiple objects, should I consider\n"
"this file as a single object having multiple parts?\n"
-#: src/slic3r/GUI/Plater.cpp:1369 src/slic3r/GUI/Plater.cpp:1411
+#: src/slic3r/GUI/Plater.cpp:1615 src/slic3r/GUI/Plater.cpp:1707
msgid "Multi-part object detected"
msgstr "Multi-part object detected"
-#: src/slic3r/GUI/Plater.cpp:1388
+#: src/slic3r/GUI/Plater.cpp:1650
+msgid ""
+"This file cannot be loaded in simple mode. Do you want to switch to expert "
+"mode?\n"
+msgstr ""
+"This file cannot be loaded in simple mode. Do you want to switch to expert "
+"mode?\n"
+
+#: src/slic3r/GUI/Plater.cpp:1651
+msgid "Detected advanced data"
+msgstr "Detected advanced data"
+
+#: src/slic3r/GUI/Plater.cpp:1684
#, c-format
msgid ""
"You can't to add the object(s) from %s because of one or some of them "
@@ -2127,7 +2488,7 @@ msgstr ""
"You can't to add the object(s) from %s because of one or some of them "
"is(are) multi-part"
-#: src/slic3r/GUI/Plater.cpp:1408
+#: src/slic3r/GUI/Plater.cpp:1704
msgid ""
"Multiple objects were loaded for a multi-material printer.\n"
"Instead of considering them as multiple objects, should I consider\n"
@@ -2137,11 +2498,11 @@ msgstr ""
"Instead of considering them as multiple objects, should I consider\n"
"these files to represent a single object having multiple parts?\n"
-#: src/slic3r/GUI/Plater.cpp:1424
+#: src/slic3r/GUI/Plater.cpp:1720
msgid "Loaded"
msgstr "Loaded"
-#: src/slic3r/GUI/Plater.cpp:1492
+#: src/slic3r/GUI/Plater.cpp:1812
msgid ""
"Your object appears to be too large, so it was automatically scaled down to "
"fit your print bed."
@@ -2149,47 +2510,51 @@ msgstr ""
"Your object appears to be too large, so it was automatically scaled down to "
"fit your print bed."
-#: src/slic3r/GUI/Plater.cpp:1493
+#: src/slic3r/GUI/Plater.cpp:1813
msgid "Object too large?"
msgstr "Object too large?"
-#: src/slic3r/GUI/Plater.cpp:1536
-msgid "Export print config"
-msgstr "Export print config"
+#: src/slic3r/GUI/Plater.cpp:1863
+msgid "Export STL file:"
+msgstr "Export STL file:"
-#: src/slic3r/GUI/Plater.cpp:1538
+#: src/slic3r/GUI/Plater.cpp:1870
+msgid "Export AMF file:"
+msgstr "Export AMF file:"
+
+#: src/slic3r/GUI/Plater.cpp:1876
msgid "Save file as:"
msgstr "Save file as:"
-#: src/slic3r/GUI/Plater.cpp:1702
+#: src/slic3r/GUI/Plater.cpp:2042
msgid "Arranging canceled"
msgstr "Arranging canceled"
-#: src/slic3r/GUI/Plater.cpp:1705
+#: src/slic3r/GUI/Plater.cpp:2045
msgid "Arranging"
msgstr "Arranging"
-#: src/slic3r/GUI/Plater.cpp:1736
+#: src/slic3r/GUI/Plater.cpp:2079
msgid "Could not arrange model objects! Some geometries may be invalid."
msgstr "Could not arrange model objects! Some geometries may be invalid."
-#: src/slic3r/GUI/Plater.cpp:1740
+#: src/slic3r/GUI/Plater.cpp:2083
msgid "Arranging done."
msgstr "Arranging done."
-#: src/slic3r/GUI/Plater.cpp:1782
+#: src/slic3r/GUI/Plater.cpp:2124
msgid "Orientation search canceled"
msgstr "Orientation search canceled"
-#: src/slic3r/GUI/Plater.cpp:1787
+#: src/slic3r/GUI/Plater.cpp:2129
msgid "Searching for optimal orientation"
msgstr "Searching for optimal orientation"
-#: src/slic3r/GUI/Plater.cpp:1797
+#: src/slic3r/GUI/Plater.cpp:2190
msgid "Orientation found."
msgstr "Orientation found."
-#: src/slic3r/GUI/Plater.cpp:1818
+#: src/slic3r/GUI/Plater.cpp:2211
msgid ""
"The selected object can't be split because it contains more than one volume/"
"material."
@@ -2197,170 +2562,179 @@ msgstr ""
"The selected object can't be split because it contains more than one volume/"
"material."
-#: src/slic3r/GUI/Plater.cpp:1945 src/slic3r/GUI/PrintHostDialogs.cpp:174
+#: src/slic3r/GUI/Plater.cpp:2337
+msgid "Invalid data"
+msgstr "Invalid data"
+
+#: src/slic3r/GUI/Plater.cpp:2346
+msgid "Ready to slice"
+msgstr "Ready to slice"
+
+#: src/slic3r/GUI/Plater.cpp:2379 src/slic3r/GUI/PrintHostDialogs.cpp:220
msgid "Cancelling"
msgstr "Cancelling"
-#: src/slic3r/GUI/Plater.cpp:1962
+#: src/slic3r/GUI/Plater.cpp:2396
msgid "Another export job is currently running."
msgstr "Another export job is currently running."
-#: src/slic3r/GUI/Plater.cpp:2215
+#: src/slic3r/GUI/Plater.cpp:2656
msgid "Export failed"
msgstr "Export failed"
-#: src/slic3r/GUI/Plater.cpp:2219 src/slic3r/GUI/PrintHostDialogs.cpp:175
+#: src/slic3r/GUI/Plater.cpp:2661 src/slic3r/GUI/PrintHostDialogs.cpp:221
msgid "Cancelled"
msgstr "Cancelled"
-#: src/slic3r/GUI/Plater.cpp:2346 src/slic3r/GUI/Tab.cpp:2736
-msgid "Delete"
-msgstr "Delete"
-
-#: src/slic3r/GUI/Plater.cpp:2346
-msgid "Remove the selected object"
-msgstr "Remove the selected object"
-
-#: src/slic3r/GUI/Plater.cpp:2349
+#: src/slic3r/GUI/Plater.cpp:2747 src/slic3r/GUI/Plater.cpp:2759
+#: src/slic3r/GUI/Plater.cpp:2831
msgid "Increase copies"
msgstr "Increase copies"
-#: src/slic3r/GUI/Plater.cpp:2349
+#: src/slic3r/GUI/Plater.cpp:2825 src/slic3r/GUI/Plater.cpp:2843
+msgid "Remove the selected object"
+msgstr "Remove the selected object"
+
+#: src/slic3r/GUI/Plater.cpp:2831
msgid "Place one more copy of the selected object"
msgstr "Place one more copy of the selected object"
-#: src/slic3r/GUI/Plater.cpp:2351
+#: src/slic3r/GUI/Plater.cpp:2833
msgid "Decrease copies"
msgstr "Decrease copies"
-#: src/slic3r/GUI/Plater.cpp:2351
+#: src/slic3r/GUI/Plater.cpp:2833
msgid "Remove one copy of the selected object"
msgstr "Remove one copy of the selected object"
-#: src/slic3r/GUI/Plater.cpp:2353
+#: src/slic3r/GUI/Plater.cpp:2835
msgid "Set number of copies"
msgstr "Set number of copies"
-#: src/slic3r/GUI/Plater.cpp:2353
+#: src/slic3r/GUI/Plater.cpp:2835
msgid "Change the number of copies of the selected object"
msgstr "Change the number of copies of the selected object"
-#: src/slic3r/GUI/Plater.cpp:2363
+#: src/slic3r/GUI/Plater.cpp:2858
msgid "Reload from Disk"
msgstr "Reload from Disk"
-#: src/slic3r/GUI/Plater.cpp:2363
+#: src/slic3r/GUI/Plater.cpp:2858
msgid "Reload the selected file from Disk"
msgstr "Reload the selected file from Disk"
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export object as STL"
-msgstr "Export object as STL"
+#: src/slic3r/GUI/Plater.cpp:2861
+msgid "Export the selected object as STL file"
+msgstr "Export the selected object as STL file"
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export this single object as STL file"
-msgstr "Export this single object as STL file"
-
-#: src/slic3r/GUI/Plater.cpp:2375
+#: src/slic3r/GUI/Plater.cpp:2873
msgid "Along X axis"
msgstr "Along X axis"
-#: src/slic3r/GUI/Plater.cpp:2375
+#: src/slic3r/GUI/Plater.cpp:2873
msgid "Mirror the selected object along the X axis"
msgstr "Mirror the selected object along the X axis"
-#: src/slic3r/GUI/Plater.cpp:2377
+#: src/slic3r/GUI/Plater.cpp:2875
msgid "Along Y axis"
msgstr "Along Y axis"
-#: src/slic3r/GUI/Plater.cpp:2377
+#: src/slic3r/GUI/Plater.cpp:2875
msgid "Mirror the selected object along the Y axis"
msgstr "Mirror the selected object along the Y axis"
-#: src/slic3r/GUI/Plater.cpp:2379
+#: src/slic3r/GUI/Plater.cpp:2877
msgid "Along Z axis"
msgstr "Along Z axis"
-#: src/slic3r/GUI/Plater.cpp:2379
+#: src/slic3r/GUI/Plater.cpp:2877
msgid "Mirror the selected object along the Z axis"
msgstr "Mirror the selected object along the Z axis"
-#: src/slic3r/GUI/Plater.cpp:2382
+#: src/slic3r/GUI/Plater.cpp:2880
msgid "Mirror"
msgstr "Mirror"
-#: src/slic3r/GUI/Plater.cpp:2382
+#: src/slic3r/GUI/Plater.cpp:2880
msgid "Mirror the selected object"
msgstr "Mirror the selected object"
-#: src/slic3r/GUI/Plater.cpp:2400
+#: src/slic3r/GUI/Plater.cpp:2898
msgid "To objects"
msgstr "To objects"
-#: src/slic3r/GUI/Plater.cpp:2400 src/slic3r/GUI/Plater.cpp:2431
+#: src/slic3r/GUI/Plater.cpp:2898 src/slic3r/GUI/Plater.cpp:2920
msgid "Split the selected object into individual objects"
msgstr "Split the selected object into individual objects"
-#: src/slic3r/GUI/Plater.cpp:2402
+#: src/slic3r/GUI/Plater.cpp:2900
msgid "To parts"
msgstr "To parts"
-#: src/slic3r/GUI/Plater.cpp:2402 src/slic3r/GUI/Plater.cpp:2451
+#: src/slic3r/GUI/Plater.cpp:2900 src/slic3r/GUI/Plater.cpp:2940
msgid "Split the selected object into individual sub-parts"
msgstr "Split the selected object into individual sub-parts"
-#: src/slic3r/GUI/Plater.cpp:2405 src/slic3r/GUI/Plater.cpp:2431
-#: src/slic3r/GUI/Plater.cpp:2451
+#: src/slic3r/GUI/Plater.cpp:2903 src/slic3r/GUI/Plater.cpp:2920
+#: src/slic3r/GUI/Plater.cpp:2940 src/libslic3r/PrintConfig.cpp:3075
msgid "Split"
msgstr "Split"
-#: src/slic3r/GUI/Plater.cpp:2405
+#: src/slic3r/GUI/Plater.cpp:2903
msgid "Split the selected object"
msgstr "Split the selected object"
-#: src/slic3r/GUI/Plater.cpp:2435
+#: src/slic3r/GUI/Plater.cpp:2926
msgid "Optimize orientation"
msgstr "Optimize orientation"
-#: src/slic3r/GUI/Plater.cpp:2435
+#: src/slic3r/GUI/Plater.cpp:2926
msgid "Optimize the rotation of the object for better print results."
msgstr "Optimize the rotation of the object for better print results."
-#: src/slic3r/GUI/Plater.cpp:2795
+#: src/slic3r/GUI/Plater.cpp:3342
msgid "Save G-code file as:"
msgstr "Save G-code file as:"
-#: src/slic3r/GUI/Plater.cpp:2795
-msgid "Save Zip file as:"
-msgstr "Save Zip file as:"
+#: src/slic3r/GUI/Plater.cpp:3342
+msgid "Save SL1 file as:"
+msgstr "Save SL1 file as:"
-#: src/slic3r/GUI/Plater.cpp:2845
+#: src/slic3r/GUI/Plater.cpp:3397
#, c-format
msgid "STL file exported to %s"
msgstr "STL file exported to %s"
-#: src/slic3r/GUI/Plater.cpp:2861
+#: src/slic3r/GUI/Plater.cpp:3413
#, c-format
msgid "AMF file exported to %s"
msgstr "AMF file exported to %s"
-#: src/slic3r/GUI/Plater.cpp:2864
+#: src/slic3r/GUI/Plater.cpp:3416
#, c-format
msgid "Error exporting AMF file %s"
msgstr "Error exporting AMF file %s"
-#: src/slic3r/GUI/Plater.cpp:2891
+#: src/slic3r/GUI/Plater.cpp:3442
#, c-format
msgid "3MF file exported to %s"
msgstr "3MF file exported to %s"
-#: src/slic3r/GUI/Plater.cpp:2894
+#: src/slic3r/GUI/Plater.cpp:3445
#, c-format
msgid "Error exporting 3MF file %s"
msgstr "Error exporting 3MF file %s"
-#: src/slic3r/GUI/Preferences.cpp:17 src/slic3r/GUI/Tab.cpp:1712
-#: src/slic3r/GUI/Tab.cpp:1911
+#: src/slic3r/GUI/Plater.cpp:3673
+msgid "Export"
+msgstr "Export"
+
+#: src/slic3r/GUI/Plater.cpp:3674
+msgid "Send G-code"
+msgstr "Send G-code"
+
+#: src/slic3r/GUI/Preferences.cpp:17 src/slic3r/GUI/Tab.cpp:1762
+#: src/slic3r/GUI/Tab.cpp:1963
msgid "General"
msgstr "General"
@@ -2424,11 +2798,11 @@ msgstr ""
"When checked, the print and filament presets are shown in the preset editor "
"even if they are marked as incompatible with the active printer"
-#: src/slic3r/GUI/Preferences.cpp:90
+#: src/slic3r/GUI/Preferences.cpp:91
msgid "Use legacy OpenGL 1.1 rendering"
msgstr "Use legacy OpenGL 1.1 rendering"
-#: src/slic3r/GUI/Preferences.cpp:92
+#: src/slic3r/GUI/Preferences.cpp:93
msgid ""
"If you have rendering issues caused by a buggy OpenGL 2.0 driver, you may "
"try to check this checkbox. This will disable the layer height editing and "
@@ -2438,26 +2812,42 @@ msgstr ""
"try to check this checkbox. This will disable the layer height editing and "
"anti aliasing, so it is likely better to upgrade your graphics driver."
-#: src/slic3r/GUI/Preferences.cpp:115
+#: src/slic3r/GUI/Preferences.cpp:101
+msgid "Use Retina resolution for the 3D scene"
+msgstr "Use Retina resolution for the 3D scene"
+
+#: src/slic3r/GUI/Preferences.cpp:103
+msgid ""
+"If enabled, the 3D scene will be rendered in Retina resolution. If you are "
+"experiencing 3D performance problems, disabling this option may help."
+msgstr ""
+"If enabled, the 3D scene will be rendered in Retina resolution. If you are "
+"experiencing 3D performance problems, disabling this option may help."
+
+#: src/slic3r/GUI/Preferences.cpp:126
msgid "You need to restart Slic3r to make the changes effective."
msgstr "You need to restart Slic3r to make the changes effective."
-#: src/slic3r/GUI/Preset.cpp:170
+#: src/slic3r/GUI/Preset.cpp:207
msgid "modified"
msgstr "modified"
-#: src/slic3r/GUI/Preset.cpp:862 src/slic3r/GUI/Preset.cpp:902
-#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:962
-#: src/slic3r/GUI/PresetBundle.cpp:1459 src/slic3r/GUI/PresetBundle.cpp:1512
+#: src/slic3r/GUI/Preset.cpp:918 src/slic3r/GUI/Preset.cpp:958
+#: src/slic3r/GUI/Preset.cpp:1011 src/slic3r/GUI/Preset.cpp:1043
+#: src/slic3r/GUI/PresetBundle.cpp:1484 src/slic3r/GUI/PresetBundle.cpp:1537
msgid "System presets"
msgstr "System presets"
-#: src/slic3r/GUI/Preset.cpp:906 src/slic3r/GUI/Preset.cpp:966
-#: src/slic3r/GUI/PresetBundle.cpp:1517
+#: src/slic3r/GUI/Preset.cpp:962 src/slic3r/GUI/Preset.cpp:1047
+#: src/slic3r/GUI/PresetBundle.cpp:1542
msgid "User presets"
msgstr "User presets"
-#: src/slic3r/GUI/Preset.cpp:1157
+#: src/slic3r/GUI/Preset.cpp:991 src/slic3r/GUI/Tab.cpp:247
+msgid "Add a new printer"
+msgstr "Add a new printer"
+
+#: src/slic3r/GUI/Preset.cpp:1251
msgid "filament"
msgstr "filament"
@@ -2597,48 +2987,44 @@ msgstr "Recommended object thin wall thickness for layer height %.2f and "
msgid "%d lines: %.2lf mm"
msgstr "%d lines: %.2lf mm"
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
+#: src/slic3r/GUI/PrintHostDialogs.cpp:32
msgid "Send G-Code to printer host"
msgstr "Send G-Code to printer host"
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
+#: src/slic3r/GUI/PrintHostDialogs.cpp:32
msgid "Upload to Printer Host with the following filename:"
msgstr "Upload to Printer Host with the following filename:"
-#: src/slic3r/GUI/PrintHostDialogs.cpp:31
+#: src/slic3r/GUI/PrintHostDialogs.cpp:34
msgid "Start printing after upload"
msgstr "Start printing after upload"
-#: src/slic3r/GUI/PrintHostDialogs.cpp:33
+#: src/slic3r/GUI/PrintHostDialogs.cpp:41
msgid "Use forward slashes ( / ) as a directory separator if needed."
msgstr "Use forward slashes ( / ) as a directory separator if needed."
-#: src/slic3r/GUI/PrintHostDialogs.cpp:111
+#: src/slic3r/GUI/PrintHostDialogs.cpp:157
msgid "Cancel selected"
msgstr "Cancel selected"
-#: src/slic3r/GUI/PrintHostDialogs.cpp:113
+#: src/slic3r/GUI/PrintHostDialogs.cpp:159
msgid "Show error message"
msgstr "Show error message"
-#: src/slic3r/GUI/PrintHostDialogs.cpp:115
-msgid "Close"
-msgstr "Close"
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:152
-#: src/slic3r/GUI/PrintHostDialogs.cpp:171
+#: src/slic3r/GUI/PrintHostDialogs.cpp:198
+#: src/slic3r/GUI/PrintHostDialogs.cpp:217
msgid "Enqueued"
msgstr "Enqueued"
-#: src/slic3r/GUI/PrintHostDialogs.cpp:172
+#: src/slic3r/GUI/PrintHostDialogs.cpp:218
msgid "Uploading"
msgstr "Uploading"
-#: src/slic3r/GUI/PrintHostDialogs.cpp:176
+#: src/slic3r/GUI/PrintHostDialogs.cpp:222
msgid "Completed"
msgstr "Completed"
-#: src/slic3r/GUI/PrintHostDialogs.cpp:214
+#: src/slic3r/GUI/PrintHostDialogs.cpp:260
msgid "Error uploading to print host:"
msgstr "Error uploading to print host:"
@@ -2651,10 +3037,10 @@ msgid "Time"
msgstr "Time"
#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78 src/libslic3r/PrintConfig.cpp:603
-#: src/libslic3r/PrintConfig.cpp:653 src/libslic3r/PrintConfig.cpp:670
-#: src/libslic3r/PrintConfig.cpp:2352 src/libslic3r/PrintConfig.cpp:2360
-#: src/libslic3r/PrintConfig.cpp:2432 src/libslic3r/PrintConfig.cpp:2440
+#: src/slic3r/GUI/WipeTowerDialog.cpp:82 src/libslic3r/PrintConfig.cpp:611
+#: src/libslic3r/PrintConfig.cpp:655 src/libslic3r/PrintConfig.cpp:670
+#: src/libslic3r/PrintConfig.cpp:2241 src/libslic3r/PrintConfig.cpp:2250
+#: src/libslic3r/PrintConfig.cpp:2308 src/libslic3r/PrintConfig.cpp:2315
msgid "s"
msgstr "s"
@@ -2662,35 +3048,35 @@ msgstr "s"
msgid "Volumetric speed"
msgstr "Volumetric speed"
-#: src/slic3r/GUI/SysInfoDialog.cpp:40
+#: src/slic3r/GUI/SysInfoDialog.cpp:44
msgid "Slic3r Prusa Edition - System Information"
msgstr "Slic3r Prusa Edition - System Information"
-#: src/slic3r/GUI/Tab.cpp:49 src/libslic3r/PrintConfig.cpp:202
+#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:228
msgid "Compatible printers"
msgstr "Compatible printers"
-#: src/slic3r/GUI/Tab.cpp:50
+#: src/slic3r/GUI/Tab.cpp:51
msgid "Select the printers this profile is compatible with."
msgstr "Select the printers this profile is compatible with."
-#: src/slic3r/GUI/Tab.cpp:55 src/libslic3r/PrintConfig.cpp:215
+#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:243
msgid "Compatible print profiles"
msgstr "Compatible print profiles"
-#: src/slic3r/GUI/Tab.cpp:56
+#: src/slic3r/GUI/Tab.cpp:57
msgid "Select the print profiles this profile is compatible with."
msgstr "Select the print profiles this profile is compatible with."
-#: src/slic3r/GUI/Tab.cpp:118
+#: src/slic3r/GUI/Tab.cpp:132
msgid "Save current "
msgstr "Save current "
-#: src/slic3r/GUI/Tab.cpp:119
+#: src/slic3r/GUI/Tab.cpp:133
msgid "Delete this preset"
msgstr "Delete this preset"
-#: src/slic3r/GUI/Tab.cpp:131
+#: src/slic3r/GUI/Tab.cpp:145
msgid ""
"Hover the cursor over buttons to find more information \n"
"or click this button."
@@ -2698,181 +3084,181 @@ msgstr ""
"Hover the cursor over buttons to find more information \n"
"or click this button."
-#: src/slic3r/GUI/Tab.cpp:824
+#: src/slic3r/GUI/Tab.cpp:858
msgid "It's a default preset."
msgstr "It's a default preset."
-#: src/slic3r/GUI/Tab.cpp:825
+#: src/slic3r/GUI/Tab.cpp:859
msgid "It's a system preset."
msgstr "It's a system preset."
-#: src/slic3r/GUI/Tab.cpp:826
+#: src/slic3r/GUI/Tab.cpp:860
msgid "Current preset is inherited from "
msgstr "Current preset is inherited from "
-#: src/slic3r/GUI/Tab.cpp:831
+#: src/slic3r/GUI/Tab.cpp:865
msgid "It can't be deleted or modified. "
msgstr "It can't be deleted or modified. "
-#: src/slic3r/GUI/Tab.cpp:832
+#: src/slic3r/GUI/Tab.cpp:866
msgid ""
"Any modifications should be saved as a new preset inherited from this one. "
msgstr ""
"Any modifications should be saved as a new preset inherited from this one. "
-#: src/slic3r/GUI/Tab.cpp:833
+#: src/slic3r/GUI/Tab.cpp:867
msgid "To do that please specify a new name for the preset."
msgstr "To do that please specify a new name for the preset."
-#: src/slic3r/GUI/Tab.cpp:837
+#: src/slic3r/GUI/Tab.cpp:871
msgid "Additional information:"
msgstr "Additional information:"
-#: src/slic3r/GUI/Tab.cpp:843
+#: src/slic3r/GUI/Tab.cpp:877
msgid "printer model"
msgstr "printer model"
-#: src/slic3r/GUI/Tab.cpp:851
+#: src/slic3r/GUI/Tab.cpp:885
msgid "default print profile"
msgstr "default print profile"
-#: src/slic3r/GUI/Tab.cpp:854
+#: src/slic3r/GUI/Tab.cpp:888
msgid "default filament profile"
msgstr "default filament profile"
-#: src/slic3r/GUI/Tab.cpp:868
+#: src/slic3r/GUI/Tab.cpp:902
msgid "default SLA material profile"
msgstr "default SLA material profile"
-#: src/slic3r/GUI/Tab.cpp:872
+#: src/slic3r/GUI/Tab.cpp:906
msgid "default SLA print profile"
msgstr "default SLA print profile"
-#: src/slic3r/GUI/Tab.cpp:919 src/slic3r/GUI/Tab.cpp:3174
+#: src/slic3r/GUI/Tab.cpp:948 src/slic3r/GUI/Tab.cpp:3303
msgid "Layers and perimeters"
msgstr "Layers and perimeters"
-#: src/slic3r/GUI/Tab.cpp:920 src/libslic3r/PrintConfig.cpp:46
+#: src/slic3r/GUI/Tab.cpp:949 src/libslic3r/PrintConfig.cpp:55
msgid "Layer height"
msgstr "Layer height"
-#: src/slic3r/GUI/Tab.cpp:924
+#: src/slic3r/GUI/Tab.cpp:953
msgid "Vertical shells"
msgstr "Vertical shells"
-#: src/slic3r/GUI/Tab.cpp:935
+#: src/slic3r/GUI/Tab.cpp:964
msgid "Horizontal shells"
msgstr "Horizontal shells"
-#: src/slic3r/GUI/Tab.cpp:936 src/libslic3r/PrintConfig.cpp:1788
+#: src/slic3r/GUI/Tab.cpp:965 src/libslic3r/PrintConfig.cpp:1709
msgid "Solid layers"
msgstr "Solid layers"
-#: src/slic3r/GUI/Tab.cpp:941
+#: src/slic3r/GUI/Tab.cpp:970
msgid "Quality (slower slicing)"
msgstr "Quality (slower slicing)"
-#: src/slic3r/GUI/Tab.cpp:958
+#: src/slic3r/GUI/Tab.cpp:988
msgid "Reducing printing time"
msgstr "Reducing printing time"
-#: src/slic3r/GUI/Tab.cpp:970
+#: src/slic3r/GUI/Tab.cpp:1000
msgid "Skirt and brim"
msgstr "Skirt and brim"
-#: src/slic3r/GUI/Tab.cpp:987
+#: src/slic3r/GUI/Tab.cpp:1017
msgid "Raft"
msgstr "Raft"
-#: src/slic3r/GUI/Tab.cpp:991
+#: src/slic3r/GUI/Tab.cpp:1021
msgid "Options for support material and raft"
msgstr "Options for support material and raft"
-#: src/slic3r/GUI/Tab.cpp:1006
+#: src/slic3r/GUI/Tab.cpp:1036
msgid "Speed for print moves"
msgstr "Speed for print moves"
-#: src/slic3r/GUI/Tab.cpp:1018
+#: src/slic3r/GUI/Tab.cpp:1048
msgid "Speed for non-print moves"
msgstr "Speed for non-print moves"
-#: src/slic3r/GUI/Tab.cpp:1021
+#: src/slic3r/GUI/Tab.cpp:1051
msgid "Modifiers"
msgstr "Modifiers"
-#: src/slic3r/GUI/Tab.cpp:1024
+#: src/slic3r/GUI/Tab.cpp:1054
msgid "Acceleration control (advanced)"
msgstr "Acceleration control (advanced)"
-#: src/slic3r/GUI/Tab.cpp:1031
+#: src/slic3r/GUI/Tab.cpp:1061
msgid "Autospeed (advanced)"
msgstr "Autospeed (advanced)"
-#: src/slic3r/GUI/Tab.cpp:1037
+#: src/slic3r/GUI/Tab.cpp:1069
msgid "Multiple Extruders"
msgstr "Multiple Extruders"
-#: src/slic3r/GUI/Tab.cpp:1045
+#: src/slic3r/GUI/Tab.cpp:1077
msgid "Ooze prevention"
msgstr "Ooze prevention"
-#: src/slic3r/GUI/Tab.cpp:1062
+#: src/slic3r/GUI/Tab.cpp:1094
msgid "Extrusion width"
msgstr "Extrusion width"
-#: src/slic3r/GUI/Tab.cpp:1072
+#: src/slic3r/GUI/Tab.cpp:1104
msgid "Overlap"
msgstr "Overlap"
-#: src/slic3r/GUI/Tab.cpp:1075
+#: src/slic3r/GUI/Tab.cpp:1107
msgid "Flow"
msgstr "Flow"
-#: src/slic3r/GUI/Tab.cpp:1078
+#: src/slic3r/GUI/Tab.cpp:1116
msgid "Other"
msgstr "Other"
-#: src/slic3r/GUI/Tab.cpp:1085 src/slic3r/GUI/Tab.cpp:3213
+#: src/slic3r/GUI/Tab.cpp:1119 src/slic3r/GUI/Tab.cpp:3351
msgid "Output options"
msgstr "Output options"
-#: src/slic3r/GUI/Tab.cpp:1086
+#: src/slic3r/GUI/Tab.cpp:1120
msgid "Sequential printing"
msgstr "Sequential printing"
-#: src/slic3r/GUI/Tab.cpp:1088
+#: src/slic3r/GUI/Tab.cpp:1122
msgid "Extruder clearance (mm)"
msgstr "Extruder clearance (mm)"
-#: src/slic3r/GUI/Tab.cpp:1097 src/slic3r/GUI/Tab.cpp:3214
+#: src/slic3r/GUI/Tab.cpp:1131 src/slic3r/GUI/Tab.cpp:3352
msgid "Output file"
msgstr "Output file"
-#: src/slic3r/GUI/Tab.cpp:1103 src/libslic3r/PrintConfig.cpp:1438
+#: src/slic3r/GUI/Tab.cpp:1138 src/libslic3r/PrintConfig.cpp:1382
msgid "Post-processing scripts"
msgstr "Post-processing scripts"
-#: src/slic3r/GUI/Tab.cpp:1109 src/slic3r/GUI/Tab.cpp:1110
-#: src/slic3r/GUI/Tab.cpp:1483 src/slic3r/GUI/Tab.cpp:1484
-#: src/slic3r/GUI/Tab.cpp:1883 src/slic3r/GUI/Tab.cpp:1884
-#: src/slic3r/GUI/Tab.cpp:1964 src/slic3r/GUI/Tab.cpp:1965
-#: src/slic3r/GUI/Tab.cpp:3119 src/slic3r/GUI/Tab.cpp:3120
+#: src/slic3r/GUI/Tab.cpp:1144 src/slic3r/GUI/Tab.cpp:1145
+#: src/slic3r/GUI/Tab.cpp:1527 src/slic3r/GUI/Tab.cpp:1528
+#: src/slic3r/GUI/Tab.cpp:1935 src/slic3r/GUI/Tab.cpp:1936
+#: src/slic3r/GUI/Tab.cpp:2027 src/slic3r/GUI/Tab.cpp:2028
+#: src/slic3r/GUI/Tab.cpp:3240 src/slic3r/GUI/Tab.cpp:3241
msgid "Notes"
msgstr "Notes"
-#: src/slic3r/GUI/Tab.cpp:1116 src/slic3r/GUI/Tab.cpp:1491
-#: src/slic3r/GUI/Tab.cpp:1890 src/slic3r/GUI/Tab.cpp:1971
-#: src/slic3r/GUI/Tab.cpp:3127 src/slic3r/GUI/Tab.cpp:3219
+#: src/slic3r/GUI/Tab.cpp:1151 src/slic3r/GUI/Tab.cpp:1535
+#: src/slic3r/GUI/Tab.cpp:1942 src/slic3r/GUI/Tab.cpp:2034
+#: src/slic3r/GUI/Tab.cpp:3248 src/slic3r/GUI/Tab.cpp:3357
msgid "Dependencies"
msgstr "Dependencies"
-#: src/slic3r/GUI/Tab.cpp:1117 src/slic3r/GUI/Tab.cpp:1492
-#: src/slic3r/GUI/Tab.cpp:1891 src/slic3r/GUI/Tab.cpp:1972
-#: src/slic3r/GUI/Tab.cpp:3128 src/slic3r/GUI/Tab.cpp:3220
+#: src/slic3r/GUI/Tab.cpp:1152 src/slic3r/GUI/Tab.cpp:1536
+#: src/slic3r/GUI/Tab.cpp:1943 src/slic3r/GUI/Tab.cpp:2035
+#: src/slic3r/GUI/Tab.cpp:3249 src/slic3r/GUI/Tab.cpp:3358
msgid "Profile dependencies"
msgstr "Profile dependencies"
-#: src/slic3r/GUI/Tab.cpp:1161
+#: src/slic3r/GUI/Tab.cpp:1198
#, no-c-format
msgid ""
"The Spiral Vase mode requires:\n"
@@ -2893,11 +3279,11 @@ msgstr ""
"\n"
"Shall I adjust those settings in order to enable Spiral Vase?"
-#: src/slic3r/GUI/Tab.cpp:1168
+#: src/slic3r/GUI/Tab.cpp:1205
msgid "Spiral Vase"
msgstr "Spiral Vase"
-#: src/slic3r/GUI/Tab.cpp:1191
+#: src/slic3r/GUI/Tab.cpp:1228
msgid ""
"The Wipe Tower currently supports the non-soluble supports only\n"
"if they are printed with the current extruder without triggering a tool "
@@ -2915,11 +3301,11 @@ msgstr ""
"\n"
"Shall I adjust those settings in order to enable the Wipe Tower?"
-#: src/slic3r/GUI/Tab.cpp:1195 src/slic3r/GUI/Tab.cpp:1212
+#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:1249
msgid "Wipe Tower"
msgstr "Wipe Tower"
-#: src/slic3r/GUI/Tab.cpp:1209
+#: src/slic3r/GUI/Tab.cpp:1246
msgid ""
"For the Wipe Tower to work with the soluble supports, the support layers\n"
"need to be synchronized with the object layers.\n"
@@ -2931,7 +3317,7 @@ msgstr ""
"\n"
"Shall I synchronize support layers in order to enable the Wipe Tower?"
-#: src/slic3r/GUI/Tab.cpp:1227
+#: src/slic3r/GUI/Tab.cpp:1264
msgid ""
"Supports work better, if the following feature is enabled:\n"
"- Detect bridging perimeters\n"
@@ -2943,15 +3329,15 @@ msgstr ""
"\n"
"Shall I adjust those settings for supports?"
-#: src/slic3r/GUI/Tab.cpp:1230
+#: src/slic3r/GUI/Tab.cpp:1267
msgid "Support Generator"
msgstr "Support Generator"
-#: src/slic3r/GUI/Tab.cpp:1272
+#: src/slic3r/GUI/Tab.cpp:1309
msgid "The "
msgstr "The "
-#: src/slic3r/GUI/Tab.cpp:1272
+#: src/slic3r/GUI/Tab.cpp:1309
#, no-c-format
msgid ""
" infill pattern is not supposed to work at 100% density.\n"
@@ -2962,82 +3348,82 @@ msgstr ""
"\n"
"Shall I switch to rectilinear fill pattern?"
-#: src/slic3r/GUI/Tab.cpp:1388
+#: src/slic3r/GUI/Tab.cpp:1429
msgid "Temperature "
msgstr "Temperature "
-#: src/slic3r/GUI/Tab.cpp:1394
+#: src/slic3r/GUI/Tab.cpp:1435
msgid "Bed"
msgstr "Bed"
-#: src/slic3r/GUI/Tab.cpp:1399
+#: src/slic3r/GUI/Tab.cpp:1440
msgid "Cooling"
msgstr "Cooling"
-#: src/slic3r/GUI/Tab.cpp:1400 src/libslic3r/PrintConfig.cpp:1333
-#: src/libslic3r/PrintConfig.cpp:2212
+#: src/slic3r/GUI/Tab.cpp:1441 src/libslic3r/PrintConfig.cpp:1285
+#: src/libslic3r/PrintConfig.cpp:2097
msgid "Enable"
msgstr "Enable"
-#: src/slic3r/GUI/Tab.cpp:1411
+#: src/slic3r/GUI/Tab.cpp:1452
msgid "Fan settings"
msgstr "Fan settings"
-#: src/slic3r/GUI/Tab.cpp:1412
+#: src/slic3r/GUI/Tab.cpp:1453
msgid "Fan speed"
msgstr "Fan speed"
-#: src/slic3r/GUI/Tab.cpp:1420
+#: src/slic3r/GUI/Tab.cpp:1461
msgid "Cooling thresholds"
msgstr "Cooling thresholds"
-#: src/slic3r/GUI/Tab.cpp:1426
+#: src/slic3r/GUI/Tab.cpp:1467
msgid "Filament properties"
msgstr "Filament properties"
-#: src/slic3r/GUI/Tab.cpp:1430
+#: src/slic3r/GUI/Tab.cpp:1471
msgid "Print speed override"
msgstr "Print speed override"
-#: src/slic3r/GUI/Tab.cpp:1440
+#: src/slic3r/GUI/Tab.cpp:1481
msgid "Toolchange parameters with single extruder MM printers"
msgstr "Toolchange parameters with single extruder MM printers"
-#: src/slic3r/GUI/Tab.cpp:1455
+#: src/slic3r/GUI/Tab.cpp:1496
msgid "Ramming settings"
msgstr "Ramming settings"
-#: src/slic3r/GUI/Tab.cpp:1470 src/slic3r/GUI/Tab.cpp:1846
+#: src/slic3r/GUI/Tab.cpp:1514 src/slic3r/GUI/Tab.cpp:1898
msgid "Custom G-code"
msgstr "Custom G-code"
-#: src/slic3r/GUI/Tab.cpp:1471 src/slic3r/GUI/Tab.cpp:1847
-#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:1833
+#: src/slic3r/GUI/Tab.cpp:1515 src/slic3r/GUI/Tab.cpp:1899
+#: src/libslic3r/PrintConfig.cpp:1735 src/libslic3r/PrintConfig.cpp:1750
msgid "Start G-code"
msgstr "Start G-code"
-#: src/slic3r/GUI/Tab.cpp:1477 src/slic3r/GUI/Tab.cpp:1853
-#: src/libslic3r/PrintConfig.cpp:333 src/libslic3r/PrintConfig.cpp:344
+#: src/slic3r/GUI/Tab.cpp:1521 src/slic3r/GUI/Tab.cpp:1905
+#: src/libslic3r/PrintConfig.cpp:358 src/libslic3r/PrintConfig.cpp:368
msgid "End G-code"
msgstr "End G-code"
-#: src/slic3r/GUI/Tab.cpp:1588 src/slic3r/GUI/Tab.cpp:1642
+#: src/slic3r/GUI/Tab.cpp:1632 src/slic3r/GUI/Tab.cpp:1689
msgid " Browse "
msgstr " Browse "
-#: src/slic3r/GUI/Tab.cpp:1605 src/slic3r/GUI/Tab.cpp:1788
+#: src/slic3r/GUI/Tab.cpp:1651 src/slic3r/GUI/Tab.cpp:1838
msgid "Test"
msgstr "Test"
-#: src/slic3r/GUI/Tab.cpp:1615
+#: src/slic3r/GUI/Tab.cpp:1662
msgid "Could not get a valid Printer Host reference"
msgstr "Could not get a valid Printer Host reference"
-#: src/slic3r/GUI/Tab.cpp:1621 src/slic3r/GUI/Tab.cpp:1801
+#: src/slic3r/GUI/Tab.cpp:1668 src/slic3r/GUI/Tab.cpp:1851
msgid "Success!"
msgstr "Success!"
-#: src/slic3r/GUI/Tab.cpp:1636
+#: src/slic3r/GUI/Tab.cpp:1683
msgid ""
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
"signed certificate."
@@ -3045,15 +3431,15 @@ msgstr ""
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
"signed certificate."
-#: src/slic3r/GUI/Tab.cpp:1648
+#: src/slic3r/GUI/Tab.cpp:1696
msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
msgstr "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
-#: src/slic3r/GUI/Tab.cpp:1649
+#: src/slic3r/GUI/Tab.cpp:1697
msgid "Open CA certificate file"
msgstr "Open CA certificate file"
-#: src/slic3r/GUI/Tab.cpp:1676
+#: src/slic3r/GUI/Tab.cpp:1725
msgid ""
"HTTPS CA File:\n"
"\tOn this system, Slic3r uses HTTPS certificates from the system Certificate "
@@ -3067,141 +3453,149 @@ msgstr ""
"\tTo use a custom CA file, please import your CA file into Certificate "
"Store / Keychain."
-#: src/slic3r/GUI/Tab.cpp:1713 src/slic3r/GUI/Tab.cpp:1912
+#: src/slic3r/GUI/Tab.cpp:1763 src/slic3r/GUI/Tab.cpp:1964
msgid "Size and coordinates"
msgstr "Size and coordinates"
-#: src/slic3r/GUI/Tab.cpp:1717 src/slic3r/GUI/Tab.cpp:1916
-#: src/slic3r/GUI/Tab.cpp:2792
+#: src/slic3r/GUI/Tab.cpp:1767 src/slic3r/GUI/Tab.cpp:1968
+#: src/slic3r/GUI/Tab.cpp:2911
msgid " Set "
msgstr " Set "
-#: src/slic3r/GUI/Tab.cpp:1740
+#: src/slic3r/GUI/Tab.cpp:1790
msgid "Capabilities"
msgstr "Capabilities"
-#: src/slic3r/GUI/Tab.cpp:1745
+#: src/slic3r/GUI/Tab.cpp:1795
msgid "Number of extruders of the printer."
msgstr "Number of extruders of the printer."
-#: src/slic3r/GUI/Tab.cpp:1773
+#: src/slic3r/GUI/Tab.cpp:1823
msgid "USB/Serial connection"
msgstr "USB/Serial connection"
-#: src/slic3r/GUI/Tab.cpp:1774 src/libslic3r/PrintConfig.cpp:1660
+#: src/slic3r/GUI/Tab.cpp:1824 src/libslic3r/PrintConfig.cpp:1590
msgid "Serial port"
msgstr "Serial port"
-#: src/slic3r/GUI/Tab.cpp:1779
+#: src/slic3r/GUI/Tab.cpp:1829
msgid "Rescan serial ports"
msgstr "Rescan serial ports"
-#: src/slic3r/GUI/Tab.cpp:1801
+#: src/slic3r/GUI/Tab.cpp:1851
msgid "Connection to printer works correctly."
msgstr "Connection to printer works correctly."
-#: src/slic3r/GUI/Tab.cpp:1804
+#: src/slic3r/GUI/Tab.cpp:1854
msgid "Connection failed."
msgstr "Connection failed."
-#: src/slic3r/GUI/Tab.cpp:1817 src/slic3r/GUI/Tab.cpp:1961
+#: src/slic3r/GUI/Tab.cpp:1867 src/slic3r/GUI/Tab.cpp:2022
msgid "Print Host upload"
msgstr "Print Host upload"
-#: src/slic3r/GUI/Tab.cpp:1859 src/libslic3r/PrintConfig.cpp:92
+#: src/slic3r/GUI/Tab.cpp:1911 src/libslic3r/PrintConfig.cpp:128
msgid "Before layer change G-code"
msgstr "Before layer change G-code"
-#: src/slic3r/GUI/Tab.cpp:1865 src/libslic3r/PrintConfig.cpp:1042
+#: src/slic3r/GUI/Tab.cpp:1917 src/libslic3r/PrintConfig.cpp:1030
msgid "After layer change G-code"
msgstr "After layer change G-code"
-#: src/slic3r/GUI/Tab.cpp:1871 src/libslic3r/PrintConfig.cpp:2111
+#: src/slic3r/GUI/Tab.cpp:1923 src/libslic3r/PrintConfig.cpp:2005
msgid "Tool change G-code"
msgstr "Tool change G-code"
-#: src/slic3r/GUI/Tab.cpp:1877
+#: src/slic3r/GUI/Tab.cpp:1929
msgid "Between objects G-code (for sequential printing)"
msgstr "Between objects G-code (for sequential printing)"
-#: src/slic3r/GUI/Tab.cpp:1938
+#: src/slic3r/GUI/Tab.cpp:1990
msgid "Display"
msgstr "Display"
-#: src/slic3r/GUI/Tab.cpp:1949 src/slic3r/GUI/Tab.cpp:3102
+#: src/slic3r/GUI/Tab.cpp:2001
+msgid "Tilt"
+msgstr "Tilt"
+
+#: src/slic3r/GUI/Tab.cpp:2002
+msgid "Tilt time"
+msgstr "Tilt time"
+
+#: src/slic3r/GUI/Tab.cpp:2008 src/slic3r/GUI/Tab.cpp:3223
msgid "Corrections"
msgstr "Corrections"
-#: src/slic3r/GUI/Tab.cpp:2011 src/slic3r/GUI/Tab.cpp:2073
-#: src/libslic3r/PrintConfig.cpp:1088 src/libslic3r/PrintConfig.cpp:1098
-#: src/libslic3r/PrintConfig.cpp:1108 src/libslic3r/PrintConfig.cpp:1121
-#: src/libslic3r/PrintConfig.cpp:1132 src/libslic3r/PrintConfig.cpp:1143
-#: src/libslic3r/PrintConfig.cpp:1154
+#: src/slic3r/GUI/Tab.cpp:2074 src/slic3r/GUI/Tab.cpp:2136
+#: src/libslic3r/PrintConfig.cpp:1076 src/libslic3r/PrintConfig.cpp:1086
+#: src/libslic3r/PrintConfig.cpp:1096 src/libslic3r/PrintConfig.cpp:1109
+#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1131
+#: src/libslic3r/PrintConfig.cpp:1142
msgid "Machine limits"
msgstr "Machine limits"
-#: src/slic3r/GUI/Tab.cpp:2025
+#: src/slic3r/GUI/Tab.cpp:2088
msgid "Values in this column are for Full Power mode"
msgstr "Values in this column are for Full Power mode"
-#: src/slic3r/GUI/Tab.cpp:2026
+#: src/slic3r/GUI/Tab.cpp:2089
msgid "Full Power"
msgstr "Full Power"
-#: src/slic3r/GUI/Tab.cpp:2031
+#: src/slic3r/GUI/Tab.cpp:2094
msgid "Values in this column are for Silent mode"
msgstr "Values in this column are for Silent mode"
-#: src/slic3r/GUI/Tab.cpp:2032
+#: src/slic3r/GUI/Tab.cpp:2095
msgid "Silent"
msgstr "Silent"
-#: src/slic3r/GUI/Tab.cpp:2040
+#: src/slic3r/GUI/Tab.cpp:2103
msgid "Maximum feedrates"
msgstr "Maximum feedrates"
-#: src/slic3r/GUI/Tab.cpp:2045
+#: src/slic3r/GUI/Tab.cpp:2108
msgid "Maximum accelerations"
msgstr "Maximum accelerations"
-#: src/slic3r/GUI/Tab.cpp:2052
+#: src/slic3r/GUI/Tab.cpp:2115
msgid "Jerk limits"
msgstr "Jerk limits"
-#: src/slic3r/GUI/Tab.cpp:2057
+#: src/slic3r/GUI/Tab.cpp:2120
msgid "Minimum feedrates"
msgstr "Minimum feedrates"
-#: src/slic3r/GUI/Tab.cpp:2095 src/slic3r/GUI/Tab.cpp:2103
+#: src/slic3r/GUI/Tab.cpp:2158 src/slic3r/GUI/Tab.cpp:2166
msgid "Single extruder MM setup"
msgstr "Single extruder MM setup"
-#: src/slic3r/GUI/Tab.cpp:2104
+#: src/slic3r/GUI/Tab.cpp:2167
msgid "Single extruder multimaterial parameters"
msgstr "Single extruder multimaterial parameters"
-#: src/slic3r/GUI/Tab.cpp:2118 src/libslic3r/GCode/PreviewData.cpp:475
+#: src/slic3r/GUI/Tab.cpp:2181 src/libslic3r/GCode/PreviewData.cpp:475
#, c-format
msgid "Extruder %d"
msgstr "Extruder %d"
-#: src/slic3r/GUI/Tab.cpp:2125
+#: src/slic3r/GUI/Tab.cpp:2188
msgid "Layer height limits"
msgstr "Layer height limits"
-#: src/slic3r/GUI/Tab.cpp:2130
+#: src/slic3r/GUI/Tab.cpp:2193
msgid "Position (for multi-extruder printers)"
msgstr "Position (for multi-extruder printers)"
-#: src/slic3r/GUI/Tab.cpp:2133
+#: src/slic3r/GUI/Tab.cpp:2196
msgid "Retraction"
msgstr "Retraction"
-#: src/slic3r/GUI/Tab.cpp:2136
+#: src/slic3r/GUI/Tab.cpp:2199
msgid "Only lift Z"
msgstr "Only lift Z"
-#: src/slic3r/GUI/Tab.cpp:2149
+#: src/slic3r/GUI/Tab.cpp:2212
msgid ""
"Retraction when tool is disabled (advanced settings for multi-extruder "
"setups)"
@@ -3209,11 +3603,11 @@ msgstr ""
"Retraction when tool is disabled (advanced settings for multi-extruder "
"setups)"
-#: src/slic3r/GUI/Tab.cpp:2153
+#: src/slic3r/GUI/Tab.cpp:2216
msgid "Preview"
msgstr "Preview"
-#: src/slic3r/GUI/Tab.cpp:2284
+#: src/slic3r/GUI/Tab.cpp:2352
msgid ""
"The Wipe option is not available when using the Firmware Retraction mode.\n"
"\n"
@@ -3223,93 +3617,89 @@ msgstr ""
"\n"
"Shall I disable it in order to enable Firmware Retraction?"
-#: src/slic3r/GUI/Tab.cpp:2286
+#: src/slic3r/GUI/Tab.cpp:2354
msgid "Firmware Retraction"
msgstr "Firmware Retraction"
-#: src/slic3r/GUI/Tab.cpp:2565
+#: src/slic3r/GUI/Tab.cpp:2681
#, c-format
msgid "Default preset (%s)"
msgstr "Default preset (%s)"
-#: src/slic3r/GUI/Tab.cpp:2566
+#: src/slic3r/GUI/Tab.cpp:2682
#, c-format
msgid "Preset (%s)"
msgstr "Preset (%s)"
-#: src/slic3r/GUI/Tab.cpp:2583
+#: src/slic3r/GUI/Tab.cpp:2699
msgid "has the following unsaved changes:"
msgstr "has the following unsaved changes:"
-#: src/slic3r/GUI/Tab.cpp:2586
+#: src/slic3r/GUI/Tab.cpp:2702
msgid "is not compatible with printer"
msgstr "is not compatible with printer"
-#: src/slic3r/GUI/Tab.cpp:2587
+#: src/slic3r/GUI/Tab.cpp:2703
msgid "is not compatible with print profile"
msgstr "is not compatible with print profile"
-#: src/slic3r/GUI/Tab.cpp:2589
+#: src/slic3r/GUI/Tab.cpp:2705
msgid "and it has the following unsaved changes:"
msgstr "and it has the following unsaved changes:"
-#: src/slic3r/GUI/Tab.cpp:2592
+#: src/slic3r/GUI/Tab.cpp:2708
msgid "Discard changes and continue anyway?"
msgstr "Discard changes and continue anyway?"
-#: src/slic3r/GUI/Tab.cpp:2593
+#: src/slic3r/GUI/Tab.cpp:2709
msgid "Unsaved Changes"
msgstr "Unsaved Changes"
-#: src/slic3r/GUI/Tab.cpp:2604
-msgid "It's impossible to print multi-part object(s) with SLA technology."
-msgstr "It's impossible to print multi-part object(s) with SLA technology."
-
-#: src/slic3r/GUI/Tab.cpp:2605
+#: src/slic3r/GUI/Tab.cpp:2721
msgid "Please check your object list before preset changing."
msgstr "Please check your object list before preset changing."
-#: src/slic3r/GUI/Tab.cpp:2699
+#: src/slic3r/GUI/Tab.cpp:2801
+msgid "Copy"
+msgstr "Copy"
+
+#: src/slic3r/GUI/Tab.cpp:2823
msgid "The supplied name is empty. It can't be saved."
msgstr "The supplied name is empty. It can't be saved."
-#: src/slic3r/GUI/Tab.cpp:2704
+#: src/slic3r/GUI/Tab.cpp:2828
msgid "Cannot overwrite a system profile."
msgstr "Cannot overwrite a system profile."
-#: src/slic3r/GUI/Tab.cpp:2708
+#: src/slic3r/GUI/Tab.cpp:2832
msgid "Cannot overwrite an external profile."
msgstr "Cannot overwrite an external profile."
-#: src/slic3r/GUI/Tab.cpp:2734
+#: src/slic3r/GUI/Tab.cpp:2858
msgid "remove"
msgstr "remove"
-#: src/slic3r/GUI/Tab.cpp:2734
+#: src/slic3r/GUI/Tab.cpp:2858
msgid "delete"
msgstr "delete"
-#: src/slic3r/GUI/Tab.cpp:2735
+#: src/slic3r/GUI/Tab.cpp:2859
msgid "Are you sure you want to "
msgstr "Are you sure you want to "
-#: src/slic3r/GUI/Tab.cpp:2735
+#: src/slic3r/GUI/Tab.cpp:2859
msgid " the selected preset?"
msgstr " the selected preset?"
-#: src/slic3r/GUI/Tab.cpp:2736
+#: src/slic3r/GUI/Tab.cpp:2860
msgid "Remove"
msgstr "Remove"
-#: src/slic3r/GUI/Tab.cpp:2737
+#: src/slic3r/GUI/Tab.cpp:2861
msgid " Preset"
msgstr " Preset"
-#: src/slic3r/GUI/Tab.cpp:2791
-msgid "All"
-msgstr "All"
-
-#: src/slic3r/GUI/Tab.cpp:2869
+#: src/slic3r/GUI/Tab.cpp:2989
msgid ""
"LOCKED LOCK;indicates that the settings are the same as the system values "
"for the current option group"
@@ -3317,7 +3707,7 @@ msgstr ""
"LOCKED LOCK;indicates that the settings are the same as the system values "
"for the current option group"
-#: src/slic3r/GUI/Tab.cpp:2872
+#: src/slic3r/GUI/Tab.cpp:2992
msgid ""
"UNLOCKED LOCK;indicates that some settings were changed and are not equal to "
"the system values for the current option group.\n"
@@ -3329,7 +3719,7 @@ msgstr ""
"Click the UNLOCKED LOCK icon to reset all settings for current option group "
"to the system values."
-#: src/slic3r/GUI/Tab.cpp:2878
+#: src/slic3r/GUI/Tab.cpp:2998
msgid ""
"WHITE BULLET;for the left button: \tindicates a non-system preset,\n"
"for the right button: \tindicates that the settings hasn't been modified."
@@ -3337,7 +3727,7 @@ msgstr ""
"WHITE BULLET;for the left button: \tindicates a non-system preset,\n"
"for the right button: \tindicates that the settings hasn't been modified."
-#: src/slic3r/GUI/Tab.cpp:2882
+#: src/slic3r/GUI/Tab.cpp:3002
msgid ""
"BACK ARROW;indicates that the settings were changed and are not equal to the "
"last saved preset for the current option group.\n"
@@ -3349,7 +3739,7 @@ msgstr ""
"Click the BACK ARROW icon to reset all settings for the current option group "
"to the last saved preset."
-#: src/slic3r/GUI/Tab.cpp:2908
+#: src/slic3r/GUI/Tab.cpp:3028
msgid ""
"LOCKED LOCK icon indicates that the settings are the same as the system "
"values for the current option group"
@@ -3357,7 +3747,7 @@ msgstr ""
"LOCKED LOCK icon indicates that the settings are the same as the system "
"values for the current option group"
-#: src/slic3r/GUI/Tab.cpp:2910
+#: src/slic3r/GUI/Tab.cpp:3030
msgid ""
"UNLOCKED LOCK icon indicates that some settings were changed and are not "
"equal to the system values for the current option group.\n"
@@ -3367,11 +3757,11 @@ msgstr ""
"equal to the system values for the current option group.\n"
"Click to reset all settings for current option group to the system values."
-#: src/slic3r/GUI/Tab.cpp:2913
+#: src/slic3r/GUI/Tab.cpp:3033
msgid "WHITE BULLET icon indicates a non system preset."
msgstr "WHITE BULLET icon indicates a non system preset."
-#: src/slic3r/GUI/Tab.cpp:2916
+#: src/slic3r/GUI/Tab.cpp:3036
msgid ""
"WHITE BULLET icon indicates that the settings are the same as in the last "
"saved preset for the current option group."
@@ -3379,7 +3769,7 @@ msgstr ""
"WHITE BULLET icon indicates that the settings are the same as in the last "
"saved preset for the current option group."
-#: src/slic3r/GUI/Tab.cpp:2918
+#: src/slic3r/GUI/Tab.cpp:3038
msgid ""
"BACK ARROW icon indicates that the settings were changed and are not equal "
"to the last saved preset for the current option group.\n"
@@ -3391,13 +3781,13 @@ msgstr ""
"Click to reset all settings for the current option group to the last saved "
"preset."
-#: src/slic3r/GUI/Tab.cpp:2924
+#: src/slic3r/GUI/Tab.cpp:3044
msgid ""
"LOCKED LOCK icon indicates that the value is the same as the system value."
msgstr ""
"LOCKED LOCK icon indicates that the value is the same as the system value."
-#: src/slic3r/GUI/Tab.cpp:2925
+#: src/slic3r/GUI/Tab.cpp:3045
msgid ""
"UNLOCKED LOCK icon indicates that the value was changed and is not equal to "
"the system value.\n"
@@ -3407,7 +3797,7 @@ msgstr ""
"the system value.\n"
"Click to reset current value to the system value."
-#: src/slic3r/GUI/Tab.cpp:2931
+#: src/slic3r/GUI/Tab.cpp:3051
msgid ""
"WHITE BULLET icon indicates that the value is the same as in the last saved "
"preset."
@@ -3415,7 +3805,7 @@ msgstr ""
"WHITE BULLET icon indicates that the value is the same as in the last saved "
"preset."
-#: src/slic3r/GUI/Tab.cpp:2932
+#: src/slic3r/GUI/Tab.cpp:3052
msgid ""
"BACK ARROW icon indicates that the value was changed and is not equal to the "
"last saved preset.\n"
@@ -3425,99 +3815,115 @@ msgstr ""
"last saved preset.\n"
"Click to reset current value to the last saved preset."
-#: src/slic3r/GUI/Tab.cpp:3031
+#: src/slic3r/GUI/Tab.cpp:3152
msgid " as:"
msgstr " as:"
-#: src/slic3r/GUI/Tab.cpp:3075
+#: src/slic3r/GUI/Tab.cpp:3196
msgid "the following postfix are not allowed:"
msgstr "the following postfix are not allowed:"
-#: src/slic3r/GUI/Tab.cpp:3079
+#: src/slic3r/GUI/Tab.cpp:3200
msgid "The supplied name is not available."
msgstr "The supplied name is not available."
-#: src/slic3r/GUI/Tab.cpp:3092
+#: src/slic3r/GUI/Tab.cpp:3213
msgid "Material"
msgstr "Material"
-#: src/slic3r/GUI/Tab.cpp:3094 src/slic3r/GUI/Tab.cpp:3176
+#: src/slic3r/GUI/Tab.cpp:3215 src/slic3r/GUI/Tab.cpp:3305
msgid "Layers"
msgstr "Layers"
-#: src/slic3r/GUI/Tab.cpp:3098
+#: src/slic3r/GUI/Tab.cpp:3219
msgid "Exposure"
msgstr "Exposure"
-#: src/slic3r/GUI/Tab.cpp:3183
+#: src/slic3r/GUI/Tab.cpp:3313
msgid "Support head"
msgstr "Support head"
-#: src/slic3r/GUI/Tab.cpp:3188
+#: src/slic3r/GUI/Tab.cpp:3318
msgid "Support pillar"
msgstr "Support pillar"
-#: src/slic3r/GUI/Tab.cpp:3196
+#: src/slic3r/GUI/Tab.cpp:3328
msgid "Connection of the support sticks and junctions"
msgstr "Connection of the support sticks and junctions"
-#: src/slic3r/GUI/Tab.cpp:3200
+#: src/slic3r/GUI/Tab.cpp:3333
msgid "Automatic generation"
msgstr "Automatic generation"
-#: src/slic3r/GUI/Tab.hpp:293 src/slic3r/GUI/Tab.hpp:381
+#: src/slic3r/GUI/Tab.cpp:3395
+msgid "Head penetration should not be greater than the head width."
+msgstr "Head penetration should not be greater than the head width."
+
+#: src/slic3r/GUI/Tab.cpp:3396
+msgid "Invalid Head penetration"
+msgstr "Invalid Head penetration"
+
+#: src/slic3r/GUI/Tab.cpp:3408
+msgid "Pinhead diameter should be smaller than the pillar diameter."
+msgstr "Pinhead diameter should be smaller than the pillar diameter."
+
+#: src/slic3r/GUI/Tab.cpp:3409
+msgid "Invalid pinhead diameter"
+msgstr "Invalid pinhead diameter"
+
+#: src/slic3r/GUI/Tab.hpp:307 src/slic3r/GUI/Tab.hpp:395
msgid "Print Settings"
msgstr "Print Settings"
-#: src/slic3r/GUI/Tab.hpp:311
+#: src/slic3r/GUI/Tab.hpp:325
msgid "Filament Settings"
msgstr "Filament Settings"
-#: src/slic3r/GUI/Tab.hpp:344
+#: src/slic3r/GUI/Tab.hpp:358
msgid "Printer Settings"
msgstr "Printer Settings"
-#: src/slic3r/GUI/Tab.hpp:367
+#: src/slic3r/GUI/Tab.hpp:381
msgid "Material Settings"
msgstr "Material Settings"
-#: src/slic3r/GUI/Tab.hpp:393
+#: src/slic3r/GUI/Tab.hpp:407
msgid "Save preset"
msgstr "Save preset"
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
+#: src/slic3r/GUI/UpdateDialogs.cpp:29
msgid "Update available"
msgstr "Update available"
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
+#: src/slic3r/GUI/UpdateDialogs.cpp:29
msgid "New version of Slic3r PE is available"
msgstr "New version of Slic3r PE is available"
-#: src/slic3r/GUI/UpdateDialogs.cpp:35
+#: src/slic3r/GUI/UpdateDialogs.cpp:36
msgid "To download, follow the link below."
msgstr "To download, follow the link below."
-#: src/slic3r/GUI/UpdateDialogs.cpp:42
+#: src/slic3r/GUI/UpdateDialogs.cpp:44
msgid "Current version:"
msgstr "Current version:"
-#: src/slic3r/GUI/UpdateDialogs.cpp:44
+#: src/slic3r/GUI/UpdateDialogs.cpp:46
msgid "New version:"
msgstr "New version:"
-#: src/slic3r/GUI/UpdateDialogs.cpp:52
+#: src/slic3r/GUI/UpdateDialogs.cpp:54
msgid "Don't notify about new releases any more"
msgstr "Don't notify about new releases any more"
-#: src/slic3r/GUI/UpdateDialogs.cpp:70 src/slic3r/GUI/UpdateDialogs.cpp:162
+#: src/slic3r/GUI/UpdateDialogs.cpp:72 src/slic3r/GUI/UpdateDialogs.cpp:164
msgid "Configuration update"
msgstr "Configuration update"
-#: src/slic3r/GUI/UpdateDialogs.cpp:70
+#: src/slic3r/GUI/UpdateDialogs.cpp:72
msgid "Configuration update is available"
msgstr "Configuration update is available"
-#: src/slic3r/GUI/UpdateDialogs.cpp:73
+#: src/slic3r/GUI/UpdateDialogs.cpp:75
msgid ""
"Would you like to install it?\n"
"\n"
@@ -3533,15 +3939,15 @@ msgstr ""
"\n"
"Updated configuration bundles:"
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
+#: src/slic3r/GUI/UpdateDialogs.cpp:111
msgid "Slic3r incompatibility"
msgstr "Slic3r incompatibility"
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
+#: src/slic3r/GUI/UpdateDialogs.cpp:111
msgid "Slic3r configuration is incompatible"
msgstr "Slic3r configuration is incompatible"
-#: src/slic3r/GUI/UpdateDialogs.cpp:112
+#: src/slic3r/GUI/UpdateDialogs.cpp:114
msgid ""
"This version of Slic3r PE is not compatible with currently installed "
"configuration bundles.\n"
@@ -3561,24 +3967,24 @@ msgstr ""
"run the initial configuration. Doing so will create a backup snapshot of the "
"existing configuration before installing files compatible with this Slic3r.\n"
-#: src/slic3r/GUI/UpdateDialogs.cpp:121
+#: src/slic3r/GUI/UpdateDialogs.cpp:123
#, c-format
msgid "This Slic3r PE version: %s"
msgstr "This Slic3r PE version: %s"
-#: src/slic3r/GUI/UpdateDialogs.cpp:126
+#: src/slic3r/GUI/UpdateDialogs.cpp:128
msgid "Incompatible bundles:"
msgstr "Incompatible bundles:"
-#: src/slic3r/GUI/UpdateDialogs.cpp:142
+#: src/slic3r/GUI/UpdateDialogs.cpp:144
msgid "Exit Slic3r"
msgstr "Exit Slic3r"
-#: src/slic3r/GUI/UpdateDialogs.cpp:145
+#: src/slic3r/GUI/UpdateDialogs.cpp:147
msgid "Re-configure"
msgstr "Re-configure"
-#: src/slic3r/GUI/UpdateDialogs.cpp:166
+#: src/slic3r/GUI/UpdateDialogs.cpp:168
#, c-format
msgid ""
"Slic3r PE now uses an updated configuration structure.\n"
@@ -3605,15 +4011,15 @@ msgstr ""
"Please proceed with the %s that follows to set up the new presets and to "
"choose whether to enable automatic preset updates."
-#: src/slic3r/GUI/UpdateDialogs.cpp:182
+#: src/slic3r/GUI/UpdateDialogs.cpp:184
msgid "For more information please visit our wiki page:"
msgstr "For more information please visit our wiki page:"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:10
+#: src/slic3r/GUI/WipeTowerDialog.cpp:14
msgid "Ramming customization"
msgstr "Ramming customization"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:36
+#: src/slic3r/GUI/WipeTowerDialog.cpp:40
msgid ""
"Ramming denotes the rapid extrusion just before a tool change in a single-"
"extruder MM printer. Its purpose is to properly shape the end of the "
@@ -3635,27 +4041,27 @@ msgstr ""
"This is an expert-level setting, incorrect adjustment will likely lead to "
"jams, extruder wheel grinding into filament etc."
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78
+#: src/slic3r/GUI/WipeTowerDialog.cpp:82
msgid "Total ramming time"
msgstr "Total ramming time"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:80
+#: src/slic3r/GUI/WipeTowerDialog.cpp:84
msgid "Total rammed volume"
msgstr "Total rammed volume"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:84
+#: src/slic3r/GUI/WipeTowerDialog.cpp:88
msgid "Ramming line width"
msgstr "Ramming line width"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:86
+#: src/slic3r/GUI/WipeTowerDialog.cpp:90
msgid "Ramming line spacing"
msgstr "Ramming line spacing"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:138
+#: src/slic3r/GUI/WipeTowerDialog.cpp:141
msgid "Wipe tower - Purging volume adjustment"
msgstr "Wipe tower - Purging volume adjustment"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:219
+#: src/slic3r/GUI/WipeTowerDialog.cpp:225
msgid ""
"Here you can adjust required purging volume (mm³) for any given pair of "
"tools."
@@ -3663,23 +4069,23 @@ msgstr ""
"Here you can adjust required purging volume (mm³) for any given pair of "
"tools."
-#: src/slic3r/GUI/WipeTowerDialog.cpp:220
+#: src/slic3r/GUI/WipeTowerDialog.cpp:226
msgid "Extruder changed to"
msgstr "Extruder changed to"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:228
+#: src/slic3r/GUI/WipeTowerDialog.cpp:234
msgid "unloaded"
msgstr "unloaded"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:229
+#: src/slic3r/GUI/WipeTowerDialog.cpp:235
msgid "loaded"
msgstr "loaded"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:234
+#: src/slic3r/GUI/WipeTowerDialog.cpp:240
msgid "Tool #"
msgstr "Tool #"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:241
+#: src/slic3r/GUI/WipeTowerDialog.cpp:247
msgid ""
"Total purging volume is calculated by summing two values below, depending on "
"which tools are loaded/unloaded."
@@ -3687,15 +4093,15 @@ msgstr ""
"Total purging volume is calculated by summing two values below, depending on "
"which tools are loaded/unloaded."
-#: src/slic3r/GUI/WipeTowerDialog.cpp:242
+#: src/slic3r/GUI/WipeTowerDialog.cpp:248
msgid "Volume to purge (mm³) when the filament is being"
msgstr "Volume to purge (mm³) when the filament is being"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:256
+#: src/slic3r/GUI/WipeTowerDialog.cpp:262
msgid "From"
msgstr "From"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:321
+#: src/slic3r/GUI/WipeTowerDialog.cpp:327
msgid ""
"Switching to simple settings will discard changes done in the advanced "
"mode!\n"
@@ -3707,75 +4113,105 @@ msgstr ""
"\n"
"Do you want to proceed?"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
+#: src/slic3r/GUI/WipeTowerDialog.cpp:339
msgid "Show simplified settings"
msgstr "Show simplified settings"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
+#: src/slic3r/GUI/WipeTowerDialog.cpp:339
msgid "Show advanced settings"
msgstr "Show advanced settings"
-#: src/slic3r/Utils/OctoPrint.cpp:65
+#: src/slic3r/GUI/wxExtensions.cpp:2398
+#, c-format
+msgid "Switch to the %s mode"
+msgstr "Switch to the %s mode"
+
+#: src/slic3r/GUI/wxExtensions.cpp:2399
+#, c-format
+msgid "Current mode is %s"
+msgstr "Current mode is %s"
+
+#: src/slic3r/Utils/Duet.cpp:51
+msgid "Connection to Duet works correctly."
+msgstr "Connection to Duet works correctly."
+
+#: src/slic3r/Utils/Duet.cpp:56
+msgid "Could not connect to Duet"
+msgstr "Could not connect to Duet"
+
+#: src/slic3r/Utils/Duet.cpp:84 src/slic3r/Utils/Duet.cpp:154
+msgid "Unknown error occured"
+msgstr "Unknown error occured"
+
+#: src/slic3r/Utils/Duet.cpp:148
+msgid "Wrong password"
+msgstr "Wrong password"
+
+#: src/slic3r/Utils/Duet.cpp:151
+msgid "Could not get resources to create a new connection"
+msgstr "Could not get resources to create a new connection"
+
+#: src/slic3r/Utils/OctoPrint.cpp:69
#, c-format
msgid "Mismatched type of print host: %s"
msgstr "Mismatched type of print host: %s"
-#: src/slic3r/Utils/OctoPrint.cpp:80
+#: src/slic3r/Utils/OctoPrint.cpp:84
msgid "Connection to OctoPrint works correctly."
msgstr "Connection to OctoPrint works correctly."
-#: src/slic3r/Utils/OctoPrint.cpp:86
+#: src/slic3r/Utils/OctoPrint.cpp:90
msgid "Could not connect to OctoPrint"
msgstr "Could not connect to OctoPrint"
-#: src/slic3r/Utils/OctoPrint.cpp:86
+#: src/slic3r/Utils/OctoPrint.cpp:90
msgid "Note: OctoPrint version at least 1.1.0 is required."
msgstr "Note: OctoPrint version at least 1.1.0 is required."
-#: src/slic3r/Utils/OctoPrint.cpp:181
+#: src/slic3r/Utils/OctoPrint.cpp:195
msgid "Connection to Prusa SLA works correctly."
msgstr "Connection to Prusa SLA works correctly."
-#: src/slic3r/Utils/OctoPrint.cpp:186
+#: src/slic3r/Utils/OctoPrint.cpp:200
msgid "Could not connect to Prusa SLA"
msgstr "Could not connect to Prusa SLA"
-#: src/slic3r/Utils/PresetUpdater.cpp:571
+#: src/slic3r/Utils/PresetUpdater.cpp:583
#, c-format
msgid "requires min. %s and max. %s"
msgstr "requires min. %s and max. %s"
-#: src/slic3r/Utils/PresetUpdater.cpp:576
+#: src/slic3r/Utils/PresetUpdater.cpp:588
#, c-format
msgid "requires min. %s"
msgstr "requires min. %s"
-#: src/slic3r/Utils/PresetUpdater.cpp:578
+#: src/slic3r/Utils/PresetUpdater.cpp:590
#, c-format
msgid "requires max. %s"
msgstr "requires max. %s"
#: src/slic3r/Utils/FixModelByWin10.cpp:219
-#: src/slic3r/Utils/FixModelByWin10.cpp:349
-msgid "Exporting the source model"
-msgstr "Exporting the source model"
+#: src/slic3r/Utils/FixModelByWin10.cpp:359
+msgid "Exporting source model"
+msgstr "Exporting source model"
#: src/slic3r/Utils/FixModelByWin10.cpp:235
msgid "Failed loading the input model."
msgstr "Failed loading the input model."
#: src/slic3r/Utils/FixModelByWin10.cpp:242
-msgid "Repairing the model by the Netfabb service"
-msgstr "Repairing the model by the Netfabb service"
+msgid "Repairing model by the Netfabb service"
+msgstr "Repairing model by the Netfabb service"
#: src/slic3r/Utils/FixModelByWin10.cpp:248
msgid "Mesh repair failed."
msgstr "Mesh repair failed."
#: src/slic3r/Utils/FixModelByWin10.cpp:251
-#: src/slic3r/Utils/FixModelByWin10.cpp:367
-msgid "Loading the repaired model"
-msgstr "Loading the repaired model"
+#: src/slic3r/Utils/FixModelByWin10.cpp:378
+msgid "Loading repaired model"
+msgstr "Loading repaired model"
#: src/slic3r/Utils/FixModelByWin10.cpp:263
#: src/slic3r/Utils/FixModelByWin10.cpp:270
@@ -3783,110 +4219,294 @@ msgstr "Loading the repaired model"
msgid "Saving mesh into the 3MF container failed."
msgstr "Saving mesh into the 3MF container failed."
-#: src/slic3r/Utils/FixModelByWin10.cpp:334
+#: src/slic3r/Utils/FixModelByWin10.cpp:340
msgid "Model fixing"
msgstr "Model fixing"
-#: src/slic3r/Utils/FixModelByWin10.cpp:335
+#: src/slic3r/Utils/FixModelByWin10.cpp:341
msgid "Exporting model..."
msgstr "Exporting model..."
-#: src/slic3r/Utils/FixModelByWin10.cpp:357
+#: src/slic3r/Utils/FixModelByWin10.cpp:368
msgid "Export of a temporary 3mf file failed"
msgstr "Export of a temporary 3mf file failed"
-#: src/slic3r/Utils/FixModelByWin10.cpp:372
+#: src/slic3r/Utils/FixModelByWin10.cpp:383
msgid "Import of the repaired 3mf file failed"
msgstr "Import of the repaired 3mf file failed"
-#: src/slic3r/Utils/FixModelByWin10.cpp:375
+#: src/slic3r/Utils/FixModelByWin10.cpp:385
+msgid "Repaired 3MF file does not contain any object"
+msgstr "Repaired 3MF file does not contain any object"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:387
+msgid "Repaired 3MF file contains more than one object"
+msgstr "Repaired 3MF file contains more than one object"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:389
+msgid "Repaired 3MF file does not contain any volume"
+msgstr "Repaired 3MF file does not contain any volume"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:391
+msgid "Repaired 3MF file contains more than one volume"
+msgstr "Repaired 3MF file contains more than one volume"
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:400
msgid "Model repair finished"
msgstr "Model repair finished"
-#: src/slic3r/Utils/FixModelByWin10.cpp:379
+#: src/slic3r/Utils/FixModelByWin10.cpp:406
msgid "Model repair canceled"
msgstr "Model repair canceled"
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
+#: src/slic3r/Utils/FixModelByWin10.cpp:423
msgid "Model repaired successfully"
msgstr "Model repaired successfully"
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
+#: src/slic3r/Utils/FixModelByWin10.cpp:423
+#: src/slic3r/Utils/FixModelByWin10.cpp:426
msgid "Model Repair by the Netfabb service"
msgstr "Model Repair by the Netfabb service"
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
+#: src/slic3r/Utils/FixModelByWin10.cpp:426
msgid "Model repair failed: \n"
msgstr "Model repair failed: \n"
-#: src/libslic3r/Print.cpp:1175
+#: src/libslic3r/Zipper.cpp:35
+msgid "undefined error"
+msgstr "undefined error"
+
+#: src/libslic3r/Zipper.cpp:37
+msgid "too many files"
+msgstr "too many files"
+
+#: src/libslic3r/Zipper.cpp:39
+msgid "file too large"
+msgstr "file too large"
+
+#: src/libslic3r/Zipper.cpp:41
+msgid "unsupported method"
+msgstr "unsupported method"
+
+#: src/libslic3r/Zipper.cpp:43
+msgid "unsupported encryption"
+msgstr "unsupported encryption"
+
+#: src/libslic3r/Zipper.cpp:45
+msgid "unsupported feature"
+msgstr "unsupported feature"
+
+#: src/libslic3r/Zipper.cpp:47
+msgid "failed finding central directory"
+msgstr "failed finding central directory"
+
+#: src/libslic3r/Zipper.cpp:49
+msgid "not a ZIP archive"
+msgstr "not a ZIP archive"
+
+#: src/libslic3r/Zipper.cpp:51
+msgid "invalid header or archive is corrupted"
+msgstr "invalid header or archive is corrupted"
+
+#: src/libslic3r/Zipper.cpp:53
+msgid "unsupported multidisk archive"
+msgstr "unsupported multidisk archive"
+
+#: src/libslic3r/Zipper.cpp:55
+msgid "decompression failed or archive is corrupted"
+msgstr "decompression failed or archive is corrupted"
+
+#: src/libslic3r/Zipper.cpp:57
+msgid "compression failed"
+msgstr "compression failed"
+
+#: src/libslic3r/Zipper.cpp:59
+msgid "unexpected decompressed size"
+msgstr "unexpected decompressed size"
+
+#: src/libslic3r/Zipper.cpp:61
+msgid "CRC-32 check failed"
+msgstr "CRC-32 check failed"
+
+#: src/libslic3r/Zipper.cpp:63
+msgid "unsupported central directory size"
+msgstr "unsupported central directory size"
+
+#: src/libslic3r/Zipper.cpp:65
+msgid "allocation failed"
+msgstr "allocation failed"
+
+#: src/libslic3r/Zipper.cpp:67
+msgid "file open failed"
+msgstr "file open failed"
+
+#: src/libslic3r/Zipper.cpp:69
+msgid "file create failed"
+msgstr "file create failed"
+
+#: src/libslic3r/Zipper.cpp:71
+msgid "file write failed"
+msgstr "file write failed"
+
+#: src/libslic3r/Zipper.cpp:73
+msgid "file read failed"
+msgstr "file read failed"
+
+#: src/libslic3r/Zipper.cpp:75
+msgid "file close failed"
+msgstr "file close failed"
+
+#: src/libslic3r/Zipper.cpp:77
+msgid "file seek failed"
+msgstr "file seek failed"
+
+#: src/libslic3r/Zipper.cpp:79
+msgid "file stat failed"
+msgstr "file stat failed"
+
+#: src/libslic3r/Zipper.cpp:81
+msgid "invalid parameter"
+msgstr "invalid parameter"
+
+#: src/libslic3r/Zipper.cpp:83
+msgid "invalid filename"
+msgstr "invalid filename"
+
+#: src/libslic3r/Zipper.cpp:85
+msgid "buffer too small"
+msgstr "buffer too small"
+
+#: src/libslic3r/Zipper.cpp:87
+msgid "internal error"
+msgstr "internal error"
+
+#: src/libslic3r/Zipper.cpp:89
+msgid "file not found"
+msgstr "file not found"
+
+#: src/libslic3r/Zipper.cpp:91
+msgid "archive is too large"
+msgstr "archive is too large"
+
+#: src/libslic3r/Zipper.cpp:93
+msgid "validation failed"
+msgstr "validation failed"
+
+#: src/libslic3r/Zipper.cpp:95
+msgid "write calledback failed"
+msgstr "write calledback failed"
+
+#: src/libslic3r/Zipper.cpp:105
+msgid "Error with zip archive"
+msgstr "Error with zip archive"
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2153
+msgid "Starting"
+msgstr "Starting"
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2154
+msgid "Filtering"
+msgstr "Filtering"
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2155
+msgid "Generate pinheads"
+msgstr "Generate pinheads"
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2156
+msgid "Classification"
+msgstr "Classification"
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2157
+msgid "Routing to ground"
+msgstr "Routing to ground"
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2158
+msgid "Routing supports to model surface"
+msgstr "Routing supports to model surface"
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2159
+msgid "Cascading pillars"
+msgstr "Cascading pillars"
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2160
+msgid "Processing small holes"
+msgstr "Processing small holes"
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2161
+msgid "Done"
+msgstr "Done"
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2162
+msgid "Abort"
+msgstr "Abort"
+
+#: src/libslic3r/Print.cpp:1136
msgid "All objects are outside of the print volume."
msgstr "All objects are outside of the print volume."
-#: src/libslic3r/Print.cpp:1201
+#: src/libslic3r/Print.cpp:1165
msgid "Some objects are too close; your extruder will collide with them."
msgstr "Some objects are too close; your extruder will collide with them."
-#: src/libslic3r/Print.cpp:1216
+#: src/libslic3r/Print.cpp:1180
msgid ""
"Some objects are too tall and cannot be printed without extruder collisions."
msgstr ""
"Some objects are too tall and cannot be printed without extruder collisions."
-#: src/libslic3r/Print.cpp:1226
+#: src/libslic3r/Print.cpp:1190
msgid "The Spiral Vase option can only be used when printing a single object."
msgstr "The Spiral Vase option can only be used when printing a single object."
+#: src/libslic3r/Print.cpp:1192
+msgid ""
+"The Spiral Vase option can only be used when printing single material "
+"objects."
+msgstr ""
+"The Spiral Vase option can only be used when printing single material "
+"objects."
+
+#: src/libslic3r/Print.cpp:1198
+msgid ""
+"All extruders must have the same diameter for single extruder multimaterial "
+"printer."
+msgstr ""
+"All extruders must have the same diameter for single extruder multimaterial "
+"printer."
+
+#: src/libslic3r/Print.cpp:1203
+msgid ""
+"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter "
+"and Repetier G-code flavors."
+msgstr ""
+"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter "
+"and Repetier G-code flavors."
+
+#: src/libslic3r/Print.cpp:1205
+msgid ""
+"The Wipe Tower is currently only supported with the relative extruder "
+"addressing (use_relative_e_distances=1)."
+msgstr ""
+"The Wipe Tower is currently only supported with the relative extruder "
+"addressing (use_relative_e_distances=1)."
+
+#: src/libslic3r/Print.cpp:1226
+msgid ""
+"The Wipe Tower is only supported for multiple objects if they have equal "
+"layer heigths"
+msgstr ""
+"The Wipe Tower is only supported for multiple objects if they have equal "
+"layer heigths"
+
#: src/libslic3r/Print.cpp:1228
msgid ""
-"The Spiral Vase option can only be used when printing single material "
-"objects."
-msgstr ""
-"The Spiral Vase option can only be used when printing single material "
-"objects."
-
-#: src/libslic3r/Print.cpp:1234
-msgid ""
-"All extruders must have the same diameter for single extruder multimaterial "
-"printer."
-msgstr ""
-"All extruders must have the same diameter for single extruder multimaterial "
-"printer."
-
-#: src/libslic3r/Print.cpp:1239
-msgid ""
-"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter "
-"and Repetier G-code flavors."
-msgstr ""
-"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter "
-"and Repetier G-code flavors."
-
-#: src/libslic3r/Print.cpp:1241
-msgid ""
-"The Wipe Tower is currently only supported with the relative extruder "
-"addressing (use_relative_e_distances=1)."
-msgstr ""
-"The Wipe Tower is currently only supported with the relative extruder "
-"addressing (use_relative_e_distances=1)."
-
-#: src/libslic3r/Print.cpp:1253
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they have equal "
-"layer heigths"
-msgstr ""
-"The Wipe Tower is only supported for multiple objects if they have equal "
-"layer heigths"
-
-#: src/libslic3r/Print.cpp:1255
-msgid ""
"The Wipe Tower is only supported for multiple objects if they are printed "
"over an equal number of raft layers"
msgstr ""
"The Wipe Tower is only supported for multiple objects if they are printed "
"over an equal number of raft layers"
-#: src/libslic3r/Print.cpp:1257
+#: src/libslic3r/Print.cpp:1230
msgid ""
"The Wipe Tower is only supported for multiple objects if they are printed "
"with the same support_material_contact_distance"
@@ -3894,7 +4514,7 @@ msgstr ""
"The Wipe Tower is only supported for multiple objects if they are printed "
"with the same support_material_contact_distance"
-#: src/libslic3r/Print.cpp:1259
+#: src/libslic3r/Print.cpp:1232
msgid ""
"The Wipe Tower is only supported for multiple objects if they are sliced "
"equally."
@@ -3902,7 +4522,7 @@ msgstr ""
"The Wipe Tower is only supported for multiple objects if they are sliced "
"equally."
-#: src/libslic3r/Print.cpp:1281
+#: src/libslic3r/Print.cpp:1261
msgid ""
"The Wipe tower is only supported if all objects have the same layer height "
"profile"
@@ -3910,69 +4530,126 @@ msgstr ""
"The Wipe tower is only supported if all objects have the same layer height "
"profile"
-#: src/libslic3r/Print.cpp:1290
+#: src/libslic3r/Print.cpp:1271
msgid "The supplied settings will cause an empty print."
msgstr "The supplied settings will cause an empty print."
-#: src/libslic3r/Print.cpp:1307
+#: src/libslic3r/Print.cpp:1288
msgid ""
"One or more object were assigned an extruder that the printer does not have."
msgstr ""
"One or more object were assigned an extruder that the printer does not have."
+#: src/libslic3r/Print.cpp:1297
+msgid ""
+"Printing with multiple extruders of differing nozzle diameters. If support "
+"is to be printed with the current extruder (support_material_extruder == 0 "
+"or support_material_interface_extruder == 0), all nozzles have to be of the "
+"same diameter."
+msgstr ""
+"Printing with multiple extruders of differing nozzle diameters. If support "
+"is to be printed with the current extruder (support_material_extruder == 0 "
+"or support_material_interface_extruder == 0), all nozzles have to be of the "
+"same diameter."
+
+#: src/libslic3r/Print.cpp:1305
+msgid ""
+"For the Wipe Tower to work with the soluble supports, the support layers "
+"need to be synchronized with the object layers."
+msgstr ""
+"For the Wipe Tower to work with the soluble supports, the support layers "
+"need to be synchronized with the object layers."
+
+#: src/libslic3r/Print.cpp:1309
+msgid ""
+"The Wipe Tower currently supports the non-soluble supports only if they are "
+"printed with the current extruder without triggering a tool change. (both "
+"support_material_extruder and support_material_interface_extruder need to be "
+"set to 0)."
+msgstr ""
+"The Wipe Tower currently supports the non-soluble supports only if they are "
+"printed with the current extruder without triggering a tool change. (both "
+"support_material_extruder and support_material_interface_extruder need to be "
+"set to 0)."
+
#: src/libslic3r/Print.cpp:1316
-msgid ""
-"Printing with multiple extruders of differing nozzle diameters. If support "
-"is to be printed with the current extruder (support_material_extruder == 0 "
-"or support_material_interface_extruder == 0), all nozzles have to be of the "
-"same diameter."
-msgstr ""
-"Printing with multiple extruders of differing nozzle diameters. If support "
-"is to be printed with the current extruder (support_material_extruder == 0 "
-"or support_material_interface_extruder == 0), all nozzles have to be of the "
-"same diameter."
-
-#: src/libslic3r/Print.cpp:1324
-msgid ""
-"For the Wipe Tower to work with the soluble supports, the support layers "
-"need to be synchronized with the object layers."
-msgstr ""
-"For the Wipe Tower to work with the soluble supports, the support layers "
-"need to be synchronized with the object layers."
-
-#: src/libslic3r/Print.cpp:1328
-msgid ""
-"The Wipe Tower currently supports the non-soluble supports only if they are "
-"printed with the current extruder without triggering a tool change. (both "
-"support_material_extruder and support_material_interface_extruder need to be "
-"set to 0)."
-msgstr ""
-"The Wipe Tower currently supports the non-soluble supports only if they are "
-"printed with the current extruder without triggering a tool change. (both "
-"support_material_extruder and support_material_interface_extruder need to be "
-"set to 0)."
-
-#: src/libslic3r/Print.cpp:1335
msgid "first_layer_height"
msgstr "first_layer_height"
-#: src/libslic3r/Print.cpp:1350
+#: src/libslic3r/Print.cpp:1331
msgid "First layer height can't be greater than nozzle diameter"
msgstr "First layer height can't be greater than nozzle diameter"
-#: src/libslic3r/Print.cpp:1354
+#: src/libslic3r/Print.cpp:1335
msgid "Layer height can't be greater than nozzle diameter"
msgstr "Layer height can't be greater than nozzle diameter"
-#: src/libslic3r/PrintConfig.cpp:32 src/libslic3r/PrintConfig.cpp:33
+#: src/libslic3r/SLAPrint.cpp:55
+msgid "Slicing model"
+msgstr "Slicing model"
+
+#: src/libslic3r/SLAPrint.cpp:56 src/libslic3r/SLAPrint.cpp:801
+msgid "Generating support points"
+msgstr "Generating support points"
+
+#: src/libslic3r/SLAPrint.cpp:57
+msgid "Generating support tree"
+msgstr "Generating support tree"
+
+#: src/libslic3r/SLAPrint.cpp:58
+msgid "Generating pad"
+msgstr "Generating pad"
+
+#: src/libslic3r/SLAPrint.cpp:59
+msgid "Slicing supports"
+msgstr "Slicing supports"
+
+#: src/libslic3r/SLAPrint.cpp:71
+msgid "Merging slices and calculating statistics"
+msgstr "Merging slices and calculating statistics"
+
+#: src/libslic3r/SLAPrint.cpp:72
+msgid "Rasterizing layers"
+msgstr "Rasterizing layers"
+
+#: src/libslic3r/SLAPrint.cpp:605
+msgid ""
+"Cannot proceed without support points! Add support points or disable support "
+"generation."
+msgstr ""
+"Cannot proceed without support points! Add support points or disable support "
+"generation."
+
+#: src/libslic3r/SLAPrint.cpp:617
+msgid "Elevation is too low for object."
+msgstr "Elevation is too low for object."
+
+#: src/libslic3r/SLAPrint.cpp:699
+msgid "Slicing had to be stopped due to an internal error."
+msgstr "Slicing had to be stopped due to an internal error."
+
+#: src/libslic3r/SLAPrint.cpp:849 src/libslic3r/SLAPrint.cpp:859
+#: src/libslic3r/SLAPrint.cpp:907
+msgid "Visualizing supports"
+msgstr "Visualizing supports"
+
+#: src/libslic3r/SLAPrint.cpp:1449
+msgid "Slicing done"
+msgstr "Slicing done"
+
+#: src/libslic3r/PrintBase.cpp:65
+msgid "Failed processing of the output_filename_format template."
+msgstr "Failed processing of the output_filename_format template."
+
+#: src/libslic3r/PrintConfig.cpp:42 src/libslic3r/PrintConfig.cpp:43
msgid "Printer technology"
msgstr "Printer technology"
-#: src/libslic3r/PrintConfig.cpp:41
+#: src/libslic3r/PrintConfig.cpp:50
msgid "Bed shape"
msgstr "Bed shape"
-#: src/libslic3r/PrintConfig.cpp:48
+#: src/libslic3r/PrintConfig.cpp:57
msgid ""
"This setting controls the height (and thus the total number) of the slices/"
"layers. Thinner layers give better accuracy but take more time to print."
@@ -3980,11 +4657,11 @@ msgstr ""
"This setting controls the height (and thus the total number) of the slices/"
"layers. Thinner layers give better accuracy but take more time to print."
-#: src/libslic3r/PrintConfig.cpp:56
+#: src/libslic3r/PrintConfig.cpp:64
msgid "Max print height"
msgstr "Max print height"
-#: src/libslic3r/PrintConfig.cpp:57
+#: src/libslic3r/PrintConfig.cpp:65
msgid ""
"Set this to the maximum height that can be reached by your extruder while "
"printing."
@@ -3992,11 +4669,49 @@ msgstr ""
"Set this to the maximum height that can be reached by your extruder while "
"printing."
+#: src/libslic3r/PrintConfig.cpp:71
+msgid "Slice gap closing radius"
+msgstr "Slice gap closing radius"
+
#: src/libslic3r/PrintConfig.cpp:73
+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 ""
+"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."
+
+#: src/libslic3r/PrintConfig.cpp:81
+msgid "Hostname, IP or URL"
+msgstr "Hostname, IP or URL"
+
+#: src/libslic3r/PrintConfig.cpp:82
+msgid ""
+"Slic3r can upload G-code files to a printer host. This field should contain "
+"the hostname, IP address or URL of the printer host instance."
+msgstr ""
+"Slic3r can upload G-code files to a printer host. This field should contain "
+"the hostname, IP address or URL of the printer host instance."
+
+#: src/libslic3r/PrintConfig.cpp:88
+msgid "API Key / Password"
+msgstr "API Key / Password"
+
+#: src/libslic3r/PrintConfig.cpp:89
+msgid ""
+"Slic3r can upload G-code files to a printer host. This field should contain "
+"the API Key or the password required for authentication."
+msgstr ""
+"Slic3r can upload G-code files to a printer host. This field should contain "
+"the API Key or the password required for authentication."
+
+#: src/libslic3r/PrintConfig.cpp:111
msgid "Avoid crossing perimeters"
msgstr "Avoid crossing perimeters"
-#: src/libslic3r/PrintConfig.cpp:74
+#: src/libslic3r/PrintConfig.cpp:112
msgid ""
"Optimize travel moves in order to minimize the crossing of perimeters. This "
"is mostly useful with Bowden extruders which suffer from oozing. This "
@@ -4006,11 +4721,11 @@ msgstr ""
"is mostly useful with Bowden extruders which suffer from oozing. This "
"feature slows down both the print and the G-code generation."
-#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:2080
+#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:1976
msgid "Other layers"
msgstr "Other layers"
-#: src/libslic3r/PrintConfig.cpp:83
+#: src/libslic3r/PrintConfig.cpp:120
msgid ""
"Bed temperature for layers after the first one. Set this to zero to disable "
"bed temperature control commands in the output."
@@ -4018,11 +4733,11 @@ msgstr ""
"Bed temperature for layers after the first one. Set this to zero to disable "
"bed temperature control commands in the output."
-#: src/libslic3r/PrintConfig.cpp:86
+#: src/libslic3r/PrintConfig.cpp:122
msgid "Bed temperature"
msgstr "Bed temperature"
-#: src/libslic3r/PrintConfig.cpp:93
+#: src/libslic3r/PrintConfig.cpp:129
msgid ""
"This custom code is inserted at every layer change, right before the Z move. "
"Note that you can use placeholder variables for all Slic3r settings as well "
@@ -4032,11 +4747,11 @@ msgstr ""
"Note that you can use placeholder variables for all Slic3r settings as well "
"as [layer_num] and [layer_z]."
-#: src/libslic3r/PrintConfig.cpp:104
+#: src/libslic3r/PrintConfig.cpp:139
msgid "Between objects G-code"
msgstr "Between objects G-code"
-#: src/libslic3r/PrintConfig.cpp:105
+#: src/libslic3r/PrintConfig.cpp:140
msgid ""
"This code is inserted between objects when using sequential printing. By "
"default extruder and bed temperature are reset using non-wait command; "
@@ -4052,24 +4767,19 @@ msgstr ""
"variables for all Slic3r settings, so you can put a \"M109 "
"S[first_layer_temperature]\" command wherever you want."
-#: src/libslic3r/PrintConfig.cpp:114
-msgctxt "Layers"
-msgid "Bottom"
-msgstr "Bottom"
-
-#: src/libslic3r/PrintConfig.cpp:116
+#: src/libslic3r/PrintConfig.cpp:150
msgid "Number of solid layers to generate on bottom surfaces."
msgstr "Number of solid layers to generate on bottom surfaces."
-#: src/libslic3r/PrintConfig.cpp:118
+#: src/libslic3r/PrintConfig.cpp:151
msgid "Bottom solid layers"
msgstr "Bottom solid layers"
-#: src/libslic3r/PrintConfig.cpp:123
+#: src/libslic3r/PrintConfig.cpp:156
msgid "Bridge"
msgstr "Bridge"
-#: src/libslic3r/PrintConfig.cpp:124
+#: src/libslic3r/PrintConfig.cpp:157
msgid ""
"This is the acceleration your printer will use for bridges. Set zero to "
"disable acceleration control for bridges."
@@ -4077,18 +4787,18 @@ msgstr ""
"This is the acceleration your printer will use for bridges. Set zero to "
"disable acceleration control for bridges."
-#: src/libslic3r/PrintConfig.cpp:126 src/libslic3r/PrintConfig.cpp:274
-#: src/libslic3r/PrintConfig.cpp:819 src/libslic3r/PrintConfig.cpp:941
-#: src/libslic3r/PrintConfig.cpp:1100 src/libslic3r/PrintConfig.cpp:1145
-#: src/libslic3r/PrintConfig.cpp:1156 src/libslic3r/PrintConfig.cpp:1386
+#: src/libslic3r/PrintConfig.cpp:159 src/libslic3r/PrintConfig.cpp:302
+#: src/libslic3r/PrintConfig.cpp:814 src/libslic3r/PrintConfig.cpp:935
+#: src/libslic3r/PrintConfig.cpp:1088 src/libslic3r/PrintConfig.cpp:1133
+#: src/libslic3r/PrintConfig.cpp:1144 src/libslic3r/PrintConfig.cpp:1333
msgid "mm/s²"
msgstr "mm/s²"
-#: src/libslic3r/PrintConfig.cpp:133
+#: src/libslic3r/PrintConfig.cpp:165
msgid "Bridging angle"
msgstr "Bridging angle"
-#: src/libslic3r/PrintConfig.cpp:135
+#: src/libslic3r/PrintConfig.cpp:167
msgid ""
"Bridging angle override. If left to zero, the bridging angle will be "
"calculated automatically. Otherwise the provided angle will be used for all "
@@ -4098,32 +4808,33 @@ msgstr ""
"calculated automatically. Otherwise the provided angle will be used for all "
"bridges. Use 180° for zero angle."
-#: src/libslic3r/PrintConfig.cpp:138 src/libslic3r/PrintConfig.cpp:734
-#: src/libslic3r/PrintConfig.cpp:1637 src/libslic3r/PrintConfig.cpp:1648
-#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:2063
-#: src/libslic3r/PrintConfig.cpp:2578
+#: src/libslic3r/PrintConfig.cpp:170 src/libslic3r/PrintConfig.cpp:732
+#: src/libslic3r/PrintConfig.cpp:1569 src/libslic3r/PrintConfig.cpp:1579
+#: src/libslic3r/PrintConfig.cpp:1807 src/libslic3r/PrintConfig.cpp:1961
+#: src/libslic3r/PrintConfig.cpp:2459
msgid "°"
msgstr "°"
-#: src/libslic3r/PrintConfig.cpp:145
+#: src/libslic3r/PrintConfig.cpp:176
msgid "Bridges fan speed"
msgstr "Bridges fan speed"
-#: src/libslic3r/PrintConfig.cpp:146
+#: src/libslic3r/PrintConfig.cpp:177
msgid "This fan speed is enforced during all bridges and overhangs."
msgstr "This fan speed is enforced during all bridges and overhangs."
-#: src/libslic3r/PrintConfig.cpp:147 src/libslic3r/PrintConfig.cpp:747
-#: src/libslic3r/PrintConfig.cpp:1165 src/libslic3r/PrintConfig.cpp:1232
-#: src/libslic3r/PrintConfig.cpp:1517
+#: src/libslic3r/PrintConfig.cpp:178 src/libslic3r/PrintConfig.cpp:744
+#: src/libslic3r/PrintConfig.cpp:1153 src/libslic3r/PrintConfig.cpp:1216
+#: src/libslic3r/PrintConfig.cpp:1461 src/libslic3r/PrintConfig.cpp:2258
+#: src/libslic3r/PrintConfig.cpp:2498
msgid "%"
msgstr "%"
-#: src/libslic3r/PrintConfig.cpp:155
+#: src/libslic3r/PrintConfig.cpp:185
msgid "Bridge flow ratio"
msgstr "Bridge flow ratio"
-#: src/libslic3r/PrintConfig.cpp:157
+#: src/libslic3r/PrintConfig.cpp:187
msgid ""
"This factor affects the amount of plastic for bridging. You can decrease it "
"slightly to pull the extrudates and prevent sagging, although default "
@@ -4135,32 +4846,32 @@ msgstr ""
"settings are usually good and you should experiment with cooling (use a fan) "
"before tweaking this."
-#: src/libslic3r/PrintConfig.cpp:168
+#: src/libslic3r/PrintConfig.cpp:197
msgid "Bridges"
msgstr "Bridges"
-#: src/libslic3r/PrintConfig.cpp:170
+#: src/libslic3r/PrintConfig.cpp:199
msgid "Speed for printing bridges."
msgstr "Speed for printing bridges."
-#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:564
-#: src/libslic3r/PrintConfig.cpp:573 src/libslic3r/PrintConfig.cpp:583
-#: src/libslic3r/PrintConfig.cpp:592 src/libslic3r/PrintConfig.cpp:623
-#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:884
-#: src/libslic3r/PrintConfig.cpp:1013 src/libslic3r/PrintConfig.cpp:1090
-#: src/libslic3r/PrintConfig.cpp:1110 src/libslic3r/PrintConfig.cpp:1123
-#: src/libslic3r/PrintConfig.cpp:1134 src/libslic3r/PrintConfig.cpp:1189
-#: src/libslic3r/PrintConfig.cpp:1252 src/libslic3r/PrintConfig.cpp:1418
-#: src/libslic3r/PrintConfig.cpp:1601 src/libslic3r/PrintConfig.cpp:1611
-#: src/libslic3r/PrintConfig.cpp:2041 src/libslic3r/PrintConfig.cpp:2160
+#: src/libslic3r/PrintConfig.cpp:200 src/libslic3r/PrintConfig.cpp:576
+#: src/libslic3r/PrintConfig.cpp:584 src/libslic3r/PrintConfig.cpp:593
+#: src/libslic3r/PrintConfig.cpp:601 src/libslic3r/PrintConfig.cpp:628
+#: src/libslic3r/PrintConfig.cpp:647 src/libslic3r/PrintConfig.cpp:873
+#: src/libslic3r/PrintConfig.cpp:1000 src/libslic3r/PrintConfig.cpp:1078
+#: src/libslic3r/PrintConfig.cpp:1098 src/libslic3r/PrintConfig.cpp:1111
+#: src/libslic3r/PrintConfig.cpp:1122 src/libslic3r/PrintConfig.cpp:1175
+#: src/libslic3r/PrintConfig.cpp:1234 src/libslic3r/PrintConfig.cpp:1362
+#: src/libslic3r/PrintConfig.cpp:1536 src/libslic3r/PrintConfig.cpp:1545
+#: src/libslic3r/PrintConfig.cpp:1940 src/libslic3r/PrintConfig.cpp:2051
msgid "mm/s"
msgstr "mm/s"
-#: src/libslic3r/PrintConfig.cpp:178
+#: src/libslic3r/PrintConfig.cpp:207
msgid "Brim width"
msgstr "Brim width"
-#: src/libslic3r/PrintConfig.cpp:179
+#: src/libslic3r/PrintConfig.cpp:208
msgid ""
"Horizontal width of the brim that will be printed around each object on the "
"first layer."
@@ -4168,11 +4879,11 @@ msgstr ""
"Horizontal width of the brim that will be printed around each object on the "
"first layer."
-#: src/libslic3r/PrintConfig.cpp:187
+#: src/libslic3r/PrintConfig.cpp:215
msgid "Clip multi-part objects"
msgstr "Clip multi-part objects"
-#: src/libslic3r/PrintConfig.cpp:188
+#: src/libslic3r/PrintConfig.cpp:216
msgid ""
"When printing multi-material objects, this settings will make slic3r to clip "
"the overlapping object parts one by the other (2nd part will be clipped by "
@@ -4182,19 +4893,19 @@ msgstr ""
"the overlapping object parts one by the other (2nd part will be clipped by "
"the 1st, 3rd part will be clipped by the 1st and 2nd etc)."
-#: src/libslic3r/PrintConfig.cpp:196
+#: src/libslic3r/PrintConfig.cpp:223
msgid "Colorprint height"
msgstr "Colorprint height"
-#: src/libslic3r/PrintConfig.cpp:197
+#: src/libslic3r/PrintConfig.cpp:224
msgid "Heights at which a filament change is to occur. "
msgstr "Heights at which a filament change is to occur. "
-#: src/libslic3r/PrintConfig.cpp:207
+#: src/libslic3r/PrintConfig.cpp:234
msgid "Compatible printers condition"
msgstr "Compatible printers condition"
-#: src/libslic3r/PrintConfig.cpp:208
+#: src/libslic3r/PrintConfig.cpp:235
msgid ""
"A boolean expression using the configuration values of an active printer "
"profile. If this expression evaluates to true, this profile is considered "
@@ -4204,11 +4915,11 @@ msgstr ""
"profile. If this expression evaluates to true, this profile is considered "
"compatible with the active printer profile."
-#: src/libslic3r/PrintConfig.cpp:220
+#: src/libslic3r/PrintConfig.cpp:249
msgid "Compatible print profiles condition"
msgstr "Compatible print profiles condition"
-#: src/libslic3r/PrintConfig.cpp:221
+#: src/libslic3r/PrintConfig.cpp:250
msgid ""
"A boolean expression using the configuration values of an active print "
"profile. If this expression evaluates to true, this profile is considered "
@@ -4218,11 +4929,11 @@ msgstr ""
"profile. If this expression evaluates to true, this profile is considered "
"compatible with the active print profile."
-#: src/libslic3r/PrintConfig.cpp:235
+#: src/libslic3r/PrintConfig.cpp:267
msgid "Complete individual objects"
msgstr "Complete individual objects"
-#: src/libslic3r/PrintConfig.cpp:236
+#: src/libslic3r/PrintConfig.cpp:268
msgid ""
"When printing multiple objects or copies, this feature will complete each "
"object before moving onto next one (and starting it from its bottom layer). "
@@ -4234,11 +4945,11 @@ msgstr ""
"This feature is useful to avoid the risk of ruined prints. Slic3r should "
"warn and prevent you from extruder collisions, but beware."
-#: src/libslic3r/PrintConfig.cpp:245
+#: src/libslic3r/PrintConfig.cpp:276
msgid "Enable auto cooling"
msgstr "Enable auto cooling"
-#: src/libslic3r/PrintConfig.cpp:246
+#: src/libslic3r/PrintConfig.cpp:277
msgid ""
"This flag enables the automatic cooling logic that adjusts print speed and "
"fan speed according to layer printing time."
@@ -4246,24 +4957,24 @@ msgstr ""
"This flag enables the automatic cooling logic that adjusts print speed and "
"fan speed according to layer printing time."
-#: src/libslic3r/PrintConfig.cpp:252
+#: src/libslic3r/PrintConfig.cpp:282
msgid "Cooling tube position"
msgstr "Cooling tube position"
-#: src/libslic3r/PrintConfig.cpp:253
+#: src/libslic3r/PrintConfig.cpp:283
msgid "Distance of the center-point of the cooling tube from the extruder tip "
msgstr ""
"Distance of the center-point of the cooling tube from the extruder tip "
-#: src/libslic3r/PrintConfig.cpp:261
+#: src/libslic3r/PrintConfig.cpp:290
msgid "Cooling tube length"
msgstr "Cooling tube length"
-#: src/libslic3r/PrintConfig.cpp:262
+#: src/libslic3r/PrintConfig.cpp:291
msgid "Length of the cooling tube to limit space for cooling moves inside it "
msgstr "Length of the cooling tube to limit space for cooling moves inside it "
-#: src/libslic3r/PrintConfig.cpp:271
+#: src/libslic3r/PrintConfig.cpp:299
msgid ""
"This is the acceleration your printer will be reset to after the role-"
"specific acceleration values are used (perimeter/infill). Set zero to "
@@ -4273,11 +4984,11 @@ msgstr ""
"specific acceleration values are used (perimeter/infill). Set zero to "
"prevent resetting acceleration at all."
-#: src/libslic3r/PrintConfig.cpp:281
+#: src/libslic3r/PrintConfig.cpp:308
msgid "Default filament profile"
msgstr "Default filament profile"
-#: src/libslic3r/PrintConfig.cpp:282
+#: src/libslic3r/PrintConfig.cpp:309
msgid ""
"Default filament profile associated with the current printer profile. On "
"selection of the current printer profile, this filament profile will be "
@@ -4287,12 +4998,12 @@ msgstr ""
"selection of the current printer profile, this filament profile will be "
"activated."
-#: src/libslic3r/PrintConfig.cpp:287
+#: src/libslic3r/PrintConfig.cpp:315
msgid "Default print profile"
msgstr "Default print profile"
-#: src/libslic3r/PrintConfig.cpp:288 src/libslic3r/PrintConfig.cpp:2469
-#: src/libslic3r/PrintConfig.cpp:2479
+#: src/libslic3r/PrintConfig.cpp:316 src/libslic3r/PrintConfig.cpp:2337
+#: src/libslic3r/PrintConfig.cpp:2348
msgid ""
"Default print profile associated with the current printer profile. On "
"selection of the current printer profile, this print profile will be "
@@ -4302,11 +5013,11 @@ msgstr ""
"selection of the current printer profile, this print profile will be "
"activated."
-#: src/libslic3r/PrintConfig.cpp:293
+#: src/libslic3r/PrintConfig.cpp:322
msgid "Disable fan for the first"
msgstr "Disable fan for the first"
-#: src/libslic3r/PrintConfig.cpp:294
+#: src/libslic3r/PrintConfig.cpp:323
msgid ""
"You can set this to a positive value to disable fan at all during the first "
"layers, so that it does not make adhesion worse."
@@ -4314,18 +5025,18 @@ msgstr ""
"You can set this to a positive value to disable fan at all during the first "
"layers, so that it does not make adhesion worse."
-#: src/libslic3r/PrintConfig.cpp:296 src/libslic3r/PrintConfig.cpp:952
-#: src/libslic3r/PrintConfig.cpp:1487 src/libslic3r/PrintConfig.cpp:1691
-#: src/libslic3r/PrintConfig.cpp:1757 src/libslic3r/PrintConfig.cpp:1935
-#: src/libslic3r/PrintConfig.cpp:1985
+#: src/libslic3r/PrintConfig.cpp:325 src/libslic3r/PrintConfig.cpp:945
+#: src/libslic3r/PrintConfig.cpp:1434 src/libslic3r/PrintConfig.cpp:1619
+#: src/libslic3r/PrintConfig.cpp:1680 src/libslic3r/PrintConfig.cpp:1843
+#: src/libslic3r/PrintConfig.cpp:1888
msgid "layers"
msgstr "layers"
-#: src/libslic3r/PrintConfig.cpp:304
+#: src/libslic3r/PrintConfig.cpp:332
msgid "Don't support bridges"
msgstr "Don't support bridges"
-#: src/libslic3r/PrintConfig.cpp:306
+#: src/libslic3r/PrintConfig.cpp:334
msgid ""
"Experimental option for preventing support material from being generated "
"under bridged areas."
@@ -4333,19 +5044,19 @@ msgstr ""
"Experimental option for preventing support material from being generated "
"under bridged areas."
-#: src/libslic3r/PrintConfig.cpp:313
+#: src/libslic3r/PrintConfig.cpp:340
msgid "Distance between copies"
msgstr "Distance between copies"
-#: src/libslic3r/PrintConfig.cpp:314
+#: src/libslic3r/PrintConfig.cpp:341
msgid "Distance used for the auto-arrange feature of the plater."
msgstr "Distance used for the auto-arrange feature of the plater."
-#: src/libslic3r/PrintConfig.cpp:322
+#: src/libslic3r/PrintConfig.cpp:348
msgid "Elephant foot compensation"
msgstr "Elephant foot compensation"
-#: src/libslic3r/PrintConfig.cpp:324
+#: src/libslic3r/PrintConfig.cpp:350
msgid ""
"The first layer will be shrunk in the XY plane by the configured value to "
"compensate for the 1st layer squish aka an Elephant Foot effect."
@@ -4353,7 +5064,7 @@ msgstr ""
"The first layer will be shrunk in the XY plane by the configured value to "
"compensate for the 1st layer squish aka an Elephant Foot effect."
-#: src/libslic3r/PrintConfig.cpp:334
+#: src/libslic3r/PrintConfig.cpp:359
msgid ""
"This end procedure is inserted at the end of the output file. Note that you "
"can use placeholder variables for all Slic3r settings."
@@ -4361,7 +5072,7 @@ msgstr ""
"This end procedure is inserted at the end of the output file. Note that you "
"can use placeholder variables for all Slic3r settings."
-#: src/libslic3r/PrintConfig.cpp:345
+#: src/libslic3r/PrintConfig.cpp:369
msgid ""
"This end procedure is inserted at the end of the output file, before the "
"printer end gcode. Note that you can use placeholder variables for all "
@@ -4373,11 +5084,11 @@ msgstr ""
"Slic3r settings. If you have multiple extruders, the gcode is processed in "
"extruder order."
-#: src/libslic3r/PrintConfig.cpp:356
+#: src/libslic3r/PrintConfig.cpp:379
msgid "Ensure vertical shell thickness"
msgstr "Ensure vertical shell thickness"
-#: src/libslic3r/PrintConfig.cpp:358
+#: src/libslic3r/PrintConfig.cpp:381
msgid ""
"Add solid infill near sloping surfaces to guarantee the vertical shell "
"thickness (top+bottom solid layers)."
@@ -4385,44 +5096,56 @@ msgstr ""
"Add solid infill near sloping surfaces to guarantee the vertical shell "
"thickness (top+bottom solid layers)."
-#: src/libslic3r/PrintConfig.cpp:365
-msgid "Top/bottom fill pattern"
-msgstr "Top/bottom fill pattern"
+#: src/libslic3r/PrintConfig.cpp:387
+msgid "Top fill pattern"
+msgstr "Top fill pattern"
-#: src/libslic3r/PrintConfig.cpp:367
+#: src/libslic3r/PrintConfig.cpp:389
msgid ""
-"Fill pattern for top/bottom infill. This only affects the external visible "
-"layer, and not its adjacent solid shells."
+"Fill pattern for top infill. This only affects the top visible layer, and "
+"not its adjacent solid shells."
msgstr ""
-"Fill pattern for top/bottom infill. This only affects the external visible "
-"layer, and not its adjacent solid shells."
+"Fill pattern for top infill. This only affects the top visible layer, and "
+"not its adjacent solid shells."
-#: src/libslic3r/PrintConfig.cpp:376 src/libslic3r/PrintConfig.cpp:800
-#: src/libslic3r/PrintConfig.cpp:2021
+#: src/libslic3r/PrintConfig.cpp:397 src/libslic3r/PrintConfig.cpp:795
+#: src/libslic3r/PrintConfig.cpp:1921
msgid "Rectilinear"
msgstr "Rectilinear"
-#: src/libslic3r/PrintConfig.cpp:377 src/libslic3r/PrintConfig.cpp:806
+#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:801
msgid "Concentric"
msgstr "Concentric"
-#: src/libslic3r/PrintConfig.cpp:378 src/libslic3r/PrintConfig.cpp:810
+#: src/libslic3r/PrintConfig.cpp:399 src/libslic3r/PrintConfig.cpp:805
msgid "Hilbert Curve"
msgstr "Hilbert Curve"
-#: src/libslic3r/PrintConfig.cpp:379 src/libslic3r/PrintConfig.cpp:811
+#: src/libslic3r/PrintConfig.cpp:400 src/libslic3r/PrintConfig.cpp:806
msgid "Archimedean Chords"
msgstr "Archimedean Chords"
-#: src/libslic3r/PrintConfig.cpp:380 src/libslic3r/PrintConfig.cpp:812
+#: src/libslic3r/PrintConfig.cpp:401 src/libslic3r/PrintConfig.cpp:807
msgid "Octagram Spiral"
msgstr "Octagram Spiral"
-#: src/libslic3r/PrintConfig.cpp:386 src/libslic3r/PrintConfig.cpp:397
+#: src/libslic3r/PrintConfig.cpp:408
+msgid "Bottom fill pattern"
+msgstr "Bottom fill pattern"
+
+#: src/libslic3r/PrintConfig.cpp:409
+msgid ""
+"Fill pattern for bottom infill. This only affects the bottom external "
+"visible layer, and not its adjacent solid shells."
+msgstr ""
+"Fill pattern for bottom infill. This only affects the bottom external "
+"visible layer, and not its adjacent solid shells."
+
+#: src/libslic3r/PrintConfig.cpp:414 src/libslic3r/PrintConfig.cpp:424
msgid "External perimeters"
msgstr "External perimeters"
-#: src/libslic3r/PrintConfig.cpp:388
+#: src/libslic3r/PrintConfig.cpp:416
msgid ""
"Set this to a non-zero value to set a manual extrusion width for external "
"perimeters. If left zero, default extrusion width will be used if set, "
@@ -4434,14 +5157,14 @@ msgstr ""
"otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
"(for example 200%), it will be computed over layer height."
-#: src/libslic3r/PrintConfig.cpp:391 src/libslic3r/PrintConfig.cpp:841
-#: src/libslic3r/PrintConfig.cpp:975 src/libslic3r/PrintConfig.cpp:1408
-#: src/libslic3r/PrintConfig.cpp:1769 src/libslic3r/PrintConfig.cpp:1958
-#: src/libslic3r/PrintConfig.cpp:2129
+#: src/libslic3r/PrintConfig.cpp:419 src/libslic3r/PrintConfig.cpp:834
+#: src/libslic3r/PrintConfig.cpp:966 src/libslic3r/PrintConfig.cpp:1353
+#: src/libslic3r/PrintConfig.cpp:1691 src/libslic3r/PrintConfig.cpp:1864
+#: src/libslic3r/PrintConfig.cpp:2022
msgid "mm or % (leave 0 for default)"
msgstr "mm or % (leave 0 for default)"
-#: src/libslic3r/PrintConfig.cpp:399
+#: src/libslic3r/PrintConfig.cpp:426
msgid ""
"This separate setting will affect the speed of external perimeters (the "
"visible ones). If expressed as percentage (for example: 80%) it will be "
@@ -4451,17 +5174,17 @@ msgstr ""
"visible ones). If expressed as percentage (for example: 80%) it will be "
"calculated on the perimeters speed setting above. Set to zero for auto."
-#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:864
-#: src/libslic3r/PrintConfig.cpp:1725 src/libslic3r/PrintConfig.cpp:1780
-#: src/libslic3r/PrintConfig.cpp:2006 src/libslic3r/PrintConfig.cpp:2142
+#: src/libslic3r/PrintConfig.cpp:429 src/libslic3r/PrintConfig.cpp:855
+#: src/libslic3r/PrintConfig.cpp:1650 src/libslic3r/PrintConfig.cpp:1701
+#: src/libslic3r/PrintConfig.cpp:1907 src/libslic3r/PrintConfig.cpp:2034
msgid "mm/s or %"
msgstr "mm/s or %"
-#: src/libslic3r/PrintConfig.cpp:409
+#: src/libslic3r/PrintConfig.cpp:436
msgid "External perimeters first"
msgstr "External perimeters first"
-#: src/libslic3r/PrintConfig.cpp:411
+#: src/libslic3r/PrintConfig.cpp:438
msgid ""
"Print contour perimeters from the outermost one to the innermost one instead "
"of the default inverse order."
@@ -4469,11 +5192,11 @@ msgstr ""
"Print contour perimeters from the outermost one to the innermost one instead "
"of the default inverse order."
-#: src/libslic3r/PrintConfig.cpp:418
+#: src/libslic3r/PrintConfig.cpp:444
msgid "Extra perimeters if needed"
msgstr "Extra perimeters if needed"
-#: src/libslic3r/PrintConfig.cpp:420
+#: src/libslic3r/PrintConfig.cpp:446
#, no-c-format
msgid ""
"Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r "
@@ -4484,7 +5207,7 @@ msgstr ""
"keeps adding perimeters, until more than 70% of the loop immediately above "
"is supported."
-#: src/libslic3r/PrintConfig.cpp:431
+#: src/libslic3r/PrintConfig.cpp:456
msgid ""
"The extruder to use (unless more specific extruder settings are specified). "
"This value overrides perimeter and infill extruders, but not the support "
@@ -4494,7 +5217,7 @@ msgstr ""
"This value overrides perimeter and infill extruders, but not the support "
"extruders."
-#: src/libslic3r/PrintConfig.cpp:444
+#: src/libslic3r/PrintConfig.cpp:468
msgid ""
"Set this to the vertical distance between your nozzle tip and (usually) the "
"X carriage rods. In other words, this is the height of the clearance "
@@ -4506,11 +5229,11 @@ msgstr ""
"cylinder around your extruder, and it represents the maximum depth the "
"extruder can peek before colliding with other printed objects."
-#: src/libslic3r/PrintConfig.cpp:455
+#: src/libslic3r/PrintConfig.cpp:478
msgid "Radius"
msgstr "Radius"
-#: src/libslic3r/PrintConfig.cpp:456
+#: src/libslic3r/PrintConfig.cpp:479
msgid ""
"Set this to the clearance radius around your extruder. If the extruder is "
"not centered, choose the largest value for safety. This setting is used to "
@@ -4520,19 +5243,19 @@ msgstr ""
"not centered, choose the largest value for safety. This setting is used to "
"check for collisions and to display the graphical preview in the plater."
-#: src/libslic3r/PrintConfig.cpp:467
+#: src/libslic3r/PrintConfig.cpp:489
msgid "Extruder Color"
msgstr "Extruder Color"
-#: src/libslic3r/PrintConfig.cpp:468 src/libslic3r/PrintConfig.cpp:535
+#: src/libslic3r/PrintConfig.cpp:490 src/libslic3r/PrintConfig.cpp:550
msgid "This is only used in the Slic3r interface as a visual help."
msgstr "This is only used in the Slic3r interface as a visual help."
-#: src/libslic3r/PrintConfig.cpp:475
+#: src/libslic3r/PrintConfig.cpp:496
msgid "Extruder offset"
msgstr "Extruder offset"
-#: src/libslic3r/PrintConfig.cpp:476
+#: src/libslic3r/PrintConfig.cpp:497
msgid ""
"If your firmware doesn't handle the extruder displacement you need the G-"
"code to take it into account. This option lets you specify the displacement "
@@ -4544,11 +5267,11 @@ msgstr ""
"of each extruder with respect to the first one. It expects positive "
"coordinates (they will be subtracted from the XY coordinate)."
-#: src/libslic3r/PrintConfig.cpp:486
+#: src/libslic3r/PrintConfig.cpp:506
msgid "Extrusion axis"
msgstr "Extrusion axis"
-#: src/libslic3r/PrintConfig.cpp:487
+#: src/libslic3r/PrintConfig.cpp:507
msgid ""
"Use this option to set the axis letter associated to your printer's extruder "
"(usually E but some printers use A)."
@@ -4556,11 +5279,11 @@ msgstr ""
"Use this option to set the axis letter associated to your printer's extruder "
"(usually E but some printers use A)."
-#: src/libslic3r/PrintConfig.cpp:493
+#: src/libslic3r/PrintConfig.cpp:512
msgid "Extrusion multiplier"
msgstr "Extrusion multiplier"
-#: src/libslic3r/PrintConfig.cpp:494
+#: src/libslic3r/PrintConfig.cpp:513
msgid ""
"This factor changes the amount of flow proportionally. You may need to tweak "
"this setting to get nice surface finish and correct single wall widths. "
@@ -4572,11 +5295,11 @@ msgstr ""
"Usual values are between 0.9 and 1.1. If you think you need to change this "
"more, check filament diameter and your firmware E steps."
-#: src/libslic3r/PrintConfig.cpp:503
+#: src/libslic3r/PrintConfig.cpp:521
msgid "Default extrusion width"
msgstr "Default extrusion width"
-#: src/libslic3r/PrintConfig.cpp:505
+#: src/libslic3r/PrintConfig.cpp:523
msgid ""
"Set this to a non-zero value to allow a manual extrusion width. If left to "
"zero, Slic3r derives extrusion widths from the nozzle diameter (see the "
@@ -4590,15 +5313,15 @@ msgstr ""
"expressed as percentage (for example: 230%), it will be computed over layer "
"height."
-#: src/libslic3r/PrintConfig.cpp:509
+#: src/libslic3r/PrintConfig.cpp:527
msgid "mm or % (leave 0 for auto)"
msgstr "mm or % (leave 0 for auto)"
-#: src/libslic3r/PrintConfig.cpp:515
+#: src/libslic3r/PrintConfig.cpp:532
msgid "Keep fan always on"
msgstr "Keep fan always on"
-#: src/libslic3r/PrintConfig.cpp:516
+#: src/libslic3r/PrintConfig.cpp:533
msgid ""
"If this is enabled, fan will never be disabled and will be kept running at "
"least at its minimum speed. Useful for PLA, harmful for ABS."
@@ -4606,11 +5329,11 @@ msgstr ""
"If this is enabled, fan will never be disabled and will be kept running at "
"least at its minimum speed. Useful for PLA, harmful for ABS."
-#: src/libslic3r/PrintConfig.cpp:522
+#: src/libslic3r/PrintConfig.cpp:538
msgid "Enable fan if layer print time is below"
msgstr "Enable fan if layer print time is below"
-#: src/libslic3r/PrintConfig.cpp:523
+#: src/libslic3r/PrintConfig.cpp:539
msgid ""
"If layer print time is estimated below this number of seconds, fan will be "
"enabled and its speed will be calculated by interpolating the minimum and "
@@ -4620,27 +5343,27 @@ msgstr ""
"enabled and its speed will be calculated by interpolating the minimum and "
"maximum speeds."
-#: src/libslic3r/PrintConfig.cpp:525 src/libslic3r/PrintConfig.cpp:1711
+#: src/libslic3r/PrintConfig.cpp:541 src/libslic3r/PrintConfig.cpp:1637
msgid "approximate seconds"
msgstr "approximate seconds"
-#: src/libslic3r/PrintConfig.cpp:534
+#: src/libslic3r/PrintConfig.cpp:549
msgid "Color"
msgstr "Color"
-#: src/libslic3r/PrintConfig.cpp:541
+#: src/libslic3r/PrintConfig.cpp:555
msgid "Filament notes"
msgstr "Filament notes"
-#: src/libslic3r/PrintConfig.cpp:542
+#: src/libslic3r/PrintConfig.cpp:556
msgid "You can put your notes regarding the filament here."
msgstr "You can put your notes regarding the filament here."
-#: src/libslic3r/PrintConfig.cpp:551 src/libslic3r/PrintConfig.cpp:1196
+#: src/libslic3r/PrintConfig.cpp:564 src/libslic3r/PrintConfig.cpp:1181
msgid "Max volumetric speed"
msgstr "Max volumetric speed"
-#: src/libslic3r/PrintConfig.cpp:552
+#: src/libslic3r/PrintConfig.cpp:565
msgid ""
"Maximum volumetric speed allowed for this filament. Limits the maximum "
"volumetric speed of a print to the minimum of print and filament volumetric "
@@ -4650,31 +5373,31 @@ msgstr ""
"volumetric speed of a print to the minimum of print and filament volumetric "
"speed. Set to zero for no limit."
-#: src/libslic3r/PrintConfig.cpp:555 src/libslic3r/PrintConfig.cpp:1199
+#: src/libslic3r/PrintConfig.cpp:568 src/libslic3r/PrintConfig.cpp:1184
msgid "mm³/s"
msgstr "mm³/s"
-#: src/libslic3r/PrintConfig.cpp:562
+#: src/libslic3r/PrintConfig.cpp:574
msgid "Loading speed"
msgstr "Loading speed"
-#: src/libslic3r/PrintConfig.cpp:563
+#: src/libslic3r/PrintConfig.cpp:575
msgid "Speed used for loading the filament on the wipe tower. "
msgstr "Speed used for loading the filament on the wipe tower. "
-#: src/libslic3r/PrintConfig.cpp:571
+#: src/libslic3r/PrintConfig.cpp:582
msgid "Loading speed at the start"
msgstr "Loading speed at the start"
-#: src/libslic3r/PrintConfig.cpp:572
+#: src/libslic3r/PrintConfig.cpp:583
msgid "Speed used at the very beginning of loading phase. "
msgstr "Speed used at the very beginning of loading phase. "
-#: src/libslic3r/PrintConfig.cpp:580
+#: src/libslic3r/PrintConfig.cpp:590
msgid "Unloading speed"
msgstr "Unloading speed"
-#: src/libslic3r/PrintConfig.cpp:581
+#: src/libslic3r/PrintConfig.cpp:591
msgid ""
"Speed used for unloading the filament on the wipe tower (does not affect "
"initial part of unloading just after ramming). "
@@ -4682,21 +5405,21 @@ msgstr ""
"Speed used for unloading the filament on the wipe tower (does not affect "
"initial part of unloading just after ramming). "
-#: src/libslic3r/PrintConfig.cpp:590
+#: src/libslic3r/PrintConfig.cpp:599
msgid "Unloading speed at the start"
msgstr "Unloading speed at the start"
-#: src/libslic3r/PrintConfig.cpp:591
+#: src/libslic3r/PrintConfig.cpp:600
msgid ""
"Speed used for unloading the tip of the filament immediately after ramming. "
msgstr ""
"Speed used for unloading the tip of the filament immediately after ramming. "
-#: src/libslic3r/PrintConfig.cpp:599
+#: src/libslic3r/PrintConfig.cpp:607
msgid "Delay after unloading"
msgstr "Delay after unloading"
-#: src/libslic3r/PrintConfig.cpp:600
+#: src/libslic3r/PrintConfig.cpp:608
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 "
@@ -4706,11 +5429,11 @@ msgstr ""
"toolchanges with flexible materials that may need more time to shrink to "
"original dimensions. "
-#: src/libslic3r/PrintConfig.cpp:610
+#: src/libslic3r/PrintConfig.cpp:617
msgid "Number of cooling moves"
msgstr "Number of cooling moves"
-#: src/libslic3r/PrintConfig.cpp:611
+#: src/libslic3r/PrintConfig.cpp:618
msgid ""
"Filament is cooled by being moved back and forth in the cooling tubes. "
"Specify desired number of these moves "
@@ -4718,19 +5441,19 @@ msgstr ""
"Filament is cooled by being moved back and forth in the cooling tubes. "
"Specify desired number of these moves "
-#: src/libslic3r/PrintConfig.cpp:620
+#: src/libslic3r/PrintConfig.cpp:626
msgid "Speed of the first cooling move"
msgstr "Speed of the first cooling move"
-#: src/libslic3r/PrintConfig.cpp:621
+#: src/libslic3r/PrintConfig.cpp:627
msgid "Cooling moves are gradually accelerating beginning at this speed. "
msgstr "Cooling moves are gradually accelerating beginning at this speed. "
-#: src/libslic3r/PrintConfig.cpp:629
+#: src/libslic3r/PrintConfig.cpp:634
msgid "Minimal purge on wipe tower"
msgstr "Minimal purge on wipe tower"
-#: src/libslic3r/PrintConfig.cpp:630
+#: src/libslic3r/PrintConfig.cpp:635
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 "
@@ -4744,23 +5467,23 @@ msgstr ""
"object, Slic3r will always prime this amount of material into the wipe tower "
"to produce successive infill or sacrificial object extrusions reliably."
-#: src/libslic3r/PrintConfig.cpp:635
+#: src/libslic3r/PrintConfig.cpp:639
msgid "mm³"
msgstr "mm³"
-#: src/libslic3r/PrintConfig.cpp:641
+#: src/libslic3r/PrintConfig.cpp:645
msgid "Speed of the last cooling move"
msgstr "Speed of the last cooling move"
-#: src/libslic3r/PrintConfig.cpp:642
+#: src/libslic3r/PrintConfig.cpp:646
msgid "Cooling moves are gradually accelerating towards this speed. "
msgstr "Cooling moves are gradually accelerating towards this speed. "
-#: src/libslic3r/PrintConfig.cpp:650
+#: src/libslic3r/PrintConfig.cpp:653
msgid "Filament load time"
msgstr "Filament load time"
-#: src/libslic3r/PrintConfig.cpp:651
+#: src/libslic3r/PrintConfig.cpp:654
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 "
@@ -4770,11 +5493,11 @@ msgstr ""
"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."
-#: src/libslic3r/PrintConfig.cpp:659
+#: src/libslic3r/PrintConfig.cpp:661
msgid "Ramming parameters"
msgstr "Ramming parameters"
-#: src/libslic3r/PrintConfig.cpp:660
+#: src/libslic3r/PrintConfig.cpp:662
msgid ""
"This string is edited by RammingDialog and contains ramming specific "
"parameters "
@@ -4782,11 +5505,11 @@ msgstr ""
"This string is edited by RammingDialog and contains ramming specific "
"parameters "
-#: src/libslic3r/PrintConfig.cpp:667
+#: src/libslic3r/PrintConfig.cpp:668
msgid "Filament unload time"
msgstr "Filament unload time"
-#: src/libslic3r/PrintConfig.cpp:668
+#: src/libslic3r/PrintConfig.cpp:669
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 "
@@ -4806,11 +5529,11 @@ msgstr ""
"caliper and do multiple measurements along the filament, then compute the "
"average."
-#: src/libslic3r/PrintConfig.cpp:685
+#: src/libslic3r/PrintConfig.cpp:684
msgid "Density"
msgstr "Density"
-#: src/libslic3r/PrintConfig.cpp:686
+#: src/libslic3r/PrintConfig.cpp:685
msgid ""
"Enter your filament density here. This is only for statistical information. "
"A decent way is to weigh a known length of filament and compute the ratio of "
@@ -4822,27 +5545,27 @@ msgstr ""
"the length to volume. Better is to calculate the volume directly through "
"displacement."
-#: src/libslic3r/PrintConfig.cpp:689
+#: src/libslic3r/PrintConfig.cpp:688
msgid "g/cm³"
msgstr "g/cm³"
-#: src/libslic3r/PrintConfig.cpp:695
+#: src/libslic3r/PrintConfig.cpp:693
msgid "Filament type"
msgstr "Filament type"
-#: src/libslic3r/PrintConfig.cpp:696
+#: src/libslic3r/PrintConfig.cpp:694
msgid "The filament material type for use in custom G-codes."
msgstr "The filament material type for use in custom G-codes."
-#: src/libslic3r/PrintConfig.cpp:712
+#: src/libslic3r/PrintConfig.cpp:710
msgid "Soluble material"
msgstr "Soluble material"
-#: src/libslic3r/PrintConfig.cpp:713
+#: src/libslic3r/PrintConfig.cpp:711
msgid "Soluble material is most likely used for a soluble support."
msgstr "Soluble material is most likely used for a soluble support."
-#: src/libslic3r/PrintConfig.cpp:719
+#: src/libslic3r/PrintConfig.cpp:717
msgid ""
"Enter your filament cost per kg here. This is only for statistical "
"information."
@@ -4850,15 +5573,15 @@ msgstr ""
"Enter your filament cost per kg here. This is only for statistical "
"information."
-#: src/libslic3r/PrintConfig.cpp:720
+#: src/libslic3r/PrintConfig.cpp:718
msgid "money/kg"
msgstr "money/kg"
-#: src/libslic3r/PrintConfig.cpp:729
+#: src/libslic3r/PrintConfig.cpp:727
msgid "Fill angle"
msgstr "Fill angle"
-#: src/libslic3r/PrintConfig.cpp:731
+#: src/libslic3r/PrintConfig.cpp:729
msgid ""
"Default base angle for infill orientation. Cross-hatching will be applied to "
"this. Bridges will be infilled using the best direction Slic3r can detect, "
@@ -4868,60 +5591,60 @@ msgstr ""
"this. Bridges will be infilled using the best direction Slic3r can detect, "
"so this setting does not affect them."
-#: src/libslic3r/PrintConfig.cpp:744
+#: src/libslic3r/PrintConfig.cpp:741
msgid "Fill density"
msgstr "Fill density"
-#: src/libslic3r/PrintConfig.cpp:746
+#: src/libslic3r/PrintConfig.cpp:743
msgid "Density of internal infill, expressed in the range 0% - 100%."
msgstr "Density of internal infill, expressed in the range 0% - 100%."
-#: src/libslic3r/PrintConfig.cpp:782
+#: src/libslic3r/PrintConfig.cpp:778
msgid "Fill pattern"
msgstr "Fill pattern"
-#: src/libslic3r/PrintConfig.cpp:784
+#: src/libslic3r/PrintConfig.cpp:780
msgid "Fill pattern for general low-density infill."
msgstr "Fill pattern for general low-density infill."
-#: src/libslic3r/PrintConfig.cpp:801
+#: src/libslic3r/PrintConfig.cpp:796
msgid "Grid"
msgstr "Grid"
-#: src/libslic3r/PrintConfig.cpp:802
+#: src/libslic3r/PrintConfig.cpp:797
msgid "Triangles"
msgstr "Triangles"
-#: src/libslic3r/PrintConfig.cpp:803
+#: src/libslic3r/PrintConfig.cpp:798
msgid "Stars"
msgstr "Stars"
-#: src/libslic3r/PrintConfig.cpp:804
+#: src/libslic3r/PrintConfig.cpp:799
msgid "Cubic"
msgstr "Cubic"
-#: src/libslic3r/PrintConfig.cpp:805
+#: src/libslic3r/PrintConfig.cpp:800
msgid "Line"
msgstr "Line"
-#: src/libslic3r/PrintConfig.cpp:807 src/libslic3r/PrintConfig.cpp:2023
+#: src/libslic3r/PrintConfig.cpp:802 src/libslic3r/PrintConfig.cpp:1923
msgid "Honeycomb"
msgstr "Honeycomb"
-#: src/libslic3r/PrintConfig.cpp:808
+#: src/libslic3r/PrintConfig.cpp:803
msgid "3D Honeycomb"
msgstr "3D Honeycomb"
-#: src/libslic3r/PrintConfig.cpp:809
+#: src/libslic3r/PrintConfig.cpp:804
msgid "Gyroid"
msgstr "Gyroid"
-#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:826
-#: src/libslic3r/PrintConfig.cpp:835 src/libslic3r/PrintConfig.cpp:871
+#: src/libslic3r/PrintConfig.cpp:811 src/libslic3r/PrintConfig.cpp:820
+#: src/libslic3r/PrintConfig.cpp:828 src/libslic3r/PrintConfig.cpp:861
msgid "First layer"
msgstr "First layer"
-#: src/libslic3r/PrintConfig.cpp:817
+#: src/libslic3r/PrintConfig.cpp:812
msgid ""
"This is the acceleration your printer will use for first layer. Set zero to "
"disable acceleration control for first layer."
@@ -4929,7 +5652,7 @@ msgstr ""
"This is the acceleration your printer will use for first layer. Set zero to "
"disable acceleration control for first layer."
-#: src/libslic3r/PrintConfig.cpp:827
+#: src/libslic3r/PrintConfig.cpp:821
msgid ""
"Heated build plate temperature for the first layer. Set this to zero to "
"disable bed temperature control commands in the output."
@@ -4937,7 +5660,7 @@ msgstr ""
"Heated build plate temperature for the first layer. Set this to zero to "
"disable bed temperature control commands in the output."
-#: src/libslic3r/PrintConfig.cpp:837
+#: src/libslic3r/PrintConfig.cpp:830
msgid ""
"Set this to a non-zero value to set a manual extrusion width for first "
"layer. You can use this to force fatter extrudates for better adhesion. If "
@@ -4949,11 +5672,11 @@ msgstr ""
"expressed as percentage (for example 120%) it will be computed over first "
"layer height. If set to zero, it will use the default extrusion width."
-#: src/libslic3r/PrintConfig.cpp:848
+#: src/libslic3r/PrintConfig.cpp:840
msgid "First layer height"
msgstr "First layer height"
-#: src/libslic3r/PrintConfig.cpp:850
+#: src/libslic3r/PrintConfig.cpp:842
msgid ""
"When printing with very low layer heights, you might still want to print a "
"thicker bottom layer to improve adhesion and tolerance for non perfect build "
@@ -4965,16 +5688,16 @@ msgstr ""
"plates. This can be expressed as an absolute value or as a percentage (for "
"example: 150%) over the default layer height."
-#: src/libslic3r/PrintConfig.cpp:854 src/libslic3r/PrintConfig.cpp:1003
-#: src/libslic3r/PrintConfig.cpp:1884
+#: src/libslic3r/PrintConfig.cpp:846 src/libslic3r/PrintConfig.cpp:991
+#: src/libslic3r/PrintConfig.cpp:1796
msgid "mm or %"
msgstr "mm or %"
-#: src/libslic3r/PrintConfig.cpp:860
+#: src/libslic3r/PrintConfig.cpp:851
msgid "First layer speed"
msgstr "First layer speed"
-#: src/libslic3r/PrintConfig.cpp:861
+#: src/libslic3r/PrintConfig.cpp:852
msgid ""
"If expressed as absolute value in mm/s, this speed will be applied to all "
"the print moves of the first layer, regardless of their type. If expressed "
@@ -4984,7 +5707,7 @@ msgstr ""
"the print moves of the first layer, regardless of their type. If expressed "
"as a percentage (for example: 40%) it will scale the default speeds."
-#: src/libslic3r/PrintConfig.cpp:872
+#: src/libslic3r/PrintConfig.cpp:862
msgid ""
"Extruder temperature for first layer. If you want to control temperature "
"manually during print, set this to zero to disable temperature control "
@@ -4994,7 +5717,7 @@ msgstr ""
"manually during print, set this to zero to disable temperature control "
"commands in the output file."
-#: src/libslic3r/PrintConfig.cpp:882
+#: src/libslic3r/PrintConfig.cpp:871
msgid ""
"Speed for filling small gaps using short zigzag moves. Keep this reasonably "
"low to avoid too much shaking and resonance issues. Set zero to disable gaps "
@@ -5004,11 +5727,11 @@ msgstr ""
"low to avoid too much shaking and resonance issues. Set zero to disable gaps "
"filling."
-#: src/libslic3r/PrintConfig.cpp:890
+#: src/libslic3r/PrintConfig.cpp:879
msgid "Verbose G-code"
msgstr "Verbose G-code"
-#: src/libslic3r/PrintConfig.cpp:891
+#: src/libslic3r/PrintConfig.cpp:880
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 "
@@ -5018,11 +5741,11 @@ msgstr ""
"descriptive text. If you print from SD card, the additional weight of the "
"file could make your firmware slow down."
-#: src/libslic3r/PrintConfig.cpp:899
+#: src/libslic3r/PrintConfig.cpp:887
msgid "G-code flavor"
msgstr "G-code flavor"
-#: src/libslic3r/PrintConfig.cpp:900
+#: src/libslic3r/PrintConfig.cpp:888
msgid ""
"Some G/M-code commands, including temperature control and others, are not "
"universal. Set this option to your printer's firmware to get a compatible "
@@ -5034,15 +5757,15 @@ msgstr ""
"output. The \"No extrusion\" flavor prevents Slic3r from exporting any "
"extrusion value at all."
-#: src/libslic3r/PrintConfig.cpp:924
+#: src/libslic3r/PrintConfig.cpp:911
msgid "No extrusion"
msgstr "No extrusion"
-#: src/libslic3r/PrintConfig.cpp:929
+#: src/libslic3r/PrintConfig.cpp:924
msgid "High extruder current on filament swap"
msgstr "High extruder current on filament swap"
-#: src/libslic3r/PrintConfig.cpp:930
+#: src/libslic3r/PrintConfig.cpp:925
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 "
@@ -5052,7 +5775,7 @@ msgstr ""
"filament exchange sequence to allow for rapid ramming feed rates and to "
"overcome resistance when loading a filament with an ugly shaped tip."
-#: src/libslic3r/PrintConfig.cpp:939
+#: src/libslic3r/PrintConfig.cpp:933
msgid ""
"This is the acceleration your printer will use for infill. Set zero to "
"disable acceleration control for infill."
@@ -5060,11 +5783,11 @@ msgstr ""
"This is the acceleration your printer will use for infill. Set zero to "
"disable acceleration control for infill."
-#: src/libslic3r/PrintConfig.cpp:948
+#: src/libslic3r/PrintConfig.cpp:941
msgid "Combine infill every"
msgstr "Combine infill every"
-#: src/libslic3r/PrintConfig.cpp:950
+#: src/libslic3r/PrintConfig.cpp:943
msgid ""
"This feature allows to combine infill and speed up your print by extruding "
"thicker infill layers while preserving thin perimeters, thus accuracy."
@@ -5072,19 +5795,19 @@ msgstr ""
"This feature allows to combine infill and speed up your print by extruding "
"thicker infill layers while preserving thin perimeters, thus accuracy."
-#: src/libslic3r/PrintConfig.cpp:954
+#: src/libslic3r/PrintConfig.cpp:946
msgid "Combine infill every n layers"
msgstr "Combine infill every n layers"
-#: src/libslic3r/PrintConfig.cpp:960
+#: src/libslic3r/PrintConfig.cpp:952
msgid "Infill extruder"
msgstr "Infill extruder"
-#: src/libslic3r/PrintConfig.cpp:962
+#: src/libslic3r/PrintConfig.cpp:954
msgid "The extruder to use when printing infill."
msgstr "The extruder to use when printing infill."
-#: src/libslic3r/PrintConfig.cpp:971
+#: src/libslic3r/PrintConfig.cpp:962
msgid ""
"Set this to a non-zero value to set a manual extrusion width for infill. If "
"left zero, default extrusion width will be used if set, otherwise 1.125 x "
@@ -5098,11 +5821,11 @@ msgstr ""
"up the infill and make your parts stronger. If expressed as percentage (for "
"example 90%) it will be computed over layer height."
-#: src/libslic3r/PrintConfig.cpp:981
+#: src/libslic3r/PrintConfig.cpp:971
msgid "Infill before perimeters"
msgstr "Infill before perimeters"
-#: src/libslic3r/PrintConfig.cpp:982
+#: src/libslic3r/PrintConfig.cpp:972
msgid ""
"This option will switch the print order of perimeters and infill, making the "
"latter first."
@@ -5110,11 +5833,11 @@ msgstr ""
"This option will switch the print order of perimeters and infill, making the "
"latter first."
-#: src/libslic3r/PrintConfig.cpp:988
+#: src/libslic3r/PrintConfig.cpp:977
msgid "Only infill where needed"
msgstr "Only infill where needed"
-#: src/libslic3r/PrintConfig.cpp:990
+#: src/libslic3r/PrintConfig.cpp:979
msgid ""
"This option will limit infill to the areas actually needed for supporting "
"ceilings (it will act as internal support material). If enabled, slows down "
@@ -5124,11 +5847,11 @@ msgstr ""
"ceilings (it will act as internal support material). If enabled, slows down "
"the G-code generation due to the multiple checks involved."
-#: src/libslic3r/PrintConfig.cpp:998
+#: src/libslic3r/PrintConfig.cpp:986
msgid "Infill/perimeters overlap"
msgstr "Infill/perimeters overlap"
-#: src/libslic3r/PrintConfig.cpp:1000
+#: src/libslic3r/PrintConfig.cpp:988
msgid ""
"This setting applies an additional overlap between infill and perimeters for "
"better bonding. Theoretically this shouldn't be needed, but backlash might "
@@ -5140,23 +5863,23 @@ msgstr ""
"cause gaps. If expressed as percentage (example: 15%) it is calculated over "
"perimeter extrusion width."
-#: src/libslic3r/PrintConfig.cpp:1012
+#: src/libslic3r/PrintConfig.cpp:999
msgid "Speed for printing the internal fill. Set to zero for auto."
msgstr "Speed for printing the internal fill. Set to zero for auto."
-#: src/libslic3r/PrintConfig.cpp:1020
+#: src/libslic3r/PrintConfig.cpp:1007
msgid "Inherits profile"
msgstr "Inherits profile"
-#: src/libslic3r/PrintConfig.cpp:1021
+#: src/libslic3r/PrintConfig.cpp:1008
msgid "Name of the profile, from which this profile inherits."
msgstr "Name of the profile, from which this profile inherits."
-#: src/libslic3r/PrintConfig.cpp:1032
+#: src/libslic3r/PrintConfig.cpp:1021
msgid "Interface shells"
msgstr "Interface shells"
-#: src/libslic3r/PrintConfig.cpp:1033
+#: src/libslic3r/PrintConfig.cpp:1022
msgid ""
"Force the generation of solid shells between adjacent materials/volumes. "
"Useful for multi-extruder prints with translucent materials or manual "
@@ -5166,7 +5889,7 @@ msgstr ""
"Useful for multi-extruder prints with translucent materials or manual "
"soluble support material."
-#: src/libslic3r/PrintConfig.cpp:1043
+#: src/libslic3r/PrintConfig.cpp:1031
msgid ""
"This custom code is inserted at every layer change, right after the Z move "
"and before the extruder moves to the first layer point. Note that you can "
@@ -5178,11 +5901,11 @@ msgstr ""
"use placeholder variables for all Slic3r settings as well as [layer_num] and "
"[layer_z]."
-#: src/libslic3r/PrintConfig.cpp:1054
+#: src/libslic3r/PrintConfig.cpp:1042
msgid "Supports remaining times"
msgstr "Supports remaining times"
-#: src/libslic3r/PrintConfig.cpp:1055
+#: src/libslic3r/PrintConfig.cpp:1043
msgid ""
"Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute "
"intervals into the G-code to let the firmware show accurate remaining time. "
@@ -5194,63 +5917,63 @@ msgstr ""
"As of now only the Prusa i3 MK3 firmware recognizes M73. Also the i3 MK3 "
"firmware supports M73 Qxx Sxx for the silent mode."
-#: src/libslic3r/PrintConfig.cpp:1063
+#: src/libslic3r/PrintConfig.cpp:1051
msgid "Supports silent mode"
msgstr "Supports silent mode"
-#: src/libslic3r/PrintConfig.cpp:1064
+#: src/libslic3r/PrintConfig.cpp:1052
msgid "Set silent mode for the G-code flavor"
msgstr "Set silent mode for the G-code flavor"
-#: src/libslic3r/PrintConfig.cpp:1087
+#: src/libslic3r/PrintConfig.cpp:1075
msgid "Maximum feedrate %1%"
msgstr "Maximum feedrate %1%"
-#: src/libslic3r/PrintConfig.cpp:1089
+#: src/libslic3r/PrintConfig.cpp:1077
msgid "Maximum feedrate of the %1% axis"
msgstr "Maximum feedrate of the %1% axis"
-#: src/libslic3r/PrintConfig.cpp:1097
+#: src/libslic3r/PrintConfig.cpp:1085
msgid "Maximum acceleration %1%"
msgstr "Maximum acceleration %1%"
-#: src/libslic3r/PrintConfig.cpp:1099
+#: src/libslic3r/PrintConfig.cpp:1087
msgid "Maximum acceleration of the %1% axis"
msgstr "Maximum acceleration of the %1% axis"
-#: src/libslic3r/PrintConfig.cpp:1107
+#: src/libslic3r/PrintConfig.cpp:1095
msgid "Maximum jerk %1%"
msgstr "Maximum jerk %1%"
-#: src/libslic3r/PrintConfig.cpp:1109
+#: src/libslic3r/PrintConfig.cpp:1097
msgid "Maximum jerk of the %1% axis"
msgstr "Maximum jerk of the %1% axis"
-#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122
+#: src/libslic3r/PrintConfig.cpp:1108 src/libslic3r/PrintConfig.cpp:1110
msgid "Minimum feedrate when extruding"
msgstr "Minimum feedrate when extruding"
-#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133
+#: src/libslic3r/PrintConfig.cpp:1119 src/libslic3r/PrintConfig.cpp:1121
msgid "Minimum travel feedrate"
msgstr "Minimum travel feedrate"
-#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144
+#: src/libslic3r/PrintConfig.cpp:1130 src/libslic3r/PrintConfig.cpp:1132
msgid "Maximum acceleration when extruding"
msgstr "Maximum acceleration when extruding"
-#: src/libslic3r/PrintConfig.cpp:1153 src/libslic3r/PrintConfig.cpp:1155
+#: src/libslic3r/PrintConfig.cpp:1141 src/libslic3r/PrintConfig.cpp:1143
msgid "Maximum acceleration when retracting"
msgstr "Maximum acceleration when retracting"
-#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1173
+#: src/libslic3r/PrintConfig.cpp:1151 src/libslic3r/PrintConfig.cpp:1160
msgid "Max"
msgstr "Max"
-#: src/libslic3r/PrintConfig.cpp:1164
+#: src/libslic3r/PrintConfig.cpp:1152
msgid "This setting represents the maximum speed of your fan."
msgstr "This setting represents the maximum speed of your fan."
-#: src/libslic3r/PrintConfig.cpp:1174
+#: src/libslic3r/PrintConfig.cpp:1161
#, no-c-format
msgid ""
"This is the highest printable layer height for this extruder, used to cap "
@@ -5263,11 +5986,11 @@ msgstr ""
"layer height is 75% of the extrusion width to achieve reasonable inter-layer "
"adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter."
-#: src/libslic3r/PrintConfig.cpp:1185
+#: src/libslic3r/PrintConfig.cpp:1171
msgid "Max print speed"
msgstr "Max print speed"
-#: src/libslic3r/PrintConfig.cpp:1186
+#: src/libslic3r/PrintConfig.cpp:1172
msgid ""
"When setting other speed settings to 0 Slic3r will autocalculate the optimal "
"speed in order to keep constant extruder pressure. This experimental setting "
@@ -5277,7 +6000,7 @@ msgstr ""
"speed in order to keep constant extruder pressure. This experimental setting "
"is used to set the highest print speed you want to allow."
-#: src/libslic3r/PrintConfig.cpp:1197
+#: src/libslic3r/PrintConfig.cpp:1182
msgid ""
"This experimental setting is used to set the maximum volumetric speed your "
"extruder supports."
@@ -5285,11 +6008,11 @@ msgstr ""
"This experimental setting is used to set the maximum volumetric speed your "
"extruder supports."
-#: src/libslic3r/PrintConfig.cpp:1206
+#: src/libslic3r/PrintConfig.cpp:1191
msgid "Max volumetric slope positive"
msgstr "Max volumetric slope positive"
-#: src/libslic3r/PrintConfig.cpp:1207 src/libslic3r/PrintConfig.cpp:1219
+#: src/libslic3r/PrintConfig.cpp:1192 src/libslic3r/PrintConfig.cpp:1203
msgid ""
"This experimental setting is used to limit the speed of change in extrusion "
"rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate "
@@ -5301,23 +6024,23 @@ msgstr ""
"of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/"
"s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds."
-#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1223
+#: src/libslic3r/PrintConfig.cpp:1196 src/libslic3r/PrintConfig.cpp:1207
msgid "mm³/s²"
msgstr "mm³/s²"
-#: src/libslic3r/PrintConfig.cpp:1218
+#: src/libslic3r/PrintConfig.cpp:1202
msgid "Max volumetric slope negative"
msgstr "Max volumetric slope negative"
-#: src/libslic3r/PrintConfig.cpp:1230 src/libslic3r/PrintConfig.cpp:1240
+#: src/libslic3r/PrintConfig.cpp:1214 src/libslic3r/PrintConfig.cpp:1223
msgid "Min"
msgstr "Min"
-#: src/libslic3r/PrintConfig.cpp:1231
+#: src/libslic3r/PrintConfig.cpp:1215
msgid "This setting represents the minimum PWM your fan needs to work."
msgstr "This setting represents the minimum PWM your fan needs to work."
-#: src/libslic3r/PrintConfig.cpp:1241
+#: src/libslic3r/PrintConfig.cpp:1224
msgid ""
"This is the lowest printable layer height for this extruder and limits the "
"resolution for variable layer height. Typical values are between 0.05 mm and "
@@ -5327,19 +6050,19 @@ msgstr ""
"resolution for variable layer height. Typical values are between 0.05 mm and "
"0.1 mm."
-#: src/libslic3r/PrintConfig.cpp:1250
+#: src/libslic3r/PrintConfig.cpp:1232
msgid "Min print speed"
msgstr "Min print speed"
-#: src/libslic3r/PrintConfig.cpp:1251
+#: src/libslic3r/PrintConfig.cpp:1233
msgid "Slic3r will not scale speed down below this speed."
msgstr "Slic3r will not scale speed down below this speed."
-#: src/libslic3r/PrintConfig.cpp:1259
+#: src/libslic3r/PrintConfig.cpp:1240
msgid "Minimal filament extrusion length"
msgstr "Minimal filament extrusion length"
-#: src/libslic3r/PrintConfig.cpp:1260
+#: src/libslic3r/PrintConfig.cpp:1241
msgid ""
"Generate no less than the number of skirt loops required to consume the "
"specified amount of filament on the bottom layer. For multi-extruder "
@@ -5349,11 +6072,11 @@ msgstr ""
"specified amount of filament on the bottom layer. For multi-extruder "
"machines, this minimum applies to each extruder."
-#: src/libslic3r/PrintConfig.cpp:1270
+#: src/libslic3r/PrintConfig.cpp:1250
msgid "Configuration notes"
msgstr "Configuration notes"
-#: src/libslic3r/PrintConfig.cpp:1271
+#: src/libslic3r/PrintConfig.cpp:1251
msgid ""
"You can put here your personal notes. This text will be added to the G-code "
"header comments."
@@ -5361,21 +6084,21 @@ msgstr ""
"You can put here your personal notes. This text will be added to the G-code "
"header comments."
-#: src/libslic3r/PrintConfig.cpp:1281
+#: src/libslic3r/PrintConfig.cpp:1260
msgid "Nozzle diameter"
msgstr "Nozzle diameter"
-#: src/libslic3r/PrintConfig.cpp:1282
+#: src/libslic3r/PrintConfig.cpp:1261
msgid ""
"This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)"
msgstr ""
"This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)"
-#: src/libslic3r/PrintConfig.cpp:1288
+#: src/libslic3r/PrintConfig.cpp:1266
msgid "Host Type"
msgstr "Host Type"
-#: src/libslic3r/PrintConfig.cpp:1289
+#: src/libslic3r/PrintConfig.cpp:1267
msgid ""
"Slic3r can upload G-code files to a printer host. This field must contain "
"the kind of the host."
@@ -5383,35 +6106,11 @@ msgstr ""
"Slic3r can upload G-code files to a printer host. This field must contain "
"the kind of the host."
-#: src/libslic3r/PrintConfig.cpp:1301
-msgid "API Key / Password"
-msgstr "API Key / Password"
-
-#: src/libslic3r/PrintConfig.cpp:1302
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the API Key or the password required for authentication."
-msgstr ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the API Key or the password required for authentication."
-
-#: src/libslic3r/PrintConfig.cpp:1317
-msgid "Hostname, IP or URL"
-msgstr "Hostname, IP or URL"
-
-#: src/libslic3r/PrintConfig.cpp:1318
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the hostname, IP address or URL of the printer host instance."
-msgstr ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the hostname, IP address or URL of the printer host instance."
-
-#: src/libslic3r/PrintConfig.cpp:1325
+#: src/libslic3r/PrintConfig.cpp:1278
msgid "Only retract when crossing perimeters"
msgstr "Only retract when crossing perimeters"
-#: src/libslic3r/PrintConfig.cpp:1326
+#: src/libslic3r/PrintConfig.cpp:1279
msgid ""
"Disables retraction when the travel path does not exceed the upper layer's "
"perimeters (and thus any ooze will be probably invisible)."
@@ -5419,7 +6118,7 @@ msgstr ""
"Disables retraction when the travel path does not exceed the upper layer's "
"perimeters (and thus any ooze will be probably invisible)."
-#: src/libslic3r/PrintConfig.cpp:1334
+#: src/libslic3r/PrintConfig.cpp:1286
msgid ""
"This option will drop the temperature of the inactive extruders to prevent "
"oozing. It will enable a tall skirt automatically and move extruders outside "
@@ -5429,11 +6128,11 @@ msgstr ""
"oozing. It will enable a tall skirt automatically and move extruders outside "
"such skirt when changing temperatures."
-#: src/libslic3r/PrintConfig.cpp:1342
+#: src/libslic3r/PrintConfig.cpp:1293
msgid "Output filename format"
msgstr "Output filename format"
-#: src/libslic3r/PrintConfig.cpp:1343
+#: src/libslic3r/PrintConfig.cpp:1294
msgid ""
"You can use all configuration options as variables inside this template. For "
"example: [layer_height], [fill_density] etc. You can also use [timestamp], "
@@ -5445,11 +6144,11 @@ msgstr ""
"[year], [month], [day], [hour], [minute], [second], [version], "
"[input_filename], [input_filename_base]."
-#: src/libslic3r/PrintConfig.cpp:1353
+#: src/libslic3r/PrintConfig.cpp:1303
msgid "Detect bridging perimeters"
msgstr "Detect bridging perimeters"
-#: src/libslic3r/PrintConfig.cpp:1355
+#: src/libslic3r/PrintConfig.cpp:1305
msgid ""
"Experimental option to adjust flow for overhangs (bridge flow will be used), "
"to apply bridge speed to them and enable fan."
@@ -5457,11 +6156,11 @@ msgstr ""
"Experimental option to adjust flow for overhangs (bridge flow will be used), "
"to apply bridge speed to them and enable fan."
-#: src/libslic3r/PrintConfig.cpp:1362
+#: src/libslic3r/PrintConfig.cpp:1311
msgid "Filament parking position"
msgstr "Filament parking position"
-#: src/libslic3r/PrintConfig.cpp:1363
+#: src/libslic3r/PrintConfig.cpp:1312
msgid ""
"Distance of the extruder tip from the position where the filament is parked "
"when unloaded. This should match the value in printer firmware. "
@@ -5469,11 +6168,11 @@ msgstr ""
"Distance of the extruder tip from the position where the filament is parked "
"when unloaded. This should match the value in printer firmware. "
-#: src/libslic3r/PrintConfig.cpp:1372
+#: src/libslic3r/PrintConfig.cpp:1320
msgid "Extra loading distance"
msgstr "Extra loading distance"
-#: src/libslic3r/PrintConfig.cpp:1373
+#: src/libslic3r/PrintConfig.cpp:1321
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 "
@@ -5485,12 +6184,12 @@ msgstr ""
"positive, it is loaded further, if negative, the loading move is shorter "
"than unloading. "
-#: src/libslic3r/PrintConfig.cpp:1382 src/libslic3r/PrintConfig.cpp:1402
-#: src/libslic3r/PrintConfig.cpp:1415 src/libslic3r/PrintConfig.cpp:1425
+#: src/libslic3r/PrintConfig.cpp:1329 src/libslic3r/PrintConfig.cpp:1347
+#: src/libslic3r/PrintConfig.cpp:1359 src/libslic3r/PrintConfig.cpp:1369
msgid "Perimeters"
msgstr "Perimeters"
-#: src/libslic3r/PrintConfig.cpp:1383
+#: src/libslic3r/PrintConfig.cpp:1330
msgid ""
"This is the acceleration your printer will use for perimeters. A high value "
"like 9000 usually gives good results if your hardware is up to the job. Set "
@@ -5500,17 +6199,17 @@ msgstr ""
"like 9000 usually gives good results if your hardware is up to the job. Set "
"zero to disable acceleration control for perimeters."
-#: src/libslic3r/PrintConfig.cpp:1392
+#: src/libslic3r/PrintConfig.cpp:1338
msgid "Perimeter extruder"
msgstr "Perimeter extruder"
-#: src/libslic3r/PrintConfig.cpp:1394
+#: src/libslic3r/PrintConfig.cpp:1340
msgid ""
"The extruder to use when printing perimeters and brim. First extruder is 1."
msgstr ""
"The extruder to use when printing perimeters and brim. First extruder is 1."
-#: src/libslic3r/PrintConfig.cpp:1404
+#: src/libslic3r/PrintConfig.cpp:1349
msgid ""
"Set this to a non-zero value to set a manual extrusion width for perimeters. "
"You may want to use thinner extrudates to get more accurate surfaces. If "
@@ -5524,13 +6223,13 @@ msgstr ""
"nozzle diameter will be used. If expressed as percentage (for example 200%) "
"it will be computed over layer height."
-#: src/libslic3r/PrintConfig.cpp:1417
+#: src/libslic3r/PrintConfig.cpp:1361
msgid ""
"Speed for perimeters (contours, aka vertical shells). Set to zero for auto."
msgstr ""
"Speed for perimeters (contours, aka vertical shells). Set to zero for auto."
-#: src/libslic3r/PrintConfig.cpp:1427
+#: src/libslic3r/PrintConfig.cpp:1371
msgid ""
"This option sets the number of perimeters to generate for each layer. Note "
"that Slic3r may increase this number automatically when it detects sloping "
@@ -5542,11 +6241,11 @@ msgstr ""
"surfaces which benefit from a higher number of perimeters if the Extra "
"Perimeters option is enabled."
-#: src/libslic3r/PrintConfig.cpp:1431
+#: src/libslic3r/PrintConfig.cpp:1375
msgid "(minimum)"
msgstr "(minimum)"
-#: src/libslic3r/PrintConfig.cpp:1439
+#: src/libslic3r/PrintConfig.cpp:1383
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. "
@@ -5560,35 +6259,35 @@ msgstr ""
"argument, and they can access the Slic3r config settings by reading "
"environment variables."
-#: src/libslic3r/PrintConfig.cpp:1452
+#: src/libslic3r/PrintConfig.cpp:1395
msgid "Printer type"
msgstr "Printer type"
-#: src/libslic3r/PrintConfig.cpp:1453
+#: src/libslic3r/PrintConfig.cpp:1396
msgid "Type of the printer."
msgstr "Type of the printer."
-#: src/libslic3r/PrintConfig.cpp:1457
+#: src/libslic3r/PrintConfig.cpp:1401
msgid "Printer notes"
msgstr "Printer notes"
-#: src/libslic3r/PrintConfig.cpp:1458
+#: src/libslic3r/PrintConfig.cpp:1402
msgid "You can put your notes regarding the printer here."
msgstr "You can put your notes regarding the printer here."
-#: src/libslic3r/PrintConfig.cpp:1467
+#: src/libslic3r/PrintConfig.cpp:1410
msgid "Printer vendor"
msgstr "Printer vendor"
-#: src/libslic3r/PrintConfig.cpp:1468
+#: src/libslic3r/PrintConfig.cpp:1411
msgid "Name of the printer vendor."
msgstr "Name of the printer vendor."
-#: src/libslic3r/PrintConfig.cpp:1472
+#: src/libslic3r/PrintConfig.cpp:1416
msgid "Printer variant"
msgstr "Printer variant"
-#: src/libslic3r/PrintConfig.cpp:1473
+#: src/libslic3r/PrintConfig.cpp:1417
msgid ""
"Name of the printer variant. For example, the printer variants may be "
"differentiated by a nozzle diameter."
@@ -5596,11 +6295,11 @@ msgstr ""
"Name of the printer variant. For example, the printer variants may be "
"differentiated by a nozzle diameter."
-#: src/libslic3r/PrintConfig.cpp:1483
+#: src/libslic3r/PrintConfig.cpp:1430
msgid "Raft layers"
msgstr "Raft layers"
-#: src/libslic3r/PrintConfig.cpp:1485
+#: src/libslic3r/PrintConfig.cpp:1432
msgid ""
"The object will be raised by this number of layers, and support material "
"will be generated under it."
@@ -5608,11 +6307,11 @@ msgstr ""
"The object will be raised by this number of layers, and support material "
"will be generated under it."
-#: src/libslic3r/PrintConfig.cpp:1494
+#: src/libslic3r/PrintConfig.cpp:1440
msgid "Resolution"
msgstr "Resolution"
-#: src/libslic3r/PrintConfig.cpp:1495
+#: src/libslic3r/PrintConfig.cpp:1441
msgid ""
"Minimum detail resolution, used to simplify the input file for speeding up "
"the slicing job and reducing memory usage. High-resolution models often "
@@ -5624,21 +6323,21 @@ msgstr ""
"carry more detail than printers can render. Set to zero to disable any "
"simplification and use full resolution from input."
-#: src/libslic3r/PrintConfig.cpp:1506
+#: src/libslic3r/PrintConfig.cpp:1451
msgid "Minimum travel after retraction"
msgstr "Minimum travel after retraction"
-#: src/libslic3r/PrintConfig.cpp:1507
+#: src/libslic3r/PrintConfig.cpp:1452
msgid ""
"Retraction is not triggered when travel moves are shorter than this length."
msgstr ""
"Retraction is not triggered when travel moves are shorter than this length."
-#: src/libslic3r/PrintConfig.cpp:1514
+#: src/libslic3r/PrintConfig.cpp:1458
msgid "Retract amount before wipe"
msgstr "Retract amount before wipe"
-#: src/libslic3r/PrintConfig.cpp:1515
+#: src/libslic3r/PrintConfig.cpp:1459
msgid ""
"With bowden extruders, it may be wise to do some amount of quick retract "
"before doing the wipe movement."
@@ -5646,23 +6345,23 @@ msgstr ""
"With bowden extruders, it may be wise to do some amount of quick retract "
"before doing the wipe movement."
-#: src/libslic3r/PrintConfig.cpp:1523
+#: src/libslic3r/PrintConfig.cpp:1466
msgid "Retract on layer change"
msgstr "Retract on layer change"
-#: src/libslic3r/PrintConfig.cpp:1524
+#: src/libslic3r/PrintConfig.cpp:1467
msgid "This flag enforces a retraction whenever a Z move is done."
msgstr "This flag enforces a retraction whenever a Z move is done."
-#: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:1539
+#: src/libslic3r/PrintConfig.cpp:1472 src/libslic3r/PrintConfig.cpp:1480
msgid "Length"
msgstr "Length"
-#: src/libslic3r/PrintConfig.cpp:1531
+#: src/libslic3r/PrintConfig.cpp:1473
msgid "Retraction Length"
msgstr "Retraction Length"
-#: src/libslic3r/PrintConfig.cpp:1532
+#: src/libslic3r/PrintConfig.cpp:1474
msgid ""
"When retraction is triggered, filament is pulled back by the specified "
"amount (the length is measured on raw filament, before it enters the "
@@ -5672,15 +6371,15 @@ msgstr ""
"amount (the length is measured on raw filament, before it enters the "
"extruder)."
-#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1544
+#: src/libslic3r/PrintConfig.cpp:1476 src/libslic3r/PrintConfig.cpp:1485
msgid "mm (zero to disable)"
msgstr "mm (zero to disable)"
-#: src/libslic3r/PrintConfig.cpp:1540
+#: src/libslic3r/PrintConfig.cpp:1481
msgid "Retraction Length (Toolchange)"
msgstr "Retraction Length (Toolchange)"
-#: src/libslic3r/PrintConfig.cpp:1541
+#: src/libslic3r/PrintConfig.cpp:1482
msgid ""
"When retraction is triggered before changing tool, filament is pulled back "
"by the specified amount (the length is measured on raw filament, before it "
@@ -5690,11 +6389,11 @@ msgstr ""
"by the specified amount (the length is measured on raw filament, before it "
"enters the extruder)."
-#: src/libslic3r/PrintConfig.cpp:1550
+#: src/libslic3r/PrintConfig.cpp:1490
msgid "Lift Z"
msgstr "Lift Z"
-#: src/libslic3r/PrintConfig.cpp:1551
+#: src/libslic3r/PrintConfig.cpp:1491
msgid ""
"If you set this to a positive value, Z is quickly raised every time a "
"retraction is triggered. When using multiple extruders, only the setting for "
@@ -5704,15 +6403,15 @@ msgstr ""
"retraction is triggered. When using multiple extruders, only the setting for "
"the first extruder will be considered."
-#: src/libslic3r/PrintConfig.cpp:1559
+#: src/libslic3r/PrintConfig.cpp:1498
msgid "Above Z"
msgstr "Above Z"
-#: src/libslic3r/PrintConfig.cpp:1560
+#: src/libslic3r/PrintConfig.cpp:1499
msgid "Only lift Z above"
msgstr "Only lift Z above"
-#: src/libslic3r/PrintConfig.cpp:1561
+#: src/libslic3r/PrintConfig.cpp:1500
msgid ""
"If you set this to a positive value, Z lift will only take place above the "
"specified absolute Z. You can tune this setting for skipping lift on the "
@@ -5722,15 +6421,15 @@ msgstr ""
"specified absolute Z. You can tune this setting for skipping lift on the "
"first layers."
-#: src/libslic3r/PrintConfig.cpp:1569
+#: src/libslic3r/PrintConfig.cpp:1507
msgid "Below Z"
msgstr "Below Z"
-#: src/libslic3r/PrintConfig.cpp:1570
+#: src/libslic3r/PrintConfig.cpp:1508
msgid "Only lift Z below"
msgstr "Only lift Z below"
-#: src/libslic3r/PrintConfig.cpp:1571
+#: src/libslic3r/PrintConfig.cpp:1509
msgid ""
"If you set this to a positive value, Z lift will only take place below the "
"specified absolute Z. You can tune this setting for limiting lift to the "
@@ -5740,11 +6439,11 @@ msgstr ""
"specified absolute Z. You can tune this setting for limiting lift to the "
"first layers."
-#: src/libslic3r/PrintConfig.cpp:1580 src/libslic3r/PrintConfig.cpp:1589
+#: src/libslic3r/PrintConfig.cpp:1517 src/libslic3r/PrintConfig.cpp:1525
msgid "Extra length on restart"
msgstr "Extra length on restart"
-#: src/libslic3r/PrintConfig.cpp:1581
+#: src/libslic3r/PrintConfig.cpp:1518
msgid ""
"When the retraction is compensated after the travel move, the extruder will "
"push this additional amount of filament. This setting is rarely needed."
@@ -5752,7 +6451,7 @@ msgstr ""
"When the retraction is compensated after the travel move, the extruder will "
"push this additional amount of filament. This setting is rarely needed."
-#: src/libslic3r/PrintConfig.cpp:1590
+#: src/libslic3r/PrintConfig.cpp:1526
msgid ""
"When the retraction is compensated after changing tool, the extruder will "
"push this additional amount of filament."
@@ -5760,19 +6459,19 @@ msgstr ""
"When the retraction is compensated after changing tool, the extruder will "
"push this additional amount of filament."
-#: src/libslic3r/PrintConfig.cpp:1598 src/libslic3r/PrintConfig.cpp:1599
+#: src/libslic3r/PrintConfig.cpp:1533 src/libslic3r/PrintConfig.cpp:1534
msgid "Retraction Speed"
msgstr "Retraction Speed"
-#: src/libslic3r/PrintConfig.cpp:1600
+#: src/libslic3r/PrintConfig.cpp:1535
msgid "The speed for retractions (it only applies to the extruder motor)."
msgstr "The speed for retractions (it only applies to the extruder motor)."
-#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1608
+#: src/libslic3r/PrintConfig.cpp:1541 src/libslic3r/PrintConfig.cpp:1542
msgid "Deretraction Speed"
msgstr "Deretraction Speed"
-#: src/libslic3r/PrintConfig.cpp:1609
+#: src/libslic3r/PrintConfig.cpp:1543
msgid ""
"The speed for loading of a filament into extruder after retraction (it only "
"applies to the extruder motor). If left to zero, the retraction speed is "
@@ -5782,71 +6481,67 @@ msgstr ""
"applies to the extruder motor). If left to zero, the retraction speed is "
"used."
-#: src/libslic3r/PrintConfig.cpp:1617
+#: src/libslic3r/PrintConfig.cpp:1550
msgid "Seam position"
msgstr "Seam position"
-#: src/libslic3r/PrintConfig.cpp:1619
+#: src/libslic3r/PrintConfig.cpp:1552
msgid "Position of perimeters starting points."
msgstr "Position of perimeters starting points."
-#: src/libslic3r/PrintConfig.cpp:1626
+#: src/libslic3r/PrintConfig.cpp:1558
msgid "Random"
msgstr "Random"
-#: src/libslic3r/PrintConfig.cpp:1627
+#: src/libslic3r/PrintConfig.cpp:1559
msgid "Nearest"
msgstr "Nearest"
-#: src/libslic3r/PrintConfig.cpp:1628
+#: src/libslic3r/PrintConfig.cpp:1560
msgid "Aligned"
msgstr "Aligned"
-#: src/libslic3r/PrintConfig.cpp:1629
-msgid "Rear"
-msgstr "Rear"
-
-#: src/libslic3r/PrintConfig.cpp:1636
+#: src/libslic3r/PrintConfig.cpp:1568
msgid "Direction"
msgstr "Direction"
-#: src/libslic3r/PrintConfig.cpp:1638
+#: src/libslic3r/PrintConfig.cpp:1570
msgid "Preferred direction of the seam"
msgstr "Preferred direction of the seam"
-#: src/libslic3r/PrintConfig.cpp:1639
+#: src/libslic3r/PrintConfig.cpp:1571
msgid "Seam preferred direction"
msgstr "Seam preferred direction"
-#: src/libslic3r/PrintConfig.cpp:1647
+#: src/libslic3r/PrintConfig.cpp:1578
msgid "Jitter"
msgstr "Jitter"
-#: src/libslic3r/PrintConfig.cpp:1649
+#: src/libslic3r/PrintConfig.cpp:1580
msgid "Seam preferred direction jitter"
msgstr "Seam preferred direction jitter"
-#: src/libslic3r/PrintConfig.cpp:1650
+#: src/libslic3r/PrintConfig.cpp:1581
msgid "Preferred direction of the seam - jitter"
msgstr "Preferred direction of the seam - jitter"
-#: src/libslic3r/PrintConfig.cpp:1661
+#: src/libslic3r/PrintConfig.cpp:1591
msgid "USB/serial port for printer connection."
msgstr "USB/serial port for printer connection."
-#: src/libslic3r/PrintConfig.cpp:1669
+#: src/libslic3r/PrintConfig.cpp:1598
msgid "Serial port speed"
msgstr "Serial port speed"
-#: src/libslic3r/PrintConfig.cpp:1670
+#: src/libslic3r/PrintConfig.cpp:1599
msgid "Speed (baud) of USB/serial port for printer connection."
msgstr "Speed (baud) of USB/serial port for printer connection."
-#: src/libslic3r/PrintConfig.cpp:1679
+#: src/libslic3r/PrintConfig.cpp:1608
msgid "Distance from object"
msgstr "Distance from object"
-#: src/libslic3r/PrintConfig.cpp:1680
+#: src/libslic3r/PrintConfig.cpp:1609
msgid ""
"Distance between skirt and object(s). Set this to zero to attach the skirt "
"to the object(s) and get a brim for better adhesion."
@@ -5854,11 +6549,11 @@ msgstr ""
"Distance between skirt and object(s). Set this to zero to attach the skirt "
"to the object(s) and get a brim for better adhesion."
-#: src/libslic3r/PrintConfig.cpp:1688
+#: src/libslic3r/PrintConfig.cpp:1616
msgid "Skirt height"
msgstr "Skirt height"
-#: src/libslic3r/PrintConfig.cpp:1689
+#: src/libslic3r/PrintConfig.cpp:1617
msgid ""
"Height of skirt expressed in layers. Set this to a tall value to use skirt "
"as a shield against drafts."
@@ -5866,15 +6561,15 @@ msgstr ""
"Height of skirt expressed in layers. Set this to a tall value to use skirt "
"as a shield against drafts."
-#: src/libslic3r/PrintConfig.cpp:1697
+#: src/libslic3r/PrintConfig.cpp:1624
msgid "Loops (minimum)"
msgstr "Loops (minimum)"
-#: src/libslic3r/PrintConfig.cpp:1698
+#: src/libslic3r/PrintConfig.cpp:1625
msgid "Skirt Loops"
msgstr "Skirt Loops"
-#: src/libslic3r/PrintConfig.cpp:1699
+#: src/libslic3r/PrintConfig.cpp:1626
msgid ""
"Number of loops for the skirt. If the Minimum Extrusion Length option is "
"set, the number of loops might be greater than the one configured here. Set "
@@ -5884,11 +6579,11 @@ msgstr ""
"set, the number of loops might be greater than the one configured here. Set "
"this to zero to disable skirt completely."
-#: src/libslic3r/PrintConfig.cpp:1708
+#: src/libslic3r/PrintConfig.cpp:1634
msgid "Slow down if layer print time is below"
msgstr "Slow down if layer print time is below"
-#: src/libslic3r/PrintConfig.cpp:1709
+#: src/libslic3r/PrintConfig.cpp:1635
msgid ""
"If layer print time is estimated below this number of seconds, print moves "
"speed will be scaled down to extend duration to this value."
@@ -5896,11 +6591,11 @@ msgstr ""
"If layer print time is estimated below this number of seconds, print moves "
"speed will be scaled down to extend duration to this value."
-#: src/libslic3r/PrintConfig.cpp:1720
+#: src/libslic3r/PrintConfig.cpp:1645
msgid "Small perimeters"
msgstr "Small perimeters"
-#: src/libslic3r/PrintConfig.cpp:1722
+#: src/libslic3r/PrintConfig.cpp:1647
msgid ""
"This separate setting will affect the speed of perimeters having radius <= "
"6.5mm (usually holes). If expressed as percentage (for example: 80%) it will "
@@ -5910,11 +6605,11 @@ msgstr ""
"6.5mm (usually holes). If expressed as percentage (for example: 80%) it will "
"be calculated on the perimeters speed setting above. Set to zero for auto."
-#: src/libslic3r/PrintConfig.cpp:1732
+#: src/libslic3r/PrintConfig.cpp:1657
msgid "Solid infill threshold area"
msgstr "Solid infill threshold area"
-#: src/libslic3r/PrintConfig.cpp:1734
+#: src/libslic3r/PrintConfig.cpp:1659
msgid ""
"Force solid infill for regions having a smaller area than the specified "
"threshold."
@@ -5922,23 +6617,23 @@ msgstr ""
"Force solid infill for regions having a smaller area than the specified "
"threshold."
-#: src/libslic3r/PrintConfig.cpp:1735
+#: src/libslic3r/PrintConfig.cpp:1660
msgid "mm²"
msgstr "mm²"
-#: src/libslic3r/PrintConfig.cpp:1742
+#: src/libslic3r/PrintConfig.cpp:1666
msgid "Solid infill extruder"
msgstr "Solid infill extruder"
-#: src/libslic3r/PrintConfig.cpp:1744
+#: src/libslic3r/PrintConfig.cpp:1668
msgid "The extruder to use when printing solid infill."
msgstr "The extruder to use when printing solid infill."
-#: src/libslic3r/PrintConfig.cpp:1751
+#: src/libslic3r/PrintConfig.cpp:1674
msgid "Solid infill every"
msgstr "Solid infill every"
-#: src/libslic3r/PrintConfig.cpp:1753
+#: src/libslic3r/PrintConfig.cpp:1676
msgid ""
"This feature allows to force a solid layer every given number of layers. "
"Zero to disable. You can set this to any value (for example 9999); Slic3r "
@@ -5950,7 +6645,7 @@ msgstr ""
"will automatically choose the maximum possible number of layers to combine "
"according to nozzle diameter and layer height."
-#: src/libslic3r/PrintConfig.cpp:1766
+#: src/libslic3r/PrintConfig.cpp:1688
msgid ""
"Set this to a non-zero value to set a manual extrusion width for infill for "
"solid surfaces. If left zero, default extrusion width will be used if set, "
@@ -5962,7 +6657,7 @@ msgstr ""
"otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
"(for example 90%) it will be computed over layer height."
-#: src/libslic3r/PrintConfig.cpp:1777
+#: src/libslic3r/PrintConfig.cpp:1698
msgid ""
"Speed for printing solid regions (top/bottom/internal horizontal shells). "
"This can be expressed as a percentage (for example: 80%) over the default "
@@ -5972,15 +6667,15 @@ msgstr ""
"This can be expressed as a percentage (for example: 80%) over the default "
"infill speed above. Set to zero for auto."
-#: src/libslic3r/PrintConfig.cpp:1789
+#: src/libslic3r/PrintConfig.cpp:1710
msgid "Number of solid layers to generate on top and bottom surfaces."
msgstr "Number of solid layers to generate on top and bottom surfaces."
-#: src/libslic3r/PrintConfig.cpp:1796
+#: src/libslic3r/PrintConfig.cpp:1716
msgid "Spiral vase"
msgstr "Spiral vase"
-#: src/libslic3r/PrintConfig.cpp:1797
+#: src/libslic3r/PrintConfig.cpp:1717
msgid ""
"This feature will raise Z gradually while printing a single-walled object in "
"order to remove any visible seam. This option requires a single perimeter, "
@@ -5994,11 +6689,11 @@ msgstr ""
"any number of bottom solid layers as well as skirt/brim loops. It won't work "
"when printing more than an object."
-#: src/libslic3r/PrintConfig.cpp:1806
+#: src/libslic3r/PrintConfig.cpp:1725
msgid "Temperature variation"
msgstr "Temperature variation"
-#: src/libslic3r/PrintConfig.cpp:1807
+#: src/libslic3r/PrintConfig.cpp:1726
msgid ""
"Temperature difference to be applied when an extruder is not active. Enables "
"a full-height \"sacrificial\" skirt on which the nozzles are periodically "
@@ -6008,7 +6703,7 @@ msgstr ""
"a full-height \"sacrificial\" skirt on which the nozzles are periodically "
"wiped."
-#: src/libslic3r/PrintConfig.cpp:1818
+#: src/libslic3r/PrintConfig.cpp:1736
msgid ""
"This start procedure is inserted at the beginning, after bed has reached the "
"target temperature and extruder just started heating, and before extruder "
@@ -6026,7 +6721,7 @@ msgstr ""
"you can use placeholder variables for all Slic3r settings, so you can put a "
"\"M109 S[first_layer_temperature]\" command wherever you want."
-#: src/libslic3r/PrintConfig.cpp:1834
+#: src/libslic3r/PrintConfig.cpp:1751
msgid ""
"This start procedure is inserted at the beginning, after any printer start "
"gcode. This is used to override settings for a specific filament. If Slic3r "
@@ -6046,19 +6741,19 @@ msgstr ""
"S[first_layer_temperature]\" command wherever you want. If you have multiple "
"extruders, the gcode is processed in extruder order."
-#: src/libslic3r/PrintConfig.cpp:1850
+#: src/libslic3r/PrintConfig.cpp:1766
msgid "Single Extruder Multi Material"
msgstr "Single Extruder Multi Material"
-#: src/libslic3r/PrintConfig.cpp:1851
+#: src/libslic3r/PrintConfig.cpp:1767
msgid "The printer multiplexes filaments into a single hot end."
msgstr "The printer multiplexes filaments into a single hot end."
-#: src/libslic3r/PrintConfig.cpp:1857
+#: src/libslic3r/PrintConfig.cpp:1772
msgid "Prime all printing extruders"
msgstr "Prime all printing extruders"
-#: src/libslic3r/PrintConfig.cpp:1858
+#: src/libslic3r/PrintConfig.cpp:1773
msgid ""
"If enabled, all printing extruders will be primed at the front edge of the "
"print bed at the start of the print."
@@ -6066,19 +6761,19 @@ msgstr ""
"If enabled, all printing extruders will be primed at the front edge of the "
"print bed at the start of the print."
-#: src/libslic3r/PrintConfig.cpp:1864
+#: src/libslic3r/PrintConfig.cpp:1778
msgid "Generate support material"
msgstr "Generate support material"
-#: src/libslic3r/PrintConfig.cpp:1866
+#: src/libslic3r/PrintConfig.cpp:1780
msgid "Enable support material generation."
msgstr "Enable support material generation."
-#: src/libslic3r/PrintConfig.cpp:1871
+#: src/libslic3r/PrintConfig.cpp:1784
msgid "Auto generated supports"
msgstr "Auto generated supports"
-#: src/libslic3r/PrintConfig.cpp:1873
+#: src/libslic3r/PrintConfig.cpp:1786
msgid ""
"If checked, supports will be generated automatically based on the overhang "
"threshold value. If unchecked, supports will be generated inside the "
@@ -6088,11 +6783,11 @@ msgstr ""
"threshold value. If unchecked, supports will be generated inside the "
"\"Support Enforcer\" volumes only."
-#: src/libslic3r/PrintConfig.cpp:1880
+#: src/libslic3r/PrintConfig.cpp:1792
msgid "XY separation between an object and its support"
msgstr "XY separation between an object and its support"
-#: src/libslic3r/PrintConfig.cpp:1882
+#: src/libslic3r/PrintConfig.cpp:1794
msgid ""
"XY separation between an object and its support. If expressed as percentage "
"(for example 50%), it will be calculated over external perimeter width."
@@ -6100,11 +6795,11 @@ msgstr ""
"XY separation between an object and its support. If expressed as percentage "
"(for example 50%), it will be calculated over external perimeter width."
-#: src/libslic3r/PrintConfig.cpp:1893
+#: src/libslic3r/PrintConfig.cpp:1804
msgid "Pattern angle"
msgstr "Pattern angle"
-#: src/libslic3r/PrintConfig.cpp:1895
+#: src/libslic3r/PrintConfig.cpp:1806
msgid ""
"Use this setting to rotate the support material pattern on the horizontal "
"plane."
@@ -6112,7 +6807,7 @@ msgstr ""
"Use this setting to rotate the support material pattern on the horizontal "
"plane."
-#: src/libslic3r/PrintConfig.cpp:1906
+#: src/libslic3r/PrintConfig.cpp:1816 src/libslic3r/PrintConfig.cpp:2421
msgid ""
"Only create support if it lies on a build plate. Don't create support on a "
"print."
@@ -6120,11 +6815,11 @@ msgstr ""
"Only create support if it lies on a build plate. Don't create support on a "
"print."
-#: src/libslic3r/PrintConfig.cpp:1913
+#: src/libslic3r/PrintConfig.cpp:1822
msgid "Contact Z distance"
msgstr "Contact Z distance"
-#: src/libslic3r/PrintConfig.cpp:1915
+#: src/libslic3r/PrintConfig.cpp:1824
msgid ""
"The vertical distance between object and support material interface. Setting "
"this to 0 will also prevent Slic3r from using bridge flow and speed for the "
@@ -6134,19 +6829,19 @@ msgstr ""
"this to 0 will also prevent Slic3r from using bridge flow and speed for the "
"first object layer."
-#: src/libslic3r/PrintConfig.cpp:1923
+#: src/libslic3r/PrintConfig.cpp:1831
msgid "soluble"
msgstr "soluble"
-#: src/libslic3r/PrintConfig.cpp:1924
+#: src/libslic3r/PrintConfig.cpp:1832
msgid "detachable"
msgstr "detachable"
-#: src/libslic3r/PrintConfig.cpp:1929
+#: src/libslic3r/PrintConfig.cpp:1837
msgid "Enforce support for the first"
msgstr "Enforce support for the first"
-#: src/libslic3r/PrintConfig.cpp:1931
+#: src/libslic3r/PrintConfig.cpp:1839
msgid ""
"Generate support material for the specified number of layers counting from "
"bottom, regardless of whether normal support material is enabled or not and "
@@ -6158,15 +6853,15 @@ msgstr ""
"regardless of any angle threshold. This is useful for getting more adhesion "
"of objects having a very thin or poor footprint on the build plate."
-#: src/libslic3r/PrintConfig.cpp:1937
+#: src/libslic3r/PrintConfig.cpp:1844
msgid "Enforce support for the first n layers"
msgstr "Enforce support for the first n layers"
-#: src/libslic3r/PrintConfig.cpp:1943
+#: src/libslic3r/PrintConfig.cpp:1850
msgid "Support material/raft/skirt extruder"
msgstr "Support material/raft/skirt extruder"
-#: src/libslic3r/PrintConfig.cpp:1945
+#: src/libslic3r/PrintConfig.cpp:1852
msgid ""
"The extruder to use when printing support material, raft and skirt (1+, 0 to "
"use the current extruder to minimize tool changes)."
@@ -6174,7 +6869,7 @@ msgstr ""
"The extruder to use when printing support material, raft and skirt (1+, 0 to "
"use the current extruder to minimize tool changes)."
-#: src/libslic3r/PrintConfig.cpp:1955
+#: src/libslic3r/PrintConfig.cpp:1861
msgid ""
"Set this to a non-zero value to set a manual extrusion width for support "
"material. If left zero, default extrusion width will be used if set, "
@@ -6186,21 +6881,21 @@ msgstr ""
"otherwise nozzle diameter will be used. If expressed as percentage (for "
"example 90%) it will be computed over layer height."
-#: src/libslic3r/PrintConfig.cpp:1964
+#: src/libslic3r/PrintConfig.cpp:1869
msgid "Interface loops"
msgstr "Interface loops"
-#: src/libslic3r/PrintConfig.cpp:1966
+#: src/libslic3r/PrintConfig.cpp:1871
msgid ""
"Cover the top contact layer of the supports with loops. Disabled by default."
msgstr ""
"Cover the top contact layer of the supports with loops. Disabled by default."
-#: src/libslic3r/PrintConfig.cpp:1972
+#: src/libslic3r/PrintConfig.cpp:1876
msgid "Support material/raft interface extruder"
msgstr "Support material/raft interface extruder"
-#: src/libslic3r/PrintConfig.cpp:1974
+#: src/libslic3r/PrintConfig.cpp:1878
msgid ""
"The extruder to use when printing support material interface (1+, 0 to use "
"the current extruder to minimize tool changes). This affects raft too."
@@ -6208,11 +6903,11 @@ msgstr ""
"The extruder to use when printing support material interface (1+, 0 to use "
"the current extruder to minimize tool changes). This affects raft too."
-#: src/libslic3r/PrintConfig.cpp:1982
+#: src/libslic3r/PrintConfig.cpp:1885
msgid "Interface layers"
msgstr "Interface layers"
-#: src/libslic3r/PrintConfig.cpp:1984
+#: src/libslic3r/PrintConfig.cpp:1887
msgid ""
"Number of interface layers to insert between the object(s) and support "
"material."
@@ -6220,15 +6915,15 @@ msgstr ""
"Number of interface layers to insert between the object(s) and support "
"material."
-#: src/libslic3r/PrintConfig.cpp:1992
+#: src/libslic3r/PrintConfig.cpp:1894
msgid "Interface pattern spacing"
msgstr "Interface pattern spacing"
-#: src/libslic3r/PrintConfig.cpp:1994
+#: src/libslic3r/PrintConfig.cpp:1896
msgid "Spacing between interface lines. Set zero to get a solid interface."
msgstr "Spacing between interface lines. Set zero to get a solid interface."
-#: src/libslic3r/PrintConfig.cpp:2004
+#: src/libslic3r/PrintConfig.cpp:1905
msgid ""
"Speed for printing support material interface layers. If expressed as "
"percentage (for example 50%) it will be calculated over support material "
@@ -6238,35 +6933,35 @@ msgstr ""
"percentage (for example 50%) it will be calculated over support material "
"speed."
-#: src/libslic3r/PrintConfig.cpp:2013
+#: src/libslic3r/PrintConfig.cpp:1914
msgid "Pattern"
msgstr "Pattern"
-#: src/libslic3r/PrintConfig.cpp:2015
+#: src/libslic3r/PrintConfig.cpp:1916
msgid "Pattern used to generate support material."
msgstr "Pattern used to generate support material."
-#: src/libslic3r/PrintConfig.cpp:2022
+#: src/libslic3r/PrintConfig.cpp:1922
msgid "Rectilinear grid"
msgstr "Rectilinear grid"
-#: src/libslic3r/PrintConfig.cpp:2028
+#: src/libslic3r/PrintConfig.cpp:1928
msgid "Pattern spacing"
msgstr "Pattern spacing"
-#: src/libslic3r/PrintConfig.cpp:2030
+#: src/libslic3r/PrintConfig.cpp:1930
msgid "Spacing between support material lines."
msgstr "Spacing between support material lines."
-#: src/libslic3r/PrintConfig.cpp:2040
+#: src/libslic3r/PrintConfig.cpp:1939
msgid "Speed for printing support material."
msgstr "Speed for printing support material."
-#: src/libslic3r/PrintConfig.cpp:2047
+#: src/libslic3r/PrintConfig.cpp:1946
msgid "Synchronize with object layers"
msgstr "Synchronize with object layers"
-#: src/libslic3r/PrintConfig.cpp:2049
+#: src/libslic3r/PrintConfig.cpp:1948
msgid ""
"Synchronize support layers with the object print layers. This is useful with "
"multi-material printers, where the extruder switch is expensive."
@@ -6274,11 +6969,11 @@ msgstr ""
"Synchronize support layers with the object print layers. This is useful with "
"multi-material printers, where the extruder switch is expensive."
-#: src/libslic3r/PrintConfig.cpp:2056
+#: src/libslic3r/PrintConfig.cpp:1954
msgid "Overhang threshold"
msgstr "Overhang threshold"
-#: src/libslic3r/PrintConfig.cpp:2058
+#: src/libslic3r/PrintConfig.cpp:1956
msgid ""
"Support material will not be generated for overhangs whose slope angle (90° "
"= vertical) is above the given threshold. In other words, this value "
@@ -6292,11 +6987,11 @@ msgstr ""
"that you can print without support material. Set to zero for automatic "
"detection (recommended)."
-#: src/libslic3r/PrintConfig.cpp:2071
+#: src/libslic3r/PrintConfig.cpp:1968
msgid "With sheath around the support"
msgstr "With sheath around the support"
-#: src/libslic3r/PrintConfig.cpp:2073
+#: src/libslic3r/PrintConfig.cpp:1970
msgid ""
"Add a sheath (a single perimeter line) around the base support. This makes "
"the support more reliable, but also more difficult to remove."
@@ -6304,7 +6999,7 @@ msgstr ""
"Add a sheath (a single perimeter line) around the base support. This makes "
"the support more reliable, but also more difficult to remove."
-#: src/libslic3r/PrintConfig.cpp:2081
+#: src/libslic3r/PrintConfig.cpp:1977
msgid ""
"Extruder temperature for layers after the first one. Set this to zero to "
"disable temperature control commands in the output."
@@ -6312,15 +7007,15 @@ msgstr ""
"Extruder temperature for layers after the first one. Set this to zero to "
"disable temperature control commands in the output."
-#: src/libslic3r/PrintConfig.cpp:2084
+#: src/libslic3r/PrintConfig.cpp:1979
msgid "Temperature"
msgstr "Temperature"
-#: src/libslic3r/PrintConfig.cpp:2090
+#: src/libslic3r/PrintConfig.cpp:1985
msgid "Detect thin walls"
msgstr "Detect thin walls"
-#: src/libslic3r/PrintConfig.cpp:2092
+#: src/libslic3r/PrintConfig.cpp:1987
msgid ""
"Detect single-width walls (parts where two extrusions don't fit and we need "
"to collapse them into a single trace)."
@@ -6328,11 +7023,11 @@ msgstr ""
"Detect single-width walls (parts where two extrusions don't fit and we need "
"to collapse them into a single trace)."
-#: src/libslic3r/PrintConfig.cpp:2099
+#: src/libslic3r/PrintConfig.cpp:1993
msgid "Threads"
msgstr "Threads"
-#: src/libslic3r/PrintConfig.cpp:2100
+#: src/libslic3r/PrintConfig.cpp:1994
msgid ""
"Threads are used to parallelize long-running tasks. Optimal threads number "
"is slightly above the number of available cores/processors."
@@ -6340,7 +7035,7 @@ msgstr ""
"Threads are used to parallelize long-running tasks. Optimal threads number "
"is slightly above the number of available cores/processors."
-#: src/libslic3r/PrintConfig.cpp:2112
+#: src/libslic3r/PrintConfig.cpp:2006
msgid ""
"This custom code is inserted right before every extruder change. Note that "
"you can use placeholder variables for all Slic3r settings as well as "
@@ -6350,7 +7045,7 @@ msgstr ""
"you can use placeholder variables for all Slic3r settings as well as "
"[previous_extruder] and [next_extruder]."
-#: src/libslic3r/PrintConfig.cpp:2125
+#: src/libslic3r/PrintConfig.cpp:2018
msgid ""
"Set this to a non-zero value to set a manual extrusion width for infill for "
"top surfaces. You may want to use thinner extrudates to fill all narrow "
@@ -6364,7 +7059,7 @@ msgstr ""
"will be used if set, otherwise nozzle diameter will be used. If expressed as "
"percentage (for example 90%) it will be computed over layer height."
-#: src/libslic3r/PrintConfig.cpp:2137
+#: src/libslic3r/PrintConfig.cpp:2029
msgid ""
"Speed for printing top solid layers (it only applies to the uppermost "
"external layers and not to their internal solid layers). You may want to "
@@ -6378,28 +7073,23 @@ msgstr ""
"percentage (for example: 80%) over the solid infill speed above. Set to zero "
"for auto."
-#: src/libslic3r/PrintConfig.cpp:2149
-msgctxt "Layers"
-msgid "Top"
-msgstr "Top"
-
-#: src/libslic3r/PrintConfig.cpp:2151
+#: src/libslic3r/PrintConfig.cpp:2043
msgid "Number of solid layers to generate on top surfaces."
msgstr "Number of solid layers to generate on top surfaces."
-#: src/libslic3r/PrintConfig.cpp:2153
+#: src/libslic3r/PrintConfig.cpp:2044
msgid "Top solid layers"
msgstr "Top solid layers"
-#: src/libslic3r/PrintConfig.cpp:2159
+#: src/libslic3r/PrintConfig.cpp:2050
msgid "Speed for travel moves (jumps between distant extrusion points)."
msgstr "Speed for travel moves (jumps between distant extrusion points)."
-#: src/libslic3r/PrintConfig.cpp:2168
+#: src/libslic3r/PrintConfig.cpp:2058
msgid "Use firmware retraction"
msgstr "Use firmware retraction"
-#: src/libslic3r/PrintConfig.cpp:2169
+#: src/libslic3r/PrintConfig.cpp:2059
msgid ""
"This experimental setting uses G10 and G11 commands to have the firmware "
"handle the retraction. This is only supported in recent Marlin."
@@ -6407,11 +7097,11 @@ msgstr ""
"This experimental setting uses G10 and G11 commands to have the firmware "
"handle the retraction. This is only supported in recent Marlin."
-#: src/libslic3r/PrintConfig.cpp:2176
+#: src/libslic3r/PrintConfig.cpp:2065
msgid "Use relative E distances"
msgstr "Use relative E distances"
-#: src/libslic3r/PrintConfig.cpp:2177
+#: src/libslic3r/PrintConfig.cpp:2066
msgid ""
"If your firmware requires relative E values, check this, otherwise leave it "
"unchecked. Most firmwares use absolute values."
@@ -6419,11 +7109,11 @@ msgstr ""
"If your firmware requires relative E values, check this, otherwise leave it "
"unchecked. Most firmwares use absolute values."
-#: src/libslic3r/PrintConfig.cpp:2184
+#: src/libslic3r/PrintConfig.cpp:2072
msgid "Use volumetric E"
msgstr "Use volumetric E"
-#: src/libslic3r/PrintConfig.cpp:2185
+#: src/libslic3r/PrintConfig.cpp:2073
msgid ""
"This experimental setting uses outputs the E values in cubic millimeters "
"instead of linear millimeters. If your firmware doesn't already know "
@@ -6439,11 +7129,11 @@ msgstr ""
"filament diameter associated to the filament selected in Slic3r. This is "
"only supported in recent Marlin."
-#: src/libslic3r/PrintConfig.cpp:2196
+#: src/libslic3r/PrintConfig.cpp:2083
msgid "Enable variable layer height feature"
msgstr "Enable variable layer height feature"
-#: src/libslic3r/PrintConfig.cpp:2197
+#: src/libslic3r/PrintConfig.cpp:2084
msgid ""
"Some printers or printer setups may have difficulties printing with a "
"variable layer height. Enabled by default."
@@ -6451,11 +7141,11 @@ msgstr ""
"Some printers or printer setups may have difficulties printing with a "
"variable layer height. Enabled by default."
-#: src/libslic3r/PrintConfig.cpp:2204
+#: src/libslic3r/PrintConfig.cpp:2090
msgid "Wipe while retracting"
msgstr "Wipe while retracting"
-#: src/libslic3r/PrintConfig.cpp:2205
+#: src/libslic3r/PrintConfig.cpp:2091
msgid ""
"This flag will move the nozzle while retracting to minimize the possible "
"blob on leaky extruders."
@@ -6463,7 +7153,7 @@ msgstr ""
"This flag will move the nozzle while retracting to minimize the possible "
"blob on leaky extruders."
-#: src/libslic3r/PrintConfig.cpp:2213
+#: src/libslic3r/PrintConfig.cpp:2098
msgid ""
"Multi material printers may need to prime or purge extruders on tool "
"changes. Extrude the excess material into the wipe tower."
@@ -6471,11 +7161,11 @@ msgstr ""
"Multi material printers may need to prime or purge extruders on tool "
"changes. Extrude the excess material into the wipe tower."
-#: src/libslic3r/PrintConfig.cpp:2220
+#: src/libslic3r/PrintConfig.cpp:2104
msgid "Purging volumes - load/unload volumes"
msgstr "Purging volumes - load/unload volumes"
-#: src/libslic3r/PrintConfig.cpp:2221
+#: src/libslic3r/PrintConfig.cpp:2105
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 "
@@ -6485,11 +7175,11 @@ msgstr ""
"wipe tower. These values are used to simplify creation of the full purging "
"volumes below. "
-#: src/libslic3r/PrintConfig.cpp:2228
+#: src/libslic3r/PrintConfig.cpp:2111
msgid "Purging volumes - matrix"
msgstr "Purging volumes - matrix"
-#: src/libslic3r/PrintConfig.cpp:2229
+#: src/libslic3r/PrintConfig.cpp:2112
msgid ""
"This matrix describes volumes (in cubic milimetres) required to purge the "
"new filament on the wipe tower for any given pair of tools. "
@@ -6497,43 +7187,43 @@ msgstr ""
"This matrix describes volumes (in cubic milimetres) required to purge the "
"new filament on the wipe tower for any given pair of tools. "
-#: src/libslic3r/PrintConfig.cpp:2239
+#: src/libslic3r/PrintConfig.cpp:2121
msgid "Position X"
msgstr "Position X"
-#: src/libslic3r/PrintConfig.cpp:2240
+#: src/libslic3r/PrintConfig.cpp:2122
msgid "X coordinate of the left front corner of a wipe tower"
msgstr "X coordinate of the left front corner of a wipe tower"
-#: src/libslic3r/PrintConfig.cpp:2247
+#: src/libslic3r/PrintConfig.cpp:2128
msgid "Position Y"
msgstr "Position Y"
-#: src/libslic3r/PrintConfig.cpp:2248
+#: src/libslic3r/PrintConfig.cpp:2129
msgid "Y coordinate of the left front corner of a wipe tower"
msgstr "Y coordinate of the left front corner of a wipe tower"
-#: src/libslic3r/PrintConfig.cpp:2256
+#: src/libslic3r/PrintConfig.cpp:2136
msgid "Width of a wipe tower"
msgstr "Width of a wipe tower"
-#: src/libslic3r/PrintConfig.cpp:2263
+#: src/libslic3r/PrintConfig.cpp:2142
msgid "Wipe tower rotation angle"
msgstr "Wipe tower rotation angle"
-#: src/libslic3r/PrintConfig.cpp:2264
+#: src/libslic3r/PrintConfig.cpp:2143
msgid "Wipe tower rotation angle with respect to x-axis "
msgstr "Wipe tower rotation angle with respect to x-axis "
-#: src/libslic3r/PrintConfig.cpp:2265
+#: src/libslic3r/PrintConfig.cpp:2144 src/libslic3r/PrintConfig.cpp:2565
msgid "degrees"
msgstr "degrees"
-#: src/libslic3r/PrintConfig.cpp:2272
+#: src/libslic3r/PrintConfig.cpp:2150
msgid "Wipe into this object's infill"
msgstr "Wipe into this object's infill"
-#: src/libslic3r/PrintConfig.cpp:2273
+#: src/libslic3r/PrintConfig.cpp:2151
msgid ""
"Purging after toolchange will done inside this object's infills. This lowers "
"the amount of waste but may result in longer print time due to additional "
@@ -6543,11 +7233,11 @@ msgstr ""
"the amount of waste but may result in longer print time due to additional "
"travel moves."
-#: src/libslic3r/PrintConfig.cpp:2281
+#: src/libslic3r/PrintConfig.cpp:2158
msgid "Wipe into this object"
msgstr "Wipe into this object"
-#: src/libslic3r/PrintConfig.cpp:2282
+#: src/libslic3r/PrintConfig.cpp:2159
msgid ""
"Object will be used to purge the nozzle after a toolchange to save material "
"that would otherwise end up in the wipe tower and decrease print time. "
@@ -6557,19 +7247,19 @@ msgstr ""
"that would otherwise end up in the wipe tower and decrease print time. "
"Colours of the objects will be mixed as a result."
-#: src/libslic3r/PrintConfig.cpp:2289
+#: src/libslic3r/PrintConfig.cpp:2165
msgid "Maximal bridging distance"
msgstr "Maximal bridging distance"
-#: src/libslic3r/PrintConfig.cpp:2290
+#: src/libslic3r/PrintConfig.cpp:2166
msgid "Maximal distance between supports on sparse infill sections. "
msgstr "Maximal distance between supports on sparse infill sections. "
-#: src/libslic3r/PrintConfig.cpp:2297
+#: src/libslic3r/PrintConfig.cpp:2172
msgid "XY Size Compensation"
msgstr "XY Size Compensation"
-#: src/libslic3r/PrintConfig.cpp:2299
+#: src/libslic3r/PrintConfig.cpp:2174
msgid ""
"The object will be grown/shrunk in the XY plane by the configured value "
"(negative = inwards, positive = outwards). This might be useful for fine-"
@@ -6579,11 +7269,11 @@ msgstr ""
"(negative = inwards, positive = outwards). This might be useful for fine-"
"tuning hole sizes."
-#: src/libslic3r/PrintConfig.cpp:2308
+#: src/libslic3r/PrintConfig.cpp:2182
msgid "Z offset"
msgstr "Z offset"
-#: src/libslic3r/PrintConfig.cpp:2309
+#: src/libslic3r/PrintConfig.cpp:2183
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 "
@@ -6595,74 +7285,39 @@ msgstr ""
"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)."
-#: src/libslic3r/PrintConfig.cpp:2319
-msgid "Bed size X"
-msgstr "Bed size X"
-
-#: src/libslic3r/PrintConfig.cpp:2320 src/libslic3r/PrintConfig.cpp:2327
-#: src/libslic3r/PrintConfig.cpp:2334 src/libslic3r/PrintConfig.cpp:2343
-#: src/libslic3r/PrintConfig.cpp:2351 src/libslic3r/PrintConfig.cpp:2359
-msgid "Dwarf"
-msgstr "Dwarf"
-
-#: src/libslic3r/PrintConfig.cpp:2326
-msgid "Bed size Y"
-msgstr "Bed size Y"
-
-#: src/libslic3r/PrintConfig.cpp:2333
-msgid "Picture resolution X"
-msgstr "Picture resolution X"
-
-#: src/libslic3r/PrintConfig.cpp:2335 src/libslic3r/PrintConfig.cpp:2344
-msgid "px"
-msgstr "px"
-
-#: src/libslic3r/PrintConfig.cpp:2342
-msgid "Picture resolution Y"
-msgstr "Picture resolution Y"
-
-#: src/libslic3r/PrintConfig.cpp:2350 src/libslic3r/PrintConfig.cpp:2430
-#: src/libslic3r/PrintConfig.cpp:2431
-msgid "Exposure time"
-msgstr "Exposure time"
-
-#: src/libslic3r/PrintConfig.cpp:2358
-msgid "Exposure time first layers"
-msgstr "Exposure time first layers"
-
-#: src/libslic3r/PrintConfig.cpp:2373
+#: src/libslic3r/PrintConfig.cpp:2200
msgid "Display width"
msgstr "Display width"
-#: src/libslic3r/PrintConfig.cpp:2374
+#: src/libslic3r/PrintConfig.cpp:2201
msgid "Width of the display"
msgstr "Width of the display"
-#: src/libslic3r/PrintConfig.cpp:2380
+#: src/libslic3r/PrintConfig.cpp:2206
msgid "Display height"
msgstr "Display height"
-#: src/libslic3r/PrintConfig.cpp:2381
+#: src/libslic3r/PrintConfig.cpp:2207
msgid "Height of the display"
msgstr "Height of the display"
-#: src/libslic3r/PrintConfig.cpp:2387
+#: src/libslic3r/PrintConfig.cpp:2212
msgid "Number of pixels in"
msgstr "Number of pixels in"
-#: src/libslic3r/PrintConfig.cpp:2389
+#: src/libslic3r/PrintConfig.cpp:2214
msgid "Number of pixels in X"
msgstr "Number of pixels in X"
-#: src/libslic3r/PrintConfig.cpp:2396
+#: src/libslic3r/PrintConfig.cpp:2220
msgid "Number of pixels in Y"
msgstr "Number of pixels in Y"
-#: src/libslic3r/PrintConfig.cpp:2402
+#: src/libslic3r/PrintConfig.cpp:2225
msgid "Display orientation"
msgstr "Display orientation"
-#: src/libslic3r/PrintConfig.cpp:2403
+#: src/libslic3r/PrintConfig.cpp:2226
msgid ""
"Set the actual LCD display orientation inside the SLA printer. Portrait mode "
"will flip the meaning of display width and height parameters and the output "
@@ -6672,91 +7327,162 @@ msgstr ""
"will flip the meaning of display width and height parameters and the output "
"images will be rotated by 90 degrees."
-#: src/libslic3r/PrintConfig.cpp:2410
+#: src/libslic3r/PrintConfig.cpp:2232
msgid "Landscape"
msgstr "Landscape"
-#: src/libslic3r/PrintConfig.cpp:2411
+#: src/libslic3r/PrintConfig.cpp:2233
msgid "Portrait"
msgstr "Portrait"
-#: src/libslic3r/PrintConfig.cpp:2415 src/libslic3r/PrintConfig.cpp:2416
+#: src/libslic3r/PrintConfig.cpp:2238
+msgid "Fast"
+msgstr "Fast"
+
+#: src/libslic3r/PrintConfig.cpp:2239
+msgid "Fast tilt"
+msgstr "Fast tilt"
+
+#: src/libslic3r/PrintConfig.cpp:2240
+msgid "Time of the fast tilt"
+msgstr "Time of the fast tilt"
+
+#: src/libslic3r/PrintConfig.cpp:2247
+msgid "Slow"
+msgstr "Slow"
+
+#: src/libslic3r/PrintConfig.cpp:2248
+msgid "Slow tilt"
+msgstr "Slow tilt"
+
+#: src/libslic3r/PrintConfig.cpp:2249
+msgid "Time of the slow tilt"
+msgstr "Time of the slow tilt"
+
+#: src/libslic3r/PrintConfig.cpp:2256
+msgid "Area fill"
+msgstr "Area fill"
+
+#: src/libslic3r/PrintConfig.cpp:2257
+msgid ""
+"The percentage of the bed area. \n"
+"If the print area exceeds the specified value, \n"
+"then a slow tilt will be used, otherwise - a fast tilt"
+msgstr ""
+"The percentage of the bed area. \n"
+"If the print area exceeds the specified value, \n"
+"then a slow tilt will be used, otherwise - a fast tilt"
+
+#: src/libslic3r/PrintConfig.cpp:2264 src/libslic3r/PrintConfig.cpp:2265
+#: src/libslic3r/PrintConfig.cpp:2266
msgid "Printer scaling correction"
msgstr "Printer scaling correction"
-#: src/libslic3r/PrintConfig.cpp:2422 src/libslic3r/PrintConfig.cpp:2423
+#: src/libslic3r/PrintConfig.cpp:2272 src/libslic3r/PrintConfig.cpp:2273
+msgid "Printer absolute correction"
+msgstr "Printer absolute correction"
+
+#: src/libslic3r/PrintConfig.cpp:2274
+msgid ""
+"Will inflate or deflate the sliced 2D polygons according to the sign of the "
+"correction."
+msgstr ""
+"Will inflate or deflate the sliced 2D polygons according to the sign of the "
+"correction."
+
+#: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2281
+msgid "Printer gamma correction"
+msgstr "Printer gamma correction"
+
+#: src/libslic3r/PrintConfig.cpp:2282
+msgid "This will apply a gamm correction to the rasterized 2D polygons."
+msgstr "This will apply a gamm correction to the rasterized 2D polygons."
+
+#: src/libslic3r/PrintConfig.cpp:2291 src/libslic3r/PrintConfig.cpp:2292
msgid "Initial layer height"
msgstr "Initial layer height"
-#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439
+#: src/libslic3r/PrintConfig.cpp:2298
+msgid "Faded layers"
+msgstr "Faded layers"
+
+#: src/libslic3r/PrintConfig.cpp:2299
+msgid ""
+"Number of the layers needed for the exposure time fade from initial exposure "
+"time to the exposure time"
+msgstr ""
+"Number of the layers needed for the exposure time fade from initial exposure "
+"time to the exposure time"
+
+#: src/libslic3r/PrintConfig.cpp:2306 src/libslic3r/PrintConfig.cpp:2307
+msgid "Exposure time"
+msgstr "Exposure time"
+
+#: src/libslic3r/PrintConfig.cpp:2313 src/libslic3r/PrintConfig.cpp:2314
msgid "Initial exposure time"
msgstr "Initial exposure time"
-#: src/libslic3r/PrintConfig.cpp:2446 src/libslic3r/PrintConfig.cpp:2447
-msgid "Correction for expansion when printing"
-msgstr "Correction for expansion when printing"
+#: src/libslic3r/PrintConfig.cpp:2320 src/libslic3r/PrintConfig.cpp:2321
+msgid "Correction for expansion"
+msgstr "Correction for expansion"
-#: src/libslic3r/PrintConfig.cpp:2452 src/libslic3r/PrintConfig.cpp:2453
-msgid "Correction for expansion after curing"
-msgstr "Correction for expansion after curing"
-
-#: src/libslic3r/PrintConfig.cpp:2458
+#: src/libslic3r/PrintConfig.cpp:2327
msgid "SLA print material notes"
msgstr "SLA print material notes"
-#: src/libslic3r/PrintConfig.cpp:2459
+#: src/libslic3r/PrintConfig.cpp:2328
msgid "You can put your notes regarding the SLA print material here."
msgstr "You can put your notes regarding the SLA print material here."
-#: src/libslic3r/PrintConfig.cpp:2468 src/libslic3r/PrintConfig.cpp:2478
+#: src/libslic3r/PrintConfig.cpp:2336 src/libslic3r/PrintConfig.cpp:2347
msgid "Default SLA material profile"
msgstr "Default SLA material profile"
-#: src/libslic3r/PrintConfig.cpp:2487
+#: src/libslic3r/PrintConfig.cpp:2358
msgid "Generate supports"
msgstr "Generate supports"
-#: src/libslic3r/PrintConfig.cpp:2489
+#: src/libslic3r/PrintConfig.cpp:2360
msgid "Generate supports for the models"
msgstr "Generate supports for the models"
-#: src/libslic3r/PrintConfig.cpp:2494
+#: src/libslic3r/PrintConfig.cpp:2365
msgid "Support head front diameter"
msgstr "Support head front diameter"
-#: src/libslic3r/PrintConfig.cpp:2496
+#: src/libslic3r/PrintConfig.cpp:2367
msgid "Diameter of the pointing side of the head"
msgstr "Diameter of the pointing side of the head"
-#: src/libslic3r/PrintConfig.cpp:2503
+#: src/libslic3r/PrintConfig.cpp:2374
msgid "Support head penetration"
msgstr "Support head penetration"
-#: src/libslic3r/PrintConfig.cpp:2505
+#: src/libslic3r/PrintConfig.cpp:2376
msgid "How much the pinhead has to penetrate the model surface"
msgstr "How much the pinhead has to penetrate the model surface"
-#: src/libslic3r/PrintConfig.cpp:2512
+#: src/libslic3r/PrintConfig.cpp:2383
msgid "Support head width"
msgstr "Support head width"
-#: src/libslic3r/PrintConfig.cpp:2514
+#: src/libslic3r/PrintConfig.cpp:2385
msgid "Width from the back sphere center to the front sphere center"
msgstr "Width from the back sphere center to the front sphere center"
-#: src/libslic3r/PrintConfig.cpp:2521
+#: src/libslic3r/PrintConfig.cpp:2393
msgid "Support pillar diameter"
msgstr "Support pillar diameter"
-#: src/libslic3r/PrintConfig.cpp:2523
+#: src/libslic3r/PrintConfig.cpp:2395
msgid "Diameter in mm of the support pillars"
msgstr "Diameter in mm of the support pillars"
-#: src/libslic3r/PrintConfig.cpp:2530
+#: src/libslic3r/PrintConfig.cpp:2403
msgid "Support pillar connection mode"
msgstr "Support pillar connection mode"
-#: src/libslic3r/PrintConfig.cpp:2531
+#: src/libslic3r/PrintConfig.cpp:2404
msgid ""
"Controls the bridge type between two neigboring pillars. Can be zig-zag, "
"cross (double zig-zag) or dynamic which will automatically switch between "
@@ -6766,23 +7492,23 @@ msgstr ""
"cross (double zig-zag) or dynamic which will automatically switch between "
"the first two depending on the distance of the two pillars."
-#: src/libslic3r/PrintConfig.cpp:2540
+#: src/libslic3r/PrintConfig.cpp:2412
msgid "Zig-Zag"
msgstr "Zig-Zag"
-#: src/libslic3r/PrintConfig.cpp:2541
+#: src/libslic3r/PrintConfig.cpp:2413
msgid "Cross"
msgstr "Cross"
-#: src/libslic3r/PrintConfig.cpp:2542
+#: src/libslic3r/PrintConfig.cpp:2414
msgid "Dynamic"
msgstr "Dynamic"
-#: src/libslic3r/PrintConfig.cpp:2546
+#: src/libslic3r/PrintConfig.cpp:2426
msgid "Pillar widening factor"
msgstr "Pillar widening factor"
-#: src/libslic3r/PrintConfig.cpp:2548
+#: src/libslic3r/PrintConfig.cpp:2428
msgid ""
"Merging bridges or pillars into another pillars can increase the radius. "
"Zero means no increase, one means full increase."
@@ -6790,258 +7516,389 @@ msgstr ""
"Merging bridges or pillars into another pillars can increase the radius. "
"Zero means no increase, one means full increase."
-#: src/libslic3r/PrintConfig.cpp:2557
+#: src/libslic3r/PrintConfig.cpp:2437
msgid "Support base diameter"
msgstr "Support base diameter"
-#: src/libslic3r/PrintConfig.cpp:2559
+#: src/libslic3r/PrintConfig.cpp:2439
msgid "Diameter in mm of the pillar base"
msgstr "Diameter in mm of the pillar base"
-#: src/libslic3r/PrintConfig.cpp:2566
+#: src/libslic3r/PrintConfig.cpp:2447
msgid "Support base height"
msgstr "Support base height"
-#: src/libslic3r/PrintConfig.cpp:2568
+#: src/libslic3r/PrintConfig.cpp:2449
msgid "The height of the pillar base cone"
msgstr "The height of the pillar base cone"
-#: src/libslic3r/PrintConfig.cpp:2575
+#: src/libslic3r/PrintConfig.cpp:2456
msgid "Critical angle"
msgstr "Critical angle"
-#: src/libslic3r/PrintConfig.cpp:2577
+#: src/libslic3r/PrintConfig.cpp:2458
msgid "The default angle for connecting support sticks and junctions."
msgstr "The default angle for connecting support sticks and junctions."
-#: src/libslic3r/PrintConfig.cpp:2584
+#: src/libslic3r/PrintConfig.cpp:2466
msgid "Max bridge length"
msgstr "Max bridge length"
-#: src/libslic3r/PrintConfig.cpp:2586
+#: src/libslic3r/PrintConfig.cpp:2468
msgid "The max length of a bridge"
msgstr "The max length of a bridge"
-#: src/libslic3r/PrintConfig.cpp:2593
+#: src/libslic3r/PrintConfig.cpp:2475
+msgid "Max pillar linking distance"
+msgstr "Max pillar linking distance"
+
+#: src/libslic3r/PrintConfig.cpp:2477
+msgid ""
+"The max distance of two pillars to get linked with each other. A zero value "
+"will prohibit pillar cascading."
+msgstr ""
+"The max distance of two pillars to get linked with each other. A zero value "
+"will prohibit pillar cascading."
+
+#: src/libslic3r/PrintConfig.cpp:2485
msgid "Object elevation"
msgstr "Object elevation"
-#: src/libslic3r/PrintConfig.cpp:2595
+#: src/libslic3r/PrintConfig.cpp:2487
msgid "How much the supports should lift up the supported object."
msgstr "How much the supports should lift up the supported object."
-#: src/libslic3r/PrintConfig.cpp:2602
-msgid "Density on horizontal surfaces"
-msgstr "Density on horizontal surfaces"
+#: src/libslic3r/PrintConfig.cpp:2495
+msgid "Support points density"
+msgstr "Support points density"
-#: src/libslic3r/PrintConfig.cpp:2604
-msgid ""
-"How many support points (approximately) should be placed on horizontal "
-"surface."
-msgstr ""
-"How many support points (approximately) should be placed on horizontal "
-"surface."
+#: src/libslic3r/PrintConfig.cpp:2497
+msgid "This is a relative measure of support points density."
+msgstr "This is a relative measure of support points density."
-#: src/libslic3r/PrintConfig.cpp:2605 src/libslic3r/PrintConfig.cpp:2614
-msgid "points per square dm"
-msgstr "points per square dm"
+#: src/libslic3r/PrintConfig.cpp:2503
+msgid "Minimal distance of the support points"
+msgstr "Minimal distance of the support points"
-#: src/libslic3r/PrintConfig.cpp:2611
-msgid "Density on surfaces at 45 degrees"
-msgstr "Density on surfaces at 45 degrees"
+#: src/libslic3r/PrintConfig.cpp:2505
+msgid "No support points will be placed closer than this threshold."
+msgstr "No support points will be placed closer than this threshold."
-#: src/libslic3r/PrintConfig.cpp:2613
-msgid ""
-"How many support points (approximately) should be placed on surface sloping "
-"at 45 degrees."
-msgstr ""
-"How many support points (approximately) should be placed on surface sloping "
-"at 45 degrees."
-
-#: src/libslic3r/PrintConfig.cpp:2620
-msgid "Minimal support point height"
-msgstr "Minimal support point height"
-
-#: src/libslic3r/PrintConfig.cpp:2622
-msgid "No support points will be placed lower than this value from the bottom."
-msgstr ""
-"No support points will be placed lower than this value from the bottom."
-
-#: src/libslic3r/PrintConfig.cpp:2629
+#: src/libslic3r/PrintConfig.cpp:2511
msgid "Use pad"
msgstr "Use pad"
-#: src/libslic3r/PrintConfig.cpp:2631
+#: src/libslic3r/PrintConfig.cpp:2513
msgid "Add a pad underneath the supported model"
msgstr "Add a pad underneath the supported model"
-#: src/libslic3r/PrintConfig.cpp:2636
+#: src/libslic3r/PrintConfig.cpp:2518
msgid "Pad wall thickness"
msgstr "Pad wall thickness"
-#: src/libslic3r/PrintConfig.cpp:2645
+#: src/libslic3r/PrintConfig.cpp:2520
+msgid "The thickness of the pad and its optional cavity walls."
+msgstr "The thickness of the pad and its optional cavity walls."
+
+#: src/libslic3r/PrintConfig.cpp:2528
msgid "Pad wall height"
msgstr "Pad wall height"
-#: src/libslic3r/PrintConfig.cpp:2654
+#: src/libslic3r/PrintConfig.cpp:2529
+msgid "Defines the cavity depth. Set to zero to disable the cavity."
+msgstr "Defines the cavity depth. Set to zero to disable the cavity."
+
+#: src/libslic3r/PrintConfig.cpp:2539
msgid "Max merge distance"
msgstr "Max merge distance"
-#: src/libslic3r/PrintConfig.cpp:2663
+#: src/libslic3r/PrintConfig.cpp:2541
+msgid ""
+"Some objects can get along with a few smaller pads instead of a single big "
+"one. This parameter defines how far the center of two smaller pads should "
+"be. If theyare closer, they will get merged into one pad."
+msgstr ""
+"Some objects can get along with a few smaller pads instead of a single big "
+"one. This parameter defines how far the center of two smaller pads should "
+"be. If theyare closer, they will get merged into one pad."
+
+#: src/libslic3r/PrintConfig.cpp:2552
msgid "Pad edge radius"
msgstr "Pad edge radius"
-#: src/libslic3r/PrintConfig.cpp:3017
-msgid "Cut model at the given Z."
-msgstr "Cut model at the given Z."
+#: src/libslic3r/PrintConfig.cpp:2561
+msgid "Pad wall slope"
+msgstr "Pad wall slope"
-#: src/libslic3r/PrintConfig.cpp:3022
-msgid "Dont arrange"
-msgstr "Dont arrange"
-
-#: src/libslic3r/PrintConfig.cpp:3023
+#: src/libslic3r/PrintConfig.cpp:2563
msgid ""
-"Don't arrange the objects on the build plate. The model coordinates define "
-"the absolute positions on the build plate. The option --center will be "
-"ignored."
+"The slope of the pad wall relative to the bed plane. 90 degrees means "
+"straight walls."
msgstr ""
-"Don't arrange the objects on the build plate. The model coordinates define "
-"the absolute positions on the build plate. The option --center will be "
-"ignored."
+"The slope of the pad wall relative to the bed plane. 90 degrees means "
+"straight walls."
-#: src/libslic3r/PrintConfig.cpp:3030
-msgid "User data directory"
-msgstr "User data directory"
+#: src/libslic3r/PrintConfig.cpp:2924
+msgid "Export SVG"
+msgstr "Export SVG"
-#: src/libslic3r/PrintConfig.cpp:3031
-msgid ""
-"Load and store settings at the given directory. This is useful for "
-"maintaining different profiles or including configurations from a network "
-"storage."
-msgstr ""
-"Load and store settings at the given directory. This is useful for "
-"maintaining different profiles or including configurations from a network "
-"storage."
+#: src/libslic3r/PrintConfig.cpp:2925
+msgid "Export the model(s) as OBJ."
+msgstr "Export the model(s) as OBJ."
-#: src/libslic3r/PrintConfig.cpp:3038
+#: src/libslic3r/PrintConfig.cpp:2936
+msgid "Export SLA"
+msgstr "Export SLA"
+
+#: src/libslic3r/PrintConfig.cpp:2937
+msgid "Slice the model and export SLA printing layers as PNG."
+msgstr "Slice the model and export SLA printing layers as PNG."
+
+#: src/libslic3r/PrintConfig.cpp:2942
msgid "Export 3MF"
msgstr "Export 3MF"
-#: src/libslic3r/PrintConfig.cpp:3039
-msgid "Slice the model and export slices as 3MF."
-msgstr "Slice the model and export slices as 3MF."
+#: src/libslic3r/PrintConfig.cpp:2943
+msgid "Export the model(s) as 3MF."
+msgstr "Export the model(s) as 3MF."
-#: src/libslic3r/PrintConfig.cpp:3044
+#: src/libslic3r/PrintConfig.cpp:2947
+msgid "Export AMF"
+msgstr "Export AMF"
+
+#: src/libslic3r/PrintConfig.cpp:2948
+msgid "Export the model(s) as AMF."
+msgstr "Export the model(s) as AMF."
+
+#: src/libslic3r/PrintConfig.cpp:2952
+msgid "Export STL"
+msgstr "Export STL"
+
+#: src/libslic3r/PrintConfig.cpp:2953
+msgid "Export the model(s) as STL."
+msgstr "Export the model(s) as STL."
+
+#: src/libslic3r/PrintConfig.cpp:2958
+msgid "Slice the model and export toolpaths as G-code."
+msgstr "Slice the model and export toolpaths as G-code."
+
+#: src/libslic3r/PrintConfig.cpp:2963
msgid "Slice"
msgstr "Slice"
-#: src/libslic3r/PrintConfig.cpp:3045
-msgid "Slice the model and export gcode."
-msgstr "Slice the model and export gcode."
+#: src/libslic3r/PrintConfig.cpp:2964
+msgid ""
+"Slice the model as FFF or SLA based on the printer_technology configuration "
+"value."
+msgstr ""
+"Slice the model as FFF or SLA based on the printer_technology configuration "
+"value."
-#: src/libslic3r/PrintConfig.cpp:3050
+#: src/libslic3r/PrintConfig.cpp:2969
msgid "Help"
msgstr "Help"
-#: src/libslic3r/PrintConfig.cpp:3051
+#: src/libslic3r/PrintConfig.cpp:2970
msgid "Show this help."
msgstr "Show this help."
-#: src/libslic3r/PrintConfig.cpp:3056
-msgid "Use GUI"
-msgstr "Use GUI"
+#: src/libslic3r/PrintConfig.cpp:2975
+msgid "Help (FFF options)"
+msgstr "Help (FFF options)"
-#: src/libslic3r/PrintConfig.cpp:3057
-msgid ""
-"Forces the GUI launch instead of command line slicing (if you supply a model "
-"file, it will be loaded into the plater)"
-msgstr ""
-"Forces the GUI launch instead of command line slicing (if you supply a model "
-"file, it will be loaded into the plater)"
+#: src/libslic3r/PrintConfig.cpp:2976
+msgid "Show the full list of print/G-code configuration options."
+msgstr "Show the full list of print/G-code configuration options."
-#: src/libslic3r/PrintConfig.cpp:3063
+#: src/libslic3r/PrintConfig.cpp:2980
+msgid "Help (SLA options)"
+msgstr "Help (SLA options)"
+
+#: src/libslic3r/PrintConfig.cpp:2981
+msgid "Show the full list of SLA print configuration options."
+msgstr "Show the full list of SLA print configuration options."
+
+#: src/libslic3r/PrintConfig.cpp:2985
msgid "Output Model Info"
msgstr "Output Model Info"
-#: src/libslic3r/PrintConfig.cpp:3064
+#: src/libslic3r/PrintConfig.cpp:2986
msgid "Write information about the model to the console."
msgstr "Write information about the model to the console."
-#: src/libslic3r/PrintConfig.cpp:3069
-msgid "Load config file"
-msgstr "Load config file"
-
-#: src/libslic3r/PrintConfig.cpp:3070
-msgid ""
-"Load configuration from the specified file. It can be used more than once to "
-"load options from multiple files."
-msgstr ""
-"Load configuration from the specified file. It can be used more than once to "
-"load options from multiple files."
-
-#: src/libslic3r/PrintConfig.cpp:3075
-msgid "Do not use GUI"
-msgstr "Do not use GUI"
-
-#: src/libslic3r/PrintConfig.cpp:3076
-msgid ""
-"Forces the command line slicing instead of gui. This takes precedence over --"
-"gui if both are present."
-msgstr ""
-"Forces the command line slicing instead of gui. This takes precedence over --"
-"gui if both are present."
-
-#: src/libslic3r/PrintConfig.cpp:3081
-msgid "Output File"
-msgstr "Output File"
-
-#: src/libslic3r/PrintConfig.cpp:3082
-msgid ""
-"The file where the output will be written (if not specified, it will be "
-"based on the input file)."
-msgstr ""
-"The file where the output will be written (if not specified, it will be "
-"based on the input file)."
-
-#: src/libslic3r/PrintConfig.cpp:3088
-msgid "Rotation angle around the Z axis in degrees (0-360, default: 0)."
-msgstr "Rotation angle around the Z axis in degrees (0-360, default: 0)."
-
-#: src/libslic3r/PrintConfig.cpp:3093
-msgid "Rotate around X"
-msgstr "Rotate around X"
-
-#: src/libslic3r/PrintConfig.cpp:3094
-msgid "Rotation angle around the X axis in degrees (0-360, default: 0)."
-msgstr "Rotation angle around the X axis in degrees (0-360, default: 0)."
-
-#: src/libslic3r/PrintConfig.cpp:3099
-msgid "Rotate around Y"
-msgstr "Rotate around Y"
-
-#: src/libslic3r/PrintConfig.cpp:3100
-msgid "Rotation angle around the Y axis in degrees (0-360, default: 0)."
-msgstr "Rotation angle around the Y axis in degrees (0-360, default: 0)."
-
-#: src/libslic3r/PrintConfig.cpp:3105
+#: src/libslic3r/PrintConfig.cpp:2990
msgid "Save config file"
msgstr "Save config file"
-#: src/libslic3r/PrintConfig.cpp:3106
+#: src/libslic3r/PrintConfig.cpp:2991
msgid "Save configuration to the specified file."
msgstr "Save configuration to the specified file."
+#: src/libslic3r/PrintConfig.cpp:3001
+msgid "Align XY"
+msgstr "Align XY"
+
+#: src/libslic3r/PrintConfig.cpp:3002
+msgid "Align the model to the given point."
+msgstr "Align the model to the given point."
+
+#: src/libslic3r/PrintConfig.cpp:3007
+msgid "Cut model at the given Z."
+msgstr "Cut model at the given Z."
+
+#: src/libslic3r/PrintConfig.cpp:3028
+msgid "Center"
+msgstr "Center"
+
+#: src/libslic3r/PrintConfig.cpp:3029
+msgid "Center the print around the given center."
+msgstr "Center the print around the given center."
+
+#: src/libslic3r/PrintConfig.cpp:3033
+msgid "Don't arrange"
+msgstr "Don't arrange"
+
+#: src/libslic3r/PrintConfig.cpp:3034
+msgid ""
+"Do not rearrange the given models before merging and keep their original XY "
+"coordinates."
+msgstr ""
+"Do not rearrange the given models before merging and keep their original XY "
+"coordinates."
+
+#: src/libslic3r/PrintConfig.cpp:3037
+msgid "Duplicate"
+msgstr "Duplicate"
+
+#: src/libslic3r/PrintConfig.cpp:3038
+msgid "Multiply copies by this factor."
+msgstr "Multiply copies by this factor."
+
+#: src/libslic3r/PrintConfig.cpp:3042
+msgid "Duplicate by grid"
+msgstr "Duplicate by grid"
+
+#: src/libslic3r/PrintConfig.cpp:3043
+msgid "Multiply copies by creating a grid."
+msgstr "Multiply copies by creating a grid."
+
+#: src/libslic3r/PrintConfig.cpp:3046
+msgid "Merge"
+msgstr "Merge"
+
+#: src/libslic3r/PrintConfig.cpp:3047
+msgid ""
+"Arrange the supplied models in a plate and merge them in a single model in "
+"order to perform actions once."
+msgstr ""
+"Arrange the supplied models in a plate and merge them in a single model in "
+"order to perform actions once."
+
+#: src/libslic3r/PrintConfig.cpp:3052
+msgid ""
+"Try to repair any non-manifold meshes (this option is implicitly added "
+"whenever we need to slice the model to perform the requested action)."
+msgstr ""
+"Try to repair any non-manifold meshes (this option is implicitly added "
+"whenever we need to slice the model to perform the requested action)."
+
+#: src/libslic3r/PrintConfig.cpp:3056
+msgid "Rotation angle around the Z axis in degrees."
+msgstr "Rotation angle around the Z axis in degrees."
+
+#: src/libslic3r/PrintConfig.cpp:3060
+msgid "Rotate around X"
+msgstr "Rotate around X"
+
+#: src/libslic3r/PrintConfig.cpp:3061
+msgid "Rotation angle around the X axis in degrees."
+msgstr "Rotation angle around the X axis in degrees."
+
+#: src/libslic3r/PrintConfig.cpp:3065
+msgid "Rotate around Y"
+msgstr "Rotate around Y"
+
+#: src/libslic3r/PrintConfig.cpp:3066
+msgid "Rotation angle around the Y axis in degrees."
+msgstr "Rotation angle around the Y axis in degrees."
+
+#: src/libslic3r/PrintConfig.cpp:3071
+msgid "Scaling factor or percentage."
+msgstr "Scaling factor or percentage."
+
+#: src/libslic3r/PrintConfig.cpp:3076
+msgid ""
+"Detect unconnected parts in the given model(s) and split them into separate "
+"objects."
+msgstr ""
+"Detect unconnected parts in the given model(s) and split them into separate "
+"objects."
+
+#: src/libslic3r/PrintConfig.cpp:3079
+msgid "Scale to Fit"
+msgstr "Scale to Fit"
+
+#: src/libslic3r/PrintConfig.cpp:3080
+msgid "Scale to fit the given volume."
+msgstr "Scale to fit the given volume."
+
+#: src/libslic3r/PrintConfig.cpp:3089
+msgid "Ignore non-existent config files"
+msgstr "Ignore non-existent config files"
+
+#: src/libslic3r/PrintConfig.cpp:3090
+msgid "Do not fail if a file supplied to --load does not exist."
+msgstr "Do not fail if a file supplied to --load does not exist."
+
+#: src/libslic3r/PrintConfig.cpp:3093
+msgid "Load config file"
+msgstr "Load config file"
+
+#: src/libslic3r/PrintConfig.cpp:3094
+msgid ""
+"Load configuration from the specified file. It can be used more than once to "
+"load options from multiple files."
+msgstr ""
+"Load configuration from the specified file. It can be used more than once to "
+"load options from multiple files."
+
+#: src/libslic3r/PrintConfig.cpp:3097
+msgid "Output File"
+msgstr "Output File"
+
+#: src/libslic3r/PrintConfig.cpp:3098
+msgid ""
+"The file where the output will be written (if not specified, it will be "
+"based on the input file)."
+msgstr ""
+"The file where the output will be written (if not specified, it will be "
+"based on the input file)."
+
+#: src/libslic3r/PrintConfig.cpp:3108
+msgid "Data directory"
+msgstr "Data directory"
+
+#: src/libslic3r/PrintConfig.cpp:3109
+msgid ""
+"Load and store settings at the given directory. This is useful for "
+"maintaining different profiles or including configurations from a network "
+"storage."
+msgstr ""
+"Load and store settings at the given directory. This is useful for "
+"maintaining different profiles or including configurations from a network "
+"storage."
+
#: src/libslic3r/PrintConfig.cpp:3112
-msgid "Scaling factor (default: 1)."
-msgstr "Scaling factor (default: 1)."
+msgid "Logging level"
+msgstr "Logging level"
-#: src/libslic3r/PrintConfig.cpp:3125
-msgid "Print center"
-msgstr "Print center"
-
-#: src/libslic3r/PrintConfig.cpp:3126
-msgid "Center the print around the given center (default: 100, 100)."
-msgstr "Center the print around the given center (default: 100, 100)."
+#: src/libslic3r/PrintConfig.cpp:3113
+msgid ""
+"Messages with severity lower or eqal to the loglevel will be printed out. 0:"
+"trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal"
+msgstr ""
+"Messages with severity lower or eqal to the loglevel will be printed out. 0:"
+"trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal"
#: src/libslic3r/GCode/PreviewData.cpp:176
msgid "Mixed"
diff --git a/resources/localization/en_US/Slic3rPE.mo b/resources/localization/en_US/Slic3rPE.mo
deleted file mode 100644
index 6295b97d2..000000000
Binary files a/resources/localization/en_US/Slic3rPE.mo and /dev/null differ
diff --git a/resources/localization/es/Slic3rPE.mo b/resources/localization/es/Slic3rPE.mo
deleted file mode 100644
index 1e95d9289..000000000
Binary files a/resources/localization/es/Slic3rPE.mo and /dev/null differ
diff --git a/resources/localization/es/Slic3rPE_es.po b/resources/localization/es/Slic3rPE_es.po
deleted file mode 100644
index 781162240..000000000
--- a/resources/localization/es/Slic3rPE_es.po
+++ /dev/null
@@ -1,7054 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-17 13:39+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Oleksandra Iushchenko \n"
-"Language-Team: \n"
-"Language: es\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Poedit 2.0.8\n"
-
-#: src/slic3r/GUI/AboutDialog.cpp:33
-msgid "About Slic3r"
-msgstr "Acerca de Slic3r"
-
-#: src/slic3r/GUI/AboutDialog.cpp:68 src/slic3r/GUI/MainFrame.cpp:51
-msgid "Version"
-msgstr "Versión"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:43
-msgid "Shape"
-msgstr "Aspecto"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:50
-msgid "Rectangular"
-msgstr "Rectangular"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:54
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:207 src/slic3r/GUI/Plater.cpp:125
-#: src/slic3r/GUI/Tab.cpp:2122
-msgid "Size"
-msgstr "Tamaño"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:55
-msgid "Size in X and Y of the rectangular plate."
-msgstr "Tamaño en X e Y de la placa rectangular."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:61
-msgid "Origin"
-msgstr "Origen"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:62
-msgid ""
-"Distance of the 0,0 G-code coordinate from the front left corner of the "
-"rectangle."
-msgstr ""
-"Distancia de la coordenada del código G de 0,0 de la esquina frontal "
-"izquierda del rectángulo."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:66
-msgid "Circular"
-msgstr "Circular"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:69 src/slic3r/GUI/ConfigWizard.cpp:92
-#: src/slic3r/GUI/ConfigWizard.cpp:456 src/slic3r/GUI/ConfigWizard.cpp:470
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:80
-#: src/libslic3r/PrintConfig.cpp:50 src/libslic3r/PrintConfig.cpp:58
-#: src/libslic3r/PrintConfig.cpp:180 src/libslic3r/PrintConfig.cpp:254
-#: src/libslic3r/PrintConfig.cpp:263 src/libslic3r/PrintConfig.cpp:315
-#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:448
-#: src/libslic3r/PrintConfig.cpp:460 src/libslic3r/PrintConfig.cpp:480
-#: src/libslic3r/PrintConfig.cpp:679 src/libslic3r/PrintConfig.cpp:1178
-#: src/libslic3r/PrintConfig.cpp:1243 src/libslic3r/PrintConfig.cpp:1263
-#: src/libslic3r/PrintConfig.cpp:1283 src/libslic3r/PrintConfig.cpp:1365
-#: src/libslic3r/PrintConfig.cpp:1376 src/libslic3r/PrintConfig.cpp:1499
-#: src/libslic3r/PrintConfig.cpp:1508 src/libslic3r/PrintConfig.cpp:1554
-#: src/libslic3r/PrintConfig.cpp:1563 src/libslic3r/PrintConfig.cpp:1574
-#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1592
-#: src/libslic3r/PrintConfig.cpp:1682 src/libslic3r/PrintConfig.cpp:1918
-#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2031
-#: src/libslic3r/PrintConfig.cpp:2241 src/libslic3r/PrintConfig.cpp:2249
-#: src/libslic3r/PrintConfig.cpp:2257 src/libslic3r/PrintConfig.cpp:2291
-#: src/libslic3r/PrintConfig.cpp:2302 src/libslic3r/PrintConfig.cpp:2313
-#: src/libslic3r/PrintConfig.cpp:2321 src/libslic3r/PrintConfig.cpp:2328
-#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2497
-#: src/libslic3r/PrintConfig.cpp:2506 src/libslic3r/PrintConfig.cpp:2515
-#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2560
-#: src/libslic3r/PrintConfig.cpp:2569 src/libslic3r/PrintConfig.cpp:2587
-#: src/libslic3r/PrintConfig.cpp:2596 src/libslic3r/PrintConfig.cpp:2623
-#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2648
-#: src/libslic3r/PrintConfig.cpp:2657 src/libslic3r/PrintConfig.cpp:2666
-msgid "mm"
-msgstr "mm"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:70 src/libslic3r/PrintConfig.cpp:676
-msgid "Diameter"
-msgstr "Diámetro"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:71
-msgid ""
-"Diameter of the print bed. It is assumed that origin (0,0) is located in the "
-"center."
-msgstr ""
-"Diámetro de la base de impresión. Se supone que el origen (0,0) está ubicado "
-"en el centro."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:75 src/slic3r/GUI/GUI_Preview.cpp:265
-#: src/libslic3r/GCode/PreviewData.cpp:175
-msgid "Custom"
-msgstr "Personalizado"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:79
-msgid "Load shape from STL..."
-msgstr ""
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:125
-msgid "Settings"
-msgstr "Ajustes"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:298
-msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr ""
-"Escoja un archivo para importar la forma de la base de impresión (STL/OBJ/"
-"AMF/3MF/PRUSA):"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:315 src/slic3r/GUI/GUI_ObjectList.cpp:835
-msgid "Error! "
-msgstr "¡Error! "
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:324
-msgid "The selected file contains no geometry."
-msgstr "El archivo seleccionado no contiene geometrÃa."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:328
-msgid ""
-"The selected file contains several disjoint areas. This is not supported."
-msgstr ""
-"El archivo seleccionado contiene varias áreas disjuntas. Esto no es "
-"compatible."
-
-#: src/slic3r/GUI/BedShapeDialog.hpp:44 src/slic3r/GUI/ConfigWizard.cpp:419
-msgid "Bed Shape"
-msgstr "Forma de la base de impresión"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:54
-msgid "Network lookup"
-msgstr "Búsqueda en la red"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:67
-msgid "Address"
-msgstr "Dirección"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:68
-msgid "Hostname"
-msgstr "Nombre del equipo"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:69
-msgid "Service name"
-msgstr "Nombre del servicio"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:70
-msgid "OctoPrint version"
-msgstr "Versión de OctoPrint"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:188
-msgid "Searching for devices"
-msgstr "Buscando dispositivos"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:195
-msgid "Finished"
-msgstr "Terminado"
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:15
-msgid "Buttons And Text Colors Description"
-msgstr "Descripción de los botones y de los colores del texto"
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:40
-msgid "Value is the same as the system value"
-msgstr "El valor es el mismo que el del sistema"
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:57
-msgid ""
-"Value was changed and is not equal to the system value or the last saved "
-"preset"
-msgstr ""
-"El valor ha cambiado y ya no es igual al valor del sistema o al último valor "
-"guardado"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:16
-msgid "Upgrade"
-msgstr "Actualización"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:18
-msgid "Downgrade"
-msgstr "Volver a una versión anterior"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:20
-msgid "Before roll back"
-msgstr "Antes de volver atrás"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:22
-msgid "User"
-msgstr "Usuario"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:25
-msgid "Unknown"
-msgstr "Desconocido"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:37
-msgid "Active: "
-msgstr "Activo: "
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43
-msgid "slic3r version"
-msgstr "versión de Slic3r"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:44 src/slic3r/GUI/Preset.cpp:1156
-msgid "print"
-msgstr "imprimir"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:45
-msgid "filaments"
-msgstr "filamentos"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1160
-msgid "printer"
-msgstr "impresora"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 src/slic3r/GUI/Tab.cpp:838
-msgid "vendor"
-msgstr "fabricante"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50
-msgid "version"
-msgstr "versión"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51
-msgid "min slic3r version"
-msgstr "mÃnima versión de Slic3r"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53
-msgid "max slic3r version"
-msgstr "versión máxima de slic3r"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
-msgid "model"
-msgstr "modelo"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
-msgid "variants"
-msgstr "variantes"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68
-msgid "Incompatible with this Slic3r"
-msgstr "Incompatible con este Slic3r"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71
-msgid "Activate"
-msgstr "Activar"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:97
-msgid "Configuration Snapshots"
-msgstr "Instantáneas de la Configuración"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:92
-msgid "nozzle"
-msgstr "boquilla"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:93
-msgid "default"
-msgstr "por defecto"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:116
-msgid "Select all"
-msgstr "Selecciona todo"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:117
-msgid "Select none"
-msgstr "No seleccionar ninguno"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:226
-#, c-format
-msgid "Welcome to the Slic3r %s"
-msgstr "Bienvenido a Slic3r %s"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:226
-msgid "Welcome"
-msgstr "Bienvenido"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:232 src/slic3r/GUI/GUI_App.cpp:606
-#, c-format
-msgid "Run %s"
-msgstr "Ejecutar %s"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:234
-#, c-format
-msgid ""
-"Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial "
-"configuration; just a few settings and you will be ready to print."
-msgstr ""
-"Hola, bienvenido a Slic3r Prusa Edition! Este %s te ayuda con la "
-"configuración inicial; sólo unos pocos ajustes y estarás preparado para "
-"imprimir."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:238
-msgid ""
-"Remove user profiles - install from scratch (a snapshot will be taken "
-"beforehand)"
-msgstr ""
-"Eliminar perfiles de usuario - instalar desde cero (se realizará una "
-"instantánea con anterioridad)"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:263
-msgid "Other vendors"
-msgstr "Otras marcas"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:265
-msgid "Custom setup"
-msgstr "Configuración personalizada"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:289
-msgid "Automatic updates"
-msgstr "Actualizaciones automáticas"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:289
-msgid "Updates"
-msgstr "Actualizaciones"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:297 src/slic3r/GUI/Preferences.cpp:59
-msgid "Check for application updates"
-msgstr "Comprueba si hay actualizaciones de la aplicación"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:300 src/slic3r/GUI/Preferences.cpp:61
-msgid ""
-"If enabled, Slic3r checks for new versions of Slic3r PE online. When a new "
-"version becomes available a notification is displayed at the next "
-"application startup (never during program usage). This is only a "
-"notification mechanisms, no automatic installation is done."
-msgstr ""
-"Si está activado, Slic3r comprueba si hay nuevas versiones de Slic3r PE en "
-"la red. Cuando hay disponible una nueva versión se muestra una notificación "
-"al iniciar la aplicación (nunca durante el uso del programa). Esto es sólo "
-"un mecanismo de notificación, sin que se realice una instalación automática."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:304 src/slic3r/GUI/Preferences.cpp:67
-msgid "Update built-in Presets automatically"
-msgstr "Actualiza los ajustes de fábrica automáticamente"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:307 src/slic3r/GUI/Preferences.cpp:69
-msgid ""
-"If enabled, Slic3r downloads updates of built-in system presets in the "
-"background. These updates are downloaded into a separate temporary location. "
-"When a new preset version becomes available it is offered at application "
-"startup."
-msgstr ""
-"Si está activado, Slic3r descargará actualizaciones de los ajustes del "
-"sistema mientras lo usamos Estas actualizaciones se descargan a una "
-"ubicación temporal. Cuando hay un nuevo ajuste disponible, este se podrá "
-"incorporar y usar cuando la aplicación se vuelva a iniciar."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:308
-msgid ""
-"Updates are never applied without user's consent and never overwrite user's "
-"customized settings."
-msgstr ""
-"Las actualizaciones nunca se realizan sin el consentimiento del usuario y "
-"nunca sobre-escriben ajustes personalizados del usuario."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:313
-msgid ""
-"Additionally a backup snapshot of the whole configuration is created before "
-"an update is applied."
-msgstr ""
-"Además se realizará una instantánea de toda la configuración antes de "
-"aplicar una actualización."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:320
-msgid "Other Vendors"
-msgstr "Otras Marcas"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:322
-msgid "Pick another vendor supported by Slic3r PE:"
-msgstr "Escoge otro fabricante soportado por Slic3r PE:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:381
-msgid "Firmware Type"
-msgstr "Tipo de Firmware"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:381 src/slic3r/GUI/Tab.cpp:1820
-msgid "Firmware"
-msgstr "Firmware"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:385
-msgid "Choose the type of firmware used by your printer."
-msgstr "Selecciona el tipo de firmware que usa tu impresora."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:419
-msgid "Bed Shape and Size"
-msgstr "Tamaño y forma de la base"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:422
-msgid "Set the shape of your printer's bed."
-msgstr "Define la forma de la base de impresión de tu impresora."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:436
-msgid "Filament and Nozzle Diameters"
-msgstr "Filamento y diámetros de boquilla"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:436
-msgid "Print Diameters"
-msgstr "Diámetros de impresión"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:452
-msgid "Enter the diameter of your printer's hot end nozzle."
-msgstr "Introduce el diámetro de la boquilla del fusor de tu impresora."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:455
-msgid "Nozzle Diameter:"
-msgstr "Diámetro de la boquilla:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:465
-msgid "Enter the diameter of your filament."
-msgstr "Introduce el diámetro de tu filamento."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:466
-msgid ""
-"Good precision is required, so use a caliper and do multiple measurements "
-"along the filament, then compute the average."
-msgstr ""
-"Se necesita buena precisión, asà que usa un calibre y realiza varias medidas "
-"a lo largo del filamento, luego calcula la media."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:469
-msgid "Filament Diameter:"
-msgstr "Diámetro del filamento:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:487
-msgid "Extruder and Bed Temperatures"
-msgstr "Temperaturas del Extrusor y de la Base"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:487
-msgid "Temperatures"
-msgstr "Temperaturas"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:503
-msgid "Enter the temperature needed for extruding your filament."
-msgstr "Introduce la temperatura necesaria para extruir tu filamento."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:504
-msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS."
-msgstr ""
-"Una buena aproximación es de 160 a 230 °C para PLA y de 215 a 250 °C para "
-"ABS."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:507
-msgid "Extrusion Temperature:"
-msgstr "Temperatura de Extrusión:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:508 src/slic3r/GUI/ConfigWizard.cpp:522
-msgid "°C"
-msgstr "°C"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:517
-msgid ""
-"Enter the bed temperature needed for getting your filament to stick to your "
-"heated bed."
-msgstr ""
-"Introduce la temperatura de la base necesaria para que adhiera el filamento "
-"a la base calefactable."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:518
-msgid ""
-"A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have "
-"no heated bed."
-msgstr ""
-"Una buena aproximación son unos 60 °C para PLA y 110 °C para ABS. Deja el "
-"valor a cero si no tienes base calefactable."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:521
-msgid "Bed Temperature:"
-msgstr "Temperatura de la base:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:833
-msgid "< &Back"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:834
-msgid "&Next >"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:835
-msgid "&Finish"
-msgstr "&Terminar"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:906
-msgid "Configuration Wizard"
-msgstr "Asistente de configuración"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:907
-msgid "Configuration &Wizard"
-msgstr "&Asistente de configuración"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:909
-msgid "Configuration Assistant"
-msgstr "Asistente de Configuración"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:910
-msgid "Configuration &Assistant"
-msgstr "&Asistente de configuración"
-
-#: src/slic3r/GUI/Field.cpp:109
-msgid "default value"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:112
-msgid "parameter name"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:140
-#, c-format
-msgid "%s doesn't support percentage"
-msgstr "%s no permite porcentajes"
-
-#: src/slic3r/GUI/Field.cpp:148 src/slic3r/GUI/Field.cpp:168
-msgid ""
-"Input value contains incorrect symbol(s).\n"
-"Use, please, only digits"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:153
-msgid "Input value is out of range"
-msgstr "El valor introducido está fuera de rango"
-
-#: src/slic3r/GUI/Field.cpp:176
-#, c-format
-msgid ""
-"Do you mean %d%% instead of %d %s?\n"
-"Select YES if you want to change this value to %d%%, \n"
-"or NO if you are sure that %d %s is a correct value."
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:179
-msgid "Parameter validation"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:133
-msgid "Flash!"
-msgstr "Flash!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:134 src/slic3r/GUI/GLGizmo.cpp:2270
-msgid "Cancel"
-msgstr "Cancelar"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:135
-msgid "Flashing in progress. Please do not disconnect the printer!"
-msgstr "Flasheo en curso. ¡Por favor no desconecte la impresora!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:245
-msgid "Flashing succeeded!"
-msgstr "¡Exito al flashear!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:246
-msgid "Flashing failed. Please see the avrdude log below."
-msgstr "Flasheo fallido. Por favor comprueba el log de avrdude."
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:247
-msgid "Flashing cancelled."
-msgstr "Flasheo cancelado."
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:279
-#, c-format
-msgid "Flashing failed: %s"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:293
-#, c-format
-msgid ""
-"This firmware hex file does not match the printer model.\n"
-"The hex file is intended for: %s\n"
-"Printer reported: %s\n"
-"\n"
-"Do you want to continue and flash this hex file anyway?\n"
-"Please only continue if you are sure this is the right thing to do."
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:380 src/slic3r/GUI/FirmwareDialog.cpp:414
-msgid ""
-"Multiple Original Prusa i3 MMU 2.0 devices found. Please only connect one at "
-"a time for flashing."
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:508
-msgid "The device could not have been found"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:581
-#, c-format
-msgid "Error accessing port at %s: %s"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:690
-msgid "Firmware flasher"
-msgstr "Flasheador de firmware"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:712
-msgid "Firmware image:"
-msgstr "Imagen del firmware:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:716
-msgid "Serial port:"
-msgstr "Puerto serie:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:718
-msgid "Autodetected"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:719
-msgid "Rescan"
-msgstr "Rescanear"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:726
-msgid "Progress:"
-msgstr "Progreso:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:729
-msgid "Status:"
-msgstr "Estado:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:730
-msgid "Ready"
-msgstr "Listo"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:750
-msgid "Advanced: avrdude output log"
-msgstr "Avanzado: salida del log avrdude"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:809
-msgid ""
-"Are you sure you want to cancel firmware flashing?\n"
-"This could leave your printer in an unusable state!"
-msgstr ""
-"¿Estas seguro de cancelar el flaseo del firmware?\n"
-"¡Esto podrÃa dejar tu impresora en un estado inusable!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:810
-msgid "Confirmation"
-msgstr "Confirmación"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:813
-msgid "Cancelling..."
-msgstr ""
-
-#: src/slic3r/GUI/GLCanvas3D.cpp:4640
-msgid "Detected object outside print volume"
-msgstr ""
-
-#: src/slic3r/GUI/GLCanvas3D.cpp:7962
-msgid "Detected toolpath outside print volume"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:751 src/slic3r/GUI/GUI_ObjectManipulation.cpp:300
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:322
-#: src/libslic3r/PrintConfig.cpp:3087
-msgid "Rotate"
-msgstr "Girar"
-
-#: src/slic3r/GUI/GLGizmo.cpp:785
-msgid "Rotation (deg)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:841 src/slic3r/GUI/GUI_ObjectManipulation.cpp:206
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:301
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:323
-#: src/libslic3r/PrintConfig.cpp:3111
-msgid "Scale"
-msgstr "Escalar"
-
-#: src/slic3r/GUI/GLGizmo.cpp:1072
-msgid "Scale (%)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1200
-msgid "Move"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Position (mm)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Displacement (mm)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1430
-msgid "Place on face"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2207
-msgid "Left mouse click - add point"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2208
-msgid "Right mouse click - remove point"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2211
-msgid "Generate points automatically"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2212
-msgid "Remove all points"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2245
-msgid "SLA Support Points"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2268 src/slic3r/GUI/GLGizmo.cpp:2468
-msgid "Rotate lower part upwards"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2269 src/slic3r/GUI/GLGizmo.cpp:2470
-msgid "Perform cut"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2276
-msgid "Cut object:"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2356 src/slic3r/GUI/GLGizmo.cpp:2461
-#: src/libslic3r/PrintConfig.cpp:3016
-msgid "Cut"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2466
-msgid "Keep upper part"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2467
-msgid "Keep lower part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI.cpp:242
-msgid "Notice"
-msgstr "Date cuenta"
-
-#: src/slic3r/GUI/GUI.cpp:248
-msgid "Attempt to free unreferenced scalar"
-msgstr "Intento de liberar un escalar no referenciado"
-
-#: src/slic3r/GUI/GUI.cpp:250 src/slic3r/GUI/WipeTowerDialog.cpp:40
-#: src/slic3r/GUI/WipeTowerDialog.cpp:322
-msgid "Warning"
-msgstr "Peligro"
-
-#: src/slic3r/GUI/GUI_App.cpp:377
-msgid "Choose one file (3MF):"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:389
-msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Escoja uno o mas archivos (STL/OBJ/AMF/3MF/PRUSA):"
-
-#: src/slic3r/GUI/GUI_App.cpp:451
-msgid "Array of language names and identifiers should have the same size."
-msgstr ""
-"La lista de nombres de idioma e identificadores deberÃa tener el mismo "
-"tamaño."
-
-#: src/slic3r/GUI/GUI_App.cpp:461
-msgid "Select the language"
-msgstr "Seleccione el idioma"
-
-#: src/slic3r/GUI/GUI_App.cpp:461
-msgid "Language"
-msgstr "Idioma"
-
-#: src/slic3r/GUI/GUI_App.cpp:529 src/libslic3r/PrintConfig.cpp:270
-msgid "Default"
-msgstr "Por defecto"
-
-# xs/src/slic3r/GUI/GUI.cpp:402
-#: src/slic3r/GUI/GUI_App.cpp:609
-msgid "&Configuration Snapshots"
-msgstr "Instantáneas de la &Configuración"
-
-#: src/slic3r/GUI/GUI_App.cpp:609
-msgid "Inspect / activate configuration snapshots"
-msgstr "Inspeccionar / activar instantáneas de configuración"
-
-#: src/slic3r/GUI/GUI_App.cpp:610
-msgid "Take Configuration &Snapshot"
-msgstr "Hacer una In&stantánea de la Configuración"
-
-#: src/slic3r/GUI/GUI_App.cpp:610
-msgid "Capture a configuration snapshot"
-msgstr "Captura una instantánea de configuración"
-
-#: src/slic3r/GUI/GUI_App.cpp:613
-msgid "&Preferences"
-msgstr "&Preferencias"
-
-#: src/slic3r/GUI/GUI_App.cpp:613
-msgid "Application preferences"
-msgstr "Preferencias de la aplicación"
-
-#: src/slic3r/GUI/GUI_App.cpp:616
-msgid "Simple"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:616
-msgid "Simple View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:617 src/slic3r/GUI/GUI_ObjectList.cpp:39
-#: src/slic3r/GUI/Tab.cpp:948 src/slic3r/GUI/Tab.cpp:962
-#: src/slic3r/GUI/Tab.cpp:1058 src/slic3r/GUI/Tab.cpp:1061
-#: src/slic3r/GUI/Tab.cpp:1425 src/slic3r/GUI/Tab.cpp:1840
-#: src/libslic3r/PrintConfig.cpp:156 src/libslic3r/PrintConfig.cpp:323
-#: src/libslic3r/PrintConfig.cpp:999 src/libslic3r/PrintConfig.cpp:2298
-msgid "Advanced"
-msgstr "Avanzado"
-
-#: src/slic3r/GUI/GUI_App.cpp:617
-msgid "Advanced View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:618
-msgid "Expert"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:618
-msgid "Expert View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:620
-msgid "Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:620
-msgid "Slic3r View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:622
-msgid "Change Application &Language"
-msgstr "Cambiar el &Idioma de la Aplicación"
-
-#: src/slic3r/GUI/GUI_App.cpp:624
-msgid "Flash printer &firmware"
-msgstr "Flashear &firmware de la impresora"
-
-#: src/slic3r/GUI/GUI_App.cpp:624
-msgid "Upload a firmware image into an Arduino based printer"
-msgstr "Cargar una imagen de firmware a una impresora basada en Arduino"
-
-#: src/slic3r/GUI/GUI_App.cpp:636
-msgid "Taking configuration snapshot"
-msgstr "Haciendo una instantánea de la configuración"
-
-#: src/slic3r/GUI/GUI_App.cpp:636
-msgid "Snapshot name"
-msgstr "Nombre de la instantánea"
-
-#: src/slic3r/GUI/GUI_App.cpp:674
-msgid "Application will be restarted"
-msgstr "El programa se reiniciará"
-
-#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/Tab.cpp:2606
-msgid "Attention!"
-msgstr "¡Atención!"
-
-#: src/slic3r/GUI/GUI_App.cpp:691
-msgid "&Configuration"
-msgstr "&Configuración"
-
-#: src/slic3r/GUI/GUI_App.cpp:711
-msgid "You have unsaved changes "
-msgstr "Tienes cambios sin guardar "
-
-#: src/slic3r/GUI/GUI_App.cpp:711
-msgid ". Discard changes and continue anyway?"
-msgstr ". ¿Descartar los cambios y continuar de todos modos?"
-
-#: src/slic3r/GUI/GUI_App.cpp:712
-msgid "Unsaved Presets"
-msgstr "Ajustes iniciales no guardados"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:31 src/libslic3r/PrintConfig.cpp:47
-#: src/libslic3r/PrintConfig.cpp:115 src/libslic3r/PrintConfig.cpp:357
-#: src/libslic3r/PrintConfig.cpp:410 src/libslic3r/PrintConfig.cpp:419
-#: src/libslic3r/PrintConfig.cpp:849 src/libslic3r/PrintConfig.cpp:1037
-#: src/libslic3r/PrintConfig.cpp:1354 src/libslic3r/PrintConfig.cpp:1426
-#: src/libslic3r/PrintConfig.cpp:1618 src/libslic3r/PrintConfig.cpp:2091
-#: src/libslic3r/PrintConfig.cpp:2150
-msgid "Layers and Perimeters"
-msgstr "Capas y PerÃmetros"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:32 src/slic3r/GUI/Tab.cpp:952
-#: src/slic3r/GUI/Tab.cpp:953 src/slic3r/GUI/Tab.cpp:1274
-#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:366
-#: src/libslic3r/PrintConfig.cpp:730 src/libslic3r/PrintConfig.cpp:745
-#: src/libslic3r/PrintConfig.cpp:783 src/libslic3r/PrintConfig.cpp:938
-#: src/libslic3r/PrintConfig.cpp:949 src/libslic3r/PrintConfig.cpp:969
-#: src/libslic3r/PrintConfig.cpp:989 src/libslic3r/PrintConfig.cpp:1010
-#: src/libslic3r/PrintConfig.cpp:1733 src/libslic3r/PrintConfig.cpp:1752
-msgid "Infill"
-msgstr "Relleno"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_Preview.cpp:262
-#: src/slic3r/GUI/Tab.cpp:980 src/slic3r/GUI/Tab.cpp:981
-#: src/libslic3r/PrintConfig.cpp:305 src/libslic3r/PrintConfig.cpp:1484
-#: src/libslic3r/PrintConfig.cpp:1865 src/libslic3r/PrintConfig.cpp:1872
-#: src/libslic3r/PrintConfig.cpp:1881 src/libslic3r/PrintConfig.cpp:1894
-#: src/libslic3r/PrintConfig.cpp:1905 src/libslic3r/PrintConfig.cpp:1914
-#: src/libslic3r/PrintConfig.cpp:1930 src/libslic3r/PrintConfig.cpp:1953
-#: src/libslic3r/PrintConfig.cpp:1965 src/libslic3r/PrintConfig.cpp:1983
-#: src/libslic3r/PrintConfig.cpp:1993 src/libslic3r/PrintConfig.cpp:2003
-#: src/libslic3r/PrintConfig.cpp:2014 src/libslic3r/PrintConfig.cpp:2029
-#: src/libslic3r/PrintConfig.cpp:2038 src/libslic3r/PrintConfig.cpp:2039
-#: src/libslic3r/PrintConfig.cpp:2048 src/libslic3r/PrintConfig.cpp:2057
-#: src/libslic3r/PrintConfig.cpp:2072 src/libslic3r/GCode/PreviewData.cpp:172
-msgid "Support material"
-msgstr "Material de soporte"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_Preview.cpp:241
-#: src/slic3r/GUI/Tab.cpp:1005 src/libslic3r/PrintConfig.cpp:169
-#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:881
-#: src/libslic3r/PrintConfig.cpp:1011 src/libslic3r/PrintConfig.cpp:1416
-#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1721
-#: src/libslic3r/PrintConfig.cpp:1776 src/libslic3r/PrintConfig.cpp:2136
-msgid "Speed"
-msgstr "Velocidad"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/Tab.cpp:1038
-#: src/slic3r/GUI/Tab.cpp:1744 src/libslic3r/PrintConfig.cpp:430
-#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:1393
-#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1944
-#: src/libslic3r/PrintConfig.cpp:1973 src/libslic3r/PrintConfig.cpp:2271
-#: src/libslic3r/PrintConfig.cpp:2280
-msgid "Extruders"
-msgstr "Extrusores"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/libslic3r/PrintConfig.cpp:387
-#: src/libslic3r/PrintConfig.cpp:504 src/libslic3r/PrintConfig.cpp:836
-#: src/libslic3r/PrintConfig.cpp:970 src/libslic3r/PrintConfig.cpp:1403
-#: src/libslic3r/PrintConfig.cpp:1765 src/libslic3r/PrintConfig.cpp:1954
-#: src/libslic3r/PrintConfig.cpp:2124
-msgid "Extrusion Width"
-msgstr "Ancho de Extrusión"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:41 src/slic3r/GUI/Tab.cpp:3179
-#: src/slic3r/GUI/Tab.cpp:3180 src/libslic3r/PrintConfig.cpp:2488
-#: src/libslic3r/PrintConfig.cpp:2495 src/libslic3r/PrintConfig.cpp:2504
-#: src/libslic3r/PrintConfig.cpp:2513 src/libslic3r/PrintConfig.cpp:2522
-#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2558
-#: src/libslic3r/PrintConfig.cpp:2567 src/libslic3r/PrintConfig.cpp:2576
-#: src/libslic3r/PrintConfig.cpp:2585 src/libslic3r/PrintConfig.cpp:2594
-#: src/libslic3r/PrintConfig.cpp:2603 src/libslic3r/PrintConfig.cpp:2612
-#: src/libslic3r/PrintConfig.cpp:2621
-msgid "Supports"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:42 src/slic3r/GUI/Tab.cpp:3205
-#: src/slic3r/GUI/Tab.cpp:3206 src/libslic3r/PrintConfig.cpp:2630
-#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2646
-#: src/libslic3r/PrintConfig.cpp:2655 src/libslic3r/PrintConfig.cpp:2664
-msgid "Pad"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:115
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:129
-msgid "Name"
-msgstr "Nombre"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:134
-msgid "Right button click the icon to change the object settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:142
-#, c-format
-msgid "Auto-repaired (%d errors):\n"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:145
-msgid "degenerate facets"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:146
-msgid "edges fixed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:147
-msgid "facets removed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:148
-msgid "facets added"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:149
-msgid "facets reversed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:150
-msgid "backwards edges"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:164
-msgid "Right button click the icon to fix STL through Netfabb"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:196 src/slic3r/GUI/Tab.cpp:1389
-#: src/libslic3r/PrintConfig.cpp:429
-msgid "Extruder"
-msgstr "Extrusor"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:615
-msgid "Select showing settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:655
-msgid "Load"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659 src/slic3r/GUI/GUI_ObjectList.cpp:688
-#: src/slic3r/GUI/GUI_ObjectList.cpp:691
-msgid "Box"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Cylinder"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Sphere"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Slab"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:671 src/slic3r/GUI/GUI_ObjectList.cpp:685
-msgid "Add part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:672
-msgid "Add modifier"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:673 src/slic3r/GUI/GUI_ObjectList.cpp:687
-msgid "Add support enforcer"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:674 src/slic3r/GUI/GUI_ObjectList.cpp:690
-msgid "Add support blocker"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:711
-msgid "Split to parts"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:725
-msgid "Add settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:739
-msgid "Change type"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1009
-msgid "You can't delete the last solid part from object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1017
-msgid "You can't delete the last intance from object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1044 src/slic3r/GUI/Plater.cpp:1825
-msgid ""
-"The selected object couldn't be split because it contains only one part."
-msgstr ""
-"El objeto seleccionado no se pudo dividir porque contiene solo una parte."
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1138
-msgid "Group manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1149
-msgid "Object manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1159
-msgid "Object Settings to modify"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1163
-msgid "Part Settings to modify"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1173
-msgid "Part manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1180
-msgid "Instance manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1655
-msgid "You can't change a type of the last solid part of the object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1662
-msgid "Select type of part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1744 src/slic3r/GUI/Tab.cpp:3070
-#: src/slic3r/GUI/Tab.cpp:3074
-msgid "The supplied name is not valid;"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1745 src/slic3r/GUI/Tab.cpp:3071
-msgid "the following characters are not allowed:"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:21
-msgid "Object Manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:132
-msgid "Object name"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252
-msgid "Position"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:205
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253
-msgid "Rotation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254
-msgid "Scale factors"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:321
-msgid "Translate"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_Preview.cpp:235
-msgid "View"
-msgstr "Vista"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/GUI_Preview.cpp:550
-#: src/libslic3r/GCode/PreviewData.cpp:394
-msgid "Feature type"
-msgstr "Tipo de función"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/PrintConfig.cpp:443
-msgid "Height"
-msgstr "Altura"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/PrintConfig.cpp:2255
-msgid "Width"
-msgstr "Ancho"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:242
-msgid "Volumetric flow rate"
-msgstr "Tasa de caudal volumétrico"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:243 src/slic3r/GUI/GUI_Preview.cpp:347
-#: src/slic3r/GUI/GUI_Preview.cpp:496 src/slic3r/GUI/GUI_Preview.cpp:718
-#: src/libslic3r/GCode/PreviewData.cpp:404
-msgid "Tool"
-msgstr "Herramienta"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:244 src/slic3r/GUI/GUI_Preview.cpp:550
-#: src/libslic3r/GCode/PreviewData.cpp:406
-msgid "Color Print"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_Preview.cpp:247
-msgid "Show"
-msgstr "Mostrar"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/GUI_Preview.cpp:251
-msgid "Feature types"
-msgstr "Tipos de funciones"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/GCode/PreviewData.cpp:163
-msgid "Perimeter"
-msgstr "PerÃmetro"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:254 src/libslic3r/GCode/PreviewData.cpp:164
-msgid "External perimeter"
-msgstr "PerÃmetro externo"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/GCode/PreviewData.cpp:165
-msgid "Overhang perimeter"
-msgstr "PerÃmetro de voladizos"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:256 src/libslic3r/GCode/PreviewData.cpp:166
-msgid "Internal infill"
-msgstr "Relleno interno"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:257 src/libslic3r/PrintConfig.cpp:1764
-#: src/libslic3r/PrintConfig.cpp:1775 src/libslic3r/GCode/PreviewData.cpp:167
-msgid "Solid infill"
-msgstr "Relleno sólido"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:258 src/libslic3r/PrintConfig.cpp:2123
-#: src/libslic3r/PrintConfig.cpp:2135 src/libslic3r/GCode/PreviewData.cpp:168
-msgid "Top solid infill"
-msgstr "Relleno sólido superior"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:259 src/libslic3r/GCode/PreviewData.cpp:169
-msgid "Bridge infill"
-msgstr "Relleno de puente"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:260 src/libslic3r/PrintConfig.cpp:880
-#: src/libslic3r/GCode/PreviewData.cpp:170
-msgid "Gap fill"
-msgstr "Relleno"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:261 src/slic3r/GUI/Tab.cpp:971
-#: src/libslic3r/GCode/PreviewData.cpp:171
-msgid "Skirt"
-msgstr "Falda"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:263 src/libslic3r/PrintConfig.cpp:2002
-#: src/libslic3r/GCode/PreviewData.cpp:173
-msgid "Support material interface"
-msgstr "Interfaz del material de soporte"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:264 src/slic3r/GUI/Tab.cpp:1049
-#: src/libslic3r/GCode/PreviewData.cpp:174
-msgid "Wipe tower"
-msgstr "Torre de limpieza"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:269 src/libslic3r/PrintConfig.cpp:2158
-msgid "Travel"
-msgstr "Recorrido"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:270
-msgid "Retractions"
-msgstr "Retracciones"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:271
-msgid "Unretractions"
-msgstr "Desretracciones"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:272
-msgid "Shells"
-msgstr "Carcasas"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:12
-msgid "Slic3r Prusa Edition - Keyboard Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:47
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:126
-msgid "Main Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:101
-msgid "Open project STL/OBJ/AMF/3MF with config, delete bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:102
-msgid "Import STL/OBJ/AMF/3MF without config, keep bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:103
-msgid "Load Config from .ini/amf/3mf/gcode"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:104 src/slic3r/GUI/Plater.cpp:605
-msgid "Export G-code"
-msgstr "Exportar código G"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:105
-msgid "Save project (3MF)"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:106
-msgid "Load Config from .ini/amf/3mf/gcode and merge"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:107
-msgid "(Re)slice"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:108
-msgid "Quick slice"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 src/slic3r/GUI/MainFrame.cpp:289
-msgid "Repeat last quick slice"
-msgstr "Repetir el último laminado rápido"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:110
-msgid "Select Plater Tab"
-msgstr "Seleccionar la pestaña Ajustes de la base"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:111
-msgid "Quick slice and Save as"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:112
-msgid "Select Print Settings Tab"
-msgstr "Seleccionar la pestaña Ajustes de impresión"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:113
-msgid "Select Filament Settings Tab"
-msgstr "Seleccionar la pestaña Ajustes de Filamento"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:114
-msgid "Select Printer Settings Tab"
-msgstr "Selecccionar la pestaña Ajustes de impresora"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:115
-msgid "Switch to 3D"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:116
-msgid "Switch to Preview"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 src/slic3r/GUI/Preferences.cpp:10
-msgid "Preferences"
-msgstr "Preferencias"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:118
-#: src/slic3r/GUI/PrintHostDialogs.cpp:89
-msgid "Print host upload queue"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:119
-msgid "Camera view "
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:120
-msgid "Add Instance to selected object "
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:121
-msgid "Remove Instance from selected object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:122
-msgid "Show keyboard shortcuts list"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:123
-msgid "Switch between 3D and Preview"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:124
-msgid "Select multiple object/Move multiple object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:132
-msgid "Arrange"
-msgstr "Organiza"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:133
-msgid "Select All objects"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:134
-msgid "Delete selected"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:135
-msgid "Delete All"
-msgstr "Borrar todo"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:136
-msgid "Gizmo move"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:137
-msgid "Gizmo scale"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:138
-msgid "Gizmo rotate"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:139
-msgid "Gizmo cut"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:140
-msgid "Gizmo Place face on bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:141
-msgid "Gizmo SLA support points"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:142
-msgid "Zoom to Bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:143
-msgid "Zoom to all objects in scene, if none selected"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:144
-msgid "Zoom to selected object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:145
-msgid "Zoom in"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:146
-msgid "Zoom out"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:147
-msgid "Unselect gizmo, keep object selection"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:149
-msgid "Plater Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
-msgid "Arrow Up"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
-msgid "Upper Layer"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
-msgid "Arrow Down"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
-msgid "Lower Layer"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:158
-msgid "Preview Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:53
-msgid ""
-" - Remember to check for updates at http://github.com/prusa3d/slic3r/releases"
-msgstr ""
-" - Recuerda comprobar si hay actualizaciones en http://github.com/prusa3d/"
-"slic3r/releases"
-
-#: src/slic3r/GUI/MainFrame.cpp:130
-msgid "Plater"
-msgstr "Plataforma"
-
-#: src/slic3r/GUI/MainFrame.cpp:236
-msgid "&Open"
-msgstr "&Abrir"
-
-#: src/slic3r/GUI/MainFrame.cpp:236
-msgid "Open a project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:238
-msgid "&Save"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:238
-msgid "Save current project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:240
-msgid "Save &as"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:240
-msgid "Save current project file as"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:246
-msgid "Import STL/OBJ/AM&F/3MF"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:246
-msgid "Load a model"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:249
-msgid "Import &Config"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:249
-msgid "Load exported configuration file"
-msgstr "Cargar archivo de configuración exportado"
-
-#: src/slic3r/GUI/MainFrame.cpp:251
-msgid "Import Config from &project"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:251
-msgid "Load configuration from project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:254
-msgid "Import Config &Bundle"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:254
-msgid "Load presets from a bundle"
-msgstr "Cargar preajustes de un paquete"
-
-#: src/slic3r/GUI/MainFrame.cpp:256
-msgid "&Import"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:259
-msgid "Export &G-code"
-msgstr "Exportar código &G"
-
-#: src/slic3r/GUI/MainFrame.cpp:259
-msgid "Export current plate as G-code"
-msgstr "Exportar plataforma actual como código G"
-
-#: src/slic3r/GUI/MainFrame.cpp:262
-msgid "Export plate as &STL"
-msgstr "Exportar plataforma como &STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:262
-msgid "Export current plate as STL"
-msgstr "Exportar plataforma actual como STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:264
-msgid "Export plate as &AMF"
-msgstr "Exportar plataforma como &AMF"
-
-#: src/slic3r/GUI/MainFrame.cpp:264
-msgid "Export current plate as AMF"
-msgstr "Exportar plataforma actual como AMF"
-
-#: src/slic3r/GUI/MainFrame.cpp:267
-msgid "Export &Config"
-msgstr "Exportar A&juste"
-
-#: src/slic3r/GUI/MainFrame.cpp:267
-msgid "Export current configuration to file"
-msgstr "Exportar la configuración actual al archivo"
-
-#: src/slic3r/GUI/MainFrame.cpp:269
-msgid "Export Config &Bundle"
-msgstr "Exportar &Conjunto de Ajustes"
-
-#: src/slic3r/GUI/MainFrame.cpp:269
-msgid "Export all presets to file"
-msgstr "Exportar todos los preajustes al archivo"
-
-#: src/slic3r/GUI/MainFrame.cpp:271
-msgid "&Export"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:277
-msgid "Quick Slice"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:277
-msgid "Slice a file into a G-code"
-msgstr "Laminar un archivo en un código G"
-
-#: src/slic3r/GUI/MainFrame.cpp:283
-msgid "Quick Slice and Save As"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:283
-msgid "Slice a file into a G-code, save as"
-msgstr "Laminar un archivo en un código G, guárdar como"
-
-#: src/slic3r/GUI/MainFrame.cpp:289
-msgid "Repeat Last Quick Slice"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:297
-msgid "(Re)Slice &Now"
-msgstr "(Re)Laminar A&hora"
-
-#: src/slic3r/GUI/MainFrame.cpp:297
-msgid "Start new slicing process"
-msgstr "Comenzar un nuevo proceso de laminado"
-
-#: src/slic3r/GUI/MainFrame.cpp:300
-msgid "&Repair STL file"
-msgstr "&Reparar el archivo STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:300
-msgid "Automatically repair an STL file"
-msgstr "Archivo STL reparado automáticamente"
-
-#: src/slic3r/GUI/MainFrame.cpp:303
-msgid "&Quit"
-msgstr "&Salir"
-
-#: src/slic3r/GUI/MainFrame.cpp:303
-msgid "Quit Slic3r"
-msgstr "Salir de Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:321
-msgid "&Select all"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:321
-msgid "Selects all objects"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:324
-msgid "&Delete selected"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:324
-msgid "Deletes the current selection"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:326
-msgid "Delete &all"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:326
-msgid "Deletes all objects"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:339
-msgid "&Plater Tab"
-msgstr "La pestaña Ajustes de la &base"
-
-#: src/slic3r/GUI/MainFrame.cpp:339
-msgid "Show the plater"
-msgstr "Mostrar la base"
-
-#: src/slic3r/GUI/MainFrame.cpp:346
-msgid "P&rint Settings Tab"
-msgstr "La pestaña Ajustes de im&presión"
-
-#: src/slic3r/GUI/MainFrame.cpp:346
-msgid "Show the print settings"
-msgstr "Mostrar los ajustes de impresión"
-
-#: src/slic3r/GUI/MainFrame.cpp:348
-msgid "&Filament Settings Tab"
-msgstr "La pestaña Ajustes de &Filamento"
-
-#: src/slic3r/GUI/MainFrame.cpp:348
-msgid "Show the filament settings"
-msgstr "Mostrar los ajustes de filamento"
-
-#: src/slic3r/GUI/MainFrame.cpp:350
-msgid "Print&er Settings Tab"
-msgstr "La pestaña Ajustes de imp&resora"
-
-#: src/slic3r/GUI/MainFrame.cpp:350
-msgid "Show the printer settings"
-msgstr "Mostrar la configuración de la impresora"
-
-#: src/slic3r/GUI/MainFrame.cpp:354
-msgid "3&D"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:354
-msgid "Show the 3D editing view"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:356
-msgid "Pre&view"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:356
-msgid "Show the 3D slices preview"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:377
-msgid "Print &Host Upload Queue"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:377
-msgid "Display the Print Host Upload Queue window"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "&Iso"
-msgstr "Is&o"
-
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "Iso View"
-msgstr "Vista Iso"
-
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "&Top"
-msgstr "&Superior"
-
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "Top View"
-msgstr "Vista superior"
-
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "&Bottom"
-msgstr "&Inferior"
-
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "Bottom View"
-msgstr "Vista inferior"
-
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "&Front"
-msgstr "&Frontal"
-
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "Front View"
-msgstr "Vista frontal"
-
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "R&ear"
-msgstr "&Trasera"
-
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "Rear View"
-msgstr "Vista trasera"
-
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "&Left"
-msgstr "Iz&quierda"
-
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "Left View"
-msgstr "Vista izquierda"
-
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "&Right"
-msgstr "De&recha"
-
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "Right View"
-msgstr "Vista derecha"
-
-#: src/slic3r/GUI/MainFrame.cpp:409
-msgid "Prusa 3D &Drivers"
-msgstr "Controla&dores de Prusa 3D"
-
-#: src/slic3r/GUI/MainFrame.cpp:409
-msgid "Open the Prusa3D drivers download page in your browser"
-msgstr ""
-"Abrir la página de descarga de los controladores Prusa3D en su navegador"
-
-#: src/slic3r/GUI/MainFrame.cpp:411
-msgid "Prusa Edition &Releases"
-msgstr "&Lanzamientos de la Edición Prusa"
-
-#: src/slic3r/GUI/MainFrame.cpp:411
-msgid "Open the Prusa Edition releases page in your browser"
-msgstr "Abrir la página de lanzamientos de Prusa Edition en su navegador"
-
-#: src/slic3r/GUI/MainFrame.cpp:417
-msgid "Slic3r &Website"
-msgstr "&Website de Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:417
-msgid "Open the Slic3r website in your browser"
-msgstr "Abrir el sitio web de Slic3r en su navegador"
-
-#: src/slic3r/GUI/MainFrame.cpp:419
-msgid "Slic3r &Manual"
-msgstr "&Manual de Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:419
-msgid "Open the Slic3r manual in your browser"
-msgstr "Abrir el manual de Slic3r en su navegador"
-
-#: src/slic3r/GUI/MainFrame.cpp:422
-msgid "System &Info"
-msgstr "&Información del Sistema"
-
-#: src/slic3r/GUI/MainFrame.cpp:422
-msgid "Show system information"
-msgstr "Mostrar la información del sistema"
-
-#: src/slic3r/GUI/MainFrame.cpp:424
-msgid "Show &Configuration Folder"
-msgstr "Mostrar carpeta &Configuración"
-
-#: src/slic3r/GUI/MainFrame.cpp:424
-msgid "Show user configuration folder (datadir)"
-msgstr "Mostrar carpeta de configuración de usuario (datadir)"
-
-#: src/slic3r/GUI/MainFrame.cpp:426
-msgid "Report an I&ssue"
-msgstr "Informar de un &problema"
-
-#: src/slic3r/GUI/MainFrame.cpp:426
-msgid "Report an issue on the Slic3r Prusa Edition"
-msgstr "Informar de un problema de Slic3r Edición Prusa"
-
-#: src/slic3r/GUI/MainFrame.cpp:428
-msgid "&About Slic3r"
-msgstr "&Acerca de Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:428
-msgid "Show about dialog"
-msgstr "Mostrar Acerca de"
-
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "&Keyboard Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "Show the list of the keyboard shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:439
-msgid "&File"
-msgstr "&Archivo"
-
-#: src/slic3r/GUI/MainFrame.cpp:440
-msgid "&Edit"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:441
-msgid "&Window"
-msgstr "Ve&ntana"
-
-#: src/slic3r/GUI/MainFrame.cpp:442
-msgid "&View"
-msgstr "&Ver"
-
-#: src/slic3r/GUI/MainFrame.cpp:445
-msgid "&Help"
-msgstr "A&yuda"
-
-#: src/slic3r/GUI/MainFrame.cpp:472
-msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Elija un archivo para laminar (STL / OBJ / AMF / 3MF / PRUSA):"
-
-#: src/slic3r/GUI/MainFrame.cpp:486
-msgid "No previously sliced file."
-msgstr "Ningún archivo previamente laminado."
-
-#: src/slic3r/GUI/MainFrame.cpp:487 src/slic3r/GUI/PrintHostDialogs.cpp:173
-msgid "Error"
-msgstr "Error"
-
-#: src/slic3r/GUI/MainFrame.cpp:492
-msgid "Previously sliced file ("
-msgstr "Archivo anterior laminado ("
-
-#: src/slic3r/GUI/MainFrame.cpp:492
-msgid ") not found."
-msgstr ") no encontrado."
-
-#: src/slic3r/GUI/MainFrame.cpp:493
-msgid "File Not Found"
-msgstr "Archivo no encontrado"
-
-#: src/slic3r/GUI/MainFrame.cpp:531 src/slic3r/GUI/Tab.cpp:3031
-msgid "Save "
-msgstr "Guardar "
-
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid "SVG"
-msgstr "SVG"
-
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid "G-code"
-msgstr "Código G"
-
-# Context: L('Save ') . ($params{export_svg} ? L('SVG') : L('G-code')) . L(' file as:'), e.g. "Save G-Code file as:"
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid " file as:"
-msgstr " archivo como:"
-
-#: src/slic3r/GUI/MainFrame.cpp:548
-msgid "Save zip file as:"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:560
-msgid "Slicing"
-msgstr "Laminando"
-
-#: src/slic3r/GUI/MainFrame.cpp:560
-msgid "Processing "
-msgstr "Procesamiento "
-
-#: src/slic3r/GUI/MainFrame.cpp:583
-msgid " was successfully sliced."
-msgstr " fue laminado con éxito."
-
-#: src/slic3r/GUI/MainFrame.cpp:585
-msgid "Slicing Done!"
-msgstr "¡Laminado realizado!"
-
-#: src/slic3r/GUI/MainFrame.cpp:600
-msgid "Select the STL file to repair:"
-msgstr "Seleccione el archivo STL para reparar:"
-
-#: src/slic3r/GUI/MainFrame.cpp:614
-msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
-msgstr ""
-"Guardar archivo OBJ (menos propenso a errores de coordinación que STL) como:"
-
-#: src/slic3r/GUI/MainFrame.cpp:629
-msgid "Your file was repaired."
-msgstr "Tu fichero fue reparado."
-
-#: src/slic3r/GUI/MainFrame.cpp:629
-msgid "Repair"
-msgstr "Reparar"
-
-#: src/slic3r/GUI/MainFrame.cpp:643
-msgid "Save configuration as:"
-msgstr "Guardar la configuración como:"
-
-#: src/slic3r/GUI/MainFrame.cpp:663 src/slic3r/GUI/MainFrame.cpp:727
-msgid "Select configuration to load:"
-msgstr "Seleccione la configuración para cargar:"
-
-#: src/slic3r/GUI/MainFrame.cpp:700
-msgid "Save presets bundle as:"
-msgstr "Guarde el conjunto de ajustes iniciales como:"
-
-#: src/slic3r/GUI/MainFrame.cpp:751
-#, c-format
-msgid "%d presets successfully imported."
-msgstr "%d ajustes iniciales importados con éxito."
-
-#: src/slic3r/GUI/MsgDialog.cpp:66
-msgid "Slic3r error"
-msgstr "Error de Slic3r"
-
-#: src/slic3r/GUI/MsgDialog.cpp:66
-msgid "Slic3r has encountered an error"
-msgstr "Slic3r ha encontrado un error"
-
-#: src/slic3r/GUI/MsgDialog.cpp:84
-msgid "Copy to clipboard"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:107
-msgid "Info"
-msgstr "Info"
-
-#: src/slic3r/GUI/Plater.cpp:126
-msgid "Volume"
-msgstr "Volumen"
-
-#: src/slic3r/GUI/Plater.cpp:127
-msgid "Facets"
-msgstr "Facetas"
-
-#: src/slic3r/GUI/Plater.cpp:128
-msgid "Materials"
-msgstr "Materiales"
-
-#: src/slic3r/GUI/Plater.cpp:131
-msgid "Manifold"
-msgstr "Manifold"
-
-#: src/slic3r/GUI/Plater.cpp:174
-msgid "Sliced Info"
-msgstr "Información del laminado"
-
-#: src/slic3r/GUI/Plater.cpp:193 src/slic3r/GUI/Plater.cpp:823
-msgid "Used Filament (m)"
-msgstr "Filamento usado (m)"
-
-#: src/slic3r/GUI/Plater.cpp:194
-msgid "Used Filament (mm³)"
-msgstr "Filamento usado (mm³)"
-
-#: src/slic3r/GUI/Plater.cpp:195
-msgid "Used Filament (g)"
-msgstr "Filamento usado (g)"
-
-#: src/slic3r/GUI/Plater.cpp:196 src/slic3r/GUI/Plater.cpp:838
-#: src/libslic3r/PrintConfig.cpp:718
-msgid "Cost"
-msgstr "Coste"
-
-#: src/slic3r/GUI/Plater.cpp:197 src/slic3r/GUI/Plater.cpp:852
-msgid "Estimated printing time"
-msgstr "Tiempo estimado de impresión"
-
-#: src/slic3r/GUI/Plater.cpp:198
-msgid "Number of tool changes"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:361
-msgid "Support"
-msgstr "Soporte"
-
-#: src/slic3r/GUI/Plater.cpp:364
-msgid "Select what kind of support do you need"
-msgstr "Selecciona qué clase de soporte necesitas"
-
-#: src/slic3r/GUI/Plater.cpp:365 src/libslic3r/GCode/PreviewData.cpp:162
-msgid "None"
-msgstr "Ninguno"
-
-#: src/slic3r/GUI/Plater.cpp:366 src/libslic3r/PrintConfig.cpp:1904
-msgid "Support on build plate only"
-msgstr "Soporte en la base solamente"
-
-#: src/slic3r/GUI/Plater.cpp:367
-msgid "Everywhere"
-msgstr "En todos los sitios"
-
-#: src/slic3r/GUI/Plater.cpp:379 src/slic3r/GUI/Tab.cpp:977
-msgid "Brim"
-msgstr "Margen"
-
-#: src/slic3r/GUI/Plater.cpp:381
-msgid ""
-"This flag enables the brim that will be printed around each object on the "
-"first layer."
-msgstr ""
-"Esta opción activa el margen que se imprimirá alrededor del objeto en la "
-"primera capa."
-
-#: src/slic3r/GUI/Plater.cpp:390
-msgid "Purging volumes"
-msgstr "Volúmenes de purga"
-
-#: src/slic3r/GUI/Plater.cpp:556
-msgid "Print settings"
-msgstr "Configuración de impresión"
-
-#: src/slic3r/GUI/Plater.cpp:557 src/slic3r/GUI/Tab.cpp:1380
-#: src/slic3r/GUI/Tab.cpp:1381
-msgid "Filament"
-msgstr "Filamento"
-
-#: src/slic3r/GUI/Plater.cpp:558 src/slic3r/GUI/Preset.cpp:1158
-msgid "SLA print"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:559 src/slic3r/GUI/Preset.cpp:1159
-msgid "SLA material"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:560
-msgid "Printer"
-msgstr "Impresora"
-
-#: src/slic3r/GUI/Plater.cpp:588
-msgid "Send to printer"
-msgstr "Enviar a la impresora"
-
-#: src/slic3r/GUI/Plater.cpp:607
-msgid "Slice now"
-msgstr "Laminar ahora"
-
-#: src/slic3r/GUI/Plater.cpp:787
-#, c-format
-msgid "%d (%d shells)"
-msgstr "%d (%d pieles)"
-
-#: src/slic3r/GUI/Plater.cpp:792
-#, c-format
-msgid "Auto-repaired (%d errors)"
-msgstr "Reparados automáticamente (%d errores)"
-
-#: src/slic3r/GUI/Plater.cpp:795
-#, c-format
-msgid ""
-"%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d "
-"facets reversed, %d backwards edges"
-msgstr ""
-"%d facetas problemáticas, %d aristas corregidas, %d facetas eliminadas, %d "
-"facetas añadidas, %d facetas invertidas, %d aristas del revés"
-
-#: src/slic3r/GUI/Plater.cpp:805
-msgid "Yes"
-msgstr "SÃ"
-
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
-msgid "objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
-msgid "wipe tower"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:855
-msgid "normal mode"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:859
-msgid "silent mode"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1304
-msgid "Loading"
-msgstr "Cargando"
-
-#: src/slic3r/GUI/Plater.cpp:1314
-#, c-format
-msgid "Processing input file %s\n"
-msgstr "Procesando archivo de entrada %s\n"
-
-#: src/slic3r/GUI/Plater.cpp:1366
-msgid ""
-"This file contains several objects positioned at multiple heights. Instead "
-"of considering them as multiple objects, should I consider\n"
-"this file as a single object having multiple parts?\n"
-msgstr ""
-"Este archivo contiene varios objetos posicionados en múltiples alturas. En "
-"lugar de considerarlos como objetos múltiples, ¿deberÃa considerar\n"
-" este archivo como un único objeto que tiene varias partes?\n"
-
-#: src/slic3r/GUI/Plater.cpp:1369 src/slic3r/GUI/Plater.cpp:1411
-msgid "Multi-part object detected"
-msgstr "Objeto de piezas múltiples detectado"
-
-#: src/slic3r/GUI/Plater.cpp:1388
-#, c-format
-msgid ""
-"You can't to add the object(s) from %s because of one or some of them "
-"is(are) multi-part"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1408
-msgid ""
-"Multiple objects were loaded for a multi-material printer.\n"
-"Instead of considering them as multiple objects, should I consider\n"
-"these files to represent a single object having multiple parts?\n"
-msgstr ""
-"Se cargaron varios objetos para una impresora de varios materiales.\n"
-"En lugar de considerarlos como objetos múltiples, ¿deberÃa considerar\n"
-"estos archivos para formar un solo objeto que tiene varias partes?\n"
-
-#: src/slic3r/GUI/Plater.cpp:1424
-msgid "Loaded"
-msgstr "Cargado"
-
-#: src/slic3r/GUI/Plater.cpp:1492
-msgid ""
-"Your object appears to be too large, so it was automatically scaled down to "
-"fit your print bed."
-msgstr ""
-"Tu pieza parece demasiado grande, asà que se ha escalado automáticamente "
-"para que pueda caber en la base de impresión."
-
-#: src/slic3r/GUI/Plater.cpp:1493
-msgid "Object too large?"
-msgstr "Objeto demasiado grande?"
-
-#: src/slic3r/GUI/Plater.cpp:1536
-msgid "Export print config"
-msgstr "Exporta la configuración de impresión"
-
-#: src/slic3r/GUI/Plater.cpp:1538
-msgid "Save file as:"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1702
-msgid "Arranging canceled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1705
-msgid "Arranging"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1736
-msgid "Could not arrange model objects! Some geometries may be invalid."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1740
-msgid "Arranging done."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1782
-msgid "Orientation search canceled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1787
-msgid "Searching for optimal orientation"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1797
-msgid "Orientation found."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1818
-msgid ""
-"The selected object can't be split because it contains more than one volume/"
-"material."
-msgstr ""
-"El objeto seleccionado no se puede dividir porque contiene más de un "
-"volumen / material."
-
-#: src/slic3r/GUI/Plater.cpp:1945 src/slic3r/GUI/PrintHostDialogs.cpp:174
-msgid "Cancelling"
-msgstr "Cancelando"
-
-#: src/slic3r/GUI/Plater.cpp:1962
-msgid "Another export job is currently running."
-msgstr "Otro trabajo de exportación está aún en marcha."
-
-#: src/slic3r/GUI/Plater.cpp:2215
-msgid "Export failed"
-msgstr "Error al exportar"
-
-#: src/slic3r/GUI/Plater.cpp:2219 src/slic3r/GUI/PrintHostDialogs.cpp:175
-msgid "Cancelled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2346 src/slic3r/GUI/Tab.cpp:2736
-msgid "Delete"
-msgstr "Borra"
-
-#: src/slic3r/GUI/Plater.cpp:2346
-msgid "Remove the selected object"
-msgstr "Eliminar el objeto seleccionado"
-
-#: src/slic3r/GUI/Plater.cpp:2349
-msgid "Increase copies"
-msgstr "Aumentar copias"
-
-#: src/slic3r/GUI/Plater.cpp:2349
-msgid "Place one more copy of the selected object"
-msgstr "Colocar una copia más del objeto seleccionado"
-
-#: src/slic3r/GUI/Plater.cpp:2351
-msgid "Decrease copies"
-msgstr "Reducir copias"
-
-#: src/slic3r/GUI/Plater.cpp:2351
-msgid "Remove one copy of the selected object"
-msgstr "Eliminar una copia del objeto seleccionado"
-
-#: src/slic3r/GUI/Plater.cpp:2353
-msgid "Set number of copies"
-msgstr "Establecer el número de copias"
-
-#: src/slic3r/GUI/Plater.cpp:2353
-msgid "Change the number of copies of the selected object"
-msgstr "Cambiar el número de copias del objeto seleccionado"
-
-#: src/slic3r/GUI/Plater.cpp:2363
-msgid "Reload from Disk"
-msgstr "Recargar desde el disco"
-
-#: src/slic3r/GUI/Plater.cpp:2363
-msgid "Reload the selected file from Disk"
-msgstr "Recargar el archivo seleccionado del disco"
-
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export object as STL"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export this single object as STL file"
-msgstr "Exportar este único objeto como archivo STL"
-
-#: src/slic3r/GUI/Plater.cpp:2375
-msgid "Along X axis"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2375
-msgid "Mirror the selected object along the X axis"
-msgstr "Duplicar el objeto seleccionado a lo largo del eje X"
-
-#: src/slic3r/GUI/Plater.cpp:2377
-msgid "Along Y axis"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2377
-msgid "Mirror the selected object along the Y axis"
-msgstr "Duplicar el objeto seleccionado a lo largo del eje Y"
-
-#: src/slic3r/GUI/Plater.cpp:2379
-msgid "Along Z axis"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2379
-msgid "Mirror the selected object along the Z axis"
-msgstr "Duplicar el objeto seleccionado a lo largo del eje Z"
-
-#: src/slic3r/GUI/Plater.cpp:2382
-msgid "Mirror"
-msgstr "Duplicar"
-
-#: src/slic3r/GUI/Plater.cpp:2382
-msgid "Mirror the selected object"
-msgstr "Duplicar el objeto seleccionado"
-
-#: src/slic3r/GUI/Plater.cpp:2400
-msgid "To objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2400 src/slic3r/GUI/Plater.cpp:2431
-msgid "Split the selected object into individual objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2402
-msgid "To parts"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2402 src/slic3r/GUI/Plater.cpp:2451
-msgid "Split the selected object into individual sub-parts"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2405 src/slic3r/GUI/Plater.cpp:2431
-#: src/slic3r/GUI/Plater.cpp:2451
-msgid "Split"
-msgstr "Dividir"
-
-#: src/slic3r/GUI/Plater.cpp:2405
-msgid "Split the selected object"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2435
-msgid "Optimize orientation"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2435
-msgid "Optimize the rotation of the object for better print results."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2795
-msgid "Save G-code file as:"
-msgstr "Guardar archivo Código G como:"
-
-#: src/slic3r/GUI/Plater.cpp:2795
-msgid "Save Zip file as:"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2845
-#, c-format
-msgid "STL file exported to %s"
-msgstr "Archivo STL exportado a %s"
-
-#: src/slic3r/GUI/Plater.cpp:2861
-#, c-format
-msgid "AMF file exported to %s"
-msgstr "Archivo AMF exportado a %s"
-
-#: src/slic3r/GUI/Plater.cpp:2864
-#, c-format
-msgid "Error exporting AMF file %s"
-msgstr "Error al exportar el archivo AMF %s"
-
-#: src/slic3r/GUI/Plater.cpp:2891
-#, c-format
-msgid "3MF file exported to %s"
-msgstr "Archivo 3MF exportado a %s"
-
-#: src/slic3r/GUI/Plater.cpp:2894
-#, c-format
-msgid "Error exporting 3MF file %s"
-msgstr "Error al exportar el archivo 3MF %s"
-
-#: src/slic3r/GUI/Preferences.cpp:17 src/slic3r/GUI/Tab.cpp:1712
-#: src/slic3r/GUI/Tab.cpp:1911
-msgid "General"
-msgstr "General"
-
-#: src/slic3r/GUI/Preferences.cpp:34
-msgid "Remember output directory"
-msgstr "Recordar el directorio de salida"
-
-#: src/slic3r/GUI/Preferences.cpp:36
-msgid ""
-"If this is enabled, Slic3r will prompt the last output directory instead of "
-"the one containing the input files."
-msgstr ""
-"Si esto está habilitado, Slic3r solicitará el último directorio de salida en "
-"lugar del que contiene los archivos de entrada."
-
-#: src/slic3r/GUI/Preferences.cpp:42
-msgid "Auto-center parts"
-msgstr "Piezas auto-centradas"
-
-#: src/slic3r/GUI/Preferences.cpp:44
-msgid ""
-"If this is enabled, Slic3r will auto-center objects around the print bed "
-"center."
-msgstr ""
-"Si esto está habilitado, Slic3r centrará automáticamente los objetos "
-"alrededor del centro de la base de impresión."
-
-#: src/slic3r/GUI/Preferences.cpp:50
-msgid "Background processing"
-msgstr "Procesamiento en segundo plano"
-
-#: src/slic3r/GUI/Preferences.cpp:52
-msgid ""
-"If this is enabled, Slic3r will pre-process objects as soon as they're "
-"loaded in order to save time when exporting G-code."
-msgstr ""
-"Si esto está habilitado, Slic3r preprocesará objetos tan pronto como se "
-"carguen para ahorrar tiempo al exportar el código G."
-
-#: src/slic3r/GUI/Preferences.cpp:74
-msgid "Suppress \" - default - \" presets"
-msgstr "Suprima los ajustes iniciales \"- predeterminado -\""
-
-#: src/slic3r/GUI/Preferences.cpp:76
-msgid ""
-"Suppress \" - default - \" presets in the Print / Filament / Printer "
-"selections once there are any other valid presets available."
-msgstr ""
-"Suprima los ajustes iniciales \"- predeterminado -\" en las selecciones "
-"Imprimir / Filamento / Impresora una vez que haya otros ajustes "
-"preestablecidos disponibles."
-
-#: src/slic3r/GUI/Preferences.cpp:82
-msgid "Show incompatible print and filament presets"
-msgstr "Mostrar impresiones incompatibles y ajustes iniciales de filamentos"
-
-#: src/slic3r/GUI/Preferences.cpp:84
-msgid ""
-"When checked, the print and filament presets are shown in the preset editor "
-"even if they are marked as incompatible with the active printer"
-msgstr ""
-"Cuando está marcada, los ajustes preestablecidos de impresión y filamento se "
-"muestran en el editor de ajustes preestablecidos, incluso si están marcados "
-"como incompatibles con la impresora activa"
-
-#: src/slic3r/GUI/Preferences.cpp:90
-msgid "Use legacy OpenGL 1.1 rendering"
-msgstr "Usar el renderizado OpenGL 1.1"
-
-#: src/slic3r/GUI/Preferences.cpp:92
-msgid ""
-"If you have rendering issues caused by a buggy OpenGL 2.0 driver, you may "
-"try to check this checkbox. This will disable the layer height editing and "
-"anti aliasing, so it is likely better to upgrade your graphics driver."
-msgstr ""
-"Si tiene problemas de procesamiento causados ​​por un controlador OpenGL 2.0 "
-"defectuoso, puede intentar marcar esta casilla de verificación. Esto "
-"desactivará la edición de altura de capa y el antialiasing, por lo que es "
-"mejor actualizar su controlador de gráficos."
-
-#: src/slic3r/GUI/Preferences.cpp:115
-msgid "You need to restart Slic3r to make the changes effective."
-msgstr "Es necesario reiniciar Slic3r para hacer los cambios efectivos."
-
-#: src/slic3r/GUI/Preset.cpp:170
-msgid "modified"
-msgstr ""
-
-#: src/slic3r/GUI/Preset.cpp:862 src/slic3r/GUI/Preset.cpp:902
-#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:962
-#: src/slic3r/GUI/PresetBundle.cpp:1459 src/slic3r/GUI/PresetBundle.cpp:1512
-msgid "System presets"
-msgstr "Ajustes del sistema"
-
-#: src/slic3r/GUI/Preset.cpp:906 src/slic3r/GUI/Preset.cpp:966
-#: src/slic3r/GUI/PresetBundle.cpp:1517
-msgid "User presets"
-msgstr "Ajustes de usuario"
-
-#: src/slic3r/GUI/Preset.cpp:1157
-msgid "filament"
-msgstr ""
-
-#: src/slic3r/GUI/PresetHints.cpp:28
-#, c-format
-msgid ""
-"If estimated layer time is below ~%ds, fan will run at %d%% and print speed "
-"will be reduced so that no less than %ds are spent on that layer (however, "
-"speed will never be reduced below %dmm/s)."
-msgstr ""
-"Si el tiempo de capa estimado está por debajo de ~ %ds, el ventilador "
-"funcionará en %d %% y la velocidad de impresión se reducirá de modo que no "
-"se gaste menos de %d s en esa capa (sin embargo, la velocidad nunca se "
-"reducirá por debajo de %d mm/s) ."
-
-#: src/slic3r/GUI/PresetHints.cpp:32
-#, c-format
-msgid ""
-"\n"
-"If estimated layer time is greater, but still below ~%ds, fan will run at a "
-"proportionally decreasing speed between %d%% and %d%%."
-msgstr ""
-"\n"
-"Si el tiempo estimado de la capa es mayor, pero todavÃa por debajo de ~%ds, "
-"el ventilador funcionará a una velocidad proporcionalmente menor entre %d%% "
-"y %d%%."
-
-#: src/slic3r/GUI/PresetHints.cpp:36
-msgid ""
-"\n"
-"During the other layers, fan "
-msgstr ""
-"\n"
-"Durante las otras capas, ventilador "
-
-#: src/slic3r/GUI/PresetHints.cpp:38
-msgid "Fan "
-msgstr "Ventilador "
-
-#: src/slic3r/GUI/PresetHints.cpp:43
-#, c-format
-msgid "will always run at %d%% "
-msgstr "siempre funcionará al %d %% "
-
-#: src/slic3r/GUI/PresetHints.cpp:46
-#, c-format
-msgid "except for the first %d layers"
-msgstr "a excepción de las %d primeras capas"
-
-#: src/slic3r/GUI/PresetHints.cpp:50
-msgid "except for the first layer"
-msgstr "a excepción de la primera capa"
-
-#: src/slic3r/GUI/PresetHints.cpp:52
-msgid "will be turned off."
-msgstr "será apagada."
-
-#: src/slic3r/GUI/PresetHints.cpp:153
-msgid "external perimeters"
-msgstr "perÃmetros externos"
-
-#: src/slic3r/GUI/PresetHints.cpp:162
-msgid "perimeters"
-msgstr "perÃmetros"
-
-#: src/slic3r/GUI/PresetHints.cpp:171
-msgid "infill"
-msgstr "relleno"
-
-#: src/slic3r/GUI/PresetHints.cpp:181
-msgid "solid infill"
-msgstr "relleno sólido"
-
-#: src/slic3r/GUI/PresetHints.cpp:189
-msgid "top solid infill"
-msgstr "relleno sólido superior"
-
-#: src/slic3r/GUI/PresetHints.cpp:200
-msgid "support"
-msgstr "soporte"
-
-#: src/slic3r/GUI/PresetHints.cpp:210
-msgid "support interface"
-msgstr "interfaz de soporte"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "First layer volumetric"
-msgstr "Primera capa volumétrica"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "Bridging volumetric"
-msgstr "Puente volumétrico"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "Volumetric"
-msgstr "Volumétrico"
-
-#: src/slic3r/GUI/PresetHints.cpp:217
-msgid " flow rate is maximized "
-msgstr " la tasa de flujo se maximiza "
-
-#: src/slic3r/GUI/PresetHints.cpp:220
-msgid "by the print profile maximum"
-msgstr "por el máximo perfil de impresión"
-
-#: src/slic3r/GUI/PresetHints.cpp:221
-msgid "when printing "
-msgstr "cuando se imprime "
-
-#: src/slic3r/GUI/PresetHints.cpp:222
-msgid " with a volumetric rate "
-msgstr " con una tasa volumétrica "
-
-#: src/slic3r/GUI/PresetHints.cpp:226
-#, c-format
-msgid "%3.2f mm³/s"
-msgstr "%3.2f mm³/seg"
-
-#: src/slic3r/GUI/PresetHints.cpp:228
-#, c-format
-msgid " at filament speed %3.2f mm/s."
-msgstr " a una velocidad de filamento de %3.2f mm/s."
-
-#: src/slic3r/GUI/PresetHints.cpp:247
-msgid ""
-"Recommended object thin wall thickness: Not available due to invalid layer "
-"height."
-msgstr ""
-"Grosor recomendado de la pared del objeto recomendado: no disponible debido "
-"a la altura de capa no válida."
-
-#: src/slic3r/GUI/PresetHints.cpp:264
-#, c-format
-msgid "Recommended object thin wall thickness for layer height %.2f and "
-msgstr ""
-"Espesor de pared delgada del objeto recomendado para una altura de capa %.2f "
-"y "
-
-#: src/slic3r/GUI/PresetHints.cpp:271
-#, c-format
-msgid "%d lines: %.2lf mm"
-msgstr "%d lÃneas: %.2lf mm"
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
-msgid "Send G-Code to printer host"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
-msgid "Upload to Printer Host with the following filename:"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:31
-msgid "Start printing after upload"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:33
-msgid "Use forward slashes ( / ) as a directory separator if needed."
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:111
-msgid "Cancel selected"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:113
-msgid "Show error message"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:115
-msgid "Close"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:152
-#: src/slic3r/GUI/PrintHostDialogs.cpp:171
-msgid "Enqueued"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:172
-msgid "Uploading"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:176
-msgid "Completed"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:214
-msgid "Error uploading to print host:"
-msgstr ""
-
-#: src/slic3r/GUI/RammingChart.cpp:23
-msgid "NO RAMMING AT ALL"
-msgstr "NO EMPUJAR EN ABSOLUTO"
-
-#: src/slic3r/GUI/RammingChart.cpp:76
-msgid "Time"
-msgstr "Tiempo"
-
-#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78 src/libslic3r/PrintConfig.cpp:603
-#: src/libslic3r/PrintConfig.cpp:653 src/libslic3r/PrintConfig.cpp:670
-#: src/libslic3r/PrintConfig.cpp:2352 src/libslic3r/PrintConfig.cpp:2360
-#: src/libslic3r/PrintConfig.cpp:2432 src/libslic3r/PrintConfig.cpp:2440
-msgid "s"
-msgstr "$"
-
-#: src/slic3r/GUI/RammingChart.cpp:81
-msgid "Volumetric speed"
-msgstr "Velocidad volumétrica"
-
-#: src/slic3r/GUI/SysInfoDialog.cpp:40
-msgid "Slic3r Prusa Edition - System Information"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:49 src/libslic3r/PrintConfig.cpp:202
-msgid "Compatible printers"
-msgstr "Impresoras compatibles"
-
-#: src/slic3r/GUI/Tab.cpp:50
-msgid "Select the printers this profile is compatible with."
-msgstr "Seleccione las impresoras con las que este perfil es compatible."
-
-#: src/slic3r/GUI/Tab.cpp:55 src/libslic3r/PrintConfig.cpp:215
-msgid "Compatible print profiles"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:56
-msgid "Select the print profiles this profile is compatible with."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:118
-msgid "Save current "
-msgstr "Guardar actualmente "
-
-#: src/slic3r/GUI/Tab.cpp:119
-msgid "Delete this preset"
-msgstr "Borra este ajuste"
-
-#: src/slic3r/GUI/Tab.cpp:131
-msgid ""
-"Hover the cursor over buttons to find more information \n"
-"or click this button."
-msgstr ""
-"Sitúa el cursos sobre los botones para más información o haz clic en este "
-"botón."
-
-#: src/slic3r/GUI/Tab.cpp:824
-msgid "It's a default preset."
-msgstr "Es un valor por defecto."
-
-#: src/slic3r/GUI/Tab.cpp:825
-msgid "It's a system preset."
-msgstr "Es un ajuste del sistema."
-
-#: src/slic3r/GUI/Tab.cpp:826
-msgid "Current preset is inherited from "
-msgstr "El valor actual se ha heredado de "
-
-#: src/slic3r/GUI/Tab.cpp:831
-msgid "It can't be deleted or modified. "
-msgstr "No se puede borrar ni modificar. "
-
-#: src/slic3r/GUI/Tab.cpp:832
-msgid ""
-"Any modifications should be saved as a new preset inherited from this one. "
-msgstr ""
-"Cualquier modificación se almacenará como un nuevo ajuste basado en este. "
-
-#: src/slic3r/GUI/Tab.cpp:833
-msgid "To do that please specify a new name for the preset."
-msgstr "Para hacerlo por favor especifique un nuevo nombre para esos ajustes."
-
-#: src/slic3r/GUI/Tab.cpp:837
-msgid "Additional information:"
-msgstr "Información adicional:"
-
-#: src/slic3r/GUI/Tab.cpp:843
-msgid "printer model"
-msgstr "modelo de impresora"
-
-#: src/slic3r/GUI/Tab.cpp:851
-msgid "default print profile"
-msgstr "perfil de impresión por defecto"
-
-#: src/slic3r/GUI/Tab.cpp:854
-msgid "default filament profile"
-msgstr "perfil de filamento por defecto"
-
-#: src/slic3r/GUI/Tab.cpp:868
-msgid "default SLA material profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:872
-msgid "default SLA print profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:919 src/slic3r/GUI/Tab.cpp:3174
-msgid "Layers and perimeters"
-msgstr "Capas y perÃmetros"
-
-#: src/slic3r/GUI/Tab.cpp:920 src/libslic3r/PrintConfig.cpp:46
-msgid "Layer height"
-msgstr "Altura de la capa"
-
-#: src/slic3r/GUI/Tab.cpp:924
-msgid "Vertical shells"
-msgstr "Carcasas verticales"
-
-#: src/slic3r/GUI/Tab.cpp:935
-msgid "Horizontal shells"
-msgstr "Carcasas horizontales"
-
-#: src/slic3r/GUI/Tab.cpp:936 src/libslic3r/PrintConfig.cpp:1788
-msgid "Solid layers"
-msgstr "Capas sólidas"
-
-#: src/slic3r/GUI/Tab.cpp:941
-msgid "Quality (slower slicing)"
-msgstr "Calidad (laminado más lento)"
-
-#: src/slic3r/GUI/Tab.cpp:958
-msgid "Reducing printing time"
-msgstr "Reduciendo el tiempo de impresión"
-
-#: src/slic3r/GUI/Tab.cpp:970
-msgid "Skirt and brim"
-msgstr "Falda y balsa"
-
-#: src/slic3r/GUI/Tab.cpp:987
-msgid "Raft"
-msgstr "Balsa"
-
-#: src/slic3r/GUI/Tab.cpp:991
-msgid "Options for support material and raft"
-msgstr "Opciones de material de soporte y balsa"
-
-#: src/slic3r/GUI/Tab.cpp:1006
-msgid "Speed for print moves"
-msgstr "Velocidad para movimientos de impresión"
-
-#: src/slic3r/GUI/Tab.cpp:1018
-msgid "Speed for non-print moves"
-msgstr "Velocidad para movimientos sin impresión"
-
-#: src/slic3r/GUI/Tab.cpp:1021
-msgid "Modifiers"
-msgstr "Modificadores"
-
-#: src/slic3r/GUI/Tab.cpp:1024
-msgid "Acceleration control (advanced)"
-msgstr "Control de aceleración (avanzado)"
-
-#: src/slic3r/GUI/Tab.cpp:1031
-msgid "Autospeed (advanced)"
-msgstr "Velocidad automática (avanzado)"
-
-#: src/slic3r/GUI/Tab.cpp:1037
-msgid "Multiple Extruders"
-msgstr "Múltiples Extrusores"
-
-#: src/slic3r/GUI/Tab.cpp:1045
-msgid "Ooze prevention"
-msgstr "Prevención de goteo"
-
-#: src/slic3r/GUI/Tab.cpp:1062
-msgid "Extrusion width"
-msgstr "Ancho de extrusión"
-
-#: src/slic3r/GUI/Tab.cpp:1072
-msgid "Overlap"
-msgstr "Superposición"
-
-#: src/slic3r/GUI/Tab.cpp:1075
-msgid "Flow"
-msgstr "Flujo"
-
-#: src/slic3r/GUI/Tab.cpp:1078
-msgid "Other"
-msgstr "Otro"
-
-#: src/slic3r/GUI/Tab.cpp:1085 src/slic3r/GUI/Tab.cpp:3213
-msgid "Output options"
-msgstr "Opciones de salida"
-
-#: src/slic3r/GUI/Tab.cpp:1086
-msgid "Sequential printing"
-msgstr "Impresión secuencial"
-
-#: src/slic3r/GUI/Tab.cpp:1088
-msgid "Extruder clearance (mm)"
-msgstr "Distancia libre del extrusor (mm)"
-
-#: src/slic3r/GUI/Tab.cpp:1097 src/slic3r/GUI/Tab.cpp:3214
-msgid "Output file"
-msgstr "Archivo de salida"
-
-#: src/slic3r/GUI/Tab.cpp:1103 src/libslic3r/PrintConfig.cpp:1438
-msgid "Post-processing scripts"
-msgstr "Scripts de postprocesamiento"
-
-#: src/slic3r/GUI/Tab.cpp:1109 src/slic3r/GUI/Tab.cpp:1110
-#: src/slic3r/GUI/Tab.cpp:1483 src/slic3r/GUI/Tab.cpp:1484
-#: src/slic3r/GUI/Tab.cpp:1883 src/slic3r/GUI/Tab.cpp:1884
-#: src/slic3r/GUI/Tab.cpp:1964 src/slic3r/GUI/Tab.cpp:1965
-#: src/slic3r/GUI/Tab.cpp:3119 src/slic3r/GUI/Tab.cpp:3120
-msgid "Notes"
-msgstr "Notas"
-
-#: src/slic3r/GUI/Tab.cpp:1116 src/slic3r/GUI/Tab.cpp:1491
-#: src/slic3r/GUI/Tab.cpp:1890 src/slic3r/GUI/Tab.cpp:1971
-#: src/slic3r/GUI/Tab.cpp:3127 src/slic3r/GUI/Tab.cpp:3219
-msgid "Dependencies"
-msgstr "Dependencias"
-
-#: src/slic3r/GUI/Tab.cpp:1117 src/slic3r/GUI/Tab.cpp:1492
-#: src/slic3r/GUI/Tab.cpp:1891 src/slic3r/GUI/Tab.cpp:1972
-#: src/slic3r/GUI/Tab.cpp:3128 src/slic3r/GUI/Tab.cpp:3220
-msgid "Profile dependencies"
-msgstr "Dependencias de perfil"
-
-#: src/slic3r/GUI/Tab.cpp:1161
-#, no-c-format
-msgid ""
-"The Spiral Vase mode requires:\n"
-"- one perimeter\n"
-"- no top solid layers\n"
-"- 0% fill density\n"
-"- no support material\n"
-"- no ensure_vertical_shell_thickness\n"
-"\n"
-"Shall I adjust those settings in order to enable Spiral Vase?"
-msgstr ""
-"El modo Vaso requiere: \n"
-"- un perÃmetro \n"
-"- sin capas sólidas superiores \n"
-"- densidad de relleno del 0% \n"
-"- sin material de soporte \n"
-"- no ensure_vertical_shell_thickness \n"
-"\n"
-"¿Debo ajustar esos ajustes para habilitar el modo Vaso?"
-
-#: src/slic3r/GUI/Tab.cpp:1168
-msgid "Spiral Vase"
-msgstr "Modo Vaso"
-
-#: src/slic3r/GUI/Tab.cpp:1191
-msgid ""
-"The Wipe Tower currently supports the non-soluble supports only\n"
-"if they are printed with the current extruder without triggering a tool "
-"change.\n"
-"(both support_material_extruder and support_material_interface_extruder need "
-"to be set to 0).\n"
-"\n"
-"Shall I adjust those settings in order to enable the Wipe Tower?"
-msgstr ""
-"Actualmente, la Torre de Limpieza solo admite los soportes no solubles si se "
-"imprimen con la extrusora actual sin activar un cambio de herramienta.\n"
-"(ambos support_material_extruder y support_material_interface_extruder deben "
-"configurarse en 0). \n"
-"\n"
-"¿Debo ajustar esos ajustes para habilitar la Torre de Limpieza?"
-
-#: src/slic3r/GUI/Tab.cpp:1195 src/slic3r/GUI/Tab.cpp:1212
-msgid "Wipe Tower"
-msgstr "Torre de limpieza"
-
-#: src/slic3r/GUI/Tab.cpp:1209
-msgid ""
-"For the Wipe Tower to work with the soluble supports, the support layers\n"
-"need to be synchronized with the object layers.\n"
-"\n"
-"Shall I synchronize support layers in order to enable the Wipe Tower?"
-msgstr ""
-"Para que la Torre de Limpieza funcione con los soportes solubles, las capas "
-"de soporte deben sincronizarse con las capas de objeto. \n"
-" \n"
-" ¿DeberÃa sincronizar las capas de soporte para habilitar la Torre de "
-"Limpieza?"
-
-#: src/slic3r/GUI/Tab.cpp:1227
-msgid ""
-"Supports work better, if the following feature is enabled:\n"
-"- Detect bridging perimeters\n"
-"\n"
-"Shall I adjust those settings for supports?"
-msgstr ""
-"Los soportes funcionan mejor, si la siguiente caracterÃstica está "
-"habilitada: \n"
-"- Detectar perÃmetros de puente\n"
-"\n"
-"¿Debo ajustar esas configuraciones para los soportes?"
-
-#: src/slic3r/GUI/Tab.cpp:1230
-msgid "Support Generator"
-msgstr "Generador de soportes"
-
-# Used in context: _("The ") + str_fill_pattern + _(" infill pattern is not supposed to work at 100% density.\n")
-#: src/slic3r/GUI/Tab.cpp:1272
-msgid "The "
-msgstr "El "
-
-#: src/slic3r/GUI/Tab.cpp:1272
-#, no-c-format
-msgid ""
-" infill pattern is not supposed to work at 100% density.\n"
-"\n"
-"Shall I switch to rectilinear fill pattern?"
-msgstr ""
-" ese patrón de relleno no está pensado para trabajar al 100% de densidad. \n"
-"\n"
-"¿DeberÃa cambiar a un patrón de relleno rectilÃneo?"
-
-#: src/slic3r/GUI/Tab.cpp:1388
-msgid "Temperature "
-msgstr "Temperatura "
-
-#: src/slic3r/GUI/Tab.cpp:1394
-msgid "Bed"
-msgstr "Base"
-
-#: src/slic3r/GUI/Tab.cpp:1399
-msgid "Cooling"
-msgstr "Enfriamiento"
-
-#: src/slic3r/GUI/Tab.cpp:1400 src/libslic3r/PrintConfig.cpp:1333
-#: src/libslic3r/PrintConfig.cpp:2212
-msgid "Enable"
-msgstr "Habilitar"
-
-#: src/slic3r/GUI/Tab.cpp:1411
-msgid "Fan settings"
-msgstr "Configuración del ventilador"
-
-#: src/slic3r/GUI/Tab.cpp:1412
-msgid "Fan speed"
-msgstr "Velocidad del ventilador"
-
-#: src/slic3r/GUI/Tab.cpp:1420
-msgid "Cooling thresholds"
-msgstr "Umbrales de enfriamiento"
-
-#: src/slic3r/GUI/Tab.cpp:1426
-msgid "Filament properties"
-msgstr "Propiedades del filamento"
-
-#: src/slic3r/GUI/Tab.cpp:1430
-msgid "Print speed override"
-msgstr "Anular la velocidad de impresión"
-
-#: src/slic3r/GUI/Tab.cpp:1440
-msgid "Toolchange parameters with single extruder MM printers"
-msgstr ""
-"Parámetros del cambio de herramienta para impresoras de un único extrusor MM"
-
-#: src/slic3r/GUI/Tab.cpp:1455
-msgid "Ramming settings"
-msgstr "Ajustes de empuje"
-
-#: src/slic3r/GUI/Tab.cpp:1470 src/slic3r/GUI/Tab.cpp:1846
-msgid "Custom G-code"
-msgstr "Código G personalizado"
-
-#: src/slic3r/GUI/Tab.cpp:1471 src/slic3r/GUI/Tab.cpp:1847
-#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:1833
-msgid "Start G-code"
-msgstr "Comenzar el código G"
-
-#: src/slic3r/GUI/Tab.cpp:1477 src/slic3r/GUI/Tab.cpp:1853
-#: src/libslic3r/PrintConfig.cpp:333 src/libslic3r/PrintConfig.cpp:344
-msgid "End G-code"
-msgstr "Código G final"
-
-#: src/slic3r/GUI/Tab.cpp:1588 src/slic3r/GUI/Tab.cpp:1642
-msgid " Browse "
-msgstr " Hojea "
-
-#: src/slic3r/GUI/Tab.cpp:1605 src/slic3r/GUI/Tab.cpp:1788
-msgid "Test"
-msgstr "Test"
-
-#: src/slic3r/GUI/Tab.cpp:1615
-msgid "Could not get a valid Printer Host reference"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1621 src/slic3r/GUI/Tab.cpp:1801
-msgid "Success!"
-msgstr "¡Éxito!"
-
-#: src/slic3r/GUI/Tab.cpp:1636
-msgid ""
-"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
-"signed certificate."
-msgstr ""
-"El archivo HTTPS CA es opcional. Sólo se necesita si vas a usar HTTPS con un "
-"certificado auto-firmado."
-
-#: src/slic3r/GUI/Tab.cpp:1648
-msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
-msgstr "Archivos de certificados (*.crt, *.pem)|*.crt;*.pem|Todos|*.*"
-
-#: src/slic3r/GUI/Tab.cpp:1649
-msgid "Open CA certificate file"
-msgstr "Abrir archivo de certificado CA"
-
-#: src/slic3r/GUI/Tab.cpp:1676
-msgid ""
-"HTTPS CA File:\n"
-"\tOn this system, Slic3r uses HTTPS certificates from the system Certificate "
-"Store or Keychain.\n"
-"\tTo use a custom CA file, please import your CA file into Certificate "
-"Store / Keychain."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1713 src/slic3r/GUI/Tab.cpp:1912
-msgid "Size and coordinates"
-msgstr "Tamaño y coordenadas"
-
-#: src/slic3r/GUI/Tab.cpp:1717 src/slic3r/GUI/Tab.cpp:1916
-#: src/slic3r/GUI/Tab.cpp:2792
-msgid " Set "
-msgstr " Ajuste "
-
-#: src/slic3r/GUI/Tab.cpp:1740
-msgid "Capabilities"
-msgstr "Capacidades"
-
-#: src/slic3r/GUI/Tab.cpp:1745
-msgid "Number of extruders of the printer."
-msgstr "Número de extrusores de la impresora."
-
-#: src/slic3r/GUI/Tab.cpp:1773
-msgid "USB/Serial connection"
-msgstr "Conexión USB/Serial"
-
-#: src/slic3r/GUI/Tab.cpp:1774 src/libslic3r/PrintConfig.cpp:1660
-msgid "Serial port"
-msgstr "Puerto serial"
-
-#: src/slic3r/GUI/Tab.cpp:1779
-msgid "Rescan serial ports"
-msgstr "Vuelver a examinar los puertos serie"
-
-#: src/slic3r/GUI/Tab.cpp:1801
-msgid "Connection to printer works correctly."
-msgstr "La conexión con la impresora funciona correctamente."
-
-#: src/slic3r/GUI/Tab.cpp:1804
-msgid "Connection failed."
-msgstr "Conexión fallida."
-
-#: src/slic3r/GUI/Tab.cpp:1817 src/slic3r/GUI/Tab.cpp:1961
-msgid "Print Host upload"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1859 src/libslic3r/PrintConfig.cpp:92
-msgid "Before layer change G-code"
-msgstr "Código G para antes del cambio de capa"
-
-#: src/slic3r/GUI/Tab.cpp:1865 src/libslic3r/PrintConfig.cpp:1042
-msgid "After layer change G-code"
-msgstr "Código G tras un cambio de capa"
-
-#: src/slic3r/GUI/Tab.cpp:1871 src/libslic3r/PrintConfig.cpp:2111
-msgid "Tool change G-code"
-msgstr "Código G de cambio de herramienta"
-
-#: src/slic3r/GUI/Tab.cpp:1877
-msgid "Between objects G-code (for sequential printing)"
-msgstr "Código G para entre objetos (para impresión secuencial)"
-
-#: src/slic3r/GUI/Tab.cpp:1938
-msgid "Display"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1949 src/slic3r/GUI/Tab.cpp:3102
-msgid "Corrections"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2011 src/slic3r/GUI/Tab.cpp:2073
-#: src/libslic3r/PrintConfig.cpp:1088 src/libslic3r/PrintConfig.cpp:1098
-#: src/libslic3r/PrintConfig.cpp:1108 src/libslic3r/PrintConfig.cpp:1121
-#: src/libslic3r/PrintConfig.cpp:1132 src/libslic3r/PrintConfig.cpp:1143
-#: src/libslic3r/PrintConfig.cpp:1154
-msgid "Machine limits"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2025
-msgid "Values in this column are for Full Power mode"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2026
-msgid "Full Power"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2031
-msgid "Values in this column are for Silent mode"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2032
-msgid "Silent"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2040
-msgid "Maximum feedrates"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2045
-msgid "Maximum accelerations"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2052
-msgid "Jerk limits"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2057
-msgid "Minimum feedrates"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2095 src/slic3r/GUI/Tab.cpp:2103
-msgid "Single extruder MM setup"
-msgstr "Ajuste para MM con un solo extrusor"
-
-#: src/slic3r/GUI/Tab.cpp:2104
-msgid "Single extruder multimaterial parameters"
-msgstr "Parámetros multimaterial para un sólo extrusor"
-
-#: src/slic3r/GUI/Tab.cpp:2118 src/libslic3r/GCode/PreviewData.cpp:475
-#, c-format
-msgid "Extruder %d"
-msgstr "Extrusor %d"
-
-#: src/slic3r/GUI/Tab.cpp:2125
-msgid "Layer height limits"
-msgstr "LÃmites de altura de la capa"
-
-#: src/slic3r/GUI/Tab.cpp:2130
-msgid "Position (for multi-extruder printers)"
-msgstr "Posición (para impresoras con múltiples extrusores )"
-
-#: src/slic3r/GUI/Tab.cpp:2133
-msgid "Retraction"
-msgstr "Retracción"
-
-#: src/slic3r/GUI/Tab.cpp:2136
-msgid "Only lift Z"
-msgstr "Solo levantar Z"
-
-#: src/slic3r/GUI/Tab.cpp:2149
-msgid ""
-"Retraction when tool is disabled (advanced settings for multi-extruder "
-"setups)"
-msgstr ""
-"Retracción cuando la herramienta está desactivada (configuraciones avanzadas "
-"para configuraciones de extrusores múltiples )"
-
-#: src/slic3r/GUI/Tab.cpp:2153
-msgid "Preview"
-msgstr "Previsualización"
-
-#: src/slic3r/GUI/Tab.cpp:2284
-msgid ""
-"The Wipe option is not available when using the Firmware Retraction mode.\n"
-"\n"
-"Shall I disable it in order to enable Firmware Retraction?"
-msgstr ""
-"La opción Limpiar no está disponible cuando se usa el modo Retracción de "
-"firmware. ¿Lo inhabilito para habilitar la Retracción de firmware?"
-
-#: src/slic3r/GUI/Tab.cpp:2286
-msgid "Firmware Retraction"
-msgstr "Retracción del firmware"
-
-#: src/slic3r/GUI/Tab.cpp:2565
-#, c-format
-msgid "Default preset (%s)"
-msgstr "Ajustes por defecto (%s)"
-
-#: src/slic3r/GUI/Tab.cpp:2566
-#, c-format
-msgid "Preset (%s)"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2583
-msgid "has the following unsaved changes:"
-msgstr "tiene los siguientes cambios sin guardar:"
-
-#: src/slic3r/GUI/Tab.cpp:2586
-msgid "is not compatible with printer"
-msgstr "no es compatible con la impresora"
-
-#: src/slic3r/GUI/Tab.cpp:2587
-msgid "is not compatible with print profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2589
-msgid "and it has the following unsaved changes:"
-msgstr "y tiene los siguientes cambios sin guardar:"
-
-#: src/slic3r/GUI/Tab.cpp:2592
-msgid "Discard changes and continue anyway?"
-msgstr "¿Descartar los cambios y continuar de todos modos?"
-
-#: src/slic3r/GUI/Tab.cpp:2593
-msgid "Unsaved Changes"
-msgstr "Cambios no guardados"
-
-#: src/slic3r/GUI/Tab.cpp:2604
-msgid "It's impossible to print multi-part object(s) with SLA technology."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2605
-msgid "Please check your object list before preset changing."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2699
-msgid "The supplied name is empty. It can't be saved."
-msgstr "El nombre proporcionado está vacÃo. No se puede guardar."
-
-#: src/slic3r/GUI/Tab.cpp:2704
-msgid "Cannot overwrite a system profile."
-msgstr "No se puede sobre-escribir un perfil del sistema."
-
-#: src/slic3r/GUI/Tab.cpp:2708
-msgid "Cannot overwrite an external profile."
-msgstr "No puedo sobre-escribir un valor externo."
-
-#: src/slic3r/GUI/Tab.cpp:2734
-msgid "remove"
-msgstr "eliminar"
-
-#: src/slic3r/GUI/Tab.cpp:2734
-msgid "delete"
-msgstr "borra"
-
-#: src/slic3r/GUI/Tab.cpp:2735
-msgid "Are you sure you want to "
-msgstr "¿Está seguro que quiere "
-
-#: src/slic3r/GUI/Tab.cpp:2735
-msgid " the selected preset?"
-msgstr " el ajuste inicial seleccionado?"
-
-#: src/slic3r/GUI/Tab.cpp:2736
-msgid "Remove"
-msgstr "Eliminar"
-
-#: src/slic3r/GUI/Tab.cpp:2737
-msgid " Preset"
-msgstr " Ajuste inicial"
-
-#: src/slic3r/GUI/Tab.cpp:2791
-msgid "All"
-msgstr "Todo"
-
-#: src/slic3r/GUI/Tab.cpp:2869
-msgid ""
-"LOCKED LOCK;indicates that the settings are the same as the system values "
-"for the current option group"
-msgstr ""
-"CANDADO CERRADO;indica que los ajustes son los mismos que los del sistema "
-"para el grupo de opciones actual"
-
-#: src/slic3r/GUI/Tab.cpp:2872
-msgid ""
-"UNLOCKED LOCK;indicates that some settings were changed and are not equal to "
-"the system values for the current option group.\n"
-"Click the UNLOCKED LOCK icon to reset all settings for current option group "
-"to the system values."
-msgstr ""
-"CANDADO CERRADO;indica que algunos de los ajustes se modificaron y no son "
-"iguales a los valores almacenados para el grupo de opciones actual.\n"
-"Haz clic en el CANDADO CERRADO para devolver los valores del grupo de "
-"opciones actual a los valores del sistema."
-
-#: src/slic3r/GUI/Tab.cpp:2878
-msgid ""
-"WHITE BULLET;for the left button: \tindicates a non-system preset,\n"
-"for the right button: \tindicates that the settings hasn't been modified."
-msgstr ""
-"El sÃmbolo de VIÑETA BLANCA;para el botón izquierdo: indica un ajuste no "
-"original, para el botón derecho: indica que el ajuste no se ha modificado."
-
-#: src/slic3r/GUI/Tab.cpp:2882
-msgid ""
-"BACK ARROW;indicates that the settings were changed and are not equal to the "
-"last saved preset for the current option group.\n"
-"Click the BACK ARROW icon to reset all settings for the current option group "
-"to the last saved preset."
-msgstr ""
-"FLECHA ATRÃS;indica si los ajustes cambiaron y ya no son iguales a los "
-"ajustes guardados la última vez para el grupo de opciones actual. \n"
-"Haz click en la FLECHA ATRÃS para devolver los valores del grupo de opciones "
-"actual a los valores guardados la última vez."
-
-#: src/slic3r/GUI/Tab.cpp:2908
-msgid ""
-"LOCKED LOCK icon indicates that the settings are the same as the system "
-"values for the current option group"
-msgstr ""
-"El sÃmbolo del CANDADO CERRADO indica que los ajustes son los mismos que los "
-"valores del sistema para el grupo de opciones actual"
-
-#: src/slic3r/GUI/Tab.cpp:2910
-msgid ""
-"UNLOCKED LOCK icon indicates that some settings were changed and are not "
-"equal to the system values for the current option group.\n"
-"Click to reset all settings for current option group to the system values."
-msgstr ""
-"El CANDADO ABIERTO indica que algunos de los ajustes cambiaron y que no son "
-"iguales a los valores del sistema para el grupo de opciones actual. \n"
-"Haz clic para restaurar los ajustes del grupo de opciones actual a los "
-"valores del sistema."
-
-#: src/slic3r/GUI/Tab.cpp:2913
-msgid "WHITE BULLET icon indicates a non system preset."
-msgstr "El sÃmbolo de VIÑETA BLANCA indica un ajuste que no es del sistema."
-
-#: src/slic3r/GUI/Tab.cpp:2916
-msgid ""
-"WHITE BULLET icon indicates that the settings are the same as in the last "
-"saved preset for the current option group."
-msgstr ""
-"El sÃmbolo de VIÑETA BLANCA indica que los ajustes son los mismos que los de "
-"la última vez que salvaste los ajustes para el grupo de opciones actual."
-
-#: src/slic3r/GUI/Tab.cpp:2918
-msgid ""
-"BACK ARROW icon indicates that the settings were changed and are not equal "
-"to the last saved preset for the current option group.\n"
-"Click to reset all settings for the current option group to the last saved "
-"preset."
-msgstr ""
-"El sÃmbolo de FLECHA ATRÃS indica que los ajustes cambiaron y que no son "
-"iguales a los que se guardaron para el grupo de opciones actual.\n"
-"Haz clic para devolver esos valores a los últimos guardados."
-
-#: src/slic3r/GUI/Tab.cpp:2924
-msgid ""
-"LOCKED LOCK icon indicates that the value is the same as the system value."
-msgstr ""
-"El CANDADO CERRADO indica que los valores son los mismos que los del sistema."
-
-#: src/slic3r/GUI/Tab.cpp:2925
-msgid ""
-"UNLOCKED LOCK icon indicates that the value was changed and is not equal to "
-"the system value.\n"
-"Click to reset current value to the system value."
-msgstr ""
-"El CANDADO ABIERTO indica que el valor cambió y ya no es igual al valor del "
-"sistema. \n"
-"Haz clic para devolver el valor al valor del sistema."
-
-#: src/slic3r/GUI/Tab.cpp:2931
-msgid ""
-"WHITE BULLET icon indicates that the value is the same as in the last saved "
-"preset."
-msgstr ""
-"El sÃmbolo de VIÑETA BLANCA indica que los valores son los mismos que los de "
-"los ajustes guardados la última vez."
-
-#: src/slic3r/GUI/Tab.cpp:2932
-msgid ""
-"BACK ARROW icon indicates that the value was changed and is not equal to the "
-"last saved preset.\n"
-"Click to reset current value to the last saved preset."
-msgstr ""
-"La FLECHA ATRÃS indica que el valor ha cambiado y ya no es el mismo que el "
-"guardado la última vez.\n"
-"Haz clic para restaurar el valor al último ajuste guardado."
-
-# Used in this context: _("Save ") + title + _(" as:")
-#: src/slic3r/GUI/Tab.cpp:3031
-msgid " as:"
-msgstr " como:"
-
-#: src/slic3r/GUI/Tab.cpp:3075
-msgid "the following postfix are not allowed:"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3079
-msgid "The supplied name is not available."
-msgstr "El nombre proporcionado no está disponible."
-
-#: src/slic3r/GUI/Tab.cpp:3092
-msgid "Material"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3094 src/slic3r/GUI/Tab.cpp:3176
-msgid "Layers"
-msgstr "Capas"
-
-#: src/slic3r/GUI/Tab.cpp:3098
-msgid "Exposure"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3183
-msgid "Support head"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3188
-msgid "Support pillar"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3196
-msgid "Connection of the support sticks and junctions"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3200
-msgid "Automatic generation"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.hpp:293 src/slic3r/GUI/Tab.hpp:381
-msgid "Print Settings"
-msgstr "Configuración de Impresión"
-
-#: src/slic3r/GUI/Tab.hpp:311
-msgid "Filament Settings"
-msgstr "Configuración del filamento"
-
-#: src/slic3r/GUI/Tab.hpp:344
-msgid "Printer Settings"
-msgstr "Configuración de la Impresora"
-
-#: src/slic3r/GUI/Tab.hpp:367
-msgid "Material Settings"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.hpp:393
-msgid "Save preset"
-msgstr "Guardar ajuste inicial"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
-msgid "Update available"
-msgstr "Actualización disponible"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
-msgid "New version of Slic3r PE is available"
-msgstr "Nueva versión de Slic3r PE disponible"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:35
-msgid "To download, follow the link below."
-msgstr "Para descargar, sigue el enlace que hay más abajo."
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:42
-msgid "Current version:"
-msgstr "Versión actual:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:44
-msgid "New version:"
-msgstr "Nueva versión:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:52
-msgid "Don't notify about new releases any more"
-msgstr "No quiero recibir avisos de nuevas versiones"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:70 src/slic3r/GUI/UpdateDialogs.cpp:162
-msgid "Configuration update"
-msgstr "Actualización de configuración"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:70
-msgid "Configuration update is available"
-msgstr "Hay disponible una actualización de la Configuración"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:73
-msgid ""
-"Would you like to install it?\n"
-"\n"
-"Note that a full configuration snapshot will be created first. It can then "
-"be restored at any time should there be a problem with the new version.\n"
-"\n"
-"Updated configuration bundles:"
-msgstr ""
-"¿Te gustarÃa instalarlo?\n"
-"\n"
-"Ten en cuenta que primero se creará una instantánea de la configuración. Asà "
-"que se puede recuperar en cualquier momento en caso de que hubiera algún "
-"problema con la nueva versión.\n"
-"Updated configuration bundles:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
-msgid "Slic3r incompatibility"
-msgstr "Incompatibilidad de Slic3r"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
-msgid "Slic3r configuration is incompatible"
-msgstr "La configuración de Slic3r es incompatible"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:112
-msgid ""
-"This version of Slic3r PE is not compatible with currently installed "
-"configuration bundles.\n"
-"This probably happened as a result of running an older Slic3r PE after using "
-"a newer one.\n"
-"\n"
-"You may either exit Slic3r and try again with a newer version, or you may re-"
-"run the initial configuration. Doing so will create a backup snapshot of the "
-"existing configuration before installing files compatible with this Slic3r.\n"
-msgstr ""
-"Esta versión de Slic3r PE no es compatible con los grupos de configuraciones "
-"instaladas. Esto sucede probablemente por ejecutar una versión de Slic3r PE "
-"después de haber usado una más reciente.\n"
-"\n"
-"Puedes salir de Slic3r e intentarlo de nuevo con una versión más reciente, o "
-"puedes volver a ejecutar la configuración inicial. Al hacerlo se creará una "
-"copia de respaldo de la configuración existente antes de instalar la nueva "
-"compatible con esta versión de Slic3r.\n"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:121
-#, c-format
-msgid "This Slic3r PE version: %s"
-msgstr "Esta versión de Slic3r: %s"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:126
-msgid "Incompatible bundles:"
-msgstr "Grupos incompatibles:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:142
-msgid "Exit Slic3r"
-msgstr "Salir de Slic3r"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:145
-msgid "Re-configure"
-msgstr "Reconfigurar"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:166
-#, c-format
-msgid ""
-"Slic3r PE now uses an updated configuration structure.\n"
-"\n"
-"So called 'System presets' have been introduced, which hold the built-in "
-"default settings for various printers. These System presets cannot be "
-"modified, instead, users now may create their own presets inheriting "
-"settings from one of the System presets.\n"
-"An inheriting preset may either inherit a particular value from its parent "
-"or override it with a customized value.\n"
-"\n"
-"Please proceed with the %s that follows to set up the new presets and to "
-"choose whether to enable automatic preset updates."
-msgstr ""
-"Ahora Slic3r PE usa una estructura actualizada para la configuración. \n"
-"\n"
-"Se han introducido los llamados 'Ajustes del sistema' , que tienen valores "
-"por defecto para varias impresoras. Estos ajustes del sistema no pueden "
-"modificarse, por el contrario, los usuarios pueden crear nuevos ajustes que "
-"se basan en alguno de ellos.\n"
-"Un ajuste nuevo puede heredar un valor de un ajuste existente o bien tener "
-"un nuevo valor personalizado.\n"
-"\n"
-"Por favof, continúa con el %s que sigue para establecer los nuevos ajustes y "
-"seleccionar si quieres que estos se actualicen automáticamente."
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:182
-msgid "For more information please visit our wiki page:"
-msgstr "Para más información visite por favor la página de nuestra wiki:"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:10
-msgid "Ramming customization"
-msgstr "Configuración de empuje"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:36
-msgid ""
-"Ramming denotes the rapid extrusion just before a tool change in a single-"
-"extruder MM printer. Its purpose is to properly shape the end of the "
-"unloaded filament so it does not prevent insertion of the new filament and "
-"can itself be reinserted later. This phase is important and different "
-"materials can require different extrusion speeds to get the good shape. For "
-"this reason, the extrusion rates during ramming are adjustable.\n"
-"\n"
-"This is an expert-level setting, incorrect adjustment will likely lead to "
-"jams, extruder wheel grinding into filament etc."
-msgstr ""
-"El empuje señala la extrusión rápida justo antes de un cambio de filamento "
-"en una impresora MM de un sólo extrusor. Su propósito es asegurar una forma "
-"adecuada para el extremo de filamento que se va a descargar, para que no "
-"haya problemas al insertar uno nuevo y para que se pueda volver a insertar "
-"este más tarde. Esta fase es importante y diferentes materiales puede "
-"precisar diferentes velocidades para obtener la forma correcta. Por este "
-"motivo, las velocidades extrusión durante el empuje son ajustables.\n"
-"\n"
-"Este es un ajuste para expertos, ajustarlo incorrectamente podrá producir "
-"atascos, que la rueda del extrusor arañe el filamento, etc."
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78
-msgid "Total ramming time"
-msgstr "Tiempo de empuje total"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:80
-msgid "Total rammed volume"
-msgstr "Volumen total empujado"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:84
-msgid "Ramming line width"
-msgstr "Ancho de la linea de empuje"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:86
-msgid "Ramming line spacing"
-msgstr "Espaciado de la linea de empuje"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:138
-msgid "Wipe tower - Purging volume adjustment"
-msgstr "Torre de limpieza - Ajuste del volumen de purga"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:219
-msgid ""
-"Here you can adjust required purging volume (mm³) for any given pair of "
-"tools."
-msgstr ""
-"Aquà puedes ajustar el volumende purga requerida (mm³) para cualquier par de "
-"herramientas."
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:220
-msgid "Extruder changed to"
-msgstr "El extrusor cambia a"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:228
-msgid "unloaded"
-msgstr "descargado"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:229
-msgid "loaded"
-msgstr "cargado"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:234
-msgid "Tool #"
-msgstr "Herramienta nº"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:241
-msgid ""
-"Total purging volume is calculated by summing two values below, depending on "
-"which tools are loaded/unloaded."
-msgstr ""
-"El volumen total de purga se calcula sumando dos valors más abajo, "
-"dependiendo de qué filamentos se carguen/descarguen."
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:242
-msgid "Volume to purge (mm³) when the filament is being"
-msgstr "Volumen a purgar (mm³) cuando el filamento está siendo"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:256
-msgid "From"
-msgstr "Desde"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:321
-msgid ""
-"Switching to simple settings will discard changes done in the advanced "
-"mode!\n"
-"\n"
-"Do you want to proceed?"
-msgstr ""
-"¡Cambiar a los ajustes sencillos descartará los cambios realizados en el "
-"modo avanzado!\n"
-"\n"
-"¿Quiere continuar?"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
-msgid "Show simplified settings"
-msgstr "Muestra los ajustes simplificados"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
-msgid "Show advanced settings"
-msgstr "Mostrar ajustes avanzados"
-
-#: src/slic3r/Utils/OctoPrint.cpp:65
-#, c-format
-msgid "Mismatched type of print host: %s"
-msgstr ""
-
-#: src/slic3r/Utils/OctoPrint.cpp:80
-msgid "Connection to OctoPrint works correctly."
-msgstr "La conexión a OctoPrint funciona correctamente."
-
-#: src/slic3r/Utils/OctoPrint.cpp:86
-msgid "Could not connect to OctoPrint"
-msgstr "No puedo conectar con OctoPrint"
-
-#: src/slic3r/Utils/OctoPrint.cpp:86
-msgid "Note: OctoPrint version at least 1.1.0 is required."
-msgstr "Nota: Se necesita al menos la versión 1.1.0 de OctoPrint."
-
-#: src/slic3r/Utils/OctoPrint.cpp:181
-msgid "Connection to Prusa SLA works correctly."
-msgstr ""
-
-#: src/slic3r/Utils/OctoPrint.cpp:186
-msgid "Could not connect to Prusa SLA"
-msgstr ""
-
-#: src/slic3r/Utils/PresetUpdater.cpp:571
-#, c-format
-msgid "requires min. %s and max. %s"
-msgstr "requiere un min. %s y un max. %s"
-
-#: src/slic3r/Utils/PresetUpdater.cpp:576
-#, c-format
-msgid "requires min. %s"
-msgstr ""
-
-#: src/slic3r/Utils/PresetUpdater.cpp:578
-#, c-format
-msgid "requires max. %s"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:219
-#: src/slic3r/Utils/FixModelByWin10.cpp:349
-msgid "Exporting the source model"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:235
-msgid "Failed loading the input model."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:242
-msgid "Repairing the model by the Netfabb service"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:248
-msgid "Mesh repair failed."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:251
-#: src/slic3r/Utils/FixModelByWin10.cpp:367
-msgid "Loading the repaired model"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:263
-#: src/slic3r/Utils/FixModelByWin10.cpp:270
-#: src/slic3r/Utils/FixModelByWin10.cpp:302
-msgid "Saving mesh into the 3MF container failed."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:334
-msgid "Model fixing"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:335
-msgid "Exporting model..."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:357
-msgid "Export of a temporary 3mf file failed"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:372
-msgid "Import of the repaired 3mf file failed"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:375
-msgid "Model repair finished"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:379
-msgid "Model repair canceled"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
-msgid "Model repaired successfully"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
-msgid "Model Repair by the Netfabb service"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
-msgid "Model repair failed: \n"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1175
-msgid "All objects are outside of the print volume."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1201
-msgid "Some objects are too close; your extruder will collide with them."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1216
-msgid ""
-"Some objects are too tall and cannot be printed without extruder collisions."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1226
-msgid "The Spiral Vase option can only be used when printing a single object."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1228
-msgid ""
-"The Spiral Vase option can only be used when printing single material "
-"objects."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1234
-msgid ""
-"All extruders must have the same diameter for single extruder multimaterial "
-"printer."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1239
-msgid ""
-"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter "
-"and Repetier G-code flavors."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1241
-msgid ""
-"The Wipe Tower is currently only supported with the relative extruder "
-"addressing (use_relative_e_distances=1)."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1253
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they have equal "
-"layer heigths"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1255
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they are printed "
-"over an equal number of raft layers"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1257
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they are printed "
-"with the same support_material_contact_distance"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1259
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they are sliced "
-"equally."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1281
-msgid ""
-"The Wipe tower is only supported if all objects have the same layer height "
-"profile"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1290
-msgid "The supplied settings will cause an empty print."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1307
-msgid ""
-"One or more object were assigned an extruder that the printer does not have."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1316
-msgid ""
-"Printing with multiple extruders of differing nozzle diameters. If support "
-"is to be printed with the current extruder (support_material_extruder == 0 "
-"or support_material_interface_extruder == 0), all nozzles have to be of the "
-"same diameter."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1324
-msgid ""
-"For the Wipe Tower to work with the soluble supports, the support layers "
-"need to be synchronized with the object layers."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1328
-msgid ""
-"The Wipe Tower currently supports the non-soluble supports only if they are "
-"printed with the current extruder without triggering a tool change. (both "
-"support_material_extruder and support_material_interface_extruder need to be "
-"set to 0)."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1335
-msgid "first_layer_height"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1350
-msgid "First layer height can't be greater than nozzle diameter"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1354
-msgid "Layer height can't be greater than nozzle diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:32 src/libslic3r/PrintConfig.cpp:33
-msgid "Printer technology"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:41
-msgid "Bed shape"
-msgstr "Forma de la base de impresión"
-
-#: src/libslic3r/PrintConfig.cpp:48
-msgid ""
-"This setting controls the height (and thus the total number) of the slices/"
-"layers. Thinner layers give better accuracy but take more time to print."
-msgstr ""
-"Esta configuración controla la altura (y, por tanto, el número total) de las "
-"láminas / capas. Las capas más delgadas brindan una mayor precisión pero "
-"requieren más tiempo para imprimir."
-
-#: src/libslic3r/PrintConfig.cpp:56
-msgid "Max print height"
-msgstr "Máxima altura de impresión"
-
-#: src/libslic3r/PrintConfig.cpp:57
-msgid ""
-"Set this to the maximum height that can be reached by your extruder while "
-"printing."
-msgstr ""
-"Ajusta este valor a la altura máxima que puede alcanzar el extrusor mientras "
-"imprime."
-
-#: src/libslic3r/PrintConfig.cpp:73
-msgid "Avoid crossing perimeters"
-msgstr "Evita cruzar perÃmetros"
-
-#: src/libslic3r/PrintConfig.cpp:74
-msgid ""
-"Optimize travel moves in order to minimize the crossing of perimeters. This "
-"is mostly useful with Bowden extruders which suffer from oozing. This "
-"feature slows down both the print and the G-code generation."
-msgstr ""
-"Optimiza los movimientos de desplazamiento para minimizar el cruce de "
-"perÃmetros. Esto es principalmente útil con extrusores Bowden que sufren "
-"goteo. Esta caracterÃstica ralentiza tanto la impresión como la generación "
-"de código G."
-
-#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:2080
-msgid "Other layers"
-msgstr "Otras capas"
-
-#: src/libslic3r/PrintConfig.cpp:83
-msgid ""
-"Bed temperature for layers after the first one. Set this to zero to disable "
-"bed temperature control commands in the output."
-msgstr ""
-"Temperatura de la base calefactable para las capas después de la primera. "
-"Ajuste esto a cero para deshabilitar los comandos de control de temperatura "
-"de la base calefactable en la salida."
-
-#: src/libslic3r/PrintConfig.cpp:86
-msgid "Bed temperature"
-msgstr "Temperatura de la base"
-
-#: src/libslic3r/PrintConfig.cpp:93
-msgid ""
-"This custom code is inserted at every layer change, right before the Z move. "
-"Note that you can use placeholder variables for all Slic3r settings as well "
-"as [layer_num] and [layer_z]."
-msgstr ""
-"Este código personalizado se inserta en cada cambio de capa, justo antes del "
-"movimiento Z. Tenga en cuenta que puede usar variables de marcador de "
-"posición para todos los ajustes de Slic3r, asà como [layer_num] y [layer_z]."
-
-#: src/libslic3r/PrintConfig.cpp:104
-msgid "Between objects G-code"
-msgstr "Código G para entre objetos"
-
-#: src/libslic3r/PrintConfig.cpp:105
-msgid ""
-"This code is inserted between objects when using sequential printing. By "
-"default extruder and bed temperature are reset using non-wait command; "
-"however if M104, M109, M140 or M190 are detected in this custom code, Slic3r "
-"will not add temperature commands. Note that you can use placeholder "
-"variables for all Slic3r settings, so you can put a \"M109 "
-"S[first_layer_temperature]\" command wherever you want."
-msgstr ""
-"Este código se inserta entre los objetos cuando se utiliza la impresión "
-"secuencial. Por defecto, el extrusor y la temperatura de la cama se "
-"reinician utilizando un comando de no espera; sin embargo, si se detectan "
-"M104, M109, M140 o M190 en este código personalizado, Slic3r no agregará "
-"comandos de temperatura. Tenga en cuenta que puede usar variables de "
-"marcador de posición para todas las configuraciones de Slic3r, por lo que "
-"puede poner un comando \"M109 S [first_layer_temperature]\" donde lo desee."
-
-#: src/libslic3r/PrintConfig.cpp:114
-msgctxt "Layers"
-msgid "Bottom"
-msgstr "Inferior"
-
-#: src/libslic3r/PrintConfig.cpp:116
-msgid "Number of solid layers to generate on bottom surfaces."
-msgstr "Número de capas sólidas para generar en las superficies inferiores."
-
-#: src/libslic3r/PrintConfig.cpp:118
-msgid "Bottom solid layers"
-msgstr "Capas sólidas inferiores"
-
-#: src/libslic3r/PrintConfig.cpp:123
-msgid "Bridge"
-msgstr "Puente"
-
-#: src/libslic3r/PrintConfig.cpp:124
-msgid ""
-"This is the acceleration your printer will use for bridges. Set zero to "
-"disable acceleration control for bridges."
-msgstr ""
-"Esta es la aceleración que su impresora usará para los puentes. Establezca "
-"cero para deshabilitar el control de aceleración para puentes."
-
-#: src/libslic3r/PrintConfig.cpp:126 src/libslic3r/PrintConfig.cpp:274
-#: src/libslic3r/PrintConfig.cpp:819 src/libslic3r/PrintConfig.cpp:941
-#: src/libslic3r/PrintConfig.cpp:1100 src/libslic3r/PrintConfig.cpp:1145
-#: src/libslic3r/PrintConfig.cpp:1156 src/libslic3r/PrintConfig.cpp:1386
-msgid "mm/s²"
-msgstr "mm/s²"
-
-#: src/libslic3r/PrintConfig.cpp:133
-msgid "Bridging angle"
-msgstr "Ãngulo de puente"
-
-#: src/libslic3r/PrintConfig.cpp:135
-msgid ""
-"Bridging angle override. If left to zero, the bridging angle will be "
-"calculated automatically. Otherwise the provided angle will be used for all "
-"bridges. Use 180° for zero angle."
-msgstr ""
-"Anulación de ángulo de puente. Si se deja en cero, el ángulo de puente se "
-"calculará automáticamente. De lo contrario, el ángulo proporcionado se usará "
-"para todos los puentes. Use 180 ° para ángulo con cero grados."
-
-#: src/libslic3r/PrintConfig.cpp:138 src/libslic3r/PrintConfig.cpp:734
-#: src/libslic3r/PrintConfig.cpp:1637 src/libslic3r/PrintConfig.cpp:1648
-#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:2063
-#: src/libslic3r/PrintConfig.cpp:2578
-msgid "°"
-msgstr "°"
-
-#: src/libslic3r/PrintConfig.cpp:145
-msgid "Bridges fan speed"
-msgstr "Velocidad del ventilador para puentes"
-
-#: src/libslic3r/PrintConfig.cpp:146
-msgid "This fan speed is enforced during all bridges and overhangs."
-msgstr ""
-"La velocidad de este ventilador se aplica durante todos los puentes y "
-"voladizos."
-
-#: src/libslic3r/PrintConfig.cpp:147 src/libslic3r/PrintConfig.cpp:747
-#: src/libslic3r/PrintConfig.cpp:1165 src/libslic3r/PrintConfig.cpp:1232
-#: src/libslic3r/PrintConfig.cpp:1517
-msgid "%"
-msgstr "%"
-
-#: src/libslic3r/PrintConfig.cpp:155
-msgid "Bridge flow ratio"
-msgstr "Relación de flujo del puente"
-
-#: src/libslic3r/PrintConfig.cpp:157
-msgid ""
-"This factor affects the amount of plastic for bridging. You can decrease it "
-"slightly to pull the extrudates and prevent sagging, although default "
-"settings are usually good and you should experiment with cooling (use a fan) "
-"before tweaking this."
-msgstr ""
-"Este factor afecta la cantidad de plástico para formar puentes. Puede "
-"disminuirlo ligeramente para extraer los extruidos y evitar el combado, "
-"aunque la configuración predeterminada suele ser buena y debe experimentar "
-"con la refrigeración (usar un ventilador) antes de ajustar esto."
-
-#: src/libslic3r/PrintConfig.cpp:168
-msgid "Bridges"
-msgstr "Puentes"
-
-#: src/libslic3r/PrintConfig.cpp:170
-msgid "Speed for printing bridges."
-msgstr "Velocidad para imprimir puentes."
-
-#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:564
-#: src/libslic3r/PrintConfig.cpp:573 src/libslic3r/PrintConfig.cpp:583
-#: src/libslic3r/PrintConfig.cpp:592 src/libslic3r/PrintConfig.cpp:623
-#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:884
-#: src/libslic3r/PrintConfig.cpp:1013 src/libslic3r/PrintConfig.cpp:1090
-#: src/libslic3r/PrintConfig.cpp:1110 src/libslic3r/PrintConfig.cpp:1123
-#: src/libslic3r/PrintConfig.cpp:1134 src/libslic3r/PrintConfig.cpp:1189
-#: src/libslic3r/PrintConfig.cpp:1252 src/libslic3r/PrintConfig.cpp:1418
-#: src/libslic3r/PrintConfig.cpp:1601 src/libslic3r/PrintConfig.cpp:1611
-#: src/libslic3r/PrintConfig.cpp:2041 src/libslic3r/PrintConfig.cpp:2160
-msgid "mm/s"
-msgstr "mm/s"
-
-#: src/libslic3r/PrintConfig.cpp:178
-msgid "Brim width"
-msgstr "Ancho del margen"
-
-#: src/libslic3r/PrintConfig.cpp:179
-msgid ""
-"Horizontal width of the brim that will be printed around each object on the "
-"first layer."
-msgstr ""
-"Ancho horizontal del borde que se imprimirá alrededor de cada objeto en la "
-"primera capa."
-
-#: src/libslic3r/PrintConfig.cpp:187
-msgid "Clip multi-part objects"
-msgstr "Enlazaar objetos de varias partes"
-
-#: src/libslic3r/PrintConfig.cpp:188
-msgid ""
-"When printing multi-material objects, this settings will make slic3r to clip "
-"the overlapping object parts one by the other (2nd part will be clipped by "
-"the 1st, 3rd part will be clipped by the 1st and 2nd etc)."
-msgstr ""
-"Al imprimir objetos multi-material, esta configuración hará que slic3r "
-"recorte las partes del objeto superpuestas una por la otra (la 2da parte "
-"será recortada por la 1ra, la 3ra parte será recortada por la 1ra y 2da, "
-"etc.)."
-
-#: src/libslic3r/PrintConfig.cpp:196
-msgid "Colorprint height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:197
-msgid "Heights at which a filament change is to occur. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:207
-msgid "Compatible printers condition"
-msgstr "Condición de impresoras compatibles"
-
-#: src/libslic3r/PrintConfig.cpp:208
-msgid ""
-"A boolean expression using the configuration values of an active printer "
-"profile. If this expression evaluates to true, this profile is considered "
-"compatible with the active printer profile."
-msgstr ""
-"Una expresión booleana utilizando valores de configuración de un perfil "
-"existente. Si esta expresión es verdadera, el perfil será considerado "
-"compatible con el perfil de impresión activo."
-
-#: src/libslic3r/PrintConfig.cpp:220
-msgid "Compatible print profiles condition"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:221
-msgid ""
-"A boolean expression using the configuration values of an active print "
-"profile. If this expression evaluates to true, this profile is considered "
-"compatible with the active print profile."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:235
-msgid "Complete individual objects"
-msgstr "Completar objetos individuales"
-
-#: src/libslic3r/PrintConfig.cpp:236
-msgid ""
-"When printing multiple objects or copies, this feature will complete each "
-"object before moving onto next one (and starting it from its bottom layer). "
-"This feature is useful to avoid the risk of ruined prints. Slic3r should "
-"warn and prevent you from extruder collisions, but beware."
-msgstr ""
-"Al imprimir múltiples objetos o copias, esta caracterÃstica completará cada "
-"objeto antes de pasar al siguiente (y comenzará desde la capa inferior). "
-"Esta función es útil para evitar el riesgo de impresiones arruinadas. Slic3r "
-"deberÃa advertirte y evitar las colisiones del extrusor, pero ten cuidado."
-
-#: src/libslic3r/PrintConfig.cpp:245
-msgid "Enable auto cooling"
-msgstr "Habilitar el enfriamiento automático"
-
-#: src/libslic3r/PrintConfig.cpp:246
-msgid ""
-"This flag enables the automatic cooling logic that adjusts print speed and "
-"fan speed according to layer printing time."
-msgstr ""
-"Este indicador habilita la lógica de enfriamiento automático que ajusta la "
-"velocidad de impresión y la velocidad del ventilador según el tiempo de "
-"impresión de la capa."
-
-#: src/libslic3r/PrintConfig.cpp:252
-msgid "Cooling tube position"
-msgstr "Posición del tubo de refrigeración"
-
-#: src/libslic3r/PrintConfig.cpp:253
-msgid "Distance of the center-point of the cooling tube from the extruder tip "
-msgstr ""
-"Distancia desde el centro del tubo de enfriado a la punta del extrusor "
-
-#: src/libslic3r/PrintConfig.cpp:261
-msgid "Cooling tube length"
-msgstr "Longitud del tubo de enfriamiento"
-
-#: src/libslic3r/PrintConfig.cpp:262
-msgid "Length of the cooling tube to limit space for cooling moves inside it "
-msgstr ""
-"Longitud del tubo de enfriado para limitar el espacio para movimientos de "
-"enfriamiento dentro del mismo "
-
-#: src/libslic3r/PrintConfig.cpp:271
-msgid ""
-"This is the acceleration your printer will be reset to after the role-"
-"specific acceleration values are used (perimeter/infill). Set zero to "
-"prevent resetting acceleration at all."
-msgstr ""
-"Esta es la aceleración después de que se usen los valores de aceleración "
-"especÃficos de cada función (perÃmetro / relleno). Establezca cero para "
-"evitar restablecer la aceleración."
-
-#: src/libslic3r/PrintConfig.cpp:281
-msgid "Default filament profile"
-msgstr "Perfil de filamento por defecto"
-
-#: src/libslic3r/PrintConfig.cpp:282
-msgid ""
-"Default filament profile associated with the current printer profile. On "
-"selection of the current printer profile, this filament profile will be "
-"activated."
-msgstr ""
-"Perfil de filamento por defecto asociado con el perfil de impresora actual. "
-"Al seleccionar el perfil de impresora actual se activará este perfil de "
-"filamento."
-
-#: src/libslic3r/PrintConfig.cpp:287
-msgid "Default print profile"
-msgstr "Perfil de impresión por defecto"
-
-#: src/libslic3r/PrintConfig.cpp:288 src/libslic3r/PrintConfig.cpp:2469
-#: src/libslic3r/PrintConfig.cpp:2479
-msgid ""
-"Default print profile associated with the current printer profile. On "
-"selection of the current printer profile, this print profile will be "
-"activated."
-msgstr ""
-"Perfil de impresión por defecto asociado con el perfil de impresora actual. "
-"Al seleccionar el perfil de impresora actual se activará este perfil de "
-"impresión."
-
-#: src/libslic3r/PrintConfig.cpp:293
-msgid "Disable fan for the first"
-msgstr "Desactivar ventilador para la primera"
-
-#: src/libslic3r/PrintConfig.cpp:294
-msgid ""
-"You can set this to a positive value to disable fan at all during the first "
-"layers, so that it does not make adhesion worse."
-msgstr ""
-"Puedes configurarlo como un valor positivo para desactivar el ventilador "
-"durante todas las capas iniciales, de manera que no empeora la adhesión."
-
-#: src/libslic3r/PrintConfig.cpp:296 src/libslic3r/PrintConfig.cpp:952
-#: src/libslic3r/PrintConfig.cpp:1487 src/libslic3r/PrintConfig.cpp:1691
-#: src/libslic3r/PrintConfig.cpp:1757 src/libslic3r/PrintConfig.cpp:1935
-#: src/libslic3r/PrintConfig.cpp:1985
-msgid "layers"
-msgstr "capas"
-
-#: src/libslic3r/PrintConfig.cpp:304
-msgid "Don't support bridges"
-msgstr "No soportar puentes"
-
-#: src/libslic3r/PrintConfig.cpp:306
-msgid ""
-"Experimental option for preventing support material from being generated "
-"under bridged areas."
-msgstr ""
-"Opción experimental para evitar que se genere material de soporte debajo de "
-"las áreas con puente."
-
-#: src/libslic3r/PrintConfig.cpp:313
-msgid "Distance between copies"
-msgstr "Distancia entre copias"
-
-#: src/libslic3r/PrintConfig.cpp:314
-msgid "Distance used for the auto-arrange feature of the plater."
-msgstr ""
-"Distancia utilizada para la función de organización automática de la base."
-
-#: src/libslic3r/PrintConfig.cpp:322
-msgid "Elephant foot compensation"
-msgstr "Compensación del pie de elefante"
-
-#: src/libslic3r/PrintConfig.cpp:324
-msgid ""
-"The first layer will be shrunk in the XY plane by the configured value to "
-"compensate for the 1st layer squish aka an Elephant Foot effect."
-msgstr ""
-"La primera capa se contraerá en el plano XY por el valor configurado para "
-"compensar el aplatamiento de la 1ª capa, también conocido como efecto Pie de "
-"Elefante."
-
-#: src/libslic3r/PrintConfig.cpp:334
-msgid ""
-"This end procedure is inserted at the end of the output file. Note that you "
-"can use placeholder variables for all Slic3r settings."
-msgstr ""
-"Este procedimiento final se inserta al final del archivo de salida. Tenga en "
-"cuenta que puede usar variables de marcador de posición para todas las "
-"configuraciones de Slic3r."
-
-#: src/libslic3r/PrintConfig.cpp:345
-msgid ""
-"This end procedure is inserted at the end of the output file, before the "
-"printer end gcode. Note that you can use placeholder variables for all "
-"Slic3r settings. If you have multiple extruders, the gcode is processed in "
-"extruder order."
-msgstr ""
-"Este procedimiento final se inserta al final del archivo de salida, antes "
-"del gcode final. Tenga en cuenta que puede usar variables de marcador de "
-"posición para todas las configuraciones de Slic3r. Si tiene extrusores "
-"múltiples, el gcode se procesa en el orden del extrusor."
-
-#: src/libslic3r/PrintConfig.cpp:356
-msgid "Ensure vertical shell thickness"
-msgstr "Asegurar el espesor de la carcasa vertical"
-
-#: src/libslic3r/PrintConfig.cpp:358
-msgid ""
-"Add solid infill near sloping surfaces to guarantee the vertical shell "
-"thickness (top+bottom solid layers)."
-msgstr ""
-"Añade un relleno completo cerca de las superficies inclinadas para "
-"garantizar el ancho vertical solicitado(capas sólidas arriba+abajo)."
-
-#: src/libslic3r/PrintConfig.cpp:365
-msgid "Top/bottom fill pattern"
-msgstr "Patrón de relleno superior/inferior"
-
-#: src/libslic3r/PrintConfig.cpp:367
-msgid ""
-"Fill pattern for top/bottom infill. This only affects the external visible "
-"layer, and not its adjacent solid shells."
-msgstr ""
-"Patrón para el relleno superior / inferior. Esto solo afecta a la capa "
-"externa visible, y no a las capas sólidas adyacentes."
-
-#: src/libslic3r/PrintConfig.cpp:376 src/libslic3r/PrintConfig.cpp:800
-#: src/libslic3r/PrintConfig.cpp:2021
-msgid "Rectilinear"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:377 src/libslic3r/PrintConfig.cpp:806
-msgid "Concentric"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:378 src/libslic3r/PrintConfig.cpp:810
-msgid "Hilbert Curve"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:379 src/libslic3r/PrintConfig.cpp:811
-msgid "Archimedean Chords"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:380 src/libslic3r/PrintConfig.cpp:812
-msgid "Octagram Spiral"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:386 src/libslic3r/PrintConfig.cpp:397
-msgid "External perimeters"
-msgstr "PerÃmetros externos"
-
-#: src/libslic3r/PrintConfig.cpp:388
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for external "
-"perimeters. If left zero, default extrusion width will be used if set, "
-"otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
-"(for example 200%), it will be computed over layer height."
-msgstr ""
-"Ajuste este valor distinto de cero para establecer un ancho de extrusión "
-"manual para perÃmetros externos. Si se deja en cero, se usará el ancho de "
-"extrusión por defecto si se establece, de lo contrario se usará 1.125 x "
-"diámetro de la boquilla. Si se expresa como porcentaje (por ejemplo, 200%), "
-"se computará sobre la altura de la capa."
-
-#: src/libslic3r/PrintConfig.cpp:391 src/libslic3r/PrintConfig.cpp:841
-#: src/libslic3r/PrintConfig.cpp:975 src/libslic3r/PrintConfig.cpp:1408
-#: src/libslic3r/PrintConfig.cpp:1769 src/libslic3r/PrintConfig.cpp:1958
-#: src/libslic3r/PrintConfig.cpp:2129
-msgid "mm or % (leave 0 for default)"
-msgstr "mm o % (dejar 0 por defecto)"
-
-#: src/libslic3r/PrintConfig.cpp:399
-msgid ""
-"This separate setting will affect the speed of external perimeters (the "
-"visible ones). If expressed as percentage (for example: 80%) it will be "
-"calculated on the perimeters speed setting above. Set to zero for auto."
-msgstr ""
-"Esta configuración independiente afectará la velocidad de los perÃmetros "
-"externos (los visibles). Si se expresa como porcentaje (por ejemplo: 80%), "
-"se calculará en la configuración de velocidad de perÃmetros anterior. "
-"Establecer a cero para auto."
-
-#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:864
-#: src/libslic3r/PrintConfig.cpp:1725 src/libslic3r/PrintConfig.cpp:1780
-#: src/libslic3r/PrintConfig.cpp:2006 src/libslic3r/PrintConfig.cpp:2142
-msgid "mm/s or %"
-msgstr "mm/s o %"
-
-#: src/libslic3r/PrintConfig.cpp:409
-msgid "External perimeters first"
-msgstr "PerÃmetros externos primero"
-
-#: src/libslic3r/PrintConfig.cpp:411
-msgid ""
-"Print contour perimeters from the outermost one to the innermost one instead "
-"of the default inverse order."
-msgstr ""
-"Imprimir perÃmetros de contorno desde el más externo hasta el más interno en "
-"lugar del orden inverso predeterminado."
-
-#: src/libslic3r/PrintConfig.cpp:418
-msgid "Extra perimeters if needed"
-msgstr "PerÃmetros adicionales si es necesario"
-
-#: src/libslic3r/PrintConfig.cpp:420
-#, no-c-format
-msgid ""
-"Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r "
-"keeps adding perimeters, until more than 70% of the loop immediately above "
-"is supported."
-msgstr ""
-"Añadir más perÃmetros cuando se necesiten para evitar huecos en las paredes "
-"inclinadas. Slic3r sigue añadiendo perÃmetros hasta que más del 70% del "
-"perÃmetro superior sea soportado."
-
-#: src/libslic3r/PrintConfig.cpp:431
-msgid ""
-"The extruder to use (unless more specific extruder settings are specified). "
-"This value overrides perimeter and infill extruders, but not the support "
-"extruders."
-msgstr ""
-"La extrusora que se usa (a menos que se especifiquen configuraciones de "
-"extrusión más especÃficas). Este valor anula los extrusores de perÃmetro y "
-"relleno, pero no los extrusores de soporte."
-
-#: src/libslic3r/PrintConfig.cpp:444
-msgid ""
-"Set this to the vertical distance between your nozzle tip and (usually) the "
-"X carriage rods. In other words, this is the height of the clearance "
-"cylinder around your extruder, and it represents the maximum depth the "
-"extruder can peek before colliding with other printed objects."
-msgstr ""
-"Ajuste este valor según la distancia vertical entre la punta de la boquilla "
-"y (generalmente) las barras X del carro. En otras palabras, esta es la "
-"altura del cilindro de holgura alrededor de su extrusor, y representa la "
-"profundidad máxima que el extrusor puede asomar antes de colisionar con "
-"otros objetos impresos."
-
-#: src/libslic3r/PrintConfig.cpp:455
-msgid "Radius"
-msgstr "Radio"
-
-#: src/libslic3r/PrintConfig.cpp:456
-msgid ""
-"Set this to the clearance radius around your extruder. If the extruder is "
-"not centered, choose the largest value for safety. This setting is used to "
-"check for collisions and to display the graphical preview in the plater."
-msgstr ""
-"Ajuste este parámetro según el radio de espacio libre alrededor de su "
-"extrusor. Si el extrusor no está centrado, elija el valor más grande para "
-"seguridad. Esta configuración se utiliza para verificar colisiones y mostrar "
-"la vista previa gráfica en la bandeja."
-
-#: src/libslic3r/PrintConfig.cpp:467
-msgid "Extruder Color"
-msgstr "Color del extrusor"
-
-#: src/libslic3r/PrintConfig.cpp:468 src/libslic3r/PrintConfig.cpp:535
-msgid "This is only used in the Slic3r interface as a visual help."
-msgstr "Esto solo se usa en la interfaz de Slic3r como ayuda visual."
-
-#: src/libslic3r/PrintConfig.cpp:475
-msgid "Extruder offset"
-msgstr "Offset del extrusor"
-
-#: src/libslic3r/PrintConfig.cpp:476
-msgid ""
-"If your firmware doesn't handle the extruder displacement you need the G-"
-"code to take it into account. This option lets you specify the displacement "
-"of each extruder with respect to the first one. It expects positive "
-"coordinates (they will be subtracted from the XY coordinate)."
-msgstr ""
-"Si su firmware no maneja el desplazamiento del extrusor, necesita el código "
-"G para tenerlo en cuenta. Esta opción le permite especificar el "
-"desplazamiento de cada extrusora con respecto a la primera. Se esperan "
-"coordenadas positivas (se restarán de la coordenada XY)."
-
-#: src/libslic3r/PrintConfig.cpp:486
-msgid "Extrusion axis"
-msgstr "Eje de extrusión"
-
-#: src/libslic3r/PrintConfig.cpp:487
-msgid ""
-"Use this option to set the axis letter associated to your printer's extruder "
-"(usually E but some printers use A)."
-msgstr ""
-"Utiliza esta opción para ajustar la letra asociada al extrusor de tu "
-"impresora (normalmente se usa E pero otras usan A)."
-
-#: src/libslic3r/PrintConfig.cpp:493
-msgid "Extrusion multiplier"
-msgstr "Multiplicador de extrusión"
-
-#: src/libslic3r/PrintConfig.cpp:494
-msgid ""
-"This factor changes the amount of flow proportionally. You may need to tweak "
-"this setting to get nice surface finish and correct single wall widths. "
-"Usual values are between 0.9 and 1.1. If you think you need to change this "
-"more, check filament diameter and your firmware E steps."
-msgstr ""
-"Este factor cambia la cantidad de flujo proporcionalmente. Es posible que "
-"necesite ajustar esta configuración para obtener un buen acabado superficial "
-"y corregir el ancho de una sola pared. Los valores usuales están entre 0.9 y "
-"1.1. Si cree que necesita cambiar esto más, verifique el diámetro del "
-"filamento y los pasos del E en el firmware."
-
-#: src/libslic3r/PrintConfig.cpp:503
-msgid "Default extrusion width"
-msgstr "Ancho de extrusión por defecto"
-
-#: src/libslic3r/PrintConfig.cpp:505
-msgid ""
-"Set this to a non-zero value to allow a manual extrusion width. If left to "
-"zero, Slic3r derives extrusion widths from the nozzle diameter (see the "
-"tooltips for perimeter extrusion width, infill extrusion width etc). If "
-"expressed as percentage (for example: 230%), it will be computed over layer "
-"height."
-msgstr ""
-"Ajuste este valor distinto de cero para permitir un ancho de extrusión "
-"manual. Si se deja a cero, Slic3r obtiene anchuras de extrusión del diámetro "
-"de la boquilla (consulte la información sobre herramientas para conocer el "
-"ancho de extrusión, el ancho de extrusión de relleno, etc.). Si se expresa "
-"como porcentaje (por ejemplo: 230%), se computará sobre la altura de la capa."
-
-#: src/libslic3r/PrintConfig.cpp:509
-msgid "mm or % (leave 0 for auto)"
-msgstr "mm o % (dejar 0 para automático)"
-
-#: src/libslic3r/PrintConfig.cpp:515
-msgid "Keep fan always on"
-msgstr "Mantener el ventilador siempre encendido"
-
-#: src/libslic3r/PrintConfig.cpp:516
-msgid ""
-"If this is enabled, fan will never be disabled and will be kept running at "
-"least at its minimum speed. Useful for PLA, harmful for ABS."
-msgstr ""
-"Si esto está habilitado, el ventilador nunca se desactivará y se mantendrá "
-"funcionando al menos a su velocidad mÃnima. Útil para PLA, no recomendado "
-"para ABS."
-
-#: src/libslic3r/PrintConfig.cpp:522
-msgid "Enable fan if layer print time is below"
-msgstr ""
-"Habilitar ventilador si el tiempo de impresión de la capa está por debajo"
-
-#: src/libslic3r/PrintConfig.cpp:523
-msgid ""
-"If layer print time is estimated below this number of seconds, fan will be "
-"enabled and its speed will be calculated by interpolating the minimum and "
-"maximum speeds."
-msgstr ""
-"Si el tiempo de impresión de capa se estima por debajo de este número de "
-"segundos, el ventilador se habilitará y su velocidad se calculará al "
-"interpolar las velocidades mÃnima y máxima."
-
-#: src/libslic3r/PrintConfig.cpp:525 src/libslic3r/PrintConfig.cpp:1711
-msgid "approximate seconds"
-msgstr "segundos aproximadamente"
-
-#: src/libslic3r/PrintConfig.cpp:534
-msgid "Color"
-msgstr "Color"
-
-#: src/libslic3r/PrintConfig.cpp:541
-msgid "Filament notes"
-msgstr "Notas del filamento"
-
-#: src/libslic3r/PrintConfig.cpp:542
-msgid "You can put your notes regarding the filament here."
-msgstr "Puede poner sus notas con respecto al filamento aquÃ."
-
-#: src/libslic3r/PrintConfig.cpp:551 src/libslic3r/PrintConfig.cpp:1196
-msgid "Max volumetric speed"
-msgstr "Velocidad volumétrica máxima"
-
-#: src/libslic3r/PrintConfig.cpp:552
-msgid ""
-"Maximum volumetric speed allowed for this filament. Limits the maximum "
-"volumetric speed of a print to the minimum of print and filament volumetric "
-"speed. Set to zero for no limit."
-msgstr ""
-"Velocidad volumétrica máxima permitida para este filamento. Limita la "
-"velocidad volumétrica máxima de una impresión al mÃnimo de velocidad "
-"volumétrica de impresión y filamento. Establecer en cero para usar sin "
-"lÃmite."
-
-#: src/libslic3r/PrintConfig.cpp:555 src/libslic3r/PrintConfig.cpp:1199
-msgid "mm³/s"
-msgstr "mm³/s"
-
-#: src/libslic3r/PrintConfig.cpp:562
-msgid "Loading speed"
-msgstr "Velocidad de carga"
-
-#: src/libslic3r/PrintConfig.cpp:563
-msgid "Speed used for loading the filament on the wipe tower. "
-msgstr "Velocidad empleada para cargar el filamento en la torre de limpieza. "
-
-#: src/libslic3r/PrintConfig.cpp:571
-msgid "Loading speed at the start"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:572
-msgid "Speed used at the very beginning of loading phase. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:580
-msgid "Unloading speed"
-msgstr "Velocidad de descarga"
-
-#: src/libslic3r/PrintConfig.cpp:581
-msgid ""
-"Speed used for unloading the filament on the wipe tower (does not affect "
-"initial part of unloading just after ramming). "
-msgstr ""
-"Velocidad empleada para descargar el filamento en la torre de limpieza (no "
-"afecta a la fase inicial de la descarga, sólo después de empujar). "
-
-#: src/libslic3r/PrintConfig.cpp:590
-msgid "Unloading speed at the start"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:591
-msgid ""
-"Speed used for unloading the tip of the filament immediately after ramming. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:599
-msgid "Delay after unloading"
-msgstr "Retardo tras la descarga"
-
-#: src/libslic3r/PrintConfig.cpp:600
-msgid ""
-"Time to wait after the filament is unloaded. May help to get reliable "
-"toolchanges with flexible materials that may need more time to shrink to "
-"original dimensions. "
-msgstr ""
-"Tiempo de espera después de que se ha descargado el filamento. Puede ayudar "
-"para conseguir cambios de herramienta fiables con materiales flexibles que "
-"pueden necesitar más tiempo para encogerse a su tamaño original. "
-
-#: src/libslic3r/PrintConfig.cpp:610
-msgid "Number of cooling moves"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:611
-msgid ""
-"Filament is cooled by being moved back and forth in the cooling tubes. "
-"Specify desired number of these moves "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:620
-msgid "Speed of the first cooling move"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:621
-msgid "Cooling moves are gradually accelerating beginning at this speed. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:629
-msgid "Minimal purge on wipe tower"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:630
-msgid ""
-"After a tool change, the exact position of the newly loaded filament inside "
-"the nozzle may not be known, and the filament pressure is likely not yet "
-"stable. Before purging the print head into an infill or a sacrificial "
-"object, Slic3r will always prime this amount of material into the wipe tower "
-"to produce successive infill or sacrificial object extrusions reliably."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:635
-msgid "mm³"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:641
-msgid "Speed of the last cooling move"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:642
-msgid "Cooling moves are gradually accelerating towards this speed. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:650
-msgid "Filament load time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:651
-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 ""
-
-#: src/libslic3r/PrintConfig.cpp:659
-msgid "Ramming parameters"
-msgstr "Parámetros de empuje"
-
-#: src/libslic3r/PrintConfig.cpp:660
-msgid ""
-"This string is edited by RammingDialog and contains ramming specific "
-"parameters "
-msgstr ""
-"Esta cadena se modifica con el Diálogo de Empuje y contiene parámetros "
-"especÃficos de empuje "
-
-#: src/libslic3r/PrintConfig.cpp:667
-msgid "Filament unload time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:668
-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 ""
-
-#: src/libslic3r/PrintConfig.cpp:677
-msgid ""
-"Enter your filament diameter here. Good precision is required, so use a "
-"caliper and do multiple measurements along the filament, then compute the "
-"average."
-msgstr ""
-"Ingrese el diámetro de su fila aquÃ. Se requiere una buena precisión, por lo "
-"tanto, use un calibre y realice múltiples mediciones a lo largo del "
-"filamento, luego calcule el promedio."
-
-#: src/libslic3r/PrintConfig.cpp:685
-msgid "Density"
-msgstr "Densidad"
-
-#: src/libslic3r/PrintConfig.cpp:686
-msgid ""
-"Enter your filament density here. This is only for statistical information. "
-"A decent way is to weigh a known length of filament and compute the ratio of "
-"the length to volume. Better is to calculate the volume directly through "
-"displacement."
-msgstr ""
-"Ingrese su densidad de filamento aquÃ. Esto es solo para información "
-"estadÃstica. Una forma decente es pesar una longitud conocida de filamento y "
-"calcular la relación entre la longitud y el volumen. Lo mejor es calcular el "
-"volumen directamente a través del desplazamiento."
-
-#: src/libslic3r/PrintConfig.cpp:689
-msgid "g/cm³"
-msgstr "g/cm³"
-
-#: src/libslic3r/PrintConfig.cpp:695
-msgid "Filament type"
-msgstr "Tipo de filamento"
-
-#: src/libslic3r/PrintConfig.cpp:696
-msgid "The filament material type for use in custom G-codes."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:712
-msgid "Soluble material"
-msgstr "Material soluble"
-
-#: src/libslic3r/PrintConfig.cpp:713
-msgid "Soluble material is most likely used for a soluble support."
-msgstr "El material soluble se usa muy probablemente para un soporte soluble."
-
-#: src/libslic3r/PrintConfig.cpp:719
-msgid ""
-"Enter your filament cost per kg here. This is only for statistical "
-"information."
-msgstr ""
-"Ingrese su coste del filamento por kg aquÃ. Esto es solo para información "
-"estadÃstica."
-
-#: src/libslic3r/PrintConfig.cpp:720
-msgid "money/kg"
-msgstr "dinero/kg"
-
-#: src/libslic3r/PrintConfig.cpp:729
-msgid "Fill angle"
-msgstr "Ãngulo de relleno"
-
-#: src/libslic3r/PrintConfig.cpp:731
-msgid ""
-"Default base angle for infill orientation. Cross-hatching will be applied to "
-"this. Bridges will be infilled using the best direction Slic3r can detect, "
-"so this setting does not affect them."
-msgstr ""
-"Ãngulo base predeterminado para orientación de relleno. Se aplicará "
-"sombreado cruzado a esto. Los puentes se rellenarán utilizando la mejor "
-"dirección que Slic3r pueda detectar, por lo que esta configuración no los "
-"afecta."
-
-#: src/libslic3r/PrintConfig.cpp:744
-msgid "Fill density"
-msgstr "Densidad de relleno"
-
-#: src/libslic3r/PrintConfig.cpp:746
-msgid "Density of internal infill, expressed in the range 0% - 100%."
-msgstr "Densidad de relleno interior, expresado en el rango 0% - 100%."
-
-#: src/libslic3r/PrintConfig.cpp:782
-msgid "Fill pattern"
-msgstr "Patrón de relleno"
-
-#: src/libslic3r/PrintConfig.cpp:784
-msgid "Fill pattern for general low-density infill."
-msgstr "Patrón de relleno para el relleno general de baja densidad."
-
-#: src/libslic3r/PrintConfig.cpp:801
-msgid "Grid"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:802
-msgid "Triangles"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:803
-msgid "Stars"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:804
-msgid "Cubic"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:805
-msgid "Line"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:807 src/libslic3r/PrintConfig.cpp:2023
-msgid "Honeycomb"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:808
-msgid "3D Honeycomb"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:809
-msgid "Gyroid"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:826
-#: src/libslic3r/PrintConfig.cpp:835 src/libslic3r/PrintConfig.cpp:871
-msgid "First layer"
-msgstr "Primera capa"
-
-#: src/libslic3r/PrintConfig.cpp:817
-msgid ""
-"This is the acceleration your printer will use for first layer. Set zero to "
-"disable acceleration control for first layer."
-msgstr ""
-"Esta es la aceleración que su impresora usará para la primera capa. "
-"Establezca cero para deshabilitar el control de aceleración para la primera "
-"capa."
-
-#: src/libslic3r/PrintConfig.cpp:827
-msgid ""
-"Heated build plate temperature for the first layer. Set this to zero to "
-"disable bed temperature control commands in the output."
-msgstr ""
-"Temperatura de base calefactable para la primera capa. Ajuste esto a cero "
-"para deshabilitar los comandos de control de temperatura de la cama en la "
-"salida."
-
-#: src/libslic3r/PrintConfig.cpp:837
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for first "
-"layer. You can use this to force fatter extrudates for better adhesion. If "
-"expressed as percentage (for example 120%) it will be computed over first "
-"layer height. If set to zero, it will use the default extrusion width."
-msgstr ""
-"Ajuste este valor distinto de cero para establecer un ancho de extrusión "
-"manual para la primera capa. Puede usar esto para forzar extrusiones más "
-"gordas para una mejor adhesión. Si se expresa como porcentaje (por ejemplo, "
-"120%), se calculará sobre la altura de la primera capa. Si se establece en "
-"cero, usará el ancho de extrusión predeterminado."
-
-#: src/libslic3r/PrintConfig.cpp:848
-msgid "First layer height"
-msgstr "Altura de la primera capa"
-
-#: src/libslic3r/PrintConfig.cpp:850
-msgid ""
-"When printing with very low layer heights, you might still want to print a "
-"thicker bottom layer to improve adhesion and tolerance for non perfect build "
-"plates. This can be expressed as an absolute value or as a percentage (for "
-"example: 150%) over the default layer height."
-msgstr ""
-"Al imprimir con alturas de capa muy bajas, es posible que desee imprimir una "
-"capa inferior más gruesa para mejorar la adhesión y la tolerancia de las "
-"placas de construcción no perfectas. Esto se puede expresar como un valor "
-"absoluto o como un porcentaje (por ejemplo: 150%) sobre la altura de capa "
-"predeterminada."
-
-#: src/libslic3r/PrintConfig.cpp:854 src/libslic3r/PrintConfig.cpp:1003
-#: src/libslic3r/PrintConfig.cpp:1884
-msgid "mm or %"
-msgstr "mm o %"
-
-#: src/libslic3r/PrintConfig.cpp:860
-msgid "First layer speed"
-msgstr "Velocidad de la primera capa"
-
-#: src/libslic3r/PrintConfig.cpp:861
-msgid ""
-"If expressed as absolute value in mm/s, this speed will be applied to all "
-"the print moves of the first layer, regardless of their type. If expressed "
-"as a percentage (for example: 40%) it will scale the default speeds."
-msgstr ""
-"Si se expresa como valor absoluto en mm / s, esta velocidad se aplicará a "
-"todos los movimientos de impresión de la primera capa, independientemente de "
-"su tipo. Si se expresa como un porcentaje (por ejemplo: 40%), escalará las "
-"velocidades predeterminadas."
-
-#: src/libslic3r/PrintConfig.cpp:872
-msgid ""
-"Extruder temperature for first layer. If you want to control temperature "
-"manually during print, set this to zero to disable temperature control "
-"commands in the output file."
-msgstr ""
-"Temperatura del extrusor para la primera capa. Si desea controlar la "
-"temperatura manualmente durante la impresión, configúrela en cero para "
-"desactivar los comandos de control de temperatura en el archivo de salida."
-
-#: src/libslic3r/PrintConfig.cpp:882
-msgid ""
-"Speed for filling small gaps using short zigzag moves. Keep this reasonably "
-"low to avoid too much shaking and resonance issues. Set zero to disable gaps "
-"filling."
-msgstr ""
-"Velocidad para llenar pequeños espacios usando movimientos cortos de zigzag. "
-"Mantenga esto razonablemente bajo para evitar demasiados problemas de "
-"vibración y sacudidas. Establezca cero para desactivar el llenado de huecos."
-
-#: src/libslic3r/PrintConfig.cpp:890
-msgid "Verbose G-code"
-msgstr "Código G detallado"
-
-#: src/libslic3r/PrintConfig.cpp:891
-msgid ""
-"Enable this to get a commented G-code file, with each line explained by a "
-"descriptive text. If you print from SD card, the additional weight of the "
-"file could make your firmware slow down."
-msgstr ""
-"HabilÃtelo para obtener un archivo de código G comentado, con cada lÃnea "
-"explicada por un texto descriptivo. Si imprime desde una tarjeta SD, el peso "
-"adicional del archivo podrÃa ralentizar su firmware."
-
-#: src/libslic3r/PrintConfig.cpp:899
-msgid "G-code flavor"
-msgstr "Tipo de código G"
-
-#: src/libslic3r/PrintConfig.cpp:900
-msgid ""
-"Some G/M-code commands, including temperature control and others, are not "
-"universal. Set this option to your printer's firmware to get a compatible "
-"output. The \"No extrusion\" flavor prevents Slic3r from exporting any "
-"extrusion value at all."
-msgstr ""
-"Algunos comandos de código G / M, incluido el control de temperatura y "
-"otros, no son universales. Establezca esta opción en el firmware de su "
-"impresora para obtener una salida compatible. El ajuste \"Sin extrusión\" "
-"evita que Slic3r exporte ningún valor de extrusión."
-
-#: src/libslic3r/PrintConfig.cpp:924
-msgid "No extrusion"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:929
-msgid "High extruder current on filament swap"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:930
-msgid ""
-"It may be beneficial to increase the extruder motor current during the "
-"filament exchange sequence to allow for rapid ramming feed rates and to "
-"overcome resistance when loading a filament with an ugly shaped tip."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:939
-msgid ""
-"This is the acceleration your printer will use for infill. Set zero to "
-"disable acceleration control for infill."
-msgstr ""
-"Esta es la aceleración que su impresora usará para el relleno. Establezca "
-"cero para deshabilitar el control de aceleración para el relleno."
-
-#: src/libslic3r/PrintConfig.cpp:948
-msgid "Combine infill every"
-msgstr "Combinar el relleno cada"
-
-#: src/libslic3r/PrintConfig.cpp:950
-msgid ""
-"This feature allows to combine infill and speed up your print by extruding "
-"thicker infill layers while preserving thin perimeters, thus accuracy."
-msgstr ""
-"Esta caracterÃstica permite combinar el relleno y acelerar la impresión "
-"mediante la extrusión de capas de relleno más gruesas a la vez que se "
-"preservan los finos perÃmetros y, por lo tanto, la precisión."
-
-#: src/libslic3r/PrintConfig.cpp:954
-msgid "Combine infill every n layers"
-msgstr "Combinar el relleno cada n capas"
-
-#: src/libslic3r/PrintConfig.cpp:960
-msgid "Infill extruder"
-msgstr "Extrusor de relleno"
-
-#: src/libslic3r/PrintConfig.cpp:962
-msgid "The extruder to use when printing infill."
-msgstr "El extrusor que se usa cuando se imprime relleno."
-
-#: src/libslic3r/PrintConfig.cpp:971
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill. If "
-"left zero, default extrusion width will be used if set, otherwise 1.125 x "
-"nozzle diameter will be used. You may want to use fatter extrudates to speed "
-"up the infill and make your parts stronger. If expressed as percentage (for "
-"example 90%) it will be computed over layer height."
-msgstr ""
-"Ajuste este valor distinto de cero para establecer un ancho de extrusión "
-"manual para relleno. Si se deja en cero, se usará el ancho de extrusión por "
-"defecto si se establece, de lo contrario se usará 1.125 x diámetro de la "
-"boquilla. Es posible que desee extrusiones más gordas para acelerar el "
-"relleno y fortalecer sus partes. Si se expresa como porcentaje (por ejemplo, "
-"90%), se calculará sobre la altura de la capa."
-
-#: src/libslic3r/PrintConfig.cpp:981
-msgid "Infill before perimeters"
-msgstr "Rellenar antes que los perÃmetros"
-
-#: src/libslic3r/PrintConfig.cpp:982
-msgid ""
-"This option will switch the print order of perimeters and infill, making the "
-"latter first."
-msgstr ""
-"Esta opción cambiará el orden de impresión de los perÃmetros y el relleno, "
-"haciendo que el último sea el primero."
-
-#: src/libslic3r/PrintConfig.cpp:988
-msgid "Only infill where needed"
-msgstr "Solo rellenar cuando sea necesario"
-
-#: src/libslic3r/PrintConfig.cpp:990
-msgid ""
-"This option will limit infill to the areas actually needed for supporting "
-"ceilings (it will act as internal support material). If enabled, slows down "
-"the G-code generation due to the multiple checks involved."
-msgstr ""
-"Esta opción limitará el relleno a las áreas realmente necesarias para "
-"soportar techos (actuará como material de soporte interno). Si está "
-"habilitado, ralentiza la generación del código G debido a las múltiples "
-"comprobaciones involucradas."
-
-#: src/libslic3r/PrintConfig.cpp:998
-msgid "Infill/perimeters overlap"
-msgstr "Superposición de relleno/perÃmetros"
-
-#: src/libslic3r/PrintConfig.cpp:1000
-msgid ""
-"This setting applies an additional overlap between infill and perimeters for "
-"better bonding. Theoretically this shouldn't be needed, but backlash might "
-"cause gaps. If expressed as percentage (example: 15%) it is calculated over "
-"perimeter extrusion width."
-msgstr ""
-"Esta configuración aplica una superposición adicional entre relleno y "
-"perÃmetros para una mejor unión. Teóricamente, esto no deberÃa ser "
-"necesario, pero la reacción puede causar huecos. Si se expresa como "
-"porcentaje (ejemplo: 15%), se calcula sobre el ancho de extrusión del "
-"perÃmetro."
-
-#: src/libslic3r/PrintConfig.cpp:1012
-msgid "Speed for printing the internal fill. Set to zero for auto."
-msgstr ""
-"Velocidad para imprimir el relleno interno. Establecer a cero para auto."
-
-#: src/libslic3r/PrintConfig.cpp:1020
-msgid "Inherits profile"
-msgstr "Hereda el perfil"
-
-#: src/libslic3r/PrintConfig.cpp:1021
-msgid "Name of the profile, from which this profile inherits."
-msgstr "Nombre del perfil desde que éste hereda."
-
-#: src/libslic3r/PrintConfig.cpp:1032
-msgid "Interface shells"
-msgstr "Carcasas de interfaz"
-
-#: src/libslic3r/PrintConfig.cpp:1033
-msgid ""
-"Force the generation of solid shells between adjacent materials/volumes. "
-"Useful for multi-extruder prints with translucent materials or manual "
-"soluble support material."
-msgstr ""
-"Forzar la generación de carcasas sólidas entre materiales / volúmenes "
-"adyacentes. Útil para impresiones de múltiples extrusoras con materiales "
-"translúcidos o material de soporte soluble manual."
-
-#: src/libslic3r/PrintConfig.cpp:1043
-msgid ""
-"This custom code is inserted at every layer change, right after the Z move "
-"and before the extruder moves to the first layer point. Note that you can "
-"use placeholder variables for all Slic3r settings as well as [layer_num] and "
-"[layer_z]."
-msgstr ""
-"Este código personalizado se inserta en cada cambio de capa, justo después "
-"del movimiento Z y antes de que el extrusor se mueva al primer punto de "
-"capa. Tenga en cuenta que puede usar variables de marcador de posición para "
-"todos los ajustes de Slic3r, asà como [layer_num] y [layer_z]."
-
-#: src/libslic3r/PrintConfig.cpp:1054
-msgid "Supports remaining times"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1055
-msgid ""
-"Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute "
-"intervals into the G-code to let the firmware show accurate remaining time. "
-"As of now only the Prusa i3 MK3 firmware recognizes M73. Also the i3 MK3 "
-"firmware supports M73 Qxx Sxx for the silent mode."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1063
-msgid "Supports silent mode"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1064
-msgid "Set silent mode for the G-code flavor"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1087
-msgid "Maximum feedrate %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1089
-msgid "Maximum feedrate of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1097
-msgid "Maximum acceleration %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1099
-msgid "Maximum acceleration of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1107
-msgid "Maximum jerk %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1109
-msgid "Maximum jerk of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122
-msgid "Minimum feedrate when extruding"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133
-msgid "Minimum travel feedrate"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144
-msgid "Maximum acceleration when extruding"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1153 src/libslic3r/PrintConfig.cpp:1155
-msgid "Maximum acceleration when retracting"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1173
-msgid "Max"
-msgstr "Max"
-
-#: src/libslic3r/PrintConfig.cpp:1164
-msgid "This setting represents the maximum speed of your fan."
-msgstr "Esta configuración representa la velocidad máxima de su ventilador."
-
-#: src/libslic3r/PrintConfig.cpp:1174
-#, no-c-format
-msgid ""
-"This is the highest printable layer height for this extruder, used to cap "
-"the variable layer height and support layer height. Maximum recommended "
-"layer height is 75% of the extrusion width to achieve reasonable inter-layer "
-"adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter."
-msgstr ""
-"Esta es la altura más alta imprimible de capa para este extrusor, que se "
-"utiliza para cubrir la altura de la capa variable y la altura de la capa de "
-"soporte. La altura máxima recomendada de la capa es del 75% del ancho de "
-"extrusión para lograr una adhesión razonable entre capas. Si se establece en "
-"0, la altura de la capa se limita al 75% del diámetro de la boquilla."
-
-#: src/libslic3r/PrintConfig.cpp:1185
-msgid "Max print speed"
-msgstr "Velocidad máxima de impresión"
-
-#: src/libslic3r/PrintConfig.cpp:1186
-msgid ""
-"When setting other speed settings to 0 Slic3r will autocalculate the optimal "
-"speed in order to keep constant extruder pressure. This experimental setting "
-"is used to set the highest print speed you want to allow."
-msgstr ""
-"Al establecer otras configuraciones de velocidad en 0, Slic3r calculará "
-"automáticamente la velocidad óptima para mantener constante la presión en el "
-"extrusor. Esta configuración experimental se utiliza para establecer la "
-"velocidad de impresión más alta que desea permitir."
-
-#: src/libslic3r/PrintConfig.cpp:1197
-msgid ""
-"This experimental setting is used to set the maximum volumetric speed your "
-"extruder supports."
-msgstr ""
-"Esta configuración experimental se usa para establecer la velocidad "
-"volumétrica máxima que admite el extrusor."
-
-#: src/libslic3r/PrintConfig.cpp:1206
-msgid "Max volumetric slope positive"
-msgstr "Máx. Pendiente volumétrica positiva"
-
-#: src/libslic3r/PrintConfig.cpp:1207 src/libslic3r/PrintConfig.cpp:1219
-msgid ""
-"This experimental setting is used to limit the speed of change in extrusion "
-"rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate "
-"of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/"
-"s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds."
-msgstr ""
-"Esta configuración experimental se usa para limitar la velocidad de cambio "
-"en la velocidad de extrusión. Un valor de 1,8 mm³ / s² asegura que se cambia "
-"la velocidad de extrusión de 1,8 mm³ / s (ancho de extrusión de 0,45 mm, "
-"altura de extrusión de 0,2 mm, avance de 20 mm / s) a 5,4 mm³ / s (avance de "
-"60 mm / s) durará al menos 2 segundos."
-
-#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1223
-msgid "mm³/s²"
-msgstr "mm³/s²"
-
-#: src/libslic3r/PrintConfig.cpp:1218
-msgid "Max volumetric slope negative"
-msgstr "Máx. Pendiente volumétrica negativa"
-
-#: src/libslic3r/PrintConfig.cpp:1230 src/libslic3r/PrintConfig.cpp:1240
-msgid "Min"
-msgstr "Min"
-
-#: src/libslic3r/PrintConfig.cpp:1231
-msgid "This setting represents the minimum PWM your fan needs to work."
-msgstr ""
-"Este ajuste representa el PWM mÃnimo que el ventilador necesita para "
-"funcionar."
-
-#: src/libslic3r/PrintConfig.cpp:1241
-msgid ""
-"This is the lowest printable layer height for this extruder and limits the "
-"resolution for variable layer height. Typical values are between 0.05 mm and "
-"0.1 mm."
-msgstr ""
-"Esta es la altura más baja de la capa imprimible para este extrusor y limita "
-"la resolución para la altura de la capa variable. Los valores tÃpicos están "
-"entre 0.05 mm y 0.1 mm."
-
-#: src/libslic3r/PrintConfig.cpp:1250
-msgid "Min print speed"
-msgstr "Velocidad de impresión mÃnima"
-
-#: src/libslic3r/PrintConfig.cpp:1251
-msgid "Slic3r will not scale speed down below this speed."
-msgstr "Slic3r no escalará la velocidad por debajo de esta velocidad."
-
-#: src/libslic3r/PrintConfig.cpp:1259
-msgid "Minimal filament extrusion length"
-msgstr "Longitud mÃnima de filamento extruido"
-
-#: src/libslic3r/PrintConfig.cpp:1260
-msgid ""
-"Generate no less than the number of skirt loops required to consume the "
-"specified amount of filament on the bottom layer. For multi-extruder "
-"machines, this minimum applies to each extruder."
-msgstr ""
-"Generar no menos que el número de bucles de falda requeridos para consumir "
-"la cantidad especificada de filamento en la capa inferior. Para máquinas "
-"multi-extrusoras, este mÃnimo se aplica a cada extrusora."
-
-#: src/libslic3r/PrintConfig.cpp:1270
-msgid "Configuration notes"
-msgstr "Notas de configuración"
-
-#: src/libslic3r/PrintConfig.cpp:1271
-msgid ""
-"You can put here your personal notes. This text will be added to the G-code "
-"header comments."
-msgstr ""
-"Puede poner sus notas personales aquÃ. Este texto se añadirá al código G "
-"como comentarios."
-
-#: src/libslic3r/PrintConfig.cpp:1281
-msgid "Nozzle diameter"
-msgstr "Diámetro de la boquilla"
-
-#: src/libslic3r/PrintConfig.cpp:1282
-msgid ""
-"This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)"
-msgstr ""
-"Este es el diámetro de la boquilla de su extrusor (por ejemplo: 0.5, 0.35, "
-"etc.)"
-
-#: src/libslic3r/PrintConfig.cpp:1288
-msgid "Host Type"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1289
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field must contain "
-"the kind of the host."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1301
-msgid "API Key / Password"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1302
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the API Key or the password required for authentication."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1317
-msgid "Hostname, IP or URL"
-msgstr "Nombre de equipo, IP o URL"
-
-#: src/libslic3r/PrintConfig.cpp:1318
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the hostname, IP address or URL of the printer host instance."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1325
-msgid "Only retract when crossing perimeters"
-msgstr "Solo retraer al cruzar perÃmetros"
-
-#: src/libslic3r/PrintConfig.cpp:1326
-msgid ""
-"Disables retraction when the travel path does not exceed the upper layer's "
-"perimeters (and thus any ooze will be probably invisible)."
-msgstr ""
-"Desactiva la retracción cuando la trayectoria de desplazamiento no supera "
-"los perÃmetros de la capa superior (y, por lo tanto, cualquier goteo "
-"probablemente será invisible)."
-
-#: src/libslic3r/PrintConfig.cpp:1334
-msgid ""
-"This option will drop the temperature of the inactive extruders to prevent "
-"oozing. It will enable a tall skirt automatically and move extruders outside "
-"such skirt when changing temperatures."
-msgstr ""
-"Esta opción reducirá la temperatura de las extrusoras inactivas para evitar "
-"el goteo. Permitirá una falda alta automáticamente y moverá los extrusores "
-"fuera de dicha falda cuando cambie la temperatura."
-
-#: src/libslic3r/PrintConfig.cpp:1342
-msgid "Output filename format"
-msgstr "Formato de nombre de salida"
-
-#: src/libslic3r/PrintConfig.cpp:1343
-msgid ""
-"You can use all configuration options as variables inside this template. For "
-"example: [layer_height], [fill_density] etc. You can also use [timestamp], "
-"[year], [month], [day], [hour], [minute], [second], [version], "
-"[input_filename], [input_filename_base]."
-msgstr ""
-"Puedes usar todas las opciones de configuración como las variables dentro de "
-"esta muestra. Por ejemplo [layer_height], [fill_density] etc.También puedes "
-"usar [timestamp], [year], [month], [day], [hour], [minute], [second], "
-"[version], [input_filename], [input_filename_base]."
-
-#: src/libslic3r/PrintConfig.cpp:1353
-msgid "Detect bridging perimeters"
-msgstr "Detectar perÃmetros con puentes"
-
-#: src/libslic3r/PrintConfig.cpp:1355
-msgid ""
-"Experimental option to adjust flow for overhangs (bridge flow will be used), "
-"to apply bridge speed to them and enable fan."
-msgstr ""
-"Opción experimental para ajustar el flujo para salientes (se usará el flujo "
-"del puente), para aplicar la velocidad del puente a ellos y habilitar el "
-"ventilador."
-
-#: src/libslic3r/PrintConfig.cpp:1362
-msgid "Filament parking position"
-msgstr "Posición de aparcar el filamento"
-
-#: src/libslic3r/PrintConfig.cpp:1363
-msgid ""
-"Distance of the extruder tip from the position where the filament is parked "
-"when unloaded. This should match the value in printer firmware. "
-msgstr ""
-"Distancia de la punta del extrusor desde la posición donde el filamento es "
-"colocado cuando se descarga. Esto deberÃa coincidir con el valor en el "
-"firmware de la impresora. "
-
-#: src/libslic3r/PrintConfig.cpp:1372
-msgid "Extra loading distance"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1373
-msgid ""
-"When set to zero, the distance the filament is moved from parking position "
-"during load is exactly the same as it was moved back during unload. When "
-"positive, it is loaded further, if negative, the loading move is shorter "
-"than unloading. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1382 src/libslic3r/PrintConfig.cpp:1402
-#: src/libslic3r/PrintConfig.cpp:1415 src/libslic3r/PrintConfig.cpp:1425
-msgid "Perimeters"
-msgstr "PerÃmetros"
-
-#: src/libslic3r/PrintConfig.cpp:1383
-msgid ""
-"This is the acceleration your printer will use for perimeters. A high value "
-"like 9000 usually gives good results if your hardware is up to the job. Set "
-"zero to disable acceleration control for perimeters."
-msgstr ""
-"Esta es la aceleración que su impresora usará para los perÃmetros. Un valor "
-"alto como 9000 generalmente da buenos resultados si su hardware está a la "
-"altura del trabajo. Establezca cero para deshabilitar el control de "
-"aceleración para los perÃmetros."
-
-#: src/libslic3r/PrintConfig.cpp:1392
-msgid "Perimeter extruder"
-msgstr "Extrusor de perÃmetros"
-
-#: src/libslic3r/PrintConfig.cpp:1394
-msgid ""
-"The extruder to use when printing perimeters and brim. First extruder is 1."
-msgstr ""
-"El extrusor que se usa al imprimir perÃmetros y borde. El primer extrusor es "
-"1."
-
-#: src/libslic3r/PrintConfig.cpp:1404
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for perimeters. "
-"You may want to use thinner extrudates to get more accurate surfaces. If "
-"left zero, default extrusion width will be used if set, otherwise 1.125 x "
-"nozzle diameter will be used. If expressed as percentage (for example 200%) "
-"it will be computed over layer height."
-msgstr ""
-"Ajuste este valor distinto de cero para establecer un ancho de extrusión "
-"manual para los perÃmetros. Es posible que desee utilizar extrusiones más "
-"delgadas para obtener superficies más precisas. Si se deja en cero, se usará "
-"el ancho de extrusión por defecto si se establece, de lo contrario se usará "
-"1.125 x diámetro de la boquilla. Si se expresa como porcentaje (por ejemplo, "
-"200%), se calculará sobre la altura de la capa."
-
-#: src/libslic3r/PrintConfig.cpp:1417
-msgid ""
-"Speed for perimeters (contours, aka vertical shells). Set to zero for auto."
-msgstr ""
-"Velocidad para perÃmetros (contornos, también conocidos como conchas "
-"verticales). Establecer a cero para auto."
-
-#: src/libslic3r/PrintConfig.cpp:1427
-msgid ""
-"This option sets the number of perimeters to generate for each layer. Note "
-"that Slic3r may increase this number automatically when it detects sloping "
-"surfaces which benefit from a higher number of perimeters if the Extra "
-"Perimeters option is enabled."
-msgstr ""
-"Esta opción establece la cantidad de perÃmetros que se generarán para cada "
-"capa. Tenga en cuenta que Slic3r puede aumentar este número automáticamente "
-"cuando detecta superficies inclinadas que se benefician de un mayor número "
-"de perÃmetros si la opción PerÃmetros adicionales está habilitada."
-
-#: src/libslic3r/PrintConfig.cpp:1431
-msgid "(minimum)"
-msgstr "(mÃnimo)"
-
-#: src/libslic3r/PrintConfig.cpp:1439
-msgid ""
-"If you want to process the output G-code through custom scripts, just list "
-"their absolute paths here. Separate multiple scripts with a semicolon. "
-"Scripts will be passed the absolute path to the G-code file as the first "
-"argument, and they can access the Slic3r config settings by reading "
-"environment variables."
-msgstr ""
-"Si desea procesar el código G de salida a través de scripts personalizados, "
-"simplemente haga una lista de sus rutas absolutas aquÃ. Separe los scripts "
-"múltiples con un punto y coma. Los scripts se pasarán por la ruta absoluta "
-"al archivo de código G como primer argumento, y pueden acceder a la "
-"configuración de configuración de Slic3r leyendo las variables de entorno."
-
-#: src/libslic3r/PrintConfig.cpp:1452
-msgid "Printer type"
-msgstr "Tipo de impresora"
-
-#: src/libslic3r/PrintConfig.cpp:1453
-msgid "Type of the printer."
-msgstr "Tipo de impresora."
-
-#: src/libslic3r/PrintConfig.cpp:1457
-msgid "Printer notes"
-msgstr "Notas de la impresora"
-
-#: src/libslic3r/PrintConfig.cpp:1458
-msgid "You can put your notes regarding the printer here."
-msgstr "Puede poner sus notas con respecto a la impresora aquÃ."
-
-#: src/libslic3r/PrintConfig.cpp:1467
-msgid "Printer vendor"
-msgstr "Fabricante de la impresora"
-
-#: src/libslic3r/PrintConfig.cpp:1468
-msgid "Name of the printer vendor."
-msgstr "Nombre del fabricante de la impresora."
-
-#: src/libslic3r/PrintConfig.cpp:1472
-msgid "Printer variant"
-msgstr "Modelo de impresora"
-
-#: src/libslic3r/PrintConfig.cpp:1473
-msgid ""
-"Name of the printer variant. For example, the printer variants may be "
-"differentiated by a nozzle diameter."
-msgstr ""
-"Nombre de la variante de impresora. Por ejemplo, las variantes pueden "
-"distinguir diferentes diámetros de boquilla."
-
-#: src/libslic3r/PrintConfig.cpp:1483
-msgid "Raft layers"
-msgstr "Capas de balsa"
-
-#: src/libslic3r/PrintConfig.cpp:1485
-msgid ""
-"The object will be raised by this number of layers, and support material "
-"will be generated under it."
-msgstr ""
-"El objeto será elevado por este número de capas y se generará material de "
-"soporte debajo de él."
-
-#: src/libslic3r/PrintConfig.cpp:1494
-msgid "Resolution"
-msgstr "Resolución"
-
-#: src/libslic3r/PrintConfig.cpp:1495
-msgid ""
-"Minimum detail resolution, used to simplify the input file for speeding up "
-"the slicing job and reducing memory usage. High-resolution models often "
-"carry more detail than printers can render. Set to zero to disable any "
-"simplification and use full resolution from input."
-msgstr ""
-"Resolución mÃnima de detalles, utilizada para simplificar el archivo de "
-"entrada para acelerar el trabajo de laminado y reducir el uso de memoria. "
-"Los modelos de alta resolución suelen llevar más detalles de los que las "
-"impresoras pueden ofrecer. Establézcalo en cero para desactivar cualquier "
-"simplificación y usar la resolución completa de la entrada."
-
-#: src/libslic3r/PrintConfig.cpp:1506
-msgid "Minimum travel after retraction"
-msgstr "Distancia mÃnima después de la retracción"
-
-#: src/libslic3r/PrintConfig.cpp:1507
-msgid ""
-"Retraction is not triggered when travel moves are shorter than this length."
-msgstr ""
-"La retracción no se activa cuando los movimientos de desplazamiento son más "
-"cortos que esta longitud."
-
-#: src/libslic3r/PrintConfig.cpp:1514
-msgid "Retract amount before wipe"
-msgstr "Retracta cantidad antes de limpiar"
-
-#: src/libslic3r/PrintConfig.cpp:1515
-msgid ""
-"With bowden extruders, it may be wise to do some amount of quick retract "
-"before doing the wipe movement."
-msgstr ""
-"Con extrusores bowden, puede ser recomendable realizar una retracción rápida "
-"antes de realizar el movimiento de limpiar."
-
-#: src/libslic3r/PrintConfig.cpp:1523
-msgid "Retract on layer change"
-msgstr "Retraer en el cambio de capa"
-
-#: src/libslic3r/PrintConfig.cpp:1524
-msgid "This flag enforces a retraction whenever a Z move is done."
-msgstr ""
-"Esta bandera impone una retractación cada vez que se realiza un movimiento Z."
-
-#: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:1539
-msgid "Length"
-msgstr "Largo"
-
-#: src/libslic3r/PrintConfig.cpp:1531
-msgid "Retraction Length"
-msgstr "Longitud de retracción"
-
-#: src/libslic3r/PrintConfig.cpp:1532
-msgid ""
-"When retraction is triggered, filament is pulled back by the specified "
-"amount (the length is measured on raw filament, before it enters the "
-"extruder)."
-msgstr ""
-"Cuando se activa la retracción, el filamento se retira en la cantidad "
-"especificada (la longitud se mide en el filamento sin procesar, antes de que "
-"entre en el extrusor)."
-
-#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1544
-msgid "mm (zero to disable)"
-msgstr "mm (cero para deshabilitar)"
-
-#: src/libslic3r/PrintConfig.cpp:1540
-msgid "Retraction Length (Toolchange)"
-msgstr "Longitud de retracción (cambio de herramienta)"
-
-#: src/libslic3r/PrintConfig.cpp:1541
-msgid ""
-"When retraction is triggered before changing tool, filament is pulled back "
-"by the specified amount (the length is measured on raw filament, before it "
-"enters the extruder)."
-msgstr ""
-"Cuando se desencadena la retracción antes de cambiar la herramienta, el "
-"filamento se retira en la cantidad especificada (la longitud se mide en el "
-"filamento sin procesar, antes de que entre en el extrusor)."
-
-#: src/libslic3r/PrintConfig.cpp:1550
-msgid "Lift Z"
-msgstr "Levantar Z"
-
-#: src/libslic3r/PrintConfig.cpp:1551
-msgid ""
-"If you set this to a positive value, Z is quickly raised every time a "
-"retraction is triggered. When using multiple extruders, only the setting for "
-"the first extruder will be considered."
-msgstr ""
-"Si establece esto en un valor positivo, Z se levantará rápidamente cada vez "
-"que se active una retracción. Cuando se usan múltiples extrusores , solo se "
-"considerará la configuración del primer extrusor."
-
-#: src/libslic3r/PrintConfig.cpp:1559
-msgid "Above Z"
-msgstr "Encima de Z"
-
-#: src/libslic3r/PrintConfig.cpp:1560
-msgid "Only lift Z above"
-msgstr "Solo levantar Z mayor que"
-
-#: src/libslic3r/PrintConfig.cpp:1561
-msgid ""
-"If you set this to a positive value, Z lift will only take place above the "
-"specified absolute Z. You can tune this setting for skipping lift on the "
-"first layers."
-msgstr ""
-"Si establece esto en un valor positivo, la elevación de Z solo tendrá lugar "
-"por encima de la Z absoluta especificada. Puede ajustar esta configuración "
-"para omitir el levantamiento en las primeras capas."
-
-#: src/libslic3r/PrintConfig.cpp:1569
-msgid "Below Z"
-msgstr "Por debajo de Z"
-
-#: src/libslic3r/PrintConfig.cpp:1570
-msgid "Only lift Z below"
-msgstr "Solo levantar Z menor que"
-
-#: src/libslic3r/PrintConfig.cpp:1571
-msgid ""
-"If you set this to a positive value, Z lift will only take place below the "
-"specified absolute Z. You can tune this setting for limiting lift to the "
-"first layers."
-msgstr ""
-"Si configura esto en un valor positivo, la elevación Z solo tendrá lugar por "
-"debajo de la Z absoluta especificada. Puede ajustar esta configuración para "
-"limitar la elevación a las primeras capas."
-
-#: src/libslic3r/PrintConfig.cpp:1580 src/libslic3r/PrintConfig.cpp:1589
-msgid "Extra length on restart"
-msgstr "Longitud adicional en el reinicio"
-
-#: src/libslic3r/PrintConfig.cpp:1581
-msgid ""
-"When the retraction is compensated after the travel move, the extruder will "
-"push this additional amount of filament. This setting is rarely needed."
-msgstr ""
-"Cuando la retracción se compensa después de un movimiento, el extrusor "
-"necesitará introducir más filamento. Este ajuste raramente se necesita."
-
-#: src/libslic3r/PrintConfig.cpp:1590
-msgid ""
-"When the retraction is compensated after changing tool, the extruder will "
-"push this additional amount of filament."
-msgstr ""
-"Cuando la retracción se compensa después de cambiar la herramienta, el "
-"extrusor empujará esta cantidad adicional de filamento."
-
-#: src/libslic3r/PrintConfig.cpp:1598 src/libslic3r/PrintConfig.cpp:1599
-msgid "Retraction Speed"
-msgstr "Velocidad de retracción"
-
-#: src/libslic3r/PrintConfig.cpp:1600
-msgid "The speed for retractions (it only applies to the extruder motor)."
-msgstr ""
-"La velocidad para las retracciones (solo se aplica al motor del extrusor)."
-
-#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1608
-msgid "Deretraction Speed"
-msgstr "Velocidad de deretracción"
-
-#: src/libslic3r/PrintConfig.cpp:1609
-msgid ""
-"The speed for loading of a filament into extruder after retraction (it only "
-"applies to the extruder motor). If left to zero, the retraction speed is "
-"used."
-msgstr ""
-"La velocidad de carga de un filamento en la extrusora después de la "
-"retracción (solo se aplica al motor del extrusor). Si se deja a cero, se usa "
-"la velocidad de retracción."
-
-#: src/libslic3r/PrintConfig.cpp:1617
-msgid "Seam position"
-msgstr "Posición de la costura"
-
-#: src/libslic3r/PrintConfig.cpp:1619
-msgid "Position of perimeters starting points."
-msgstr "Posición de los puntos de inicio del perÃmetro."
-
-#: src/libslic3r/PrintConfig.cpp:1626
-msgid "Random"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1627
-msgid "Nearest"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1628
-msgid "Aligned"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1629
-msgid "Rear"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1636
-msgid "Direction"
-msgstr "Dirección"
-
-#: src/libslic3r/PrintConfig.cpp:1638
-msgid "Preferred direction of the seam"
-msgstr "Dirección preferida de la costura"
-
-#: src/libslic3r/PrintConfig.cpp:1639
-msgid "Seam preferred direction"
-msgstr "Dirección de la costura"
-
-#: src/libslic3r/PrintConfig.cpp:1647
-msgid "Jitter"
-msgstr "Jitter"
-
-#: src/libslic3r/PrintConfig.cpp:1649
-msgid "Seam preferred direction jitter"
-msgstr "Dirección preferida de unión jitter"
-
-#: src/libslic3r/PrintConfig.cpp:1650
-msgid "Preferred direction of the seam - jitter"
-msgstr "Dirección preferida de la unión - jitter"
-
-#: src/libslic3r/PrintConfig.cpp:1661
-msgid "USB/serial port for printer connection."
-msgstr "Puerto USB/serial para la conexión con la impresora."
-
-#: src/libslic3r/PrintConfig.cpp:1669
-msgid "Serial port speed"
-msgstr "Velocidad del puerto serial"
-
-#: src/libslic3r/PrintConfig.cpp:1670
-msgid "Speed (baud) of USB/serial port for printer connection."
-msgstr ""
-"Velocidad (baudios) del puerto USB / serie para la conexión de la impresora."
-
-#: src/libslic3r/PrintConfig.cpp:1679
-msgid "Distance from object"
-msgstr "Distancia del objeto"
-
-#: src/libslic3r/PrintConfig.cpp:1680
-msgid ""
-"Distance between skirt and object(s). Set this to zero to attach the skirt "
-"to the object(s) and get a brim for better adhesion."
-msgstr ""
-"Distancia entre falda y objeto(s). Ajuste esto a cero para unir la falda a "
-"los objetos y obtener un borde para una mejor adhesión."
-
-#: src/libslic3r/PrintConfig.cpp:1688
-msgid "Skirt height"
-msgstr "Altura de la falda"
-
-#: src/libslic3r/PrintConfig.cpp:1689
-msgid ""
-"Height of skirt expressed in layers. Set this to a tall value to use skirt "
-"as a shield against drafts."
-msgstr ""
-"Altura de la falda expresada en capas. Establezca esto en un valor alto para "
-"usar la falda como escudo contra corrientes de aire."
-
-#: src/libslic3r/PrintConfig.cpp:1697
-msgid "Loops (minimum)"
-msgstr "Bucles (mÃnimo)"
-
-#: src/libslic3r/PrintConfig.cpp:1698
-msgid "Skirt Loops"
-msgstr "Vueltas de la falda"
-
-#: src/libslic3r/PrintConfig.cpp:1699
-msgid ""
-"Number of loops for the skirt. If the Minimum Extrusion Length option is "
-"set, the number of loops might be greater than the one configured here. Set "
-"this to zero to disable skirt completely."
-msgstr ""
-"Número de vueltas para la falda Si se establece la opción Longitud MÃnima de "
-"Extrusión, el número de bucles puede ser mayor que el configurado aquÃ. "
-"Ajuste esto a cero para deshabilitar la falda por completo."
-
-#: src/libslic3r/PrintConfig.cpp:1708
-msgid "Slow down if layer print time is below"
-msgstr ""
-"Disminuya la velocidad si el tiempo de impresión de la capa está por debajo"
-
-#: src/libslic3r/PrintConfig.cpp:1709
-msgid ""
-"If layer print time is estimated below this number of seconds, print moves "
-"speed will be scaled down to extend duration to this value."
-msgstr ""
-"Si el tiempo de impresión de la capa se estima por debajo de este número de "
-"segundos, la velocidad de los movimientos de impresión se reducirá para "
-"extender la duración a este valor."
-
-#: src/libslic3r/PrintConfig.cpp:1720
-msgid "Small perimeters"
-msgstr "PerÃmetros pequeños"
-
-#: src/libslic3r/PrintConfig.cpp:1722
-msgid ""
-"This separate setting will affect the speed of perimeters having radius <= "
-"6.5mm (usually holes). If expressed as percentage (for example: 80%) it will "
-"be calculated on the perimeters speed setting above. Set to zero for auto."
-msgstr ""
-"Esta configuración por separado afectará la velocidad de los perÃmetros con "
-"un radio <= 6,5 mm (generalmente agujeros). Si se expresa como porcentaje "
-"(por ejemplo: 80%), se calculará en la configuración de velocidad de "
-"perÃmetros anterior. Establecer a cero para auto."
-
-#: src/libslic3r/PrintConfig.cpp:1732
-msgid "Solid infill threshold area"
-msgstr "Ãrea del umbral de relleno sólido"
-
-#: src/libslic3r/PrintConfig.cpp:1734
-msgid ""
-"Force solid infill for regions having a smaller area than the specified "
-"threshold."
-msgstr ""
-"Forzar el relleno sólido para las regiones que tienen un área más pequeña "
-"que el umbral especificado."
-
-#: src/libslic3r/PrintConfig.cpp:1735
-msgid "mm²"
-msgstr "mm²"
-
-#: src/libslic3r/PrintConfig.cpp:1742
-msgid "Solid infill extruder"
-msgstr "Extrusor de relleno sólido"
-
-#: src/libslic3r/PrintConfig.cpp:1744
-msgid "The extruder to use when printing solid infill."
-msgstr "El extrusor que se usa al imprimir relleno sólido."
-
-#: src/libslic3r/PrintConfig.cpp:1751
-msgid "Solid infill every"
-msgstr "Relleno sólido cada"
-
-#: src/libslic3r/PrintConfig.cpp:1753
-msgid ""
-"This feature allows to force a solid layer every given number of layers. "
-"Zero to disable. You can set this to any value (for example 9999); Slic3r "
-"will automatically choose the maximum possible number of layers to combine "
-"according to nozzle diameter and layer height."
-msgstr ""
-"Esta caracterÃstica permite forzar una capa sólida en cada número de capas. "
-"Cero para deshabilitar. Puede establecer esto en cualquier valor (por "
-"ejemplo, 9999); Slic3r seleccionará automáticamente la cantidad máxima "
-"posible de capas para combinar según el diámetro de la boquilla y la altura "
-"de la capa."
-
-#: src/libslic3r/PrintConfig.cpp:1766
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill for "
-"solid surfaces. If left zero, default extrusion width will be used if set, "
-"otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
-"(for example 90%) it will be computed over layer height."
-msgstr ""
-"Ajuste este valor distinto de cero para establecer un ancho de extrusión "
-"manual para el relleno de superficies sólidas. Si se deja en cero, se usará "
-"el ancho de extrusión por defecto si se establece, de lo contrario se usará "
-"1.125 x diámetro de la boquilla. Si se expresa como porcentaje (por ejemplo, "
-"90%), se calculará sobre la altura de la capa."
-
-#: src/libslic3r/PrintConfig.cpp:1777
-msgid ""
-"Speed for printing solid regions (top/bottom/internal horizontal shells). "
-"This can be expressed as a percentage (for example: 80%) over the default "
-"infill speed above. Set to zero for auto."
-msgstr ""
-"Velocidad para imprimir regiones sólidas (superior / inferior / conchas "
-"horizontales internas). Esto se puede expresar como un porcentaje (por "
-"ejemplo: 80%) sobre la velocidad de relleno predeterminada anterior. "
-"Establecer a cero para auto."
-
-#: src/libslic3r/PrintConfig.cpp:1789
-msgid "Number of solid layers to generate on top and bottom surfaces."
-msgstr ""
-"Número de capas sólidas para generar en las superficies superior e inferior."
-
-#: src/libslic3r/PrintConfig.cpp:1796
-msgid "Spiral vase"
-msgstr "Modo vaso"
-
-#: src/libslic3r/PrintConfig.cpp:1797
-msgid ""
-"This feature will raise Z gradually while printing a single-walled object in "
-"order to remove any visible seam. This option requires a single perimeter, "
-"no infill, no top solid layers and no support material. You can still set "
-"any number of bottom solid layers as well as skirt/brim loops. It won't work "
-"when printing more than an object."
-msgstr ""
-"Esta función aumentará Z gradualmente mientras imprime un objeto de pared "
-"simple para eliminar cualquier costura visible. Esta opción requiere un "
-"perÃmetro único, sin relleno, sin capas sólidas superiores y sin material de "
-"soporte. TodavÃa puede establecer cualquier cantidad de capas sólidas "
-"inferiores, asà como bucles de falda / balsa. No funcionará al imprimir más "
-"de un objeto."
-
-#: src/libslic3r/PrintConfig.cpp:1806
-msgid "Temperature variation"
-msgstr "Variación de temperatura"
-
-#: src/libslic3r/PrintConfig.cpp:1807
-msgid ""
-"Temperature difference to be applied when an extruder is not active. Enables "
-"a full-height \"sacrificial\" skirt on which the nozzles are periodically "
-"wiped."
-msgstr ""
-"Diferencia de temperatura que se aplicará cuando un extrusor no esté activo. "
-"ACtiva una falda \"de sacrificio\" de altura completa en la que las "
-"boquillas se limpian periódicamente."
-
-#: src/libslic3r/PrintConfig.cpp:1818
-msgid ""
-"This start procedure is inserted at the beginning, after bed has reached the "
-"target temperature and extruder just started heating, and before extruder "
-"has finished heating. If Slic3r detects M104 or M190 in your custom codes, "
-"such commands will not be prepended automatically so you're free to "
-"customize the order of heating commands and other custom actions. Note that "
-"you can use placeholder variables for all Slic3r settings, so you can put a "
-"\"M109 S[first_layer_temperature]\" command wherever you want."
-msgstr ""
-"Este procedimiento de inicio se inserta en el principio, después de que la "
-"cama ha llegado a la temperatura objetivo y el extrusor ha comenzado a "
-"calentarse, y después de que haya completado el calentamiento. Si Slic3r "
-"detecta un M104 o M190 en los g-codes custom, estos comandos no se iniciarán "
-"automaticamente por lo que eres libre de personalizar el orden de "
-"calentamiento y otras acciones. FÃjate que puedes utilizar variables de "
-"marcación de posición para todos los ajustes de Slic3r, como que puedes usar "
-"\"M109 S[first_layer_temperature]\" donde quieras."
-
-#: src/libslic3r/PrintConfig.cpp:1834
-msgid ""
-"This start procedure is inserted at the beginning, after any printer start "
-"gcode. This is used to override settings for a specific filament. If Slic3r "
-"detects M104, M109, M140 or M190 in your custom codes, such commands will "
-"not be prepended automatically so you're free to customize the order of "
-"heating commands and other custom actions. Note that you can use placeholder "
-"variables for all Slic3r settings, so you can put a \"M109 "
-"S[first_layer_temperature]\" command wherever you want. If you have multiple "
-"extruders, the gcode is processed in extruder order."
-msgstr ""
-"Este procedimiento de inicio se inserta en el principio, después de que la "
-"impresora haya realizado el g-code de inicio. Si Slic3r detecta un M104, "
-"M109, M140 o M190 en los g-codes custom, estos comandos no se iniciarán "
-"automaticamente por lo que eres libre de personalizar el orden de "
-"calentamiento y otras acciones. FÃjate que puedes utilizar variables de "
-"marcación de posición para todos los ajustes de Slic3r, como que puedes usar "
-"\"M109 S[first_layer_temperature]\" donde quieras. Si tienes varios "
-"extrusores, el g-code se procesará en el orden de estos."
-
-#: src/libslic3r/PrintConfig.cpp:1850
-msgid "Single Extruder Multi Material"
-msgstr "Extrusor único de múltiples materiales"
-
-#: src/libslic3r/PrintConfig.cpp:1851
-msgid "The printer multiplexes filaments into a single hot end."
-msgstr "La impresora multiplexa los filamentos en un solo fusor."
-
-#: src/libslic3r/PrintConfig.cpp:1857
-msgid "Prime all printing extruders"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1858
-msgid ""
-"If enabled, all printing extruders will be primed at the front edge of the "
-"print bed at the start of the print."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1864
-msgid "Generate support material"
-msgstr "Generar material de soporte"
-
-#: src/libslic3r/PrintConfig.cpp:1866
-msgid "Enable support material generation."
-msgstr "Habilite la generación de material de soporte."
-
-#: src/libslic3r/PrintConfig.cpp:1871
-msgid "Auto generated supports"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1873
-msgid ""
-"If checked, supports will be generated automatically based on the overhang "
-"threshold value. If unchecked, supports will be generated inside the "
-"\"Support Enforcer\" volumes only."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1880
-msgid "XY separation between an object and its support"
-msgstr "Separación XY entre un objeto y su soporte"
-
-#: src/libslic3r/PrintConfig.cpp:1882
-msgid ""
-"XY separation between an object and its support. If expressed as percentage "
-"(for example 50%), it will be calculated over external perimeter width."
-msgstr ""
-"Separación XY entre un objeto y su soporte. Si se expresa como porcentaje "
-"(por ejemplo 50%), se calculará sobre el ancho del perÃmetro externo."
-
-#: src/libslic3r/PrintConfig.cpp:1893
-msgid "Pattern angle"
-msgstr "Ãngulo del patrón"
-
-#: src/libslic3r/PrintConfig.cpp:1895
-msgid ""
-"Use this setting to rotate the support material pattern on the horizontal "
-"plane."
-msgstr ""
-"Use esta configuración para rotar el patrón de material de soporte en el "
-"plano horizontal."
-
-#: src/libslic3r/PrintConfig.cpp:1906
-msgid ""
-"Only create support if it lies on a build plate. Don't create support on a "
-"print."
-msgstr ""
-"Solo crear soportes si está en contacto con la plataforma. No crea soporte "
-"en la impresión."
-
-#: src/libslic3r/PrintConfig.cpp:1913
-msgid "Contact Z distance"
-msgstr "Distancia Z de contacto"
-
-#: src/libslic3r/PrintConfig.cpp:1915
-msgid ""
-"The vertical distance between object and support material interface. Setting "
-"this to 0 will also prevent Slic3r from using bridge flow and speed for the "
-"first object layer."
-msgstr ""
-"La distancia vertical entre el objeto y la interfaz del material de soporte. "
-"Establecer esto en 0 también evitará que Slic3r use el flujo y la velocidad "
-"del puente para la primera capa de los objetos."
-
-#: src/libslic3r/PrintConfig.cpp:1923
-msgid "soluble"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1924
-msgid "detachable"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1929
-msgid "Enforce support for the first"
-msgstr "Forzar soportes para la primera"
-
-#: src/libslic3r/PrintConfig.cpp:1931
-msgid ""
-"Generate support material for the specified number of layers counting from "
-"bottom, regardless of whether normal support material is enabled or not and "
-"regardless of any angle threshold. This is useful for getting more adhesion "
-"of objects having a very thin or poor footprint on the build plate."
-msgstr ""
-"Generar material de soporte para la cantidad especificada de capas contando "
-"desde abajo, independientemente de si el material de soporte normal está "
-"habilitado o no e independientemente de cualquier umbral de ángulo. Es útil "
-"para obtener una mayor adhesión de los objetos que tienen una huella muy "
-"delgada o deficiente en la placa de construcción."
-
-#: src/libslic3r/PrintConfig.cpp:1937
-msgid "Enforce support for the first n layers"
-msgstr "Aplicar soportes para las primeras n capas"
-
-#: src/libslic3r/PrintConfig.cpp:1943
-msgid "Support material/raft/skirt extruder"
-msgstr "Extrusor de material de soporte/falda/balsa"
-
-#: src/libslic3r/PrintConfig.cpp:1945
-msgid ""
-"The extruder to use when printing support material, raft and skirt (1+, 0 to "
-"use the current extruder to minimize tool changes)."
-msgstr ""
-"El extrusor que se usa al imprimir material de soporte, balsa y falda (1+, 0 "
-"para usar la extrusora actual para minimizar los cambios de herramientas)."
-
-#: src/libslic3r/PrintConfig.cpp:1955
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for support "
-"material. If left zero, default extrusion width will be used if set, "
-"otherwise nozzle diameter will be used. If expressed as percentage (for "
-"example 90%) it will be computed over layer height."
-msgstr ""
-"Ajuste este valor distinto de cero para establecer un ancho de extrusión "
-"manual para el material de soporte. Si se deja en cero, se usará el ancho de "
-"extrusión por defecto si se establece, de lo contrario se usará el diámetro "
-"de la boquilla. Si se expresa como porcentaje (por ejemplo, 90%), se "
-"calculará sobre la altura de la capa."
-
-#: src/libslic3r/PrintConfig.cpp:1964
-msgid "Interface loops"
-msgstr "Bucles de interfaz"
-
-#: src/libslic3r/PrintConfig.cpp:1966
-msgid ""
-"Cover the top contact layer of the supports with loops. Disabled by default."
-msgstr ""
-"Cubrir la capa de contacto superior de los soportes con bucles. Desactivado "
-"por defecto."
-
-#: src/libslic3r/PrintConfig.cpp:1972
-msgid "Support material/raft interface extruder"
-msgstr "Extrusor del material de soporte/soporte de la balsa"
-
-#: src/libslic3r/PrintConfig.cpp:1974
-msgid ""
-"The extruder to use when printing support material interface (1+, 0 to use "
-"the current extruder to minimize tool changes). This affects raft too."
-msgstr ""
-"La extrusora que se usa al imprimir la interfaz de material de soporte (1+, "
-"0 para usar la extrusora actual para minimizar los cambios de herramientas). "
-"Esto también afecta a la balsa."
-
-#: src/libslic3r/PrintConfig.cpp:1982
-msgid "Interface layers"
-msgstr "Capas de interfaz"
-
-#: src/libslic3r/PrintConfig.cpp:1984
-msgid ""
-"Number of interface layers to insert between the object(s) and support "
-"material."
-msgstr ""
-"Número de capas de interfaz para insertar entre el (los) objeto(s) y el "
-"material de soporte."
-
-#: src/libslic3r/PrintConfig.cpp:1992
-msgid "Interface pattern spacing"
-msgstr "Espaciado de patrón de interfaz"
-
-#: src/libslic3r/PrintConfig.cpp:1994
-msgid "Spacing between interface lines. Set zero to get a solid interface."
-msgstr ""
-"Espaciado entre lÃneas de interfaz. Establezca cero para obtener una "
-"interfaz sólida."
-
-#: src/libslic3r/PrintConfig.cpp:2004
-msgid ""
-"Speed for printing support material interface layers. If expressed as "
-"percentage (for example 50%) it will be calculated over support material "
-"speed."
-msgstr ""
-"Velocidad para imprimir capas de interfaz de material de soporte. Si se "
-"expresa como porcentaje (por ejemplo, 50%), se calculará sobre la velocidad "
-"del material de soporte."
-
-#: src/libslic3r/PrintConfig.cpp:2013
-msgid "Pattern"
-msgstr "Patrón"
-
-#: src/libslic3r/PrintConfig.cpp:2015
-msgid "Pattern used to generate support material."
-msgstr "Patrón utilizado para generar material de soporte."
-
-#: src/libslic3r/PrintConfig.cpp:2022
-msgid "Rectilinear grid"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2028
-msgid "Pattern spacing"
-msgstr "Espaciado entre patrones"
-
-#: src/libslic3r/PrintConfig.cpp:2030
-msgid "Spacing between support material lines."
-msgstr "Espaciado entre las lÃneas de material de soporte."
-
-#: src/libslic3r/PrintConfig.cpp:2040
-msgid "Speed for printing support material."
-msgstr "Velocidad para imprimir material de soporte."
-
-#: src/libslic3r/PrintConfig.cpp:2047
-msgid "Synchronize with object layers"
-msgstr "Sincronizar con capas las del objeto"
-
-#: src/libslic3r/PrintConfig.cpp:2049
-msgid ""
-"Synchronize support layers with the object print layers. This is useful with "
-"multi-material printers, where the extruder switch is expensive."
-msgstr ""
-"Sincronizar las capas de soporte con las capas de impresión del objeto. Esto "
-"es útil con impresoras de múltiples materiales, donde el cambio de el "
-"extrusor es costoso."
-
-#: src/libslic3r/PrintConfig.cpp:2056
-msgid "Overhang threshold"
-msgstr "Umbral de voladizos"
-
-#: src/libslic3r/PrintConfig.cpp:2058
-msgid ""
-"Support material will not be generated for overhangs whose slope angle (90° "
-"= vertical) is above the given threshold. In other words, this value "
-"represent the most horizontal slope (measured from the horizontal plane) "
-"that you can print without support material. Set to zero for automatic "
-"detection (recommended)."
-msgstr ""
-"El material de soporte no se generará para voladizos cuyo ángulo de "
-"inclinación (90 ° = vertical) esté por encima del umbral dado. En otras "
-"palabras, este valor representa la pendiente más horizontal (medida desde el "
-"plano horizontal) que puede imprimir sin material de soporte. Ajuste a cero "
-"para la detección automática (recomendado)."
-
-#: src/libslic3r/PrintConfig.cpp:2071
-msgid "With sheath around the support"
-msgstr "Con protección alrededor del soporte"
-
-#: src/libslic3r/PrintConfig.cpp:2073
-msgid ""
-"Add a sheath (a single perimeter line) around the base support. This makes "
-"the support more reliable, but also more difficult to remove."
-msgstr ""
-"Añadir una funda (una sola lÃnea de perÃmetro) alrededor de la base del "
-"soporte. Esto hace el soporte más fiable pero también más difÃcil de retirar."
-
-#: src/libslic3r/PrintConfig.cpp:2081
-msgid ""
-"Extruder temperature for layers after the first one. Set this to zero to "
-"disable temperature control commands in the output."
-msgstr ""
-"Temperatura del extrusor para capas después del primera. Ajuste esto a cero "
-"para desactivar los comandos de control de temperatura en la salida."
-
-#: src/libslic3r/PrintConfig.cpp:2084
-msgid "Temperature"
-msgstr "Temperatura"
-
-#: src/libslic3r/PrintConfig.cpp:2090
-msgid "Detect thin walls"
-msgstr "Detecta paredes delgadas"
-
-#: src/libslic3r/PrintConfig.cpp:2092
-msgid ""
-"Detect single-width walls (parts where two extrusions don't fit and we need "
-"to collapse them into a single trace)."
-msgstr ""
-"Detecta muros de ancho único (partes donde dos extrusiones no se ajustan y "
-"tenemos que colapsarlas en un solo rastro)."
-
-#: src/libslic3r/PrintConfig.cpp:2099
-msgid "Threads"
-msgstr "Núcleos"
-
-#: src/libslic3r/PrintConfig.cpp:2100
-msgid ""
-"Threads are used to parallelize long-running tasks. Optimal threads number "
-"is slightly above the number of available cores/processors."
-msgstr ""
-"Núcleos usados para tareas multi-recurso. Número óptimo de núcleos es "
-"ligeramente sobre el numero de núcleos/procesadores disponibles."
-
-#: src/libslic3r/PrintConfig.cpp:2112
-msgid ""
-"This custom code is inserted right before every extruder change. Note that "
-"you can use placeholder variables for all Slic3r settings as well as "
-"[previous_extruder] and [next_extruder]."
-msgstr ""
-"Este código personalizado se inserta justo antes de cada cambio de extrusor. "
-"Tenga en cuenta que puede usar variables de marcador de posición para todas "
-"las configuraciones de Slic3r, asà como para [previous_extruder] y "
-"[next_extruder]."
-
-#: src/libslic3r/PrintConfig.cpp:2125
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill for "
-"top surfaces. You may want to use thinner extrudates to fill all narrow "
-"regions and get a smoother finish. If left zero, default extrusion width "
-"will be used if set, otherwise nozzle diameter will be used. If expressed as "
-"percentage (for example 90%) it will be computed over layer height."
-msgstr ""
-"Ajuste este valor distinto de cero para establecer un ancho de extrusión "
-"manual para el relleno de las superficies superiores. Es posible que desee "
-"utilizar extrusiones más delgadas para llenar todas las regiones estrechas y "
-"obtener un acabado más suave. Si se deja en cero, se usará el ancho de "
-"extrusión por defecto si se establece, de lo contrario se usará el diámetro "
-"de la boquilla. Si se expresa como porcentaje (por ejemplo, 90%), se "
-"calculará sobre la altura de la capa."
-
-#: src/libslic3r/PrintConfig.cpp:2137
-msgid ""
-"Speed for printing top solid layers (it only applies to the uppermost "
-"external layers and not to their internal solid layers). You may want to "
-"slow down this to get a nicer surface finish. This can be expressed as a "
-"percentage (for example: 80%) over the solid infill speed above. Set to zero "
-"for auto."
-msgstr ""
-"Velocidad para imprimir capas sólidas superiores (solo se aplica a las capas "
-"externas superiores y no a sus capas sólidas internas). Es posible que desee "
-"reducir la velocidad para obtener un acabado de superficie más agradable. "
-"Esto se puede expresar como un porcentaje (por ejemplo: 80%) sobre la "
-"velocidad de relleno sólido anterior. Establecer a cero para auto."
-
-#: src/libslic3r/PrintConfig.cpp:2149
-msgctxt "Layers"
-msgid "Top"
-msgstr "Superior"
-
-#: src/libslic3r/PrintConfig.cpp:2151
-msgid "Number of solid layers to generate on top surfaces."
-msgstr "Número de capas sólidas para generar en las superficies superiores."
-
-#: src/libslic3r/PrintConfig.cpp:2153
-msgid "Top solid layers"
-msgstr "Capas solidas superiores"
-
-#: src/libslic3r/PrintConfig.cpp:2159
-msgid "Speed for travel moves (jumps between distant extrusion points)."
-msgstr ""
-"Velocidad para movimientos (saltos entre puntos de extrusión distantes)."
-
-#: src/libslic3r/PrintConfig.cpp:2168
-msgid "Use firmware retraction"
-msgstr "Usar la retracción del firmware"
-
-#: src/libslic3r/PrintConfig.cpp:2169
-msgid ""
-"This experimental setting uses G10 and G11 commands to have the firmware "
-"handle the retraction. This is only supported in recent Marlin."
-msgstr ""
-"Esta configuración experimental utiliza comandos G10 y G11 para que el "
-"firmware maneje la retracción. Esto solo se admite en Marlin reciente."
-
-#: src/libslic3r/PrintConfig.cpp:2176
-msgid "Use relative E distances"
-msgstr "Usar las distancias relativas en E"
-
-#: src/libslic3r/PrintConfig.cpp:2177
-msgid ""
-"If your firmware requires relative E values, check this, otherwise leave it "
-"unchecked. Most firmwares use absolute values."
-msgstr ""
-"Si su firmware requiere valores E relativos, verifique esto, de lo "
-"contrario, deje sin marcar. La mayorÃa de los firmwares usan valores "
-"absolutos."
-
-#: src/libslic3r/PrintConfig.cpp:2184
-msgid "Use volumetric E"
-msgstr "Usar E volumétrico"
-
-#: src/libslic3r/PrintConfig.cpp:2185
-msgid ""
-"This experimental setting uses outputs the E values in cubic millimeters "
-"instead of linear millimeters. If your firmware doesn't already know "
-"filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] "
-"T0' in your start G-code in order to turn volumetric mode on and use the "
-"filament diameter associated to the filament selected in Slic3r. This is "
-"only supported in recent Marlin."
-msgstr ""
-"Este ajuste experimental utiliza como salida del E valores en milÃmetros "
-"cúbicos en lugar de milÃmetros lineales. Si su firmware aún no conoce el "
-"(los) diámetro (s) del filamento, puede poner comandos como 'M200 D "
-"[filament_diameter_0] T0' en su código G inicial para activar el modo "
-"volumétrico y usar el diámetro del filamento asociado al filamento "
-"seleccionado. en Slic3r. Esto solo se admite en Marlin reciente."
-
-#: src/libslic3r/PrintConfig.cpp:2196
-msgid "Enable variable layer height feature"
-msgstr "Habilitar la función de altura de capa variable"
-
-#: src/libslic3r/PrintConfig.cpp:2197
-msgid ""
-"Some printers or printer setups may have difficulties printing with a "
-"variable layer height. Enabled by default."
-msgstr ""
-"Algunas impresoras o configuraciones de impresora pueden tener dificultades "
-"para imprimir con una altura de capa variable. Habilitado por defecto."
-
-#: src/libslic3r/PrintConfig.cpp:2204
-msgid "Wipe while retracting"
-msgstr "Limpiar mientras se retrae"
-
-#: src/libslic3r/PrintConfig.cpp:2205
-msgid ""
-"This flag will move the nozzle while retracting to minimize the possible "
-"blob on leaky extruders."
-msgstr ""
-"Esta bandera moverá la boquilla mientras se retrae para minimizar la posible "
-"mancha en los extrusores con fugas."
-
-#: src/libslic3r/PrintConfig.cpp:2213
-msgid ""
-"Multi material printers may need to prime or purge extruders on tool "
-"changes. Extrude the excess material into the wipe tower."
-msgstr ""
-"Las impresoras de varios materiales pueden necesitar cebar o purgar "
-"extrusoras en los cambios de herramientas. Extruya el exceso de material en "
-"la torre de limpieza."
-
-#: src/libslic3r/PrintConfig.cpp:2220
-msgid "Purging volumes - load/unload volumes"
-msgstr "Volumen de purga - volumen de carga/descarga"
-
-#: src/libslic3r/PrintConfig.cpp:2221
-msgid ""
-"This vector saves required volumes to change from/to each tool used on the "
-"wipe tower. These values are used to simplify creation of the full purging "
-"volumes below. "
-msgstr ""
-"Este vector guarda los volúmenes necesarios para cambiar desde/hasta cada "
-"herramienta usada en la torre de limpieza. Estos valores se emplean para "
-"simplificar la creación de los volúmenes totales de purga más abajo. "
-
-#: src/libslic3r/PrintConfig.cpp:2228
-msgid "Purging volumes - matrix"
-msgstr "Volúmenes de purga - matriz"
-
-#: src/libslic3r/PrintConfig.cpp:2229
-msgid ""
-"This matrix describes volumes (in cubic milimetres) required to purge the "
-"new filament on the wipe tower for any given pair of tools. "
-msgstr ""
-"Esta matriz detalla los volúmenes (en milÃmetros cúbicos) necesarios para "
-"purgar el nuevo filamento en la torre de limpieza para cualquier par de "
-"filamentos. "
-
-#: src/libslic3r/PrintConfig.cpp:2239
-msgid "Position X"
-msgstr "Posición X"
-
-#: src/libslic3r/PrintConfig.cpp:2240
-msgid "X coordinate of the left front corner of a wipe tower"
-msgstr "Coordenada X de la esquina frontal izquierda de la torre de limpieza"
-
-#: src/libslic3r/PrintConfig.cpp:2247
-msgid "Position Y"
-msgstr "Posición Y"
-
-#: src/libslic3r/PrintConfig.cpp:2248
-msgid "Y coordinate of the left front corner of a wipe tower"
-msgstr "Coordenada Y de la esquina delantera izquierda de la torre de limpieza"
-
-#: src/libslic3r/PrintConfig.cpp:2256
-msgid "Width of a wipe tower"
-msgstr "Ancho de la torre de limpieza"
-
-#: src/libslic3r/PrintConfig.cpp:2263
-msgid "Wipe tower rotation angle"
-msgstr "Ãngulo de rotación de la torre de limpieza"
-
-#: src/libslic3r/PrintConfig.cpp:2264
-msgid "Wipe tower rotation angle with respect to x-axis "
-msgstr "Ãngulo de rotación de la torre de limpieza con respecto al eje X "
-
-#: src/libslic3r/PrintConfig.cpp:2265
-msgid "degrees"
-msgstr "grados"
-
-#: src/libslic3r/PrintConfig.cpp:2272
-msgid "Wipe into this object's infill"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2273
-msgid ""
-"Purging after toolchange will done inside this object's infills. This lowers "
-"the amount of waste but may result in longer print time due to additional "
-"travel moves."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2281
-msgid "Wipe into this object"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2282
-msgid ""
-"Object will be used to purge the nozzle after a toolchange to save material "
-"that would otherwise end up in the wipe tower and decrease print time. "
-"Colours of the objects will be mixed as a result."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2289
-msgid "Maximal bridging distance"
-msgstr "Distancia máxima de puentes"
-
-#: src/libslic3r/PrintConfig.cpp:2290
-msgid "Maximal distance between supports on sparse infill sections. "
-msgstr "Distancia máxima entre soportes en las secciones con relleno ligero. "
-
-#: src/libslic3r/PrintConfig.cpp:2297
-msgid "XY Size Compensation"
-msgstr "Compensación de tamaño XY"
-
-#: src/libslic3r/PrintConfig.cpp:2299
-msgid ""
-"The object will be grown/shrunk in the XY plane by the configured value "
-"(negative = inwards, positive = outwards). This might be useful for fine-"
-"tuning hole sizes."
-msgstr ""
-"El objeto se crecerá / reducirá en el plano XY por el valor configurado "
-"(negativo = hacia adentro, positivo = hacia afuera). Esto podrÃa ser útil "
-"para ajustar el tamaño de los orificios."
-
-#: src/libslic3r/PrintConfig.cpp:2308
-msgid "Z offset"
-msgstr "Ajuste en altura Z"
-
-#: src/libslic3r/PrintConfig.cpp:2309
-msgid ""
-"This value will be added (or subtracted) from all the Z coordinates in the "
-"output G-code. It is used to compensate for bad Z endstop position: for "
-"example, if your endstop zero actually leaves the nozzle 0.3mm far from the "
-"print bed, set this to -0.3 (or fix your endstop)."
-msgstr ""
-"Este valor será añadido (o eliminado) de todas las coordenadas Z en el G-"
-"code de salida. Se usa para compensar una mala posición del final de carrera "
-"Z: por ejemplo, si tu interruptor deja la boquilla a 0.3mm de la base de "
-"impresión, ajustalo a -0.3 (o arregla tu interruptor)."
-
-#: src/libslic3r/PrintConfig.cpp:2319
-msgid "Bed size X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2320 src/libslic3r/PrintConfig.cpp:2327
-#: src/libslic3r/PrintConfig.cpp:2334 src/libslic3r/PrintConfig.cpp:2343
-#: src/libslic3r/PrintConfig.cpp:2351 src/libslic3r/PrintConfig.cpp:2359
-msgid "Dwarf"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2326
-msgid "Bed size Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2333
-msgid "Picture resolution X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2335 src/libslic3r/PrintConfig.cpp:2344
-msgid "px"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2342
-msgid "Picture resolution Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2350 src/libslic3r/PrintConfig.cpp:2430
-#: src/libslic3r/PrintConfig.cpp:2431
-msgid "Exposure time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2358
-msgid "Exposure time first layers"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2373
-msgid "Display width"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2374
-msgid "Width of the display"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2380
-msgid "Display height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2381
-msgid "Height of the display"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2387
-msgid "Number of pixels in"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2389
-msgid "Number of pixels in X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2396
-msgid "Number of pixels in Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2402
-msgid "Display orientation"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2403
-msgid ""
-"Set the actual LCD display orientation inside the SLA printer. Portrait mode "
-"will flip the meaning of display width and height parameters and the output "
-"images will be rotated by 90 degrees."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2410
-msgid "Landscape"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2411
-msgid "Portrait"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2415 src/libslic3r/PrintConfig.cpp:2416
-msgid "Printer scaling correction"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2422 src/libslic3r/PrintConfig.cpp:2423
-msgid "Initial layer height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439
-msgid "Initial exposure time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2446 src/libslic3r/PrintConfig.cpp:2447
-msgid "Correction for expansion when printing"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2452 src/libslic3r/PrintConfig.cpp:2453
-msgid "Correction for expansion after curing"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2458
-msgid "SLA print material notes"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2459
-msgid "You can put your notes regarding the SLA print material here."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2468 src/libslic3r/PrintConfig.cpp:2478
-msgid "Default SLA material profile"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2487
-msgid "Generate supports"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2489
-msgid "Generate supports for the models"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2494
-msgid "Support head front diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2496
-msgid "Diameter of the pointing side of the head"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2503
-msgid "Support head penetration"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2505
-msgid "How much the pinhead has to penetrate the model surface"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2512
-msgid "Support head width"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2514
-msgid "Width from the back sphere center to the front sphere center"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2521
-msgid "Support pillar diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2523
-msgid "Diameter in mm of the support pillars"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2530
-msgid "Support pillar connection mode"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2531
-msgid ""
-"Controls the bridge type between two neigboring pillars. Can be zig-zag, "
-"cross (double zig-zag) or dynamic which will automatically switch between "
-"the first two depending on the distance of the two pillars."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2540
-msgid "Zig-Zag"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2541
-msgid "Cross"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2542
-msgid "Dynamic"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2546
-msgid "Pillar widening factor"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2548
-msgid ""
-"Merging bridges or pillars into another pillars can increase the radius. "
-"Zero means no increase, one means full increase."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2557
-msgid "Support base diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2559
-msgid "Diameter in mm of the pillar base"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2566
-msgid "Support base height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2568
-msgid "The height of the pillar base cone"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2575
-msgid "Critical angle"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2577
-msgid "The default angle for connecting support sticks and junctions."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2584
-msgid "Max bridge length"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2586
-msgid "The max length of a bridge"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2593
-msgid "Object elevation"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2595
-msgid "How much the supports should lift up the supported object."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2602
-msgid "Density on horizontal surfaces"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2604
-msgid ""
-"How many support points (approximately) should be placed on horizontal "
-"surface."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2605 src/libslic3r/PrintConfig.cpp:2614
-msgid "points per square dm"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2611
-msgid "Density on surfaces at 45 degrees"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2613
-msgid ""
-"How many support points (approximately) should be placed on surface sloping "
-"at 45 degrees."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2620
-msgid "Minimal support point height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2622
-msgid "No support points will be placed lower than this value from the bottom."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2629
-msgid "Use pad"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2631
-msgid "Add a pad underneath the supported model"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2636
-msgid "Pad wall thickness"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2645
-msgid "Pad wall height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2654
-msgid "Max merge distance"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2663
-msgid "Pad edge radius"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3017
-msgid "Cut model at the given Z."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3022
-msgid "Dont arrange"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3023
-msgid ""
-"Don't arrange the objects on the build plate. The model coordinates define "
-"the absolute positions on the build plate. The option --center will be "
-"ignored."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3030
-msgid "User data directory"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3031
-msgid ""
-"Load and store settings at the given directory. This is useful for "
-"maintaining different profiles or including configurations from a network "
-"storage."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3038
-msgid "Export 3MF"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3039
-msgid "Slice the model and export slices as 3MF."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3044
-msgid "Slice"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3045
-msgid "Slice the model and export gcode."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3050
-msgid "Help"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3051
-msgid "Show this help."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3056
-msgid "Use GUI"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3057
-msgid ""
-"Forces the GUI launch instead of command line slicing (if you supply a model "
-"file, it will be loaded into the plater)"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3063
-msgid "Output Model Info"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3064
-msgid "Write information about the model to the console."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3069
-msgid "Load config file"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3070
-msgid ""
-"Load configuration from the specified file. It can be used more than once to "
-"load options from multiple files."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3075
-msgid "Do not use GUI"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3076
-msgid ""
-"Forces the command line slicing instead of gui. This takes precedence over --"
-"gui if both are present."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3081
-msgid "Output File"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3082
-msgid ""
-"The file where the output will be written (if not specified, it will be "
-"based on the input file)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3088
-msgid "Rotation angle around the Z axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3093
-msgid "Rotate around X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3094
-msgid "Rotation angle around the X axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3099
-msgid "Rotate around Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3100
-msgid "Rotation angle around the Y axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3105
-msgid "Save config file"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3106
-msgid "Save configuration to the specified file."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3112
-msgid "Scaling factor (default: 1)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3125
-msgid "Print center"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3126
-msgid "Center the print around the given center (default: 100, 100)."
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:176
-msgid "Mixed"
-msgstr "Mezclado"
-
-#: src/libslic3r/GCode/PreviewData.cpp:396
-msgid "Height (mm)"
-msgstr "Altura (mm)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:398
-msgid "Width (mm)"
-msgstr "Ancho (mm)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:400
-msgid "Speed (mm/s)"
-msgstr "Velocidad (mm/s)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:402
-msgid "Volumetric flow rate (mm3/s)"
-msgstr "Tasa de flujo volumétrico (mm3/seg)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:491
-msgid "Default print color"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:495
-#, c-format
-msgid "up to %.2f mm"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:499
-#, c-format
-msgid "above %.2f mm"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:504
-#, c-format
-msgid "%.2f - %.2f mm"
-msgstr ""
diff --git a/resources/localization/fr_FR/Slic3rPE.mo b/resources/localization/fr_FR/Slic3rPE.mo
deleted file mode 100644
index 128106a4c..000000000
Binary files a/resources/localization/fr_FR/Slic3rPE.mo and /dev/null differ
diff --git a/resources/localization/fr_FR/Slic3rPE_fr.po b/resources/localization/fr_FR/Slic3rPE_fr.po
deleted file mode 100644
index 36a89e94d..000000000
--- a/resources/localization/fr_FR/Slic3rPE_fr.po
+++ /dev/null
@@ -1,4831 +0,0 @@
-msgid ""
-msgstr ""
-"Language: fr_FR\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n > 1);\n"
-"X-Generator: Poedit 2.0.8\n"
-"Project-Id-Version: \n"
-"POT-Creation-Date: \n"
-"PO-Revision-Date: \n"
-"Last-Translator: Oleksandra Iushchenko \n"
-"Language-Team: \n"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1488
-msgid ""
-"\n"
-"\n"
-"and it has the following unsaved changes:"
-msgstr ""
-"\n"
-"\n"
-"et il y a les changements non sauvegardés suivants :"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1491
-msgid ""
-"\n"
-"\n"
-"Discard changes and continue anyway?"
-msgstr ""
-"\n"
-"\n"
-"Annuler les changements et continuer malgré tout ?"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1489
-msgid ""
-"\n"
-"\n"
-"has the following unsaved changes:"
-msgstr ""
-"\n"
-"\n"
-"a les changements suivants non-enregistrés :"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1488
-msgid ""
-"\n"
-"\n"
-"is not compatible with printer\n"
-msgstr ""
-"\n"
-"\n"
-"n'est pas compatible avec l'imprimante\n"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:34
-msgid ""
-"\n"
-"During the other layers, fan "
-msgstr ""
-"\n"
-"Pendant les autres couches, le ventilateur "
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:30
-#, c-format
-msgid ""
-"\n"
-"If estimated layer time is greater, but still below ~%ds, fan will run at a proportionally decreasing speed between %d%% and %d%%."
-msgstr ""
-"\n"
-"Si le temps estimé pour la couche est supérieur, mais cependant inférieur à ~%ds, le ventilateur tournera à une vitesse proportionnellement décroissante entre %d%% et %d%%."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:927
-msgid ""
-"\n"
-"Non-positive value."
-msgstr ""
-"\n"
-"Valeur non-positive."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:928
-msgid ""
-"\n"
-"Not a numeric value."
-msgstr ""
-"\n"
-"Valeur non-numérique."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:66
-msgid " - Remember to check for updates at http://github.com/supermerill/slic3r/releases"
-msgstr " - Pensez à vérifier les mises à jours sur http://github.com/supermerill/slic3r/releases"
-
-# Used in this context: _("Save ") + title + _(" as:")
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1751
-msgid " as:"
-msgstr " sous :"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:226
-#, c-format
-msgid " at filament speed %3.2f mm/s."
-msgstr " Ã une vitesse de filament de %3.2f mm/s."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1035
-msgid " Browse "
-msgstr " Parcourir "
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:215
-msgid " flow rate is maximized "
-msgstr " le débit est maximisé "
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:662
-#, no-c-format
-msgid ""
-" infill pattern is not supposed to work at 100% density.\n"
-"\n"
-"Shall I switch to rectilinear fill pattern?"
-msgstr ""
-" le motif de remplissage n'est pas supposé fonctionner à une densité de 100%.\n"
-"\n"
-"Dois-je passer au motif de remplissage rectiligne ?"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1470
-msgid " preset\n"
-msgstr " préréglage\n"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1469
-msgid " preset"
-msgstr " préréglage"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1583
-msgid " Preset"
-msgstr " Préréglage"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:942
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1637
-msgid " Set "
-msgstr " Appliquer "
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1581
-msgid " the selected preset?"
-msgstr " le préréglage sélectionné ?"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:548
-msgid " was successfully sliced."
-msgstr " a été découpé avec succès."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:220
-msgid " with a volumetric rate "
-msgstr " avec un débit volumétrique "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:99
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:504
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:789
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:850
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1060
-msgid "%"
-msgstr "%"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:224
-#, c-format
-msgid "%3.2f mm³/s"
-msgstr "%3.2f mm³/s"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1958
-#, perl-format
-msgid "%d (%d shells)"
-msgstr "%d (%d coques)"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1965
-#, perl-format
-msgid "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d facets reversed, %d backwards edges"
-msgstr "%d faces invalides, %d arrêtes corrigées, %d faces retirées, %d faces ajoutées, %d faces inversées, %d arrêtes à l'envers"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:269
-#, c-format
-msgid "%d lines: %.2lf mm"
-msgstr "%d lignes : %.2lf mm"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:687
-#, perl-format
-msgid "%d presets successfully imported."
-msgstr "%d préréglages importés avec succès."
-
-#: xs/src/slic3r/GUI/Field.cpp:102
-#, c-format
-msgid "%s doesn't support percentage"
-msgstr "%s ne supporte pas un pourcentage"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:408
-msgid "&About Slic3r"
-msgstr "&A propos de Slic3r"
-
-#: xs/src/slic3r/GUI/GUI.cpp:466
-msgid "&Configuration"
-msgstr "&Configuration"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:263
-msgid "&Export Config Bundle…"
-msgstr "&Exporter le Lot de Configurations…"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:257
-msgid "&Export Config…\tCtrl+E"
-msgstr "&Exporter la configuration…\tCtrl+E"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:418
-msgid "&File"
-msgstr "&Fichier"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:791
-msgid "&Finish"
-msgstr "&Fin"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:426
-msgid "&Help"
-msgstr "&Aide"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:260
-msgid "&Load Config Bundle…"
-msgstr "&Charger le Lot de Configurations…"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:254
-msgid "&Load Config…\tCtrl+L"
-msgstr "&Charger la configuration…\tCtrl+L"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:420
-msgid "&Object"
-msgstr "&Objet"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:419
-msgid "&Plater"
-msgstr "&Plateau"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:304
-msgid "&Quit"
-msgstr "&Quitter"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:280
-msgid "&Repeat Last Quick Slice\tCtrl+Shift+U"
-msgstr "&Répéter la dernière découpe rapide\tCtrl+Shift+U"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:422
-msgid "&View"
-msgstr "&Vue"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:421
-msgid "&Window"
-msgstr "&Fenêtre"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:291
-msgid "(&Re)Slice Now\tCtrl+S"
-msgstr "(&Re)Découper maintenant\tCtrl+S"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:994
-msgid "(minimum)"
-msgstr "(minimum)"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:474
-msgid ") not found."
-msgstr ") non trouvé."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:749
-msgid ". Discard changes and continue anyway?"
-msgstr ". Annuler les changements et continuer malgré tout ?"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:63
-msgid "1 Layer"
-msgstr "1 Couche"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:138
-msgid "2D"
-msgstr "2D"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:104
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2124
-msgid "3D"
-msgstr "3D"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1608
-msgid "3MF file exported to "
-msgstr "Fichier 3MF exporté vers "
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:185
-msgid "45° ccw"
-msgstr "45° ccw"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:186
-msgid "45° cw"
-msgstr "45° cw"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:148
-msgid "A boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile."
-msgstr "Une expression booléenne utilisant les valeurs de configuration d'un profil d'imprimante actif. Si cette expression est évaluée comme vraie, ce profil est considéré comme compatible avec le profil d'imprimante actif."
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:480
-msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS."
-msgstr "La règle générale est 160 à 230 °C pour le PLA et 215 à 250 °C pour l'ABS."
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:494
-msgid "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed."
-msgstr "La règle générale est 60 °C pour le PLA et 110 °C pour l'ABS. Laissez à zéro si vous n'avez pas de lit chauffant."
-
-#: xs/src/slic3r/GUI/AboutDialog.cpp:32
-msgid "About Slic3r"
-msgstr "A propos de Slic3r"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1099
-msgid "Above Z"
-msgstr "Au-delà de Z"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:417
-msgid "Acceleration control (advanced)"
-msgstr "Contrôle de l'accélération (avancé)"
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:70
-msgid "Activate"
-msgstr "Activer"
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:36
-msgid "Active: "
-msgstr "Actif : "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1566
-msgid "Add a sheath (a single perimeter line) around the base support. This makes the support more reliable, but also more difficult to remove."
-msgstr "Ajouter une enveloppe (une ligne unique de périmètre) autour de la base du support. Ceci rend le support plus fiable, mais aussi plus difficile à retirer."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:299
-#, no-c-format
-msgid "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r keeps adding perimeters, until more than 70% of the loop immediately above is supported."
-msgstr "Ajouter plus de périmètres si nécessaire pour éviter des trous dans les parois inclinées. Slic3r ajoute des périmètres, jusqu'à ce que plus de 70% de la boucle immédiatement au-dessus soit supportée."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:240
-msgid "Add solid infill near sloping surfaces to guarantee the vertical shell thickness (top+bottom solid layers)."
-msgstr "Ajouter un remplissage plein à proximité des surfaces inclinées pour garantir une épaisseur de coque verticale (couches pleines supérieures+inférieures)."
-
-#: xs/src/slic3r/GUI/Tab.cpp:754
-msgid "Additional information:"
-msgstr "Informations complémentaires :"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:288
-msgid "Additionally a backup snapshot of the whole configuration is created before an update is applied."
-msgstr "De plus, un instantané de sauvegarde de l'ensemble de la configuration est créé avant qu'une mise à jour ne soit appliquée."
-
-#: xs/src/slic3r/GUI/BonjourDialog.cpp:66
-msgid "Address"
-msgstr "Adresse"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:177
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:195
-msgid "Add…"
-msgstr "Ajouter…"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:342
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:356
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:449
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:452
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:831
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1113
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:107
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:208
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:736
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1733
-msgid "Advanced"
-msgstr "Avancé"
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:319
-msgid "Advanced: avrdude output log"
-msgstr "Avancé : journal de sortie avrdude"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1138
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:766
-msgid "After layer change G-code"
-msgstr "G-Code après changement de couche"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1636
-msgid "All"
-msgstr "Tous"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2057
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2073
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2089
-msgid "Along X axis…"
-msgstr "Le long de l'axe X…"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2060
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2076
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2092
-msgid "Along Y axis…"
-msgstr "Le long de l'axe Y…"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2063
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2079
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2095
-msgid "Along Z axis…"
-msgstr "Le long de l'axe Z…"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1592
-msgid "AMF file exported to "
-msgstr "Fichier AMF exporté vers "
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1300
-msgid "Another export job is currently running."
-msgstr "Une autre tâche d'export est actuellement en cours."
-
-#: xs/src/slic3r/GUI/Tab.cpp:749
-msgid "Any modifications should be saved as a new preset inherited from this one. "
-msgstr "Toute modification doit être enregistrée comme un nouveau préréglage hérité de celui-ci. "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:901
-msgid "API Key"
-msgstr "Clé API"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:299
-msgid "Application preferences"
-msgstr "Préférences de l'application"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:332
-msgid "Application will be restarted"
-msgstr "L'application va être redémarrée"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:397
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1242
-msgid "approximate seconds"
-msgstr "secondes approximatives"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1581
-msgid "Are you sure you want to "
-msgstr "Êtes-vous sûr de vouloir "
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:365
-msgid ""
-"Are you sure you want to cancel firmware flashing?\n"
-"This could leave your printer in an unusable state!"
-msgstr ""
-"Êtes-vous certain de vouloir annuler le processus de flash du firmware ?\n"
-"Cela pourrait rendre votre imprimante inutilisable !"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2044
-msgid "Around X axis…"
-msgstr "Autour de l'axe X…"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2047
-msgid "Around Y axis…"
-msgstr "Autour de l'axe Y…"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2050
-msgid "Around Z axis…"
-msgstr "Autour de l'axe Z…"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:180
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:198
-msgid "Arrange"
-msgstr "Agencer"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:224
-msgid "Array of language names and identifiers should have the same size."
-msgstr "Les tableaux de noms et d'identifiants de langue doivent avoir la même taille."
-
-#: xs/src/slic3r/GUI/GUI.cpp:688
-msgid "Attempt to free unreferenced scalar"
-msgstr "Tentative de libération d'un scalaire non référencé"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:332
-msgid "Attention!"
-msgstr "Attention !"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:35
-msgid "Auto-center parts"
-msgstr "Centrer automatiquement les pièces"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1960
-#, perl-format
-msgid "Auto-repaired (%d errors)"
-msgstr "Réparé automatiquement (%d erreurs)"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:264
-msgid "Automatic updates"
-msgstr "Mises à jour automatiques"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:294
-msgid "Automatically repair an STL file"
-msgstr "Réparer automatiquement un fichier STL"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:424
-msgid "Autospeed (advanced)"
-msgstr "Vitesse automatique (avancé)"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:26
-msgid "Avoid crossing perimeters"
-msgstr "Éviter de traverser les périmètres"
-
-#: xs/src/slic3r/GUI/Tab.cpp:2491
-msgid ""
-"BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n"
-"Click to reset all settings for the current option group to the last saved preset."
-msgstr ""
-"L'icône FLÈCHE ARRIÈRE indique que les paramètres ont été changés et qu'ils ne sont pas identiques au dernier préréglage enregistré du groupe d'options en cours.\n"
-"Cliquez pour restaurer tous les paramètres du groupe d'options en cours avec les valeurs du dernier préréglage enregistré."
-
-#: xs/src/slic3r/GUI/Tab.cpp:2505
-msgid ""
-"BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\n"
-"Click to reset current value to the last saved preset."
-msgstr ""
-"L'icône FLÈCHE ARRIÈRE indique que la valeur a été changée et qu'elle n'est pas identique au dernier préréglage enregistré.\n"
-"Cliquez pour restaurer la valeur à celle du dernier préréglage enregistré."
-
-#: xs/src/slic3r/GUI/Tab.cpp:2455
-msgid ""
-"BACK ARROW;indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n"
-"Click the BACK ARROW icon to reset all settings for the current option group to the last saved preset."
-msgstr ""
-"FLÈCHE ARRIÈRE;indique que les paramètres ont été changés et qu'ils ne sont pas identiques au dernier préréglage enregistré du groupe d'options en cours.\n"
-"Cliquez sur l'icône FLÈCHE ARRIÈRE pour restaurer tous les paramètres du groupe d'options en cours avec les valeurs du dernier préréglage enregistré."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:43
-msgid "Background processing"
-msgstr "Tâche en arrière plan"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:800
-msgid "Bed"
-msgstr "Plateau"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:940
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:34
-msgid "Bed shape"
-msgstr "Forme du plateau"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.hpp:42
-msgid "Bed Shape"
-msgstr "Forme du plateau"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:395
-msgid "Bed Shape and Size"
-msgstr "Forme du Plateau et Taille"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:42
-msgid "Bed temperature"
-msgstr "Température du plateau"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:39
-msgid "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output."
-msgstr "Température du plateau pour les couches après la première. Mettez ceci à zéro pour désactiver les commandes de contrôle de température du plateau dans la sortie."
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:497
-msgid "Bed Temperature:"
-msgstr "Température du Plateau :"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1132
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:48
-msgid "Before layer change G-code"
-msgstr "G-Code avant changement de couche"
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:19
-msgid "Before roll back"
-msgstr "Avant le retour en arrière"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1108
-msgid "Below Z"
-msgstr "En-deçà de Z"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:59
-msgid "Between objects G-code"
-msgstr "Entre le G-code des objets"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1150
-msgid "Between objects G-code (for sequential printing)"
-msgstr "Entre le G-code des objets (pour une impression séquentielle)"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:68
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:370
-msgid "Bottom"
-msgstr "Dessous"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:72
-msgid "Bottom solid layers"
-msgstr "Couches pleines inférieures"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:370
-msgid "Bottom View"
-msgstr "Vue du Dessous"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:77
-msgid "Bridge"
-msgstr "Ponts"
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:144
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:86
-msgid "Bridge infill"
-msgstr "Remplissage du pont"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:117
-msgid "Bridges"
-msgstr "Ponts"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:97
-msgid "Bridges fan speed"
-msgstr "Vitesse du ventilateur pour les ponts"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:86
-msgid "Bridging"
-msgstr "Pont"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:88
-msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges. Use 180° for zero angle."
-msgstr "Ecraser l'angle des ponts. Si laissé à zéro, l'angle des ponts sera calculé automatiquement. Sinon, l'angle fourni sera utilisé pour tous les ponts. Utilisez 180° pour un angle nul."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:214
-msgid "Bridging volumetric"
-msgstr "Volumétrie des ponts"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:371
-msgid "Brim"
-msgstr "Jupe"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:127
-msgid "Brim width"
-msgstr "Largeur de la jupe"
-
-#: xs/src/slic3r/GUI/ButtonsDescription.cpp:13
-msgid "Buttons And Text Colors Description"
-msgstr "Description des Boutons et des Couleurs de Texte"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:218
-msgid "by the print profile maximum"
-msgstr "par le maximum du profil de l'imprimante"
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:85
-msgid "Cancel"
-msgstr "Annuler"
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:213
-msgid "Cancelling..."
-msgstr "Annulation..."
-
-#: xs/src/slic3r/GUI/Tab.cpp:2124
-msgid "Cannot overwrite a system profile."
-msgstr "Impossible d'écraser un profil système."
-
-#: xs/src/slic3r/GUI/Tab.cpp:2128
-msgid "Cannot overwrite an external profile."
-msgstr "Impossible d'écraser un profil externe."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:962
-msgid "Capabilities"
-msgstr "Fonctionnalités"
-
-#: xs/src/slic3r/GUI/GUI.cpp:403
-msgid "Capture a configuration snapshot"
-msgstr "Capturer un instantané de la configuration"
-
-#: xs/src/slic3r/GUI/Tab.cpp:1597
-msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
-msgstr "Fichiers de certificat (*.crt, *.pem)|*.crt;*.pem|Tous les fichiers|*.*"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:325
-msgid "Change Application Language"
-msgstr "Changer la langue de l'application"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2030
-msgid "Change the number of copies of the selected object"
-msgstr "Changer le nombre de copies de l'objet sélectionné"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:272 xs/src/slic3r/GUI/Preferences.cpp:59
-msgid "Check for application updates"
-msgstr "Vérifier les mises à jour de l'application"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:298
-msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Choisir un fichier à partir duquel importer la forme du plateau (STL/OBJ/AMF/3MF/PRUSA) :"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:457
-msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Choisir un fichier à découper (STL/OBJ/AMF/3MF/PRUSA) :"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI.pm:286
-msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Choisir un ou plusieurs fichiers (STL/OBJ/AMF/3MF/PRUSA) :"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:360
-msgid "Choose the type of firmware used by your printer."
-msgstr "Choisissez le type de firmware utilisé par votre imprimante."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:62
-msgid "Circular"
-msgstr "Circulaire"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:135
-msgid "Clip multi-part objects"
-msgstr "Dissocier les objets multi-pièces"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:405
-msgid "Color"
-msgstr "Couleur"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:690
-msgid "Combine infill every"
-msgstr "Combiner le remplissage toutes les"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:696
-msgid "Combine infill every n layers"
-msgstr "Combiner le remplissage toutes les n couches"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:509
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:869
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1668
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:143
-msgid "Compatible printers"
-msgstr "Imprimantes compatibles"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:147
-msgid "Compatible printers condition"
-msgstr "Condition de compatibilité des imprimantes"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:154
-msgid "Complete individual objects"
-msgstr "Compléter les objets individuels"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:846
-msgid "Configuration Assistant"
-msgstr "Assistant de Configuration"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:884
-msgid "Configuration notes"
-msgstr "Notes de configuration"
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:96 xs/src/slic3r/GUI/GUI.cpp:402
-msgid "Configuration Snapshots"
-msgstr "Instantanés de Configuration"
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:69
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:161
-msgid "Configuration update"
-msgstr "Mise à jour de la configuration"
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:69
-msgid "Configuration update is available"
-msgstr "Une mise à jour de la configuration est disponible"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:844
-msgid "Configuration Wizard"
-msgstr "Assistant de Configuration"
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:366
-msgid "Confirmation"
-msgstr "Confirmation"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1020
-msgid "Connection failed."
-msgstr "La connexion a échoué."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:211
-msgid "Connection to OctoPrint works correctly."
-msgstr "La connexion avec OctoPrint fonctionne correctement."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1017
-msgid "Connection to printer works correctly."
-msgstr "La connexion avec l'imprimante fonctionne correctement."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1416
-msgid "Contact Z distance"
-msgstr "Distance de contact Z"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:120
-msgid "Controller"
-msgstr "Contrôleur"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:805
-msgid "Cooling"
-msgstr "Refroidissement"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:826
-msgid "Cooling thresholds"
-msgstr "Seuils de refroidissement"
-
-#: xs/src/libslic3r/PrintConfig.cpp:178
-msgid "Cooling tube length"
-msgstr "Longueur du tube de refroidissement"
-
-#: xs/src/libslic3r/PrintConfig.cpp:170
-msgid "Cooling tube position"
-msgstr "Position du tube de refroidissement"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:221
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:900
-msgid "Copies"
-msgstr "Copies"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:476
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:450
-msgid "Cost"
-msgstr "Coût"
-
-#: xs/src/slic3r/GUI/Tab.cpp:1571
-msgid "Could not connect to OctoPrint"
-msgstr "Impossible de se connecter à OctoPrint"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1465
-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."
-
-#: xs/src/slic3r/GUI/Tab.cpp:743
-msgid "Current preset is inherited from "
-msgstr "Le préréglage en cours a hérité de "
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:41
-msgid "Current version:"
-msgstr "Version actuelle :"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:71
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:150
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:92
-msgid "Custom"
-msgstr "Personnalisé"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:846
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1119
-msgid "Custom G-code"
-msgstr "G-code personnalisé"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:240
-msgid "Custom setup"
-msgstr "Configuration personnalisée"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:189
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:205
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2102
-msgid "Cut…"
-msgstr "Couper…"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2027
-msgid "Decrease copies"
-msgstr "Réduire les copies"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:300
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:170
-msgid "Default"
-msgstr "Défaut"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Field.cpp:42
-msgid "default"
-msgstr "défaut"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1469
-msgid "Default "
-msgstr "Défaut "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:489
-msgid "Default base angle for infill orientation. Cross-hatching will be applied to this. Bridges will be infilled using the best direction Slic3r can detect, so this setting does not affect them."
-msgstr "Angle de base par défaut pour l'orientation du remplissage. Des croisements seront appliqués à cette valeur. Les ponts seront remplis avec la meilleure direction que Slic3r peut détecter, ce réglage ne les affecteront donc pas."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:376
-msgid "Default extrusion width"
-msgstr "Largeur d'extrusion par défaut"
-
-#: xs/src/slic3r/GUI/Tab.cpp:767
-msgid "default filament profile"
-msgstr "profil du filament par défaut"
-
-#: xs/src/libslic3r/PrintConfig.cpp:196
-msgid "Default filament profile"
-msgstr "Profil de filament par défaut"
-
-#: xs/src/libslic3r/PrintConfig.cpp:197
-msgid "Default filament profile associated with the current printer profile. On selection of the current printer profile, this filament profile will be activated."
-msgstr "Profil de filament par défaut associé au profil d'imprimante courant. En sélectionnant le profil d'imprimante courant, ce profil de filament sera activé."
-
-#: xs/src/slic3r/GUI/Tab.cpp:2287 xs/src/slic3r/GUI/Tab.cpp:2373
-msgid "Default presets"
-msgstr "Préréglages par défaut"
-
-#: xs/src/libslic3r/PrintConfig.cpp:202
-msgid "Default print profile"
-msgstr "Profil de filament par défaut"
-
-#: xs/src/slic3r/GUI/Tab.cpp:764
-msgid "default print profile"
-msgstr "profil d'impression par défaut"
-
-#: xs/src/libslic3r/PrintConfig.cpp:203
-msgid "Default print profile associated with the current printer profile. On selection of the current printer profile, this print profile will be activated."
-msgstr "Profil de filament par défaut associé au profil d'imprimante courant. En sélectionnant le profil d'imprimante courant, ce profil de filament sera activé."
-
-#: xs/src/libslic3r/PrintConfig.cpp:1849
-msgid "degrees"
-msgstr "degrés"
-
-#: xs/src/libslic3r/PrintConfig.cpp:476
-msgid "Delay after unloading"
-msgstr "Délai après le déchargement"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1582
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:178
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:196
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2021
-msgid "Delete"
-msgstr "Supprimer"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1580
-msgid "delete"
-msgstr "supprimer"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:179
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:197
-msgid "Delete All"
-msgstr "Tout Supprimer"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:51
-msgid "Delete this preset"
-msgstr "Supprimer ce préréglage"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:440
-msgid "Density"
-msgstr "Densité"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:503
-#, no-c-format
-msgid "Density of internal infill, expressed in the range 0% - 100%."
-msgstr "Densité du remplissage interne, exprimée en pourcentage de 0% à 100%."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:507
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:867
-msgid "Dependencies"
-msgstr "Dépendances"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1142
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1143
-msgid "Deretraction Speed"
-msgstr "Vitesse de Réinsertion"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:940
-msgid "Detect bridging perimeters"
-msgstr "Détecter les périmètres faisant des ponts"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1584
-msgid "Detect single-width walls (parts where two extrusions don't fit and we need to collapse them into a single trace)."
-msgstr "Détecter les parois de largeur unique (où deux extrusions côte à côte ne rentrent pas et doivent êtres fusionnées en un seul trait)."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1582
-msgid "Detect thin walls"
-msgstr "Détecter les parois fines"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:66
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:431
-msgid "Diameter"
-msgstr "Diamètre"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:67
-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."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1169
-msgid "Direction"
-msgstr "Direction"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:53
-msgid "Disable communication with the printer over a serial / USB cable. This simplifies the user interface in case the printer is never attached to the computer."
-msgstr "Désactiver la communication avec l'imprimante via un câble série / USB. Ceci simplifie l'interface utilisateur dans le cas où l'imprimante n'est jamais connectée à l'ordinateur."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:180
-msgid "Disable fan for the first"
-msgstr "Désactiver le ventilateur pour le(s) première(s)"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:51
-msgid "Disable USB/serial connection"
-msgstr "Désactiver la connexion USB/série"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:916
-msgid "Disables retraction when the travel path does not exceed the upper layer's perimeters (and thus any ooze will be probably invisible)."
-msgstr "Désactiver la rétraction lorsque le chemin de déplacement ne franchit pas les périmètres des couches supérieures (et donc les coulures seront probablement invisibles)."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:198
-msgid "Distance between copies"
-msgstr "Distance entre les copies"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1213
-msgid "Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion."
-msgstr "Distance entre le ou les objet(s) et la clôture. Mettez zéro pour attacher la clôture a(ux) objet(s) et obtenir une jupe, mais dans ce cas préférez l'utilisation du paramètre de la taille de jupe."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1212
-msgid "Distance from object"
-msgstr "Distance de l'objet"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:58
-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."
-
-#: xs/src/libslic3r/PrintConfig.cpp:171
-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. "
-
-#: xs/src/libslic3r/PrintConfig.cpp:1032
-msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware. "
-msgstr "Distance entre la pointe de l'extrudeur et la position où le filament est positionné en attente lorsqu'il est déchargé. Cela doit correspondre à la valeur dans le firmware de l'imprimante. "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:199
-msgid "Distance used for the auto-arrange feature of the plater."
-msgstr "Distance utilisée par la fonction d'agencement automatique du plateau."
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:51
-msgid "Don't notify about new releases any more"
-msgstr "Ne plus me notifier au sujet des nouvelles publications"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:190
-msgid "Don't support bridges"
-msgstr "Ne pas supporter les ponts"
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:17
-msgid "Downgrade"
-msgstr "Rétrograder"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\2D.pm:132
-msgid "Drag your objects here"
-msgstr "Glissez vos objets ici"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:207
-msgid "Elephant foot compensation"
-msgstr "Compensation de l'effet patte d'éléphant"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:806
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:922
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1695
-msgid "Enable"
-msgstr "Activer"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:163
-msgid "Enable auto cooling"
-msgstr "Activer le refroidissement automatique"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:394
-msgid "Enable fan if layer print time is below"
-msgstr "Activer le ventilateur si le temps d'impression de la couche est inférieur à "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1381
-msgid "Enable support material generation."
-msgstr "Activer la génération des supports."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:645
-msgid "Enable this to get a commented G-code file, with each line explained by a descriptive text. If you print from SD card, the additional weight of the file could make your firmware slow down."
-msgstr "Activez ceci pour obtenir un fichier G-code commenté, avec chaque ligne expliquée par un texte descriptif. Si vous imprimez depuis une carte SD, le poids supplémentaire du fichier pourrait ralentir le firmware de votre imprimante."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1681
-msgid "Enable variable layer height feature"
-msgstr "Activer la fonction de hauteur de couche variable"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:853
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1126
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:217
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:227
-msgid "End G-code"
-msgstr "G-code de fin"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1431
-msgid "Enforce support for the first"
-msgstr "Renforcer le support sur le(s) première(s)"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1439
-msgid "Enforce support for the first n layers"
-msgstr "Renforcer le support pour les n premières couches"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:238
-msgid "Ensure vertical shell thickness"
-msgstr "S'assurer de l'épaisseur de la coque verticale"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:493
-msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed."
-msgstr "Entrez la température du lit nécessaire pour que votre filament colle à votre lit chauffant."
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:441
-msgid "Enter the diameter of your filament."
-msgstr "Entrez le diamètre de votre filament."
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:428
-msgid "Enter the diameter of your printer's hot end nozzle."
-msgstr "Entrez le diamètre de la buse de la tête d'impression de votre imprimante."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1056
-msgid "Enter the new max size for the selected object:"
-msgstr "Entrez la nouvelle taille maximale pour l'objet sélectionné :"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1030
-#, perl-format
-msgid "Enter the new size for the selected object (print bed: %smm):"
-msgstr "Entrez la nouvelle taille pour l'objet sélectionné (plateau d'impression : %s mm) :"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:900
-msgid "Enter the number of copies of the selected object:"
-msgstr "Entrez le nombre de copies de l'objet sélectionné :"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1061
-#, no-perl-format
-msgid "Enter the scale % for the selected object:"
-msgstr "Entrez l'échelle en % pour l'objet sélectionné :"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:479
-msgid "Enter the temperature needed for extruding your filament."
-msgstr "Entrez la température nécessaire pour extruder votre filament."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:477
-msgid "Enter your filament cost per kg here. This is only for statistical information."
-msgstr "Entrez le coût par Kg de votre filament. Ceci est uniquement pour l'information statistique."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:441
-msgid "Enter your filament density here. This is only for statistical information. A decent way is to weigh a known length of filament and compute the ratio of the length to volume. Better is to calculate the volume directly through displacement."
-msgstr "Entrez ici la densité de votre filament. Ceci est uniquement pour des informations statistiques. Un bon moyen d'obtenir cette valeur est de peser un morceau de filament d'une longueur connue et de calculer le rapport de sa longueur par son poids. Le mieux est de calculer le volume directement par déplacement."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:432
-msgid "Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average."
-msgstr "Entrez le diamètre de votre filament ici. Une bonne précision est requise, utilisez un pied à coulisse et calculez la moyenne de plusieurs mesures le long du filament."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:488
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:470
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1300
-msgid "Error"
-msgstr "Erreur"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1612
-msgid "Error exporting 3MF file "
-msgstr "Erreur d'export du fichier 3MF "
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1596
-msgid "Error exporting AMF file "
-msgstr "Erreur d'export du fichier AMF "
-
-#: xs/src/slic3r/Utils/OctoPrint.cpp:47
-msgid "Error while uploading to the OctoPrint server"
-msgstr "Erreur lors du téléchargement vers le serveur OctoPrint"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:315
-msgid "Error! "
-msgstr "Erreur ! "
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:451
-msgid "Estimated printing time"
-msgstr "Temps d'impression estimé"
-
-#: xs/src/slic3r/GUI/GUI.cpp:885
-msgid "Everywhere"
-msgstr "Partout"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:44
-#, c-format
-msgid "except for the first %d layers"
-msgstr "sauf pour les %d première couches"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:48
-msgid "except for the first layer"
-msgstr "sauf pour la première couche"
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:141
-msgid "Exit Slic3r"
-msgstr "Quitter Slic3r"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:192
-msgid "Experimental option for preventing support material from being generated under bridged areas."
-msgstr "Option expérimentale pour empêcher la génération de support sous les ponts."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:942
-msgid "Experimental option to adjust flow for overhangs (bridge flow will be used), to apply bridge speed to them and enable fan."
-msgstr "Option expérimentale qui ajuste le flux pour les surplombs (le flux pour les ponts sera utilisé), leur applique la vitesse pour les ponts et active le ventilateur."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:263
-msgid "Export all presets to file"
-msgstr "Exporter tous les préréglage vers un fichier"
-
-#: lib/Slic3r/GUI/Plater.pm:1416
-msgid "Export cancelled"
-msgstr "Exportation annulée"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:257
-msgid "Export current configuration to file"
-msgstr "Exporter la configuration actuelle vers un fichier"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:323
-msgid "Export current plate as 3MF"
-msgstr "Exporter le plateau courant en 3MF"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:320
-msgid "Export current plate as AMF"
-msgstr "Exporter le plateau courant en AMF"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:314
-msgid "Export current plate as G-code"
-msgstr "Exporter le plateau courant en G-code"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:317
-msgid "Export current plate as STL"
-msgstr "Exporter le plateau courant en STL"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1454
-msgid "Export failed"
-msgstr "L'export a échoué"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:314
-msgid "Export G-code..."
-msgstr "Exporter le G-code..."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:236
-msgid "Export G-code…"
-msgstr "Exporter le G-code…"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2113
-msgid "Export object as STL…"
-msgstr "Exporter l'objet en STL…"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:323
-msgid "Export plate as 3MF..."
-msgstr "Exporter le plateau en 3MF..."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:320
-msgid "Export plate as AMF..."
-msgstr "Exporter le plateau en AMF..."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:317
-msgid "Export plate as STL..."
-msgstr "Exporter le plateau en STL..."
-
-#: xs/src/slic3r/GUI/GUI.cpp:950
-msgid "Export print config"
-msgstr "Exporter la configuration d'impression"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:240
-msgid "Export STL…"
-msgstr "Exporter le STL…"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2113
-msgid "Export this single object as STL file"
-msgstr "Exporter cet unique objet en fichier STL"
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:139
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:81
-msgid "External perimeter"
-msgstr "Périmètre externe"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:267
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:277
-msgid "External perimeters"
-msgstr "Périmètres externes"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:151
-msgid "external perimeters"
-msgstr "périmètres externes"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:289
-msgid "External perimeters first"
-msgstr "Périmètres externes en premier"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1118
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1126
-msgid "Extra length on restart"
-msgstr "Longueur supplémentaire à la reprise"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:297
-msgid "Extra perimeters if needed"
-msgstr "Périmètres supplémentaires si nécessaire"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:795
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1234
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:307
-msgid "Extruder"
-msgstr "Extrudeur"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1187
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:400
-#, c-format
-msgid "Extruder %d"
-msgstr "Extrudeur %d"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:463
-msgid "Extruder and Bed Temperatures"
-msgstr "Températures de l'Extrudeur et du Lit"
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:224
-msgid "Extruder changed to"
-msgstr "Extrudeur changé à "
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:479
-msgid "Extruder clearance (mm)"
-msgstr "Dégagement de l'extrudeur (mm)"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:342
-msgid "Extruder Color"
-msgstr "Couleur de l'extrudeur"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:350
-msgid "Extruder offset"
-msgstr "Décalage de l'extrudeur"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:626
-msgid "Extruder temperature for first layer. If you want to control temperature manually during print, set this to zero to disable temperature control commands in the output file."
-msgstr "Température de l’extrudeur pour la première couche. Si vous voulez contrôler manuellement la température au cours de l’impression, mettez à zéro pour désactiver les commandes de contrôle de température dans le fichier de sortie."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1573
-msgid "Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output."
-msgstr "Température de l'extrudeur pour les couches après la première. Mettez zéro pour désactiver les commandes de contrôle de la température dans le fichier de sortie."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:431
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:966
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:308
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:702
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:958
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1272
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1445
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1471
-msgid "Extruders"
-msgstr "Extrudeurs"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:360
-msgid "Extrusion axis"
-msgstr "Axe d'extrusion"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:367
-msgid "Extrusion multiplier"
-msgstr "Multiplicateur d'extrusion"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:483
-msgid "Extrusion Temperature:"
-msgstr "Température d'Extrusion :"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:268
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:377
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:592
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:710
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:967
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1292
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1454
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1614
-msgid "Extrusion Width"
-msgstr "Largeur d'Extrusion"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:453
-msgid "Extrusion width"
-msgstr "Largeur d'extrusion"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:410
-msgid "Facets"
-msgstr "Faces"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:36
-msgid "Fan "
-msgstr "Ventilateur "
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:817
-msgid "Fan settings"
-msgstr "Réglages du ventilateur"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:818
-msgid "Fan speed"
-msgstr "Vitesse du ventilateur"
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:330
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:68
-msgid "Feature type"
-msgstr "Type de fonctionnalité"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:78
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:79
-msgid "Feature types"
-msgstr "Types de fonctionnalité"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:183
-msgid "Fewer"
-msgstr "Moins"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:786
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:787
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:368
-msgid "Filament"
-msgstr "Filament"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:412
-msgid "Filament and Nozzle Diameters"
-msgstr "Diamètres du Filament et de la Buse"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:445
-msgid "Filament Diameter:"
-msgstr "Diamètre du Filament :"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:412
-msgid "Filament notes"
-msgstr "Notes du filament"
-
-#: xs/src/libslic3r/PrintConfig.cpp:1031
-msgid "Filament parking position"
-msgstr "Position d'attente du filament"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:832
-msgid "Filament properties"
-msgstr "Propriétés du filament"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.hpp:202
-msgid "Filament Settings"
-msgstr "Réglages du filament"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:450
-msgid "Filament type"
-msgstr "Type de filament"
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:44
-msgid "filaments"
-msgstr "filaments"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1445
-msgid "File added to print queue"
-msgstr "Fichier ajouté à la file d'impression"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:475
-msgid "File Not Found"
-msgstr "Fichier non trouvé"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:487
-msgid "Fill angle"
-msgstr "Angle du remplissage"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:501
-msgid "Fill density"
-msgstr "Densité du remplissage"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:539
-msgid "Fill pattern"
-msgstr "Motif de remplissage"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:541
-msgid "Fill pattern for general low-density infill."
-msgstr "Motif pour les remplissages de faible densité."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:248
-msgid "Fill pattern for top/bottom infill. This only affects the external visible layer, and not its adjacent solid shells."
-msgstr "Motif pour les surfaces supérieurs/inférieurs. Ceci affecte seulement la couche externe visible, et non les replissages plein adjacents."
-
-#: xs/src/slic3r/GUI/BonjourDialog.cpp:194
-msgid "Finished"
-msgstr "Terminé"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1110
-msgid "Firmware"
-msgstr "Firmware"
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:266
-msgid "Firmware flasher"
-msgstr "Outil de flash du firmware"
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:293
-msgid "Firmware image:"
-msgstr "Image du firmware :"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1314
-msgid "Firmware Retraction"
-msgstr "Rétraction du Firmware"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:356
-msgid "Firmware Type"
-msgstr "Type de Firmware"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:573
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:582
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:591
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:625
-msgid "First layer"
-msgstr "Première couche"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:603
-msgid "First layer height"
-msgstr "Hauteur de la première couche"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:615
-msgid "First layer speed"
-msgstr "Vitesse de la première couche"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:214
-msgid "First layer volumetric"
-msgstr "Volume de la première couche"
-
-#: xs/src/slic3r/GUI/GUI.cpp:326
-msgid "Flash printer firmware"
-msgstr "Flasher le firmware de l'imprimante"
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:84
-msgid "Flash!"
-msgstr "Flash !"
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:147
-msgid "Flashing cancelled."
-msgstr "Processus de flash annulé."
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:146
-msgid "Flashing failed. Please see the avrdude log below."
-msgstr "Le processus de flash a échoué. Veuillez consulter le journal avrdude ci-dessous."
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:123
-msgid "Flashing in progress. Please do not disconnect the printer!"
-msgstr "Processus de flash en cours. Veuillez ne pas déconnecter l'imprimante !"
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:145
-msgid "Flashing succeeded!"
-msgstr "Flash effectué avec succès !"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:466
-msgid "Flow"
-msgstr "Flux"
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:181
-msgid "For more information please visit our wiki page:"
-msgstr "Pour plus d'informations, merci de visiter notre page wiki :"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:599
-msgid ""
-"For the Wipe Tower to work with the soluble supports, the support layers\n"
-"need to be synchronized with the object layers.\n"
-"\n"
-"Shall I synchronize support layers in order to enable the Wipe Tower?"
-msgstr ""
-"Pour que la tour de nettoyage fonctionne avec des supports solubles, les couches de support\n"
-"doivent être synchronisées avec les couches de l'objet.\n"
-"\n"
-"Dois-je synchroniser les couches de support pour pouvoir activer la tour de nettoyage ?"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1264
-msgid "Force solid infill for regions having a smaller area than the specified threshold."
-msgstr "Forcer un remplissage plein pour les zones ayant une surface plus petite que la valeur indiquée."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:758
-msgid "Force the generation of solid shells between adjacent materials/volumes. Useful for multi-extruder prints with translucent materials or manual soluble support material."
-msgstr "Force la génération de coques pleines entre des volumes/matériaux adjacents. Utile pour des impressions multi-extrudeurs avec des matériaux translucides ou avec un support manuel soluble."
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:260
-msgid "From"
-msgstr "De"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:371
-msgid "Front"
-msgstr "Avant"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:371
-msgid "Front View"
-msgstr "Vue Avant"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:514
-msgid "G-code"
-msgstr "G-code"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1451
-msgid "G-code file exported to "
-msgstr "Fichier G-code exporté vers "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:652
-msgid "G-code flavor"
-msgstr "Version du G-code"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:444
-msgid "g/cm³"
-msgstr "g/cm³"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:634
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:145
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:87
-msgid "Gap fill"
-msgstr "Remplissage des trous"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:937
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:11
-msgid "General"
-msgstr "Général"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:875
-msgid "Generate no less than the number of skirt loops required to consume the specified amount of filament on the bottom layer. For multi-extruder machines, this minimum applies to each extruder."
-msgstr "Nombre minimum de clôtures à générer afin de consommer la quantité de filament spécifiée sur la couche inférieure. Pour les machines multi-extrudeurs, ce minimum s'applique à chaque extrudeur."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1379
-msgid "Generate support material"
-msgstr "Générer des supports"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1433
-msgid "Generate support material for the specified number of layers counting from bottom, regardless of whether normal support material is enabled or not and regardless of any angle threshold. This is useful for getting more adhesion of objects having a very thin or poor footprint on the build plate."
-msgstr "Générer des supports pour le nombre de couches spécifié à partir du bas, que les supports normaux soient activés ou non et sans tenir compte de seuils d'inclinaison. Ceci est utile pour obtenir une meilleure adhésion pour des objets ayant une surface de contact très fine ou limitée sur le plateau."
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:442
-msgid "Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average."
-msgstr "Une bonne précision est requise, utilisez un pied à coulisse et calculez la moyenne de plusieurs mesures le long du filament."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:583
-msgid "Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output."
-msgstr "Température du plateau chauffant pour la première couche. Mettez ceci à zéro pour désactiver les commandes de contrôle de température du plateau dans la sortie."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:320
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:69
-msgid "Height"
-msgstr "Hauteur"
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:332
-msgid "Height (mm)"
-msgstr "Hauteur (mm)"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1222
-msgid "Height of skirt expressed in layers. Set this to a tall value to use skirt as a shield against drafts."
-msgstr "Hauteur de la clôture exprimée en couches. Mettez une valeur élevée pour utiliser la clôture comme un bouclier contre les flux d'airs."
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:213
-#, c-format
-msgid "Hello, welcome to Slic3r Slic3r++! This %s helps you with the initial configuration; just a few settings and you will be ready to print."
-msgstr "Bonjour, bienvenu dans Slic3r Slic3r++ ! Ce %s vous aide à la configuration initiale ; juste quelques paramètres et vous serez prêt à imprimer."
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:218
-msgid "Here you can adjust required purging volume (mm³) for any given pair of tools."
-msgstr "Ici vous pouvez ajuster le volume de purge nécessaire (mm³) pour une paire d'outils donnée."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:329
-msgid "Horizontal shells"
-msgstr "Coques horizontales"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:128
-msgid "Horizontal width of the brim that will be printed around each object on the first layer."
-msgstr "Largeur horizontale de la jupe qui sera imprimée autour de chaque objet sur la première couche."
-
-#: xs/src/slic3r/GUI/BonjourDialog.cpp:67
-msgid "Hostname"
-msgstr "Nom d'hôte"
-
-#: xs/src/libslic3r/PrintConfig.cpp:991
-msgid "Hostname, IP or URL"
-msgstr "Nom d'hôte, IP ou URL"
-
-#: xs/src/slic3r/GUI/Tab.cpp:113
-msgid ""
-"Hover the cursor over buttons to find more information \n"
-"or click this button."
-msgstr ""
-"Passez le curseur au dessus des boutons pour obtenir plus d'informations\n"
-"ou cliquez sur ce bouton."
-
-#: xs/src/slic3r/GUI/Tab.cpp:1612
-msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate."
-msgstr "Le fichier HTTPS CA est optionnel. Il est uniquement requis si vous utilisez le HTTPS avec un certificat auto-signé."
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:275 xs/src/slic3r/GUI/Preferences.cpp:61
-msgid "If enabled, Slic3r checks for new versions of Slic3r PE online. When a new version becomes available a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done."
-msgstr "Si activé, Slic3r vérifie en ligne l'existence de nouvelles versions de Slic3r PE. Lorsqu'une nouvelle version est disponible, une notification est affichée au démarrage suivant de l'application (jamais pendant l'utilisation du programme). Ceci est uniquement un mécanisme de notification, aucune installation automatique n'est faite."
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:282 xs/src/slic3r/GUI/Preferences.cpp:69
-msgid "If enabled, Slic3r downloads updates of built-in system presets in the background. These updates are downloaded into a separate temporary location. When a new preset version becomes available it is offered at application startup."
-msgstr "Si activé, Slic3r télécharge les mises à jours des préréglages système intégrés en arrière-plan. Ces mises à jour sont téléchargées dans un répertoire temporaire séparé. Lorsqu'une nouvelle version de préréglages est disponible, elle est proposée au démarrage de l'application."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:26
-#, c-format
-msgid "If estimated layer time is below ~%ds, fan will run at %d%% and print speed will be reduced so that no less than %ds are spent on that layer (however, speed will never be reduced below %dmm/s)."
-msgstr "Si le temps de couche estimé est inférieur à ~%d s, le ventilateur tournera à %d%% et la vitesse d'impression sera réduite pour qu'au moins %d s soient passées sur cette couche (cependant, la vitesse ne sera jamais réduite en-dessous de %d mm/s)."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:616
-msgid "If expressed as absolute value in mm/s, this speed will be applied to all the print moves of the first layer, regardless of their type. If expressed as a percentage (for example: 40%) it will scale the default speeds."
-msgstr "Si exprimée avec une valeur absolue en mm/s, cette vitesse sera appliquée à tous les déplacements d'impression de la première couche, quel que soit leur type. Si exprimée comme un pourcentage (par exemple 40%), cela modulera la vitesse par défaut."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:395
-msgid "If layer print time is estimated below this number of seconds, fan will be enabled and its speed will be calculated by interpolating the minimum and maximum speeds."
-msgstr "Si le temps d'impression estimé de la couche est inférieur à ce nombre de secondes, le ventilateur sera activé et sa vitesse calculée par interpolation des vitesses minimum et maximum."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1240
-msgid "If layer print time is estimated below this number of seconds, print moves speed will be scaled down to extend duration to this value."
-msgstr "Si le temps d'impression estimé de la couche est inférieur à ce nombre de secondes, la vitesse des déplacements d'impression sera réduite afin d'atteindre cette valeur."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:388
-msgid "If this is enabled, fan will never be disabled and will be kept running at least at its minimum speed. Useful for PLA, harmful for ABS."
-msgstr "Si ceci est activé, le ventilateur ne sera jamais désactivé et sera maintenu au moins à sa vitesse minimum. Utile pour le PLA, mais risqué pour l'ABS."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:37
-msgid "If this is enabled, Slic3r will auto-center objects around the print bed center."
-msgstr "Si ceci est activé, Slic3r centrera automatique les objets autour du centre du plateau d'impression."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:45
-msgid "If this is enabled, Slic3r will pre-process objects as soon as they're loaded in order to save time when exporting G-code."
-msgstr "Si ceci est activé, Slic3r va pré-calculer les objets dès qu'ils sont chargés pour gagner du temps lors de l'export du G-code."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:29
-msgid "If this is enabled, Slic3r will prompt the last output directory instead of the one containing the input files."
-msgstr "Si ceci est activé, Slic3r affichera le dernier répertoire de sortie au lieu de celui contenant les fichiers d'entrée."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:77
-msgid "If you have rendering issues caused by a buggy OpenGL 2.0 driver, you may try to check this checkbox. This will disable the layer height editing and anti aliasing, so it is likely better to upgrade your graphics driver."
-msgstr "Si vous avez des soucis de rendu causés par un driver OpenGL 2.0 bogué, vous pouvez essayer de cocher cette case. Ceci désactivera l'édition de la hauteur de couche et l'anti-aliasing, vous avez donc intérêt à mettre à jour vos drivers graphiques."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1091
-msgid "If you set this to a positive value, Z is quickly raised every time a retraction is triggered. When using multiple extruders, only the setting for the first extruder will be considered."
-msgstr "Si vous indiquez une valeur positive, l'axe Z est rapidement élevé à chaque rétraction. Lorsque vous utilisez plusieurs extrudeurs, seul le réglage du premier extrudeur sera pris en compte."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1101
-msgid "If you set this to a positive value, Z lift will only take place above the specified absolute Z. You can tune this setting for skipping lift on the first layers."
-msgstr "Si vous indiquez une valeur positive, le levage de l'axe Z ne sera déclenché qu'à partir de la valeur absolue indiquée pour l'axe Z. Vous pouvez modifier ce réglage pour éviter le levage de l'axe Z sur les premières couches."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1110
-msgid "If you set this to a positive value, Z lift will only take place below the specified absolute Z. You can tune this setting for limiting lift to the first layers."
-msgstr "Si vous indiquez une valeur positive, le levage de l'axe Z ne sera déclenché que jusqu'à la valeur absolue indiquée pour l'axe Z. Vous pouvez modifier ce réglage pour limiter le levage de l'axe Z aux premières couches."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:451
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1002
-msgid "If you want to process the output G-code through custom scripts, just list their absolute paths here. Separate multiple scripts with a semicolon. Scripts will be passed the absolute path to the G-code file as the first argument, and they can access the Slic3r config settings by reading environment variables."
-msgstr "Si vous voulez traiter le G-code de sortie à l'aide de scripts personnalisés, listez simplement leurs chemins absolus ici. Séparez les divers scripts avec un point virgule. Les scripts vont recevoir en premier argument le chemin absolu du fichier G-code, et ils peuvent accéder aux réglages de configuration de Slic3r en lisant des variables d'environnement."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:351
-msgid "If your firmware doesn't handle the extruder displacement you need the G-code to take it into account. This option lets you specify the displacement of each extruder with respect to the first one. It expects positive coordinates (they will be subtracted from the XY coordinate)."
-msgstr "Si le firmware de votre imprimante ne gère pas le décalage de l'extrudeur, c'est au G-code d'en tenir compte. Cette option vous permet de spécifier le décalage de chaque extrudeur par rapport au premier. Des valeurs positives sont attendues (elles seront soustraites des coordonnées XY)."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1664
-msgid "If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values."
-msgstr "Si votre firmware requiert des valeurs relatives pour E, cochez cette case, sinon laissez-la décochée. La plupart des firmwares utilisent des valeurs absolues."
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:125
-msgid "Incompatible bundles:"
-msgstr "Lots incompatibles :"
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:67
-msgid "Incompatible with this Slic3r"
-msgstr "Incompatible avec ce Slic3r"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2024
-msgid "Increase copies"
-msgstr "Augmenter les copies"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:346
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:347
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:664
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:87
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:247
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:488
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:502
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:540
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:681
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:691
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:709
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:727
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:746
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1263
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1280
-msgid "Infill"
-msgstr "Remplissage"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:169
-msgid "infill"
-msgstr "remplissage"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:720
-msgid "Infill before perimeters"
-msgstr "Remplissage avant les périmètres"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:701
-msgid "Infill extruder"
-msgstr "Extrudeur pour le remplissage"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:735
-msgid "Infill/perimeters overlap"
-msgstr "Chevauchement remplissage/périmètres"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:398
-msgid "Info"
-msgstr "Info"
-
-#: xs/src/libslic3r/PrintConfig.cpp:819
-msgid "Inherits profile"
-msgstr "Hérite du profil"
-
-#: xs/src/slic3r/GUI/Field.cpp:111
-msgid "Input value is out of range"
-msgstr "La valeur entrée est hors plage"
-
-#: xs/src/slic3r/GUI/GUI.cpp:402
-msgid "Inspect / activate configuration snapshots"
-msgstr "Inspecter / activer les instantanés de configuration"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1479
-msgid "Interface layers"
-msgstr "Couches d'interface"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1463
-msgid "Interface loops"
-msgstr "Boucles d'interface"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1488
-msgid "Interface pattern spacing"
-msgstr "Espacement du motif d'interface"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:757
-msgid "Interface shells"
-msgstr "Coques d'interface"
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:141
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:83
-msgid "Internal infill"
-msgstr "Remplissage interne"
-
-#: xs/src/slic3r/Utils/OctoPrint.cpp:120
-msgid "Invalid API key"
-msgstr "Clé API invalide"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1031
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1056
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1061
-msgid "Invalid scaling value entered"
-msgstr "Valeur de mise à l'échelle entrée invalide"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:368
-msgid "Iso"
-msgstr "Isométrique"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:368
-msgid "Iso View"
-msgstr "Vue Isométrique"
-
-#: xs/src/slic3r/GUI/Tab.cpp:748
-msgid "It can't be deleted or modified. "
-msgstr "Il ne peut être supprimé ou modifié. "
-
-#: xs/src/slic3r/GUI/Tab.cpp:741
-msgid "It's a default preset."
-msgstr "C'est un préréglage par défaut."
-
-#: xs/src/slic3r/GUI/Tab.cpp:742
-msgid "It's a system preset."
-msgstr "C'est un préréglage système."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1180
-msgid "Jitter"
-msgstr "Gigue"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:387
-msgid "Keep fan always on"
-msgstr "Garder le ventilateur toujours actif"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:235
-msgid "Language"
-msgstr "Langue"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:192
-msgid "Layer Editing"
-msgstr "Édition de Couche"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:207
-msgid "Layer editing"
-msgstr "Édition de couche"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:314
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:777
-msgid "Layer height"
-msgstr "Hauteur de couche"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1194
-msgid "Layer height limits"
-msgstr "Limites de hauteur de couche"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:183
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:694
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1033
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1224
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1285
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1437
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1482
-msgid "layers"
-msgstr "couches"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:157
-msgid "Layers"
-msgstr "Couches"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:69
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:239
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:290
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:298
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:604
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:762
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:778
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:941
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:989
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1152
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1583
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1639
-msgid "Layers and Perimeters"
-msgstr "Couches et Périmètres"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:313
-msgid "Layers and perimeters"
-msgstr "Couches et périmètres"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:373
-msgid "Left"
-msgstr "Gauche"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:373
-msgid "Left View"
-msgstr "Vue Gauche"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1071
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1080
-msgid "Length"
-msgstr "Longueur"
-
-#: xs/src/libslic3r/PrintConfig.cpp:179
-msgid "Length of the cooling tube to limit space for cooling moves inside it "
-msgstr "Longueur du tube de refroidissement pour limiter l'espace pour les déplacements de refroidissement à l'intérieur de celui-ci "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1090
-msgid "Lift Z"
-msgstr "Levage de l'axe Z"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:254
-msgid "Load exported configuration file"
-msgstr "Charger le fichier de configuration exporté"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:260
-msgid "Load presets from a bundle"
-msgstr "Charger les préréglages à partir d'un lot"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:75
-msgid "Load shape from STL..."
-msgstr "Charger une forme depuis un STL..."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:692
-msgid "Loaded "
-msgstr "Chargé "
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:233
-msgid "loaded"
-msgstr "chargé"
-
-#: xs/src/libslic3r/PrintConfig.cpp:459
-msgid "Loading speed"
-msgstr "Vitesse de chargement"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:629
-msgid "Loading…"
-msgstr "Chargement…"
-
-#: xs/src/slic3r/GUI/Tab.cpp:2481
-msgid "LOCKED LOCK icon indicates that the settings are the same as the system values for the current option group"
-msgstr "L'icône VERROU VERROUILLE indique que les paramètres sont les mêmes que les valeurs système pour le groupe d'options en cours"
-
-#: xs/src/slic3r/GUI/Tab.cpp:2497
-msgid "LOCKED LOCK icon indicates that the value is the same as the system value."
-msgstr "L'icône VERROU VERROUILLE indique que la valeur est la même que la valeur système."
-
-#: xs/src/slic3r/GUI/Tab.cpp:2442
-msgid "LOCKED LOCK;indicates that the settings are the same as the system values for the current option group"
-msgstr "VERROU VERROUILLE;indique que les paramètres sont les mêmes que les valeurs système pour le groupe d'options en cours"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1229
-msgid "Loops (minimum)"
-msgstr "Boucles (minimum)"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:412
-msgid "Manifold"
-msgstr "Variété"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:411
-msgid "Materials"
-msgstr "Matériaux"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:787
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:796
-msgid "Max"
-msgstr "Maximum"
-
-#: xs/src/libslic3r/PrintConfig.cpp:876
-msgid "Max print height"
-msgstr "Hauteur maximale d'impression"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:807
-msgid "Max print speed"
-msgstr "Vitesse d'impression maximale"
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:52
-msgid "max slic3r version"
-msgstr "version maximale de slic3r"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:837
-msgid "Max volumetric slope negative"
-msgstr "Pente volumétrique négative maximum"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:826
-msgid "Max volumetric slope positive"
-msgstr "Pente volumétrique positive maximum"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:421
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:817
-msgid "Max volumetric speed"
-msgstr "Vitesse volumétrique maximale"
-
-#: xs/src/libslic3r/PrintConfig.cpp:1854
-msgid "Maximal bridging distance"
-msgstr "Distance maximale de pont"
-
-#: xs/src/libslic3r/PrintConfig.cpp:1855
-msgid "Maximal distance between supports on sparse infill sections. "
-msgstr "Distance maximale entre les supports sur les sections de remplissage épars. "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:422
-msgid "Maximum volumetric speed allowed for this filament. Limits the maximum volumetric speed of a print to the minimum of print and filament volumetric speed. Set to zero for no limit."
-msgstr "Vitesse volumétrique maximale autorisée pour ce filament. Limite la vitesse volumétrique d'une impression au minimum des vitesses volumétriques d'impression et de filament. Mettez à zéro pour enlever la limite."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:848
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:857
-msgid "Min"
-msgstr "Minimum"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:866
-msgid "Min print speed"
-msgstr "Vitesse d'impression minimale"
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:50
-msgid "min slic3r version"
-msgstr "version minimale de slic3r"
-
-#: xs/src/libslic3r/PrintConfig.cpp:951
-msgid "Minimal filament extrusion length"
-msgstr "Longueur minimale d'extrusion de filament"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1040
-msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input."
-msgstr "Résolution minimale pour les détails, utilisée pour simplifier le fichier d'entrée afin d'accélérer le découpage et de réduire l'utilisation de la mémoire. Les modèles haute-résolution possèdent souvent plus de détails que ce que les imprimantes peuvent produire. Mettez à zéro pour désactiver toute simplification et utiliser la résolution complète de l'entrée."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1050
-msgid "Minimum travel after retraction"
-msgstr "Trajet minimal après une rétraction"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2055
-msgid "Mirror"
-msgstr "Symétrie"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2055
-msgid "Mirror the selected object"
-msgstr "Symétriser l'objet sélectionné"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2057
-msgid "Mirror the selected object along the X axis"
-msgstr "Symétriser l'objet sélectionné selon l'axe X"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2060
-msgid "Mirror the selected object along the Y axis"
-msgstr "Symétriser l'objet sélectionné selon l'axe Y"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2063
-msgid "Mirror the selected object along the Z axis"
-msgstr "Symétriser l'objet sélectionné selon l'axe Z"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:65
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:129
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:200
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:211
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:325
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:336
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:355
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:434
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:781
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:801
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:860
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:878
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:896
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1044
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1052
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1094
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1103
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1113
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1121
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1129
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1215
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1421
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1491
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1527
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1704
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1711
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1718
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1727
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1737
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1747
-msgid "mm"
-msgstr "mm"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1075
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1085
-msgid "mm (zero to disable)"
-msgstr "mm (zéro pour désactiver)"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:609
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:740
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1390
-msgid "mm or %"
-msgstr "mm ou %"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:382
-msgid "mm or % (leave 0 for auto)"
-msgstr "mm ou % (laissez à 0 pour le mode automatique)"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:272
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:597
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:715
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:972
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1296
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1458
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1619
-msgid "mm or % (leave 0 for default)"
-msgstr "mm ou % (laissez à 0 pour la valeur par défaut)"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:120
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:638
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:749
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:811
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:868
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:981
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1137
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1146
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1536
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1649
-msgid "mm/s"
-msgstr "mm/s"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:282
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:619
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1255
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1306
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1501
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1631
-msgid "mm/s or %"
-msgstr "mm/s ou %"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:80
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:174
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:576
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:684
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:952
-msgid "mm/s²"
-msgstr "mm/s²"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1265
-msgid "mm²"
-msgstr "mm²"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:425
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:820
-msgid "mm³/s"
-msgstr "mm³/s"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:831
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:842
-msgid "mm³/s²"
-msgstr "mm³/s²"
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:55
-msgid "model"
-msgstr "modèle"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:414
-msgid "Modifiers"
-msgstr "Modificateurs"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:478
-msgid "money/kg"
-msgstr "€/kg"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:182
-msgid "More"
-msgstr "Plus"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1696
-msgid "Multi material printers may need to prime or purge extruders on tool changes. Extrude the excess material into the wipe tower."
-msgstr "Les imprimantes multi-matériaux peuvent avoir besoin de préparer ou de purger leurs extrudeurs lors d'un changement d'outil. Extruder le matériau en excès dans la tour de nettoyage."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:666
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:683
-msgid "Multi-part object detected"
-msgstr "Objet multi-pièces détecté"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:430
-msgid "Multiple Extruders"
-msgstr "Extrudeurs Multiples"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:680
-msgid ""
-"Multiple objects were loaded for a multi-material printer.\n"
-"Instead of considering them as multiple objects, should I consider\n"
-"these files to represent a single object having multiple parts?\n"
-msgstr ""
-"Plusieurs objets ont été chargés pour une imprimante multi-matériaux.\n"
-"Au lieu de les considérer comme plusieurs objets, dois-je considérer\n"
-"ces fichiers comment représentant un objets ayant plusieurs pièces ?\n"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:220
-msgid "Name"
-msgstr "Nom"
-
-#: xs/src/libslic3r/PrintConfig.cpp:1126
-msgid "Name of the printer variant. For example, the printer variants may be differentiated by a nozzle diameter."
-msgstr "Nom de la variante d'imprimante. Par exemple, la variante d'imprimante peut être différenciée par un diamètre de buse."
-
-#: xs/src/libslic3r/PrintConfig.cpp:1121
-msgid "Name of the printer vendor."
-msgstr "Nom du fabriquant de l'imprimante."
-
-#: xs/src/libslic3r/PrintConfig.cpp:820
-msgid "Name of the profile, from which this profile inherits."
-msgstr "Nom du profil, duquel hérite ce profil."
-
-#: xs/src/slic3r/GUI/BonjourDialog.cpp:53
-msgid "Network lookup"
-msgstr "Recherche réseau"
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:27
-msgid "New version of Slic3r PE is available"
-msgstr "Une nouvelle version de Slic3r PE est disponible"
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:43
-msgid "New version:"
-msgstr "Nouvelle version :"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:469
-msgid "No previously sliced file."
-msgstr "Aucun fichier précédemment découpé."
-
-#: xs/src/slic3r/GUI/RammingChart.cpp:28
-msgid "NO RAMMING AT ALL"
-msgstr "PAS D'EXPULSION DU TOUT"
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:137
-msgid "None"
-msgstr "Aucun"
-
-#: xs/src/slic3r/GUI/Tab.cpp:1571
-msgid "Note: OctoPrint version at least 1.1.0 is required."
-msgstr "Note : une version d'Octoprint supérieure ou égale à 1.1.0 est requise."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:500
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:501
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:859
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:860
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1156
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1157
-msgid "Notes"
-msgstr "Notes"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:493
-msgid "Notice"
-msgstr "Remarque"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:85
-msgid "nozzle"
-msgstr "buse"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:894
-msgid "Nozzle diameter"
-msgstr "Diamètre de la buse"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:431
-msgid "Nozzle Diameter:"
-msgstr "Diamètre de la Buse :"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:967
-msgid "Number of extruders of the printer."
-msgstr "Nombre d'extrudeurs de l'imprimante."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1481
-msgid "Number of interface layers to insert between the object(s) and support material."
-msgstr "Nombre de couches d'interface à insérer entre le(s) objet(s) et les supports."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1231
-msgid "Number of loops for the skirt. If the Minimum Extrusion Length option is set, the number of loops might be greater than the one configured here. Set this to zero to disable skirt completely."
-msgstr "Nombre de boucles pour la clôture. Si la Longueur Minimale d'Extrusion est paramétrée, le nombre de boucles minimale sera plus grand que celui configuré ici. Mettez à zéro pour désactiver complètement la clôture."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:70
-msgid "Number of solid layers to generate on bottom surfaces."
-msgstr "Nombre de couches pleines à générer sur les surfaces inférieures."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1315
-msgid "Number of solid layers to generate on top and bottom surfaces."
-msgstr "Nombre de couches pleines à générer sur les surfaces supérieures et inférieures."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1640
-msgid "Number of solid layers to generate on top surfaces."
-msgstr "Nombre de couches pleines à générer sur les surfaces supérieures."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:745
-msgid "Object too large?"
-msgstr "Objet trop grand ?"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1032
-msgid "OctoPrint upload"
-msgstr "Envoi vers OctoPrint"
-
-#: lib/Slic3r/GUI/Plater.pm:1511
-msgid "OctoPrint upload finished."
-msgstr "Envoi vers OctoPrint terminé."
-
-#: xs/src/slic3r/GUI/BonjourDialog.cpp:69
-msgid "OctoPrint version"
-msgstr "Version d'OctoPrint"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1410
-msgid "Only create support if it lies on a build plate. Don't create support on a print."
-msgstr "Créer uniquement des supports reposant sur le plateau. Ne pas créer pas de supports sur une impression."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:726
-msgid "Only infill where needed"
-msgstr "Remplissage seulement où cela est nécessaire"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1205
-msgid "Only lift Z"
-msgstr "Lever Z seulement"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1100
-msgid "Only lift Z above"
-msgstr "Lever Z seulement au-dessus de"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1109
-msgid "Only lift Z below"
-msgstr "Lever Z seulement en-dessous de"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:915
-msgid "Only retract when crossing perimeters"
-msgstr "Rétracter uniquement lors du franchissement de périmètres"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:438
-msgid "Ooze prevention"
-msgstr "Prévention des coulures"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:251
-msgid "Open a model"
-msgstr "Ouvrir un modèle"
-
-#: xs/src/slic3r/GUI/Tab.cpp:1598
-msgid "Open CA certificate file"
-msgstr "Ouvrir le fichier de certificat CA"
-
-#: lib/Slic3r/GUI/MainFrame.pm:194
-msgid "Open STL/OBJ/AMF/3MF…\tCtrl+O"
-msgstr "Ouvrir STL/OBJ/AMF/3MF…\tCtrl+O"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2102
-msgid "Open the 3D cutting tool"
-msgstr "Ouvrir l'outil de coupe 3D"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2106
-msgid "Open the object editor dialog"
-msgstr "Ouvrir la boîte de dialogue d'édition d'objet"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:388
-msgid "Open the Slic3r++ releases page in your browser"
-msgstr "Ouvrir la page des publications de la Slic3r++ dans votre navigateur"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:385
-msgid "Open the Prusa3D drivers download page in your browser"
-msgstr "Ouvrir la page de téléchargement des drivers Prusa3D dans votre navigateur"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:398
-msgid "Open the Slic3r manual in your browser"
-msgstr "Ouvrir la manuel de Slic3r dans votre navigateur"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:395
-msgid "Open the Slic3r website in your browser"
-msgstr "Ouvrir le site web de Slic3r dans votre navigateur"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:27
-msgid "Optimize travel moves in order to minimize the crossing of perimeters. This is mostly useful with Bowden extruders which suffer from oozing. This feature slows down both the print and the G-code generation."
-msgstr "Optimiser les déplacements afin de minimiser le franchissement de périmètres. Ceci est surtout utile avec les extruder Bowden qui sont sujets aux coulures. Cette fonctionnalité ralentit l'impression et la génération du G-code."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:384
-msgid "Options for support material and raft"
-msgstr "Options pour le matériau de support et le radeau"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:57
-msgid "Origin"
-msgstr "Origine"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:469
-msgid "Other"
-msgstr "Autre"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:38
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1572
-msgid "Other layers"
-msgstr "Autres couches"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:295
-msgid "Other Vendors"
-msgstr "Autres Fabriquants"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:238
-msgid "Other vendors"
-msgstr "Autres fabriquants"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:488
-msgid "Output file"
-msgstr "Fichier de sortie"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:930
-msgid "Output filename format"
-msgstr "Format du nom de fichier de sortie"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:476
-msgid "Output options"
-msgstr "Options de sortie"
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:140
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:82
-msgid "Overhang perimeter"
-msgstr "Périmètre en surplomb"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1550
-msgid "Overhang threshold"
-msgstr "Seuil de surplomb"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:463
-msgid "Overlap"
-msgstr "Chevauchement"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1508
-msgid "Pattern"
-msgstr "Motif"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1398
-msgid "Pattern angle"
-msgstr "Angle du motif"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1524
-msgid "Pattern spacing"
-msgstr "Espacement du motif"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1510
-msgid "Pattern used to generate support material."
-msgstr "Motif utilisé pour générer les supports."
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:138
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:80
-msgid "Perimeter"
-msgstr "Périmètre"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:957
-msgid "Perimeter extruder"
-msgstr "Extrudeur pour les périmètres"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:948
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:966
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:978
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:988
-msgid "Perimeters"
-msgstr "Périmètres"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:160
-msgid "perimeters"
-msgstr "périmètres"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:297
-msgid "Pick another vendor supported by Slic3r PE:"
-msgstr "Choisissez un autre fabriquant supporté par Slic3r PE :"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2024
-msgid "Place one more copy of the selected object"
-msgstr "Placer une copie supplémentaire de l'objet sélectionné"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:118
-msgid "Plater"
-msgstr "Plateau"
-
-#: lib/Slic3r/GUI/Plater.pm:1897
-msgid "Please install the OpenGL modules to use this feature (see build instructions)."
-msgstr "Veuillez installer les modules OpenGL pour pouvoir utiliser cette fonctionnalité (voir les instructions de montage)."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1199
-msgid "Position (for multi-extruder printers)"
-msgstr "Position (pour les imprimantes multi-extrudeurs)"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1153
-msgid "Position of perimeters starting points."
-msgstr "Position des points de départ des périmètres."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1702
-msgid "Position X"
-msgstr "Position X"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1709
-msgid "Position Y"
-msgstr "Position Y"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:494
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1001
-msgid "Post-processing scripts"
-msgstr "Scripts de post-traitement"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.hpp:17
-msgid "Preferences"
-msgstr "Préférences"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1171
-msgid "Preferred direction of the seam"
-msgstr "Direction préférée de la jointure"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1183
-msgid "Preferred direction of the seam - jitter"
-msgstr "Direction préférée de la jointure - gigue"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1222
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:150
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2125
-msgid "Preview"
-msgstr "Aperçu"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:474
-msgid "Previously sliced file ("
-msgstr "Fichier précédemment découpé ("
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:43
-msgid "print"
-msgstr "imprimer"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:291
-msgid "Print contour perimeters from the outermost one to the innermost one instead of the default inverse order."
-msgstr "Imprimer les périmètres de l'extérieur vers l'intérieur au lieu de l'ordre par défaut qui est inversé."
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:412
-msgid "Print Diameters"
-msgstr "Diamètres d'Impression"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.hpp:182
-msgid "Print Settings"
-msgstr "Réglages d'Impression"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:367
-msgid "Print settings"
-msgstr "Réglages d'impression"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:836
-msgid "Print speed override"
-msgstr "Contournement de la vitesse d'impression"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:369
-msgid "Printer"
-msgstr "Imprimante"
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:45
-msgid "printer"
-msgstr "imprimer"
-
-#: xs/src/slic3r/GUI/Tab.cpp:762
-msgid "printer model"
-msgstr "modèle de l'imprimante"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1014
-msgid "Printer notes"
-msgstr "Notes de l'imprimante"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.hpp:228
-msgid "Printer Settings"
-msgstr "Réglages de l'Imprimante"
-
-#: xs/src/libslic3r/PrintConfig.cpp:1106
-msgid "Printer type"
-msgstr "Type d'imprimante"
-
-#: xs/src/libslic3r/PrintConfig.cpp:1125
-msgid "Printer variant"
-msgstr "Variante d'imprimante"
-
-#: xs/src/libslic3r/PrintConfig.cpp:1120
-msgid "Printer vendor"
-msgstr "Fabriquant de l'imprimante"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:238
-msgid "Print…"
-msgstr "Impression…"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:528
-msgid "Processing "
-msgstr "Traitement "
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:629
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:643
-msgid "Processing input file\n"
-msgstr "Traitement du fichier d'entrée\n"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:508
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:868
-msgid "Profile dependencies"
-msgstr "Dépendances du profil"
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:300
-msgid "Progress:"
-msgstr "Progression :"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:385
-msgid "Prusa 3D Drivers"
-msgstr "Drivers Prusa 3D"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:388
-msgid "Slic3r++ Releases"
-msgstr "Publication de la Slic3r++"
-
-#: xs/src/slic3r/GUI/GUI.cpp:908
-msgid "Purging volumes"
-msgstr "Volumes de purge"
-
-#: xs/src/libslic3r/PrintConfig.cpp:1807
-msgid "Purging volumes - load/unload volumes"
-msgstr "Volumes de purge - volumes de chargement/déchargement"
-
-#: xs/src/libslic3r/PrintConfig.cpp:1815
-msgid "Purging volumes - matrix"
-msgstr "Volumes de purge - matrice"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:268
-msgid "Q&uick Slice…\tCtrl+U"
-msgstr "&Découpage Rapide…\tCtrl+U"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:335
-msgid "Quality (slower slicing)"
-msgstr "Qualité (découpage plus lent)"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:274
-msgid "Quick Slice and Save &As…\tCtrl+Alt+U"
-msgstr "Découpage Rapide et &Enregistrer Sous…\tCtrl+Alt+U"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:304
-msgid "Quit Slic3r"
-msgstr "Quitter Slic3r"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:331
-msgid "Radius"
-msgstr "Rayon"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:380
-msgid "Raft"
-msgstr "Radeau"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1029
-msgid "Raft layers"
-msgstr "Couches du radeau"
-
-#: xs/src/slic3r/GUI/Tab.cpp:1319
-msgid "Ramming"
-msgstr "Expulsion"
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:14
-msgid "Ramming customization"
-msgstr "Personnalisation de l'expulsion"
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:40
-msgid ""
-"Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n"
-"\n"
-"This is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc."
-msgstr ""
-"L'Expulsion décrit l'extrusion rapide qui a lieu juste avant un changement d'outil sur une imprimante MM à extrudeur unique. Le but est de donner une forme correcte au filament déchargé afin qu'il n'empêche pas l'insertion du nouveau filament et puisse être réinséré lui-même plus tard. Cette phase est importante et des matériaux différents peuvent nécessiter des vitesses d'extrusion différentes pour obtenir la bonne forme. De ce fait, les débits d'extrusion pendant l'expulsion sont ajustables.\n"
-"\n"
-"Ceci est un paramétrage de niveau expert, et un mauvais ajustement provoquera probablement des blocages, des accrochages de la roue de l'extrudeur sur le filament , etc ..."
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:90
-msgid "Ramming line spacing"
-msgstr "Espacement de la ligne de ramming"
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:88
-msgid "Ramming line width"
-msgstr "Largeur de la ligne d'expulsion"
-
-#: xs/src/libslic3r/PrintConfig.cpp:486
-msgid "Ramming parameters"
-msgstr "Paramètres de l'expulsion"
-
-#: xs/src/slic3r/GUI/Tab.cpp:1321
-msgid "Ramming settings"
-msgstr "Réglages de l'expulsion"
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:144
-msgid "Re-configure"
-msgstr "Reconfigurer"
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:297
-msgid "Ready"
-msgstr "Prêt"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:372
-msgid "Rear"
-msgstr "Arrière"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:372
-msgid "Rear View"
-msgstr "Vue Arrière"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:262
-#, c-format
-msgid "Recommended object thin wall thickness for layer height %.2f and "
-msgstr "Épaisseur des parois fines de l'objet recommandée pour la hauteur de couche %.2f et "
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:245
-msgid "Recommended object thin wall thickness: Not available due to invalid layer height."
-msgstr "Épaisseur des parois fines de l'objet recommandée : Non disponible car la hauteur de couche est invalide."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:46
-msgid "Rectangular"
-msgstr "Rectangle"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:352
-msgid "Reducing printing time"
-msgstr "Réduction du temps d'impression"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2110
-msgid "Reload from Disk"
-msgstr "Recharger depuis le Disque"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2110
-msgid "Reload the selected file from Disk"
-msgstr "Recharger le fichier sélectionné depuis le Disque"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:27
-msgid "Remember output directory"
-msgstr "Se souvenir du répertoire de sortie"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1582
-msgid "Remove"
-msgstr "Retirer"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1580
-msgid "remove"
-msgstr "retirer"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2027
-msgid "Remove one copy of the selected object"
-msgstr "Retirer une copie de l'objet sélectionné"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2021
-msgid "Remove the selected object"
-msgstr "Retirer l'objet sélectionné"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:217
-msgid "Remove user profiles - install from scratch (a snapshot will be taken beforehand)"
-msgstr "Supprimer les profils d'utilisateur - installation à partir de zéro (un snapshot sera fait avant)"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:594
-msgid "Repair"
-msgstr "Réparer"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:294
-msgid "Repair STL file…"
-msgstr "Réparer le fichier STL…"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:280
-msgid "Repeat last quick slice"
-msgstr "Répéter le dernier découpage rapide"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:405
-msgid "Report an Issue"
-msgstr "Signaler un problème"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:405
-msgid "Report an issue on the Slic3r Slic3r++"
-msgstr "Signaler un problème sur la Slic3r++ de Slic3r"
-
-#: xs/src/slic3r/Utils/PresetUpdater.cpp:514
-#, c-format
-msgid "requires min. %s and max. %s"
-msgstr "nécessite min. %s et max. %s"
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:288
-msgid "Rescan"
-msgstr "Scanner à nouveau"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:995
-msgid "Rescan serial ports"
-msgstr "Rescanner les ports série"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1039
-msgid "Resolution"
-msgstr "Résolution"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1057
-msgid "Retract amount before wipe"
-msgstr "Quantité de rétractation avant essuyage"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1065
-msgid "Retract on layer change"
-msgstr "Rétracter lors des changements de couche"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1202
-msgid "Retraction"
-msgstr "Rétraction"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1051
-msgid "Retraction is not triggered when travel moves are shorter than this length."
-msgstr "La rétraction n'est pas déclenchée lorsque les déplacements sont plus courts que cette distance."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1072
-msgid "Retraction Length"
-msgstr "Longueur de Rétractation"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1081
-msgid "Retraction Length (Toolchange)"
-msgstr "Longueur de Rétractation (changement d'outil)"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1134
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1135
-msgid "Retraction Speed"
-msgstr "Vitesse de Rétractation"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1218
-msgid "Retraction when tool is disabled (advanced settings for multi-extruder setups)"
-msgstr "Rétractation lorsque l'outil est désactivé (réglages avancés pour les configurations multi-extrudeurs)"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:96
-msgid "Retractions"
-msgstr "Rétractations"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:374
-msgid "Right"
-msgstr "Droite"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:374
-msgid "Right View"
-msgstr "Vue Droite"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2042
-msgid "Rotate"
-msgstr "Pivoter"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2034
-msgid "Rotate 45° clockwise"
-msgstr "Pivoter de 45° dans le sens des aiguilles d'une montre"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2037
-msgid "Rotate 45° counter-clockwise"
-msgstr "Pivoter de 45° dans le sens inverse des aiguilles d'une montre"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2034
-msgid "Rotate the selected object by 45° clockwise"
-msgstr "Pivoter l'objet sélectionné de 45° dans le sens des aiguilles d'une montre"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2037
-msgid "Rotate the selected object by 45° counter-clockwise"
-msgstr "Pivoter l'objet sélectionné de 45° dans le sens inverse des aiguilles d'une montre"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2042
-msgid "Rotate the selected object by an arbitrary angle"
-msgstr "Pivoter l'objet sélectionnée d'un angle donné"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2044
-msgid "Rotate the selected object by an arbitrary angle around X axis"
-msgstr "Pivoter l'objet sélectionnée d'un angle donné autour de l'axe X"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2047
-msgid "Rotate the selected object by an arbitrary angle around Y axis"
-msgstr "Pivoter l'objet sélectionnée d'un angle donné autour de l'axe Y"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2050
-msgid "Rotate the selected object by an arbitrary angle around Z axis"
-msgstr "Pivoter l'objet sélectionnée d'un angle donné autour de l'axe Z"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:211 xs/src/slic3r/GUI/GUI.cpp:399
-#, c-format
-msgid "Run %s"
-msgstr "Run %s"
-
-#: xs/src/slic3r/GUI/RammingChart.cpp:81 xs/src/slic3r/GUI/RammingChart.cpp:86
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:82
-#: xs/src/libslic3r/PrintConfig.cpp:480
-msgid "s"
-msgstr "s"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1751
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:514
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1645
-msgid "Save "
-msgstr "Enregistrer "
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:605
-msgid "Save configuration as:"
-msgstr "Enregistrer la configuration sous :"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:50
-msgid "Save current "
-msgstr "Enregistrer l'état actuel "
-
-#: lib/Slic3r/GUI/Plater.pm:1399
-msgid "Save G-code file as:"
-msgstr "Sauvegarder le fichier G-code en tant que :"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:580
-msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
-msgstr "Enregistrer le fichier OBJ (moins enclin aux erreurs de coordonnées que le STL) sous :"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.hpp:248
-msgid "Save preset"
-msgstr "Enregistrer le préréglage"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:646
-msgid "Save presets bundle as:"
-msgstr "Enregistrer le lot de préréglages sous :"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:222
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1056
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1061
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2068
-msgid "Scale"
-msgstr "Redimensionner"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1031
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
-msgid "Scale along "
-msgstr "Redimensionner le long de "
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2068
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2084
-msgid "Scale the selected object along a single axis"
-msgstr "Redimensionner l'objet sélectionné le long d'un seul axe"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2073
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2089
-msgid "Scale the selected object along the X axis"
-msgstr "Redimensionner l'objet sélectionné le long de l'axe X"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2070
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2086
-msgid "Scale the selected object along the XYZ axes"
-msgstr "Redimensionner l'objet sélectionné le long des axes XYZ"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2076
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2092
-msgid "Scale the selected object along the Y axis"
-msgstr "Redimensionner l'objet sélectionné le long de l'axe Y"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2079
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2095
-msgid "Scale the selected object along the Z axis"
-msgstr "Redimensionner l'objet sélectionné le long de l'axe Z"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2084
-msgid "Scale to size"
-msgstr "Redimensionner à la taille"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:187
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:203
-msgid "Scale…"
-msgstr "Redimensionner…"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1151
-msgid "Seam position"
-msgstr "Position de la jointure"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1172
-msgid "Seam preferred direction"
-msgstr "Direction préférée de la jointure"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1182
-msgid "Seam preferred direction jitter"
-msgstr "Gigue de la direction préférée de la jointure"
-
-#: xs/src/slic3r/GUI/BonjourDialog.cpp:187
-msgid "Searching for devices"
-msgstr "Recherche des dispositifs"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:342
-msgid "Select &Controller Tab\tCtrl+T"
-msgstr "Sélectionner l'Onglet &Contrôleur\tCtrl+T"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:353
-msgid "Select &Filament Settings Tab\tCtrl+3"
-msgstr "Sélectionner l'Onglet des Réglages du &Filament\tCtrl+3"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:336
-msgid "Select &Plater Tab\tCtrl+1"
-msgstr "Sélectionner l'Onglet du &Plateau\tCtrl+1"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:103
-msgid "Select all"
-msgstr "Tout sélectionner"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:623
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:667
-msgid "Select configuration to load:"
-msgstr "Sélectionner la configuration à charger :"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:104
-msgid "Select none"
-msgstr "Ne sélectionner aucun"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:350
-msgid "Select P&rint Settings Tab\tCtrl+2"
-msgstr "Sélectionner l'Onglet des Réglages d'&Impression\tCtrl+2"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:356
-msgid "Select Print&er Settings Tab\tCtrl+4"
-msgstr "Sélectionner l'Onglet des Réglages de l'Impri&mante\tCtrl+4"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:235
-msgid "Select the language"
-msgstr "Sélectionner la langue"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1667
-msgid "Select the printers this profile is compatible with."
-msgstr "Sélectionner les imprimantes avec lesquelles ce profil est compatible."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:566
-msgid "Select the STL file to repair:"
-msgstr "Sélectionner le fichier STL à réparer :"
-
-#: xs/src/slic3r/GUI/GUI.cpp:882
-msgid "Select what kind of support do you need"
-msgstr "Choisissez le type de support dont vous avez besoin"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:239
-msgid "Send to printer"
-msgstr "Envoyer à l'imprimante"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1448
-msgid "Sending G-code file to the OctoPrint server..."
-msgstr "Envoi du fichier G-code vers le serveur OctoPrint..."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:477
-msgid "Sequential printing"
-msgstr "Impression séquentielle"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:990
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1193
-msgid "Serial port"
-msgstr "Port série"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1202
-msgid "Serial port speed"
-msgstr "Vitesse du port série"
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:286
-msgid "Serial port:"
-msgstr "Port série :"
-
-#: xs/src/slic3r/GUI/BonjourDialog.cpp:68
-msgid "Service name"
-msgstr "Nom du service"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2030
-msgid "Set number of copies…"
-msgstr "Choisir le nombre de copies…"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:398
-msgid "Set the shape of your printer's bed."
-msgstr "Réglez la forme du plateau de votre imprimante."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:378
-msgid "Set this to a non-zero value to allow a manual extrusion width. If left to zero, Slic3r derives extrusion widths from the nozzle diameter (see the tooltips for perimeter extrusion width, infill extrusion width etc). If expressed as percentage (for example: 230%), it will be computed over layer height."
-msgstr "Réglez ce paramètre sur une valeur non-nulle pour définir manuellement la largeur d’extrusion. Si la valeur reste sur zéro, Slic3r calcule la largeur d’extrusion en se basant sur le diamètre de la buse (voir l’info-bulle concernant la largeur d’extrusion du périmètre, la largeur d’extrusion du remplissage, etc…). Si la valeur est exprimée en pourcentage (par exemple : 230%), elle sera calculée par rapport à la hauteur de couche."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:269
-msgid "Set this to a non-zero value to set a manual extrusion width for external perimeters. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%), it will be computed over layer height."
-msgstr "Réglez ce paramètre sur une valeur non-nulle pour définir manuellement la largeur d’extrusion pour les périmètres extérieurs. Si la valeur reste sur zéro, la largeur d’extrusion par défaut sera utilisée si définie, sinon la valeur 1.125 x diamètre de la buse sera utilisée. Si la valeur est exprimée en pourcentage (par exemple : 200%), elle sera calculée par rapport à la hauteur de couche."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:593
-msgid "Set this to a non-zero value to set a manual extrusion width for first layer. You can use this to force fatter extrudates for better adhesion. If expressed as percentage (for example 120%) it will be computed over first layer height. If set to zero, it will use the default extrusion width."
-msgstr "Réglez ce paramètre sur une valeur non-nulle pour définir manuellement la largeur d’extrusion pour la première couche. Vous pouvez procéder ainsi pour obtenir des extrudats plus épais afin d’avoir une meilleure adhérence. Si la valeur est exprimée en pourcentage (par exemple : 120%), elle sera calculée par rapport à la hauteur de la première couche. Si elle est réglée sur zéro, elle utilisera la largeur d’extrusion par défaut."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1293
-msgid "Set this to a non-zero value to set a manual extrusion width for infill for solid surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height."
-msgstr "Réglez ce paramètre sur une valeur non-nulle pour définir manuellement la largeur d’extrusion pour le remplissage ou pour les surfaces pleines. Si la valeur reste sur zéro, la largeur d’extrusion par défaut sera utilisée si définie, sinon la valeur 1.125 x diamètre de la buse sera utilisée. Si la valeur est exprimée en pourcentage (par exemple : 90%), elle sera calculée par rapport à la hauteur de couche."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1615
-msgid "Set this to a non-zero value to set a manual extrusion width for infill for top surfaces. You may want to use thinner extrudates to fill all narrow regions and get a smoother finish. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height."
-msgstr "Réglez ce paramètre sur une valeur non-nulle pour définir manuellement la largeur d’extrusion pour le remplissage ou pour les surfaces supérieures. Vous voudrez peut-être utiliser des extrudats plus fins pour remplir les zones les plus étroites et obtenir des finitions plus lisses. Si la valeur reste sur zéro, la largeur d’extrusion par défaut sera utilisée si définie, sinon le diamètre de la buse sera utilisé. Si la valeur est exprimée en pourcentage (par exemple : 90%), elle sera calculée par rapport à la hauteur de couche."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:711
-msgid "Set this to a non-zero value to set a manual extrusion width for infill. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. You may want to use fatter extrudates to speed up the infill and make your parts stronger. If expressed as percentage (for example 90%) it will be computed over layer height."
-msgstr "Réglez ce paramètre sur une valeur non-nulle pour définir manuellement la largeur d’extrusion pour le remplissage. Si la valeur reste sur zéro, la largeur d’extrusion par défaut sera utilisée si définie, sinon la valeur 1.125 x diamètre de la buse sera utilisée. Vous voudrez peut-être utiliser des extrudats plus épais pour accélérer le remplissage et rendre vos pièces plus solides. Si la valeur est exprimée en pourcentage (par exemple : 90%), elle sera calculée par rapport à la hauteur de couche."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:968
-msgid "Set this to a non-zero value to set a manual extrusion width for perimeters. You may want to use thinner extrudates to get more accurate surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%) it will be computed over layer height."
-msgstr "Réglez ce paramètre sur une valeur non-nulle pour définir manuellement une largeur d’extrusion pour les périmètres. Vous voudrez peut-être utiliser des extrudats plus fin pour obtenir des surfaces plus nettes. Si la valeur reste sur zéro, la largeur d’extrusion par défaut sera utilisée si définie, sinon la valeur 1.125 x diamètre de la buse sera utilisée. Si la valeur est exprimée en pourcentage (par exemple : 200%), elle sera calculée par rapport à la hauteur de couche."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1455
-msgid "Set this to a non-zero value to set a manual extrusion width for support material. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height."
-msgstr "Réglez ce paramètre sur une valeur non-nulle pour définir manuellement la largeur d’extrusion pour les supports. Si la valeur reste sur zéro, la largeur d’extrusion par défaut sera utilisée si définie, sinon le diamètre de la buse sera utilisée. Si la valeur est exprimée en pourcentage (par exemple : 90%), elle sera calculée par rapport à la hauteur de couche."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:332
-msgid "Set this to the clearance radius around your extruder. If the extruder is not centered, choose the largest value for safety. This setting is used to check for collisions and to display the graphical preview in the plater."
-msgstr "Paramétrez ceci avec le rayon de dégagement autour de l'extrudeur. Si l'extrudeur n'est pas centré, choisissez la plus grande valeur par sécurité. Ce réglage est utilisé pour vérifier les collisions et afficher l'aperçu graphique sur le plateau."
-
-#: xs/src/libslic3r/PrintConfig.cpp:877
-msgid "Set this to the maximum height that can be reached by your extruder while printing."
-msgstr "Réglez cette valeur sur la hauteur maximum que peut atteindre votre extrudeur au cours de l'impression."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:321
-msgid "Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects."
-msgstr "Paramétrez ceci avec la distance verticale entre la pointe de la buse et (habituellement) les tiges du chariot de l'axe X. En d'autres termes, il s'agit de la hauteur du cylindre de dégagement autour de l'extrudeur, et elle représente la profondeur maximum à laquelle peut descendre l'extrudeur avant d'entrer en collision avec d'autres objets imprimés."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:120
-msgid "Settings"
-msgstr "Réglages"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:191
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:206
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2106
-msgid "Settings…"
-msgstr "Réglages…"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:39
-msgid "Shape"
-msgstr "Forme"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:98
-msgid "Shells"
-msgstr "Coques"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:75
-msgid "Show"
-msgstr "Afficher"
-
-#: lib/Slic3r/GUI/MainFrame.pm:337
-msgid "Show &Configuration Folder"
-msgstr "Afficher le Répertoire de &Configuration"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:408
-msgid "Show about dialog"
-msgstr "Afficher la boîte de dialogue à propos"
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:337
-msgid "Show advanced settings"
-msgstr "Afficher les réglages avancés"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:67
-msgid "Show incompatible print and filament presets"
-msgstr "Afficher les préréglages d'impression et de filament incompatibles"
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:337
-msgid "Show simplified settings"
-msgstr "Afficher les réglages simplifiés"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:402
-msgid "Show system information"
-msgstr "Afficher les informations système"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:353
-msgid "Show the filament settings"
-msgstr "Afficher les réglages de filament"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:336
-msgid "Show the plater"
-msgstr "Afficher le plateau"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:350
-msgid "Show the print settings"
-msgstr "Afficher les réglages d'impression"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:342
-msgid "Show the printer controller"
-msgstr "Afficher le contrôleur de l'imprimante"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:356
-msgid "Show the printer settings"
-msgstr "Afficher les réglages de l'imprimante"
-
-#: lib/Slic3r/GUI/MainFrame.pm:337
-msgid "Show user configuration folder (datadir)"
-msgstr "Afficher le répertoire de configuration utilisateur (datadir)"
-
-#: xs/src/slic3r/GUI/Tab.cpp:1716 xs/src/slic3r/GUI/Tab.cpp:1722
-msgid "Single extruder MM setup"
-msgstr "Réglage MM pour extrudeur unique"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1373
-msgid "Single Extruder Multi Material"
-msgstr "Extrudeur Unique Multi-Matériaux"
-
-#: xs/src/slic3r/GUI/Tab.cpp:1723
-msgid "Single extruder multimaterial parameters"
-msgstr "Paramètres multimatériaux pour extrudeur unique"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:50
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1191
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:408
-msgid "Size"
-msgstr "Taille"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:938
-msgid "Size and coordinates"
-msgstr "Taille et coordonnées"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:51
-msgid "Size in X and Y of the rectangular plate."
-msgstr "Taille en X et Y du plateau rectangulaire."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:365
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:146
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:88
-msgid "Skirt"
-msgstr "Clôture"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:364
-msgid "Skirt and brim"
-msgstr "Jupe et Clôture"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1221
-msgid "Skirt height"
-msgstr "Hauteur de la clôture"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1230
-msgid "Skirt Loops"
-msgstr "Boucles de la clôture"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:398
-msgid "Slic3r &Manual"
-msgstr "&Manuel de Slic3r"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:395
-msgid "Slic3r &Website"
-msgstr "Site &Web de Slic3r"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:902
-msgid "Slic3r can upload G-code files to OctoPrint. This field should contain the API Key required for authentication."
-msgstr "Slic3r peut envoyer des fichiers G-code à OctoPrint. Ce champ doit contenir la clé d'API requise pour l'authentification."
-
-#: xs/src/libslic3r/PrintConfig.cpp:992
-msgid "Slic3r can upload G-code files to OctoPrint. This field should contain the hostname, IP address or URL of the OctoPrint instance."
-msgstr "Slic3r peut télécharger des fichiers G-code vers OctoPrint. Ce champ doit contenir le nom d'hôte, l'adresse IP ou l'URL de l'instance OctoPrint."
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:108
-msgid "Slic3r configuration is incompatible"
-msgstr "La configuration de Slic3r n'est pas compatible"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:929
-msgid "Slic3r Error"
-msgstr "Erreur de Slic3r"
-
-#: xs/src/slic3r/GUI/MsgDialog.cpp:64
-msgid "Slic3r error"
-msgstr "Erreur de Slic3r"
-
-#: xs/src/slic3r/GUI/MsgDialog.cpp:64
-msgid "Slic3r has encountered an error"
-msgstr "Slic3r a rencontré une erreur"
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:108
-msgid "Slic3r incompatibility"
-msgstr "Incompatibilité avec Slic3r"
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:165
-#, c-format
-msgid ""
-"Slic3r PE now uses an updated configuration structure.\n"
-"\n"
-"So called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\n"
-"An inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n"
-"\n"
-"Please proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates."
-msgstr ""
-"Slic3r PE utilise à présent une structure de configuration mise à jour.\n"
-"\n"
-"Il existe à présent des \"préréglages Système\", qui intègrent les réglages par défaut pour les différentes imprimantes. Ces préréglages Système ne peuvent pas être modifiés, mais les utilisateurs peuvent désormais créer leurs propres préréglages héritant des paramètres de l'un des préréglages Système.\n"
-"Un tel préréglage peut ainsi hériter d'une valeur particulière de son parent ou la remplacer par une valeur personnalisée.\n"
-"\n"
-"Veuillez utiliser les %s qui suivent pour paramétrer les nouveaux réglages et éventuellement accepter les mises à jour de réglage automatiques."
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:42
-msgid "slic3r version"
-msgstr "version de slic3r"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:867
-msgid "Slic3r will not scale speed down below this speed."
-msgstr "Slic3r ne descendra pas en-dessous de cette vitesse."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:268
-msgid "Slice a file into a G-code"
-msgstr "Découper un fichier en G-code"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:274
-msgid "Slice a file into a G-code, save as"
-msgstr "Découper un fichier en G-code, enregistrer sous"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:287
-msgid "Slice file to a multi-layer SVG"
-msgstr "Découper un fichier en un SVG multi-couches"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:237
-msgid "Slice now"
-msgstr "Découper maintenant"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:287
-msgid "Slice to SV&G…\tCtrl+G"
-msgstr "Découper vers SV&G...\tCtrl+G"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:438
-msgid "Sliced Info"
-msgstr "Informations de découpage"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1286
-msgid "Slicing cancelled"
-msgstr "Découpe annulée"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:550
-msgid "Slicing Done!"
-msgstr "Découpe Effectuée !"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:528
-msgid "Slicing…"
-msgstr "Découpe en cours…"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1239
-msgid "Slow down if layer print time is below"
-msgstr "Ralentir si le temps d'impression de la couche est inférieur à "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1250
-msgid "Small perimeters"
-msgstr "Périmètres fins"
-
-#: xs/src/slic3r/GUI/GUI.cpp:417
-msgid "Snapshot name"
-msgstr "Nom du snapshot"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:179
-msgid "solid infill"
-msgstr "remplissage plein"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1291
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1301
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:142
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:84
-msgid "Solid infill"
-msgstr "Remplissage plein"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1279
-msgid "Solid infill every"
-msgstr "Remplissage plein toutes les"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1271
-msgid "Solid infill extruder"
-msgstr "Extrudeur pour le remplissage plein"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1262
-msgid "Solid infill threshold area"
-msgstr "Surface de seuil pour le remplissage plein"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:330
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1314
-msgid "Solid layers"
-msgstr "Couches pleines"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:470
-msgid "Soluble material"
-msgstr "Matériau soluble"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:471
-msgid "Soluble material is most likely used for a soluble support."
-msgstr "Il est probable qu'un matériau soluble soit utilisé pour un support soluble."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:653
-msgid "Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer's firmware to get a compatible output. The \"No extrusion\" flavor prevents Slic3r from exporting any extrusion value at all."
-msgstr "Certaines commandes G/M-code, dont le contrôle de température et autres, ne sont pas universelles. Paramétrez cette option avec le firmware de votre imprimante pour obtenir une sortie compatible. La version \"sans extrusion\" empêche Slic3r d'exporter toute valeur d'extrusion."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1682
-msgid "Some printers or printer setups may have difficulties printing with a variable layer height. Enabled by default."
-msgstr "Certaines imprimantes ou certains réglages d'imprimante peuvent rencontrer des difficultés pour imprimer avec une hauteur de couche variable. Activé par défaut."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1490
-msgid "Spacing between interface lines. Set zero to get a solid interface."
-msgstr "Espacement entre les lignes d'interface. Mettez à zéro pour obtenir une interface pleine."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1526
-msgid "Spacing between support material lines."
-msgstr "Espacement entre les lignes des supports."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:398
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:118
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:278
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:635
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:747
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:979
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1201
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1251
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1302
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1625
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:71
-msgid "Speed"
-msgstr "Vitesse"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1203
-msgid "Speed (baud) of USB/serial port for printer connection."
-msgstr "Vitesse (baud) du port USB/série pour la connexion à l'imprimante."
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:336
-msgid "Speed (mm/s)"
-msgstr "Vitesse (mm/s)"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:636
-msgid "Speed for filling small gaps using short zigzag moves. Keep this reasonably low to avoid too much shaking and resonance issues. Set zero to disable gaps filling."
-msgstr "Vitesse pour combler de petits interstices avec de courts mouvements en zigzag. Gardez un réglage relativement lent afin d'éviter les problèmes de vibration et de résonance. Réglez sur zéro pour désactiver le remplissage d'interstices."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:411
-msgid "Speed for non-print moves"
-msgstr "Vitesse pour les déplacements sans impression"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:980
-msgid "Speed for perimeters (contours, aka vertical shells). Set to zero for auto."
-msgstr "Vitesse pour les périmètres (contours, parois verticales). Réglez sur zéro pour un ajustement automatique."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:399
-msgid "Speed for print moves"
-msgstr "Vitesse pour les déplacements d'impression"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:119
-msgid "Speed for printing bridges."
-msgstr "Vitesse d'impression des ponts."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1303
-msgid "Speed for printing solid regions (top/bottom/internal horizontal shells). This can be expressed as a percentage (for example: 80%) over the default infill speed above. Set to zero for auto."
-msgstr "Vitesse pour imprimer des zones pleines (supérieures/inférieures/parois horizontales internes). Peut être exprimée en pourcentage (par exemple: 80%) de la vitesse de remplissage par défaut susmentionnée. Réglez sur zéro pour un ajustement automatique."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1499
-msgid "Speed for printing support material interface layers. If expressed as percentage (for example 50%) it will be calculated over support material speed."
-msgstr "Vitesse d'impression des couches d'interface des supports. Si exprimée en pourcentage (par exemple 50%), elle sera calculée à partir de la vitesse d'impression des supports."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1535
-msgid "Speed for printing support material."
-msgstr "Vitesse d'impression du support."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:748
-msgid "Speed for printing the internal fill. Set to zero for auto."
-msgstr "Vitesse pour imprimer le remplissage interne. Réglez sur zéro pour un ajustement automatique."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1626
-msgid "Speed for printing top solid layers (it only applies to the uppermost external layers and not to their internal solid layers). You may want to slow down this to get a nicer surface finish. This can be expressed as a percentage (for example: 80%) over the solid infill speed above. Set to zero for auto."
-msgstr "Vitesse pour imprimer les couches pleines du dessus (ne s'applique qu'aux couches externes les plus hautes et pas aux couches pleines internes). Vous voudrez peut-être abaisser cette vitesse afin d'avoir une finition de surface plus nette. Peut être exprimé en pourcentage (par exemple: 80%) de la vitesse de remplissage pleine susmentionnée. Réglez sur zéro pour un ajustement automatique."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1648
-msgid "Speed for travel moves (jumps between distant extrusion points)."
-msgstr "Vitesse pour les déplacements (trajet entre deux points d'extrusion distants)."
-
-#: xs/src/libslic3r/PrintConfig.cpp:460
-msgid "Speed used for loading the filament on the wipe tower. "
-msgstr "Vitesse utilisée pour charger le filament sur la tour de nettoyage. "
-
-#: xs/src/libslic3r/PrintConfig.cpp:468
-msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming). "
-msgstr "Vitesse utilisée pour décharger le filament sur la tour de nettoyage (n'affecte pas l'étape initiale de déchargement juste après l'expulsion). "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1322
-msgid "Spiral vase"
-msgstr "Mode vase (spirale)"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:540
-msgid "Spiral Vase"
-msgstr "Mode vase (spirale)"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:188
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:204
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2099
-msgid "Split"
-msgstr "Scinder"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2099
-msgid "Split the selected object into individual parts"
-msgstr "Scinder l'objet sélectionné en pièces individuelles"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:847
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1120
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1342
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1357
-msgid "Start G-code"
-msgstr "G-code de début"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:291
-msgid "Start new slicing process"
-msgstr "Démarrer un nouveau processus de découpe"
-
-#: xs/src/slic3r/GUI/FirmwareDialog.cpp:296
-msgid "Status:"
-msgstr "État :"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1539
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1581
-msgid "STL file exported to "
-msgstr "Fichier STL exporté vers "
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1017
-msgid "Success!"
-msgstr "Réussi !"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:198
-msgid "support"
-msgstr "support"
-
-#: xs/src/slic3r/GUI/GUI.cpp:879
-msgid "Support"
-msgstr "Support"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:620
-msgid "Support Generator"
-msgstr "Générateur de Support"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:208
-msgid "support interface"
-msgstr "interface du support"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:374
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:375
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:191
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1030
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1380
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1387
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1399
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1409
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1417
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1432
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1453
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1464
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1480
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1489
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1498
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1509
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1525
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1533
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1534
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1543
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1551
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1565
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:147
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:89
-msgid "Support material"
-msgstr "Support"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1497
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:148
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:90
-msgid "Support material interface"
-msgstr "Interface des supports"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1552
-msgid "Support material will not be generated for overhangs whose slope angle (90° = vertical) is above the given threshold. In other words, this value represent the most horizontal slope (measured from the horizontal plane) that you can print without support material. Set to zero for automatic detection (recommended)."
-msgstr "Le support ne sera pas généré pour les surplombs dont l'inclinaison (90° = vertical) dépasse le seuil défini. Autrement dit, cette valeur représente l'inclinaison horizontale maximum (mesurée à partir du plan horizontal) que vous pouvez imprimer sans support. Réglez sur zéro pour une détection automatique (recommandé)."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1470
-msgid "Support material/raft interface extruder"
-msgstr "Extrudeur pour l'interface des supports/du radeau"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1444
-msgid "Support material/raft/skirt extruder"
-msgstr "Extrudeur pour support/tapis/clôture"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1408
-msgid "Support on build plate only"
-msgstr "Support sur le plateau uniquement"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:617
-msgid ""
-"Supports work better, if the following feature is enabled:\n"
-"- Detect bridging perimeters\n"
-"\n"
-"Shall I adjust those settings for supports?"
-msgstr ""
-"Les supports sont plus efficaces, si la fonctionnalité suivante est activée :\n"
-"-Détection des périmètres de pont\n"
-"\n"
-"Voulez-vous que que je modifie les réglages des supports ?"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:59
-msgid "Suppress \" - default - \" presets"
-msgstr "Supprimer les préréglages \" - par défaut - \""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:61
-msgid "Suppress \" - default - \" presets in the Print / Filament / Printer selections once there are any other valid presets available."
-msgstr "Supprimer les préréglages \" - par défaut - \" dans les choix Impression / Filament / Imprimante une fois qu'il y a d'autres préréglages valides disponibles."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:514
-msgid "SVG"
-msgstr "SVG"
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:325
-msgid ""
-"Switching to simple settings will discard changes done in the advanced mode!\n"
-"\n"
-"Do you want to proceed?"
-msgstr ""
-"Basculer vers les réglages simples annulera les changements effectués en mode avancé !\n"
-"\n"
-"Voulez-vous continuer ?"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1544
-msgid "Synchronize support layers with the object print layers. This is useful with multi-material printers, where the extruder switch is expensive."
-msgstr "Synchroniser les couches du support avec les couches d'impression de l'objet. Cela est utile pour les imprimantes multi-matériaux, pour lesquelles le changement d'extrudeur est onéreux."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1542
-msgid "Synchronize with object layers"
-msgstr "Synchroniser avec les couches de l'objet"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:402
-msgid "System Info"
-msgstr "Informations sur le Système"
-
-#: xs/src/slic3r/GUI/Tab.cpp:2286 xs/src/slic3r/GUI/Tab.cpp:2372
-#: xs/src/slic3r/GUI/Preset.cpp:605 xs/src/slic3r/GUI/Preset.cpp:645
-#: xs/src/slic3r/GUI/Preset.cpp:670 xs/src/slic3r/GUI/Preset.cpp:702
-#: xs/src/slic3r/GUI/PresetBundle.cpp:1069
-#: xs/src/slic3r/GUI/PresetBundle.cpp:1122 lib/Slic3r/GUI/Plater.pm:552
-msgid "System presets"
-msgstr "Préréglages système"
-
-#: xs/src/slic3r/GUI/GUI.cpp:403
-msgid "Take Configuration Snapshot"
-msgstr "Prendre un snapshot de la configuration"
-
-#: xs/src/slic3r/GUI/GUI.cpp:417
-msgid "Taking configuration snapshot"
-msgstr "Snapshot de la configuration en cours"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1576
-msgid "Temperature"
-msgstr "Température"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:794
-msgid "Temperature "
-msgstr "Température "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1333
-msgid "Temperature difference to be applied when an extruder is not active. Enables a full-height \"sacrificial\" skirt on which the nozzles are periodically wiped."
-msgstr "Différence de température devant être appliquée quand un extrudeur n'est pas actif. Permet la génération d'une clôture complète \"sacrificielle\" sur lequel les buses sont nettoyées régulièrement."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1332
-msgid "Temperature variation"
-msgstr "Variation de température"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:463
-msgid "Temperatures"
-msgstr "Températures"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1004
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1072
-msgid "Test"
-msgstr "Test"
-
-# Used in context: _("The ") + str_fill_pattern + _(" infill pattern is not supposed to work at 100% density.\n")
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:662
-msgid "The "
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:309
-msgid "The extruder to use (unless more specific extruder settings are specified). This value overrides perimeter and infill extruders, but not the support extruders."
-msgstr "L'extrudeur à utiliser (à moins que d'autres réglages d'extrudeur plus spécifiques soient spécifiés). Cette valeur se substitue aux extrudeurs de périmètre et de remplissage, mais pas aux extrudeurs de support."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:703
-msgid "The extruder to use when printing infill."
-msgstr "L'extrudeur à utiliser pour imprimer le remplissage."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:959
-msgid "The extruder to use when printing perimeters and brim. First extruder is 1."
-msgstr "L'extrudeur à utiliser pour imprimer les périmètres et la jupe. Le premier extrudeur a le numéro 1."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1273
-msgid "The extruder to use when printing solid infill."
-msgstr "L'extrudeur à utiliser pour imprimer les remplissages plein."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1472
-msgid "The extruder to use when printing support material interface (1+, 0 to use the current extruder to minimize tool changes). This affects raft too."
-msgstr "L'extrudeur à utiliser pour imprimer les intercalaires du support (1+,0 pour utiliser l'extrudeur actuel et limiter les changements d'outil). Cela affecte également le raft."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1446
-msgid "The extruder to use when printing support material, raft and skirt (1+, 0 to use the current extruder to minimize tool changes)."
-msgstr "L'extrudeur à utiliser pour imprimer des supports, du tapis ou des clôtures (1+,0 pour utiliser l'extrudeur actuel et limiter les changements d'outil)."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:209
-msgid "The first layer will be shrunk in the XY plane by the configured value to compensate for the 1st layer squish aka an Elephant Foot effect."
-msgstr "La première couche sera réduite sur le plan XY selon la valeur configurée afin de compenser l'écrasement de la première couche également connu sous le nom d'effet Pied d'Éléphant."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1734
-msgid "The object will be grown/shrunk in the XY plane by the configured value "
- "(negative = inwards, positive = outwards). This might be useful "
- "for fine-tuning sizes."
-msgstr "L'objet sera agrandi/réduit sur les plans XY selon la valeur indiquée (négatif = réduit, positif = agrandi). Ce réglage peut être utile pour un réglage fin des tailles de trous."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1031
-msgid "The object will be raised by this number of layers, and support material will be generated under it."
-msgstr "L'objet sera surélevé de ce nombre de couches, et du support sera généré en dessous."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1374
-msgid "The printer multiplexes filaments into a single hot end."
-msgstr "L'imprimante multiplexe les filaments vers une seule tête d'extrusion."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:324
-msgid "The selected file contains no geometry."
-msgstr "Le fichier sélectionné ne contient aucune géométrie."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:328
-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."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1112
-msgid "The selected object can't be split because it contains more than one volume/material."
-msgstr "L'objet sélectionné ne peut être scindé car il contient plus d'un volume/matériau."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1121
-msgid "The selected object couldn't be split because it contains only one part."
-msgstr "L'objet sélectionné n'a pu être scindé car il ne contient qu'une seule pièce."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1144
-msgid "The speed for loading of a filament into extruder after retraction (it only applies to the extruder motor). If left to zero, the retraction speed is used."
-msgstr "La vitesse de chargement d'un filament dans l'extrudeur après une rétractation (ne s'applique qu'au moteur de l'extrudeur). Si cette valeur reste sur zéro, la vitesse de rétraction est utilisée."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1136
-msgid "The speed for retractions (it only applies to the extruder motor)."
-msgstr "La vitesse des rétractations (ne s'applique qu'au moteur de l'extrudeur)."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:533
-#, no-c-format
-msgid ""
-"The Spiral Vase mode requires:\n"
-"- one perimeter\n"
-"- no top solid layers\n"
-"- 0% fill density\n"
-"- no support material\n"
-"- no ensure_vertical_shell_thickness\n"
-"\n"
-"Shall I adjust those settings in order to enable Spiral Vase?"
-msgstr ""
-"Le mode Vase requiert :\n"
-"-Un seul périmètre\n"
-"-Pas de couches pleines sur le dessus\n"
-"-Une densité de remplissage de 0%\n"
-"-Pas de supports\n"
-"-'S'assurer de l'épaisseur de la coque verticale' décochée\n"
-"\n"
-"Voulez-vous que je modifie ces réglages afin d'activer le mode Vase?"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1560
-msgid "The supplied name is empty. It can't be saved."
-msgstr "Le nom proposé est vide. Sauvegarde impossible."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1788
-msgid "The supplied name is not available."
-msgstr "Le nom proposé n'est pas disponible."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1785
-msgid "The supplied name is not valid; the following characters are not allowed:"
-msgstr "Le nom proposé n'est pas valide ; les caractères suivants ne sont pas autorisés :"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1418
-msgid "The vertical distance between object and support material interface. Setting this to 0 will also prevent Slic3r from using bridge flow and speed for the first object layer."
-msgstr "Distance verticale entre l'objet et l'intercalaire du support. Régler cette valeur sur zéro empêchera Slic3r d'utiliser la vitesse et le débit des ponts pour la première couche de l'objet."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1312
-msgid ""
-"The Wipe option is not available when using the Firmware Retraction mode.\n"
-"\n"
-"Shall I disable it in order to enable Firmware Retraction?"
-msgstr ""
-"L'option Nettoyage n'est pas disponible lorsque vous utilisez le mode Rétractation du Firmware.\n"
-"\n"
-"Voulez-vous que je la désactive pour permettre la Rétractation du Firmware ?"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:581
-msgid ""
-"The Wipe Tower currently supports the non-soluble supports only\n"
-"if they are printed with the current extruder without triggering a tool change.\n"
-"(both support_material_extruder and support_material_interface_extruder need to be set to 0).\n"
-"\n"
-"Shall I adjust those settings in order to enable the Wipe Tower?"
-msgstr ""
-"A l'heure actuelle la Tour de Nettoyage ne tolère les supports non-solubles \n"
-"que s'ils sont imprimés avec l'extrudeur en cours d'utilisation sans déclencher un changement d'outil.\n"
-"(support_material_extruder de même que support_material_interface_extruder doivent être réglés sur 0).\n"
-"\n"
-"Voulez-vous que je modifie ces réglages pour activer la Tour de Nettoyage ?"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:60
-msgid "This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want."
-msgstr "Ce code est inséré entre des objets lorsque vous utilisez l'impression séquentielle. Par défaut la température de l'extrudeur et du plateau est réinitialisée et utilise la commande sans-attente ; toutefois si des commandes M104, M109, M140 ou M190 sont détectées dans ce code personnalisé, Slic3r n'ajoutera pas de commandes de température. Notez que vous pouvez utiliser des variables génériques pour tous les réglages de Slic3r, donc vous pouvez entrer une commande \"M109S[first_layer_temperature]\" où vous le souhaitez."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:767
-msgid "This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]."
-msgstr "Ce code personnalisé est inséré à chaque changement de couche, juste après le mouvement Z et avant le déplacement de l'extrudeur au point de départ de la couche suivante. Notez que vous pouvez utiliser des variables génériques pour tous les réglages de Slic3r de même que [layer_num] et [layer_z]."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:49
-msgid "This custom code is inserted at every layer change, right before the Z move. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]."
-msgstr "Ce code personnalisé est inséré à chaque changement de couche, juste avant le mouvement en Z. Notez que vous pouvez utiliser des variables génériques pour tous les réglages de Slic3r de même que [layer_num] et [layer_z]."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1603
-msgid "This custom code is inserted right before every extruder change. Note that you can use placeholder variables for all Slic3r settings as well as [previous_extruder] and [next_extruder]."
-msgstr "Ce code personnalisé est inséré juste avant chaque changement d'extrudeur. Notez que vous pouvez utiliser des variables génériques pour tous les réglages de Slic3r de même que [previous_extruder] et [next_extruder]."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:228
-msgid "This end procedure is inserted at the end of the output file, before the printer end gcode. Note that you can use placeholder variables for all Slic3r settings. If you have multiple extruders, the gcode is processed in extruder order."
-msgstr "Cette procédure de fin est insérée à la fin du fichier de sortie, avant le gcode de fin de l'imprimante. Notez que vous pouvez utiliser des variables génériques pour tous les réglages de Slic3r. Si vous avez plusieurs extrudeurs, le gcode sera traité suivant l'ordre des extrudeurs."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:218
-msgid "This end procedure is inserted at the end of the output file. Note that you can use placeholder variables for all Slic3r settings."
-msgstr "Cette procédure de fin est insérée à la fin du fichier de sortie. Notez que vous pouvez utiliser des variables génériques pour tous les réglages de Slic3r."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:827
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:838
-msgid "This experimental setting is used to limit the speed of change in extrusion rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds."
-msgstr "Ce réglage expérimental sert à limiter la vitesse de changement dans le flux d'extrusion. Une valeur de 1.8 mm³/s² garantit qu'un changement de flux d'extrusion de 1.8 mm³/s (largeur d'extrusion 0.45mm, hauteur d'extrusion 0.2mm, alimentation 20 mm/s) à 5.4 mm³/s (alimentation 60 mm/s) prendra au moins 2 secondes."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:818
-msgid "This experimental setting is used to set the maximum volumetric speed your extruder supports."
-msgstr "Ce réglage expérimental est utilisé pour paramétrer la vitesse volumétrique maximum tolérée par votre extrudeur."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1657
-msgid "This experimental setting uses G10 and G11 commands to have the firmware handle the retraction. This is only supported in recent Marlin."
-msgstr "Ce réglage expérimental utilise les commandes G10 et G11 pour laisser le firmware gérer la rétractation. Utilisable seulement par les versions récentes de Marlin."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1671
-msgid "This experimental setting uses outputs the E values in cubic millimeters instead of linear millimeters. If your firmware doesn't already know filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] T0' in your start G-code in order to turn volumetric mode on and use the filament diameter associated to the filament selected in Slic3r. This is only supported in recent Marlin."
-msgstr "Cette fonction expérimentale génère des valeurs de E en millimètres cubiques au lieu de millimètres linéaires. Si votre firmware ne connait pas déjà le diamètre du filament, vous pouvez saisir une commande comme 'M200 D[filament_diameter_0] T0' dans votre G-Code de début pour activer le mode volumétrique, et utiliser le diamètre de filament associé au filament choisi dans Slic3r. Cette fonction n'est utilisable que dans les versions récentes de Marlin."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:108
-msgid "This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this."
-msgstr "Ce facteur affecte la quantité de plastique utilisée pour les ponts. Vous pouvez le diminuer légèrement pour éviter l'affaissement. La valeur par défaut est généralement suffisante et vous devriez expérimenter le refroidissement (utiliser un ventilateur) avant de modifier ceci."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:368
-msgid "This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps."
-msgstr "Ce facteur modifie proportionnellement le flux d'extrusion. Vous pouvez avoir besoin de modifier ceci afin d'obtenir un rendu de surface net et une largeur correcte pour les murs uniques. Les valeurs habituelles vont de 0.9 à 1.1. Si vous pensez devoir changer davantage cette valeur, vérifiez le diamètre de votre filament et les E Steps dans le firmware."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:98
-msgid "This fan speed is enforced during all bridges and overhangs."
-msgstr "Cette vitesse de ventilateur sera utilisée pour les ponts et les surplombs."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:692
-msgid "This feature allows to combine infill and speed up your print by extruding thicker infill layers while preserving thin perimeters, thus accuracy."
-msgstr "Cette fonction permet de combiner le remplissage afin d'accélérer l'impression en extrudant des couches de remplissage plus épaisses tout en conservant des périmètres fins, avec plus de précision."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1281
-msgid "This feature allows to force a solid layer every given number of layers. Zero to disable. You can set this to any value (for example 9999); Slic3r will automatically choose the maximum possible number of layers to combine according to nozzle diameter and layer height."
-msgstr "Cette fonction permet de forcer l'impression d'une couche pleine après le nombre de couches indiqué. Réglez sur zéro pour la désactiver. Vous pouvez indiquer n'importe quelle valeur (par exemple 9999); Slic3r choisira automatiquement le nombre maximum de couches a combiner en fonction du diamètre de la buse et de l'épaisseur des couches."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1323
-msgid "This feature will raise Z gradually while printing a single-walled object in order to remove any visible seam. This option requires a single perimeter, no infill, no top solid layers and no support material. You can still set any number of bottom solid layers as well as skirt/brim loops. It won't work when printing more than an object."
-msgstr "Afin de rendre invisible les jointures, cette fonction élèvera la tête d'impresion graduellement (en cas d'impression d'un objet à paroi unique). Cette option nécessite de n'avoir qu'un seul périmètre, de ne pas avoir de remplissage, ni de surface pleine supérieure, ni de support. Vous pouvez toujours choisir le nombre de surface pleines inférieures de même que les boucles des jupes et des clôtures. Cela ne fonctionnera pas si vous imprimez plus d'un objet."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:663
-msgid ""
-"This file contains several objects positioned at multiple heights. Instead of considering them as multiple objects, should I consider\n"
-"this file as a single object having multiple parts?\n"
-msgstr ""
-"Ce fichier contient plusieurs objets positionnés à différentes hauteurs. Au lieu de les considérer comme des objets distincts, voulez-vous que je considère\n"
-"ce fichier comme un seul objet en plusieurs parties?\n"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:164
-msgid "This flag enables the automatic cooling logic that adjusts print speed and fan speed according to layer printing time."
-msgstr "Cette option active la logique de refroidissement automatique, qui ajuste la vitesse d'impression et celle du ventilateur en fonction du temps d'impression de la couche."
-
-#: xs/src/slic3r/GUI/GUI.cpp:899
-msgid "This flag enables the brim that will be printed around each object on the first layer."
-msgstr "Cette option permet l'impression de la jupe qui entoure chaque objet lors de la première couche."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1066
-msgid "This flag enforces a retraction whenever a Z move is done."
-msgstr "Cette option active la rétractation lors d'un déplacement sur l'axe Z."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1689
-msgid "This flag will move the nozzle while retracting to minimize the possible blob on leaky extruders."
-msgstr "Cette option déplace la buse lors des rétractations, limitant ainsi l'apparition d'amas sur les extrudeurs ayant tendance à couler."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:343
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:406
-msgid "This is only used in the Slic3r interface as a visual help."
-msgstr "Ceci est uniquement utilisé dans l'interface de Slic3r comme indication visuelle."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:171
-msgid "This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all."
-msgstr "Accélération à laquelle votre imprimante sera réinitialisée suite à une modification de l'accélération des fonctions spécifiques (périmètre/remplissage). Régler sur zéro pour ne pas réinitialiser l'accélération."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:78
-msgid "This is the acceleration your printer will use for bridges. Set zero to disable acceleration control for bridges."
-msgstr "L'accélération qui sera utilisée par votre imprimante pour les ponts. Régler sur zéro pour désactiver l'accélération pour les ponts."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:574
-msgid "This is the acceleration your printer will use for first layer. Set zero to disable acceleration control for first layer."
-msgstr "L'accélération que l'imprimante utilisera pour la première couche. Régler sur zéro afin de désactiver le contrôle de l'accélération pour la première couche."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:682
-msgid "This is the acceleration your printer will use for infill. Set zero to disable acceleration control for infill."
-msgstr "Il s'agit de l'accélération que votre imprimante utilisera pour le remplissage. Régler sur zéro afin de désactiver le contrôle de l'accélération pour le remplissage."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:949
-msgid "This is the acceleration your printer will use for perimeters. A high value like 9000 usually gives good results if your hardware is up to the job. Set zero to disable acceleration control for perimeters."
-msgstr "L'accélération que votre imprimante utilisera pour les périmètres. Une valeur élevée comme 9000 donne généralement de bons résultats si votre matériel le permet. Régler sur zéro afin de désactiver le contrôle de l'accélération pour les périmètres."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:895
-msgid "This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)"
-msgstr "Il s'agit du diamètre de la buse de votre extrudeur (par exemple: 0.5, 0.35, etc.)"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:797
-#, no-c-format
-msgid "This is the highest printable layer height for this extruder, used to cap the variable layer height and support layer height. Maximum recommended layer height is 75% of the extrusion width to achieve reasonable inter-layer adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter."
-msgstr "Ceci est la hauteur de couche imprimable maximum pour cet extrudeur, utilisée pour plafonner la hauteur de couche variable et la hauteur de couche des supports. La hauteur de couche maximum recommandée est 75% de la largeur d'extrusion afin d'obtenir une adhésion inter-couches correcte. Si réglée sur 0, la hauteur de couche est limitée à 75% du diamètre de la buse."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:858
-msgid "This is the lowest printable layer height for this extruder and limits the resolution for variable layer height. Typical values are between 0.05 mm and 0.1 mm."
-msgstr "Cette valeur est la hauteur de couche imprimable minimum pour cet extrudeur et elle limite la résolution pour la hauteur de couche variable. Les valeurs type se situent entre 0.05 mm et 0.1 mm."
-
-#: xs/src/libslic3r/PrintConfig.cpp:1816
-msgid "This matrix describes volumes (in cubic milimetres) required to purge the new filament on the wipe tower for any given pair of tools. "
-msgstr "Cette matrice décrit les volumes (en millimètres cube) nécessaires pour purger le nouveau filament dans la tour de nettoyage pour une paire d'outils donnée. "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:990
-msgid "This option sets the number of perimeters to generate for each layer. Note that Slic3r may increase this number automatically when it detects sloping surfaces which benefit from a higher number of perimeters if the Extra Perimeters option is enabled."
-msgstr "Cette option définit le nombre de périmètres à générer pour chaque couche. Notez que Slic3r peut augmenter cette valeur automatiquement si il détecte une surface inclinée qui nécessite un plus grand nombre de périmètres, si l'option \"Périmètres supplémentaires\" est sélectionnée."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:923
-msgid "This option will drop the temperature of the inactive extruders to prevent oozing. It will enable a tall skirt automatically and move extruders outside such skirt when changing temperatures."
-msgstr "Cette option abaissera la température des extrudeurs inutilisés pour prévenir le oozing (suintement). Cela active automatiquement la génération d'une grande clôture et le déplacement des extrudeurs hors de cette clôture lors des changements de température."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:728
-msgid "This option will limit infill to the areas actually needed for supporting ceilings (it will act as internal support material). If enabled, slows down the G-code generation due to the multiple checks involved."
-msgstr "Cette option limitera le remplissage aux zones nécessaires pour soutenir les couches supérieures (cela agira comme un support interne). Si activé, la génération du G-Code prendra plus de temps à cause des calculs supplémentaires requis."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:721
-msgid "This option will switch the print order of perimeters and infill, making the latter first."
-msgstr "Cette option inverse l'ordre d'impression des périmètres et du remplissage, ce dernier étant alors imprimé en premier."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:279
-msgid "This separate setting will affect the speed of external perimeters (the visible ones). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto."
-msgstr "Ce réglage distinct affectera la vitesse des périmètres extérieurs (ceux qui sont visibles). Si cette valeur est exprimée en pourcentage (par exemple: 80%) elle sera calculée d'après le réglage de la vitesse de périmètre susmentionnée. Réglez sur zéro pour un ajustement automatique."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1252
-msgid "This separate setting will affect the speed of perimeters having radius <= 6.5mm (usually holes). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto."
-msgstr "Ce réglage distinct affectera la vitesse des périmètre ayant un rayon <= 6.5mm (les trous habituellement). Si cette valeur est exprimée en pourcentage (par exemple: 80%) elle sera calculée d'après le réglage de la vitesse de périmètre susmentionnée. Réglez sur zéro pour un ajustement automatique."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:737
-msgid "This setting applies an additional overlap between infill and perimeters for better bonding. Theoretically this shouldn't be needed, but backlash might cause gaps. If expressed as percentage (example: 15%) it is calculated over perimeter extrusion width."
-msgstr "Cette option applique un chevauchement supplémentaire entre les périmètres et le remplissage pour une meilleur fusion. En théorie, cela ne devrait pas être nécessaire, mais le jeu mécanique peut générer des espacements. Si exprimé en pourcentage (par exemple 15%), la valeur sera calculée en fonction de la largeur d'extrusion du périmètre."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:779
-msgid "This setting controls the height (and thus the total number) of the slices/layers. Thinner layers give better accuracy but take more time to print."
-msgstr "Cette option contrôle l'épaisseur (et donc le nombre total) des couches. Des couches plus fines donneront une meilleure précision mais l'impression sera plus longue."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:788
-msgid "This setting represents the maximum speed of your fan."
-msgstr "Cette option représente la vitesse maximum du ventilateur."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:849
-msgid "This setting represents the minimum PWM your fan needs to work."
-msgstr "Cette option représente le PWM minimum dont votre ventilateur a besoin pour tourner."
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:120
-#, c-format
-msgid "This Slic3r PE version: %s"
-msgstr "Version de ce Slic3r PE : %s"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1358
-msgid "This start procedure is inserted at the beginning, after any printer start gcode. This is used to override settings for a specific filament. If Slic3r detects M104, M109, M140 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want. If you have multiple extruders, the gcode is processed in extruder order."
-msgstr "Cette procédure de démarrage est insérée au début, après un gcode de démarrage de l'imprimante. Elle est utilisée pour remplacer les réglages pour un filament spécifique. Si Slic3r détecte des commandes M104, M109, M140 ou M190 dans vos codes personnalisés ces commandes ne seront pas ajoutées automatiquement, de cette manière vous pouvez personnaliser la procédure de chauffe et autres actions. Notez que vous pouvez utiliser des variables génériques pour tous les réglages de Slic3r, donc vous pouvez saisir une commande \"M109 S[first_layer_temperature]\" où vous voulez. Si vous avez plusieurs extrudeurs, le G-Code sera exécuté dans l'ordre des extrudeurs."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1343
-msgid "This start procedure is inserted at the beginning, after bed has reached the target temperature and extruder just started heating, and before extruder has finished heating. If Slic3r detects M104 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want."
-msgstr "Cette procédure de démarrage est insérée au début, après que le plateau a atteint la température ciblée et lorsque l'extrudeur vient juste de commencer à chauffer, et avant que l'extrudeur ait terminé de chauffer. Si Slic3r détecte des commandes M104 ou M190 dans vos codes personnalisés, ces commandes ne seront pas ajoutées automatiquement ainsi vous serez libre de personnaliser l'ordre des commandes de chauffe et autres actions personnalisées. Notez que vous pouvez utiliser des variables génériques pour tous les réglages de Slic3r, donc vous pouvez mettre une commande \"M109S[first_layer_temperature]\" où vous le souhaitez."
-
-#: xs/src/libslic3r/PrintConfig.cpp:487
-msgid "This string is edited by RammingDialog and contains ramming specific parameters "
-msgstr "Cette chaine est éditée par RammingDialog et contient les paramètres spécifiques d'expulsion "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1743
-msgid "This value will be added (or subtracted) from all the Z coordinates in the output G-code. It is used to compensate for bad Z endstop position: for example, if your endstop zero actually leaves the nozzle 0.3mm far from the print bed, set this to -0.3 (or fix your endstop)."
-msgstr "Cette valeur sera ajoutée (ou soustraite) de toutes les coordonnées Z dans le G-Code de sortie. Elle est utilisée pour compenser une mauvaise position de fin de course Z: par exemple si votre fin de course place votre buse à 0.3mm au dessus du plateau, réglez cette valeur sur -0.3 (ou corrigez votre fin de course)."
-
-#: xs/src/libslic3r/PrintConfig.cpp:1808
-msgid "This vector saves required volumes to change from/to each tool used on the wipe tower. These values are used to simplify creation of the full purging volumes below. "
-msgstr "Ce vecteur enregistre les volumes requis pour changer l'outil utilisé pour la tour de nettoyage. Ces valeurs sont utilisées pour simplifier la création des volumes de purge complets ci-dessous. "
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:111
-msgid ""
-"This version of Slic3r PE is not compatible with currently installed configuration bundles.\n"
-"This probably happened as a result of running an older Slic3r PE after using a newer one.\n"
-"\n"
-"You may either exit Slic3r and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this Slic3r.\n"
-msgstr ""
-"Cette version de Slic3r PE n'est pas compatible avec les ensembles de configuration actuellement installés.\n"
-"Cela survient probablement du fait d'avoir lancé une ancienne version de Slic3r PE après en avoir utilisé une nouvelle.\n"
-"\n"
-"Vous pouvez soit quitter Slic3r et essayer à nouveau avec une version plus récente, ou vous pouvez relancer la configuration initiale. Procéder ainsi permettra de créer une sauvegarde de la configuration existante avant d'installer les fichiers compatibles avec ce Slic3r.\n"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1590
-msgid "Threads"
-msgstr "Threads"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1591
-msgid "Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors."
-msgstr "Les threads sont utilisés pour paralléliser les calculs longs. Le nombre optimal de threads est légèrement supérieur au nombre de coeurs/processeurs disponibles."
-
-#: xs/src/slic3r/GUI/RammingChart.cpp:81
-msgid "Time"
-msgstr "Durée"
-
-#: xs/src/libslic3r/PrintConfig.cpp:477
-msgid "Time to wait after the filament is unloaded. May help to get reliable toolchanges with flexible materials that may need more time to shrink to original dimensions. "
-msgstr "Temps d'attente nécessaire après que le filament ait été déchargé. Peut aider à obtenir des changements d'outils fiables avec des matériaux flexible qui ont besoin de plus de temps pour revenir à leurs dimensions originales. "
-
-#: xs/src/slic3r/GUI/Tab.cpp:750
-msgid "To do that please specify a new name for the preset."
-msgstr "Pour faire cela veuillez spécifier un nouveau nom pour le préréglage."
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:34
-msgid "To download, follow the link below."
-msgstr "Pour télécharger, suivez le lien ci-dessous."
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:338
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:72
-msgid "Tool"
-msgstr "Outil"
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:238
-msgid "Tool #"
-msgstr "Outil #"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1144
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1602
-msgid "Tool change G-code"
-msgstr "G-code de changement d'outil"
-
-#: xs/src/slic3r/GUI/Tab.cpp:1315
-msgid "Toolchange parameters with single extruder MM printers"
-msgstr "Paramètres de changement d'outil pour les imprimantes multi-matériaux mono-extrudeur"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1638
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:369
-msgid "Top"
-msgstr "Haut"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:187
-msgid "top solid infill"
-msgstr "remplissage plein du dessus"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1613
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1624
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:143
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:85
-msgid "Top solid infill"
-msgstr "Remplissage plein du dessus"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1642
-msgid "Top solid layers"
-msgstr "Couches pleines du dessus"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:369
-msgid "Top View"
-msgstr "Vue du Dessus"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:246
-msgid "Top/bottom fill pattern"
-msgstr "Motif de remplissage dessus/dessous"
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:245
-msgid "Total purging volume is calculated by summing two values below, depending on which tools are loaded/unloaded."
-msgstr "Le volume de purge total est calculé en additionnant les deux valeurs ci-dessous, en fonction des outils qui sont chargés/déchargés."
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:84
-msgid "Total rammed volume"
-msgstr "Volume total expulsé"
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:82
-msgid "Total ramming time"
-msgstr "Durée totale de l'expulsion"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1647
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:95
-msgid "Travel"
-msgstr "Déplacement"
-
-#: xs/src/libslic3r/PrintConfig.cpp:1107
-msgid "Type of the printer."
-msgstr "Type d'imprimante."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2070
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2086
-msgid "Uniformly…"
-msgstr "Uniformément…"
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:24
-msgid "Unknown"
-msgstr "Inconnu"
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:232
-msgid "unloaded"
-msgstr "déchargé"
-
-#: xs/src/libslic3r/PrintConfig.cpp:467
-msgid "Unloading speed"
-msgstr "Vitesse de déchargement"
-
-#: xs/src/slic3r/GUI/Tab.cpp:2483
-msgid ""
-"UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system values for the current option group.\n"
-"Click to reset all settings for current option group to the system values."
-msgstr ""
-"L'icône CADENAS OUVERT indique que certains paramètres ont été modifiés et ne sont pas égaux aux valeurs par défaut pour le groupe d'options actuel.\n"
-"Cliquez pour régler tous les paramètres pour le groupe d'options actuel sur les valeurs par défaut."
-
-#: xs/src/slic3r/GUI/Tab.cpp:2498
-msgid ""
-"UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system value.\n"
-"Click to reset current value to the system value."
-msgstr ""
-"L'icône CADENAS OUVERT indique que la valeur a été changée et n'est pas égale à la valeur par défaut.\n"
-"Cliquez pour régler la valeur actuelle sur la valeur par défaut."
-
-#: xs/src/slic3r/GUI/Tab.cpp:2445
-msgid ""
-"UNLOCKED LOCK;indicates that some settings were changed and are not equal to the system values for the current option group.\n"
-"Click the UNLOCKED LOCK icon to reset all settings for current option group to the system values."
-msgstr ""
-"CADENAS OUVERT;indique que certains paramètres ont été modifiés et ne sont pas égaux aux valeurs par défaut pour le groupe d'options actuel.\n"
-"Cliquez sur l'icône CADENAS OUVERT pour régler tous les paramètres pour le groupe d'options actuel sur les valeurs par défaut."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:97
-msgid "Unretractions"
-msgstr "Dérétractation"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1492
-msgid "Unsaved Changes"
-msgstr "Changements Non Sauvegardés"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:750
-msgid "Unsaved Presets"
-msgstr "Préréglages Non Sauvegardés"
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:27
-msgid "Update available"
-msgstr "Mise à jour disponible"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:279 xs/src/slic3r/GUI/Preferences.cpp:67
-msgid "Update built-in Presets automatically"
-msgstr "Mettre à jour automatiquement les Préréglages intégrés"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:264
-msgid "Updates"
-msgstr "Mises à jour"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:283
-msgid "Updates are never applied without user's consent and never overwrite user's customized settings."
-msgstr "Les mises à jour ne sont jamais appliquées sans l'accord de l'utilisateur et n'annulent jamais les réglages personnalisés de l'utilisateur."
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:15
-msgid "Upgrade"
-msgstr "Mise à jour"
-
-#: xs/src/slic3r/GUI/GUI.cpp:326
-msgid "Upload a firmware image into an Arduino based printer"
-msgstr "Charger un firmware dans une imprimante basée sur un Arduino"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:989
-msgid "USB/Serial connection"
-msgstr "Port USB/Série"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1194
-msgid "USB/serial port for printer connection."
-msgstr "Port USB/Série pour la connexion de l'imprimante."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1656
-msgid "Use firmware retraction"
-msgstr "Utiliser la rétractation du firmware"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:75
-msgid "Use legacy OpenGL 1.1 rendering"
-msgstr "Utiliser le rendu de legacy OpenGL 1.1"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1663
-msgid "Use relative E distances"
-msgstr "Utiliser des valeurs E relatives"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:361
-msgid "Use this option to set the axis letter associated to your printer's extruder (usually E but some printers use A)."
-msgstr "Utiliser cette option pour indiquer la lettre utilisée par l'extrudeur de votre imprimante (habituellement E, mais certaines imprimantes utilisent A)."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1400
-msgid "Use this setting to rotate the support material pattern on the horizontal plane."
-msgstr "Utiliser ce réglage pour orienter le motif du support sur le plan horizontal."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1670
-msgid "Use volumetric E"
-msgstr "E Volumétrique"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:449
-msgid "Used Filament (g)"
-msgstr "Filament Utilisé (g)"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:447
-msgid "Used Filament (m)"
-msgstr "Filament Utilisé (m)"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:448
-msgid "Used Filament (mm³)"
-msgstr "Filament Utilisé (mm³)"
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:21
-msgid "User"
-msgstr "Utilisateur"
-
-#: xs/src/slic3r/GUI/Preset.cpp:649 xs/src/slic3r/GUI/Preset.cpp:706
-#: xs/src/slic3r/GUI/PresetBundle.cpp:1127 lib/Slic3r/GUI/Plater.pm:553
-msgid "User presets"
-msgstr "Préréglages utilisateur"
-
-#: xs/src/slic3r/GUI/ButtonsDescription.cpp:38
-msgid "Value is the same as the system value"
-msgstr "La valeur est identique à la valeur du système"
-
-#: xs/src/slic3r/GUI/ButtonsDescription.cpp:55
-msgid "Value was changed and is not equal to the system value or the last saved preset"
-msgstr "La valeur a été changée et n'est pas égale à la valeur du système ou au dernier préréglage sauvegardé"
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:55
-msgid "variants"
-msgstr "variantes"
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:49 xs/src/slic3r/GUI/Tab.cpp:755
-msgid "vendor"
-msgstr "fabriquant"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:644
-msgid "Verbose G-code"
-msgstr "G-code commenté"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:66
-msgid "Version "
-msgstr "Version "
-
-#: xs/src/slic3r/GUI/AboutDialog.cpp:60
-msgid "Version"
-msgstr "Version"
-
-#: xs/src/slic3r/GUI/ConfigSnapshotDialog.cpp:49
-msgid "version"
-msgstr "version"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:318
-msgid "Vertical shells"
-msgstr "Parois verticales"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:65
-msgid "View"
-msgstr "Vue"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:409
-msgid "Volume"
-msgstr "Volume"
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:241
-msgid "Volume to purge (mm³) when the filament is being"
-msgstr "Volume à purger (mm³) lorsque le filament est"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:214
-msgid "Volumetric"
-msgstr "Volumétrique"
-
-#: lib/Slic3r/GUI/Plater/3DPreview.pm:71
-msgid "Volumetric flow rate"
-msgstr "Débit volumétrique"
-
-#: xs/src/libslic3r/GCode/PreviewData.cpp:370
-msgid "Volumetric flow rate (mm3/s)"
-msgstr "Débit volumétrique (mm3/s)"
-
-#: xs/src/slic3r/GUI/RammingChart.cpp:86
-msgid "Volumetric speed"
-msgstr "Vitesse volumétrique"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:500
-msgid "Warning"
-msgstr "Alerte"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:205
-msgid "Welcome"
-msgstr "Bienvenue"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:205
-#, c-format
-msgid "Welcome to the Slic3r %s"
-msgstr "Bienvenue sur Slic3r %s"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\2D.pm:131
-msgid "What do you want to print today? â„¢"
-msgstr "Que voulez-vous imprimer aujourd'hui? â„¢"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:69
-msgid "When checked, the print and filament presets are shown in the preset editor even if they are marked as incompatible with the active printer"
-msgstr "Lorsqu'ils sont sélectionnés, les préréglages de l'imprimante et du filament sont visibles dans l'éditeur de préréglage même s'ils sont désignés comme incompatibles avec l'imprimante en cours d'utilisation"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:219
-msgid "when printing "
-msgstr "pendant l'impression des "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:136
-msgid "When printing multi-material objects, this settings will make slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)."
-msgstr "Lorsque vous imprimez des objets multi-matériaux, ce réglage fera en sorte que Slic3r rattache ensemble les parties de l'objet qui se superposent (la 2e partie sera rattachée à la 1ere, la 3e partie sera rattachée à la 1ere et la 2e, etc...)."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:155
-msgid "When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware."
-msgstr "Lorsque vous imprimez plusieurs objets ou copies, ce réglage permet de terminer un objet avant de passer au suivant (en repartant de sa première couche). Cette fonction est utile pour éviter les risques d'impressions gâchées. Slic3r doit vous avertir et éviter les collisions entre les objets et l'extrudeur, mais soyez vigilant."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:605
-msgid "When printing with very low layer heights, you might still want to print a thicker bottom layer to improve adhesion and tolerance for non perfect build plates. This can be expressed as an absolute value or as a percentage (for example: 150%) over the default layer height."
-msgstr "Lors d'une impression avec de très faibles épaisseurs de couche, vous pouvez choisir d'imprimer une première couche plus épaisse pour améliorer l'adhérence et la tolérance aux plateaux imparfaits. Ce réglage peut être exprimé comme une valeur absolue ou un pourcentage (par exemple 150%) par rapport à l'épaisseur de couche par défaut."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1082
-msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
-msgstr "Lorsque la rétractation est déclenchée avant un changement d'outil, le filament est retiré de la longueur indiquée (la longueur est mesurée sur le filament brut, avant qu'il entre dans l'extrudeur)."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1073
-msgid "When retraction is triggered, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
-msgstr "Lorsque la rétractation est déclenchée, le filament est tiré en arrière de la longueur indiquée (la longueur est mesurée sur le filament brut, avant qu'il entre dans l'extrudeur)."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:808
-msgid "When setting other speed settings to 0 Slic3r will autocalculate the optimal speed in order to keep constant extruder pressure. This experimental setting is used to set the highest print speed you want to allow."
-msgstr "Lorsque vous réglez les autres vitesses à 0, Slic3r calculera automatiquement la vitesse optimale de façon à garder une pression constante dans l'extrudeur. Cette fonction expérimentale est utilisée pour régler la plus haute vitesse que vous souhaitez autoriser."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1127
-msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
-msgstr "Lorsque la rétractation est compensée après un changement d'outil, l'extrudeur exprimera cette quantité de filament en plus."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1119
-msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
-msgstr "Lorsque la rétractation est compensée après un déplacement, l'extruder exprimera cette quantité de filament en plus. Ce réglage est rarement nécessaire."
-
-#: xs/src/slic3r/GUI/Tab.cpp:2486
-msgid "WHITE BULLET icon indicates a non system preset."
-msgstr "L'icône en forme de PUCE BLANCHE indique un préréglage non-système."
-
-#: xs/src/slic3r/GUI/Tab.cpp:2489
-msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group."
-msgstr "L'icône en forme de PUCE BLANCHE indique que les réglages sont identiques au dernier préréglage sauvegardé pour le groupe d'options actuel."
-
-#: xs/src/slic3r/GUI/Tab.cpp:2504
-msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset."
-msgstr "L'icône PUCE BLANCHE indique que la valeur est la même que pour le dernier préréglage sauvegardé."
-
-#: xs/src/slic3r/GUI/Tab.cpp:2451
-msgid ""
-"WHITE BULLET;for the left button: \tindicates a non-system preset,\n"
-"for the right button: \tindicates that the settings hasn't been modified."
-msgstr "PUCE BLANCHE;pour le bouton gauche : indique un préréglage non-système, pour le bouton droit : indique que le réglage n'a pas été modifié."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1716
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:70
-msgid "Width"
-msgstr "Largeur"
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:334
-msgid "Width (mm)"
-msgstr "Largeur (mm)"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1717
-msgid "Width of a wipe tower"
-msgstr "Largeur d'une tour de nettoyage"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:41
-#, c-format
-msgid "will always run at %d%% "
-msgstr "fonctionnera toujours à %d%% "
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:50
-msgid "will be turned off."
-msgstr "sera désactivé."
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:442
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:149
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:91
-msgid "Wipe tower"
-msgstr "Tour de nettoyage"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:564
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:585
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:602
-msgid "Wipe Tower"
-msgstr "Tour de Nettoyage"
-
-#: xs/src/slic3r/GUI/WipeTowerDialog.cpp:142
-msgid "Wipe tower - Purging volume adjustment"
-msgstr "Tour de nettoyage - Ajustement du volume de purge"
-
-#: xs/src/libslic3r/PrintConfig.cpp:1847
-msgid "Wipe tower rotation angle"
-msgstr "Angle de rotation de la tour de nettoyage"
-
-#: xs/src/libslic3r/PrintConfig.cpp:1848
-msgid "Wipe tower rotation angle with respect to x-axis "
-msgstr "Angle de rotation de la tour de nettoyage par rapport à l'axe X "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1688
-msgid "Wipe while retracting"
-msgstr "Nettoyer lors des rétractations"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1058
-msgid "With bowden extruders, it may be wise to do some amount of quick retract before doing the wipe movement."
-msgstr "Avec les extrudeurs bowden, il est conseillé d'effectuer une rétractation rapide avant de réaliser le mouvement de nettoyage."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1564
-msgid "With sheath around the support"
-msgstr "Avec une enveloppe autour du support"
-
-#: xs/src/slic3r/GUI/UpdateDialogs.cpp:72
-msgid ""
-"Would you like to install it?\n"
-"\n"
-"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n"
-"\n"
-"Updated configuration bundles:"
-msgstr ""
-"Voulez-vous l'installer ?\n"
-"\n"
-"Notez qu'un snapshot complet de la configuration sera sauvegardé d'abord. Elle peut être restaurée à tout moment si vous rencontrez un problème avec la nouvelle version.\n"
-"\n"
-"Ensembles de configuration mis à jour :"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1703
-msgid "X coordinate of the left front corner of a wipe tower"
-msgstr "Coordonnée X du coin avant gauche d'une tour de nettoyage"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1386
-msgid "XY separation between an object and its support"
-msgstr "Séparation XY entre un objet et son support"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1388
-msgid "XY separation between an object and its support. If expressed as percentage (for example 50%), it will be calculated over external perimeter width."
-msgstr "Séparation XY entre un objet et son support. Si la valeur est exprimée en pourcentage (par exemple 50%), elle sera calculée à partir de la largeur du périmètre extérieur."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1732
-msgid "XY Size Compensation"
-msgstr "Compensation de Taille XY"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1710
-msgid "Y coordinate of the left front corner of a wipe tower"
-msgstr "Coordonnée Y du coin avant gauche d'une tour de nettoyage"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1970
-msgid "Yes"
-msgstr "Oui"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:885
-msgid "You can put here your personal notes. This text will be added to the G-code header comments."
-msgstr "Vous pouvez inscrire ici vos commentaires personnels. Ce texte sera ajouté au commentaire en entête du G-Code."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:413
-msgid "You can put your notes regarding the filament here."
-msgstr "Vous pouvez saisir vos remarques concernant le filament ici."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1015
-msgid "You can put your notes regarding the printer here."
-msgstr "Vous pouvez saisir ici vos observations concernant l'imprimante."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:181
-msgid "You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse."
-msgstr "Vous pouvez régler ce paramètre sur une valeur positive pour désactiver complètement le ventilateur pendant les premières couches, afin de ne pas rendre l'adhérence plus difficile."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:931
-msgid "You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]."
-msgstr "Vous pouvez utiliser toutes les options de configuration comme variables dans ce modèle. Par exemple : [layer_height], [fill_density] etc. Vous pouvez aussi utiliser [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:749
-msgid "You have unsaved changes "
-msgstr "Les modifications n'ont pas été sauvegardées "
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:101
-msgid "You need to restart Slic3r to make the changes effective."
-msgstr "Vous devez redémarrer Slic3r afin que les modifications soient appliquées."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:594
-msgid "Your file was repaired."
-msgstr "Votre fichier a été réparé."
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:744
-msgid "Your object appears to be too large, so it was automatically scaled down to fit your print bed."
-msgstr "Votre objet semble être trop grand, il a donc été automatiquement réduit afin de l'adapter à votre plateau d'impression."
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1742
-msgid "Z offset"
-msgstr "Décalage Z"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:91
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:492
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1170
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1181
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1401
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1557
-msgid "°"
-msgstr "°"
-
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:484
-#: xs/src/slic3r/GUI/ConfigWizard.cpp:498
-msgid "°C"
-msgstr "°C"
-
-#: supermerill's add: tab.cpp
-msgid "Avoid unsupported perimeters"
-msgstr "Eviter les périmètres sans support"
-
-#: supermerill's add: tab.cpp
-msgid "Seam"
-msgstr "Jointures"
-
-#: supermerill's add: tab.cpp
-msgid "Looping perimeter"
-msgstr "Périmètres en boucle"
-
-#: supermerill's add: tab.cpp
-msgid "Fill internal"
-msgstr "Remplissage interne"
-
-#: supermerill's add: tab.cpp
-msgid "Fill external"
-msgstr "Remplissage plein externe"
-
-#: supermerill's add: tab.cpp
-msgid "Supporting dense layer"
-msgstr "Couche de support pour remplissage plein"
-
-#: supermerill's add: tab.cpp
-msgid "Anchor solid infill by X mm"
-msgstr "Ancrage des remplissages plein de X mm "
-
-#: supermerill's add: tab.cpp
-msgid "Perimeter speed"
-msgstr "Vitesses pour les périmètres"
-
-#: supermerill's add: tab.cpp
-msgid "Infill speed"
-msgstr "Vitesses pour les remplissages"
-
-#: supermerill's add: tab.cpp
-msgid "Support speed"
-msgstr "Vitesses pour les supports"
-
-#: supermerill's add: tab.cpp
-msgid "First layer speed"
-msgstr "Vitesses pour la première couche"
-
-#: supermerill's add: tab.cpp
-msgid "Wipe tower position"
-msgstr "Position de la tour de vidage"
-
-#: supermerill's add: tab.cpp
-msgid "Bridge flow ratio"
-msgstr "Débit lors de ponts"
-
-#: supermerill's add: tab.cpp
-msgid "XY compensation"
-msgstr "Compensation en XY"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "remove_small_gaps"
-msgstr "Retirer les petites imperfections"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Top fan speed"
-msgstr "Vitesse du ventilateur pour le dessus"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Above the bridges"
-msgstr "Au-dessus des ponts"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "First layer"
-msgstr "Première couche"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Top Pattern"
-msgstr "Motif du dessus"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Bottom Pattern"
-msgstr "Motif du dessous"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Enforce 100% fill volume"
-msgstr "S'assurer que les remplissages sont exacts en volume"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Bridged"
-msgstr "Ponts"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "External"
-msgstr "Externe"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Seam position"
-msgstr "Position des jointures"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Only one perimeter on Top surfaces"
-msgstr "Seulement un périmètre autoir des surfaces du dessus"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Fill"
-msgstr "Remplissage"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Do not connect infill lines to each other"
-msgstr "Ne pas connecter les lignes de remplissage entre elles"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Algorithm"
-msgstr "Algorithme"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Sparse"
-msgstr "Epars"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Exact last layer height"
-msgstr "Mettre la dernière tranche à la heuteur exacte"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Minimum perimeters"
-msgstr "Nombre min de périmètres"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Only on bridged areas"
-msgstr "Seulement sur ponts"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Solid first layer"
-msgstr "Première couche pleine"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Travel move reduced"
-msgstr "Moins de déplacements"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Hidden"
-msgstr "Cachée"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Small"
-msgstr "Fins"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Solid"
-msgstr "Plein"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Interface"
-msgstr "Interface"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Top solid"
-msgstr "Plein du dessus"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "All layers"
-msgstr "Toutes les couches"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Holes"
-msgstr "Trous"
-
-#: tooltips
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Remove small gaps"
-msgstr "Retire les mini-espaces/imperfections"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Remove the small gaps in the 3D model when slicing. Disable it if you "
- "are very confident on your model, or you want to print an item with a geometry "
- "designed for vase mode."
-msgstr "Retire touts les petits trous et espaces (imperfections) qui peuvent être présent sur le modèle. A ne décocher que si le modèle 3D à été crée exprès, pour le mode vase."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "This fan speed is enforced during all top fills."
-msgstr "Cette vitesse de ventilation est utilisé pour toutes les surface du dessus."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "This factor affects the amount of plastic to overextrude "
- "when we are filling on top of a bridge surface."
- "With a number >1, we can retrieve a correct z-height "
- "even if the bridged layer has fallen a bit. "
- "It's useful if you want to have a nice flat top layer."
-msgstr "Ce paramètre affecxte la quantité de matière déposée au-dessus des ponts. Sachant que les ponts s'affaissent un peu, avec un paramètre légèrement supérieur à 1, on peut revenir à la bonne hauteur. C'est surtotu utile si on veut obtenir des surfaces supérieure bien plate et jolie."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "The first layer will be grown / shrunk in the XY plane by the configured value "
- "to compensate for the 1st layer squish aka an Elephant Foot effect. (should be negative = inwards)"
-msgstr "La première couche est agrandie / rétrécie en XY par cette valeur pour compenser la déformation de la première couche. (negatif = vers l'intérieur de la pièce, positif = vers l'extérieur) !!! Devrait être négative (<0) afin de rétrécir la pièce !!!"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Fill pattern for top infill. This only affects the top external visible layer, and not its adjacent solid shells."
-msgstr "Motif pour les surfaces du dessus. Ceci affecte seulement la couche externe visible, et non les coques pleines adjacentes."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Fill pattern for bottom infill. This only affects the bottom external visible layer, and not its adjacent solid shells."
-msgstr "Motif pour les surfaces du dessous. Ceci affecte seulement la couche externe visible, et non les coques pleines adjacentes."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Experimental option which modifies (in solid infill) fill flow to have the exact amount of plastic inside the volume to fill "
- "(it generally changes the flow from -7% to +4%, depending on the size of the surface to fill and the overlap parameters, "
- "but it can go as high as +50% for infill in very small areas where rectilinear doesn't have good coverage). It has the advantage "
- "to remove the over-extrusion seen in thin infill areas, from the overlap ratio"
-msgstr "Option expérimentale qui modifie le débit dans les couches pleines pour s'assurer que le volume extrudé est égal au volume à remplir. En génral, le débit n'ets modifié que de 4-7% mais cela peut aller jusqu'a +50% dans les très petites zones où il est difficile de circuler. Le pricipal avantage est de retirer l'effet de sur-extrusion souvent vues dans les zones de remplissage étroites."
-
-#: supermerill's add: PrintConfig.cpp
-msgid This parameter grows the top/bottom/solid layers by the specified MM to anchor them into the part. Put 0 to deactivate it."
-msgstr "Ce paramètre agrandi les couches pleines par X mm pour bien les ancrer dans la pièce. Mettre 0 pour désactiver cette fonction."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "This parameter grows the bridged solid infill layers by the specified MM to anchor them into the part. Put 0 to deactivate it."
-msgstr "Ce paramètre agrandi les couches de pont par X mm pour bien les ancrer dans la pièce. Mettre 0 pour désactiver cette fonction."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Join the perimeters to create only one continuous extrusion without any z-hop."
- " Long inside travel (from external to holes) are not extruded to give some space to the infill."
-msgstr "Rabouter les périmètres pour en créer une unique et longue extrusion. Lors d'un passage de périmètre extérieur vers intérieur, si l'espace est grand, un déplacemnt sera tout de même utilisé."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Position of perimeters starting points."
-msgstr "Position des point de départ des jonctions entre périmètres"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Use only one perimeter on flat top surface, to let more space to the top infill pattern."
-msgstr "Utiliser seulement une seule ligne de périmètre sur les surfaces du dessus, afin de laisser le plus de place possible au motif de remplissage du dessus."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "If expressed as absolute value in mm/s, this speed will be applied to all the print moves "
- "but infill of the first layer, it can be overwrite by the 'default' (default depends of the type of the path) "
- "speed if it's lower than that. If expressed as a percentage "
- "(for example: 40%) it will scale the 'default' speeds."
-msgstr "Si exprimée avec une valeur absolue en mm/s, cette vitesse sera appliquée à toutes les impressions de la première couche, sauf les remplissages (et si la vitesse par défaut est plus petite, elle sera utilisée à la place). Si exprimée comme un pourcentage (par exemple 40%), cela modulera la vitesse par défaut."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "If expressed as absolute value in mm/s, this speed will be applied to infill moves "
- "of the first layer, it can be overwrite by the 'default' (solid infill or infill if not bottom) "
- "speed if it's lower than that. If expressed as a percentage "
- "(for example: 40%) it will scale the 'default' speed."
-msgstr "Si exprimée avec une valeur absolue en mm/s, cette vitesse sera appliquée aux impressions de remplissage de la première couche (et si la vitesse par défaut est plus petite, elle sera utilisée à la place). Si exprimée comme un pourcentage (par exemple 40%), cela modulera la vitesse par défaut."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Enable gap fill algorithm. It will extrude small lines between perimeters "
- "when there is not enough space for another perimeter or an infill."
-msgstr "Active les impression de remplissage des petits trous qui peuvent subsister entre les périmètres et sui sont trop petits pour faire du remplissage."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Enables the creation of a support layer under the first solid layer. This allows you to use a lower infill ratio without compromising the top quality."
- " The dense infill is laid out with a 50% infill density."
-msgstr "Active le remplacement du motif de remplissage sous les remplissage plein afin de permettre un meilleur support de ceux-ci. Cela permet de choisir un ratio de remplissage plus petit."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "If checked, the infill algorithm will try to not connect the lines near the infill. Can be useful for art or with high infill/perimeter overlap."
-msgstr "Si coché, l'algorithme de dessin des patrons de remplissage va essayer de ne pas connecter ses lignes entre elles, en bordure des périmètres."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Choose the way the dense layer is lay out."
- " The automatic option let it try to draw the smallest surface with only strait lines inside the sparse infill."
- " The anchored just enlarge a bit (by bridged anchor) the surfaces that need a better support."
-msgstr "Choisissez la façon dont la couche de support est dessinée. L'option eutomatique essayera de trouver une surface sans virage au milieu du vide. L'option ancrée utilisera une surface un peu plus grande que celle supoortée."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Automatic"
-msgstr "Automatique"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Automatic, only for small areas"
-msgstr "Automatique, sur les zones étroites"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Anchored"
-msgstr "Ancré"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "This setting controls the height of last object layers to put the last layer at the exact highest height possible. Experimental."
-msgstr "Ce paramètre fonctionne mal, ne l'utilisez pas. Il aurait dû placer la dernière couche exactement à la hauteur de l'objet, mais ça marche mal."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Experimental option to remove perimeters where there is nothing under it and where a bridged infill should be better. Computationally intensive!"
-msgstr "option très expérimentale pour permettre de ne pas mettre de périmètres s'il n'y a pas de couches en support en-dessous."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Number of perimeters exluded from this option."
-msgstr "Nombre de périmètre qui ne sont pas retirés par cette fonction"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Only remove perimeters over areas marked as 'bridge'. Can be useful to let perimeter run over overhangs, but it's not very reliable."
-msgstr "Ne retirer les périmètres qu'au dessus des endroit où il peut y avoir des ponts. Utile pour garder les surplombs."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Use a solid layer instead of a raft for the layer that touch the build plate."
-msgstr "Dépose une couche peinle sur le plateur à la place d'un quadriallage."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Add a big cost to travel paths when possible (when going into a loop), so it will prefer a less optimal seam posistion if it's nearer."
-msgstr "Ajoute un fort coût aux déplacement pour les minimiser davantage."
-
-#: supermerill's add: PrintConfig.cpp
-msgid "The convex holes will be grown / shrunk in the XY plane by the configured value"
- " (negative = inwards, positive = outwards, should be positive as the holes are always a bit smaller)."
- " This might be useful for fine-tuning hole sizes."
-msgstr "Les trous convexes vont être agrandis/rétécis en XY par cette valeur pour compenser la rétractation du palstique. (negatif = vers l'intérieur de la pièce, positif = vers l'extérieur) !!! Devrait être négative (<0) afin d'agrandir le trou!!!"
-
-#: supermerill's add: PrintConfig.cpp
-msgid "Invalid value for --over-bridge-flow-ratio"
-msgstr "Valeur invalide pour --over-bridge-flow-ratio"
-
-#: supermerill's add: others Tab.hpp
-msgid "Hardware Settings"
-msgstr "Paramètres du matériel"
-
-msgid "Rectilinear"
-msgstr "Rectilinéaire"
-
-msgid "Grid"
-msgstr "Grille"
-
-msgid "Stars"
-msgstr "Etoiles"
-
-msgid "Cubic"
-msgstr "Tri-Cubique"
-
-msgid "Line"
-msgstr "Lignes"
-
-msgid "Concentric"
-msgstr "Concentrique"
-
-msgid "Honeycomb"
-msgstr "Hexagones"
-
-msgid "3D Honeycomb"
-msgstr "Hexagonal 3D"
-
-msgid "Gyroid"
-msgstr "Gyroide"
-
-msgid "Hilbert Curve"
-msgstr "Hilbert (Fractale)"
-
-msgid "Ironing"
-msgstr "Lissée"
-
-msgid "Concentric"
-msgstr "Concentrique"
-
-msgid "Nearest"
-msgstr "Au plus près"
-
-msgid "Random"
-msgstr "Aléatoire"
-
-msgid "Aligned"
-msgstr "Aligné"
-
-msgid "Concentric"
-msgstr "Concentrique"
diff --git a/resources/localization/it/Slic3rPE.mo b/resources/localization/it/Slic3rPE.mo
deleted file mode 100644
index dd865ca9d..000000000
Binary files a/resources/localization/it/Slic3rPE.mo and /dev/null differ
diff --git a/resources/localization/it/Slic3rPE_it.po b/resources/localization/it/Slic3rPE_it.po
deleted file mode 100644
index 1bd270426..000000000
--- a/resources/localization/it/Slic3rPE_it.po
+++ /dev/null
@@ -1,7058 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-17 13:39+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Oleksandra Iushchenko \n"
-"Language: it\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=2; plural=(n != 1);\n"
-"X-Generator: Poedit 2.0.8\n"
-"Language-Team: \n"
-
-#: src/slic3r/GUI/AboutDialog.cpp:33
-msgid "About Slic3r"
-msgstr "Riguardo Slic3r"
-
-#: src/slic3r/GUI/AboutDialog.cpp:68 src/slic3r/GUI/MainFrame.cpp:51
-msgid "Version"
-msgstr "Versione"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:43
-msgid "Shape"
-msgstr "Forma"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:50
-msgid "Rectangular"
-msgstr "Rettangolare"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:54
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:207 src/slic3r/GUI/Plater.cpp:125
-#: src/slic3r/GUI/Tab.cpp:2122
-msgid "Size"
-msgstr "Dimensione"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:55
-msgid "Size in X and Y of the rectangular plate."
-msgstr "Dimensioni su X e Y del piano rettangolare."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:61
-msgid "Origin"
-msgstr "Origine"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:62
-msgid ""
-"Distance of the 0,0 G-code coordinate from the front left corner of the "
-"rectangle."
-msgstr ""
-"Distanza della coordinata 0,0 del G-code dall'angolo frontale sinistro del "
-"rettangolo."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:66
-msgid "Circular"
-msgstr "Circolare"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:69 src/slic3r/GUI/ConfigWizard.cpp:92
-#: src/slic3r/GUI/ConfigWizard.cpp:456 src/slic3r/GUI/ConfigWizard.cpp:470
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:80
-#: src/libslic3r/PrintConfig.cpp:50 src/libslic3r/PrintConfig.cpp:58
-#: src/libslic3r/PrintConfig.cpp:180 src/libslic3r/PrintConfig.cpp:254
-#: src/libslic3r/PrintConfig.cpp:263 src/libslic3r/PrintConfig.cpp:315
-#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:448
-#: src/libslic3r/PrintConfig.cpp:460 src/libslic3r/PrintConfig.cpp:480
-#: src/libslic3r/PrintConfig.cpp:679 src/libslic3r/PrintConfig.cpp:1178
-#: src/libslic3r/PrintConfig.cpp:1243 src/libslic3r/PrintConfig.cpp:1263
-#: src/libslic3r/PrintConfig.cpp:1283 src/libslic3r/PrintConfig.cpp:1365
-#: src/libslic3r/PrintConfig.cpp:1376 src/libslic3r/PrintConfig.cpp:1499
-#: src/libslic3r/PrintConfig.cpp:1508 src/libslic3r/PrintConfig.cpp:1554
-#: src/libslic3r/PrintConfig.cpp:1563 src/libslic3r/PrintConfig.cpp:1574
-#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1592
-#: src/libslic3r/PrintConfig.cpp:1682 src/libslic3r/PrintConfig.cpp:1918
-#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2031
-#: src/libslic3r/PrintConfig.cpp:2241 src/libslic3r/PrintConfig.cpp:2249
-#: src/libslic3r/PrintConfig.cpp:2257 src/libslic3r/PrintConfig.cpp:2291
-#: src/libslic3r/PrintConfig.cpp:2302 src/libslic3r/PrintConfig.cpp:2313
-#: src/libslic3r/PrintConfig.cpp:2321 src/libslic3r/PrintConfig.cpp:2328
-#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2497
-#: src/libslic3r/PrintConfig.cpp:2506 src/libslic3r/PrintConfig.cpp:2515
-#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2560
-#: src/libslic3r/PrintConfig.cpp:2569 src/libslic3r/PrintConfig.cpp:2587
-#: src/libslic3r/PrintConfig.cpp:2596 src/libslic3r/PrintConfig.cpp:2623
-#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2648
-#: src/libslic3r/PrintConfig.cpp:2657 src/libslic3r/PrintConfig.cpp:2666
-msgid "mm"
-msgstr "mm"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:70 src/libslic3r/PrintConfig.cpp:676
-msgid "Diameter"
-msgstr "Diametro"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:71
-msgid ""
-"Diameter of the print bed. It is assumed that origin (0,0) is located in the "
-"center."
-msgstr ""
-"Diametro del piano di stampa. Si presume che l'origine (0,0) si trovi al "
-"centro."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:75 src/slic3r/GUI/GUI_Preview.cpp:265
-#: src/libslic3r/GCode/PreviewData.cpp:175
-msgid "Custom"
-msgstr "Personalizzato"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:79
-msgid "Load shape from STL..."
-msgstr "Carica forma da STL..."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:125
-msgid "Settings"
-msgstr "Impostazioni"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:298
-msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr ""
-"Scegli un file per importare la forma del piano da (STL/OBJ/AMF/3MF/PRUSA):"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:315 src/slic3r/GUI/GUI_ObjectList.cpp:835
-msgid "Error! "
-msgstr "Errore! "
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:324
-msgid "The selected file contains no geometry."
-msgstr "Il file selezionato non contiene geometrie."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:328
-msgid ""
-"The selected file contains several disjoint areas. This is not supported."
-msgstr ""
-"Il file selezionato contiene molteplici aree disgiunte. Non è supportato."
-
-#: src/slic3r/GUI/BedShapeDialog.hpp:44 src/slic3r/GUI/ConfigWizard.cpp:419
-msgid "Bed Shape"
-msgstr "Forma Letto"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:54
-msgid "Network lookup"
-msgstr "Network lookup"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:67
-msgid "Address"
-msgstr "Indirizzo"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:68
-msgid "Hostname"
-msgstr "Hostname"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:69
-msgid "Service name"
-msgstr "Nome servizio"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:70
-msgid "OctoPrint version"
-msgstr "Versione di OctoPrint"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:188
-msgid "Searching for devices"
-msgstr "Ricerca dispositivi"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:195
-msgid "Finished"
-msgstr "Finito"
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:15
-msgid "Buttons And Text Colors Description"
-msgstr "Descrizione colori testo e pulsanti"
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:40
-msgid "Value is the same as the system value"
-msgstr "Valore uguale a quello di sistema"
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:57
-msgid ""
-"Value was changed and is not equal to the system value or the last saved "
-"preset"
-msgstr ""
-"Il valore è stato modificato e non è uguale al valore di sistema o "
-"all'ultimo preset salvato"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:16
-msgid "Upgrade"
-msgstr "Aggiorna"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:18
-msgid "Downgrade"
-msgstr "Downgrade"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:20
-msgid "Before roll back"
-msgstr "Prima di tornare indietro"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:22
-msgid "User"
-msgstr "Utente"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:25
-msgid "Unknown"
-msgstr "Ignoto"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:37
-msgid "Active: "
-msgstr "Attivo: "
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43
-msgid "slic3r version"
-msgstr "versione di slic3r"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:44 src/slic3r/GUI/Preset.cpp:1156
-msgid "print"
-msgstr "stampa"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:45
-msgid "filaments"
-msgstr "filamenti"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1160
-msgid "printer"
-msgstr "stampante"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 src/slic3r/GUI/Tab.cpp:838
-msgid "vendor"
-msgstr "venditore"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50
-msgid "version"
-msgstr "versione"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51
-msgid "min slic3r version"
-msgstr "versione min slic3r"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53
-msgid "max slic3r version"
-msgstr "versione slic3r massima"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
-msgid "model"
-msgstr "modello"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
-msgid "variants"
-msgstr "varianti"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68
-msgid "Incompatible with this Slic3r"
-msgstr "Incompatibile con questo Slic3r"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71
-msgid "Activate"
-msgstr "Attiva"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:97
-msgid "Configuration Snapshots"
-msgstr "Istantanee di Configurazione"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:92
-msgid "nozzle"
-msgstr "ugello"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:93
-msgid "default"
-msgstr "predefinito"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:116
-msgid "Select all"
-msgstr "Seleziona tutto"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:117
-msgid "Select none"
-msgstr "Deseleziona tutti"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:226
-#, c-format
-msgid "Welcome to the Slic3r %s"
-msgstr "Benvenuto su Slic3r %s"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:226
-msgid "Welcome"
-msgstr "Benvenuti"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:232 src/slic3r/GUI/GUI_App.cpp:606
-#, c-format
-msgid "Run %s"
-msgstr "Run %s"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:234
-#, c-format
-msgid ""
-"Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial "
-"configuration; just a few settings and you will be ready to print."
-msgstr ""
-"Ciao, benvenuto su Slic3r Prusa Edition! Questo %s ti aiuterà con la "
-"configurazione iniziale; giusto un paio di impostazioni e sarai pronto a "
-"stampare."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:238
-msgid ""
-"Remove user profiles - install from scratch (a snapshot will be taken "
-"beforehand)"
-msgstr ""
-"Rimuovi profili utente - reinstalla da zero (sarà prima fatto uno snapshot)"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:263
-msgid "Other vendors"
-msgstr "Altri fornitori"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:265
-msgid "Custom setup"
-msgstr "Setup personalizzato"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:289
-msgid "Automatic updates"
-msgstr "Aggiornamenti automatici"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:289
-msgid "Updates"
-msgstr "Aggiornamenti"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:297 src/slic3r/GUI/Preferences.cpp:59
-msgid "Check for application updates"
-msgstr "Verifica la presenza di aggiornamenti"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:300 src/slic3r/GUI/Preferences.cpp:61
-msgid ""
-"If enabled, Slic3r checks for new versions of Slic3r PE online. When a new "
-"version becomes available a notification is displayed at the next "
-"application startup (never during program usage). This is only a "
-"notification mechanisms, no automatic installation is done."
-msgstr ""
-"Se attivato, Slic3r verifica la presenza di una nuova versione di Slic3r PE "
-"online. Quando una nuova versione diviene disponibile, viene mostrata una "
-"notifica al successivo avvio dell'applicazione (mai durante l'uso del "
-"programma). Questo è solo un meccanismo di notifica, non viene effettuato "
-"nessun aggiornamento automatico."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:304 src/slic3r/GUI/Preferences.cpp:67
-msgid "Update built-in Presets automatically"
-msgstr "Aggiorna automaticamente i Preset integrati"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:307 src/slic3r/GUI/Preferences.cpp:69
-msgid ""
-"If enabled, Slic3r downloads updates of built-in system presets in the "
-"background. These updates are downloaded into a separate temporary location. "
-"When a new preset version becomes available it is offered at application "
-"startup."
-msgstr ""
-"Se abilitato, Slic3r scarica gli aggiornamenti dei preset inclusi in "
-"background. Questi aggiornamenti sono scaricati in una posizione temporanea. "
-"Quando una nuova versione dei preset diventa disponibile, viene offerta "
-"all'avvio."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:308
-msgid ""
-"Updates are never applied without user's consent and never overwrite user's "
-"customized settings."
-msgstr ""
-"Gli aggiornamenti non vengono mai applicati senza il consenso dell'utente e "
-"non sovrascrivono mai i settaggi personalizzati dell'utente."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:313
-msgid ""
-"Additionally a backup snapshot of the whole configuration is created before "
-"an update is applied."
-msgstr ""
-"Inoltre una copia di backup dei preset viene creata prima di applicare un "
-"aggiornamento."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:320
-msgid "Other Vendors"
-msgstr "Altri Fornitori"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:322
-msgid "Pick another vendor supported by Slic3r PE:"
-msgstr "Scegli un altro fornitore supportato da Slic3r PE:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:381
-msgid "Firmware Type"
-msgstr "Tipo Firmware"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:381 src/slic3r/GUI/Tab.cpp:1820
-msgid "Firmware"
-msgstr "Firmware"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:385
-msgid "Choose the type of firmware used by your printer."
-msgstr "Scegliete il firmware usato dalla vostra stampante."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:419
-msgid "Bed Shape and Size"
-msgstr "Forma e dimensioni del piano"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:422
-msgid "Set the shape of your printer's bed."
-msgstr "Imposta la dimensione del piano della stampante."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:436
-msgid "Filament and Nozzle Diameters"
-msgstr "Diametro filamento e ugello"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:436
-msgid "Print Diameters"
-msgstr "Diametro di stampa"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:452
-msgid "Enter the diameter of your printer's hot end nozzle."
-msgstr "Inserisci il diametro dell'ugello dell'estrusore della stampante."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:455
-msgid "Nozzle Diameter:"
-msgstr "Diametro ugello:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:465
-msgid "Enter the diameter of your filament."
-msgstr "Inserite il diametro del vostro filamento."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:466
-msgid ""
-"Good precision is required, so use a caliper and do multiple measurements "
-"along the filament, then compute the average."
-msgstr ""
-"E' necessaria una buona precisione, quindi utilizza un calibro ed effettua "
-"diverse misurazioni lungo il filamento, quindi calcola la media."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:469
-msgid "Filament Diameter:"
-msgstr "Diametro del filamento:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:487
-msgid "Extruder and Bed Temperatures"
-msgstr "Temperature dell'estrusore e del piano"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:487
-msgid "Temperatures"
-msgstr "Temperature"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:503
-msgid "Enter the temperature needed for extruding your filament."
-msgstr "Inserisci la temperatura necessaria per estrudere il filamento."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:504
-msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS."
-msgstr ""
-"Una regola generale è da 160 a 230°C per il PLA, e da 215 a 250°C per l'ABS."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:507
-msgid "Extrusion Temperature:"
-msgstr "Temperatura di estrusione:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:508 src/slic3r/GUI/ConfigWizard.cpp:522
-msgid "°C"
-msgstr "°C"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:517
-msgid ""
-"Enter the bed temperature needed for getting your filament to stick to your "
-"heated bed."
-msgstr ""
-"Inserisci la temperatura del piano necessaria per far attaccare il filamento "
-"al piano riscaldato."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:518
-msgid ""
-"A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have "
-"no heated bed."
-msgstr ""
-"Una regola generale è 60°C per il PLA e 110°C per l'ABS. Lascia a zero se "
-"non hai un piano riscaldato."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:521
-msgid "Bed Temperature:"
-msgstr "Temperatura letto:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:833
-msgid "< &Back"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:834
-msgid "&Next >"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:835
-msgid "&Finish"
-msgstr "&Completa"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:906
-msgid "Configuration Wizard"
-msgstr "Wizard di configurazione"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:907
-msgid "Configuration &Wizard"
-msgstr "&Wizard di configurazione"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:909
-msgid "Configuration Assistant"
-msgstr "Assistente configurazione"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:910
-msgid "Configuration &Assistant"
-msgstr "&Assistente configurazione"
-
-#: src/slic3r/GUI/Field.cpp:109
-msgid "default value"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:112
-msgid "parameter name"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:140
-#, c-format
-msgid "%s doesn't support percentage"
-msgstr "%s non supporta la percentuale"
-
-#: src/slic3r/GUI/Field.cpp:148 src/slic3r/GUI/Field.cpp:168
-msgid ""
-"Input value contains incorrect symbol(s).\n"
-"Use, please, only digits"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:153
-msgid "Input value is out of range"
-msgstr "Valore input fuori portata"
-
-#: src/slic3r/GUI/Field.cpp:176
-#, c-format
-msgid ""
-"Do you mean %d%% instead of %d %s?\n"
-"Select YES if you want to change this value to %d%%, \n"
-"or NO if you are sure that %d %s is a correct value."
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:179
-msgid "Parameter validation"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:133
-msgid "Flash!"
-msgstr "Flash!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:134 src/slic3r/GUI/GLGizmo.cpp:2270
-msgid "Cancel"
-msgstr "Cancella"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:135
-msgid "Flashing in progress. Please do not disconnect the printer!"
-msgstr "Flash in corso. Non disconnettere la stampante!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:245
-msgid "Flashing succeeded!"
-msgstr "Flash completato con successo!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:246
-msgid "Flashing failed. Please see the avrdude log below."
-msgstr ""
-"Flash fallito. Ti preghiamo di consultare il registro avrdude qui sotto."
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:247
-msgid "Flashing cancelled."
-msgstr "Flash cancellato."
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:279
-#, c-format
-msgid "Flashing failed: %s"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:293
-#, c-format
-msgid ""
-"This firmware hex file does not match the printer model.\n"
-"The hex file is intended for: %s\n"
-"Printer reported: %s\n"
-"\n"
-"Do you want to continue and flash this hex file anyway?\n"
-"Please only continue if you are sure this is the right thing to do."
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:380 src/slic3r/GUI/FirmwareDialog.cpp:414
-msgid ""
-"Multiple Original Prusa i3 MMU 2.0 devices found. Please only connect one at "
-"a time for flashing."
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:508
-msgid "The device could not have been found"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:581
-#, c-format
-msgid "Error accessing port at %s: %s"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:690
-msgid "Firmware flasher"
-msgstr "Flasher Firmware"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:712
-msgid "Firmware image:"
-msgstr "Immagine firmware:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:716
-msgid "Serial port:"
-msgstr "Porta seriale:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:718
-msgid "Autodetected"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:719
-msgid "Rescan"
-msgstr "Ri-scansiona"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:726
-msgid "Progress:"
-msgstr "Progresso:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:729
-msgid "Status:"
-msgstr "Stato:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:730
-msgid "Ready"
-msgstr "Pronto"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:750
-msgid "Advanced: avrdude output log"
-msgstr "Avanzato: registro output avrdude"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:809
-msgid ""
-"Are you sure you want to cancel firmware flashing?\n"
-"This could leave your printer in an unusable state!"
-msgstr ""
-"Sei sicuro di voler cancellare il flash del firmware?\n"
-"Questo potrebbe lasciare la tua stampante in una condizione inutilizzabile!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:810
-msgid "Confirmation"
-msgstr "Conferma"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:813
-msgid "Cancelling..."
-msgstr "Cancellazione..."
-
-#: src/slic3r/GUI/GLCanvas3D.cpp:4640
-msgid "Detected object outside print volume"
-msgstr ""
-
-#: src/slic3r/GUI/GLCanvas3D.cpp:7962
-msgid "Detected toolpath outside print volume"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:751 src/slic3r/GUI/GUI_ObjectManipulation.cpp:300
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:322
-#: src/libslic3r/PrintConfig.cpp:3087
-msgid "Rotate"
-msgstr "Ruota"
-
-#: src/slic3r/GUI/GLGizmo.cpp:785
-msgid "Rotation (deg)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:841 src/slic3r/GUI/GUI_ObjectManipulation.cpp:206
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:301
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:323
-#: src/libslic3r/PrintConfig.cpp:3111
-msgid "Scale"
-msgstr "Scala"
-
-#: src/slic3r/GUI/GLGizmo.cpp:1072
-msgid "Scale (%)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1200
-msgid "Move"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Position (mm)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Displacement (mm)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1430
-msgid "Place on face"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2207
-msgid "Left mouse click - add point"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2208
-msgid "Right mouse click - remove point"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2211
-msgid "Generate points automatically"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2212
-msgid "Remove all points"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2245
-msgid "SLA Support Points"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2268 src/slic3r/GUI/GLGizmo.cpp:2468
-msgid "Rotate lower part upwards"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2269 src/slic3r/GUI/GLGizmo.cpp:2470
-msgid "Perform cut"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2276
-msgid "Cut object:"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2356 src/slic3r/GUI/GLGizmo.cpp:2461
-#: src/libslic3r/PrintConfig.cpp:3016
-msgid "Cut"
-msgstr "Taglia"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2466
-msgid "Keep upper part"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2467
-msgid "Keep lower part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI.cpp:242
-msgid "Notice"
-msgstr "Avvertenza"
-
-#: src/slic3r/GUI/GUI.cpp:248
-msgid "Attempt to free unreferenced scalar"
-msgstr "Tentativo di liberare lo scalare senza riferimenti"
-
-#: src/slic3r/GUI/GUI.cpp:250 src/slic3r/GUI/WipeTowerDialog.cpp:40
-#: src/slic3r/GUI/WipeTowerDialog.cpp:322
-msgid "Warning"
-msgstr "Attenzione"
-
-#: src/slic3r/GUI/GUI_App.cpp:377
-msgid "Choose one file (3MF):"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:389
-msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Scegli uno o più file (STL/OBJ/AMF/3MF/PRUSA):"
-
-#: src/slic3r/GUI/GUI_App.cpp:451
-msgid "Array of language names and identifiers should have the same size."
-msgstr ""
-"Gli array dei nomi di lingua e gli identificatori dovrebbero avere la stessa "
-"dimensione."
-
-#: src/slic3r/GUI/GUI_App.cpp:461
-msgid "Select the language"
-msgstr "Seleziona la lingua"
-
-#: src/slic3r/GUI/GUI_App.cpp:461
-msgid "Language"
-msgstr "Lingua"
-
-#: src/slic3r/GUI/GUI_App.cpp:529 src/libslic3r/PrintConfig.cpp:270
-msgid "Default"
-msgstr "Predefinito"
-
-#: src/slic3r/GUI/GUI_App.cpp:609
-msgid "&Configuration Snapshots"
-msgstr "Istantanee di &Configurazione"
-
-#: src/slic3r/GUI/GUI_App.cpp:609
-msgid "Inspect / activate configuration snapshots"
-msgstr "Ispeziona / attiva istantanee di configurazione"
-
-#: src/slic3r/GUI/GUI_App.cpp:610
-msgid "Take Configuration &Snapshot"
-msgstr "Cattura i&stantanea di configurazione"
-
-#: src/slic3r/GUI/GUI_App.cpp:610
-msgid "Capture a configuration snapshot"
-msgstr "Cattura un'istantanea della configurazione"
-
-#: src/slic3r/GUI/GUI_App.cpp:613
-msgid "&Preferences"
-msgstr "&Preferenze"
-
-#: src/slic3r/GUI/GUI_App.cpp:613
-msgid "Application preferences"
-msgstr "Preferenze applicazione"
-
-#: src/slic3r/GUI/GUI_App.cpp:616
-msgid "Simple"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:616
-msgid "Simple View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:617 src/slic3r/GUI/GUI_ObjectList.cpp:39
-#: src/slic3r/GUI/Tab.cpp:948 src/slic3r/GUI/Tab.cpp:962
-#: src/slic3r/GUI/Tab.cpp:1058 src/slic3r/GUI/Tab.cpp:1061
-#: src/slic3r/GUI/Tab.cpp:1425 src/slic3r/GUI/Tab.cpp:1840
-#: src/libslic3r/PrintConfig.cpp:156 src/libslic3r/PrintConfig.cpp:323
-#: src/libslic3r/PrintConfig.cpp:999 src/libslic3r/PrintConfig.cpp:2298
-msgid "Advanced"
-msgstr "Avanzate"
-
-#: src/slic3r/GUI/GUI_App.cpp:617
-msgid "Advanced View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:618
-msgid "Expert"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:618
-msgid "Expert View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:620
-msgid "Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:620
-msgid "Slic3r View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:622
-msgid "Change Application &Language"
-msgstr "Cambia &Lingua Applicazione"
-
-#: src/slic3r/GUI/GUI_App.cpp:624
-msgid "Flash printer &firmware"
-msgstr "Installa &firmware stampante"
-
-#: src/slic3r/GUI/GUI_App.cpp:624
-msgid "Upload a firmware image into an Arduino based printer"
-msgstr "Carica un'immagine del firmware su una stampante basata su Arduino"
-
-#: src/slic3r/GUI/GUI_App.cpp:636
-msgid "Taking configuration snapshot"
-msgstr "Cattura istantanea della configurazione"
-
-#: src/slic3r/GUI/GUI_App.cpp:636
-msgid "Snapshot name"
-msgstr "Nome istantanea"
-
-#: src/slic3r/GUI/GUI_App.cpp:674
-msgid "Application will be restarted"
-msgstr "L'applicazione verrà riavviata"
-
-#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/Tab.cpp:2606
-msgid "Attention!"
-msgstr "Attenzione!"
-
-#: src/slic3r/GUI/GUI_App.cpp:691
-msgid "&Configuration"
-msgstr "&Configurazione"
-
-#: src/slic3r/GUI/GUI_App.cpp:711
-msgid "You have unsaved changes "
-msgstr "Sono presenti modifiche non salvate "
-
-#: src/slic3r/GUI/GUI_App.cpp:711
-msgid ". Discard changes and continue anyway?"
-msgstr ". Scartare le modifiche e continuare comunque?"
-
-#: src/slic3r/GUI/GUI_App.cpp:712
-msgid "Unsaved Presets"
-msgstr "Preset non salvati"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:31 src/libslic3r/PrintConfig.cpp:47
-#: src/libslic3r/PrintConfig.cpp:115 src/libslic3r/PrintConfig.cpp:357
-#: src/libslic3r/PrintConfig.cpp:410 src/libslic3r/PrintConfig.cpp:419
-#: src/libslic3r/PrintConfig.cpp:849 src/libslic3r/PrintConfig.cpp:1037
-#: src/libslic3r/PrintConfig.cpp:1354 src/libslic3r/PrintConfig.cpp:1426
-#: src/libslic3r/PrintConfig.cpp:1618 src/libslic3r/PrintConfig.cpp:2091
-#: src/libslic3r/PrintConfig.cpp:2150
-msgid "Layers and Perimeters"
-msgstr "Layer e Perimetri"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:32 src/slic3r/GUI/Tab.cpp:952
-#: src/slic3r/GUI/Tab.cpp:953 src/slic3r/GUI/Tab.cpp:1274
-#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:366
-#: src/libslic3r/PrintConfig.cpp:730 src/libslic3r/PrintConfig.cpp:745
-#: src/libslic3r/PrintConfig.cpp:783 src/libslic3r/PrintConfig.cpp:938
-#: src/libslic3r/PrintConfig.cpp:949 src/libslic3r/PrintConfig.cpp:969
-#: src/libslic3r/PrintConfig.cpp:989 src/libslic3r/PrintConfig.cpp:1010
-#: src/libslic3r/PrintConfig.cpp:1733 src/libslic3r/PrintConfig.cpp:1752
-msgid "Infill"
-msgstr "Riempimento"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_Preview.cpp:262
-#: src/slic3r/GUI/Tab.cpp:980 src/slic3r/GUI/Tab.cpp:981
-#: src/libslic3r/PrintConfig.cpp:305 src/libslic3r/PrintConfig.cpp:1484
-#: src/libslic3r/PrintConfig.cpp:1865 src/libslic3r/PrintConfig.cpp:1872
-#: src/libslic3r/PrintConfig.cpp:1881 src/libslic3r/PrintConfig.cpp:1894
-#: src/libslic3r/PrintConfig.cpp:1905 src/libslic3r/PrintConfig.cpp:1914
-#: src/libslic3r/PrintConfig.cpp:1930 src/libslic3r/PrintConfig.cpp:1953
-#: src/libslic3r/PrintConfig.cpp:1965 src/libslic3r/PrintConfig.cpp:1983
-#: src/libslic3r/PrintConfig.cpp:1993 src/libslic3r/PrintConfig.cpp:2003
-#: src/libslic3r/PrintConfig.cpp:2014 src/libslic3r/PrintConfig.cpp:2029
-#: src/libslic3r/PrintConfig.cpp:2038 src/libslic3r/PrintConfig.cpp:2039
-#: src/libslic3r/PrintConfig.cpp:2048 src/libslic3r/PrintConfig.cpp:2057
-#: src/libslic3r/PrintConfig.cpp:2072 src/libslic3r/GCode/PreviewData.cpp:172
-msgid "Support material"
-msgstr "Materiale supporto"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_Preview.cpp:241
-#: src/slic3r/GUI/Tab.cpp:1005 src/libslic3r/PrintConfig.cpp:169
-#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:881
-#: src/libslic3r/PrintConfig.cpp:1011 src/libslic3r/PrintConfig.cpp:1416
-#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1721
-#: src/libslic3r/PrintConfig.cpp:1776 src/libslic3r/PrintConfig.cpp:2136
-msgid "Speed"
-msgstr "Velocità "
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/Tab.cpp:1038
-#: src/slic3r/GUI/Tab.cpp:1744 src/libslic3r/PrintConfig.cpp:430
-#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:1393
-#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1944
-#: src/libslic3r/PrintConfig.cpp:1973 src/libslic3r/PrintConfig.cpp:2271
-#: src/libslic3r/PrintConfig.cpp:2280
-msgid "Extruders"
-msgstr "Estrusori"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/libslic3r/PrintConfig.cpp:387
-#: src/libslic3r/PrintConfig.cpp:504 src/libslic3r/PrintConfig.cpp:836
-#: src/libslic3r/PrintConfig.cpp:970 src/libslic3r/PrintConfig.cpp:1403
-#: src/libslic3r/PrintConfig.cpp:1765 src/libslic3r/PrintConfig.cpp:1954
-#: src/libslic3r/PrintConfig.cpp:2124
-msgid "Extrusion Width"
-msgstr "Larghezza Estrusione"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:41 src/slic3r/GUI/Tab.cpp:3179
-#: src/slic3r/GUI/Tab.cpp:3180 src/libslic3r/PrintConfig.cpp:2488
-#: src/libslic3r/PrintConfig.cpp:2495 src/libslic3r/PrintConfig.cpp:2504
-#: src/libslic3r/PrintConfig.cpp:2513 src/libslic3r/PrintConfig.cpp:2522
-#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2558
-#: src/libslic3r/PrintConfig.cpp:2567 src/libslic3r/PrintConfig.cpp:2576
-#: src/libslic3r/PrintConfig.cpp:2585 src/libslic3r/PrintConfig.cpp:2594
-#: src/libslic3r/PrintConfig.cpp:2603 src/libslic3r/PrintConfig.cpp:2612
-#: src/libslic3r/PrintConfig.cpp:2621
-msgid "Supports"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:42 src/slic3r/GUI/Tab.cpp:3205
-#: src/slic3r/GUI/Tab.cpp:3206 src/libslic3r/PrintConfig.cpp:2630
-#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2646
-#: src/libslic3r/PrintConfig.cpp:2655 src/libslic3r/PrintConfig.cpp:2664
-msgid "Pad"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:115
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:129
-msgid "Name"
-msgstr "Nome"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:134
-msgid "Right button click the icon to change the object settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:142
-#, c-format
-msgid "Auto-repaired (%d errors):\n"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:145
-msgid "degenerate facets"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:146
-msgid "edges fixed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:147
-msgid "facets removed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:148
-msgid "facets added"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:149
-msgid "facets reversed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:150
-msgid "backwards edges"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:164
-msgid "Right button click the icon to fix STL through Netfabb"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:196 src/slic3r/GUI/Tab.cpp:1389
-#: src/libslic3r/PrintConfig.cpp:429
-msgid "Extruder"
-msgstr "Estrusore"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:615
-msgid "Select showing settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:655
-msgid "Load"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659 src/slic3r/GUI/GUI_ObjectList.cpp:688
-#: src/slic3r/GUI/GUI_ObjectList.cpp:691
-msgid "Box"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Cylinder"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Sphere"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Slab"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:671 src/slic3r/GUI/GUI_ObjectList.cpp:685
-msgid "Add part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:672
-msgid "Add modifier"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:673 src/slic3r/GUI/GUI_ObjectList.cpp:687
-msgid "Add support enforcer"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:674 src/slic3r/GUI/GUI_ObjectList.cpp:690
-msgid "Add support blocker"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:711
-msgid "Split to parts"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:725
-msgid "Add settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:739
-msgid "Change type"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1009
-msgid "You can't delete the last solid part from object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1017
-msgid "You can't delete the last intance from object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1044 src/slic3r/GUI/Plater.cpp:1825
-msgid ""
-"The selected object couldn't be split because it contains only one part."
-msgstr ""
-"L'oggetto selezionato non può essere diviso perché contiene solo una parte."
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1138
-msgid "Group manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1149
-msgid "Object manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1159
-msgid "Object Settings to modify"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1163
-msgid "Part Settings to modify"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1173
-msgid "Part manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1180
-msgid "Instance manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1655
-msgid "You can't change a type of the last solid part of the object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1662
-msgid "Select type of part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1744 src/slic3r/GUI/Tab.cpp:3070
-#: src/slic3r/GUI/Tab.cpp:3074
-msgid "The supplied name is not valid;"
-msgstr "Il nome fornito non è valido;"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1745 src/slic3r/GUI/Tab.cpp:3071
-msgid "the following characters are not allowed:"
-msgstr "i seguenti caratteri non sono permessi:"
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:21
-msgid "Object Manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:132
-msgid "Object name"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252
-msgid "Position"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:205
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253
-msgid "Rotation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254
-msgid "Scale factors"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:321
-msgid "Translate"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_Preview.cpp:235
-msgid "View"
-msgstr "Vista"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/GUI_Preview.cpp:550
-#: src/libslic3r/GCode/PreviewData.cpp:394
-msgid "Feature type"
-msgstr "Tipo di caratteristica"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/PrintConfig.cpp:443
-msgid "Height"
-msgstr "Altezza"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/PrintConfig.cpp:2255
-msgid "Width"
-msgstr "Larghezza"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:242
-msgid "Volumetric flow rate"
-msgstr "Portata volumetrica"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:243 src/slic3r/GUI/GUI_Preview.cpp:347
-#: src/slic3r/GUI/GUI_Preview.cpp:496 src/slic3r/GUI/GUI_Preview.cpp:718
-#: src/libslic3r/GCode/PreviewData.cpp:404
-msgid "Tool"
-msgstr "Strumento"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:244 src/slic3r/GUI/GUI_Preview.cpp:550
-#: src/libslic3r/GCode/PreviewData.cpp:406
-msgid "Color Print"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_Preview.cpp:247
-msgid "Show"
-msgstr "Mostra"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/GUI_Preview.cpp:251
-msgid "Feature types"
-msgstr "Tipi di caratteristica"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/GCode/PreviewData.cpp:163
-msgid "Perimeter"
-msgstr "Perimetro"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:254 src/libslic3r/GCode/PreviewData.cpp:164
-msgid "External perimeter"
-msgstr "Perimetro esterno"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/GCode/PreviewData.cpp:165
-msgid "Overhang perimeter"
-msgstr "Perimetro sporgente"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:256 src/libslic3r/GCode/PreviewData.cpp:166
-msgid "Internal infill"
-msgstr "Riempimento interno"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:257 src/libslic3r/PrintConfig.cpp:1764
-#: src/libslic3r/PrintConfig.cpp:1775 src/libslic3r/GCode/PreviewData.cpp:167
-msgid "Solid infill"
-msgstr "Riempimento solido"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:258 src/libslic3r/PrintConfig.cpp:2123
-#: src/libslic3r/PrintConfig.cpp:2135 src/libslic3r/GCode/PreviewData.cpp:168
-msgid "Top solid infill"
-msgstr "Riempimento solido superiore"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:259 src/libslic3r/GCode/PreviewData.cpp:169
-msgid "Bridge infill"
-msgstr "Riempimento Bridge"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:260 src/libslic3r/PrintConfig.cpp:880
-#: src/libslic3r/GCode/PreviewData.cpp:170
-msgid "Gap fill"
-msgstr "Riempimento spazi"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:261 src/slic3r/GUI/Tab.cpp:971
-#: src/libslic3r/GCode/PreviewData.cpp:171
-msgid "Skirt"
-msgstr "Skirt"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:263 src/libslic3r/PrintConfig.cpp:2002
-#: src/libslic3r/GCode/PreviewData.cpp:173
-msgid "Support material interface"
-msgstr "Interfaccia materiale supporto"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:264 src/slic3r/GUI/Tab.cpp:1049
-#: src/libslic3r/GCode/PreviewData.cpp:174
-msgid "Wipe tower"
-msgstr "Torre di spurgo"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:269 src/libslic3r/PrintConfig.cpp:2158
-msgid "Travel"
-msgstr "Spostamento"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:270
-msgid "Retractions"
-msgstr "Retrazioni"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:271
-msgid "Unretractions"
-msgstr "Non retrazioni"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:272
-msgid "Shells"
-msgstr "Gusci"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:12
-msgid "Slic3r Prusa Edition - Keyboard Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:47
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:126
-msgid "Main Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:101
-msgid "Open project STL/OBJ/AMF/3MF with config, delete bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:102
-msgid "Import STL/OBJ/AMF/3MF without config, keep bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:103
-msgid "Load Config from .ini/amf/3mf/gcode"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:104 src/slic3r/GUI/Plater.cpp:605
-msgid "Export G-code"
-msgstr "Esporta G-code"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:105
-msgid "Save project (3MF)"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:106
-msgid "Load Config from .ini/amf/3mf/gcode and merge"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:107
-msgid "(Re)slice"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:108
-msgid "Quick slice"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 src/slic3r/GUI/MainFrame.cpp:289
-msgid "Repeat last quick slice"
-msgstr "Ripeti l'ultimo slice veloce"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:110
-msgid "Select Plater Tab"
-msgstr "Seleziona Scheda Piano"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:111
-msgid "Quick slice and Save as"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:112
-msgid "Select Print Settings Tab"
-msgstr "Seleziona Scheda impostazioni di Stampa"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:113
-msgid "Select Filament Settings Tab"
-msgstr "Seleziona Scheda Impostazioni Filamento"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:114
-msgid "Select Printer Settings Tab"
-msgstr "Seleziona Scheda Impostazioni Stampante"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:115
-msgid "Switch to 3D"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:116
-msgid "Switch to Preview"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 src/slic3r/GUI/Preferences.cpp:10
-msgid "Preferences"
-msgstr "Preferenze"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:118
-#: src/slic3r/GUI/PrintHostDialogs.cpp:89
-msgid "Print host upload queue"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:119
-msgid "Camera view "
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:120
-msgid "Add Instance to selected object "
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:121
-msgid "Remove Instance from selected object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:122
-msgid "Show keyboard shortcuts list"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:123
-msgid "Switch between 3D and Preview"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:124
-msgid "Select multiple object/Move multiple object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:132
-msgid "Arrange"
-msgstr "Ordina"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:133
-msgid "Select All objects"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:134
-msgid "Delete selected"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:135
-msgid "Delete All"
-msgstr "Cancella tutto"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:136
-msgid "Gizmo move"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:137
-msgid "Gizmo scale"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:138
-msgid "Gizmo rotate"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:139
-msgid "Gizmo cut"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:140
-msgid "Gizmo Place face on bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:141
-msgid "Gizmo SLA support points"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:142
-msgid "Zoom to Bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:143
-msgid "Zoom to all objects in scene, if none selected"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:144
-msgid "Zoom to selected object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:145
-msgid "Zoom in"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:146
-msgid "Zoom out"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:147
-msgid "Unselect gizmo, keep object selection"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:149
-msgid "Plater Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
-msgid "Arrow Up"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
-msgid "Upper Layer"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
-msgid "Arrow Down"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
-msgid "Lower Layer"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:158
-msgid "Preview Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:53
-msgid ""
-" - Remember to check for updates at http://github.com/prusa3d/slic3r/releases"
-msgstr ""
-" - Ricorda di controllare gli aggiornamenti su http://github.com/prusa3d/"
-"slic3r/releases"
-
-#: src/slic3r/GUI/MainFrame.cpp:130
-msgid "Plater"
-msgstr "Piano"
-
-#: src/slic3r/GUI/MainFrame.cpp:236
-msgid "&Open"
-msgstr "&Apri"
-
-#: src/slic3r/GUI/MainFrame.cpp:236
-msgid "Open a project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:238
-msgid "&Save"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:238
-msgid "Save current project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:240
-msgid "Save &as"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:240
-msgid "Save current project file as"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:246
-msgid "Import STL/OBJ/AM&F/3MF"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:246
-msgid "Load a model"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:249
-msgid "Import &Config"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:249
-msgid "Load exported configuration file"
-msgstr "Carica un file di configurazione esportato"
-
-#: src/slic3r/GUI/MainFrame.cpp:251
-msgid "Import Config from &project"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:251
-msgid "Load configuration from project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:254
-msgid "Import Config &Bundle"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:254
-msgid "Load presets from a bundle"
-msgstr "Carica i preset da un gruppo"
-
-#: src/slic3r/GUI/MainFrame.cpp:256
-msgid "&Import"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:259
-msgid "Export &G-code"
-msgstr "Esporta &G-code"
-
-#: src/slic3r/GUI/MainFrame.cpp:259
-msgid "Export current plate as G-code"
-msgstr "Esporta il piano corrente come G-code"
-
-#: src/slic3r/GUI/MainFrame.cpp:262
-msgid "Export plate as &STL"
-msgstr "Esporta piano come &STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:262
-msgid "Export current plate as STL"
-msgstr "Esporta il piano corrente come STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:264
-msgid "Export plate as &AMF"
-msgstr "Esporta piano come &AMF"
-
-#: src/slic3r/GUI/MainFrame.cpp:264
-msgid "Export current plate as AMF"
-msgstr "Esporta il piano corrente come AMF"
-
-#: src/slic3r/GUI/MainFrame.cpp:267
-msgid "Export &Config"
-msgstr "Esporta &Configurazione"
-
-#: src/slic3r/GUI/MainFrame.cpp:267
-msgid "Export current configuration to file"
-msgstr "Esporta la configurazione corrente su file"
-
-#: src/slic3r/GUI/MainFrame.cpp:269
-msgid "Export Config &Bundle"
-msgstr "Esporta G&ruppo di Configurazioni"
-
-#: src/slic3r/GUI/MainFrame.cpp:269
-msgid "Export all presets to file"
-msgstr "Esporta tutti i preset su file"
-
-#: src/slic3r/GUI/MainFrame.cpp:271
-msgid "&Export"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:277
-msgid "Quick Slice"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:277
-msgid "Slice a file into a G-code"
-msgstr "Processa un file in G-code"
-
-#: src/slic3r/GUI/MainFrame.cpp:283
-msgid "Quick Slice and Save As"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:283
-msgid "Slice a file into a G-code, save as"
-msgstr "Processa un file in G-code, salva come"
-
-#: src/slic3r/GUI/MainFrame.cpp:289
-msgid "Repeat Last Quick Slice"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:297
-msgid "(Re)Slice &Now"
-msgstr "(Re)Slice &Ora"
-
-#: src/slic3r/GUI/MainFrame.cpp:297
-msgid "Start new slicing process"
-msgstr "Inizia un nuovo processo di slicing"
-
-#: src/slic3r/GUI/MainFrame.cpp:300
-msgid "&Repair STL file"
-msgstr "&Ripara file STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:300
-msgid "Automatically repair an STL file"
-msgstr "Ripara automaticamente un file STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:303
-msgid "&Quit"
-msgstr "&Chiudi"
-
-#: src/slic3r/GUI/MainFrame.cpp:303
-msgid "Quit Slic3r"
-msgstr "Chiudi Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:321
-msgid "&Select all"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:321
-msgid "Selects all objects"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:324
-msgid "&Delete selected"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:324
-msgid "Deletes the current selection"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:326
-msgid "Delete &all"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:326
-msgid "Deletes all objects"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:339
-msgid "&Plater Tab"
-msgstr "Scheda &Piano"
-
-#: src/slic3r/GUI/MainFrame.cpp:339
-msgid "Show the plater"
-msgstr "Mostra il piano"
-
-#: src/slic3r/GUI/MainFrame.cpp:346
-msgid "P&rint Settings Tab"
-msgstr "Scheda impostazioni di &Stampa"
-
-#: src/slic3r/GUI/MainFrame.cpp:346
-msgid "Show the print settings"
-msgstr "Mostra impostazioni di stampa"
-
-#: src/slic3r/GUI/MainFrame.cpp:348
-msgid "&Filament Settings Tab"
-msgstr "Scheda Impostazioni &Filamento"
-
-#: src/slic3r/GUI/MainFrame.cpp:348
-msgid "Show the filament settings"
-msgstr "Mostra impostazioni filamento"
-
-#: src/slic3r/GUI/MainFrame.cpp:350
-msgid "Print&er Settings Tab"
-msgstr "Scheda Impostazioni Stampant&e"
-
-#: src/slic3r/GUI/MainFrame.cpp:350
-msgid "Show the printer settings"
-msgstr "Mostra impostazioni della stampante"
-
-#: src/slic3r/GUI/MainFrame.cpp:354
-msgid "3&D"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:354
-msgid "Show the 3D editing view"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:356
-msgid "Pre&view"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:356
-msgid "Show the 3D slices preview"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:377
-msgid "Print &Host Upload Queue"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:377
-msgid "Display the Print Host Upload Queue window"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "&Iso"
-msgstr "&Iso"
-
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "Iso View"
-msgstr "Vista isometrica"
-
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "&Top"
-msgstr "S&uperiore"
-
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "Top View"
-msgstr "Vista superiore"
-
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "&Bottom"
-msgstr "I&nferiore"
-
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "Bottom View"
-msgstr "Vista inferiore"
-
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "&Front"
-msgstr "&Frontale"
-
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "Front View"
-msgstr "Vista anteriore"
-
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "R&ear"
-msgstr "&Posteriore"
-
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "Rear View"
-msgstr "Vista posteriore"
-
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "&Left"
-msgstr "&Sinistra"
-
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "Left View"
-msgstr "Vista sinistra"
-
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "&Right"
-msgstr "&Destra"
-
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "Right View"
-msgstr "Vista destra"
-
-#: src/slic3r/GUI/MainFrame.cpp:409
-msgid "Prusa 3D &Drivers"
-msgstr "&Driver Prusa 3D"
-
-#: src/slic3r/GUI/MainFrame.cpp:409
-msgid "Open the Prusa3D drivers download page in your browser"
-msgstr "Apri la pagina di download dei driver Prusa3D sul tuo browser"
-
-#: src/slic3r/GUI/MainFrame.cpp:411
-msgid "Prusa Edition &Releases"
-msgstr "&Versioni Prusa Edition"
-
-#: src/slic3r/GUI/MainFrame.cpp:411
-msgid "Open the Prusa Edition releases page in your browser"
-msgstr "Apri la pagina delle versioni Prusa Edition sul tuo browser"
-
-#: src/slic3r/GUI/MainFrame.cpp:417
-msgid "Slic3r &Website"
-msgstr "Sito &web Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:417
-msgid "Open the Slic3r website in your browser"
-msgstr "Apri la pagina di Slic3r sul tuo browser"
-
-#: src/slic3r/GUI/MainFrame.cpp:419
-msgid "Slic3r &Manual"
-msgstr "&Manuale Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:419
-msgid "Open the Slic3r manual in your browser"
-msgstr "Apri il manuale di Slic3r sul tuo browser"
-
-#: src/slic3r/GUI/MainFrame.cpp:422
-msgid "System &Info"
-msgstr "&Informazioni di sistema"
-
-#: src/slic3r/GUI/MainFrame.cpp:422
-msgid "Show system information"
-msgstr "Mostra informazioni di sistema"
-
-#: src/slic3r/GUI/MainFrame.cpp:424
-msgid "Show &Configuration Folder"
-msgstr "Cartella Mostra &Configurazione"
-
-#: src/slic3r/GUI/MainFrame.cpp:424
-msgid "Show user configuration folder (datadir)"
-msgstr "Mostra cartella configurazione utente (datadir)"
-
-#: src/slic3r/GUI/MainFrame.cpp:426
-msgid "Report an I&ssue"
-msgstr "Segnala un &problema"
-
-#: src/slic3r/GUI/MainFrame.cpp:426
-msgid "Report an issue on the Slic3r Prusa Edition"
-msgstr "Segnala un problema su Slic3r Prusa Edition"
-
-#: src/slic3r/GUI/MainFrame.cpp:428
-msgid "&About Slic3r"
-msgstr "&Su Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:428
-msgid "Show about dialog"
-msgstr "Mostra la finestra di dialogo al riguardo di"
-
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "&Keyboard Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "Show the list of the keyboard shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:439
-msgid "&File"
-msgstr "&File"
-
-#: src/slic3r/GUI/MainFrame.cpp:440
-msgid "&Edit"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:441
-msgid "&Window"
-msgstr "F&inestra"
-
-#: src/slic3r/GUI/MainFrame.cpp:442
-msgid "&View"
-msgstr "&Vista"
-
-#: src/slic3r/GUI/MainFrame.cpp:445
-msgid "&Help"
-msgstr "&Aiuto"
-
-#: src/slic3r/GUI/MainFrame.cpp:472
-msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Scegli un file da processare (STL/OBJ/AMF/3MF/PRUSA):"
-
-#: src/slic3r/GUI/MainFrame.cpp:486
-msgid "No previously sliced file."
-msgstr "File non processato precedentemente."
-
-#: src/slic3r/GUI/MainFrame.cpp:487 src/slic3r/GUI/PrintHostDialogs.cpp:173
-msgid "Error"
-msgstr "Errore"
-
-#: src/slic3r/GUI/MainFrame.cpp:492
-msgid "Previously sliced file ("
-msgstr "File precedentemente processato ("
-
-#: src/slic3r/GUI/MainFrame.cpp:492
-msgid ") not found."
-msgstr ") non trovato."
-
-#: src/slic3r/GUI/MainFrame.cpp:493
-msgid "File Not Found"
-msgstr "File non trovato"
-
-#: src/slic3r/GUI/MainFrame.cpp:531 src/slic3r/GUI/Tab.cpp:3031
-msgid "Save "
-msgstr "Salva "
-
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid "SVG"
-msgstr "SVG"
-
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid "G-code"
-msgstr "G-code"
-
-# Context: L('Save ') . ($params{export_svg} ? L('SVG') : L('G-code')) . L(' file as:'), e.g. "Save G-Code file as:"
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid " file as:"
-msgstr " file come:"
-
-#: src/slic3r/GUI/MainFrame.cpp:548
-msgid "Save zip file as:"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:560
-msgid "Slicing"
-msgstr "Slicing"
-
-#: src/slic3r/GUI/MainFrame.cpp:560
-msgid "Processing "
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:583
-msgid " was successfully sliced."
-msgstr " generato con successo."
-
-#: src/slic3r/GUI/MainFrame.cpp:585
-msgid "Slicing Done!"
-msgstr "Slicing Completato!"
-
-#: src/slic3r/GUI/MainFrame.cpp:600
-msgid "Select the STL file to repair:"
-msgstr "Seleziona il file STL da riparare:"
-
-#: src/slic3r/GUI/MainFrame.cpp:614
-msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
-msgstr ""
-"Salva il file OBJ (meno soggetto a errori di coordinate dell'STL) come:"
-
-#: src/slic3r/GUI/MainFrame.cpp:629
-msgid "Your file was repaired."
-msgstr "Il file è stato riparato."
-
-#: src/slic3r/GUI/MainFrame.cpp:629
-msgid "Repair"
-msgstr "Ripara"
-
-#: src/slic3r/GUI/MainFrame.cpp:643
-msgid "Save configuration as:"
-msgstr "Salva configurazione come:"
-
-#: src/slic3r/GUI/MainFrame.cpp:663 src/slic3r/GUI/MainFrame.cpp:727
-msgid "Select configuration to load:"
-msgstr "Seleziona configurazione da caricare:"
-
-#: src/slic3r/GUI/MainFrame.cpp:700
-msgid "Save presets bundle as:"
-msgstr "Salva il gruppo di preset come:"
-
-#: src/slic3r/GUI/MainFrame.cpp:751
-#, c-format
-msgid "%d presets successfully imported."
-msgstr "%d preset importati correttamente."
-
-#: src/slic3r/GUI/MsgDialog.cpp:66
-msgid "Slic3r error"
-msgstr "Errore Slic3r"
-
-#: src/slic3r/GUI/MsgDialog.cpp:66
-msgid "Slic3r has encountered an error"
-msgstr "Slic3r ha riscontrato un errore"
-
-#: src/slic3r/GUI/MsgDialog.cpp:84
-msgid "Copy to clipboard"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:107
-msgid "Info"
-msgstr "Info"
-
-#: src/slic3r/GUI/Plater.cpp:126
-msgid "Volume"
-msgstr "Volume"
-
-#: src/slic3r/GUI/Plater.cpp:127
-msgid "Facets"
-msgstr "Facce"
-
-#: src/slic3r/GUI/Plater.cpp:128
-msgid "Materials"
-msgstr "Materiali"
-
-#: src/slic3r/GUI/Plater.cpp:131
-msgid "Manifold"
-msgstr "Manifold"
-
-#: src/slic3r/GUI/Plater.cpp:174
-msgid "Sliced Info"
-msgstr "Informazioni processo"
-
-#: src/slic3r/GUI/Plater.cpp:193 src/slic3r/GUI/Plater.cpp:823
-msgid "Used Filament (m)"
-msgstr "Filamento usato (m)"
-
-#: src/slic3r/GUI/Plater.cpp:194
-msgid "Used Filament (mm³)"
-msgstr "Filamento usato (mm³)"
-
-#: src/slic3r/GUI/Plater.cpp:195
-msgid "Used Filament (g)"
-msgstr "Filamento usato (g)"
-
-#: src/slic3r/GUI/Plater.cpp:196 src/slic3r/GUI/Plater.cpp:838
-#: src/libslic3r/PrintConfig.cpp:718
-msgid "Cost"
-msgstr "Costo"
-
-#: src/slic3r/GUI/Plater.cpp:197 src/slic3r/GUI/Plater.cpp:852
-msgid "Estimated printing time"
-msgstr "Tempo di stampa stimato"
-
-#: src/slic3r/GUI/Plater.cpp:198
-msgid "Number of tool changes"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:361
-msgid "Support"
-msgstr "Supporto"
-
-#: src/slic3r/GUI/Plater.cpp:364
-msgid "Select what kind of support do you need"
-msgstr "Seleziona il tipo di supporto richiesto"
-
-#: src/slic3r/GUI/Plater.cpp:365 src/libslic3r/GCode/PreviewData.cpp:162
-msgid "None"
-msgstr "Nessuno"
-
-#: src/slic3r/GUI/Plater.cpp:366 src/libslic3r/PrintConfig.cpp:1904
-msgid "Support on build plate only"
-msgstr "Supporti solo dal piano di stampa"
-
-#: src/slic3r/GUI/Plater.cpp:367
-msgid "Everywhere"
-msgstr "Ovunque"
-
-#: src/slic3r/GUI/Plater.cpp:379 src/slic3r/GUI/Tab.cpp:977
-msgid "Brim"
-msgstr "Brim"
-
-#: src/slic3r/GUI/Plater.cpp:381
-msgid ""
-"This flag enables the brim that will be printed around each object on the "
-"first layer."
-msgstr ""
-"La spunta su questa opzione abilita il brim che verrà stampato attorno ad "
-"ogni oggetto nel primo layer."
-
-#: src/slic3r/GUI/Plater.cpp:390
-msgid "Purging volumes"
-msgstr "Volumi di spurgo"
-
-#: src/slic3r/GUI/Plater.cpp:556
-msgid "Print settings"
-msgstr "Impostazioni di stampa"
-
-#: src/slic3r/GUI/Plater.cpp:557 src/slic3r/GUI/Tab.cpp:1380
-#: src/slic3r/GUI/Tab.cpp:1381
-msgid "Filament"
-msgstr "Filamento"
-
-#: src/slic3r/GUI/Plater.cpp:558 src/slic3r/GUI/Preset.cpp:1158
-msgid "SLA print"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:559 src/slic3r/GUI/Preset.cpp:1159
-msgid "SLA material"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:560
-msgid "Printer"
-msgstr "Stampante"
-
-#: src/slic3r/GUI/Plater.cpp:588
-msgid "Send to printer"
-msgstr "Manda alla stampante"
-
-#: src/slic3r/GUI/Plater.cpp:607
-msgid "Slice now"
-msgstr "Processa ora"
-
-#: src/slic3r/GUI/Plater.cpp:787
-#, c-format
-msgid "%d (%d shells)"
-msgstr "%d (%d di perimetri)"
-
-#: src/slic3r/GUI/Plater.cpp:792
-#, c-format
-msgid "Auto-repaired (%d errors)"
-msgstr "Auto-riparati (%d errori)"
-
-#: src/slic3r/GUI/Plater.cpp:795
-#, c-format
-msgid ""
-"%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d "
-"facets reversed, %d backwards edges"
-msgstr ""
-"%d facce degenerate, %d spigoli riparati, %d facce rimosse, %d faccee "
-"aggiunte, %d facce invertite, %d spigoli inversi"
-
-#: src/slic3r/GUI/Plater.cpp:805
-msgid "Yes"
-msgstr "Si"
-
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
-msgid "objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
-msgid "wipe tower"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:855
-msgid "normal mode"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:859
-msgid "silent mode"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1304
-msgid "Loading"
-msgstr "Caricando"
-
-#: src/slic3r/GUI/Plater.cpp:1314
-#, c-format
-msgid "Processing input file %s\n"
-msgstr "Elaborando il file di input %s\n"
-
-#: src/slic3r/GUI/Plater.cpp:1366
-msgid ""
-"This file contains several objects positioned at multiple heights. Instead "
-"of considering them as multiple objects, should I consider\n"
-"this file as a single object having multiple parts?\n"
-msgstr ""
-"Questo file contiene numerosi oggetti posizionati ad altezze multiple. "
-"Invece di considerarli come oggetti multipli, devo considerare \n"
-"questo file come un oggetto singolo con parti multiple?\n"
-
-#: src/slic3r/GUI/Plater.cpp:1369 src/slic3r/GUI/Plater.cpp:1411
-msgid "Multi-part object detected"
-msgstr "Rilevato oggetto in parti multiple"
-
-#: src/slic3r/GUI/Plater.cpp:1388
-#, c-format
-msgid ""
-"You can't to add the object(s) from %s because of one or some of them "
-"is(are) multi-part"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1408
-msgid ""
-"Multiple objects were loaded for a multi-material printer.\n"
-"Instead of considering them as multiple objects, should I consider\n"
-"these files to represent a single object having multiple parts?\n"
-msgstr ""
-"Sono stati caricati oggetti multipli per stampante multi-material.\n"
-"Invece di considerarli come oggetti multipli, devo considerarli come parte "
-"di un singolo oggetto avente parti multiple?\n"
-
-#: src/slic3r/GUI/Plater.cpp:1424
-msgid "Loaded"
-msgstr "Caricato"
-
-#: src/slic3r/GUI/Plater.cpp:1492
-msgid ""
-"Your object appears to be too large, so it was automatically scaled down to "
-"fit your print bed."
-msgstr ""
-"L'oggetto sembra essere troppo grande, è stato quindi scalato "
-"automaticamente per entrare nel piano di stampa."
-
-#: src/slic3r/GUI/Plater.cpp:1493
-msgid "Object too large?"
-msgstr "Oggetto troppo grande?"
-
-#: src/slic3r/GUI/Plater.cpp:1536
-msgid "Export print config"
-msgstr "Esporta configurazione di stampa"
-
-#: src/slic3r/GUI/Plater.cpp:1538
-msgid "Save file as:"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1702
-msgid "Arranging canceled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1705
-msgid "Arranging"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1736
-msgid "Could not arrange model objects! Some geometries may be invalid."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1740
-msgid "Arranging done."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1782
-msgid "Orientation search canceled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1787
-msgid "Searching for optimal orientation"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1797
-msgid "Orientation found."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1818
-msgid ""
-"The selected object can't be split because it contains more than one volume/"
-"material."
-msgstr ""
-"L'oggetto selezionato non può essere diviso perché contiene più di un volume/"
-"materiale."
-
-#: src/slic3r/GUI/Plater.cpp:1945 src/slic3r/GUI/PrintHostDialogs.cpp:174
-msgid "Cancelling"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1962
-msgid "Another export job is currently running."
-msgstr "Un altro processo di esportazione è in corso."
-
-#: src/slic3r/GUI/Plater.cpp:2215
-msgid "Export failed"
-msgstr "Esportazione fallita"
-
-#: src/slic3r/GUI/Plater.cpp:2219 src/slic3r/GUI/PrintHostDialogs.cpp:175
-msgid "Cancelled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2346 src/slic3r/GUI/Tab.cpp:2736
-msgid "Delete"
-msgstr "Cancella"
-
-#: src/slic3r/GUI/Plater.cpp:2346
-msgid "Remove the selected object"
-msgstr "Rimuovi l'oggetto selezionato"
-
-#: src/slic3r/GUI/Plater.cpp:2349
-msgid "Increase copies"
-msgstr "Aumenta copie"
-
-#: src/slic3r/GUI/Plater.cpp:2349
-msgid "Place one more copy of the selected object"
-msgstr "Posiziona una o più copie dell'oggetto selezionato"
-
-#: src/slic3r/GUI/Plater.cpp:2351
-msgid "Decrease copies"
-msgstr "Diminuisci le copie"
-
-#: src/slic3r/GUI/Plater.cpp:2351
-msgid "Remove one copy of the selected object"
-msgstr "Rimuovi una copia dell'oggetto selezionato"
-
-#: src/slic3r/GUI/Plater.cpp:2353
-msgid "Set number of copies"
-msgstr "Imposta numero delle copie"
-
-#: src/slic3r/GUI/Plater.cpp:2353
-msgid "Change the number of copies of the selected object"
-msgstr "Cambia il numero di copie dell'oggetto selezionato"
-
-#: src/slic3r/GUI/Plater.cpp:2363
-msgid "Reload from Disk"
-msgstr "Ricarica da Disco"
-
-#: src/slic3r/GUI/Plater.cpp:2363
-msgid "Reload the selected file from Disk"
-msgstr "Ricarica il file selezionato dal Disco"
-
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export object as STL"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export this single object as STL file"
-msgstr "Esporta questo singolo oggetto come file STL"
-
-#: src/slic3r/GUI/Plater.cpp:2375
-msgid "Along X axis"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2375
-msgid "Mirror the selected object along the X axis"
-msgstr "Specchia l'oggetto selezionato sull'asse X"
-
-#: src/slic3r/GUI/Plater.cpp:2377
-msgid "Along Y axis"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2377
-msgid "Mirror the selected object along the Y axis"
-msgstr "Specchia l'oggetto selezionato sull'asse y"
-
-#: src/slic3r/GUI/Plater.cpp:2379
-msgid "Along Z axis"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2379
-msgid "Mirror the selected object along the Z axis"
-msgstr "Specchia l'oggetto selezionato sull'asse Z"
-
-#: src/slic3r/GUI/Plater.cpp:2382
-msgid "Mirror"
-msgstr "Specchia"
-
-#: src/slic3r/GUI/Plater.cpp:2382
-msgid "Mirror the selected object"
-msgstr "Specchia l'oggetto selezionato"
-
-#: src/slic3r/GUI/Plater.cpp:2400
-msgid "To objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2400 src/slic3r/GUI/Plater.cpp:2431
-msgid "Split the selected object into individual objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2402
-msgid "To parts"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2402 src/slic3r/GUI/Plater.cpp:2451
-msgid "Split the selected object into individual sub-parts"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2405 src/slic3r/GUI/Plater.cpp:2431
-#: src/slic3r/GUI/Plater.cpp:2451
-msgid "Split"
-msgstr "Dividi"
-
-#: src/slic3r/GUI/Plater.cpp:2405
-msgid "Split the selected object"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2435
-msgid "Optimize orientation"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2435
-msgid "Optimize the rotation of the object for better print results."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2795
-msgid "Save G-code file as:"
-msgstr "Salva il file G-code come:"
-
-#: src/slic3r/GUI/Plater.cpp:2795
-msgid "Save Zip file as:"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2845
-#, c-format
-msgid "STL file exported to %s"
-msgstr "File STL esportato a %s"
-
-#: src/slic3r/GUI/Plater.cpp:2861
-#, c-format
-msgid "AMF file exported to %s"
-msgstr "File AMF esportato a %s"
-
-#: src/slic3r/GUI/Plater.cpp:2864
-#, c-format
-msgid "Error exporting AMF file %s"
-msgstr "Errore nell'esportazione del file AMF %s"
-
-#: src/slic3r/GUI/Plater.cpp:2891
-#, c-format
-msgid "3MF file exported to %s"
-msgstr "File 3MF esportato a %s"
-
-#: src/slic3r/GUI/Plater.cpp:2894
-#, c-format
-msgid "Error exporting 3MF file %s"
-msgstr "Errore nell'esportazione del file 3MF %s"
-
-#: src/slic3r/GUI/Preferences.cpp:17 src/slic3r/GUI/Tab.cpp:1712
-#: src/slic3r/GUI/Tab.cpp:1911
-msgid "General"
-msgstr "Generale"
-
-#: src/slic3r/GUI/Preferences.cpp:34
-msgid "Remember output directory"
-msgstr "Ricorda la directory di output"
-
-#: src/slic3r/GUI/Preferences.cpp:36
-msgid ""
-"If this is enabled, Slic3r will prompt the last output directory instead of "
-"the one containing the input files."
-msgstr ""
-"Se attivo, Slic3r suggerirà l'ultima cartella di destinazione invece della "
-"cartella contenente il file di ricezione."
-
-#: src/slic3r/GUI/Preferences.cpp:42
-msgid "Auto-center parts"
-msgstr "Auto-centra le parti"
-
-#: src/slic3r/GUI/Preferences.cpp:44
-msgid ""
-"If this is enabled, Slic3r will auto-center objects around the print bed "
-"center."
-msgstr ""
-"Se attivo, Slic3r posizionerà automaticamente gli oggetti al centro del "
-"piano di stampa."
-
-#: src/slic3r/GUI/Preferences.cpp:50
-msgid "Background processing"
-msgstr "Lavorazione in background"
-
-#: src/slic3r/GUI/Preferences.cpp:52
-msgid ""
-"If this is enabled, Slic3r will pre-process objects as soon as they're "
-"loaded in order to save time when exporting G-code."
-msgstr ""
-"Se attivo, Slic3r processerà in anticipo gli oggetti non appena saranno "
-"caricati, così da risparmiare tempo durante l'esportazione del G-code."
-
-#: src/slic3r/GUI/Preferences.cpp:74
-msgid "Suppress \" - default - \" presets"
-msgstr "Sopprimi preset \" - default - \""
-
-#: src/slic3r/GUI/Preferences.cpp:76
-msgid ""
-"Suppress \" - default - \" presets in the Print / Filament / Printer "
-"selections once there are any other valid presets available."
-msgstr ""
-"Sopprimi i preset \" - default - \" nelle selezioni Stampa / Filamento / "
-"Stampante non appena sono disponibili altri preset validi."
-
-#: src/slic3r/GUI/Preferences.cpp:82
-msgid "Show incompatible print and filament presets"
-msgstr "Mostra preset di stampa e di filamento incompatibili"
-
-#: src/slic3r/GUI/Preferences.cpp:84
-msgid ""
-"When checked, the print and filament presets are shown in the preset editor "
-"even if they are marked as incompatible with the active printer"
-msgstr ""
-"Quando attivato, i preset di stampa e di filamento vengono mostrati "
-"nell'editor dei preset anche se sono segnati come incompatibili con la "
-"stampante attiva"
-
-#: src/slic3r/GUI/Preferences.cpp:90
-msgid "Use legacy OpenGL 1.1 rendering"
-msgstr "Utilizza il rendering legacy di OpenGL 1.1"
-
-#: src/slic3r/GUI/Preferences.cpp:92
-msgid ""
-"If you have rendering issues caused by a buggy OpenGL 2.0 driver, you may "
-"try to check this checkbox. This will disable the layer height editing and "
-"anti aliasing, so it is likely better to upgrade your graphics driver."
-msgstr ""
-"Se hai problemi nel rendering causati da bug nel driver OpenGL 2.0, puoi "
-"provare ad attivare questa opzione. Si disattiverà la modifica altezza layer "
-"e l'anti-aliasing, quindi è meglio aggiornare i driver grafici."
-
-#: src/slic3r/GUI/Preferences.cpp:115
-msgid "You need to restart Slic3r to make the changes effective."
-msgstr "E' necessario riavviare Slic3r per rendere effettive le modifiche."
-
-#: src/slic3r/GUI/Preset.cpp:170
-msgid "modified"
-msgstr ""
-
-#: src/slic3r/GUI/Preset.cpp:862 src/slic3r/GUI/Preset.cpp:902
-#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:962
-#: src/slic3r/GUI/PresetBundle.cpp:1459 src/slic3r/GUI/PresetBundle.cpp:1512
-msgid "System presets"
-msgstr "Preset di sistema"
-
-#: src/slic3r/GUI/Preset.cpp:906 src/slic3r/GUI/Preset.cpp:966
-#: src/slic3r/GUI/PresetBundle.cpp:1517
-msgid "User presets"
-msgstr "Preset utente"
-
-#: src/slic3r/GUI/Preset.cpp:1157
-msgid "filament"
-msgstr ""
-
-#: src/slic3r/GUI/PresetHints.cpp:28
-#, c-format
-msgid ""
-"If estimated layer time is below ~%ds, fan will run at %d%% and print speed "
-"will be reduced so that no less than %ds are spent on that layer (however, "
-"speed will never be reduced below %dmm/s)."
-msgstr ""
-"Se il tempo previsto per il layer è inferiore a ~%ds, la ventola girerà al %d"
-"%% e la velocità di stampa sarà ridotta così da impiegare non meno di %ds su "
-"quel layer (in ogni caso, la velocità non sarà mai ridotta sotto %dmm/s)."
-
-#: src/slic3r/GUI/PresetHints.cpp:32
-#, c-format
-msgid ""
-"\n"
-"If estimated layer time is greater, but still below ~%ds, fan will run at a "
-"proportionally decreasing speed between %d%% and %d%%."
-msgstr ""
-"\n"
-"Se il tempo di stampa previsto per il layer è più lungo, ma comunque "
-"inferiore a ~%ds, la ventola girerà ad una velocità proporzionalmente "
-"decrescente compresa tra %d%% e %d%%."
-
-#: src/slic3r/GUI/PresetHints.cpp:36
-msgid ""
-"\n"
-"During the other layers, fan "
-msgstr ""
-"\n"
-"Durante gli altri layer, la ventola "
-
-#: src/slic3r/GUI/PresetHints.cpp:38
-msgid "Fan "
-msgstr "Ventola "
-
-#: src/slic3r/GUI/PresetHints.cpp:43
-#, c-format
-msgid "will always run at %d%% "
-msgstr "lavorerà sempre a %d%% "
-
-#: src/slic3r/GUI/PresetHints.cpp:46
-#, c-format
-msgid "except for the first %d layers"
-msgstr "ad eccezione dei primi %d layers"
-
-#: src/slic3r/GUI/PresetHints.cpp:50
-msgid "except for the first layer"
-msgstr "ad eccezione del primo layer"
-
-#: src/slic3r/GUI/PresetHints.cpp:52
-msgid "will be turned off."
-msgstr "verrà spento."
-
-#: src/slic3r/GUI/PresetHints.cpp:153
-msgid "external perimeters"
-msgstr "perimetri esterni"
-
-#: src/slic3r/GUI/PresetHints.cpp:162
-msgid "perimeters"
-msgstr "perimetri"
-
-#: src/slic3r/GUI/PresetHints.cpp:171
-msgid "infill"
-msgstr "riempimento"
-
-#: src/slic3r/GUI/PresetHints.cpp:181
-msgid "solid infill"
-msgstr "riempimento solido"
-
-#: src/slic3r/GUI/PresetHints.cpp:189
-msgid "top solid infill"
-msgstr "riempimento solido superiore"
-
-#: src/slic3r/GUI/PresetHints.cpp:200
-msgid "support"
-msgstr "supporto"
-
-#: src/slic3r/GUI/PresetHints.cpp:210
-msgid "support interface"
-msgstr "interfaccia supporto"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "First layer volumetric"
-msgstr "Volumetrica primo strato"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "Bridging volumetric"
-msgstr "Ponteggio volumetrico"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "Volumetric"
-msgstr "Volumetrico"
-
-#: src/slic3r/GUI/PresetHints.cpp:217
-msgid " flow rate is maximized "
-msgstr " Il flusso viene massimizzato "
-
-#: src/slic3r/GUI/PresetHints.cpp:220
-msgid "by the print profile maximum"
-msgstr "secondo il massimo del profilo di stampa"
-
-#: src/slic3r/GUI/PresetHints.cpp:221
-msgid "when printing "
-msgstr "durante la stampa "
-
-#: src/slic3r/GUI/PresetHints.cpp:222
-msgid " with a volumetric rate "
-msgstr " con una portata volumetrica "
-
-#: src/slic3r/GUI/PresetHints.cpp:226
-#, c-format
-msgid "%3.2f mm³/s"
-msgstr "%3.2f mm³/s"
-
-#: src/slic3r/GUI/PresetHints.cpp:228
-#, c-format
-msgid " at filament speed %3.2f mm/s."
-msgstr " alla velocità del filamento di %3.2f mm/s."
-
-#: src/slic3r/GUI/PresetHints.cpp:247
-msgid ""
-"Recommended object thin wall thickness: Not available due to invalid layer "
-"height."
-msgstr ""
-"Spessore raccomandato per oggetto con parete sottile: Non disponibile a "
-"causa di un'altezza layer non valida."
-
-#: src/slic3r/GUI/PresetHints.cpp:264
-#, c-format
-msgid "Recommended object thin wall thickness for layer height %.2f and "
-msgstr ""
-"Spessore raccomandato per oggetto con parete sottile per altezza layer %.2f "
-"e "
-
-#: src/slic3r/GUI/PresetHints.cpp:271
-#, c-format
-msgid "%d lines: %.2lf mm"
-msgstr "%d linee: %.2lf mm"
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
-msgid "Send G-Code to printer host"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
-msgid "Upload to Printer Host with the following filename:"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:31
-msgid "Start printing after upload"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:33
-msgid "Use forward slashes ( / ) as a directory separator if needed."
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:111
-msgid "Cancel selected"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:113
-msgid "Show error message"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:115
-msgid "Close"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:152
-#: src/slic3r/GUI/PrintHostDialogs.cpp:171
-msgid "Enqueued"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:172
-msgid "Uploading"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:176
-msgid "Completed"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:214
-msgid "Error uploading to print host:"
-msgstr ""
-
-#: src/slic3r/GUI/RammingChart.cpp:23
-msgid "NO RAMMING AT ALL"
-msgstr "NESSUN RAMMING"
-
-#: src/slic3r/GUI/RammingChart.cpp:76
-msgid "Time"
-msgstr "Tempo"
-
-#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78 src/libslic3r/PrintConfig.cpp:603
-#: src/libslic3r/PrintConfig.cpp:653 src/libslic3r/PrintConfig.cpp:670
-#: src/libslic3r/PrintConfig.cpp:2352 src/libslic3r/PrintConfig.cpp:2360
-#: src/libslic3r/PrintConfig.cpp:2432 src/libslic3r/PrintConfig.cpp:2440
-msgid "s"
-msgstr "s"
-
-#: src/slic3r/GUI/RammingChart.cpp:81
-msgid "Volumetric speed"
-msgstr "Velocità volumetrica"
-
-#: src/slic3r/GUI/SysInfoDialog.cpp:40
-msgid "Slic3r Prusa Edition - System Information"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:49 src/libslic3r/PrintConfig.cpp:202
-msgid "Compatible printers"
-msgstr "Stampanti compatibili"
-
-#: src/slic3r/GUI/Tab.cpp:50
-msgid "Select the printers this profile is compatible with."
-msgstr "Seleziona le stampanti compatibili con questo profilo."
-
-#: src/slic3r/GUI/Tab.cpp:55 src/libslic3r/PrintConfig.cpp:215
-msgid "Compatible print profiles"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:56
-msgid "Select the print profiles this profile is compatible with."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:118
-msgid "Save current "
-msgstr "Salva attuale "
-
-#: src/slic3r/GUI/Tab.cpp:119
-msgid "Delete this preset"
-msgstr "Cancella questo preset"
-
-#: src/slic3r/GUI/Tab.cpp:131
-msgid ""
-"Hover the cursor over buttons to find more information \n"
-"or click this button."
-msgstr ""
-"Scorri il cursore sui bottoni per ottenere maggiori informazioni o clicca su "
-"questo bottone."
-
-#: src/slic3r/GUI/Tab.cpp:824
-msgid "It's a default preset."
-msgstr "E' un preset preimpostato."
-
-#: src/slic3r/GUI/Tab.cpp:825
-msgid "It's a system preset."
-msgstr "E' un preset di sistema."
-
-#: src/slic3r/GUI/Tab.cpp:826
-msgid "Current preset is inherited from "
-msgstr "Il preset corrente è ereditato da "
-
-#: src/slic3r/GUI/Tab.cpp:831
-msgid "It can't be deleted or modified. "
-msgstr "Non può essere eliminato o modificato. "
-
-#: src/slic3r/GUI/Tab.cpp:832
-msgid ""
-"Any modifications should be saved as a new preset inherited from this one. "
-msgstr ""
-"Qualunque modifica dovrebbe essere salvata come un nuovo preset ereditato da "
-"questo. "
-
-#: src/slic3r/GUI/Tab.cpp:833
-msgid "To do that please specify a new name for the preset."
-msgstr ""
-"Per favore specifica un nuovo nome per il preset per effettuare l'operazione."
-
-#: src/slic3r/GUI/Tab.cpp:837
-msgid "Additional information:"
-msgstr "Informazioni aggiuntive:"
-
-#: src/slic3r/GUI/Tab.cpp:843
-msgid "printer model"
-msgstr "modello stampante"
-
-#: src/slic3r/GUI/Tab.cpp:851
-msgid "default print profile"
-msgstr "profilo di stampa predefinito"
-
-#: src/slic3r/GUI/Tab.cpp:854
-msgid "default filament profile"
-msgstr "profilo filamento predefinito"
-
-#: src/slic3r/GUI/Tab.cpp:868
-msgid "default SLA material profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:872
-msgid "default SLA print profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:919 src/slic3r/GUI/Tab.cpp:3174
-msgid "Layers and perimeters"
-msgstr "Layer e perimetri"
-
-#: src/slic3r/GUI/Tab.cpp:920 src/libslic3r/PrintConfig.cpp:46
-msgid "Layer height"
-msgstr "Altezza layer"
-
-#: src/slic3r/GUI/Tab.cpp:924
-msgid "Vertical shells"
-msgstr "Gusci verticali"
-
-#: src/slic3r/GUI/Tab.cpp:935
-msgid "Horizontal shells"
-msgstr "Gusci orizzontali"
-
-#: src/slic3r/GUI/Tab.cpp:936 src/libslic3r/PrintConfig.cpp:1788
-msgid "Solid layers"
-msgstr "Layer solidi"
-
-#: src/slic3r/GUI/Tab.cpp:941
-msgid "Quality (slower slicing)"
-msgstr "Qualità (slicing più lento)"
-
-#: src/slic3r/GUI/Tab.cpp:958
-msgid "Reducing printing time"
-msgstr "Ridurre tempo di stampa"
-
-#: src/slic3r/GUI/Tab.cpp:970
-msgid "Skirt and brim"
-msgstr "Skirt e brim"
-
-#: src/slic3r/GUI/Tab.cpp:987
-msgid "Raft"
-msgstr "Raft"
-
-#: src/slic3r/GUI/Tab.cpp:991
-msgid "Options for support material and raft"
-msgstr "Opzioni per materiale di supporto e raft"
-
-#: src/slic3r/GUI/Tab.cpp:1006
-msgid "Speed for print moves"
-msgstr "Velocità per i movimenti di stampa"
-
-#: src/slic3r/GUI/Tab.cpp:1018
-msgid "Speed for non-print moves"
-msgstr "Velocità per i movimenti non di stampa"
-
-#: src/slic3r/GUI/Tab.cpp:1021
-msgid "Modifiers"
-msgstr "Modificatori"
-
-#: src/slic3r/GUI/Tab.cpp:1024
-msgid "Acceleration control (advanced)"
-msgstr "Controllo Accelerazione (avanzato)"
-
-#: src/slic3r/GUI/Tab.cpp:1031
-msgid "Autospeed (advanced)"
-msgstr "Autovelocità (avanzato)"
-
-#: src/slic3r/GUI/Tab.cpp:1037
-msgid "Multiple Extruders"
-msgstr "Estrusori multipli"
-
-#: src/slic3r/GUI/Tab.cpp:1045
-msgid "Ooze prevention"
-msgstr "Prevenzione delle fuoriuscite"
-
-#: src/slic3r/GUI/Tab.cpp:1062
-msgid "Extrusion width"
-msgstr "Larghezza estrusione"
-
-#: src/slic3r/GUI/Tab.cpp:1072
-msgid "Overlap"
-msgstr "Sovrapposizione"
-
-#: src/slic3r/GUI/Tab.cpp:1075
-msgid "Flow"
-msgstr "Flusso"
-
-#: src/slic3r/GUI/Tab.cpp:1078
-msgid "Other"
-msgstr "Altro"
-
-#: src/slic3r/GUI/Tab.cpp:1085 src/slic3r/GUI/Tab.cpp:3213
-msgid "Output options"
-msgstr "Opzioni Output"
-
-#: src/slic3r/GUI/Tab.cpp:1086
-msgid "Sequential printing"
-msgstr "Stampa sequenziale"
-
-#: src/slic3r/GUI/Tab.cpp:1088
-msgid "Extruder clearance (mm)"
-msgstr "Spazio libero per l'estrusore (mm)"
-
-#: src/slic3r/GUI/Tab.cpp:1097 src/slic3r/GUI/Tab.cpp:3214
-msgid "Output file"
-msgstr "File di Output"
-
-#: src/slic3r/GUI/Tab.cpp:1103 src/libslic3r/PrintConfig.cpp:1438
-msgid "Post-processing scripts"
-msgstr "Script di post produzione"
-
-#: src/slic3r/GUI/Tab.cpp:1109 src/slic3r/GUI/Tab.cpp:1110
-#: src/slic3r/GUI/Tab.cpp:1483 src/slic3r/GUI/Tab.cpp:1484
-#: src/slic3r/GUI/Tab.cpp:1883 src/slic3r/GUI/Tab.cpp:1884
-#: src/slic3r/GUI/Tab.cpp:1964 src/slic3r/GUI/Tab.cpp:1965
-#: src/slic3r/GUI/Tab.cpp:3119 src/slic3r/GUI/Tab.cpp:3120
-msgid "Notes"
-msgstr "Note"
-
-#: src/slic3r/GUI/Tab.cpp:1116 src/slic3r/GUI/Tab.cpp:1491
-#: src/slic3r/GUI/Tab.cpp:1890 src/slic3r/GUI/Tab.cpp:1971
-#: src/slic3r/GUI/Tab.cpp:3127 src/slic3r/GUI/Tab.cpp:3219
-msgid "Dependencies"
-msgstr "Dipendenze"
-
-#: src/slic3r/GUI/Tab.cpp:1117 src/slic3r/GUI/Tab.cpp:1492
-#: src/slic3r/GUI/Tab.cpp:1891 src/slic3r/GUI/Tab.cpp:1972
-#: src/slic3r/GUI/Tab.cpp:3128 src/slic3r/GUI/Tab.cpp:3220
-msgid "Profile dependencies"
-msgstr "Dipendenze profilo"
-
-#: src/slic3r/GUI/Tab.cpp:1161
-#, no-c-format
-msgid ""
-"The Spiral Vase mode requires:\n"
-"- one perimeter\n"
-"- no top solid layers\n"
-"- 0% fill density\n"
-"- no support material\n"
-"- no ensure_vertical_shell_thickness\n"
-"\n"
-"Shall I adjust those settings in order to enable Spiral Vase?"
-msgstr ""
-"La modalità Vaso a Spirale richiede:\n"
-"- un perimetro\n"
-"- assenza di layer solidi superiori\n"
-"- densità riempimento 0%\n"
-"- assenza di materiale di supporto\n"
-"- assicura_spessore_ guscio_ verticale disattivato\n"
-"\n"
-"Posso regolare queste impostazioni così da attivare il Vaso a Spirale?"
-
-#: src/slic3r/GUI/Tab.cpp:1168
-msgid "Spiral Vase"
-msgstr "Vaso a Spirale"
-
-#: src/slic3r/GUI/Tab.cpp:1191
-msgid ""
-"The Wipe Tower currently supports the non-soluble supports only\n"
-"if they are printed with the current extruder without triggering a tool "
-"change.\n"
-"(both support_material_extruder and support_material_interface_extruder need "
-"to be set to 0).\n"
-"\n"
-"Shall I adjust those settings in order to enable the Wipe Tower?"
-msgstr ""
-"La Torre di Spurgo attualmente supporta solamente supporti non solubili\n"
-"se questi sono stampati con l'attuale estrusore senza attivare un cambio "
-"d'attrezzo.\n"
-"(entrambi support_material_extruder e support_material_interface_extruder "
-"devono essere impostati a 0).\n"
-"\n"
-"Devo regolare queste impostazioni per abilitare la Torre di Spurgo?"
-
-#: src/slic3r/GUI/Tab.cpp:1195 src/slic3r/GUI/Tab.cpp:1212
-msgid "Wipe Tower"
-msgstr "Torre di Spurgo"
-
-#: src/slic3r/GUI/Tab.cpp:1209
-msgid ""
-"For the Wipe Tower to work with the soluble supports, the support layers\n"
-"need to be synchronized with the object layers.\n"
-"\n"
-"Shall I synchronize support layers in order to enable the Wipe Tower?"
-msgstr ""
-"Perché la Wipe Tower possa funzionare con i supporti solubili, gli strati "
-"dei supporti devono essere sincronizzati con quelli del modello.\n"
-"\n"
-"Sincronizzare i supporti per abilitare la Wipe Tower?"
-
-#: src/slic3r/GUI/Tab.cpp:1227
-msgid ""
-"Supports work better, if the following feature is enabled:\n"
-"- Detect bridging perimeters\n"
-"\n"
-"Shall I adjust those settings for supports?"
-msgstr ""
-"I supporti hanno più successo se l'opzione seguente è attivata:\n"
-"-Rileva i perimetri in bridging\n"
-"\n"
-"Adattare questa opzione ai supporti?"
-
-#: src/slic3r/GUI/Tab.cpp:1230
-msgid "Support Generator"
-msgstr "Generatore Supporto"
-
-# Used in context: _("The ") + str_fill_pattern + _(" infill pattern is not supposed to work at 100% density.\n")
-#: src/slic3r/GUI/Tab.cpp:1272
-msgid "The "
-msgstr "Il "
-
-#: src/slic3r/GUI/Tab.cpp:1272
-#, no-c-format
-msgid ""
-" infill pattern is not supposed to work at 100% density.\n"
-"\n"
-"Shall I switch to rectilinear fill pattern?"
-msgstr ""
-" il pattern di riempimento non dovrebbe funzionare con densità 100%.\n"
-"\n"
-"Posso cambiarlo in pattern di riempimento rettilineo?"
-
-#: src/slic3r/GUI/Tab.cpp:1388
-msgid "Temperature "
-msgstr "Temperatura "
-
-#: src/slic3r/GUI/Tab.cpp:1394
-msgid "Bed"
-msgstr "Letto"
-
-#: src/slic3r/GUI/Tab.cpp:1399
-msgid "Cooling"
-msgstr "Raffreddamento"
-
-#: src/slic3r/GUI/Tab.cpp:1400 src/libslic3r/PrintConfig.cpp:1333
-#: src/libslic3r/PrintConfig.cpp:2212
-msgid "Enable"
-msgstr "Abilita"
-
-#: src/slic3r/GUI/Tab.cpp:1411
-msgid "Fan settings"
-msgstr "Impostazioni ventola"
-
-#: src/slic3r/GUI/Tab.cpp:1412
-msgid "Fan speed"
-msgstr "Velocità ventola"
-
-#: src/slic3r/GUI/Tab.cpp:1420
-msgid "Cooling thresholds"
-msgstr "Soglia di raffreddamento"
-
-#: src/slic3r/GUI/Tab.cpp:1426
-msgid "Filament properties"
-msgstr "Proprietà filamento"
-
-#: src/slic3r/GUI/Tab.cpp:1430
-msgid "Print speed override"
-msgstr "Scavalca velocità di stampa"
-
-#: src/slic3r/GUI/Tab.cpp:1440
-msgid "Toolchange parameters with single extruder MM printers"
-msgstr "Parametri di cambio strumento per stampanti MM con estrusore singolo"
-
-#: src/slic3r/GUI/Tab.cpp:1455
-msgid "Ramming settings"
-msgstr "Impostazioni del ramming"
-
-#: src/slic3r/GUI/Tab.cpp:1470 src/slic3r/GUI/Tab.cpp:1846
-msgid "Custom G-code"
-msgstr "G-code personalizzato"
-
-#: src/slic3r/GUI/Tab.cpp:1471 src/slic3r/GUI/Tab.cpp:1847
-#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:1833
-msgid "Start G-code"
-msgstr "Inizia G-code"
-
-#: src/slic3r/GUI/Tab.cpp:1477 src/slic3r/GUI/Tab.cpp:1853
-#: src/libslic3r/PrintConfig.cpp:333 src/libslic3r/PrintConfig.cpp:344
-msgid "End G-code"
-msgstr "Fine G-code"
-
-#: src/slic3r/GUI/Tab.cpp:1588 src/slic3r/GUI/Tab.cpp:1642
-msgid " Browse "
-msgstr " Naviga "
-
-#: src/slic3r/GUI/Tab.cpp:1605 src/slic3r/GUI/Tab.cpp:1788
-msgid "Test"
-msgstr "Test"
-
-#: src/slic3r/GUI/Tab.cpp:1615
-msgid "Could not get a valid Printer Host reference"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1621 src/slic3r/GUI/Tab.cpp:1801
-msgid "Success!"
-msgstr "Successo!"
-
-#: src/slic3r/GUI/Tab.cpp:1636
-msgid ""
-"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
-"signed certificate."
-msgstr ""
-"File HTTPS CA opzionale. E' necessario solo se si intende usare un HTTPS con "
-"certificato autofirmato."
-
-#: src/slic3r/GUI/Tab.cpp:1648
-msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
-msgstr "File di certificato (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
-
-#: src/slic3r/GUI/Tab.cpp:1649
-msgid "Open CA certificate file"
-msgstr "Apri file di certificato CA"
-
-#: src/slic3r/GUI/Tab.cpp:1676
-msgid ""
-"HTTPS CA File:\n"
-"\tOn this system, Slic3r uses HTTPS certificates from the system Certificate "
-"Store or Keychain.\n"
-"\tTo use a custom CA file, please import your CA file into Certificate "
-"Store / Keychain."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1713 src/slic3r/GUI/Tab.cpp:1912
-msgid "Size and coordinates"
-msgstr "Dimensione e coordinate"
-
-#: src/slic3r/GUI/Tab.cpp:1717 src/slic3r/GUI/Tab.cpp:1916
-#: src/slic3r/GUI/Tab.cpp:2792
-msgid " Set "
-msgstr " Imposta "
-
-#: src/slic3r/GUI/Tab.cpp:1740
-msgid "Capabilities"
-msgstr "Capacità "
-
-#: src/slic3r/GUI/Tab.cpp:1745
-msgid "Number of extruders of the printer."
-msgstr "Numero estrusori della stampante."
-
-#: src/slic3r/GUI/Tab.cpp:1773
-msgid "USB/Serial connection"
-msgstr "Connessione USB/Seriale"
-
-#: src/slic3r/GUI/Tab.cpp:1774 src/libslic3r/PrintConfig.cpp:1660
-msgid "Serial port"
-msgstr "Porta seriale"
-
-#: src/slic3r/GUI/Tab.cpp:1779
-msgid "Rescan serial ports"
-msgstr "Scansiona nuovamente porte seriali"
-
-#: src/slic3r/GUI/Tab.cpp:1801
-msgid "Connection to printer works correctly."
-msgstr "Connessione con la stampante funzionante."
-
-#: src/slic3r/GUI/Tab.cpp:1804
-msgid "Connection failed."
-msgstr "Connessione fallita."
-
-#: src/slic3r/GUI/Tab.cpp:1817 src/slic3r/GUI/Tab.cpp:1961
-msgid "Print Host upload"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1859 src/libslic3r/PrintConfig.cpp:92
-msgid "Before layer change G-code"
-msgstr "Prima del G-code di cambio di strato"
-
-#: src/slic3r/GUI/Tab.cpp:1865 src/libslic3r/PrintConfig.cpp:1042
-msgid "After layer change G-code"
-msgstr "Dopo il G-code di cambio di strato"
-
-#: src/slic3r/GUI/Tab.cpp:1871 src/libslic3r/PrintConfig.cpp:2111
-msgid "Tool change G-code"
-msgstr "G-code cambio strumento"
-
-#: src/slic3r/GUI/Tab.cpp:1877
-msgid "Between objects G-code (for sequential printing)"
-msgstr "G-code tra gli oggetti (per stampa sequenziale)"
-
-#: src/slic3r/GUI/Tab.cpp:1938
-msgid "Display"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1949 src/slic3r/GUI/Tab.cpp:3102
-msgid "Corrections"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2011 src/slic3r/GUI/Tab.cpp:2073
-#: src/libslic3r/PrintConfig.cpp:1088 src/libslic3r/PrintConfig.cpp:1098
-#: src/libslic3r/PrintConfig.cpp:1108 src/libslic3r/PrintConfig.cpp:1121
-#: src/libslic3r/PrintConfig.cpp:1132 src/libslic3r/PrintConfig.cpp:1143
-#: src/libslic3r/PrintConfig.cpp:1154
-msgid "Machine limits"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2025
-msgid "Values in this column are for Full Power mode"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2026
-msgid "Full Power"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2031
-msgid "Values in this column are for Silent mode"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2032
-msgid "Silent"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2040
-msgid "Maximum feedrates"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2045
-msgid "Maximum accelerations"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2052
-msgid "Jerk limits"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2057
-msgid "Minimum feedrates"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2095 src/slic3r/GUI/Tab.cpp:2103
-msgid "Single extruder MM setup"
-msgstr "Setup Estrusore singolo MM"
-
-#: src/slic3r/GUI/Tab.cpp:2104
-msgid "Single extruder multimaterial parameters"
-msgstr "Parametri multimateriali estrusore singolo"
-
-#: src/slic3r/GUI/Tab.cpp:2118 src/libslic3r/GCode/PreviewData.cpp:475
-#, c-format
-msgid "Extruder %d"
-msgstr "Estrusore %d"
-
-#: src/slic3r/GUI/Tab.cpp:2125
-msgid "Layer height limits"
-msgstr "Limiti altezza layer"
-
-#: src/slic3r/GUI/Tab.cpp:2130
-msgid "Position (for multi-extruder printers)"
-msgstr "Posizione (per stampanti multi-estrusore)"
-
-#: src/slic3r/GUI/Tab.cpp:2133
-msgid "Retraction"
-msgstr "Retrazione"
-
-#: src/slic3r/GUI/Tab.cpp:2136
-msgid "Only lift Z"
-msgstr "Eleva solo Z"
-
-#: src/slic3r/GUI/Tab.cpp:2149
-msgid ""
-"Retraction when tool is disabled (advanced settings for multi-extruder "
-"setups)"
-msgstr ""
-"Retrai quando l'attrezzo è disabilitato (impostazioni avanzate per setup "
-"multi-estrusore)"
-
-#: src/slic3r/GUI/Tab.cpp:2153
-msgid "Preview"
-msgstr "Anteprima"
-
-#: src/slic3r/GUI/Tab.cpp:2284
-msgid ""
-"The Wipe option is not available when using the Firmware Retraction mode.\n"
-"\n"
-"Shall I disable it in order to enable Firmware Retraction?"
-msgstr ""
-"La funzione Wipe non è disponibile quando si usa la modalità Retrazione "
-"Firmware.\n"
-"\n"
-"Devo disattivarla per poter abilitare la Retrazione Firmware?"
-
-#: src/slic3r/GUI/Tab.cpp:2286
-msgid "Firmware Retraction"
-msgstr "Retrazione Firmware"
-
-#: src/slic3r/GUI/Tab.cpp:2565
-#, c-format
-msgid "Default preset (%s)"
-msgstr "Preset predefiniti (%s)"
-
-#: src/slic3r/GUI/Tab.cpp:2566
-#, c-format
-msgid "Preset (%s)"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2583
-msgid "has the following unsaved changes:"
-msgstr "ha le seguenti modifiche non salvate:"
-
-#: src/slic3r/GUI/Tab.cpp:2586
-msgid "is not compatible with printer"
-msgstr "non è compatibile con la stampante"
-
-#: src/slic3r/GUI/Tab.cpp:2587
-msgid "is not compatible with print profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2589
-msgid "and it has the following unsaved changes:"
-msgstr "e sono presenti le seguenti modifiche non salvate:"
-
-#: src/slic3r/GUI/Tab.cpp:2592
-msgid "Discard changes and continue anyway?"
-msgstr "Eliminare le modifiche e continuare comunque?"
-
-#: src/slic3r/GUI/Tab.cpp:2593
-msgid "Unsaved Changes"
-msgstr "Modifiche non salvate"
-
-#: src/slic3r/GUI/Tab.cpp:2604
-msgid "It's impossible to print multi-part object(s) with SLA technology."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2605
-msgid "Please check your object list before preset changing."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2699
-msgid "The supplied name is empty. It can't be saved."
-msgstr "Il nome fornito è vuoto. Non può essere salvato."
-
-#: src/slic3r/GUI/Tab.cpp:2704
-msgid "Cannot overwrite a system profile."
-msgstr "Impossibile sovrascrivere un profilo di sistema."
-
-#: src/slic3r/GUI/Tab.cpp:2708
-msgid "Cannot overwrite an external profile."
-msgstr "Impossibile sovrascrivere un profilo esterno."
-
-#: src/slic3r/GUI/Tab.cpp:2734
-msgid "remove"
-msgstr "rimuovi"
-
-#: src/slic3r/GUI/Tab.cpp:2734
-msgid "delete"
-msgstr "cancella"
-
-#: src/slic3r/GUI/Tab.cpp:2735
-msgid "Are you sure you want to "
-msgstr "Sei sicuro di voler "
-
-#: src/slic3r/GUI/Tab.cpp:2735
-msgid " the selected preset?"
-msgstr " il preset selezionato?"
-
-#: src/slic3r/GUI/Tab.cpp:2736
-msgid "Remove"
-msgstr "Rimuovi"
-
-#: src/slic3r/GUI/Tab.cpp:2737
-msgid " Preset"
-msgstr " Preset"
-
-#: src/slic3r/GUI/Tab.cpp:2791
-msgid "All"
-msgstr "Tutto"
-
-#: src/slic3r/GUI/Tab.cpp:2869
-msgid ""
-"LOCKED LOCK;indicates that the settings are the same as the system values "
-"for the current option group"
-msgstr ""
-"LUCCHETTO CHIUSO; indica che le impostazioni sono le stesse dei valori di "
-"sistema per il corrente gruppo di opzioni"
-
-#: src/slic3r/GUI/Tab.cpp:2872
-msgid ""
-"UNLOCKED LOCK;indicates that some settings were changed and are not equal to "
-"the system values for the current option group.\n"
-"Click the UNLOCKED LOCK icon to reset all settings for current option group "
-"to the system values."
-msgstr ""
-"LUCCHETTO APERTO;indica che è stata modificata qualche impostazione e non è "
-"uguale ai valori di sistema del corrente gruppo di opzioni.\n"
-"Clicca l'icona LUCCHETTO CHIUSO per resettare tutte le impostazioni del "
-"corrente gruppo di opzioni ai valori di sistema."
-
-#: src/slic3r/GUI/Tab.cpp:2878
-msgid ""
-"WHITE BULLET;for the left button: \tindicates a non-system preset,\n"
-"for the right button: \tindicates that the settings hasn't been modified."
-msgstr ""
-"WHITE BULLET;per il bottone sinistro: indica un preset non di sistema,\n"
-"per il bottone destro: indica che le impostazioni non sono state modificate."
-
-#: src/slic3r/GUI/Tab.cpp:2882
-msgid ""
-"BACK ARROW;indicates that the settings were changed and are not equal to the "
-"last saved preset for the current option group.\n"
-"Click the BACK ARROW icon to reset all settings for the current option group "
-"to the last saved preset."
-msgstr ""
-"FRECCIA INDIETRO; indica che le impostazioni sono state modificate e non "
-"sono uguali all'ultimo preset salvato per l'attuale gruppo opzioni.\n"
-"Clicca l'icona FRECCIA INDIETRO per resettare all'ultimo preset salvato "
-"tutte le impostazioni per il seguente gruppo di opzioni."
-
-#: src/slic3r/GUI/Tab.cpp:2908
-msgid ""
-"LOCKED LOCK icon indicates that the settings are the same as the system "
-"values for the current option group"
-msgstr ""
-"Icona LUCCHETTO CHIUSO indica che le impostazioni sono uguali ai valori di "
-"sistema per il seguente gruppo di opzioni"
-
-#: src/slic3r/GUI/Tab.cpp:2910
-msgid ""
-"UNLOCKED LOCK icon indicates that some settings were changed and are not "
-"equal to the system values for the current option group.\n"
-"Click to reset all settings for current option group to the system values."
-msgstr ""
-"L'icona del LUCCHETTO APERTO indica che alcune impostazioni sono state "
-"cambiate e non sono uguali ai valori di sistema per il gruppo di opzioni "
-"corrente.\n"
-"Cliccate per resettare tutte le impostazioni per il gruppo corrente ai "
-"valori di sistema."
-
-#: src/slic3r/GUI/Tab.cpp:2913
-msgid "WHITE BULLET icon indicates a non system preset."
-msgstr "L'icona a forma di PALLINO BIANCO indica un preset non di sistema."
-
-#: src/slic3r/GUI/Tab.cpp:2916
-msgid ""
-"WHITE BULLET icon indicates that the settings are the same as in the last "
-"saved preset for the current option group."
-msgstr ""
-"L'icona a forma di PALLINO BIANCO indica che le impostazioni sono uguali "
-"agli ultimi preset salvati per il gruppo di opzioni corrente."
-
-#: src/slic3r/GUI/Tab.cpp:2918
-msgid ""
-"BACK ARROW icon indicates that the settings were changed and are not equal "
-"to the last saved preset for the current option group.\n"
-"Click to reset all settings for the current option group to the last saved "
-"preset."
-msgstr ""
-"Icona FRECCIA INDIETRO indica che le impostazioni sono state cambiate e non "
-"sono uguali all'ultimo preset salvato per il seguente gruppo di opzioni.\n"
-"Clicca per resettare all'ultimo preset salvato tutte le impostazioni per il "
-"seguente gruppo di opzioni."
-
-#: src/slic3r/GUI/Tab.cpp:2924
-msgid ""
-"LOCKED LOCK icon indicates that the value is the same as the system value."
-msgstr ""
-"L'icona del LUCCHETTO CHIUSO indica che il valore è uguale al valore di "
-"sistema."
-
-#: src/slic3r/GUI/Tab.cpp:2925
-msgid ""
-"UNLOCKED LOCK icon indicates that the value was changed and is not equal to "
-"the system value.\n"
-"Click to reset current value to the system value."
-msgstr ""
-"L'icona del LUCCHETTO APERTO indica che il valore è stato cambiato e non è "
-"uguale al valore di sistema. \n"
-"Cliccate per resettare il valore corrente al valore di sistema."
-
-#: src/slic3r/GUI/Tab.cpp:2931
-msgid ""
-"WHITE BULLET icon indicates that the value is the same as in the last saved "
-"preset."
-msgstr ""
-"L'icona a forma di PALLINO BIANCO indica che il valore è lo stesso "
-"dell'ultimo preset salvato."
-
-#: src/slic3r/GUI/Tab.cpp:2932
-msgid ""
-"BACK ARROW icon indicates that the value was changed and is not equal to the "
-"last saved preset.\n"
-"Click to reset current value to the last saved preset."
-msgstr ""
-"La FRECCIA ALL'INDIETRO indica che il valore è stato cambiato e non è uguale "
-"all'ultimo preset salvato.\n"
-"Cliccare per resettare il valore corrente all'ultimo preset salvato."
-
-# Used in this context: _("Save ") + title + _(" as:")
-#: src/slic3r/GUI/Tab.cpp:3031
-msgid " as:"
-msgstr " come:"
-
-#: src/slic3r/GUI/Tab.cpp:3075
-msgid "the following postfix are not allowed:"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3079
-msgid "The supplied name is not available."
-msgstr "Il nome fornito non è disponibile."
-
-#: src/slic3r/GUI/Tab.cpp:3092
-msgid "Material"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3094 src/slic3r/GUI/Tab.cpp:3176
-msgid "Layers"
-msgstr "Layer"
-
-#: src/slic3r/GUI/Tab.cpp:3098
-msgid "Exposure"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3183
-msgid "Support head"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3188
-msgid "Support pillar"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3196
-msgid "Connection of the support sticks and junctions"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3200
-msgid "Automatic generation"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.hpp:293 src/slic3r/GUI/Tab.hpp:381
-msgid "Print Settings"
-msgstr "Impostazioni Stampa"
-
-#: src/slic3r/GUI/Tab.hpp:311
-msgid "Filament Settings"
-msgstr "Impostazioni Filamento"
-
-#: src/slic3r/GUI/Tab.hpp:344
-msgid "Printer Settings"
-msgstr "Impostazioni stampante"
-
-#: src/slic3r/GUI/Tab.hpp:367
-msgid "Material Settings"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.hpp:393
-msgid "Save preset"
-msgstr "Salva preset"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
-msgid "Update available"
-msgstr "Aggiornamento disponibile"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
-msgid "New version of Slic3r PE is available"
-msgstr "Nuova versione di Slic3r PE disponibile"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:35
-msgid "To download, follow the link below."
-msgstr "Vai sul link sotto per scaricare."
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:42
-msgid "Current version:"
-msgstr "Versione corrente:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:44
-msgid "New version:"
-msgstr "Nuova versione:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:52
-msgid "Don't notify about new releases any more"
-msgstr "Non notificare più i nuovi rilasci"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:70 src/slic3r/GUI/UpdateDialogs.cpp:162
-msgid "Configuration update"
-msgstr "Aggiornamento di configurazione"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:70
-msgid "Configuration update is available"
-msgstr "Aggiornamento di configurazione disponibile"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:73
-msgid ""
-"Would you like to install it?\n"
-"\n"
-"Note that a full configuration snapshot will be created first. It can then "
-"be restored at any time should there be a problem with the new version.\n"
-"\n"
-"Updated configuration bundles:"
-msgstr ""
-"Vuoi installarlo?\n"
-"\n"
-"Nota: verrà prima creata un'istantanea della configurazione completa. Potrà "
-"essere ripristinata in qualunque momento se dovessero presentarsi problemi "
-"con la nuova versione.\n"
-"\n"
-"Gruppo di configurazioni aggiornate:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
-msgid "Slic3r incompatibility"
-msgstr "Incompatibilità Slic3r"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
-msgid "Slic3r configuration is incompatible"
-msgstr "Configurazione Slic3r incompatibile"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:112
-msgid ""
-"This version of Slic3r PE is not compatible with currently installed "
-"configuration bundles.\n"
-"This probably happened as a result of running an older Slic3r PE after using "
-"a newer one.\n"
-"\n"
-"You may either exit Slic3r and try again with a newer version, or you may re-"
-"run the initial configuration. Doing so will create a backup snapshot of the "
-"existing configuration before installing files compatible with this Slic3r.\n"
-msgstr ""
-"Questa versione di Slic3r PE non è compatibile con gli attuali gruppi di "
-"configurazioni installati.\n"
-"Probabilmente è causato dall'esecuzione di una vecchia versione di Slic3r PE "
-"dopo averne utilizzata una più recente.\n"
-"\n"
-"Prova a chiudere Slic3r e riprovare con una versione più nuova, o prova ad "
-"effettuare nuovamente la configurazione iniziale. Così facendo creerai "
-"un'istantanea di backup della configurazione esistente prima di istallare i "
-"file compatibili con questo Slic3r.\n"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:121
-#, c-format
-msgid "This Slic3r PE version: %s"
-msgstr "Questa versione di Slic3r PE: %s"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:126
-msgid "Incompatible bundles:"
-msgstr "Gruppi incompatibili:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:142
-msgid "Exit Slic3r"
-msgstr "Esci da Slic3r"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:145
-msgid "Re-configure"
-msgstr "Ri-configura"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:166
-#, c-format
-msgid ""
-"Slic3r PE now uses an updated configuration structure.\n"
-"\n"
-"So called 'System presets' have been introduced, which hold the built-in "
-"default settings for various printers. These System presets cannot be "
-"modified, instead, users now may create their own presets inheriting "
-"settings from one of the System presets.\n"
-"An inheriting preset may either inherit a particular value from its parent "
-"or override it with a customized value.\n"
-"\n"
-"Please proceed with the %s that follows to set up the new presets and to "
-"choose whether to enable automatic preset updates."
-msgstr ""
-"Slic3r PE adesso utilizza una struttura di aggiornamento delle "
-"configurazioni.\n"
-"\n"
-"Sono stati introdotti i così detti 'Preset di sistema', che contengono i "
-"settaggi integrati predefiniti per varie stampanti. Questi preset di sistema "
-"non possono essere modificati, però l'utente può creare i propri preset "
-"ereditando le impostazioni da quelli di sistema.\n"
-"Un preset ereditato può sia ereditare un valore particolare dal genitore, o "
-"sovrascriverlo con un valore personalizzato.\n"
-"\n"
-"Si prega di procedere con il %s che segue per impostare i nuovi preset e "
-"scegliere se abilitare gli aggiornamenti automatici del preset."
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:182
-msgid "For more information please visit our wiki page:"
-msgstr "Per maggiori informazioni visita la nostra pagina wiki:"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:10
-msgid "Ramming customization"
-msgstr "Personalizzazione del ramming"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:36
-msgid ""
-"Ramming denotes the rapid extrusion just before a tool change in a single-"
-"extruder MM printer. Its purpose is to properly shape the end of the "
-"unloaded filament so it does not prevent insertion of the new filament and "
-"can itself be reinserted later. This phase is important and different "
-"materials can require different extrusion speeds to get the good shape. For "
-"this reason, the extrusion rates during ramming are adjustable.\n"
-"\n"
-"This is an expert-level setting, incorrect adjustment will likely lead to "
-"jams, extruder wheel grinding into filament etc."
-msgstr ""
-"Il ramming è la rapida estrusione appena prima di un cambio di strumento in "
-"una stampante MM a estrusore singolo. Lo scopo è di dare la forma corretta "
-"al capo del filamento scaricato cosicché non prevenga l'inserzione del nuovo "
-"filamento e perché possa essere inserito più facilmente esso stesso. Questa "
-"fase è importante e materiali diversi possono richiedere diverse velocità "
-"per ottenere la forma corretta. Per questo motivi le velocità di estrusione "
-"del ramming possono essere modificate.\n"
-"\n"
-"Questa è un'impostazione per esperti, valori scorretti produrranno "
-"facilmente dei blocchi, o porteranno l'ingranaggio di estrusione a macinare "
-"il filamento etc."
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78
-msgid "Total ramming time"
-msgstr "Tempo totale di ramming"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:80
-msgid "Total rammed volume"
-msgstr "Volume totale di ramming"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:84
-msgid "Ramming line width"
-msgstr "Larghezza della linea di Ramming"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:86
-msgid "Ramming line spacing"
-msgstr "Distanza tra le linee di Ramming"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:138
-msgid "Wipe tower - Purging volume adjustment"
-msgstr "Torre di spurgo - Regolazione volume di spurgo"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:219
-msgid ""
-"Here you can adjust required purging volume (mm³) for any given pair of "
-"tools."
-msgstr ""
-"Qui è possibile regolare il volume di spurgo necessario (mm³) per ogni "
-"coppia di strumenti."
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:220
-msgid "Extruder changed to"
-msgstr "Cambia estrusore a"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:228
-msgid "unloaded"
-msgstr "scaricato"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:229
-msgid "loaded"
-msgstr "caricato"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:234
-msgid "Tool #"
-msgstr "Utensile #"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:241
-msgid ""
-"Total purging volume is calculated by summing two values below, depending on "
-"which tools are loaded/unloaded."
-msgstr ""
-"Il volume totale di purga viene calcolato sommando i due valori sotto, a "
-"seconda di quali strumenti vengono scaricati/caricati."
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:242
-msgid "Volume to purge (mm³) when the filament is being"
-msgstr "Il volume di spurgo (mm³) quando il filamento viene"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:256
-msgid "From"
-msgstr "Da"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:321
-msgid ""
-"Switching to simple settings will discard changes done in the advanced "
-"mode!\n"
-"\n"
-"Do you want to proceed?"
-msgstr ""
-"Cambiare alle impostazioni semplici eliminerà tutte le modifiche fatte alle "
-"impostazioni complesse!\n"
-"\n"
-"Procedere?"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
-msgid "Show simplified settings"
-msgstr "Mostra impostazioni semplificate"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
-msgid "Show advanced settings"
-msgstr "Mostra impostazioni avanzate"
-
-#: src/slic3r/Utils/OctoPrint.cpp:65
-#, c-format
-msgid "Mismatched type of print host: %s"
-msgstr ""
-
-#: src/slic3r/Utils/OctoPrint.cpp:80
-msgid "Connection to OctoPrint works correctly."
-msgstr "Connessione con OctoPrint funzionante."
-
-#: src/slic3r/Utils/OctoPrint.cpp:86
-msgid "Could not connect to OctoPrint"
-msgstr "Non è possibile connettere ad OctoPrint"
-
-#: src/slic3r/Utils/OctoPrint.cpp:86
-msgid "Note: OctoPrint version at least 1.1.0 is required."
-msgstr "Nota: è richiesta una versione di OctoPrint 1.1.0 o successiva."
-
-#: src/slic3r/Utils/OctoPrint.cpp:181
-msgid "Connection to Prusa SLA works correctly."
-msgstr ""
-
-#: src/slic3r/Utils/OctoPrint.cpp:186
-msgid "Could not connect to Prusa SLA"
-msgstr ""
-
-#: src/slic3r/Utils/PresetUpdater.cpp:571
-#, c-format
-msgid "requires min. %s and max. %s"
-msgstr "richiede min. %s e max. %s"
-
-#: src/slic3r/Utils/PresetUpdater.cpp:576
-#, c-format
-msgid "requires min. %s"
-msgstr ""
-
-#: src/slic3r/Utils/PresetUpdater.cpp:578
-#, c-format
-msgid "requires max. %s"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:219
-#: src/slic3r/Utils/FixModelByWin10.cpp:349
-msgid "Exporting the source model"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:235
-msgid "Failed loading the input model."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:242
-msgid "Repairing the model by the Netfabb service"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:248
-msgid "Mesh repair failed."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:251
-#: src/slic3r/Utils/FixModelByWin10.cpp:367
-msgid "Loading the repaired model"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:263
-#: src/slic3r/Utils/FixModelByWin10.cpp:270
-#: src/slic3r/Utils/FixModelByWin10.cpp:302
-msgid "Saving mesh into the 3MF container failed."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:334
-msgid "Model fixing"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:335
-msgid "Exporting model..."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:357
-msgid "Export of a temporary 3mf file failed"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:372
-msgid "Import of the repaired 3mf file failed"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:375
-msgid "Model repair finished"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:379
-msgid "Model repair canceled"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
-msgid "Model repaired successfully"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
-msgid "Model Repair by the Netfabb service"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
-msgid "Model repair failed: \n"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1175
-msgid "All objects are outside of the print volume."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1201
-msgid "Some objects are too close; your extruder will collide with them."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1216
-msgid ""
-"Some objects are too tall and cannot be printed without extruder collisions."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1226
-msgid "The Spiral Vase option can only be used when printing a single object."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1228
-msgid ""
-"The Spiral Vase option can only be used when printing single material "
-"objects."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1234
-msgid ""
-"All extruders must have the same diameter for single extruder multimaterial "
-"printer."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1239
-msgid ""
-"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter "
-"and Repetier G-code flavors."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1241
-msgid ""
-"The Wipe Tower is currently only supported with the relative extruder "
-"addressing (use_relative_e_distances=1)."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1253
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they have equal "
-"layer heigths"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1255
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they are printed "
-"over an equal number of raft layers"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1257
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they are printed "
-"with the same support_material_contact_distance"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1259
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they are sliced "
-"equally."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1281
-msgid ""
-"The Wipe tower is only supported if all objects have the same layer height "
-"profile"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1290
-msgid "The supplied settings will cause an empty print."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1307
-msgid ""
-"One or more object were assigned an extruder that the printer does not have."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1316
-msgid ""
-"Printing with multiple extruders of differing nozzle diameters. If support "
-"is to be printed with the current extruder (support_material_extruder == 0 "
-"or support_material_interface_extruder == 0), all nozzles have to be of the "
-"same diameter."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1324
-msgid ""
-"For the Wipe Tower to work with the soluble supports, the support layers "
-"need to be synchronized with the object layers."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1328
-msgid ""
-"The Wipe Tower currently supports the non-soluble supports only if they are "
-"printed with the current extruder without triggering a tool change. (both "
-"support_material_extruder and support_material_interface_extruder need to be "
-"set to 0)."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1335
-msgid "first_layer_height"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1350
-msgid "First layer height can't be greater than nozzle diameter"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1354
-msgid "Layer height can't be greater than nozzle diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:32 src/libslic3r/PrintConfig.cpp:33
-msgid "Printer technology"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:41
-msgid "Bed shape"
-msgstr "Forma letto"
-
-#: src/libslic3r/PrintConfig.cpp:48
-msgid ""
-"This setting controls the height (and thus the total number) of the slices/"
-"layers. Thinner layers give better accuracy but take more time to print."
-msgstr ""
-"Questa impostazione controlla l'altezza (e quindi il numero totale) degli "
-"strati/layer. Un layer più sottile sarà più preciso ma sarà necessario più "
-"tempo per stampare."
-
-#: src/libslic3r/PrintConfig.cpp:56
-msgid "Max print height"
-msgstr "Altezza massima di stampa"
-
-#: src/libslic3r/PrintConfig.cpp:57
-msgid ""
-"Set this to the maximum height that can be reached by your extruder while "
-"printing."
-msgstr ""
-"Impostate alla massima altezza che può essere raggiunta dal vostro estrusore "
-"durante la stampa."
-
-#: src/libslic3r/PrintConfig.cpp:73
-msgid "Avoid crossing perimeters"
-msgstr "Evita incrocio perimetri"
-
-#: src/libslic3r/PrintConfig.cpp:74
-msgid ""
-"Optimize travel moves in order to minimize the crossing of perimeters. This "
-"is mostly useful with Bowden extruders which suffer from oozing. This "
-"feature slows down both the print and the G-code generation."
-msgstr ""
-"Ottimizza il movimenti di spostamento per minimizzare l'incrocio di "
-"perimetri. E' comunemente usato con estrusori Bowden che soffrono di oozing. "
-"Questa caratteristica rallenta sia la stampa che la generazione del G-code."
-
-#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:2080
-msgid "Other layers"
-msgstr "Altri layer"
-
-#: src/libslic3r/PrintConfig.cpp:83
-msgid ""
-"Bed temperature for layers after the first one. Set this to zero to disable "
-"bed temperature control commands in the output."
-msgstr ""
-"Temperatura per i layer dopo il primo. Imposta questo a zero per disattivare "
-"i comandi di controllo della temperatura del letto in output."
-
-#: src/libslic3r/PrintConfig.cpp:86
-msgid "Bed temperature"
-msgstr "Temperatura letto"
-
-#: src/libslic3r/PrintConfig.cpp:93
-msgid ""
-"This custom code is inserted at every layer change, right before the Z move. "
-"Note that you can use placeholder variables for all Slic3r settings as well "
-"as [layer_num] and [layer_z]."
-msgstr ""
-"Questo codice personalizzato è inserito ad ogni cambio layer, subito prima "
-"del movimento Z. Si fa presente che puoi usare variabili sostitutive per "
-"tutte le impostazioni di Slic3r sia per [layer_num] che per [layer_z]."
-
-#: src/libslic3r/PrintConfig.cpp:104
-msgid "Between objects G-code"
-msgstr "G-code tra gli oggetti"
-
-#: src/libslic3r/PrintConfig.cpp:105
-msgid ""
-"This code is inserted between objects when using sequential printing. By "
-"default extruder and bed temperature are reset using non-wait command; "
-"however if M104, M109, M140 or M190 are detected in this custom code, Slic3r "
-"will not add temperature commands. Note that you can use placeholder "
-"variables for all Slic3r settings, so you can put a \"M109 "
-"S[first_layer_temperature]\" command wherever you want."
-msgstr ""
-"Questo codice è inserito tra gli oggetti quando si utilizza una stampa "
-"sequenziale. Come predefinito, la temperatura di estrusione e del piano sono "
-"resettate con il comando non-attesa; in ogni caso se nel codice "
-"personalizzato vengono rilevati i comandi M104,M109,M140 o M190, Slic3r non "
-"aggiungerà i comandi di temperatura. Si fa presente che puoi usare variabili "
-"sostitutive per tutte le impostazioni di Slic3r, quindi puoi inserire un "
-"comando \"M109 S[first_layer_temperature]\" quando preferisci."
-
-#: src/libslic3r/PrintConfig.cpp:114
-msgctxt "Layers"
-msgid "Bottom"
-msgstr "Inferiore"
-
-#: src/libslic3r/PrintConfig.cpp:116
-msgid "Number of solid layers to generate on bottom surfaces."
-msgstr "Numero di layer solidi da generare sulle superfici inferiori."
-
-#: src/libslic3r/PrintConfig.cpp:118
-msgid "Bottom solid layers"
-msgstr "Layer solidi sul fondo"
-
-#: src/libslic3r/PrintConfig.cpp:123
-msgid "Bridge"
-msgstr "Bridge"
-
-#: src/libslic3r/PrintConfig.cpp:124
-msgid ""
-"This is the acceleration your printer will use for bridges. Set zero to "
-"disable acceleration control for bridges."
-msgstr ""
-"Questa è l'accelerazione che la tua stampante utilizzerà per i bridge. "
-"Impostala a zero per disattivare il controllo dell'accelerazione per i "
-"bridge."
-
-#: src/libslic3r/PrintConfig.cpp:126 src/libslic3r/PrintConfig.cpp:274
-#: src/libslic3r/PrintConfig.cpp:819 src/libslic3r/PrintConfig.cpp:941
-#: src/libslic3r/PrintConfig.cpp:1100 src/libslic3r/PrintConfig.cpp:1145
-#: src/libslic3r/PrintConfig.cpp:1156 src/libslic3r/PrintConfig.cpp:1386
-msgid "mm/s²"
-msgstr "mm/s²"
-
-#: src/libslic3r/PrintConfig.cpp:133
-msgid "Bridging angle"
-msgstr "Angolo Ponteggio"
-
-#: src/libslic3r/PrintConfig.cpp:135
-msgid ""
-"Bridging angle override. If left to zero, the bridging angle will be "
-"calculated automatically. Otherwise the provided angle will be used for all "
-"bridges. Use 180° for zero angle."
-msgstr ""
-"Ignora angolo Bridging. Se lasciato a zero, l'angolo di bridging verrà "
-"calcolato automaticamente. Altrimenti l'angolo fornito sarà utilizzato per "
-"tutti i bridge. Usa 180° per l'angolo zero."
-
-#: src/libslic3r/PrintConfig.cpp:138 src/libslic3r/PrintConfig.cpp:734
-#: src/libslic3r/PrintConfig.cpp:1637 src/libslic3r/PrintConfig.cpp:1648
-#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:2063
-#: src/libslic3r/PrintConfig.cpp:2578
-msgid "°"
-msgstr "°"
-
-#: src/libslic3r/PrintConfig.cpp:145
-msgid "Bridges fan speed"
-msgstr "Velocità ventola Bridge"
-
-#: src/libslic3r/PrintConfig.cpp:146
-msgid "This fan speed is enforced during all bridges and overhangs."
-msgstr ""
-"Questa velocità della ventola verrà forzata durante tutti i bridge e "
-"overhang."
-
-#: src/libslic3r/PrintConfig.cpp:147 src/libslic3r/PrintConfig.cpp:747
-#: src/libslic3r/PrintConfig.cpp:1165 src/libslic3r/PrintConfig.cpp:1232
-#: src/libslic3r/PrintConfig.cpp:1517
-msgid "%"
-msgstr "%"
-
-#: src/libslic3r/PrintConfig.cpp:155
-msgid "Bridge flow ratio"
-msgstr "Rapporto flusso Bridge"
-
-#: src/libslic3r/PrintConfig.cpp:157
-msgid ""
-"This factor affects the amount of plastic for bridging. You can decrease it "
-"slightly to pull the extrudates and prevent sagging, although default "
-"settings are usually good and you should experiment with cooling (use a fan) "
-"before tweaking this."
-msgstr ""
-"Questo fattore influenza la quantità di plastica per il bridging. Puoi "
-"diminuirlo leggermente per tendere il materiale estruso ed evitare che si "
-"afflosci, sebbene le impostazioni predefinite sono generalmente buone ed è "
-"consigliabile sperimentare con il raffreddamento (usare la ventola) prima di "
-"modificare questo valore."
-
-#: src/libslic3r/PrintConfig.cpp:168
-msgid "Bridges"
-msgstr "Bridge"
-
-#: src/libslic3r/PrintConfig.cpp:170
-msgid "Speed for printing bridges."
-msgstr "Velocità di stampa Bridge."
-
-#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:564
-#: src/libslic3r/PrintConfig.cpp:573 src/libslic3r/PrintConfig.cpp:583
-#: src/libslic3r/PrintConfig.cpp:592 src/libslic3r/PrintConfig.cpp:623
-#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:884
-#: src/libslic3r/PrintConfig.cpp:1013 src/libslic3r/PrintConfig.cpp:1090
-#: src/libslic3r/PrintConfig.cpp:1110 src/libslic3r/PrintConfig.cpp:1123
-#: src/libslic3r/PrintConfig.cpp:1134 src/libslic3r/PrintConfig.cpp:1189
-#: src/libslic3r/PrintConfig.cpp:1252 src/libslic3r/PrintConfig.cpp:1418
-#: src/libslic3r/PrintConfig.cpp:1601 src/libslic3r/PrintConfig.cpp:1611
-#: src/libslic3r/PrintConfig.cpp:2041 src/libslic3r/PrintConfig.cpp:2160
-msgid "mm/s"
-msgstr "mm/s"
-
-#: src/libslic3r/PrintConfig.cpp:178
-msgid "Brim width"
-msgstr "Larghezza brim"
-
-#: src/libslic3r/PrintConfig.cpp:179
-msgid ""
-"Horizontal width of the brim that will be printed around each object on the "
-"first layer."
-msgstr ""
-"Larghezza orizzontale del brim che sarà stampata attorno ad ogni oggetto nel "
-"primo layer."
-
-#: src/libslic3r/PrintConfig.cpp:187
-msgid "Clip multi-part objects"
-msgstr "Collega oggetti multi-part"
-
-#: src/libslic3r/PrintConfig.cpp:188
-msgid ""
-"When printing multi-material objects, this settings will make slic3r to clip "
-"the overlapping object parts one by the other (2nd part will be clipped by "
-"the 1st, 3rd part will be clipped by the 1st and 2nd etc)."
-msgstr ""
-"Durante la stampa di oggetti multi-materiali, questa impostazione farà si "
-"che slic3r unisca le parti sovrapposte dell'oggetto (la seconda sarà "
-"collegata con la prima, la terza parte sarà collegata con la prima e la "
-"seconda ecc..)."
-
-#: src/libslic3r/PrintConfig.cpp:196
-msgid "Colorprint height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:197
-msgid "Heights at which a filament change is to occur. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:207
-msgid "Compatible printers condition"
-msgstr "Condizioni di stampante compatibile"
-
-#: src/libslic3r/PrintConfig.cpp:208
-msgid ""
-"A boolean expression using the configuration values of an active printer "
-"profile. If this expression evaluates to true, this profile is considered "
-"compatible with the active printer profile."
-msgstr ""
-"Un'espressione booleana che usa i valori di configurazione di un profilo "
-"stampante attivo. Se questa espressione produce un risultato vero, questo "
-"profilo si considera compatibile con il profilo stampante attivo."
-
-#: src/libslic3r/PrintConfig.cpp:220
-msgid "Compatible print profiles condition"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:221
-msgid ""
-"A boolean expression using the configuration values of an active print "
-"profile. If this expression evaluates to true, this profile is considered "
-"compatible with the active print profile."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:235
-msgid "Complete individual objects"
-msgstr "Completa oggetti individuali"
-
-#: src/libslic3r/PrintConfig.cpp:236
-msgid ""
-"When printing multiple objects or copies, this feature will complete each "
-"object before moving onto next one (and starting it from its bottom layer). "
-"This feature is useful to avoid the risk of ruined prints. Slic3r should "
-"warn and prevent you from extruder collisions, but beware."
-msgstr ""
-"Durante la stampa di oggetti multipli o copie, questa funzione completerà "
-"ciascun oggetto prima di spostarsi al prossimo (e iniziando la stampa dal "
-"primo layer). Questa funzione è utile per evitare il rischio di stampe "
-"rovinate. Slic3r dovrebbe avvisarti e prevenire collisioni con l'estrusore, "
-"ma fai attenzione."
-
-#: src/libslic3r/PrintConfig.cpp:245
-msgid "Enable auto cooling"
-msgstr "Abilita auto raffreddamento"
-
-#: src/libslic3r/PrintConfig.cpp:246
-msgid ""
-"This flag enables the automatic cooling logic that adjusts print speed and "
-"fan speed according to layer printing time."
-msgstr ""
-"Questo contrassegno abilita la logica del raffreddamento automatico in modo "
-"da regolare la velocità di stampa e la velocità della ventola in base al "
-"tempo di stampa del layer."
-
-#: src/libslic3r/PrintConfig.cpp:252
-msgid "Cooling tube position"
-msgstr "Posizione tubo di raffreddamento"
-
-#: src/libslic3r/PrintConfig.cpp:253
-msgid "Distance of the center-point of the cooling tube from the extruder tip "
-msgstr ""
-"Distanza del centro del tubo di raffreddamento dalla punta dell'estrusore "
-
-#: src/libslic3r/PrintConfig.cpp:261
-msgid "Cooling tube length"
-msgstr "Lunghezza del tubo di raffreddamento"
-
-#: src/libslic3r/PrintConfig.cpp:262
-msgid "Length of the cooling tube to limit space for cooling moves inside it "
-msgstr ""
-"Lunghezza del tubo di raffreddamento per limitare lo spazio delle mosse di "
-"raffreddamento al suo interno "
-
-#: src/libslic3r/PrintConfig.cpp:271
-msgid ""
-"This is the acceleration your printer will be reset to after the role-"
-"specific acceleration values are used (perimeter/infill). Set zero to "
-"prevent resetting acceleration at all."
-msgstr ""
-"Questa è l'accelerazione a cui la stampante sarà reimpostata dopo aver "
-"utilizzato un valore di accelerazione per un ruolo specifico (perimetro/"
-"riempimento). Imposta a zero per evitare del tutto la reimpostazione "
-"dell'accelerazione."
-
-#: src/libslic3r/PrintConfig.cpp:281
-msgid "Default filament profile"
-msgstr "Profilo filamento predefinito"
-
-#: src/libslic3r/PrintConfig.cpp:282
-msgid ""
-"Default filament profile associated with the current printer profile. On "
-"selection of the current printer profile, this filament profile will be "
-"activated."
-msgstr ""
-"Profilo filamento di default associato al profilo stampante corrente. Alla "
-"selezione del profilo stampante corrente, questo profilo filamento verrà "
-"attivato."
-
-#: src/libslic3r/PrintConfig.cpp:287
-msgid "Default print profile"
-msgstr "Profilo di stampa predefinito"
-
-#: src/libslic3r/PrintConfig.cpp:288 src/libslic3r/PrintConfig.cpp:2469
-#: src/libslic3r/PrintConfig.cpp:2479
-msgid ""
-"Default print profile associated with the current printer profile. On "
-"selection of the current printer profile, this print profile will be "
-"activated."
-msgstr ""
-"Profilo di stampa di default associato al profilo stampante corrente. Alla "
-"selezione del profilo stampante corrente, questo profilo di stampa verrà "
-"attivato."
-
-#: src/libslic3r/PrintConfig.cpp:293
-msgid "Disable fan for the first"
-msgstr "Disattiva ventola per i primi"
-
-#: src/libslic3r/PrintConfig.cpp:294
-msgid ""
-"You can set this to a positive value to disable fan at all during the first "
-"layers, so that it does not make adhesion worse."
-msgstr ""
-"E' possibile impostare un valore positivo per disattivare completamente la "
-"ventola durante i primi layer, così da non peggiorare l'adesione."
-
-#: src/libslic3r/PrintConfig.cpp:296 src/libslic3r/PrintConfig.cpp:952
-#: src/libslic3r/PrintConfig.cpp:1487 src/libslic3r/PrintConfig.cpp:1691
-#: src/libslic3r/PrintConfig.cpp:1757 src/libslic3r/PrintConfig.cpp:1935
-#: src/libslic3r/PrintConfig.cpp:1985
-msgid "layers"
-msgstr "layer"
-
-#: src/libslic3r/PrintConfig.cpp:304
-msgid "Don't support bridges"
-msgstr "Non supportare i bridge"
-
-#: src/libslic3r/PrintConfig.cpp:306
-msgid ""
-"Experimental option for preventing support material from being generated "
-"under bridged areas."
-msgstr ""
-"Opzione sperimentale per prevenire la formazione di supporti sotto i bridge."
-
-#: src/libslic3r/PrintConfig.cpp:313
-msgid "Distance between copies"
-msgstr "Distanza tra le copie"
-
-#: src/libslic3r/PrintConfig.cpp:314
-msgid "Distance used for the auto-arrange feature of the plater."
-msgstr "Distanza usata per la funzione disposizione automatica del piatto."
-
-#: src/libslic3r/PrintConfig.cpp:322
-msgid "Elephant foot compensation"
-msgstr "Compensazione zampa d'elefante"
-
-#: src/libslic3r/PrintConfig.cpp:324
-msgid ""
-"The first layer will be shrunk in the XY plane by the configured value to "
-"compensate for the 1st layer squish aka an Elephant Foot effect."
-msgstr ""
-"Il primo layer verrà ristretto sul piano XY dal valore configurato, così da "
-"compensare per lo schiacciamento del 1° layer, anche noto come effetto Zampa "
-"d'elefante."
-
-#: src/libslic3r/PrintConfig.cpp:334
-msgid ""
-"This end procedure is inserted at the end of the output file. Note that you "
-"can use placeholder variables for all Slic3r settings."
-msgstr ""
-"Questa procedura finale è inserita alla fine del file di output. Si fa "
-"presente che puoi usare variabili sostitutive per tutte le impostazioni di "
-"Slic3r."
-
-#: src/libslic3r/PrintConfig.cpp:345
-msgid ""
-"This end procedure is inserted at the end of the output file, before the "
-"printer end gcode. Note that you can use placeholder variables for all "
-"Slic3r settings. If you have multiple extruders, the gcode is processed in "
-"extruder order."
-msgstr ""
-"Questa procedura finale è inserita alla fine del file di output, prima del "
-"termine del gcode della stampante. Si fa presente che puoi usare variabili "
-"sostitutive per tutte le impostazioni di Slic3r. Se hai estrusori multipli, "
-"il gcode è processato nell'ordine dell'estrusore."
-
-#: src/libslic3r/PrintConfig.cpp:356
-msgid "Ensure vertical shell thickness"
-msgstr "Mantieni spessore guscio verticale"
-
-#: src/libslic3r/PrintConfig.cpp:358
-msgid ""
-"Add solid infill near sloping surfaces to guarantee the vertical shell "
-"thickness (top+bottom solid layers)."
-msgstr ""
-"Aggiunge un riempimento solido vicino le superfici inclinate per garantire "
-"lo spessore verticale (layer solidi superiore + inferiore)"
-
-#: src/libslic3r/PrintConfig.cpp:365
-msgid "Top/bottom fill pattern"
-msgstr "Trama riempimento superiore/inferiore"
-
-#: src/libslic3r/PrintConfig.cpp:367
-msgid ""
-"Fill pattern for top/bottom infill. This only affects the external visible "
-"layer, and not its adjacent solid shells."
-msgstr ""
-"Pattern di riempimento per il fondo o la cima. Questo influenza solo lo "
-"strato visibile esterno e non i perimetri adiacenti."
-
-#: src/libslic3r/PrintConfig.cpp:376 src/libslic3r/PrintConfig.cpp:800
-#: src/libslic3r/PrintConfig.cpp:2021
-msgid "Rectilinear"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:377 src/libslic3r/PrintConfig.cpp:806
-msgid "Concentric"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:378 src/libslic3r/PrintConfig.cpp:810
-msgid "Hilbert Curve"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:379 src/libslic3r/PrintConfig.cpp:811
-msgid "Archimedean Chords"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:380 src/libslic3r/PrintConfig.cpp:812
-msgid "Octagram Spiral"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:386 src/libslic3r/PrintConfig.cpp:397
-msgid "External perimeters"
-msgstr "Perimetri esterni"
-
-#: src/libslic3r/PrintConfig.cpp:388
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for external "
-"perimeters. If left zero, default extrusion width will be used if set, "
-"otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
-"(for example 200%), it will be computed over layer height."
-msgstr ""
-"Imposta questo valore diverso da zero per impostare una larghezza "
-"d'estrusione manuale per i perimetri esterni. Se lasciato a zero, verrà "
-"utilizzata la larghezza predefinita se impostata; diversamente verrà "
-"utilizzato il valore 1.125 x il diametro dell'ugello. Se espresso in "
-"percentuale (per esempio 200%), sarà calcolato sull'altezza del layer."
-
-#: src/libslic3r/PrintConfig.cpp:391 src/libslic3r/PrintConfig.cpp:841
-#: src/libslic3r/PrintConfig.cpp:975 src/libslic3r/PrintConfig.cpp:1408
-#: src/libslic3r/PrintConfig.cpp:1769 src/libslic3r/PrintConfig.cpp:1958
-#: src/libslic3r/PrintConfig.cpp:2129
-msgid "mm or % (leave 0 for default)"
-msgstr "mm o % (lasciate 0 per il default)"
-
-#: src/libslic3r/PrintConfig.cpp:399
-msgid ""
-"This separate setting will affect the speed of external perimeters (the "
-"visible ones). If expressed as percentage (for example: 80%) it will be "
-"calculated on the perimeters speed setting above. Set to zero for auto."
-msgstr ""
-"Questa impostazione separata avrà effetto sulla velocità dei perimetri "
-"esterni (quelli visibili). Se espresso come percentuale (per esempio: 80%) "
-"verrà calcolato sull'impostazione della velocità dei perimetri qui sopra. "
-"Imposta a zero per automatico."
-
-#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:864
-#: src/libslic3r/PrintConfig.cpp:1725 src/libslic3r/PrintConfig.cpp:1780
-#: src/libslic3r/PrintConfig.cpp:2006 src/libslic3r/PrintConfig.cpp:2142
-msgid "mm/s or %"
-msgstr "mm/s o %"
-
-#: src/libslic3r/PrintConfig.cpp:409
-msgid "External perimeters first"
-msgstr "Perimetri esterni per primi"
-
-#: src/libslic3r/PrintConfig.cpp:411
-msgid ""
-"Print contour perimeters from the outermost one to the innermost one instead "
-"of the default inverse order."
-msgstr ""
-"Stampa i perimetri di contorno dal più esterno al più interno invece "
-"dell'ordine predefinito inverso."
-
-#: src/libslic3r/PrintConfig.cpp:418
-msgid "Extra perimeters if needed"
-msgstr "Perimetro aggiuntivo se necessario"
-
-#: src/libslic3r/PrintConfig.cpp:420
-#, no-c-format
-msgid ""
-"Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r "
-"keeps adding perimeters, until more than 70% of the loop immediately above "
-"is supported."
-msgstr ""
-"Aggiunge più perimetri quando necessario per evitare spazi tra i perimetri "
-"inclinati. Slic3r continua ad aggiungere perimetri fino a quando almeno il "
-"70% del giro immediatamente sopra sarà supportato."
-
-#: src/libslic3r/PrintConfig.cpp:431
-msgid ""
-"The extruder to use (unless more specific extruder settings are specified). "
-"This value overrides perimeter and infill extruders, but not the support "
-"extruders."
-msgstr ""
-"Estrusore da utilizzare (a meno che non siano specificate impostazioni "
-"d'estrusore più specifiche). Questo valore scavalca l'estrusore dei "
-"perimetri e di riempimento, ma non l'estrusore dei supporti."
-
-#: src/libslic3r/PrintConfig.cpp:444
-msgid ""
-"Set this to the vertical distance between your nozzle tip and (usually) the "
-"X carriage rods. In other words, this is the height of the clearance "
-"cylinder around your extruder, and it represents the maximum depth the "
-"extruder can peek before colliding with other printed objects."
-msgstr ""
-"Imposta la distanza verticale tra la punta dell'ugello e (solitamente) le "
-"barre del carrello X. In altre parole, questa è l'altezza dello spazio "
-"cilindrico attorno l'estrusore, e indica la profondità massima che "
-"l'estrusore può affacciarsi prima di sbattere con altri oggetti stampati."
-
-#: src/libslic3r/PrintConfig.cpp:455
-msgid "Radius"
-msgstr "Raggio"
-
-#: src/libslic3r/PrintConfig.cpp:456
-msgid ""
-"Set this to the clearance radius around your extruder. If the extruder is "
-"not centered, choose the largest value for safety. This setting is used to "
-"check for collisions and to display the graphical preview in the plater."
-msgstr ""
-"Imposta il raggio di spazio attorno all'estrusore. Se l'estrusore non è "
-"centrato, scegli il valore più grande per sicurezza. Questa impostazione è "
-"usata per controllare le collisioni e per mostrare l'anteprima grafica nel "
-"piano."
-
-#: src/libslic3r/PrintConfig.cpp:467
-msgid "Extruder Color"
-msgstr "Colore estrusore"
-
-#: src/libslic3r/PrintConfig.cpp:468 src/libslic3r/PrintConfig.cpp:535
-msgid "This is only used in the Slic3r interface as a visual help."
-msgstr "Utilizzato solo nell'interfaccia di Slic3r come aiuto visivo."
-
-#: src/libslic3r/PrintConfig.cpp:475
-msgid "Extruder offset"
-msgstr "Offset estrusore"
-
-#: src/libslic3r/PrintConfig.cpp:476
-msgid ""
-"If your firmware doesn't handle the extruder displacement you need the G-"
-"code to take it into account. This option lets you specify the displacement "
-"of each extruder with respect to the first one. It expects positive "
-"coordinates (they will be subtracted from the XY coordinate)."
-msgstr ""
-"Se il firmware non gestisce lo spostamento dell'estrusore, è necessario che "
-"il G-code ne tenga conto. Questa opzione permette di specificare lo "
-"spostamento di ciascun estrusore rispetto al primo. Si aspetta delle "
-"coordinate positive (che saranno sottratte dalle coordinate XY)."
-
-#: src/libslic3r/PrintConfig.cpp:486
-msgid "Extrusion axis"
-msgstr "Asse estrusore"
-
-#: src/libslic3r/PrintConfig.cpp:487
-msgid ""
-"Use this option to set the axis letter associated to your printer's extruder "
-"(usually E but some printers use A)."
-msgstr ""
-"Usa questa opzione per impostare la lettera dell'asse associato "
-"all'estrusore della tua stampante (solitamente E, ma alcune stampanti "
-"utilizzano A)."
-
-#: src/libslic3r/PrintConfig.cpp:493
-msgid "Extrusion multiplier"
-msgstr "Moltiplicatore estrusione"
-
-#: src/libslic3r/PrintConfig.cpp:494
-msgid ""
-"This factor changes the amount of flow proportionally. You may need to tweak "
-"this setting to get nice surface finish and correct single wall widths. "
-"Usual values are between 0.9 and 1.1. If you think you need to change this "
-"more, check filament diameter and your firmware E steps."
-msgstr ""
-"Questo fattore modifica proporzionalmente il valore del flusso. Dovrai "
-"modificare questa impostazione per ottenere una buona finitura superficiale "
-"e correggere la larghezza delle pareti singole. Normalmente i valori sono "
-"tra 0.9 e 1.1. Se ritieni di dover modificare questo valore ulteriormente, "
-"controlla il diametro del filamento e i passi E del tuo firmware."
-
-#: src/libslic3r/PrintConfig.cpp:503
-msgid "Default extrusion width"
-msgstr "Larghezza estrusione predefinita"
-
-#: src/libslic3r/PrintConfig.cpp:505
-msgid ""
-"Set this to a non-zero value to allow a manual extrusion width. If left to "
-"zero, Slic3r derives extrusion widths from the nozzle diameter (see the "
-"tooltips for perimeter extrusion width, infill extrusion width etc). If "
-"expressed as percentage (for example: 230%), it will be computed over layer "
-"height."
-msgstr ""
-"Imposta questo valore diverso da zero per permettere la larghezza estrusione "
-"manuale. Se lasciato a zero, Slic3r ricava la larghezza d'estrusione dal "
-"diametro dell'ugello (vedi il suggerimento per la larghezza di estrusione "
-"perimetro,larghezza estrusione riempimento ecc.). Se espresso come "
-"percentuale (ad esempio 230%), sarà calcolato sull'altezza del layer."
-
-#: src/libslic3r/PrintConfig.cpp:509
-msgid "mm or % (leave 0 for auto)"
-msgstr "mm o % (lasciate 0 per l'automatico)"
-
-#: src/libslic3r/PrintConfig.cpp:515
-msgid "Keep fan always on"
-msgstr "Mantieni la ventola sempre accesa"
-
-#: src/libslic3r/PrintConfig.cpp:516
-msgid ""
-"If this is enabled, fan will never be disabled and will be kept running at "
-"least at its minimum speed. Useful for PLA, harmful for ABS."
-msgstr ""
-"Se questo è attivo, la ventola non verrà mai disattiva e verrà mantenuta "
-"attiva almeno alla velocità minima. Utile per il PLA, dannosa per l'ABS."
-
-#: src/libslic3r/PrintConfig.cpp:522
-msgid "Enable fan if layer print time is below"
-msgstr "Abilita ventola se il tempo di stampa del layer è inferiore"
-
-#: src/libslic3r/PrintConfig.cpp:523
-msgid ""
-"If layer print time is estimated below this number of seconds, fan will be "
-"enabled and its speed will be calculated by interpolating the minimum and "
-"maximum speeds."
-msgstr ""
-"Se il tempo stimato di stampa del layer è al di sotto di questo numero di "
-"secondi, la ventola sarà attivata e la sua velocità sarà calcolata "
-"interpolando la velocità minima e massima."
-
-#: src/libslic3r/PrintConfig.cpp:525 src/libslic3r/PrintConfig.cpp:1711
-msgid "approximate seconds"
-msgstr "secondi approssimativi"
-
-#: src/libslic3r/PrintConfig.cpp:534
-msgid "Color"
-msgstr "Colore"
-
-#: src/libslic3r/PrintConfig.cpp:541
-msgid "Filament notes"
-msgstr "Note filamento"
-
-#: src/libslic3r/PrintConfig.cpp:542
-msgid "You can put your notes regarding the filament here."
-msgstr "E' possibile inserire qui le note riguardanti il filamento."
-
-#: src/libslic3r/PrintConfig.cpp:551 src/libslic3r/PrintConfig.cpp:1196
-msgid "Max volumetric speed"
-msgstr "Massima velocità volumetrica"
-
-#: src/libslic3r/PrintConfig.cpp:552
-msgid ""
-"Maximum volumetric speed allowed for this filament. Limits the maximum "
-"volumetric speed of a print to the minimum of print and filament volumetric "
-"speed. Set to zero for no limit."
-msgstr ""
-"Massima velocità volumetrica consentita per questo filamento. Limita la "
-"velocità volumetrica massima di una stampa alla velocità volumetrica minima "
-"del filamento e di stampa. Imposta a zero per non avere limite."
-
-#: src/libslic3r/PrintConfig.cpp:555 src/libslic3r/PrintConfig.cpp:1199
-msgid "mm³/s"
-msgstr "mm³/s"
-
-#: src/libslic3r/PrintConfig.cpp:562
-msgid "Loading speed"
-msgstr "Velocità di caricamento"
-
-#: src/libslic3r/PrintConfig.cpp:563
-msgid "Speed used for loading the filament on the wipe tower. "
-msgstr "Velocità utilizzata per caricare il filamento sulla torre di spurgo. "
-
-#: src/libslic3r/PrintConfig.cpp:571
-msgid "Loading speed at the start"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:572
-msgid "Speed used at the very beginning of loading phase. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:580
-msgid "Unloading speed"
-msgstr "Velocità di scaricamento"
-
-#: src/libslic3r/PrintConfig.cpp:581
-msgid ""
-"Speed used for unloading the filament on the wipe tower (does not affect "
-"initial part of unloading just after ramming). "
-msgstr ""
-"Velocità usata per scaricare il filamento sulla wipe tower (non influisce "
-"sulla parte iniziale dello scaricamento dopo il ramming) "
-
-#: src/libslic3r/PrintConfig.cpp:590
-msgid "Unloading speed at the start"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:591
-msgid ""
-"Speed used for unloading the tip of the filament immediately after ramming. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:599
-msgid "Delay after unloading"
-msgstr "Ritardo dopo lo scarico"
-
-#: src/libslic3r/PrintConfig.cpp:600
-msgid ""
-"Time to wait after the filament is unloaded. May help to get reliable "
-"toolchanges with flexible materials that may need more time to shrink to "
-"original dimensions. "
-msgstr ""
-"Tempo di attesa dopo lo scaricamento del filamento. Può aiutare per ottenere "
-"cambi affidabili con materiali flessibili che potrebbero richiedere più "
-"tempo per tornare alle dimensioni originali. "
-
-#: src/libslic3r/PrintConfig.cpp:610
-msgid "Number of cooling moves"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:611
-msgid ""
-"Filament is cooled by being moved back and forth in the cooling tubes. "
-"Specify desired number of these moves "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:620
-msgid "Speed of the first cooling move"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:621
-msgid "Cooling moves are gradually accelerating beginning at this speed. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:629
-msgid "Minimal purge on wipe tower"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:630
-msgid ""
-"After a tool change, the exact position of the newly loaded filament inside "
-"the nozzle may not be known, and the filament pressure is likely not yet "
-"stable. Before purging the print head into an infill or a sacrificial "
-"object, Slic3r will always prime this amount of material into the wipe tower "
-"to produce successive infill or sacrificial object extrusions reliably."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:635
-msgid "mm³"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:641
-msgid "Speed of the last cooling move"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:642
-msgid "Cooling moves are gradually accelerating towards this speed. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:650
-msgid "Filament load time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:651
-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 ""
-
-#: src/libslic3r/PrintConfig.cpp:659
-msgid "Ramming parameters"
-msgstr "Parametri del ramming"
-
-#: src/libslic3r/PrintConfig.cpp:660
-msgid ""
-"This string is edited by RammingDialog and contains ramming specific "
-"parameters "
-msgstr ""
-"Questa stringa viene controllata da RammingDialog e contiene parametri "
-"specifici del ramming "
-
-#: src/libslic3r/PrintConfig.cpp:667
-msgid "Filament unload time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:668
-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 ""
-
-#: src/libslic3r/PrintConfig.cpp:677
-msgid ""
-"Enter your filament diameter here. Good precision is required, so use a "
-"caliper and do multiple measurements along the filament, then compute the "
-"average."
-msgstr ""
-"Inserisci qui il diametro del filamento. E' richiesta una buona precisione, "
-"pertanto usa un calibro ed esegui misurazioni multiple lungo il filamento, "
-"per poi ricavare una media."
-
-#: src/libslic3r/PrintConfig.cpp:685
-msgid "Density"
-msgstr "Densità "
-
-#: src/libslic3r/PrintConfig.cpp:686
-msgid ""
-"Enter your filament density here. This is only for statistical information. "
-"A decent way is to weigh a known length of filament and compute the ratio of "
-"the length to volume. Better is to calculate the volume directly through "
-"displacement."
-msgstr ""
-"Inserisci qui la densità del filamento. E' solo un'informazione statistica. "
-"Un metodo approssimativo consiste nel pesare un pezzo di filamento di "
-"lunghezza nota, e calcolare il rapporto tra lunghezza e volume. E' meglio "
-"calcolare il volume direttamente attraverso il dislocamento."
-
-#: src/libslic3r/PrintConfig.cpp:689
-msgid "g/cm³"
-msgstr "g/cm³"
-
-#: src/libslic3r/PrintConfig.cpp:695
-msgid "Filament type"
-msgstr "Tipo filamento"
-
-#: src/libslic3r/PrintConfig.cpp:696
-msgid "The filament material type for use in custom G-codes."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:712
-msgid "Soluble material"
-msgstr "Materiale solubile"
-
-#: src/libslic3r/PrintConfig.cpp:713
-msgid "Soluble material is most likely used for a soluble support."
-msgstr "Il materiale solubile è comunemente usato per un supporto solubile."
-
-#: src/libslic3r/PrintConfig.cpp:719
-msgid ""
-"Enter your filament cost per kg here. This is only for statistical "
-"information."
-msgstr ""
-"Inserisci qui il costo del filamento per kg. E' solo un'informazione "
-"statistica."
-
-#: src/libslic3r/PrintConfig.cpp:720
-msgid "money/kg"
-msgstr "soldi/kg"
-
-#: src/libslic3r/PrintConfig.cpp:729
-msgid "Fill angle"
-msgstr "Angolo riempimento"
-
-#: src/libslic3r/PrintConfig.cpp:731
-msgid ""
-"Default base angle for infill orientation. Cross-hatching will be applied to "
-"this. Bridges will be infilled using the best direction Slic3r can detect, "
-"so this setting does not affect them."
-msgstr ""
-"Angolo base predefinito per l'orientamento del riempimento. Su questo verrà "
-"applicato il tratteggio. I bridge saranno riempiti utilizzando la migliore "
-"direzione che Slic3r può determinare, quindi questa impostazione non "
-"influisce sui bridge."
-
-#: src/libslic3r/PrintConfig.cpp:744
-msgid "Fill density"
-msgstr "Densità riempimento"
-
-#: src/libslic3r/PrintConfig.cpp:746
-msgid "Density of internal infill, expressed in the range 0% - 100%."
-msgstr "Densità del riempimento interno, espresso nell'intervallo 0% - 100%."
-
-#: src/libslic3r/PrintConfig.cpp:782
-msgid "Fill pattern"
-msgstr "Schema riempimento"
-
-#: src/libslic3r/PrintConfig.cpp:784
-msgid "Fill pattern for general low-density infill."
-msgstr "Schema per riempimento comune a bassa densità ."
-
-#: src/libslic3r/PrintConfig.cpp:801
-msgid "Grid"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:802
-msgid "Triangles"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:803
-msgid "Stars"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:804
-msgid "Cubic"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:805
-msgid "Line"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:807 src/libslic3r/PrintConfig.cpp:2023
-msgid "Honeycomb"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:808
-msgid "3D Honeycomb"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:809
-msgid "Gyroid"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:826
-#: src/libslic3r/PrintConfig.cpp:835 src/libslic3r/PrintConfig.cpp:871
-msgid "First layer"
-msgstr "Primo strato"
-
-#: src/libslic3r/PrintConfig.cpp:817
-msgid ""
-"This is the acceleration your printer will use for first layer. Set zero to "
-"disable acceleration control for first layer."
-msgstr ""
-"Questa è l'accelerazione che la stampante utilizzerà per il primo layer. "
-"Imposta a zero per disattivare il controllo dell'accelerazione per il primo "
-"layer."
-
-#: src/libslic3r/PrintConfig.cpp:827
-msgid ""
-"Heated build plate temperature for the first layer. Set this to zero to "
-"disable bed temperature control commands in the output."
-msgstr ""
-"Temperatura piano riscaldato per il primo layer. Imposta a zero per "
-"disattivare i comandi di controllo temperatura nell'output."
-
-#: src/libslic3r/PrintConfig.cpp:837
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for first "
-"layer. You can use this to force fatter extrudates for better adhesion. If "
-"expressed as percentage (for example 120%) it will be computed over first "
-"layer height. If set to zero, it will use the default extrusion width."
-msgstr ""
-"Imposta questo valore diverso da zero per impostare la larghezza di "
-"estrusione manuale per il primo layer. Puoi usarlo per forzare un'estrusione "
-"più grossa per avere un'adesione migliore. Se espresso in percentuale (per "
-"esempio 120%) sarà calcolato sull'altezza del primo layer. Se impostato a "
-"zero, sarà utilizzata la larghezza di estrusione predefinita."
-
-#: src/libslic3r/PrintConfig.cpp:848
-msgid "First layer height"
-msgstr "Altezza del primo strato"
-
-#: src/libslic3r/PrintConfig.cpp:850
-msgid ""
-"When printing with very low layer heights, you might still want to print a "
-"thicker bottom layer to improve adhesion and tolerance for non perfect build "
-"plates. This can be expressed as an absolute value or as a percentage (for "
-"example: 150%) over the default layer height."
-msgstr ""
-"Durante la stampa di layer molto bassi, potresti comunque aver bisogno di "
-"stampare layer inferiori più spessi per migliorare l'adesione e la "
-"tolleranza per piani di stampa non perfetti. Questo può essere espresso come "
-"un valore assoluto o come una percentuale (per esempio: 150%) sull'altezza "
-"layer predefinita."
-
-#: src/libslic3r/PrintConfig.cpp:854 src/libslic3r/PrintConfig.cpp:1003
-#: src/libslic3r/PrintConfig.cpp:1884
-msgid "mm or %"
-msgstr "mm o %"
-
-#: src/libslic3r/PrintConfig.cpp:860
-msgid "First layer speed"
-msgstr "Velocità del primo strato"
-
-#: src/libslic3r/PrintConfig.cpp:861
-msgid ""
-"If expressed as absolute value in mm/s, this speed will be applied to all "
-"the print moves of the first layer, regardless of their type. If expressed "
-"as a percentage (for example: 40%) it will scale the default speeds."
-msgstr ""
-"Se espresso come valore assoluto in mm/s, questa velocità sarà applicata a "
-"tutti i movimenti di stampa del primo layer, a prescindere dal tipo di "
-"movimento. Se espresso come percentuale (per esempio: 40%) verranno scalate "
-"le velocità predefinite."
-
-#: src/libslic3r/PrintConfig.cpp:872
-msgid ""
-"Extruder temperature for first layer. If you want to control temperature "
-"manually during print, set this to zero to disable temperature control "
-"commands in the output file."
-msgstr ""
-"Temperatura estrusore per il primo layer. Se vuoi controllare manualmente la "
-"temperatura durante la stampa, imposta questo a zero per disattivare i "
-"comandi di controllo temperatura nel file di output."
-
-#: src/libslic3r/PrintConfig.cpp:882
-msgid ""
-"Speed for filling small gaps using short zigzag moves. Keep this reasonably "
-"low to avoid too much shaking and resonance issues. Set zero to disable gaps "
-"filling."
-msgstr ""
-"Velocità per il riempimento degli spazi stretti utilizzando brevi movimenti "
-"a zig-zag. Mantieni questa velocità ragionevolmente bassa per evitare "
-"problemi di oscillazione e risonanza. Imposta a zero per disabilitare il "
-"riempimento degli spazi."
-
-#: src/libslic3r/PrintConfig.cpp:890
-msgid "Verbose G-code"
-msgstr "G-code Verbose"
-
-#: src/libslic3r/PrintConfig.cpp:891
-msgid ""
-"Enable this to get a commented G-code file, with each line explained by a "
-"descriptive text. If you print from SD card, the additional weight of the "
-"file could make your firmware slow down."
-msgstr ""
-"Abilita per ottenere un file G-code commentato, con un testo descrittivo per "
-"ciascuna linea. Se stampi da memoria SD, il peso aggiuntivo del file "
-"potrebbe rallentare il tuo firmware."
-
-#: src/libslic3r/PrintConfig.cpp:899
-msgid "G-code flavor"
-msgstr "Tipologia di G-code"
-
-#: src/libslic3r/PrintConfig.cpp:900
-msgid ""
-"Some G/M-code commands, including temperature control and others, are not "
-"universal. Set this option to your printer's firmware to get a compatible "
-"output. The \"No extrusion\" flavor prevents Slic3r from exporting any "
-"extrusion value at all."
-msgstr ""
-"Alcuni comandi G/M-code, incluso il controllo temperatura ed altri, non sono "
-"universali. Attiva questa impostazione sul firmware della tua stampante per "
-"ottenere un output compatibile. Il tipo \"No estrusione\" impedisce che "
-"Slic3r esporti qualunque valore di estrusione."
-
-#: src/libslic3r/PrintConfig.cpp:924
-msgid "No extrusion"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:929
-msgid "High extruder current on filament swap"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:930
-msgid ""
-"It may be beneficial to increase the extruder motor current during the "
-"filament exchange sequence to allow for rapid ramming feed rates and to "
-"overcome resistance when loading a filament with an ugly shaped tip."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:939
-msgid ""
-"This is the acceleration your printer will use for infill. Set zero to "
-"disable acceleration control for infill."
-msgstr ""
-"Questa è l'accelerazione che la stampante utilizzerà per il riempimento. "
-"Imposta a zero per disattivare il controllo dell'accelerazione per il "
-"riempimento."
-
-#: src/libslic3r/PrintConfig.cpp:948
-msgid "Combine infill every"
-msgstr "Combina riempimento ogni"
-
-#: src/libslic3r/PrintConfig.cpp:950
-msgid ""
-"This feature allows to combine infill and speed up your print by extruding "
-"thicker infill layers while preserving thin perimeters, thus accuracy."
-msgstr ""
-"Questa funzione permette di combinare il riempimento e velocizza il tempo di "
-"stampa estrudendo layer di infill più spessi conservando tuttavia i "
-"perimetri sottili, e quindi l'accuratezza."
-
-#: src/libslic3r/PrintConfig.cpp:954
-msgid "Combine infill every n layers"
-msgstr "Combina riempimento ogni n layer"
-
-#: src/libslic3r/PrintConfig.cpp:960
-msgid "Infill extruder"
-msgstr "Estrusore riempimento"
-
-#: src/libslic3r/PrintConfig.cpp:962
-msgid "The extruder to use when printing infill."
-msgstr "L'estrusore da utilizzare per la stampa del riempimento."
-
-#: src/libslic3r/PrintConfig.cpp:971
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill. If "
-"left zero, default extrusion width will be used if set, otherwise 1.125 x "
-"nozzle diameter will be used. You may want to use fatter extrudates to speed "
-"up the infill and make your parts stronger. If expressed as percentage (for "
-"example 90%) it will be computed over layer height."
-msgstr ""
-"Imposta questo valore diverso da zero per impostare una larghezza "
-"d'estrusione manuale per il riempimento. Se lasciato a zero, verrà usata la "
-"larghezza d'estrusione predefinita, altrimenti verrà utilizzato il valore "
-"1.125 x il diametro dell'ugello. Dovresti usare un estrusione più grossa per "
-"velocizzare la stampa del riempimento e rendere le tue parti più robuste. Se "
-"espresso in percentuale (per esempio 90%) verrà calcolato sull'altezza del "
-"layer."
-
-#: src/libslic3r/PrintConfig.cpp:981
-msgid "Infill before perimeters"
-msgstr "Riempimento prima dei perimetri"
-
-#: src/libslic3r/PrintConfig.cpp:982
-msgid ""
-"This option will switch the print order of perimeters and infill, making the "
-"latter first."
-msgstr ""
-"Questa opzione sostituirà l'ordine di stampa dei perimetri e del "
-"riempimento, realizzando per primo il secondo."
-
-#: src/libslic3r/PrintConfig.cpp:988
-msgid "Only infill where needed"
-msgstr "Riempimento solo quando necessario"
-
-#: src/libslic3r/PrintConfig.cpp:990
-msgid ""
-"This option will limit infill to the areas actually needed for supporting "
-"ceilings (it will act as internal support material). If enabled, slows down "
-"the G-code generation due to the multiple checks involved."
-msgstr ""
-"Questa opzione limiterà il riempimento alle aree che effettivamente hanno "
-"bisogno di un supporto per i soffitti (si comporterà come un materiale di "
-"supporto interno). Se attivato, rallenterà la generazione del G-code a causa "
-"dei molteplici controlli necessari."
-
-#: src/libslic3r/PrintConfig.cpp:998
-msgid "Infill/perimeters overlap"
-msgstr "Sovrapposizione riempimento/perimetri"
-
-#: src/libslic3r/PrintConfig.cpp:1000
-msgid ""
-"This setting applies an additional overlap between infill and perimeters for "
-"better bonding. Theoretically this shouldn't be needed, but backlash might "
-"cause gaps. If expressed as percentage (example: 15%) it is calculated over "
-"perimeter extrusion width."
-msgstr ""
-"Questa impostazione applica una sovrapposizione aggiuntiva tra perimetri e "
-"riempimento per una migliore unione. Teoricamente non sarebbe necessario, ma "
-"i contraccolpi possono causare spazi vuoi. Se espresso in percentuale (per "
-"esempio: 15%) viene calcolato sulla larghezza d'estrusione del perimetro."
-
-#: src/libslic3r/PrintConfig.cpp:1012
-msgid "Speed for printing the internal fill. Set to zero for auto."
-msgstr ""
-"Velocità per la stampa del riempimento interno. Imposta a zero per auto."
-
-#: src/libslic3r/PrintConfig.cpp:1020
-msgid "Inherits profile"
-msgstr "Eredita profilo"
-
-#: src/libslic3r/PrintConfig.cpp:1021
-msgid "Name of the profile, from which this profile inherits."
-msgstr "Nome del profilo da cui questo profilo eredita."
-
-#: src/libslic3r/PrintConfig.cpp:1032
-msgid "Interface shells"
-msgstr "Gusci interfaccia"
-
-#: src/libslic3r/PrintConfig.cpp:1033
-msgid ""
-"Force the generation of solid shells between adjacent materials/volumes. "
-"Useful for multi-extruder prints with translucent materials or manual "
-"soluble support material."
-msgstr ""
-"Forza la generazione di perimetri solidi tra volumi o materiali adiacenti. "
-"Utile per stampe multi estrusore con materiali traslucidi o supporti "
-"solubili manuali."
-
-#: src/libslic3r/PrintConfig.cpp:1043
-msgid ""
-"This custom code is inserted at every layer change, right after the Z move "
-"and before the extruder moves to the first layer point. Note that you can "
-"use placeholder variables for all Slic3r settings as well as [layer_num] and "
-"[layer_z]."
-msgstr ""
-"Questo codice personalizzato è inserito ad ogni cambio layer, subito dopo il "
-"movimento Z e prima che l'estrusore si sposti al punto del primo layer. Si "
-"fa presente che puoi usare variabili sostitutive per tutte le impostazioni "
-"di Slic3r sia per [layer_num] che per [layer_z]."
-
-#: src/libslic3r/PrintConfig.cpp:1054
-msgid "Supports remaining times"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1055
-msgid ""
-"Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute "
-"intervals into the G-code to let the firmware show accurate remaining time. "
-"As of now only the Prusa i3 MK3 firmware recognizes M73. Also the i3 MK3 "
-"firmware supports M73 Qxx Sxx for the silent mode."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1063
-msgid "Supports silent mode"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1064
-msgid "Set silent mode for the G-code flavor"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1087
-msgid "Maximum feedrate %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1089
-msgid "Maximum feedrate of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1097
-msgid "Maximum acceleration %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1099
-msgid "Maximum acceleration of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1107
-msgid "Maximum jerk %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1109
-msgid "Maximum jerk of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122
-msgid "Minimum feedrate when extruding"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133
-msgid "Minimum travel feedrate"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144
-msgid "Maximum acceleration when extruding"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1153 src/libslic3r/PrintConfig.cpp:1155
-msgid "Maximum acceleration when retracting"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1173
-msgid "Max"
-msgstr "Massimo"
-
-#: src/libslic3r/PrintConfig.cpp:1164
-msgid "This setting represents the maximum speed of your fan."
-msgstr "Questa impostazione rappresenta la velocità massima della ventola."
-
-#: src/libslic3r/PrintConfig.cpp:1174
-#, no-c-format
-msgid ""
-"This is the highest printable layer height for this extruder, used to cap "
-"the variable layer height and support layer height. Maximum recommended "
-"layer height is 75% of the extrusion width to achieve reasonable inter-layer "
-"adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter."
-msgstr ""
-"Questa è la massima altezza layer stampabile per questo estrusore, usata "
-"come limite per l'altezza variabile dei layer e l'altezza dei layer di "
-"supporto. L'altezza layer massima raccomandata è il 75% della larghezza di "
-"estrusione, in modo da ottenere una buona adesione tra i layer. Se impostato "
-"a 0, l'altezza layer è limitata al 75% del diametro dell'ugello."
-
-#: src/libslic3r/PrintConfig.cpp:1185
-msgid "Max print speed"
-msgstr "Massima velocità di stampa"
-
-#: src/libslic3r/PrintConfig.cpp:1186
-msgid ""
-"When setting other speed settings to 0 Slic3r will autocalculate the optimal "
-"speed in order to keep constant extruder pressure. This experimental setting "
-"is used to set the highest print speed you want to allow."
-msgstr ""
-"Quando le altre velocità sono impostate a 0, Slic3r calcolerà "
-"automaticamente la velocità ottimale in modo da mantenere costante la "
-"pressione dell'estrusore. Questa impostazione sperimentale è utilizzata per "
-"impostare la velocità massima di stampa che vuoi permettere."
-
-#: src/libslic3r/PrintConfig.cpp:1197
-msgid ""
-"This experimental setting is used to set the maximum volumetric speed your "
-"extruder supports."
-msgstr ""
-"Questa impostazione sperimentale è utilizzata per impostare la massima "
-"velocità volumetrica supportata dal tuo estrusore."
-
-#: src/libslic3r/PrintConfig.cpp:1206
-msgid "Max volumetric slope positive"
-msgstr "Massima pendenza volumetrica positiva"
-
-#: src/libslic3r/PrintConfig.cpp:1207 src/libslic3r/PrintConfig.cpp:1219
-msgid ""
-"This experimental setting is used to limit the speed of change in extrusion "
-"rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate "
-"of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/"
-"s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds."
-msgstr ""
-"Questa impostazione sperimentale è utilizzata per limitare la velocità del "
-"cambio nel fattore di estrusione. Un valore di 1.8 mm³/s² assicura che un "
-"cambio dal fattore di estrusione di 1.8 mm³/s (larghezza estrusione 0.45mm, "
-"altezza estrusione di 0.2mm, avanzamento 20 mm/s) a 5.4 mm³/s (avanzamento a "
-"60 mm/s) impiegherà almeno 2 secondi."
-
-#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1223
-msgid "mm³/s²"
-msgstr "mm³/s²"
-
-#: src/libslic3r/PrintConfig.cpp:1218
-msgid "Max volumetric slope negative"
-msgstr "Massima pendenza volumetrica negativa"
-
-#: src/libslic3r/PrintConfig.cpp:1230 src/libslic3r/PrintConfig.cpp:1240
-msgid "Min"
-msgstr "Minimo"
-
-#: src/libslic3r/PrintConfig.cpp:1231
-msgid "This setting represents the minimum PWM your fan needs to work."
-msgstr ""
-"Questa impostazione rappresenta la PWM minima (modulazione di larghezza di "
-"impulso) che la ventola necessita per lavorare."
-
-#: src/libslic3r/PrintConfig.cpp:1241
-msgid ""
-"This is the lowest printable layer height for this extruder and limits the "
-"resolution for variable layer height. Typical values are between 0.05 mm and "
-"0.1 mm."
-msgstr ""
-"Questa è l'altezza minima stampabile per questo estrusore e limita la "
-"risoluzione per l'altezza variabile di layer. Valori tipici sono compresi "
-"tra 0.05 mm e 0.1 mm."
-
-#: src/libslic3r/PrintConfig.cpp:1250
-msgid "Min print speed"
-msgstr "Velocità minima di stampa"
-
-#: src/libslic3r/PrintConfig.cpp:1251
-msgid "Slic3r will not scale speed down below this speed."
-msgstr "Slic3r non rallenterà la velocità al di sotto di questa."
-
-#: src/libslic3r/PrintConfig.cpp:1259
-msgid "Minimal filament extrusion length"
-msgstr "Lunghezza di estrusione minima del filamento"
-
-#: src/libslic3r/PrintConfig.cpp:1260
-msgid ""
-"Generate no less than the number of skirt loops required to consume the "
-"specified amount of filament on the bottom layer. For multi-extruder "
-"machines, this minimum applies to each extruder."
-msgstr ""
-"Genera almeno il numero di skirt necessari per consumare la quantità di "
-"filamento specificata per il primo strato. Per le macchine multi estrusore, "
-"questo minimo riguarda ciascun estrusore."
-
-#: src/libslic3r/PrintConfig.cpp:1270
-msgid "Configuration notes"
-msgstr "Note di configurazione"
-
-#: src/libslic3r/PrintConfig.cpp:1271
-msgid ""
-"You can put here your personal notes. This text will be added to the G-code "
-"header comments."
-msgstr ""
-"E' possibile inserire qui le note personali. Questo testo verrà aggiunto nei "
-"commenti iniziali del G-code."
-
-#: src/libslic3r/PrintConfig.cpp:1281
-msgid "Nozzle diameter"
-msgstr "Diametro ugello"
-
-#: src/libslic3r/PrintConfig.cpp:1282
-msgid ""
-"This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)"
-msgstr ""
-"Questo è il diametro dell'ugello dell'estrusore (per esempio: 0.5, 0.35 ecc.)"
-
-#: src/libslic3r/PrintConfig.cpp:1288
-msgid "Host Type"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1289
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field must contain "
-"the kind of the host."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1301
-msgid "API Key / Password"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1302
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the API Key or the password required for authentication."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1317
-msgid "Hostname, IP or URL"
-msgstr "Hostname, IP o URL"
-
-#: src/libslic3r/PrintConfig.cpp:1318
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the hostname, IP address or URL of the printer host instance."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1325
-msgid "Only retract when crossing perimeters"
-msgstr "Ritrai solo se si attraversa un perimetro"
-
-#: src/libslic3r/PrintConfig.cpp:1326
-msgid ""
-"Disables retraction when the travel path does not exceed the upper layer's "
-"perimeters (and thus any ooze will be probably invisible)."
-msgstr ""
-"Disabilita la retrazione quando la traiettoria del movimento non oltrepassa "
-"i perimetri del layer superiore (pertanto qualunque scolatura sarà "
-"probabilmente invisibile)."
-
-#: src/libslic3r/PrintConfig.cpp:1334
-msgid ""
-"This option will drop the temperature of the inactive extruders to prevent "
-"oozing. It will enable a tall skirt automatically and move extruders outside "
-"such skirt when changing temperatures."
-msgstr ""
-"Questa opzione abbasserà la temperatura degli estrusori inattivi per "
-"prevenire oozing. Attiverà automaticamente uno skirt alto e muoverà "
-"l'estrusore al di fuori di questo skirt al cambiamento di temperature."
-
-#: src/libslic3r/PrintConfig.cpp:1342
-msgid "Output filename format"
-msgstr "Formato del file di Output"
-
-#: src/libslic3r/PrintConfig.cpp:1343
-msgid ""
-"You can use all configuration options as variables inside this template. For "
-"example: [layer_height], [fill_density] etc. You can also use [timestamp], "
-"[year], [month], [day], [hour], [minute], [second], [version], "
-"[input_filename], [input_filename_base]."
-msgstr ""
-"E' possibile utilizzare tutte le opzioni di configurazione come variabili "
-"all'interno di questo modello. Ad esempio: [layer_height], [fill_density] "
-"ecc. Puoi anche usare [timestamp], [year], [month], [day], [hour], [minute], "
-"[second], [version], [input_filename ], [nome_filename_input]."
-
-#: src/libslic3r/PrintConfig.cpp:1353
-msgid "Detect bridging perimeters"
-msgstr "Rileva perimetri ponte"
-
-#: src/libslic3r/PrintConfig.cpp:1355
-msgid ""
-"Experimental option to adjust flow for overhangs (bridge flow will be used), "
-"to apply bridge speed to them and enable fan."
-msgstr ""
-"Opzione sperimentale per regolare il flusso delle sporgenze (sarà utilizzato "
-"il flusso dei bridge), applicare la velocità del bridge e attivare la "
-"ventola."
-
-#: src/libslic3r/PrintConfig.cpp:1362
-msgid "Filament parking position"
-msgstr "Posizione di parking del filamento"
-
-#: src/libslic3r/PrintConfig.cpp:1363
-msgid ""
-"Distance of the extruder tip from the position where the filament is parked "
-"when unloaded. This should match the value in printer firmware. "
-msgstr ""
-"Distanza della punta dell'estrusore dalla posizione dove il filamento viene "
-"posto mentre viene scaricato. Dovrebbe essere uguale al valore nel firmware "
-"della stampante. "
-
-#: src/libslic3r/PrintConfig.cpp:1372
-msgid "Extra loading distance"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1373
-msgid ""
-"When set to zero, the distance the filament is moved from parking position "
-"during load is exactly the same as it was moved back during unload. When "
-"positive, it is loaded further, if negative, the loading move is shorter "
-"than unloading. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1382 src/libslic3r/PrintConfig.cpp:1402
-#: src/libslic3r/PrintConfig.cpp:1415 src/libslic3r/PrintConfig.cpp:1425
-msgid "Perimeters"
-msgstr "Perimetri"
-
-#: src/libslic3r/PrintConfig.cpp:1383
-msgid ""
-"This is the acceleration your printer will use for perimeters. A high value "
-"like 9000 usually gives good results if your hardware is up to the job. Set "
-"zero to disable acceleration control for perimeters."
-msgstr ""
-"Questa è l'accelerazione che la stampante utilizzerà per i perimetri. Un "
-"valore alto come 9000 solitamente produce dei buoni risultati se l'hardware "
-"è all'altezza. Imposta a zero per disattivare il controllo "
-"dell'accelerazione per i perimetri."
-
-#: src/libslic3r/PrintConfig.cpp:1392
-msgid "Perimeter extruder"
-msgstr "Estrusore perimetro"
-
-#: src/libslic3r/PrintConfig.cpp:1394
-msgid ""
-"The extruder to use when printing perimeters and brim. First extruder is 1."
-msgstr ""
-"L'estrusore da utilizzare per la stampa dei perimetri e del brim. Il primo "
-"estrusore è 1."
-
-#: src/libslic3r/PrintConfig.cpp:1404
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for perimeters. "
-"You may want to use thinner extrudates to get more accurate surfaces. If "
-"left zero, default extrusion width will be used if set, otherwise 1.125 x "
-"nozzle diameter will be used. If expressed as percentage (for example 200%) "
-"it will be computed over layer height."
-msgstr ""
-"Imposta questo valore diverso da zero per impostare una larghezza "
-"d'estrusione manuale per i perimetri. Dovresti scegliere un'estrusione più "
-"sottile per ottenere superfici più precise. Se lasciato a zero, verrà usata "
-"la larghezza d'estrusione predefinita, altrimenti verrà utilizzato il valore "
-"1.125 x il diametro dell'ugello. Se espresso in percentuale (per esempio "
-"200%) verrà calcolato sull'altezza del layer."
-
-#: src/libslic3r/PrintConfig.cpp:1417
-msgid ""
-"Speed for perimeters (contours, aka vertical shells). Set to zero for auto."
-msgstr ""
-"Velocità per i perimetri (contorni, conosciuti anche come gusci verticali). "
-"Imposta a zero per automatizzare."
-
-#: src/libslic3r/PrintConfig.cpp:1427
-msgid ""
-"This option sets the number of perimeters to generate for each layer. Note "
-"that Slic3r may increase this number automatically when it detects sloping "
-"surfaces which benefit from a higher number of perimeters if the Extra "
-"Perimeters option is enabled."
-msgstr ""
-"Questa opzione imposta il numero di perimetri da generare per ogni layer. Da "
-"notare che Slic3r aumenta questo numero automaticamente quando rileva "
-"superfici inclinate che potrebbero beneficiare di un aumento del numero dei "
-"perimetri se l'opzione Perimetri aggiuntivi è attiva."
-
-#: src/libslic3r/PrintConfig.cpp:1431
-msgid "(minimum)"
-msgstr "(minimo)"
-
-#: src/libslic3r/PrintConfig.cpp:1439
-msgid ""
-"If you want to process the output G-code through custom scripts, just list "
-"their absolute paths here. Separate multiple scripts with a semicolon. "
-"Scripts will be passed the absolute path to the G-code file as the first "
-"argument, and they can access the Slic3r config settings by reading "
-"environment variables."
-msgstr ""
-"Se vuoi processare il G-code in uscita con script personalizzati, basta "
-"elencare qui il loro percorso assoluto. Separa i diversi script con un punto "
-"e virgola. Gli script passeranno il percorso assoluto nel G-code come primo "
-"argomento, e potranno accedere alle impostazioni di configurazione di Slic3r "
-"leggendo le variabili di ambiente."
-
-#: src/libslic3r/PrintConfig.cpp:1452
-msgid "Printer type"
-msgstr "Tipo stampante"
-
-#: src/libslic3r/PrintConfig.cpp:1453
-msgid "Type of the printer."
-msgstr "Tipologia stampante."
-
-#: src/libslic3r/PrintConfig.cpp:1457
-msgid "Printer notes"
-msgstr "Note stampante"
-
-#: src/libslic3r/PrintConfig.cpp:1458
-msgid "You can put your notes regarding the printer here."
-msgstr "E' possibile inserire qui le note riguardanti la stampante."
-
-#: src/libslic3r/PrintConfig.cpp:1467
-msgid "Printer vendor"
-msgstr "Venditore della stampante"
-
-#: src/libslic3r/PrintConfig.cpp:1468
-msgid "Name of the printer vendor."
-msgstr "Nome del venditore della stampante."
-
-#: src/libslic3r/PrintConfig.cpp:1472
-msgid "Printer variant"
-msgstr "Variante della stampante"
-
-#: src/libslic3r/PrintConfig.cpp:1473
-msgid ""
-"Name of the printer variant. For example, the printer variants may be "
-"differentiated by a nozzle diameter."
-msgstr ""
-"Nome della variante di stampante. Per esempio le varianti di una stampante "
-"potrebbero differire per diametro dell'ugello."
-
-#: src/libslic3r/PrintConfig.cpp:1483
-msgid "Raft layers"
-msgstr "Layer raft"
-
-#: src/libslic3r/PrintConfig.cpp:1485
-msgid ""
-"The object will be raised by this number of layers, and support material "
-"will be generated under it."
-msgstr ""
-"L'oggetto verrà sollevato da questo numero di layer, e verrà generato il "
-"materiale di supporto al di sotto di questo."
-
-#: src/libslic3r/PrintConfig.cpp:1494
-msgid "Resolution"
-msgstr "Risoluzione"
-
-#: src/libslic3r/PrintConfig.cpp:1495
-msgid ""
-"Minimum detail resolution, used to simplify the input file for speeding up "
-"the slicing job and reducing memory usage. High-resolution models often "
-"carry more detail than printers can render. Set to zero to disable any "
-"simplification and use full resolution from input."
-msgstr ""
-"Risoluzione minima dettaglio, utilizzato per semplificare il file input "
-"accelerando lo slicing e riducendo l'utilizzo di memoria. I file ad alta "
-"risoluzione spesso hanno più dettaglio di quanto la stampante possa "
-"generare. Impostate a zero per disabilitare la semplificazione e utilizzare "
-"la risoluzione completa."
-
-#: src/libslic3r/PrintConfig.cpp:1506
-msgid "Minimum travel after retraction"
-msgstr "Spostamento minimo dopo una ritrazione"
-
-#: src/libslic3r/PrintConfig.cpp:1507
-msgid ""
-"Retraction is not triggered when travel moves are shorter than this length."
-msgstr ""
-"La retrazione non è attivata quando i movimenti di spostamento sono più "
-"brevi di questa lunghezza."
-
-#: src/libslic3r/PrintConfig.cpp:1514
-msgid "Retract amount before wipe"
-msgstr "Retrai la quantità prima di pulire"
-
-#: src/libslic3r/PrintConfig.cpp:1515
-msgid ""
-"With bowden extruders, it may be wise to do some amount of quick retract "
-"before doing the wipe movement."
-msgstr ""
-"Con estrusori bowden, potrebbe essere saggio effettuare una certa retrazione "
-"veloce prima di effettuare un movimento di pulizia."
-
-#: src/libslic3r/PrintConfig.cpp:1523
-msgid "Retract on layer change"
-msgstr "Ritrai al cambio layer"
-
-#: src/libslic3r/PrintConfig.cpp:1524
-msgid "This flag enforces a retraction whenever a Z move is done."
-msgstr ""
-"Questo contrassegno forza una retrazione ogni volta che viene effettuato un "
-"movimento di Z."
-
-#: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:1539
-msgid "Length"
-msgstr "Lunghezza"
-
-#: src/libslic3r/PrintConfig.cpp:1531
-msgid "Retraction Length"
-msgstr "Lunghezza Retrazione"
-
-#: src/libslic3r/PrintConfig.cpp:1532
-msgid ""
-"When retraction is triggered, filament is pulled back by the specified "
-"amount (the length is measured on raw filament, before it enters the "
-"extruder)."
-msgstr ""
-"Quando viene attivata la retrazione, il filamento viene ritirato per la "
-"quantità specificata (la lunghezza è misurata sul filamento grezzo, prima "
-"che questo entri dentro l'estrusore)."
-
-#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1544
-msgid "mm (zero to disable)"
-msgstr "mm (imposta a zero per disabilitare)"
-
-#: src/libslic3r/PrintConfig.cpp:1540
-msgid "Retraction Length (Toolchange)"
-msgstr "Lunghezza Retrazione (cambio tool)"
-
-#: src/libslic3r/PrintConfig.cpp:1541
-msgid ""
-"When retraction is triggered before changing tool, filament is pulled back "
-"by the specified amount (the length is measured on raw filament, before it "
-"enters the extruder)."
-msgstr ""
-"Quando viene attivata la retrazione prima del cambio strumento, il filamento "
-"è ritirato per la quantità specificata (la lunghezza è misurata sul "
-"filamento grezzo, prima che questo entri dentro l'estrusore)."
-
-#: src/libslic3r/PrintConfig.cpp:1550
-msgid "Lift Z"
-msgstr "Solleva Z"
-
-#: src/libslic3r/PrintConfig.cpp:1551
-msgid ""
-"If you set this to a positive value, Z is quickly raised every time a "
-"retraction is triggered. When using multiple extruders, only the setting for "
-"the first extruder will be considered."
-msgstr ""
-"Se inserisci un valore positivo, Z verrà alzato velocemente ogni volta che "
-"si innesca una retrazione. Quando si utilizzano diversi estrusori, verrà "
-"considerato solamente l'impostazione del primo estrusore."
-
-#: src/libslic3r/PrintConfig.cpp:1559
-msgid "Above Z"
-msgstr "Sopra Z"
-
-#: src/libslic3r/PrintConfig.cpp:1560
-msgid "Only lift Z above"
-msgstr "Eleva solo Z al di sopra"
-
-#: src/libslic3r/PrintConfig.cpp:1561
-msgid ""
-"If you set this to a positive value, Z lift will only take place above the "
-"specified absolute Z. You can tune this setting for skipping lift on the "
-"first layers."
-msgstr ""
-"Se inserisci un valore positivo, il sollevamento Z avverrà solamente sopra "
-"un certo specifico valore assoluto Z. Puoi regolare questa impostazione per "
-"evitare il sollevamento nei primi layer."
-
-#: src/libslic3r/PrintConfig.cpp:1569
-msgid "Below Z"
-msgstr "Sotto Z"
-
-#: src/libslic3r/PrintConfig.cpp:1570
-msgid "Only lift Z below"
-msgstr "Eleva solo Z al di sotto"
-
-#: src/libslic3r/PrintConfig.cpp:1571
-msgid ""
-"If you set this to a positive value, Z lift will only take place below the "
-"specified absolute Z. You can tune this setting for limiting lift to the "
-"first layers."
-msgstr ""
-"Se inserisci un valore positivo, il sollevamento Z avverrà solamente sotto "
-"un certo specifico valore assoluto Z. Puoi regolare questa impostazione per "
-"limitare il sollevamento ai primi layer."
-
-#: src/libslic3r/PrintConfig.cpp:1580 src/libslic3r/PrintConfig.cpp:1589
-msgid "Extra length on restart"
-msgstr "Lunghezza extra in ripresa"
-
-#: src/libslic3r/PrintConfig.cpp:1581
-msgid ""
-"When the retraction is compensated after the travel move, the extruder will "
-"push this additional amount of filament. This setting is rarely needed."
-msgstr ""
-"Quando la retrazione è compensata dopo un movimento di spostamento, "
-"l'estrusore spingerà questa quantità addizionale di filamento. Questa "
-"impostazione è raramente necessaria."
-
-#: src/libslic3r/PrintConfig.cpp:1590
-msgid ""
-"When the retraction is compensated after changing tool, the extruder will "
-"push this additional amount of filament."
-msgstr ""
-"Quando la retrazione è compensata dopo un cambio di strumento, l'estrusore "
-"spingerà questa quantità addizionale di filamento."
-
-#: src/libslic3r/PrintConfig.cpp:1598 src/libslic3r/PrintConfig.cpp:1599
-msgid "Retraction Speed"
-msgstr "Velocità di retrazione"
-
-#: src/libslic3r/PrintConfig.cpp:1600
-msgid "The speed for retractions (it only applies to the extruder motor)."
-msgstr ""
-"Velocità delle retrazioni (si applica solamente al motore dell'estrusore)."
-
-#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1608
-msgid "Deretraction Speed"
-msgstr "Velocità di deretrazione"
-
-#: src/libslic3r/PrintConfig.cpp:1609
-msgid ""
-"The speed for loading of a filament into extruder after retraction (it only "
-"applies to the extruder motor). If left to zero, the retraction speed is "
-"used."
-msgstr ""
-"La velocità di caricamento di un filamento nell'estrusore dopo la retrazione "
-"(si applica solamente al motore dell'estrusore). Se lasciato a zero, verrà "
-"utilizzata la velocità di retrazione."
-
-#: src/libslic3r/PrintConfig.cpp:1617
-msgid "Seam position"
-msgstr "Posizione giunzione"
-
-#: src/libslic3r/PrintConfig.cpp:1619
-msgid "Position of perimeters starting points."
-msgstr "Posizione dei punti iniziali dei perimetri."
-
-#: src/libslic3r/PrintConfig.cpp:1626
-msgid "Random"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1627
-msgid "Nearest"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1628
-msgid "Aligned"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1629
-msgid "Rear"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1636
-msgid "Direction"
-msgstr "Direzione"
-
-#: src/libslic3r/PrintConfig.cpp:1638
-msgid "Preferred direction of the seam"
-msgstr "Direzione preferita della giunzione"
-
-#: src/libslic3r/PrintConfig.cpp:1639
-msgid "Seam preferred direction"
-msgstr "Direzione preferita giunzione"
-
-#: src/libslic3r/PrintConfig.cpp:1647
-msgid "Jitter"
-msgstr "Jitter"
-
-#: src/libslic3r/PrintConfig.cpp:1649
-msgid "Seam preferred direction jitter"
-msgstr "Direzione preferita giunzione jitter"
-
-#: src/libslic3r/PrintConfig.cpp:1650
-msgid "Preferred direction of the seam - jitter"
-msgstr "Direzione preferita della giunzione - jitter"
-
-#: src/libslic3r/PrintConfig.cpp:1661
-msgid "USB/serial port for printer connection."
-msgstr "Porta USB/Seriale per connessione stampante."
-
-#: src/libslic3r/PrintConfig.cpp:1669
-msgid "Serial port speed"
-msgstr "Velocità porta seriale"
-
-#: src/libslic3r/PrintConfig.cpp:1670
-msgid "Speed (baud) of USB/serial port for printer connection."
-msgstr "Velocità (baud) USB/Seriale per la connessione stampante."
-
-#: src/libslic3r/PrintConfig.cpp:1679
-msgid "Distance from object"
-msgstr "Distanza dall'oggetto"
-
-#: src/libslic3r/PrintConfig.cpp:1680
-msgid ""
-"Distance between skirt and object(s). Set this to zero to attach the skirt "
-"to the object(s) and get a brim for better adhesion."
-msgstr ""
-"La distanza tra skirt e oggetto(i). Imposta questo valore a zero per unire "
-"lo skirt all'oggetto(i) e ottenere un brim per una migliore adesione."
-
-#: src/libslic3r/PrintConfig.cpp:1688
-msgid "Skirt height"
-msgstr "Altezza skirt"
-
-#: src/libslic3r/PrintConfig.cpp:1689
-msgid ""
-"Height of skirt expressed in layers. Set this to a tall value to use skirt "
-"as a shield against drafts."
-msgstr ""
-"Altezza dello skirt espresso in layer. Imposta un valore alto per utilizzare "
-"lo skirt come scudo contro le scolature."
-
-#: src/libslic3r/PrintConfig.cpp:1697
-msgid "Loops (minimum)"
-msgstr "Giri (minimo)"
-
-#: src/libslic3r/PrintConfig.cpp:1698
-msgid "Skirt Loops"
-msgstr "Giri skirt"
-
-#: src/libslic3r/PrintConfig.cpp:1699
-msgid ""
-"Number of loops for the skirt. If the Minimum Extrusion Length option is "
-"set, the number of loops might be greater than the one configured here. Set "
-"this to zero to disable skirt completely."
-msgstr ""
-"Numero di giri per lo skirt. Se è impostata l'opzione per la lunghezza "
-"minima di estrusione, il numero dei giri potrebbe essere più grande di "
-"quello configurato qui. Imposta questo valore a zero per disattivare "
-"completamente lo skirt."
-
-#: src/libslic3r/PrintConfig.cpp:1708
-msgid "Slow down if layer print time is below"
-msgstr "Rallenta se il tempo di stampa del layer è inferiore"
-
-#: src/libslic3r/PrintConfig.cpp:1709
-msgid ""
-"If layer print time is estimated below this number of seconds, print moves "
-"speed will be scaled down to extend duration to this value."
-msgstr ""
-"Se il tempo stimato di stampa del layer è al di sotto di questo numero di "
-"secondi, la velocità dei movimenti di stampa sarà ridotta per estendere la "
-"durata di questo valore."
-
-#: src/libslic3r/PrintConfig.cpp:1720
-msgid "Small perimeters"
-msgstr "Perimetri piccoli"
-
-#: src/libslic3r/PrintConfig.cpp:1722
-msgid ""
-"This separate setting will affect the speed of perimeters having radius <= "
-"6.5mm (usually holes). If expressed as percentage (for example: 80%) it will "
-"be calculated on the perimeters speed setting above. Set to zero for auto."
-msgstr ""
-"Questa impostazione separata influenzerà la velocità dei perimetri con "
-"raggio <=6.5mm (solitamente i buchi). Se espresso come percentuale (per "
-"esempio: 80%) sarà calcolato sulla velocità dei perimetri qui sopra. Imposta "
-"a zero per automatico."
-
-#: src/libslic3r/PrintConfig.cpp:1732
-msgid "Solid infill threshold area"
-msgstr "Area inizio riempimento solido"
-
-#: src/libslic3r/PrintConfig.cpp:1734
-msgid ""
-"Force solid infill for regions having a smaller area than the specified "
-"threshold."
-msgstr ""
-"Forza riempimento solido per le regioni con un'area inferiore al limite "
-"specificato."
-
-#: src/libslic3r/PrintConfig.cpp:1735
-msgid "mm²"
-msgstr "mm²"
-
-#: src/libslic3r/PrintConfig.cpp:1742
-msgid "Solid infill extruder"
-msgstr "Estrusore riempimento solido"
-
-#: src/libslic3r/PrintConfig.cpp:1744
-msgid "The extruder to use when printing solid infill."
-msgstr "L'estrusore da utilizzare per la stampa del riempimento solido."
-
-#: src/libslic3r/PrintConfig.cpp:1751
-msgid "Solid infill every"
-msgstr "Riempimento solido ogni"
-
-#: src/libslic3r/PrintConfig.cpp:1753
-msgid ""
-"This feature allows to force a solid layer every given number of layers. "
-"Zero to disable. You can set this to any value (for example 9999); Slic3r "
-"will automatically choose the maximum possible number of layers to combine "
-"according to nozzle diameter and layer height."
-msgstr ""
-"Questa funzione permette di forzare un layer solido ogni tot layer. Zero per "
-"disabilitare. E' possibile impostare qualunque valore (per esempio 9999); "
-"Slic3r sceglierà automaticamente il maggior numero possibile di layer da "
-"combinare secondo il diametro dell'ugello e l'altezza layer."
-
-#: src/libslic3r/PrintConfig.cpp:1766
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill for "
-"solid surfaces. If left zero, default extrusion width will be used if set, "
-"otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
-"(for example 90%) it will be computed over layer height."
-msgstr ""
-"Imposta questo valore diverso da zero per impostare una larghezza "
-"d'estrusione manuale per il riempimento delle superfici solide. Se lasciato "
-"a zero, verrà usata la larghezza d'estrusione predefinita, altrimenti verrà "
-"utilizzato il valore 1.125 x il diametro dell'ugello. Se espresso in "
-"percentuale (per esempio 90%) verrà calcolato sull'altezza del layer."
-
-#: src/libslic3r/PrintConfig.cpp:1777
-msgid ""
-"Speed for printing solid regions (top/bottom/internal horizontal shells). "
-"This can be expressed as a percentage (for example: 80%) over the default "
-"infill speed above. Set to zero for auto."
-msgstr ""
-"La velocità per le regioni di stampa solide (superiore/inferiore/gusci "
-"interni orizzontali). Questo valore può essere espresso come percentuale "
-"(per esempio: 80%) sulla velocità del riempimento predefinita qui sopra. "
-"Imposta a zero per automatizzare."
-
-#: src/libslic3r/PrintConfig.cpp:1789
-msgid "Number of solid layers to generate on top and bottom surfaces."
-msgstr ""
-"Numero di layer solidi da generare sulle superfici superiori e inferiori."
-
-#: src/libslic3r/PrintConfig.cpp:1796
-msgid "Spiral vase"
-msgstr "Vaso a spirale"
-
-#: src/libslic3r/PrintConfig.cpp:1797
-msgid ""
-"This feature will raise Z gradually while printing a single-walled object in "
-"order to remove any visible seam. This option requires a single perimeter, "
-"no infill, no top solid layers and no support material. You can still set "
-"any number of bottom solid layers as well as skirt/brim loops. It won't work "
-"when printing more than an object."
-msgstr ""
-"Questa funzione solleverà Z gradualmente durante la stampa di un oggetto a "
-"parete singola allo scopo di rimuovere qualunque giunzione. Questa opzione "
-"richiede un singolo perimetro, nessun riempimento, nessun layer solido "
-"superiore e nessun materiale di supporto. E' possibile comunque impostare "
-"qualunque numero di layer solidi inferiori così come per i giri di skirt/"
-"brim. Non funzionerà stampando più di un oggetto."
-
-#: src/libslic3r/PrintConfig.cpp:1806
-msgid "Temperature variation"
-msgstr "Variazione di temperatura"
-
-#: src/libslic3r/PrintConfig.cpp:1807
-msgid ""
-"Temperature difference to be applied when an extruder is not active. Enables "
-"a full-height \"sacrificial\" skirt on which the nozzles are periodically "
-"wiped."
-msgstr ""
-"La differenza di temperatura da applicare quando un estrusore non è attivo. "
-"Abilita uno skirt \"sacrificale\" a piena altezza su cui l'ugello verrà "
-"pulito periodicamente."
-
-#: src/libslic3r/PrintConfig.cpp:1818
-msgid ""
-"This start procedure is inserted at the beginning, after bed has reached the "
-"target temperature and extruder just started heating, and before extruder "
-"has finished heating. If Slic3r detects M104 or M190 in your custom codes, "
-"such commands will not be prepended automatically so you're free to "
-"customize the order of heating commands and other custom actions. Note that "
-"you can use placeholder variables for all Slic3r settings, so you can put a "
-"\"M109 S[first_layer_temperature]\" command wherever you want."
-msgstr ""
-"La procedura iniziale è inserita all'inizio, dopo che il piano ha raggiunto "
-"la temperatura impostata e l'estrusore ha appena iniziato a scaldare, e "
-"prima che l'estrusore abbia completato il riscaldamento. Se Slic3r rileva "
-"M104 o M190 nei tuoi codici personalizzati, questi comandi non verranno "
-"inseriti automaticamente così sarà possibile personalizzare l'ordine dei "
-"comandi di riscaldamento e altre azioni personalizzate. Da notare che è "
-"possibile utilizzare variabili sostitutive per tutte le impostazioni di "
-"Slic3r, così sarà possibile inserire un comando \"M109 "
-"S[first_layer_temperature]\" ovunque si voglia."
-
-#: src/libslic3r/PrintConfig.cpp:1834
-msgid ""
-"This start procedure is inserted at the beginning, after any printer start "
-"gcode. This is used to override settings for a specific filament. If Slic3r "
-"detects M104, M109, M140 or M190 in your custom codes, such commands will "
-"not be prepended automatically so you're free to customize the order of "
-"heating commands and other custom actions. Note that you can use placeholder "
-"variables for all Slic3r settings, so you can put a \"M109 "
-"S[first_layer_temperature]\" command wherever you want. If you have multiple "
-"extruders, the gcode is processed in extruder order."
-msgstr ""
-"Questa procedura iniziale è inserita all'inizio, dopo qualunque gcode "
-"iniziale della stampante. Questo viene usato per scavalcare le impostazioni "
-"per un filamento specifico. Se Slic3r rileva M104, M109, M140 o M190 nel tuo "
-"codice personalizzato, questi comandi non verranno inseriti automaticamente "
-"così che sarà possibile personalizzare l'ordine dei comandi di riscaldamento "
-"e altre azioni personalizzate. Da notare che è possibile utilizzare "
-"variabili sostitutive per tutte le impostazioni di Slic3r, così che sia "
-"possibile inserire un comando \"M109S [first_layer_temperature]\" ovunque si "
-"voglia. Se si hanno estrusori multipli, il gcode è processato nell'ordine "
-"degli estrusori."
-
-#: src/libslic3r/PrintConfig.cpp:1850
-msgid "Single Extruder Multi Material"
-msgstr "Multi Material a Estrusore Singolo"
-
-#: src/libslic3r/PrintConfig.cpp:1851
-msgid "The printer multiplexes filaments into a single hot end."
-msgstr "La stampante processa diversi filamenti in un singolo hotend."
-
-#: src/libslic3r/PrintConfig.cpp:1857
-msgid "Prime all printing extruders"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1858
-msgid ""
-"If enabled, all printing extruders will be primed at the front edge of the "
-"print bed at the start of the print."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1864
-msgid "Generate support material"
-msgstr "Genera materiale di supporto"
-
-#: src/libslic3r/PrintConfig.cpp:1866
-msgid "Enable support material generation."
-msgstr "Abilita la creazione di materiale di supporto."
-
-#: src/libslic3r/PrintConfig.cpp:1871
-msgid "Auto generated supports"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1873
-msgid ""
-"If checked, supports will be generated automatically based on the overhang "
-"threshold value. If unchecked, supports will be generated inside the "
-"\"Support Enforcer\" volumes only."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1880
-msgid "XY separation between an object and its support"
-msgstr "Separazione XY tra un oggetto e il suo supporto"
-
-#: src/libslic3r/PrintConfig.cpp:1882
-msgid ""
-"XY separation between an object and its support. If expressed as percentage "
-"(for example 50%), it will be calculated over external perimeter width."
-msgstr ""
-"La separazione XY tra l'oggetto e il suo supporto. Se espresso come "
-"percentuale (ad esempio 50%), verrà calcolato sulla larghezza del perimetro "
-"esterno."
-
-#: src/libslic3r/PrintConfig.cpp:1893
-msgid "Pattern angle"
-msgstr "Angolo trama"
-
-#: src/libslic3r/PrintConfig.cpp:1895
-msgid ""
-"Use this setting to rotate the support material pattern on the horizontal "
-"plane."
-msgstr ""
-"Usa questa impostazione per ruotare la trama del materiale di supporto sul "
-"piano orizzontale."
-
-#: src/libslic3r/PrintConfig.cpp:1906
-msgid ""
-"Only create support if it lies on a build plate. Don't create support on a "
-"print."
-msgstr ""
-"Crea supporti solo se poggiano sulla superficie di stampa. Non creare "
-"supporti sulla stampa."
-
-#: src/libslic3r/PrintConfig.cpp:1913
-msgid "Contact Z distance"
-msgstr "Distanza di contatto Z"
-
-#: src/libslic3r/PrintConfig.cpp:1915
-msgid ""
-"The vertical distance between object and support material interface. Setting "
-"this to 0 will also prevent Slic3r from using bridge flow and speed for the "
-"first object layer."
-msgstr ""
-"Distanza verticale tra oggetto e interfaccia del materiale di supporto. "
-"Impostando questo valore a 0 eviterà che Slic3r utilizzi il flusso e "
-"velocità bridge per il primo layer dell'oggetto."
-
-#: src/libslic3r/PrintConfig.cpp:1923
-msgid "soluble"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1924
-msgid "detachable"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1929
-msgid "Enforce support for the first"
-msgstr "Applica il supporto per i primi"
-
-#: src/libslic3r/PrintConfig.cpp:1931
-msgid ""
-"Generate support material for the specified number of layers counting from "
-"bottom, regardless of whether normal support material is enabled or not and "
-"regardless of any angle threshold. This is useful for getting more adhesion "
-"of objects having a very thin or poor footprint on the build plate."
-msgstr ""
-"Genera materiale di supporto per il numero di layer specificati partendo dal "
-"basso, a prescindere che sia abilitato il materiale di supporto normale o "
-"meno, e indipendentemente dall'angolo limite. Questo è utile per ottenere "
-"più adesione negli oggetti con un appoggio sul piano molto sottile o fragile."
-
-#: src/libslic3r/PrintConfig.cpp:1937
-msgid "Enforce support for the first n layers"
-msgstr "Applica il supporto per i primi n layer"
-
-#: src/libslic3r/PrintConfig.cpp:1943
-msgid "Support material/raft/skirt extruder"
-msgstr "Estrusore materiale di supporto/raft/skirt"
-
-#: src/libslic3r/PrintConfig.cpp:1945
-msgid ""
-"The extruder to use when printing support material, raft and skirt (1+, 0 to "
-"use the current extruder to minimize tool changes)."
-msgstr ""
-"L'estrusore da utilizzare per la stampa del materiale di supporto, raft e "
-"skirt (1+, 0 per utilizzare l'estrusore attuale per minimizzare i cambi di "
-"strumento)."
-
-#: src/libslic3r/PrintConfig.cpp:1955
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for support "
-"material. If left zero, default extrusion width will be used if set, "
-"otherwise nozzle diameter will be used. If expressed as percentage (for "
-"example 90%) it will be computed over layer height."
-msgstr ""
-"Imposta questo valore diverso da zero per impostare una larghezza "
-"d'estrusione manuale per il supporto. Se lasciato a zero, verrà usata la "
-"larghezza d'estrusione predefinita., altrimenti verrà utilizzato il valore "
-"del diametro dell'ugello. Se espresso in percentuale (per esempio 90%) verrà "
-"calcolato sull'altezza del layer."
-
-#: src/libslic3r/PrintConfig.cpp:1964
-msgid "Interface loops"
-msgstr "Giri interfaccia"
-
-#: src/libslic3r/PrintConfig.cpp:1966
-msgid ""
-"Cover the top contact layer of the supports with loops. Disabled by default."
-msgstr ""
-"Copri lo strato di contatto superiore del supporto con anelli. Disattivato "
-"per impostazione predefinita."
-
-#: src/libslic3r/PrintConfig.cpp:1972
-msgid "Support material/raft interface extruder"
-msgstr "Estrusore materiale di supporto/intefaccia raft"
-
-#: src/libslic3r/PrintConfig.cpp:1974
-msgid ""
-"The extruder to use when printing support material interface (1+, 0 to use "
-"the current extruder to minimize tool changes). This affects raft too."
-msgstr ""
-"L'estrusore da utilizzare per la stampa dell'interfaccia del materiale di "
-"supporto (1+, 0 per usare l'estrusore attuale per minimizzare il cambio di "
-"strumento). Questo influenza anche il raft."
-
-#: src/libslic3r/PrintConfig.cpp:1982
-msgid "Interface layers"
-msgstr "Layer interfaccia"
-
-#: src/libslic3r/PrintConfig.cpp:1984
-msgid ""
-"Number of interface layers to insert between the object(s) and support "
-"material."
-msgstr ""
-"Numero di layer interfaccia da inserire tra l'oggetto(i) e il materiale di "
-"supporto."
-
-#: src/libslic3r/PrintConfig.cpp:1992
-msgid "Interface pattern spacing"
-msgstr "Spaziatura trama interfaccia"
-
-#: src/libslic3r/PrintConfig.cpp:1994
-msgid "Spacing between interface lines. Set zero to get a solid interface."
-msgstr ""
-"Spaziatura tra le linee di interfaccia. Imposta a zero per ottenere "
-"un'interfaccia solida."
-
-#: src/libslic3r/PrintConfig.cpp:2004
-msgid ""
-"Speed for printing support material interface layers. If expressed as "
-"percentage (for example 50%) it will be calculated over support material "
-"speed."
-msgstr ""
-"Velocità per la stampa dei layer di interfaccia del materiale di supporto. "
-"Se espresso come percentuale (per esempio 50%) sarà calcolato sulla velocità "
-"del materiale di supporto."
-
-#: src/libslic3r/PrintConfig.cpp:2013
-msgid "Pattern"
-msgstr "Trama"
-
-#: src/libslic3r/PrintConfig.cpp:2015
-msgid "Pattern used to generate support material."
-msgstr "Trama usata per generare il materiale di supporto."
-
-#: src/libslic3r/PrintConfig.cpp:2022
-msgid "Rectilinear grid"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2028
-msgid "Pattern spacing"
-msgstr "Spaziatura trama"
-
-#: src/libslic3r/PrintConfig.cpp:2030
-msgid "Spacing between support material lines."
-msgstr "Spaziatura tra le linee del materiale di supporto."
-
-#: src/libslic3r/PrintConfig.cpp:2040
-msgid "Speed for printing support material."
-msgstr "Velocità per la stampa del materiale di supporto."
-
-#: src/libslic3r/PrintConfig.cpp:2047
-msgid "Synchronize with object layers"
-msgstr "Sincronizza con i layer dell'oggetto"
-
-#: src/libslic3r/PrintConfig.cpp:2049
-msgid ""
-"Synchronize support layers with the object print layers. This is useful with "
-"multi-material printers, where the extruder switch is expensive."
-msgstr ""
-"Sincronizza i layer di supporto con i layer dell'oggetto stampato. E' utile "
-"con le stampanti multi-material, dove il cambio estrusore è costoso."
-
-#: src/libslic3r/PrintConfig.cpp:2056
-msgid "Overhang threshold"
-msgstr "Soglia sporgenza"
-
-#: src/libslic3r/PrintConfig.cpp:2058
-msgid ""
-"Support material will not be generated for overhangs whose slope angle (90° "
-"= vertical) is above the given threshold. In other words, this value "
-"represent the most horizontal slope (measured from the horizontal plane) "
-"that you can print without support material. Set to zero for automatic "
-"detection (recommended)."
-msgstr ""
-"Il materiale di supporto non sarà generato per sporgenze con angolo di "
-"inclinazione (90°=verticale) superiore al limite impostato. In altre parole, "
-"questo valore rappresenta l'inclinazione orizzontale massima (misurata dal "
-"piano orizzontale) che puoi stampare senza materiale di supporto. Imposta a "
-"zero per un rilevamento automatico (raccomandato)."
-
-#: src/libslic3r/PrintConfig.cpp:2071
-msgid "With sheath around the support"
-msgstr "Con guaina attorno al supporto"
-
-#: src/libslic3r/PrintConfig.cpp:2073
-msgid ""
-"Add a sheath (a single perimeter line) around the base support. This makes "
-"the support more reliable, but also more difficult to remove."
-msgstr ""
-"Aggiunge un contorno (una singola linea di perimetro) attorno alla base del "
-"supporto. Questo rende il supporto più affidabile, ma anche più difficile da "
-"rimuovere."
-
-#: src/libslic3r/PrintConfig.cpp:2081
-msgid ""
-"Extruder temperature for layers after the first one. Set this to zero to "
-"disable temperature control commands in the output."
-msgstr ""
-"Temperatura estrusore per i layer successivi al primo. Imposta questo a zero "
-"per disattivare i comandi di controllo temperatura nell'output."
-
-#: src/libslic3r/PrintConfig.cpp:2084
-msgid "Temperature"
-msgstr "Temperatura"
-
-#: src/libslic3r/PrintConfig.cpp:2090
-msgid "Detect thin walls"
-msgstr "Rileva perimetri sottili"
-
-#: src/libslic3r/PrintConfig.cpp:2092
-msgid ""
-"Detect single-width walls (parts where two extrusions don't fit and we need "
-"to collapse them into a single trace)."
-msgstr ""
-"Rileva pareti a spessore singolo (parti in cui non entrano due estrusioni ed "
-"è necessario comprimerle in una singola traccia)."
-
-#: src/libslic3r/PrintConfig.cpp:2099
-msgid "Threads"
-msgstr "Thread"
-
-#: src/libslic3r/PrintConfig.cpp:2100
-msgid ""
-"Threads are used to parallelize long-running tasks. Optimal threads number "
-"is slightly above the number of available cores/processors."
-msgstr ""
-"I thread sono utilizzati per parallelizzare operazioni di lunga durata. Il "
-"numero di thread ottimali è leggermente superiore al numero di core / "
-"processori disponibili."
-
-#: src/libslic3r/PrintConfig.cpp:2112
-msgid ""
-"This custom code is inserted right before every extruder change. Note that "
-"you can use placeholder variables for all Slic3r settings as well as "
-"[previous_extruder] and [next_extruder]."
-msgstr ""
-"Questo codice personalizzato è inserito ad ogni cambio estrusore, subito "
-"prima del movimento Z. Si fa presente che puoi usare variabili sostitutive "
-"per tutte le impostazioni di Slic3r sia per [previous_extruder] che per "
-"[next_extruder]."
-
-#: src/libslic3r/PrintConfig.cpp:2125
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill for "
-"top surfaces. You may want to use thinner extrudates to fill all narrow "
-"regions and get a smoother finish. If left zero, default extrusion width "
-"will be used if set, otherwise nozzle diameter will be used. If expressed as "
-"percentage (for example 90%) it will be computed over layer height."
-msgstr ""
-"Imposta questo valore diverso da zero per impostare una larghezza "
-"d'estrusione manuale per il riempimento delle superfici superiori. Dovresti "
-"scegliere un'estrusione più sottile per riempire gli spazi stretti ed "
-"ottenere una finitura più liscia. Se lasciato a zero, verrà usata la "
-"larghezza d'estrusione predefinita, altrimenti verrà utilizzato il valore "
-"1.125 x il diametro dell'ugello. Se espresso in percentuale (per esempio "
-"90%) verrà calcolato sull'altezza del layer."
-
-#: src/libslic3r/PrintConfig.cpp:2137
-msgid ""
-"Speed for printing top solid layers (it only applies to the uppermost "
-"external layers and not to their internal solid layers). You may want to "
-"slow down this to get a nicer surface finish. This can be expressed as a "
-"percentage (for example: 80%) over the solid infill speed above. Set to zero "
-"for auto."
-msgstr ""
-"Velocità di stampa dei layer solidi superiori (si applica solamente al layer "
-"solido esterno più in alto e non ai layer solidi interni). Rallenta questa "
-"impostazione per ottenere una superficie più rifinita. Questo valore può "
-"essere espresso come percentuale (per esempio: 80%) della velocità del "
-"riempimento solido qui sopra. Imposta a zero per auto."
-
-#: src/libslic3r/PrintConfig.cpp:2149
-msgctxt "Layers"
-msgid "Top"
-msgstr "Superiore"
-
-#: src/libslic3r/PrintConfig.cpp:2151
-msgid "Number of solid layers to generate on top surfaces."
-msgstr "Numero di layer solidi da generare sulle superfici superiori."
-
-#: src/libslic3r/PrintConfig.cpp:2153
-msgid "Top solid layers"
-msgstr "Layer solidi superiori"
-
-#: src/libslic3r/PrintConfig.cpp:2159
-msgid "Speed for travel moves (jumps between distant extrusion points)."
-msgstr ""
-"Velocità per movimenti di spostamento (salti tra punti di estrusione "
-"distanti)."
-
-#: src/libslic3r/PrintConfig.cpp:2168
-msgid "Use firmware retraction"
-msgstr "Usa retrazione firmware"
-
-#: src/libslic3r/PrintConfig.cpp:2169
-msgid ""
-"This experimental setting uses G10 and G11 commands to have the firmware "
-"handle the retraction. This is only supported in recent Marlin."
-msgstr ""
-"Questa funziona sperimentale utilizza i comandi G10 e G11 per permettere al "
-"firmware la gestione della retrazione. E' supportata solo nel Marlin recenti."
-
-#: src/libslic3r/PrintConfig.cpp:2176
-msgid "Use relative E distances"
-msgstr "Usa distanze E relative"
-
-#: src/libslic3r/PrintConfig.cpp:2177
-msgid ""
-"If your firmware requires relative E values, check this, otherwise leave it "
-"unchecked. Most firmwares use absolute values."
-msgstr ""
-"Se il firmware richiede valori E relativi, selezionalo, altrimenti lascialo "
-"non selezionato. Molti firmware utilizzano valori assoluti."
-
-#: src/libslic3r/PrintConfig.cpp:2184
-msgid "Use volumetric E"
-msgstr "Utilizza E volumetrico"
-
-#: src/libslic3r/PrintConfig.cpp:2185
-msgid ""
-"This experimental setting uses outputs the E values in cubic millimeters "
-"instead of linear millimeters. If your firmware doesn't already know "
-"filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] "
-"T0' in your start G-code in order to turn volumetric mode on and use the "
-"filament diameter associated to the filament selected in Slic3r. This is "
-"only supported in recent Marlin."
-msgstr ""
-"Questa impostazione sperimentale produce un valore di E in uscita in "
-"millimetri cubici anziché in millimetri lienari. Se il tuo firmware non sa "
-"ancora qual'è il diametro del filamento, puoi inserire un comando tipo 'M200 "
-"D[filament_diameter_0] T0' nel tuo G-code iniziale in modo da attivare la "
-"funzione volumetrica e usare il diametro associato al filamento selezionato "
-"su Slic3r. Questa funziona è supportata solo nel Marlin più recente."
-
-#: src/libslic3r/PrintConfig.cpp:2196
-msgid "Enable variable layer height feature"
-msgstr "Abilita la funzione Layer ad altezza variabile"
-
-#: src/libslic3r/PrintConfig.cpp:2197
-msgid ""
-"Some printers or printer setups may have difficulties printing with a "
-"variable layer height. Enabled by default."
-msgstr ""
-"Alcune stampanti o setup di stampanti possono riscontrare difficoltà a "
-"stampare con l'altezza layer variabile. Attivato come predefinito."
-
-#: src/libslic3r/PrintConfig.cpp:2204
-msgid "Wipe while retracting"
-msgstr "Pulisci durante la retrazione"
-
-#: src/libslic3r/PrintConfig.cpp:2205
-msgid ""
-"This flag will move the nozzle while retracting to minimize the possible "
-"blob on leaky extruders."
-msgstr ""
-"Questo contrassegno farà spostare l'ugello durante la retrazione in modo da "
-"minimizzare il possibile grumo su estrusori che perdono."
-
-#: src/libslic3r/PrintConfig.cpp:2213
-msgid ""
-"Multi material printers may need to prime or purge extruders on tool "
-"changes. Extrude the excess material into the wipe tower."
-msgstr ""
-"Le stampanti multi-material potrebbero necessitare di caricare o spurgare "
-"l'estrusore al cambio di strumento. Estrude il materiale in eccesso in una "
-"torre di spurgo."
-
-#: src/libslic3r/PrintConfig.cpp:2220
-msgid "Purging volumes - load/unload volumes"
-msgstr "Volumi di purga - volumi di carico/scarico"
-
-#: src/libslic3r/PrintConfig.cpp:2221
-msgid ""
-"This vector saves required volumes to change from/to each tool used on the "
-"wipe tower. These values are used to simplify creation of the full purging "
-"volumes below. "
-msgstr ""
-"Questo vettore salva il volume necessario per cambiare da/a ognuno strumento "
-"usato per la wipe tower. Questi valori vengono usati per semplificare la "
-"creazione dei volumi di purga completi. "
-
-#: src/libslic3r/PrintConfig.cpp:2228
-msgid "Purging volumes - matrix"
-msgstr "Volumi di purga - matrice"
-
-#: src/libslic3r/PrintConfig.cpp:2229
-msgid ""
-"This matrix describes volumes (in cubic milimetres) required to purge the "
-"new filament on the wipe tower for any given pair of tools. "
-msgstr ""
-"Questa matrice descrive il volume (in millimetri cubici) necessario per "
-"purgare il filamento nella wipe tower per una qualunque coppia di strumenti. "
-
-#: src/libslic3r/PrintConfig.cpp:2239
-msgid "Position X"
-msgstr "Posizione X"
-
-#: src/libslic3r/PrintConfig.cpp:2240
-msgid "X coordinate of the left front corner of a wipe tower"
-msgstr "Coordinata X dell'angolo frontale sinistro di una torre di spurgo"
-
-#: src/libslic3r/PrintConfig.cpp:2247
-msgid "Position Y"
-msgstr "Posizione Y"
-
-#: src/libslic3r/PrintConfig.cpp:2248
-msgid "Y coordinate of the left front corner of a wipe tower"
-msgstr "Coordinata Y dell'angolo frontale sinistro di una torre di spurgo"
-
-#: src/libslic3r/PrintConfig.cpp:2256
-msgid "Width of a wipe tower"
-msgstr "Larghezza della torre di spurgo"
-
-#: src/libslic3r/PrintConfig.cpp:2263
-msgid "Wipe tower rotation angle"
-msgstr "Angolo di rotazione della wipe tower"
-
-#: src/libslic3r/PrintConfig.cpp:2264
-msgid "Wipe tower rotation angle with respect to x-axis "
-msgstr "Angolo di rotazione della wipe tower rispetto all'asse X "
-
-#: src/libslic3r/PrintConfig.cpp:2265
-msgid "degrees"
-msgstr "gradi"
-
-#: src/libslic3r/PrintConfig.cpp:2272
-msgid "Wipe into this object's infill"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2273
-msgid ""
-"Purging after toolchange will done inside this object's infills. This lowers "
-"the amount of waste but may result in longer print time due to additional "
-"travel moves."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2281
-msgid "Wipe into this object"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2282
-msgid ""
-"Object will be used to purge the nozzle after a toolchange to save material "
-"that would otherwise end up in the wipe tower and decrease print time. "
-"Colours of the objects will be mixed as a result."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2289
-msgid "Maximal bridging distance"
-msgstr "Distanza massima di bridging"
-
-#: src/libslic3r/PrintConfig.cpp:2290
-msgid "Maximal distance between supports on sparse infill sections. "
-msgstr "Distanza massima tra supporti in sezioni a scarso riempimento. "
-
-#: src/libslic3r/PrintConfig.cpp:2297
-msgid "XY Size Compensation"
-msgstr "Compensazione dimensione XY"
-
-#: src/libslic3r/PrintConfig.cpp:2299
-msgid ""
-"The object will be grown/shrunk in the XY plane by the configured value "
-"(negative = inwards, positive = outwards). This might be useful for fine-"
-"tuning hole sizes."
-msgstr ""
-"L'oggetto verrà allargato/ristretto sul piano XY dal valore configurato "
-"(negativo = verso l'interno, positivo = verso l'esterno). Questo può essere "
-"utile per regolare la grandezza dei fori."
-
-#: src/libslic3r/PrintConfig.cpp:2308
-msgid "Z offset"
-msgstr "Offset Z"
-
-#: src/libslic3r/PrintConfig.cpp:2309
-msgid ""
-"This value will be added (or subtracted) from all the Z coordinates in the "
-"output G-code. It is used to compensate for bad Z endstop position: for "
-"example, if your endstop zero actually leaves the nozzle 0.3mm far from the "
-"print bed, set this to -0.3 (or fix your endstop)."
-msgstr ""
-"Questo valore sarà aggiunto (o sottratto) da tutte le coordinate Z nel G-"
-"code di output. Viene utilizzato per compensare una posizione di finecorsa Z "
-"errata: per esempio, se la posizione minima del finecorsa rimane in realtà "
-"0.3mm lontano dal piano, imposta questo valore a -0.3 (o sistema il "
-"finecorsa)."
-
-#: src/libslic3r/PrintConfig.cpp:2319
-msgid "Bed size X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2320 src/libslic3r/PrintConfig.cpp:2327
-#: src/libslic3r/PrintConfig.cpp:2334 src/libslic3r/PrintConfig.cpp:2343
-#: src/libslic3r/PrintConfig.cpp:2351 src/libslic3r/PrintConfig.cpp:2359
-msgid "Dwarf"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2326
-msgid "Bed size Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2333
-msgid "Picture resolution X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2335 src/libslic3r/PrintConfig.cpp:2344
-msgid "px"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2342
-msgid "Picture resolution Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2350 src/libslic3r/PrintConfig.cpp:2430
-#: src/libslic3r/PrintConfig.cpp:2431
-msgid "Exposure time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2358
-msgid "Exposure time first layers"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2373
-msgid "Display width"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2374
-msgid "Width of the display"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2380
-msgid "Display height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2381
-msgid "Height of the display"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2387
-msgid "Number of pixels in"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2389
-msgid "Number of pixels in X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2396
-msgid "Number of pixels in Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2402
-msgid "Display orientation"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2403
-msgid ""
-"Set the actual LCD display orientation inside the SLA printer. Portrait mode "
-"will flip the meaning of display width and height parameters and the output "
-"images will be rotated by 90 degrees."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2410
-msgid "Landscape"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2411
-msgid "Portrait"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2415 src/libslic3r/PrintConfig.cpp:2416
-msgid "Printer scaling correction"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2422 src/libslic3r/PrintConfig.cpp:2423
-msgid "Initial layer height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439
-msgid "Initial exposure time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2446 src/libslic3r/PrintConfig.cpp:2447
-msgid "Correction for expansion when printing"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2452 src/libslic3r/PrintConfig.cpp:2453
-msgid "Correction for expansion after curing"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2458
-msgid "SLA print material notes"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2459
-msgid "You can put your notes regarding the SLA print material here."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2468 src/libslic3r/PrintConfig.cpp:2478
-msgid "Default SLA material profile"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2487
-msgid "Generate supports"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2489
-msgid "Generate supports for the models"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2494
-msgid "Support head front diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2496
-msgid "Diameter of the pointing side of the head"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2503
-msgid "Support head penetration"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2505
-msgid "How much the pinhead has to penetrate the model surface"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2512
-msgid "Support head width"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2514
-msgid "Width from the back sphere center to the front sphere center"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2521
-msgid "Support pillar diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2523
-msgid "Diameter in mm of the support pillars"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2530
-msgid "Support pillar connection mode"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2531
-msgid ""
-"Controls the bridge type between two neigboring pillars. Can be zig-zag, "
-"cross (double zig-zag) or dynamic which will automatically switch between "
-"the first two depending on the distance of the two pillars."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2540
-msgid "Zig-Zag"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2541
-msgid "Cross"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2542
-msgid "Dynamic"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2546
-msgid "Pillar widening factor"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2548
-msgid ""
-"Merging bridges or pillars into another pillars can increase the radius. "
-"Zero means no increase, one means full increase."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2557
-msgid "Support base diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2559
-msgid "Diameter in mm of the pillar base"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2566
-msgid "Support base height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2568
-msgid "The height of the pillar base cone"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2575
-msgid "Critical angle"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2577
-msgid "The default angle for connecting support sticks and junctions."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2584
-msgid "Max bridge length"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2586
-msgid "The max length of a bridge"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2593
-msgid "Object elevation"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2595
-msgid "How much the supports should lift up the supported object."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2602
-msgid "Density on horizontal surfaces"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2604
-msgid ""
-"How many support points (approximately) should be placed on horizontal "
-"surface."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2605 src/libslic3r/PrintConfig.cpp:2614
-msgid "points per square dm"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2611
-msgid "Density on surfaces at 45 degrees"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2613
-msgid ""
-"How many support points (approximately) should be placed on surface sloping "
-"at 45 degrees."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2620
-msgid "Minimal support point height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2622
-msgid "No support points will be placed lower than this value from the bottom."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2629
-msgid "Use pad"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2631
-msgid "Add a pad underneath the supported model"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2636
-msgid "Pad wall thickness"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2645
-msgid "Pad wall height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2654
-msgid "Max merge distance"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2663
-msgid "Pad edge radius"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3017
-msgid "Cut model at the given Z."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3022
-msgid "Dont arrange"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3023
-msgid ""
-"Don't arrange the objects on the build plate. The model coordinates define "
-"the absolute positions on the build plate. The option --center will be "
-"ignored."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3030
-msgid "User data directory"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3031
-msgid ""
-"Load and store settings at the given directory. This is useful for "
-"maintaining different profiles or including configurations from a network "
-"storage."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3038
-msgid "Export 3MF"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3039
-msgid "Slice the model and export slices as 3MF."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3044
-msgid "Slice"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3045
-msgid "Slice the model and export gcode."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3050
-msgid "Help"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3051
-msgid "Show this help."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3056
-msgid "Use GUI"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3057
-msgid ""
-"Forces the GUI launch instead of command line slicing (if you supply a model "
-"file, it will be loaded into the plater)"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3063
-msgid "Output Model Info"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3064
-msgid "Write information about the model to the console."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3069
-msgid "Load config file"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3070
-msgid ""
-"Load configuration from the specified file. It can be used more than once to "
-"load options from multiple files."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3075
-msgid "Do not use GUI"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3076
-msgid ""
-"Forces the command line slicing instead of gui. This takes precedence over --"
-"gui if both are present."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3081
-msgid "Output File"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3082
-msgid ""
-"The file where the output will be written (if not specified, it will be "
-"based on the input file)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3088
-msgid "Rotation angle around the Z axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3093
-msgid "Rotate around X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3094
-msgid "Rotation angle around the X axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3099
-msgid "Rotate around Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3100
-msgid "Rotation angle around the Y axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3105
-msgid "Save config file"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3106
-msgid "Save configuration to the specified file."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3112
-msgid "Scaling factor (default: 1)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3125
-msgid "Print center"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3126
-msgid "Center the print around the given center (default: 100, 100)."
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:176
-msgid "Mixed"
-msgstr "Mischiate"
-
-#: src/libslic3r/GCode/PreviewData.cpp:396
-msgid "Height (mm)"
-msgstr "Altezza (mm)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:398
-msgid "Width (mm)"
-msgstr "Larghezza (mm)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:400
-msgid "Speed (mm/s)"
-msgstr "Velocità (mm/s)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:402
-msgid "Volumetric flow rate (mm3/s)"
-msgstr "Flusso volumetrico (mm3/s)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:491
-msgid "Default print color"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:495
-#, c-format
-msgid "up to %.2f mm"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:499
-#, c-format
-msgid "above %.2f mm"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:504
-#, c-format
-msgid "%.2f - %.2f mm"
-msgstr ""
diff --git a/resources/localization/ko_KR/Slic3rPE.mo b/resources/localization/ko_KR/PrusaSlicer.mo
similarity index 51%
rename from resources/localization/ko_KR/Slic3rPE.mo
rename to resources/localization/ko_KR/PrusaSlicer.mo
index 32d5c6a20..1b9246671 100644
Binary files a/resources/localization/ko_KR/Slic3rPE.mo and b/resources/localization/ko_KR/PrusaSlicer.mo differ
diff --git a/resources/localization/ko_KR/Slic3rPE.po b/resources/localization/ko_KR/PrusaSlicer_kr.po
similarity index 67%
rename from resources/localization/ko_KR/Slic3rPE.po
rename to resources/localization/ko_KR/PrusaSlicer_kr.po
index 60d15b889..ba8975367 100644
--- a/resources/localization/ko_KR/Slic3rPE.po
+++ b/resources/localization/ko_KR/PrusaSlicer_kr.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: slic3rkorean\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-17 13:39+0100\n"
-"PO-Revision-Date: 2019-01-21 12:02+0100\n"
+"POT-Creation-Date: 2019-04-09 14:34+0200\n"
+"PO-Revision-Date: 2019-04-09 16:37+0200\n"
"Last-Translator: Oleksandra Iushchenko \n"
"Language-Team: Korean\n"
"Language: ko_KR\n"
@@ -16,11 +16,11 @@ msgstr ""
"X-Crowdin-Language: ko\n"
"X-Crowdin-File: ko_KR.po\n"
-#: src/slic3r/GUI/AboutDialog.cpp:33
+#: src/slic3r/GUI/AboutDialog.cpp:35
msgid "About Slic3r"
msgstr "Slic3rì— ëŒ€í•˜ì—¬"
-#: src/slic3r/GUI/AboutDialog.cpp:68 src/slic3r/GUI/MainFrame.cpp:51
+#: src/slic3r/GUI/AboutDialog.cpp:64 src/slic3r/GUI/MainFrame.cpp:52
msgid "Version"
msgstr "ë²„ì „"
@@ -28,136 +28,136 @@ msgstr "ë²„ì „"
msgid "Shape"
msgstr "모양"
-#: src/slic3r/GUI/BedShapeDialog.cpp:50
+#: src/slic3r/GUI/BedShapeDialog.cpp:51
msgid "Rectangular"
msgstr "ì§ì‚¬ê°í˜•"
-#: src/slic3r/GUI/BedShapeDialog.cpp:54
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:207 src/slic3r/GUI/Plater.cpp:125
-#: src/slic3r/GUI/Tab.cpp:2122
+#: src/slic3r/GUI/BedShapeDialog.cpp:55
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:118 src/slic3r/GUI/Plater.cpp:136
+#: src/slic3r/GUI/Tab.cpp:2185
msgid "Size"
msgstr "사ì´ì¦ˆ"
-#: src/slic3r/GUI/BedShapeDialog.cpp:55
+#: src/slic3r/GUI/BedShapeDialog.cpp:56
msgid "Size in X and Y of the rectangular plate."
msgstr "사격형 í”Œë ˆì´íЏ X ë° Y í¬ê¸°."
-#: src/slic3r/GUI/BedShapeDialog.cpp:61
+#: src/slic3r/GUI/BedShapeDialog.cpp:62
msgid "Origin"
msgstr "ì›ë³¸"
-#: src/slic3r/GUI/BedShapeDialog.cpp:62
+#: src/slic3r/GUI/BedShapeDialog.cpp:63
msgid ""
"Distance of the 0,0 G-code coordinate from the front left corner of the "
"rectangle."
msgstr "사ê°í˜•ì˜ ì „ë©´ ì™¼ìª½ëœ ëª¨ì„œë¦¬ì—서 0, 0 G-코드 좌표 거리입니다."
-#: src/slic3r/GUI/BedShapeDialog.cpp:66
+#: src/slic3r/GUI/BedShapeDialog.cpp:67
msgid "Circular"
msgstr "ì›í˜•"
-#: src/slic3r/GUI/BedShapeDialog.cpp:69 src/slic3r/GUI/ConfigWizard.cpp:92
-#: src/slic3r/GUI/ConfigWizard.cpp:456 src/slic3r/GUI/ConfigWizard.cpp:470
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:80
-#: src/libslic3r/PrintConfig.cpp:50 src/libslic3r/PrintConfig.cpp:58
-#: src/libslic3r/PrintConfig.cpp:180 src/libslic3r/PrintConfig.cpp:254
-#: src/libslic3r/PrintConfig.cpp:263 src/libslic3r/PrintConfig.cpp:315
-#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:448
-#: src/libslic3r/PrintConfig.cpp:460 src/libslic3r/PrintConfig.cpp:480
-#: src/libslic3r/PrintConfig.cpp:679 src/libslic3r/PrintConfig.cpp:1178
-#: src/libslic3r/PrintConfig.cpp:1243 src/libslic3r/PrintConfig.cpp:1263
-#: src/libslic3r/PrintConfig.cpp:1283 src/libslic3r/PrintConfig.cpp:1365
-#: src/libslic3r/PrintConfig.cpp:1376 src/libslic3r/PrintConfig.cpp:1499
-#: src/libslic3r/PrintConfig.cpp:1508 src/libslic3r/PrintConfig.cpp:1554
-#: src/libslic3r/PrintConfig.cpp:1563 src/libslic3r/PrintConfig.cpp:1574
-#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1592
-#: src/libslic3r/PrintConfig.cpp:1682 src/libslic3r/PrintConfig.cpp:1918
-#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2031
-#: src/libslic3r/PrintConfig.cpp:2241 src/libslic3r/PrintConfig.cpp:2249
-#: src/libslic3r/PrintConfig.cpp:2257 src/libslic3r/PrintConfig.cpp:2291
-#: src/libslic3r/PrintConfig.cpp:2302 src/libslic3r/PrintConfig.cpp:2313
-#: src/libslic3r/PrintConfig.cpp:2321 src/libslic3r/PrintConfig.cpp:2328
-#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2497
-#: src/libslic3r/PrintConfig.cpp:2506 src/libslic3r/PrintConfig.cpp:2515
-#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2560
-#: src/libslic3r/PrintConfig.cpp:2569 src/libslic3r/PrintConfig.cpp:2587
-#: src/libslic3r/PrintConfig.cpp:2596 src/libslic3r/PrintConfig.cpp:2623
-#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2648
-#: src/libslic3r/PrintConfig.cpp:2657 src/libslic3r/PrintConfig.cpp:2666
+#: src/slic3r/GUI/BedShapeDialog.cpp:70 src/slic3r/GUI/ConfigWizard.cpp:111
+#: src/slic3r/GUI/ConfigWizard.cpp:544 src/slic3r/GUI/ConfigWizard.cpp:558
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:115
+#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:84
+#: src/libslic3r/PrintConfig.cpp:59 src/libslic3r/PrintConfig.cpp:66
+#: src/libslic3r/PrintConfig.cpp:75 src/libslic3r/PrintConfig.cpp:209
+#: src/libslic3r/PrintConfig.cpp:284 src/libslic3r/PrintConfig.cpp:292
+#: src/libslic3r/PrintConfig.cpp:342 src/libslic3r/PrintConfig.cpp:352
+#: src/libslic3r/PrintConfig.cpp:472 src/libslic3r/PrintConfig.cpp:483
+#: src/libslic3r/PrintConfig.cpp:501 src/libslic3r/PrintConfig.cpp:679
+#: src/libslic3r/PrintConfig.cpp:1165 src/libslic3r/PrintConfig.cpp:1226
+#: src/libslic3r/PrintConfig.cpp:1244 src/libslic3r/PrintConfig.cpp:1262
+#: src/libslic3r/PrintConfig.cpp:1314 src/libslic3r/PrintConfig.cpp:1324
+#: src/libslic3r/PrintConfig.cpp:1445 src/libslic3r/PrintConfig.cpp:1453
+#: src/libslic3r/PrintConfig.cpp:1494 src/libslic3r/PrintConfig.cpp:1502
+#: src/libslic3r/PrintConfig.cpp:1512 src/libslic3r/PrintConfig.cpp:1520
+#: src/libslic3r/PrintConfig.cpp:1528 src/libslic3r/PrintConfig.cpp:1611
+#: src/libslic3r/PrintConfig.cpp:1827 src/libslic3r/PrintConfig.cpp:1897
+#: src/libslic3r/PrintConfig.cpp:1931 src/libslic3r/PrintConfig.cpp:2123
+#: src/libslic3r/PrintConfig.cpp:2130 src/libslic3r/PrintConfig.cpp:2137
+#: src/libslic3r/PrintConfig.cpp:2167 src/libslic3r/PrintConfig.cpp:2177
+#: src/libslic3r/PrintConfig.cpp:2187 src/libslic3r/PrintConfig.cpp:2293
+#: src/libslic3r/PrintConfig.cpp:2368 src/libslic3r/PrintConfig.cpp:2377
+#: src/libslic3r/PrintConfig.cpp:2386 src/libslic3r/PrintConfig.cpp:2396
+#: src/libslic3r/PrintConfig.cpp:2440 src/libslic3r/PrintConfig.cpp:2450
+#: src/libslic3r/PrintConfig.cpp:2469 src/libslic3r/PrintConfig.cpp:2479
+#: src/libslic3r/PrintConfig.cpp:2488 src/libslic3r/PrintConfig.cpp:2506
+#: src/libslic3r/PrintConfig.cpp:2521 src/libslic3r/PrintConfig.cpp:2532
+#: src/libslic3r/PrintConfig.cpp:2545 src/libslic3r/PrintConfig.cpp:2555
msgid "mm"
msgstr "mm"
-#: src/slic3r/GUI/BedShapeDialog.cpp:70 src/libslic3r/PrintConfig.cpp:676
+#: src/slic3r/GUI/BedShapeDialog.cpp:71 src/libslic3r/PrintConfig.cpp:676
msgid "Diameter"
msgstr "ë…¸ì¦ ì§ê²½"
-#: src/slic3r/GUI/BedShapeDialog.cpp:71
+#: src/slic3r/GUI/BedShapeDialog.cpp:72
msgid ""
"Diameter of the print bed. It is assumed that origin (0,0) is located in the "
"center."
msgstr "ì¸ì‡„ ì¹¨ëŒ€ì˜ ì§ê²½. ì›ì (0,0) ì€ ì¤‘ì‹¬ì— ìžˆë‹¤ê³ ê°€ì •í•©ë‹ˆë‹¤."
-#: src/slic3r/GUI/BedShapeDialog.cpp:75 src/slic3r/GUI/GUI_Preview.cpp:265
+#: src/slic3r/GUI/BedShapeDialog.cpp:76 src/slic3r/GUI/GUI_Preview.cpp:239
#: src/libslic3r/GCode/PreviewData.cpp:175
msgid "Custom"
msgstr "커스터"
-#: src/slic3r/GUI/BedShapeDialog.cpp:79
+#: src/slic3r/GUI/BedShapeDialog.cpp:80
msgid "Load shape from STL..."
msgstr "STLíŒŒì¼ ë¡œë“œ."
-#: src/slic3r/GUI/BedShapeDialog.cpp:125
+#: src/slic3r/GUI/BedShapeDialog.cpp:126
msgid "Settings"
msgstr "ì„¤ì •"
-#: src/slic3r/GUI/BedShapeDialog.cpp:298
+#: src/slic3r/GUI/BedShapeDialog.cpp:299
msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
msgstr "침대 모양 (STL/OBJ/AMF/3MF/PRUSA) ì—서 ê°€ì ¸ì˜¤ë ¤ëŠ” 파ì¼ì„ ì„ íƒ í•©ë‹ˆë‹¤:"
-#: src/slic3r/GUI/BedShapeDialog.cpp:315 src/slic3r/GUI/GUI_ObjectList.cpp:835
+#: src/slic3r/GUI/BedShapeDialog.cpp:316 src/slic3r/GUI/GUI_ObjectList.cpp:1252
msgid "Error! "
msgstr "ì—러! "
-#: src/slic3r/GUI/BedShapeDialog.cpp:324
+#: src/slic3r/GUI/BedShapeDialog.cpp:325
msgid "The selected file contains no geometry."
msgstr "ì„ íƒí•œ 파ì¼ì—는 형ìƒì´ 없는 í¬í•¨ ë˜ì–´ 있습니다."
-#: src/slic3r/GUI/BedShapeDialog.cpp:328
+#: src/slic3r/GUI/BedShapeDialog.cpp:329
msgid ""
"The selected file contains several disjoint areas. This is not supported."
msgstr ""
"ì„ íƒí•œ íŒŒì¼ ì—¬ëŸ¬ 분리 ëœ ì˜ì—ì„ í¬í•¨ ë˜ì–´ 있습니다. ì´ ì§€ì› ë˜ì§€ 않습니다."
-#: src/slic3r/GUI/BedShapeDialog.hpp:44 src/slic3r/GUI/ConfigWizard.cpp:419
+#: src/slic3r/GUI/BedShapeDialog.hpp:44 src/slic3r/GUI/ConfigWizard.cpp:507
msgid "Bed Shape"
msgstr "배드 모양"
-#: src/slic3r/GUI/BonjourDialog.cpp:54
+#: src/slic3r/GUI/BonjourDialog.cpp:55
msgid "Network lookup"
msgstr "ë„¤íŠ¸ì›Œí¬ ì¡°íšŒ"
-#: src/slic3r/GUI/BonjourDialog.cpp:67
+#: src/slic3r/GUI/BonjourDialog.cpp:72
msgid "Address"
msgstr "주소"
-#: src/slic3r/GUI/BonjourDialog.cpp:68
+#: src/slic3r/GUI/BonjourDialog.cpp:73
msgid "Hostname"
msgstr "호스트ì´ë¦„"
-#: src/slic3r/GUI/BonjourDialog.cpp:69
+#: src/slic3r/GUI/BonjourDialog.cpp:74
msgid "Service name"
msgstr "서비스 ì´ë¦„"
-#: src/slic3r/GUI/BonjourDialog.cpp:70
+#: src/slic3r/GUI/BonjourDialog.cpp:76
msgid "OctoPrint version"
msgstr "ì˜¥í† í”„ë¦°íŠ¸ ë²„ì „"
-#: src/slic3r/GUI/BonjourDialog.cpp:188
+#: src/slic3r/GUI/BonjourDialog.cpp:218
msgid "Searching for devices"
msgstr "디바ì´ìФ 검색"
-#: src/slic3r/GUI/BonjourDialog.cpp:195
+#: src/slic3r/GUI/BonjourDialog.cpp:225
msgid "Finished"
msgstr "완료"
@@ -176,113 +176,118 @@ msgid ""
msgstr ""
"ê°’ì´ ë³€ê²½ ë˜ì—ˆê³ 시스템 ê°’ ë˜ëŠ” 마지막으로 ì €ìž¥ ëœ ì‚¬ì „ ì„¤ì •ê³¼ 같지 않ìŒ"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:16
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:17
msgid "Upgrade"
msgstr "ì—…ê·¸ë ˆì´ë“œ"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:18
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:19
msgid "Downgrade"
msgstr "ë‹¤ìš´ê·¸ë ˆì´ë“œ"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:20
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:21
msgid "Before roll back"
msgstr "롤백 ì „ì—"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:22
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:23
msgid "User"
msgstr "사용ìž"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:25
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:26
msgid "Unknown"
msgstr "알 수 ì—†ìŒ"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:37
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:38
msgid "Active: "
msgstr "활성: "
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:44
msgid "slic3r version"
msgstr "slic3rì— ëŒ€í•˜ì—¬"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:44 src/slic3r/GUI/Preset.cpp:1156
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:45 src/slic3r/GUI/Preset.cpp:1250
msgid "print"
msgstr "프린트"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:45
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46
msgid "filaments"
msgstr "í•„ë¼ë©˜íЏ"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1160
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:47 src/slic3r/GUI/Preset.cpp:1254
msgid "printer"
msgstr "프린터"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 src/slic3r/GUI/Tab.cpp:838
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Tab.cpp:872
msgid "vendor"
msgstr "벤ë”"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51
msgid "version"
msgstr "ë²„ì „"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52
msgid "min slic3r version"
msgstr "최소 slic3r ë²„ì „"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:54
msgid "max slic3r version"
msgstr "최대 slic3r ë²„ì „"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57
msgid "model"
msgstr "모ë¸"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57
msgid "variants"
msgstr "변종"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69
msgid "Incompatible with this Slic3r"
msgstr "ì´ Slic3r와 호환 ë˜ì§€ 않ìŒ"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:72
msgid "Activate"
msgstr "활성화"
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:97
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:98
msgid "Configuration Snapshots"
msgstr "구성 스냅ìˆ"
-#: src/slic3r/GUI/ConfigWizard.cpp:92
+#: src/slic3r/GUI/ConfigWizard.cpp:111
msgid "nozzle"
msgstr "ë…¸ì¦"
-#: src/slic3r/GUI/ConfigWizard.cpp:93
-msgid "default"
-msgstr "기본값"
+#: src/slic3r/GUI/ConfigWizard.cpp:115
+msgid "Alternate nozzles:"
+msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:116
-msgid "Select all"
+#: src/slic3r/GUI/ConfigWizard.cpp:181
+msgid "All standard"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:182 src/slic3r/GUI/Tab.cpp:2909
+msgid "All"
msgstr "ëª¨ë‘ ì„ íƒ"
-#: src/slic3r/GUI/ConfigWizard.cpp:117
-msgid "Select none"
-msgstr "ì„ íƒ ì—†ìŒ"
+#: src/slic3r/GUI/ConfigWizard.cpp:183 src/slic3r/GUI/Plater.cpp:414
+#: src/libslic3r/GCode/PreviewData.cpp:162
+msgid "None"
+msgstr "ì—†ìŒ"
-#: src/slic3r/GUI/ConfigWizard.cpp:226
+#: src/slic3r/GUI/ConfigWizard.cpp:284
#, c-format
msgid "Welcome to the Slic3r %s"
msgstr "Slic3r %sì— ì˜¤ì‹ ê²ƒì„ í™˜ì˜ í•©ë‹ˆë‹¤"
-#: src/slic3r/GUI/ConfigWizard.cpp:226
+#: src/slic3r/GUI/ConfigWizard.cpp:284
msgid "Welcome"
msgstr "환ì˜í•©ë‹ˆë‹¤"
-#: src/slic3r/GUI/ConfigWizard.cpp:232 src/slic3r/GUI/GUI_App.cpp:606
+#: src/slic3r/GUI/ConfigWizard.cpp:288 src/slic3r/GUI/GUI_App.cpp:600
#, c-format
msgid "Run %s"
msgstr "%s 실행"
-#: src/slic3r/GUI/ConfigWizard.cpp:234
+#: src/slic3r/GUI/ConfigWizard.cpp:290
#, c-format
msgid ""
"Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial "
@@ -291,33 +296,46 @@ msgstr ""
"안녕하세요, Slic3r prusa ë²„ì „ì— ì˜¤ì‹ ê²ƒì„ í™˜ì˜ í•©ë‹ˆë‹¤! ì´ %s 초기 구성;ì— ë„"
"ì›€ì´ ë©ë‹ˆë‹¤. 단지 몇 가지 ì„¤ì • 하 ê³ ë‹¹ì‹ ì€ ì¸ì‡„ 준비가 ë 것입니다."
-#: src/slic3r/GUI/ConfigWizard.cpp:238
+#: src/slic3r/GUI/ConfigWizard.cpp:294
msgid ""
"Remove user profiles - install from scratch (a snapshot will be taken "
"beforehand)"
msgstr "ì‚¬ìš©ìž í”„ë¡œí•„ ì œê±°-처ìŒë¶€í„° 설치 (스냅ìˆì€ ì‚¬ì „ì— ìˆ˜í–‰ ë©ë‹ˆë‹¤)"
-#: src/slic3r/GUI/ConfigWizard.cpp:263
-msgid "Other vendors"
-msgstr "다른 공급 업체"
+#: src/slic3r/GUI/ConfigWizard.cpp:325
+#, c-format
+msgid "%s Family"
+msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:265
-msgid "Custom setup"
-msgstr "ì‚¬ìš©ìž ì§€ì • 설치"
+#: src/slic3r/GUI/ConfigWizard.cpp:362
+msgid "Custom Printer Setup"
+msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:289
+#: src/slic3r/GUI/ConfigWizard.cpp:362
+msgid "Custom Printer"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:364
+msgid "Define a custom printer profile"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:366
+msgid "Custom profile name:"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:390
msgid "Automatic updates"
msgstr "ìžë™ ì—…ë°ì´íЏ"
-#: src/slic3r/GUI/ConfigWizard.cpp:289
+#: src/slic3r/GUI/ConfigWizard.cpp:390
msgid "Updates"
msgstr "ì—…ë°ì´íЏ"
-#: src/slic3r/GUI/ConfigWizard.cpp:297 src/slic3r/GUI/Preferences.cpp:59
+#: src/slic3r/GUI/ConfigWizard.cpp:398 src/slic3r/GUI/Preferences.cpp:59
msgid "Check for application updates"
msgstr "프로그램 ì—…ë°ì´íЏ 확ì¸"
-#: src/slic3r/GUI/ConfigWizard.cpp:300 src/slic3r/GUI/Preferences.cpp:61
+#: src/slic3r/GUI/ConfigWizard.cpp:401 src/slic3r/GUI/Preferences.cpp:61
msgid ""
"If enabled, Slic3r checks for new versions of Slic3r PE online. When a new "
"version becomes available a notification is displayed at the next "
@@ -329,11 +347,11 @@ msgstr ""
"ì—는 ì ˆëŒ€ë¡œ 사용하지 마ì‹ì‹œì˜¤). ì´ê²ƒì€ 알림 메커니즘 ì¼ë¿ ìžë™ 설치가 수행ë˜"
"지 않습니다."
-#: src/slic3r/GUI/ConfigWizard.cpp:304 src/slic3r/GUI/Preferences.cpp:67
+#: src/slic3r/GUI/ConfigWizard.cpp:405 src/slic3r/GUI/Preferences.cpp:67
msgid "Update built-in Presets automatically"
msgstr "ê¸°ì¡´ì˜ ì„¤ì • ìžë™ ì—…ë°ì´íЏ"
-#: src/slic3r/GUI/ConfigWizard.cpp:307 src/slic3r/GUI/Preferences.cpp:69
+#: src/slic3r/GUI/ConfigWizard.cpp:408 src/slic3r/GUI/Preferences.cpp:69
msgid ""
"If enabled, Slic3r downloads updates of built-in system presets in the "
"background. These updates are downloaded into a separate temporary location. "
@@ -344,7 +362,7 @@ msgstr ""
"운로드합니다. ì´ëŸ¬í•œ ì—…ë°ì´íŠ¸ëŠ” 별ë„ì˜ ìž„ì‹œ ìœ„ì¹˜ì— ë‹¤ìš´ë¡œë“œë©ë‹ˆë‹¤. 새로운 사"
"ì „ ì„¤ì • ë²„ì „ì„ ì‚¬ìš©í• ìˆ˜ìžˆê²Œë˜ë©´ ì‘ìš© 프로그램 시작시 ì œê³µë©ë‹ˆë‹¤."
-#: src/slic3r/GUI/ConfigWizard.cpp:308
+#: src/slic3r/GUI/ConfigWizard.cpp:409
msgid ""
"Updates are never applied without user's consent and never overwrite user's "
"customized settings."
@@ -352,61 +370,61 @@ msgstr ""
"ì—…ë°ì´íŠ¸ëŠ” 사용ìžì˜ ë™ì˜ì—†ì´ ì ìš©ë˜ì§€ 않으며 사용ìžì˜ ì‚¬ìš©ìž ì§€ì •ëœ ì„¤ì •ì„ ë®"
"어 쓰지 않습니다."
-#: src/slic3r/GUI/ConfigWizard.cpp:313
+#: src/slic3r/GUI/ConfigWizard.cpp:414
msgid ""
"Additionally a backup snapshot of the whole configuration is created before "
"an update is applied."
msgstr "ë˜í•œ ì—…ë°ì´íŠ¸ê°€ ì ìš©ë˜ê¸° ì „ì— ì „ì²´ êµ¬ì„±ì˜ ë°±ì—… 스냅 ìƒ·ì´ ìƒì„±ë©ë‹ˆë‹¤."
-#: src/slic3r/GUI/ConfigWizard.cpp:320
+#: src/slic3r/GUI/ConfigWizard.cpp:421
msgid "Other Vendors"
msgstr "다른 공급 업체"
-#: src/slic3r/GUI/ConfigWizard.cpp:322
+#: src/slic3r/GUI/ConfigWizard.cpp:423
msgid "Pick another vendor supported by Slic3r PE:"
msgstr "Slic3r PEê°€ ì§€ì›í•˜ëŠ” 다른 공급 업체를 ì„ íƒí•˜ì‹ì‹œì˜¤:"
-#: src/slic3r/GUI/ConfigWizard.cpp:381
+#: src/slic3r/GUI/ConfigWizard.cpp:469
msgid "Firmware Type"
msgstr "펌웨어 타입"
-#: src/slic3r/GUI/ConfigWizard.cpp:381 src/slic3r/GUI/Tab.cpp:1820
+#: src/slic3r/GUI/ConfigWizard.cpp:469 src/slic3r/GUI/Tab.cpp:1870
msgid "Firmware"
msgstr "펌웨어"
-#: src/slic3r/GUI/ConfigWizard.cpp:385
+#: src/slic3r/GUI/ConfigWizard.cpp:473
msgid "Choose the type of firmware used by your printer."
msgstr "í”„ë¦°í„°ì— íŒ¨ì¹˜í• íŽŒì›¨ì–´ë¥¼ ì„ íƒí•˜ì„¸ìš”."
-#: src/slic3r/GUI/ConfigWizard.cpp:419
+#: src/slic3r/GUI/ConfigWizard.cpp:507
msgid "Bed Shape and Size"
msgstr "배드 모양과 í¬ê¸°"
-#: src/slic3r/GUI/ConfigWizard.cpp:422
+#: src/slic3r/GUI/ConfigWizard.cpp:510
msgid "Set the shape of your printer's bed."
msgstr "프린터 ë°°ë“œëª¨ì–‘ì„ ì„¤ì •í•˜ì„¸ìš”."
-#: src/slic3r/GUI/ConfigWizard.cpp:436
+#: src/slic3r/GUI/ConfigWizard.cpp:524
msgid "Filament and Nozzle Diameters"
msgstr "í•„ë¼ë©˜íŠ¸ì™€ ë…¸ì¦ í¬ê¸°"
-#: src/slic3r/GUI/ConfigWizard.cpp:436
+#: src/slic3r/GUI/ConfigWizard.cpp:524
msgid "Print Diameters"
msgstr "ì¸ì‡„ ì§ê²½"
-#: src/slic3r/GUI/ConfigWizard.cpp:452
+#: src/slic3r/GUI/ConfigWizard.cpp:540
msgid "Enter the diameter of your printer's hot end nozzle."
msgstr "í•« 엔드 ë…¸ì¦ ì§ê²½ì„ ìž…ë ¥í•˜ì‹ì‹œì˜¤."
-#: src/slic3r/GUI/ConfigWizard.cpp:455
+#: src/slic3r/GUI/ConfigWizard.cpp:543
msgid "Nozzle Diameter:"
msgstr "ë…¸ì¦ ì§ê²½:"
-#: src/slic3r/GUI/ConfigWizard.cpp:465
+#: src/slic3r/GUI/ConfigWizard.cpp:553
msgid "Enter the diameter of your filament."
msgstr "í•„ë¼ë©˜íŠ¸ì˜ ì§ê²½ì„ ìž…ë ¥í•˜ì‹ì‹œì˜¤."
-#: src/slic3r/GUI/ConfigWizard.cpp:466
+#: src/slic3r/GUI/ConfigWizard.cpp:554
msgid ""
"Good precision is required, so use a caliper and do multiple measurements "
"along the filament, then compute the average."
@@ -414,41 +432,41 @@ msgstr ""
"ì •ë°€ë„ê°€ 필요하므로 캘리í¼ë¥¼ 사용하여 í•„ë¼ë©˜íŠ¸ë¥¼ ë”°ë¼ ì—¬ëŸ¬ 번 ì¸¡ì • 한 ë‹¤ìŒ í‰"
"ê· ì„ ê³„ì‚°í•˜ì‹ì‹œì˜¤."
-#: src/slic3r/GUI/ConfigWizard.cpp:469
+#: src/slic3r/GUI/ConfigWizard.cpp:557
msgid "Filament Diameter:"
msgstr "í•„ë¼ë©˜íЏ ì§ê²½:"
-#: src/slic3r/GUI/ConfigWizard.cpp:487
+#: src/slic3r/GUI/ConfigWizard.cpp:575
msgid "Extruder and Bed Temperatures"
msgstr "ìµìŠ¤íŠ¸ë£¨ë”와 배드 온ë„"
-#: src/slic3r/GUI/ConfigWizard.cpp:487
+#: src/slic3r/GUI/ConfigWizard.cpp:575
msgid "Temperatures"
msgstr "온ë„"
-#: src/slic3r/GUI/ConfigWizard.cpp:503
+#: src/slic3r/GUI/ConfigWizard.cpp:591
msgid "Enter the temperature needed for extruding your filament."
msgstr "í•„ë¼ë©˜íЏ ì••ì¶œì— í•„ìš”í•œ 온ë„를 ìž…ë ¥í•˜ì‹ì‹œì˜¤."
-#: src/slic3r/GUI/ConfigWizard.cpp:504
+#: src/slic3r/GUI/ConfigWizard.cpp:592
msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS."
msgstr "보통 PLAì˜ ê²½ìš° 160 ~ 230 ° C, ABSì˜ ê²½ìš° 215 ~ 250 ° C입니다."
-#: src/slic3r/GUI/ConfigWizard.cpp:507
+#: src/slic3r/GUI/ConfigWizard.cpp:595
msgid "Extrusion Temperature:"
msgstr "ì¶œë ¥ ì˜¨ë„ :"
-#: src/slic3r/GUI/ConfigWizard.cpp:508 src/slic3r/GUI/ConfigWizard.cpp:522
+#: src/slic3r/GUI/ConfigWizard.cpp:596 src/slic3r/GUI/ConfigWizard.cpp:610
msgid "°C"
msgstr "°C"
-#: src/slic3r/GUI/ConfigWizard.cpp:517
+#: src/slic3r/GUI/ConfigWizard.cpp:605
msgid ""
"Enter the bed temperature needed for getting your filament to stick to your "
"heated bed."
msgstr "í•„ë¼ë©˜íŠ¸ê°€ í•«ë°°ë“œì— ì ‘ì°©í•˜ëŠ”ë° í•„ìš”í•œ 배드온ë„를 ìž…ë ¥í•˜ì‹ì‹œì˜¤."
-#: src/slic3r/GUI/ConfigWizard.cpp:518
+#: src/slic3r/GUI/ConfigWizard.cpp:606
msgid ""
"A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have "
"no heated bed."
@@ -456,62 +474,78 @@ msgstr ""
"ë³´í†µì€ PLAì˜ ê²½ìš° 60 ° Cì´ê³ ABSì˜ ê²½ìš° 110 ° C입니다. 핫배드가 없는 경우ì—"
"는 0으로 ë‘ì‹ì‹œì˜¤."
-#: src/slic3r/GUI/ConfigWizard.cpp:521
+#: src/slic3r/GUI/ConfigWizard.cpp:609
msgid "Bed Temperature:"
msgstr "배드 ì˜¨ë„ :"
-#: src/slic3r/GUI/ConfigWizard.cpp:833
+#: src/slic3r/GUI/ConfigWizard.cpp:1001
+msgid "Select all standard printers"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1004
msgid "< &Back"
msgstr "< &뒤로"
-#: src/slic3r/GUI/ConfigWizard.cpp:834
+#: src/slic3r/GUI/ConfigWizard.cpp:1005
msgid "&Next >"
msgstr "&ë‹¤ìŒ >"
-#: src/slic3r/GUI/ConfigWizard.cpp:835
+#: src/slic3r/GUI/ConfigWizard.cpp:1006
msgid "&Finish"
msgstr "&완료"
-#: src/slic3r/GUI/ConfigWizard.cpp:906
+#: src/slic3r/GUI/ConfigWizard.cpp:1007 src/slic3r/GUI/FirmwareDialog.cpp:142
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:37
+#: src/slic3r/GUI/ProgressStatusBar.cpp:28
+msgid "Cancel"
+msgstr "취소"
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1021
+msgid "Prusa FFF Technology Printers"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1024
+msgid "Prusa MSLA Technology Printers"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1111
msgid "Configuration Wizard"
msgstr "구성 마법사"
-#: src/slic3r/GUI/ConfigWizard.cpp:907
+#: src/slic3r/GUI/ConfigWizard.cpp:1112
msgid "Configuration &Wizard"
msgstr "구성 마법사"
-#: src/slic3r/GUI/ConfigWizard.cpp:909
+#: src/slic3r/GUI/ConfigWizard.cpp:1114
msgid "Configuration Assistant"
msgstr "구성 ë„우미"
-#: src/slic3r/GUI/ConfigWizard.cpp:910
+#: src/slic3r/GUI/ConfigWizard.cpp:1115
msgid "Configuration &Assistant"
msgstr "구성 ë„우미"
-#: src/slic3r/GUI/Field.cpp:109
+#: src/slic3r/GUI/Field.cpp:112
msgid "default value"
msgstr ""
-#: src/slic3r/GUI/Field.cpp:112
+#: src/slic3r/GUI/Field.cpp:115
msgid "parameter name"
msgstr ""
-#: src/slic3r/GUI/Field.cpp:140
+#: src/slic3r/GUI/Field.cpp:143
#, c-format
msgid "%s doesn't support percentage"
msgstr "%s ì´(ê°€) ë°±ë¶„ìœ¨ì„ ì§€ì›í•˜ì§€ 않ìŒ"
-#: src/slic3r/GUI/Field.cpp:148 src/slic3r/GUI/Field.cpp:168
-msgid ""
-"Input value contains incorrect symbol(s).\n"
-"Use, please, only digits"
+#: src/slic3r/GUI/Field.cpp:157 src/slic3r/GUI/Field.cpp:180
+msgid "Invalid numeric input."
msgstr ""
-#: src/slic3r/GUI/Field.cpp:153
+#: src/slic3r/GUI/Field.cpp:162
msgid "Input value is out of range"
msgstr "Input value is out of range"
-#: src/slic3r/GUI/Field.cpp:176
+#: src/slic3r/GUI/Field.cpp:188
#, c-format
msgid ""
"Do you mean %d%% instead of %d %s?\n"
@@ -519,40 +553,35 @@ msgid ""
"or NO if you are sure that %d %s is a correct value."
msgstr ""
-#: src/slic3r/GUI/Field.cpp:179
+#: src/slic3r/GUI/Field.cpp:191
msgid "Parameter validation"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:133
+#: src/slic3r/GUI/FirmwareDialog.cpp:141
msgid "Flash!"
msgstr "완료!"
-#: src/slic3r/GUI/FirmwareDialog.cpp:134 src/slic3r/GUI/GLGizmo.cpp:2270
-msgid "Cancel"
-msgstr "취소"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:135
+#: src/slic3r/GUI/FirmwareDialog.cpp:143
msgid "Flashing in progress. Please do not disconnect the printer!"
msgstr "ì•„ì§ í”Œëž˜ì‹± 중입니다. 커넥트를 분리하지 마ì‹ì‹œì˜¤!"
-#: src/slic3r/GUI/FirmwareDialog.cpp:245
+#: src/slic3r/GUI/FirmwareDialog.cpp:187
+msgid "Flashing failed: "
+msgstr ""
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:268
msgid "Flashing succeeded!"
msgstr "플래싱 성공!"
-#: src/slic3r/GUI/FirmwareDialog.cpp:246
+#: src/slic3r/GUI/FirmwareDialog.cpp:269
msgid "Flashing failed. Please see the avrdude log below."
msgstr "플래시 실패. ì•„ëž˜ì˜ ë¡œê·¸ë¥¼ 확ì¸í•˜ì„¸ìš”."
-#: src/slic3r/GUI/FirmwareDialog.cpp:247
+#: src/slic3r/GUI/FirmwareDialog.cpp:270
msgid "Flashing cancelled."
msgstr "깜빡임 취소ë¨."
-#: src/slic3r/GUI/FirmwareDialog.cpp:279
-#, c-format
-msgid "Flashing failed: %s"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:293
+#: src/slic3r/GUI/FirmwareDialog.cpp:308
#, c-format
msgid ""
"This firmware hex file does not match the printer model.\n"
@@ -563,58 +592,77 @@ msgid ""
"Please only continue if you are sure this is the right thing to do."
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:380 src/slic3r/GUI/FirmwareDialog.cpp:414
+#: src/slic3r/GUI/FirmwareDialog.cpp:395 src/slic3r/GUI/FirmwareDialog.cpp:431
+#, c-format
msgid ""
-"Multiple Original Prusa i3 MMU 2.0 devices found. Please only connect one at "
-"a time for flashing."
+"Multiple %s devices found. Please only connect one at a time for flashing."
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:508
-msgid "The device could not have been found"
+#: src/slic3r/GUI/FirmwareDialog.cpp:412
+#, c-format
+msgid ""
+"The %s device was not found.\n"
+"If the device is connected, please press the Reset button next to the USB "
+"connector ..."
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:581
+#: src/slic3r/GUI/FirmwareDialog.cpp:525
+#, c-format
+msgid "The %s device could not have been found"
+msgstr ""
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:603
#, c-format
msgid "Error accessing port at %s: %s"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:690
+#: src/slic3r/GUI/FirmwareDialog.cpp:605
+#, c-format
+msgid "Error: %s"
+msgstr ""
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:735
msgid "Firmware flasher"
msgstr "펌웨어 플래셔"
-#: src/slic3r/GUI/FirmwareDialog.cpp:712
+#: src/slic3r/GUI/FirmwareDialog.cpp:762
msgid "Firmware image:"
msgstr "펌웨어 ì´ë¯¸ì§€:"
-#: src/slic3r/GUI/FirmwareDialog.cpp:716
+#: src/slic3r/GUI/FirmwareDialog.cpp:766
msgid "Serial port:"
msgstr "시리얼 í¬íЏ:"
-#: src/slic3r/GUI/FirmwareDialog.cpp:718
+#: src/slic3r/GUI/FirmwareDialog.cpp:768
msgid "Autodetected"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:719
+#: src/slic3r/GUI/FirmwareDialog.cpp:769
msgid "Rescan"
msgstr "재검색"
-#: src/slic3r/GUI/FirmwareDialog.cpp:726
+#: src/slic3r/GUI/FirmwareDialog.cpp:776
msgid "Progress:"
msgstr "ì§„í–‰:"
-#: src/slic3r/GUI/FirmwareDialog.cpp:729
+#: src/slic3r/GUI/FirmwareDialog.cpp:779
msgid "Status:"
msgstr "지위:"
-#: src/slic3r/GUI/FirmwareDialog.cpp:730
+#: src/slic3r/GUI/FirmwareDialog.cpp:780
msgid "Ready"
msgstr "준비"
-#: src/slic3r/GUI/FirmwareDialog.cpp:750
-msgid "Advanced: avrdude output log"
-msgstr "ê³ ê¸‰: avrdude 로그 ì¶œë ¥"
+#: src/slic3r/GUI/FirmwareDialog.cpp:800
+msgid "Advanced: Output log"
+msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:809
+#: src/slic3r/GUI/FirmwareDialog.cpp:811
+#: src/slic3r/GUI/PrintHostDialogs.cpp:161
+msgid "Close"
+msgstr ""
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:859
msgid ""
"Are you sure you want to cancel firmware flashing?\n"
"This could leave your printer in an unusable state!"
@@ -622,159 +670,247 @@ msgstr ""
"펌웨어 í”Œëž˜ì‹±ì„ ì·¨ì†Œí•˜ì‹œê² ìŠµë‹ˆê¹Œ?\n"
"프린터가 ì‚¬ìš©í• ìˆ˜ 없는 ìƒíƒœê°€ ë 수 있습니다!"
-#: src/slic3r/GUI/FirmwareDialog.cpp:810
+#: src/slic3r/GUI/FirmwareDialog.cpp:860
msgid "Confirmation"
msgstr "확ì¸"
-#: src/slic3r/GUI/FirmwareDialog.cpp:813
+#: src/slic3r/GUI/FirmwareDialog.cpp:863
msgid "Cancelling..."
msgstr ""
-#: src/slic3r/GUI/GLCanvas3D.cpp:4640
+#: src/slic3r/GUI/GLCanvas3D.cpp:709
msgid "Detected object outside print volume"
msgstr "ì¶œë ¥ë¬¼ì´ í”„ë¦°í„° ì¶œë ¥ 사ì´ì¦ˆë¥¼ 넘었습니다"
-#: src/slic3r/GUI/GLCanvas3D.cpp:7962
+#: src/slic3r/GUI/GLCanvas3D.cpp:710
msgid "Detected toolpath outside print volume"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:751 src/slic3r/GUI/GUI_ObjectManipulation.cpp:300
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:322
-#: src/libslic3r/PrintConfig.cpp:3087
-msgid "Rotate"
-msgstr "íšŒì „"
-
-#: src/slic3r/GUI/GLGizmo.cpp:785
-msgid "Rotation (deg)"
+#: src/slic3r/GUI/GLCanvas3D.cpp:711
+msgid "Some objects are not visible when editing supports"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:841 src/slic3r/GUI/GUI_ObjectManipulation.cpp:206
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:301
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:323
-#: src/libslic3r/PrintConfig.cpp:3111
-msgid "Scale"
-msgstr "í¬ê¸°"
-
-#: src/slic3r/GUI/GLGizmo.cpp:1072
-msgid "Scale (%)"
+#: src/slic3r/GUI/GLCanvas3D.cpp:713
+msgid ""
+"Detected object outside print volume\n"
+"Resolve a clash to continue slicing/export process correctly"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:1200
-msgid "Move"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Position (mm)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Displacement (mm)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1430
-msgid "Place on face"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2207
-msgid "Left mouse click - add point"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2208
-msgid "Right mouse click - remove point"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2211
-msgid "Generate points automatically"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2212
-msgid "Remove all points"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2245
-msgid "SLA Support Points"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2268 src/slic3r/GUI/GLGizmo.cpp:2468
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:35
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:195
msgid "Rotate lower part upwards"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2269 src/slic3r/GUI/GLGizmo.cpp:2470
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:36
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:198
msgid "Perform cut"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2276
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:43
msgid "Cut object:"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2356 src/slic3r/GUI/GLGizmo.cpp:2461
-#: src/libslic3r/PrintConfig.cpp:3016
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:88
+msgid "Cut [C]"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 src/libslic3r/PrintConfig.cpp:3006
msgid "Cut"
msgstr "ìžë¥´ê¸°"
-#: src/slic3r/GUI/GLGizmo.cpp:2466
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:193
msgid "Keep upper part"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2467
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:194
msgid "Keep lower part"
msgstr ""
-#: src/slic3r/GUI/GUI.cpp:242
-msgid "Notice"
-msgstr "공지"
+#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:32
+msgid "Place on face [F]"
+msgstr ""
-#: src/slic3r/GUI/GUI.cpp:248
-msgid "Attempt to free unreferenced scalar"
-msgstr "참조 ë˜ì§€ ì•Šì€ ìŠ¤ì¹¼ë¼ë¥¼ ë¹„ìš°ë ¤ê³ "
+#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:51
+msgid "Move [M]"
+msgstr ""
-#: src/slic3r/GUI/GUI.cpp:250 src/slic3r/GUI/WipeTowerDialog.cpp:40
-#: src/slic3r/GUI/WipeTowerDialog.cpp:322
+#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:176
+msgid "Position (mm)"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:176
+msgid "Displacement (mm)"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:458
+msgid "Rotate [R]"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:491
+msgid "Rotation (deg)"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:51
+msgid "Scale [S]"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:276
+msgid "Scale (%)"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:597
+msgid "Left mouse click - add point"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:598
+msgid "Right mouse click - remove point"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:599
+msgid "Shift + Left (+ drag) - select point(s)"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:606
+msgid "Head diameter: "
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:618
+msgid "Lock supports under new islands"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:622
+msgid "Remove selected points"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:626
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:679
+msgid "Remove all points"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:631
+msgid "Apply changes"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:636
+msgid "Discard changes"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:644
+msgid "Minimal points distance: "
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:655
+msgid "Support points density: "
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:669
+msgid "Auto-generate points [A]"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:675
+msgid "Manual editing [M]"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:738
+msgid "SLA Support Points [L]"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:767
+msgid "Do you want to save your manually edited support points ?\n"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:768
+msgid "Save changes?"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:897
+msgid ""
+"Autogeneration will erase all manually edited points.\n"
+"\n"
+"Are you sure you want to do it?\n"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:899 src/slic3r/GUI/GUI.cpp:288
+#: src/slic3r/GUI/WipeTowerDialog.cpp:44 src/slic3r/GUI/WipeTowerDialog.cpp:328
msgid "Warning"
msgstr "위험"
-#: src/slic3r/GUI/GUI_App.cpp:377
+#: src/slic3r/GUI/GUI.cpp:147 src/slic3r/GUI/Tab.cpp:2720
+msgid "It's impossible to print multi-part object(s) with SLA technology."
+msgstr ""
+
+#: src/slic3r/GUI/GUI.cpp:148
+msgid "Please check and fix your object list."
+msgstr ""
+
+#: src/slic3r/GUI/GUI.cpp:149 src/slic3r/GUI/GUI_App.cpp:679
+#: src/slic3r/GUI/Tab.cpp:2722
+msgid "Attention!"
+msgstr "주목!"
+
+#: src/slic3r/GUI/GUI.cpp:282
+msgid "Notice"
+msgstr "공지"
+
+#: src/slic3r/GUI/GUI_App.cpp:318
+msgid "Changing of an application language"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:326 src/slic3r/GUI/GUI_App.cpp:335
+msgid "Recreating"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:339
+msgid "Loading of a current presets"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:347
+msgid "Loading of a mode view"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:429
msgid "Choose one file (3MF):"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:389
+#: src/slic3r/GUI/GUI_App.cpp:441
msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
msgstr "파ì¼ì„ ì„ íƒí•˜ì„¸ìš” (STL/OBJ/AMF/3MF/PRUSA):"
-#: src/slic3r/GUI/GUI_App.cpp:451
+#: src/slic3r/GUI/GUI_App.cpp:454
msgid "Array of language names and identifiers should have the same size."
msgstr "언어 ì´ë¦„ê³¼ ì‹ë³„ìž ë°°ì—´ì€ ê°™ì€ í¬ê¸° 여야합니다."
-#: src/slic3r/GUI/GUI_App.cpp:461
+#: src/slic3r/GUI/GUI_App.cpp:464
msgid "Select the language"
msgstr "언어를 ì„ íƒ"
-#: src/slic3r/GUI/GUI_App.cpp:461
+#: src/slic3r/GUI/GUI_App.cpp:464
msgid "Language"
msgstr "언어"
-#: src/slic3r/GUI/GUI_App.cpp:529 src/libslic3r/PrintConfig.cpp:270
+#: src/slic3r/GUI/GUI_App.cpp:534 src/slic3r/GUI/GUI_ObjectList.cpp:1067
+#: src/libslic3r/PrintConfig.cpp:298
msgid "Default"
msgstr "기본값"
# xs/src/slic3r/GUI/GUI.cpp:349
-#: src/slic3r/GUI/GUI_App.cpp:609
+#: src/slic3r/GUI/GUI_App.cpp:603
msgid "&Configuration Snapshots"
msgstr "구성 스냅ìˆ"
-#: src/slic3r/GUI/GUI_App.cpp:609
+#: src/slic3r/GUI/GUI_App.cpp:603
msgid "Inspect / activate configuration snapshots"
msgstr "구성 스냅 샷 검사 / 활성화"
-#: src/slic3r/GUI/GUI_App.cpp:610
+#: src/slic3r/GUI/GUI_App.cpp:604
msgid "Take Configuration &Snapshot"
msgstr "구성 스냅 샷 ê°€ì ¸ 오기"
-#: src/slic3r/GUI/GUI_App.cpp:610
+#: src/slic3r/GUI/GUI_App.cpp:604
msgid "Capture a configuration snapshot"
msgstr "구성 스냅 샷 캡처"
-#: src/slic3r/GUI/GUI_App.cpp:613
+#: src/slic3r/GUI/GUI_App.cpp:607
msgid "&Preferences"
msgstr "환경 ì„¤ì •"
@@ -782,7 +918,7 @@ msgstr "환경 ì„¤ì •"
msgid "Application preferences"
msgstr "ì‘ìš© 프로그램 환경 ì„¤ì •"
-#: src/slic3r/GUI/GUI_App.cpp:616
+#: src/slic3r/GUI/GUI_App.cpp:616 src/slic3r/GUI/wxExtensions.cpp:2446
msgid "Simple"
msgstr ""
@@ -790,12 +926,14 @@ msgstr ""
msgid "Simple View Mode"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:617 src/slic3r/GUI/GUI_ObjectList.cpp:39
-#: src/slic3r/GUI/Tab.cpp:948 src/slic3r/GUI/Tab.cpp:962
-#: src/slic3r/GUI/Tab.cpp:1058 src/slic3r/GUI/Tab.cpp:1061
-#: src/slic3r/GUI/Tab.cpp:1425 src/slic3r/GUI/Tab.cpp:1840
-#: src/libslic3r/PrintConfig.cpp:156 src/libslic3r/PrintConfig.cpp:323
-#: src/libslic3r/PrintConfig.cpp:999 src/libslic3r/PrintConfig.cpp:2298
+#: src/slic3r/GUI/GUI_App.cpp:617 src/slic3r/GUI/GUI_ObjectList.cpp:73
+#: src/slic3r/GUI/Tab.cpp:977 src/slic3r/GUI/Tab.cpp:992
+#: src/slic3r/GUI/Tab.cpp:1090 src/slic3r/GUI/Tab.cpp:1093
+#: src/slic3r/GUI/Tab.cpp:1466 src/slic3r/GUI/Tab.cpp:1890
+#: src/slic3r/GUI/Tab.cpp:3347 src/slic3r/GUI/wxExtensions.cpp:2447
+#: src/libslic3r/PrintConfig.cpp:72 src/libslic3r/PrintConfig.cpp:186
+#: src/libslic3r/PrintConfig.cpp:349 src/libslic3r/PrintConfig.cpp:987
+#: src/libslic3r/PrintConfig.cpp:2173
msgid "Advanced"
msgstr "ê³ ê¸‰"
@@ -803,7 +941,7 @@ msgstr "ê³ ê¸‰"
msgid "Advanced View Mode"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:618
+#: src/slic3r/GUI/GUI_App.cpp:618 src/slic3r/GUI/wxExtensions.cpp:2448
msgid "Expert"
msgstr ""
@@ -811,574 +949,713 @@ msgstr ""
msgid "Expert View Mode"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:620
+#: src/slic3r/GUI/GUI_App.cpp:623
msgid "Mode"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:620
+#: src/slic3r/GUI/GUI_App.cpp:623
msgid "Slic3r View Mode"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:622
+#: src/slic3r/GUI/GUI_App.cpp:625
msgid "Change Application &Language"
msgstr "ì‘ìš© 프로그램 언어 번경"
-#: src/slic3r/GUI/GUI_App.cpp:624
+#: src/slic3r/GUI/GUI_App.cpp:627
msgid "Flash printer &firmware"
msgstr "프린터 펌웨어 플래시"
-#: src/slic3r/GUI/GUI_App.cpp:624
+#: src/slic3r/GUI/GUI_App.cpp:627
msgid "Upload a firmware image into an Arduino based printer"
msgstr "ì•„ë‘ì´ë…¸ ê¸°ë°˜ì˜ í”„ë¦°í„° ì´ë¯¸ì§€ 업로드"
-#: src/slic3r/GUI/GUI_App.cpp:636
+#: src/slic3r/GUI/GUI_App.cpp:639
msgid "Taking configuration snapshot"
msgstr "구성 스냅 샷 만들기"
-#: src/slic3r/GUI/GUI_App.cpp:636
+#: src/slic3r/GUI/GUI_App.cpp:639
msgid "Snapshot name"
msgstr "스냅 샷 ì´ë¦„"
-#: src/slic3r/GUI/GUI_App.cpp:674
-msgid "Application will be restarted"
-msgstr "ì• í”Œë¦¬ì¼€ì´ì…˜ì´ 다시 시작ë¨"
+#: src/slic3r/GUI/GUI_App.cpp:676
+msgid "Application will be restarted after language change."
+msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/Tab.cpp:2606
-msgid "Attention!"
-msgstr "주목!"
+#: src/slic3r/GUI/GUI_App.cpp:677
+msgid "3D-Scene will be cleaned."
+msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:691
+#: src/slic3r/GUI/GUI_App.cpp:678
+msgid "Please, check your changes before."
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:706
msgid "&Configuration"
msgstr "&구성"
-#: src/slic3r/GUI/GUI_App.cpp:711
+#: src/slic3r/GUI/GUI_App.cpp:726
msgid "You have unsaved changes "
msgstr "ì €ìž¥ë˜ì§€ ì•Šì€ ë³€ê²½ 사í•ì´ ìžˆìŠµë‹ˆë‹¤ "
-#: src/slic3r/GUI/GUI_App.cpp:711
+#: src/slic3r/GUI/GUI_App.cpp:726
msgid ". Discard changes and continue anyway?"
msgstr ". 변경 사í•ì„ ì·¨ì†Œí•˜ê³ ê³„ì† í•˜ì‹œê² ìŠµë‹ˆê¹Œ?"
-#: src/slic3r/GUI/GUI_App.cpp:712
+#: src/slic3r/GUI/GUI_App.cpp:727
msgid "Unsaved Presets"
msgstr "ì €ìž¥ë˜ì§€ ì•Šì€ ê¸°ì¡´ì„¤ì •"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:31 src/libslic3r/PrintConfig.cpp:47
-#: src/libslic3r/PrintConfig.cpp:115 src/libslic3r/PrintConfig.cpp:357
-#: src/libslic3r/PrintConfig.cpp:410 src/libslic3r/PrintConfig.cpp:419
-#: src/libslic3r/PrintConfig.cpp:849 src/libslic3r/PrintConfig.cpp:1037
-#: src/libslic3r/PrintConfig.cpp:1354 src/libslic3r/PrintConfig.cpp:1426
-#: src/libslic3r/PrintConfig.cpp:1618 src/libslic3r/PrintConfig.cpp:2091
-#: src/libslic3r/PrintConfig.cpp:2150
+#: src/slic3r/GUI/GUI_ObjectList.cpp:28 src/slic3r/GUI/GUI_ObjectList.cpp:65
+#: src/libslic3r/PrintConfig.cpp:56 src/libslic3r/PrintConfig.cpp:149
+#: src/libslic3r/PrintConfig.cpp:380 src/libslic3r/PrintConfig.cpp:437
+#: src/libslic3r/PrintConfig.cpp:445 src/libslic3r/PrintConfig.cpp:841
+#: src/libslic3r/PrintConfig.cpp:1025 src/libslic3r/PrintConfig.cpp:1304
+#: src/libslic3r/PrintConfig.cpp:1370 src/libslic3r/PrintConfig.cpp:1551
+#: src/libslic3r/PrintConfig.cpp:1986 src/libslic3r/PrintConfig.cpp:2042
msgid "Layers and Perimeters"
msgstr "ë ˆì´ì–´ ë° ê²½ê³„ì„ "
-#: src/slic3r/GUI/GUI_ObjectList.cpp:32 src/slic3r/GUI/Tab.cpp:952
-#: src/slic3r/GUI/Tab.cpp:953 src/slic3r/GUI/Tab.cpp:1274
-#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:366
-#: src/libslic3r/PrintConfig.cpp:730 src/libslic3r/PrintConfig.cpp:745
-#: src/libslic3r/PrintConfig.cpp:783 src/libslic3r/PrintConfig.cpp:938
-#: src/libslic3r/PrintConfig.cpp:949 src/libslic3r/PrintConfig.cpp:969
-#: src/libslic3r/PrintConfig.cpp:989 src/libslic3r/PrintConfig.cpp:1010
-#: src/libslic3r/PrintConfig.cpp:1733 src/libslic3r/PrintConfig.cpp:1752
+#: src/slic3r/GUI/GUI_ObjectList.cpp:29 src/slic3r/GUI/GUI_ObjectList.cpp:66
+#: src/slic3r/GUI/Plater.cpp:431 src/slic3r/GUI/Tab.cpp:981
+#: src/slic3r/GUI/Tab.cpp:982 src/slic3r/GUI/Tab.cpp:1311
+#: src/libslic3r/PrintConfig.cpp:166 src/libslic3r/PrintConfig.cpp:388
+#: src/libslic3r/PrintConfig.cpp:728 src/libslic3r/PrintConfig.cpp:742
+#: src/libslic3r/PrintConfig.cpp:779 src/libslic3r/PrintConfig.cpp:932
+#: src/libslic3r/PrintConfig.cpp:942 src/libslic3r/PrintConfig.cpp:960
+#: src/libslic3r/PrintConfig.cpp:978 src/libslic3r/PrintConfig.cpp:997
+#: src/libslic3r/PrintConfig.cpp:1658 src/libslic3r/PrintConfig.cpp:1675
msgid "Infill"
msgstr "ì¸í•„(채움)"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_Preview.cpp:262
-#: src/slic3r/GUI/Tab.cpp:980 src/slic3r/GUI/Tab.cpp:981
-#: src/libslic3r/PrintConfig.cpp:305 src/libslic3r/PrintConfig.cpp:1484
-#: src/libslic3r/PrintConfig.cpp:1865 src/libslic3r/PrintConfig.cpp:1872
-#: src/libslic3r/PrintConfig.cpp:1881 src/libslic3r/PrintConfig.cpp:1894
-#: src/libslic3r/PrintConfig.cpp:1905 src/libslic3r/PrintConfig.cpp:1914
-#: src/libslic3r/PrintConfig.cpp:1930 src/libslic3r/PrintConfig.cpp:1953
-#: src/libslic3r/PrintConfig.cpp:1965 src/libslic3r/PrintConfig.cpp:1983
-#: src/libslic3r/PrintConfig.cpp:1993 src/libslic3r/PrintConfig.cpp:2003
-#: src/libslic3r/PrintConfig.cpp:2014 src/libslic3r/PrintConfig.cpp:2029
-#: src/libslic3r/PrintConfig.cpp:2038 src/libslic3r/PrintConfig.cpp:2039
-#: src/libslic3r/PrintConfig.cpp:2048 src/libslic3r/PrintConfig.cpp:2057
-#: src/libslic3r/PrintConfig.cpp:2072 src/libslic3r/GCode/PreviewData.cpp:172
+#: src/slic3r/GUI/GUI_ObjectList.cpp:30 src/slic3r/GUI/GUI_ObjectList.cpp:67
+#: src/slic3r/GUI/GUI_Preview.cpp:236 src/slic3r/GUI/Tab.cpp:1010
+#: src/slic3r/GUI/Tab.cpp:1011 src/libslic3r/PrintConfig.cpp:333
+#: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1779
+#: src/libslic3r/PrintConfig.cpp:1785 src/libslic3r/PrintConfig.cpp:1793
+#: src/libslic3r/PrintConfig.cpp:1805 src/libslic3r/PrintConfig.cpp:1815
+#: src/libslic3r/PrintConfig.cpp:1823 src/libslic3r/PrintConfig.cpp:1838
+#: src/libslic3r/PrintConfig.cpp:1859 src/libslic3r/PrintConfig.cpp:1870
+#: src/libslic3r/PrintConfig.cpp:1886 src/libslic3r/PrintConfig.cpp:1895
+#: src/libslic3r/PrintConfig.cpp:1904 src/libslic3r/PrintConfig.cpp:1915
+#: src/libslic3r/PrintConfig.cpp:1929 src/libslic3r/PrintConfig.cpp:1937
+#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1947
+#: src/libslic3r/PrintConfig.cpp:1955 src/libslic3r/PrintConfig.cpp:1969
+#: src/libslic3r/GCode/PreviewData.cpp:172
msgid "Support material"
msgstr "서í¬íЏ 재료(Support material)"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_Preview.cpp:241
-#: src/slic3r/GUI/Tab.cpp:1005 src/libslic3r/PrintConfig.cpp:169
-#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:881
-#: src/libslic3r/PrintConfig.cpp:1011 src/libslic3r/PrintConfig.cpp:1416
-#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1721
-#: src/libslic3r/PrintConfig.cpp:1776 src/libslic3r/PrintConfig.cpp:2136
-msgid "Speed"
-msgstr "ì†ë„"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/Tab.cpp:1038
-#: src/slic3r/GUI/Tab.cpp:1744 src/libslic3r/PrintConfig.cpp:430
-#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:1393
-#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1944
-#: src/libslic3r/PrintConfig.cpp:1973 src/libslic3r/PrintConfig.cpp:2271
-#: src/libslic3r/PrintConfig.cpp:2280
+#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_ObjectList.cpp:69
+#: src/slic3r/GUI/Tab.cpp:1070 src/slic3r/GUI/Tab.cpp:1794
+#: src/libslic3r/PrintConfig.cpp:455 src/libslic3r/PrintConfig.cpp:953
+#: src/libslic3r/PrintConfig.cpp:1339 src/libslic3r/PrintConfig.cpp:1667
+#: src/libslic3r/PrintConfig.cpp:1851 src/libslic3r/PrintConfig.cpp:1877
+#: src/libslic3r/PrintConfig.cpp:2149 src/libslic3r/PrintConfig.cpp:2157
msgid "Extruders"
msgstr "ìµìŠ¤íŠ¸ë£¨ë”"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/libslic3r/PrintConfig.cpp:387
-#: src/libslic3r/PrintConfig.cpp:504 src/libslic3r/PrintConfig.cpp:836
-#: src/libslic3r/PrintConfig.cpp:970 src/libslic3r/PrintConfig.cpp:1403
-#: src/libslic3r/PrintConfig.cpp:1765 src/libslic3r/PrintConfig.cpp:1954
-#: src/libslic3r/PrintConfig.cpp:2124
+#: src/slic3r/GUI/GUI_ObjectList.cpp:39
+msgid "Pad and Support"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:68 src/slic3r/GUI/GUI_Preview.cpp:215
+#: src/slic3r/GUI/Tab.cpp:1035 src/libslic3r/PrintConfig.cpp:198
+#: src/libslic3r/PrintConfig.cpp:425 src/libslic3r/PrintConfig.cpp:870
+#: src/libslic3r/PrintConfig.cpp:998 src/libslic3r/PrintConfig.cpp:1360
+#: src/libslic3r/PrintConfig.cpp:1597 src/libslic3r/PrintConfig.cpp:1646
+#: src/libslic3r/PrintConfig.cpp:1697 src/libslic3r/PrintConfig.cpp:2028
+msgid "Speed"
+msgstr "ì†ë„"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:70 src/libslic3r/PrintConfig.cpp:415
+#: src/libslic3r/PrintConfig.cpp:522 src/libslic3r/PrintConfig.cpp:829
+#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:1348
+#: src/libslic3r/PrintConfig.cpp:1687 src/libslic3r/PrintConfig.cpp:1860
+#: src/libslic3r/PrintConfig.cpp:2017
msgid "Extrusion Width"
msgstr "ì••ì¶œ í"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:41 src/slic3r/GUI/Tab.cpp:3179
-#: src/slic3r/GUI/Tab.cpp:3180 src/libslic3r/PrintConfig.cpp:2488
-#: src/libslic3r/PrintConfig.cpp:2495 src/libslic3r/PrintConfig.cpp:2504
-#: src/libslic3r/PrintConfig.cpp:2513 src/libslic3r/PrintConfig.cpp:2522
-#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2558
-#: src/libslic3r/PrintConfig.cpp:2567 src/libslic3r/PrintConfig.cpp:2576
-#: src/libslic3r/PrintConfig.cpp:2585 src/libslic3r/PrintConfig.cpp:2594
-#: src/libslic3r/PrintConfig.cpp:2603 src/libslic3r/PrintConfig.cpp:2612
-#: src/libslic3r/PrintConfig.cpp:2621
+#: src/slic3r/GUI/GUI_ObjectList.cpp:75 src/slic3r/GUI/Plater.cpp:410
+#: src/slic3r/GUI/Tab.cpp:3309 src/slic3r/GUI/Tab.cpp:3310
+#: src/libslic3r/PrintConfig.cpp:2359 src/libslic3r/PrintConfig.cpp:2366
+#: src/libslic3r/PrintConfig.cpp:2375 src/libslic3r/PrintConfig.cpp:2384
+#: src/libslic3r/PrintConfig.cpp:2394 src/libslic3r/PrintConfig.cpp:2420
+#: src/libslic3r/PrintConfig.cpp:2427 src/libslic3r/PrintConfig.cpp:2438
+#: src/libslic3r/PrintConfig.cpp:2448 src/libslic3r/PrintConfig.cpp:2457
+#: src/libslic3r/PrintConfig.cpp:2467 src/libslic3r/PrintConfig.cpp:2476
+#: src/libslic3r/PrintConfig.cpp:2486 src/libslic3r/PrintConfig.cpp:2496
+#: src/libslic3r/PrintConfig.cpp:2504
msgid "Supports"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:42 src/slic3r/GUI/Tab.cpp:3205
-#: src/slic3r/GUI/Tab.cpp:3206 src/libslic3r/PrintConfig.cpp:2630
-#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2646
-#: src/libslic3r/PrintConfig.cpp:2655 src/libslic3r/PrintConfig.cpp:2664
+#: src/slic3r/GUI/GUI_ObjectList.cpp:76 src/slic3r/GUI/Tab.cpp:3337
+#: src/slic3r/GUI/Tab.cpp:3338 src/libslic3r/PrintConfig.cpp:2512
+#: src/libslic3r/PrintConfig.cpp:2519 src/libslic3r/PrintConfig.cpp:2530
+#: src/libslic3r/PrintConfig.cpp:2540 src/libslic3r/PrintConfig.cpp:2553
+#: src/libslic3r/PrintConfig.cpp:2562
msgid "Pad"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:115
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:129
+#: src/slic3r/GUI/GUI_ObjectList.cpp:173
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:45
msgid "Name"
msgstr "ì´ë¦„"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:134
+#: src/slic3r/GUI/GUI_ObjectList.cpp:201
msgid "Right button click the icon to change the object settings"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:142
+#: src/slic3r/GUI/GUI_ObjectList.cpp:209
#, c-format
msgid "Auto-repaired (%d errors):\n"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:145
+#: src/slic3r/GUI/GUI_ObjectList.cpp:212
msgid "degenerate facets"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:146
+#: src/slic3r/GUI/GUI_ObjectList.cpp:213
msgid "edges fixed"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:147
+#: src/slic3r/GUI/GUI_ObjectList.cpp:214
msgid "facets removed"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:148
+#: src/slic3r/GUI/GUI_ObjectList.cpp:215
msgid "facets added"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:149
+#: src/slic3r/GUI/GUI_ObjectList.cpp:216
msgid "facets reversed"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:150
+#: src/slic3r/GUI/GUI_ObjectList.cpp:217
msgid "backwards edges"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:164
+#: src/slic3r/GUI/GUI_ObjectList.cpp:231
msgid "Right button click the icon to fix STL through Netfabb"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:196 src/slic3r/GUI/Tab.cpp:1389
-#: src/libslic3r/PrintConfig.cpp:429
+#: src/slic3r/GUI/GUI_ObjectList.cpp:278 src/slic3r/GUI/Tab.cpp:1430
+#: src/libslic3r/PrintConfig.cpp:454
msgid "Extruder"
msgstr "ìµìŠ¤íŠ¸ë£¨ë”(Extruder)"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:615
+#: src/slic3r/GUI/GUI_ObjectList.cpp:683 src/slic3r/GUI/GUI_ObjectList.cpp:963
+#: src/slic3r/GUI/GUI_ObjectList.cpp:969 src/slic3r/GUI/GUI_ObjectList.cpp:1199
+#, c-format
+msgid "Quick Add Settings (%s)"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:746
msgid "Select showing settings"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:655
+#: src/slic3r/GUI/GUI_ObjectList.cpp:874
msgid "Load"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659 src/slic3r/GUI/GUI_ObjectList.cpp:688
-#: src/slic3r/GUI/GUI_ObjectList.cpp:691
+#: src/slic3r/GUI/GUI_ObjectList.cpp:879 src/slic3r/GUI/GUI_ObjectList.cpp:911
+#: src/slic3r/GUI/GUI_ObjectList.cpp:914
msgid "Box"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
+#: src/slic3r/GUI/GUI_ObjectList.cpp:879
msgid "Cylinder"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
+#: src/slic3r/GUI/GUI_ObjectList.cpp:879
msgid "Sphere"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
+#: src/slic3r/GUI/GUI_ObjectList.cpp:879
msgid "Slab"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:671 src/slic3r/GUI/GUI_ObjectList.cpp:685
+#: src/slic3r/GUI/GUI_ObjectList.cpp:890 src/slic3r/GUI/GUI_ObjectList.cpp:906
msgid "Add part"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:672
+#: src/slic3r/GUI/GUI_ObjectList.cpp:891
msgid "Add modifier"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:673 src/slic3r/GUI/GUI_ObjectList.cpp:687
+#: src/slic3r/GUI/GUI_ObjectList.cpp:892 src/slic3r/GUI/GUI_ObjectList.cpp:910
msgid "Add support enforcer"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:674 src/slic3r/GUI/GUI_ObjectList.cpp:690
+#: src/slic3r/GUI/GUI_ObjectList.cpp:893 src/slic3r/GUI/GUI_ObjectList.cpp:913
msgid "Add support blocker"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:711
+#: src/slic3r/GUI/GUI_ObjectList.cpp:934
msgid "Split to parts"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:725
+#: src/slic3r/GUI/GUI_ObjectList.cpp:942
msgid "Add settings"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:739
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1009
msgid "Change type"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1009
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1016
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1153
+msgid "Set as a Separated Object"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1024
+msgid "Rename"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1034
+msgid "Fix through the Netfabb"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1041 src/slic3r/GUI/Plater.cpp:2861
+msgid "Export as STL"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1048
+msgid "Change extruder"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1073
+msgid "Select new extruder for the object/part"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1079 src/slic3r/GUI/Plater.cpp:2825
+#: src/slic3r/GUI/Plater.cpp:2843 src/slic3r/GUI/Tab.cpp:2860
+msgid "Delete"
+msgstr "지우기(delete)"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1153
+msgid "Set as a Separated Objects"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1374
+msgid "Generic"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1516
msgid "You can't delete the last solid part from object."
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1017
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1533
msgid "You can't delete the last intance from object."
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1044 src/slic3r/GUI/Plater.cpp:1825
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1560 src/slic3r/GUI/Plater.cpp:2219
msgid ""
"The selected object couldn't be split because it contains only one part."
msgstr ""
"ì„ íƒí•œ 오브ì 트는 파트가 하나만 í¬í•¨ë˜ì–´ 있기 ë•Œë¬¸ì— ë¶„í• í• ìˆ˜ 없습니다."
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1138
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1676
msgid "Group manipulation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1149
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1688
msgid "Object manipulation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1159
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1698
msgid "Object Settings to modify"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1163
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1702
msgid "Part Settings to modify"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1173
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1711
msgid "Part manipulation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1180
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1717
msgid "Instance manipulation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1655
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2240
+msgid "Object or Instance"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2240
+msgid "Part"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2242
+msgid "Unsupported selection"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2243
+#, c-format
+msgid "You started your selection with %s Item."
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2244
+#, c-format
+msgid "In this mode you can select only other %s Items%s"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2247
+msgid "of a current Object"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2252
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2325 src/slic3r/GUI/Plater.cpp:117
+msgid "Info"
+msgstr "ì •ë³´"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2366
msgid "You can't change a type of the last solid part of the object."
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1662
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2373
msgid "Select type of part"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1744 src/slic3r/GUI/Tab.cpp:3070
-#: src/slic3r/GUI/Tab.cpp:3074
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2538
+msgid "Enter new name"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2538
+msgid "Renaming"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2554
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2632 src/slic3r/GUI/Tab.cpp:3191
+#: src/slic3r/GUI/Tab.cpp:3195
msgid "The supplied name is not valid;"
msgstr "ì œê³µëœ ì´ë¦„ì´ ìœ íš¨í•˜ì§€ 않습니다;"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1745 src/slic3r/GUI/Tab.cpp:3071
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2555
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2633 src/slic3r/GUI/Tab.cpp:3192
msgid "the following characters are not allowed:"
msgstr "ë‹¤ìŒ ë¬¸ìžëŠ” 허용ë˜ì§€ 않습니다:"
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:21
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2653
+msgid "Set extruder for selected items"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2654
+msgid "Select extruder number for selected objects and/or parts"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2667
+msgid "Select extruder number:"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2668
+msgid "This extruder will be set for selected items"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:25
msgid "Object Manipulation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:132
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:47
msgid "Object name"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:115
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:160
msgid "Position"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:205
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:116
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:161
msgid "Rotation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:117
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:201
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:221
+#: src/libslic3r/PrintConfig.cpp:3070
+msgid "Scale"
+msgstr "í¬ê¸°"
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:162
msgid "Scale factors"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:321
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:200
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:220
+#: src/libslic3r/PrintConfig.cpp:3055
+msgid "Rotate"
+msgstr "íšŒì „"
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:219
msgid "Translate"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:235
+#: src/slic3r/GUI/GUI_ObjectSettings.cpp:58
+msgid "Additional Settings"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_Preview.cpp:209
msgid "View"
msgstr "View"
-#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/GUI_Preview.cpp:550
+#: src/slic3r/GUI/GUI_Preview.cpp:212 src/slic3r/GUI/GUI_Preview.cpp:525
#: src/libslic3r/GCode/PreviewData.cpp:394
msgid "Feature type"
msgstr "특색 ìœ í˜•"
-#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/PrintConfig.cpp:443
+#: src/slic3r/GUI/GUI_Preview.cpp:213 src/libslic3r/PrintConfig.cpp:467
msgid "Height"
msgstr "높ì´"
-#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/PrintConfig.cpp:2255
+#: src/slic3r/GUI/GUI_Preview.cpp:214 src/libslic3r/PrintConfig.cpp:2135
msgid "Width"
msgstr "í"
-#: src/slic3r/GUI/GUI_Preview.cpp:242
+#: src/slic3r/GUI/GUI_Preview.cpp:216
msgid "Volumetric flow rate"
msgstr "ìš©ì ì˜ ìœ ëŸ‰ê°’"
-#: src/slic3r/GUI/GUI_Preview.cpp:243 src/slic3r/GUI/GUI_Preview.cpp:347
-#: src/slic3r/GUI/GUI_Preview.cpp:496 src/slic3r/GUI/GUI_Preview.cpp:718
-#: src/libslic3r/GCode/PreviewData.cpp:404
+#: src/slic3r/GUI/GUI_Preview.cpp:217 src/slic3r/GUI/GUI_Preview.cpp:315
+#: src/slic3r/GUI/GUI_Preview.cpp:469 src/slic3r/GUI/GUI_Preview.cpp:525
+#: src/slic3r/GUI/GUI_Preview.cpp:701 src/libslic3r/GCode/PreviewData.cpp:404
msgid "Tool"
msgstr "ë„구"
-#: src/slic3r/GUI/GUI_Preview.cpp:244 src/slic3r/GUI/GUI_Preview.cpp:550
+#: src/slic3r/GUI/GUI_Preview.cpp:218 src/slic3r/GUI/GUI_Preview.cpp:523
#: src/libslic3r/GCode/PreviewData.cpp:406
msgid "Color Print"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:247
+#: src/slic3r/GUI/GUI_Preview.cpp:221
msgid "Show"
msgstr "보다"
-#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/GUI_Preview.cpp:251
+#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/GUI_Preview.cpp:225
msgid "Feature types"
msgstr "특색 ìœ í˜•"
-#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/GCode/PreviewData.cpp:163
+#: src/slic3r/GUI/GUI_Preview.cpp:227 src/libslic3r/GCode/PreviewData.cpp:163
msgid "Perimeter"
msgstr "가장ìžë¦¬"
-#: src/slic3r/GUI/GUI_Preview.cpp:254 src/libslic3r/GCode/PreviewData.cpp:164
+#: src/slic3r/GUI/GUI_Preview.cpp:228 src/libslic3r/GCode/PreviewData.cpp:164
msgid "External perimeter"
msgstr "외부 가장ìžë¦¬"
-#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/GCode/PreviewData.cpp:165
+#: src/slic3r/GUI/GUI_Preview.cpp:229 src/libslic3r/GCode/PreviewData.cpp:165
msgid "Overhang perimeter"
msgstr "오버행(Overhang) ë‘˜ë ˆ"
-#: src/slic3r/GUI/GUI_Preview.cpp:256 src/libslic3r/GCode/PreviewData.cpp:166
+#: src/slic3r/GUI/GUI_Preview.cpp:230 src/libslic3r/GCode/PreviewData.cpp:166
msgid "Internal infill"
msgstr "내부 채움"
-#: src/slic3r/GUI/GUI_Preview.cpp:257 src/libslic3r/PrintConfig.cpp:1764
-#: src/libslic3r/PrintConfig.cpp:1775 src/libslic3r/GCode/PreviewData.cpp:167
+#: src/slic3r/GUI/GUI_Preview.cpp:231 src/libslic3r/PrintConfig.cpp:1686
+#: src/libslic3r/PrintConfig.cpp:1696 src/libslic3r/GCode/PreviewData.cpp:167
msgid "Solid infill"
msgstr "솔리드 ì¸í•„"
-#: src/slic3r/GUI/GUI_Preview.cpp:258 src/libslic3r/PrintConfig.cpp:2123
-#: src/libslic3r/PrintConfig.cpp:2135 src/libslic3r/GCode/PreviewData.cpp:168
+#: src/slic3r/GUI/GUI_Preview.cpp:232 src/libslic3r/PrintConfig.cpp:2016
+#: src/libslic3r/PrintConfig.cpp:2027 src/libslic3r/GCode/PreviewData.cpp:168
msgid "Top solid infill"
msgstr "가장 윗부분 채움"
-#: src/slic3r/GUI/GUI_Preview.cpp:259 src/libslic3r/GCode/PreviewData.cpp:169
+#: src/slic3r/GUI/GUI_Preview.cpp:233 src/libslic3r/GCode/PreviewData.cpp:169
msgid "Bridge infill"
msgstr "프릿지 채움"
-#: src/slic3r/GUI/GUI_Preview.cpp:260 src/libslic3r/PrintConfig.cpp:880
+#: src/slic3r/GUI/GUI_Preview.cpp:234 src/libslic3r/PrintConfig.cpp:869
#: src/libslic3r/GCode/PreviewData.cpp:170
msgid "Gap fill"
msgstr "공백 채움"
-#: src/slic3r/GUI/GUI_Preview.cpp:261 src/slic3r/GUI/Tab.cpp:971
+#: src/slic3r/GUI/GUI_Preview.cpp:235 src/slic3r/GUI/Tab.cpp:1001
#: src/libslic3r/GCode/PreviewData.cpp:171
msgid "Skirt"
msgstr "스커트"
-#: src/slic3r/GUI/GUI_Preview.cpp:263 src/libslic3r/PrintConfig.cpp:2002
+#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/PrintConfig.cpp:1903
#: src/libslic3r/GCode/PreviewData.cpp:173
msgid "Support material interface"
msgstr "서í¬íЏ 재료 ì¸í„°íŽ˜ì´ìФ"
-#: src/slic3r/GUI/GUI_Preview.cpp:264 src/slic3r/GUI/Tab.cpp:1049
+#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/Tab.cpp:1081
#: src/libslic3r/GCode/PreviewData.cpp:174
msgid "Wipe tower"
msgstr "와ì´í”„ 타워(Wipe tower)"
-#: src/slic3r/GUI/GUI_Preview.cpp:269 src/libslic3r/PrintConfig.cpp:2158
+#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/PrintConfig.cpp:2049
msgid "Travel"
msgstr "ì´ì†¡"
-#: src/slic3r/GUI/GUI_Preview.cpp:270
+#: src/slic3r/GUI/GUI_Preview.cpp:244
msgid "Retractions"
msgstr "리트랙션"
-#: src/slic3r/GUI/GUI_Preview.cpp:271
+#: src/slic3r/GUI/GUI_Preview.cpp:245
msgid "Unretractions"
msgstr "리트랙션 취소"
-#: src/slic3r/GUI/GUI_Preview.cpp:272
+#: src/slic3r/GUI/GUI_Preview.cpp:246
msgid "Shells"
msgstr "쉘"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:12
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:13
msgid "Slic3r Prusa Edition - Keyboard Shortcuts"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:47
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:126
-msgid "Main Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:101
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:100
msgid "Open project STL/OBJ/AMF/3MF with config, delete bed"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:102
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:101
msgid "Import STL/OBJ/AMF/3MF without config, keep bed"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:103
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:102
msgid "Load Config from .ini/amf/3mf/gcode"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:104 src/slic3r/GUI/Plater.cpp:605
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:103 src/slic3r/GUI/Plater.cpp:725
+#: src/slic3r/GUI/Plater.cpp:3673 src/libslic3r/PrintConfig.cpp:2957
msgid "Export G-code"
msgstr "G-코드 내보내기"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:105
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:104
msgid "Save project (3MF)"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:106
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:105
msgid "Load Config from .ini/amf/3mf/gcode and merge"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:107
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:106
msgid "(Re)slice"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:108
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:107
msgid "Quick slice"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 src/slic3r/GUI/MainFrame.cpp:289
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 src/slic3r/GUI/MainFrame.cpp:326
msgid "Repeat last quick slice"
msgstr "마지막으로 ë¹ ë¥¸ 슬ë¼ì´ìФ 반복"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:110
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:109
msgid "Select Plater Tab"
msgstr "ì„ íƒ ë° í”Œëž˜ì´íЏ íƒ"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:111
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:110
msgid "Quick slice and Save as"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:112
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:111
msgid "Select Print Settings Tab"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:113
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:112
msgid "Select Filament Settings Tab"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:114
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:113
msgid "Select Printer Settings Tab"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:115
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:114
msgid "Switch to 3D"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:116
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:115
msgid "Switch to Preview"
msgstr ""
# xs/src/slic3r/GUI/Preferences.cpp:9
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 src/slic3r/GUI/Preferences.cpp:10
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 src/slic3r/GUI/Preferences.cpp:10
msgid "Preferences"
msgstr "환경 ì„¤ì •"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:118
-#: src/slic3r/GUI/PrintHostDialogs.cpp:89
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:117
+#: src/slic3r/GUI/PrintHostDialogs.cpp:134
msgid "Print host upload queue"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:119
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:118
msgid "Camera view "
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:120
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:119
msgid "Add Instance to selected object "
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:121
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:120
msgid "Remove Instance from selected object"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:122
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:121
msgid "Show keyboard shortcuts list"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:123
-msgid "Switch between 3D and Preview"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:124
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:122
msgid "Select multiple object/Move multiple object"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:132
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:124
+msgid "Main Shortcuts"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:130
msgid "Arrange"
msgstr "ì •ë ¬"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:133
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:131
msgid "Select All objects"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:134
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:132
msgid "Delete selected"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:135
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:133
msgid "Delete All"
msgstr "ì „ë¶€ 지움"
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:136
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:134
msgid "Gizmo move"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:137
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:135
msgid "Gizmo scale"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:138
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:136
msgid "Gizmo rotate"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:139
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:137
msgid "Gizmo cut"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:140
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:138
msgid "Gizmo Place face on bed"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:141
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:139
msgid "Gizmo SLA support points"
msgstr ""
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:140
+#, no-c-format
+msgid ""
+"Press to snap by 5% in Gizmo scale\n"
+"or by 1mm in Gizmo move"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:141
+msgid ""
+"Press to scale or rotate selected objects\n"
+"around their own center"
+msgstr ""
+
#: src/slic3r/GUI/KBShortcutsDialog.cpp:142
msgid "Zoom to Bed"
msgstr ""
@@ -1407,644 +1684,695 @@ msgstr ""
msgid "Plater Shortcuts"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:164
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:175
msgid "Arrow Up"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:164
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:166
msgid "Upper Layer"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:165
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:176
msgid "Arrow Down"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:165
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:167
msgid "Lower Layer"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:158
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:169
msgid "Preview Shortcuts"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:53
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:175
+msgid "Move current slider thump Up"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:176
+msgid "Move current slider thump Down"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:177
+msgid "Arrow Left"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:177
+msgid "Set upper thumb to current slider thumb"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:178
+msgid "Arrow Right"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:178
+msgid "Set lower thumb to current slider thumb"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:179
+msgid "Add color change marker for current layer"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:180
+msgid "Delete color change marker for current layer"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:182
+msgid "Layers Slider Shortcuts"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:54
msgid ""
" - Remember to check for updates at http://github.com/prusa3d/slic3r/releases"
msgstr ""
" -http://github.com/prusa3d/slic3r/releasesì—서 ì—…ë°ì´íŠ¸ë¥¼ 확ì¸í•˜ëŠ” ê²ƒì„ ìžŠ"
"ì§€ 마ì‹ì‹œì˜¤"
-#: src/slic3r/GUI/MainFrame.cpp:130
+#: src/slic3r/GUI/MainFrame.cpp:160
msgid "Plater"
msgstr "í”Œë ˆì´íЏ"
-#: src/slic3r/GUI/MainFrame.cpp:236
-msgid "&Open"
-msgstr "오픈"
+#: src/slic3r/GUI/MainFrame.cpp:273
+msgid "&Open Project"
+msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:236
+#: src/slic3r/GUI/MainFrame.cpp:273
msgid "Open a project file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:238
-msgid "&Save"
+#: src/slic3r/GUI/MainFrame.cpp:275
+msgid "&Save Project"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:238
+#: src/slic3r/GUI/MainFrame.cpp:275
msgid "Save current project file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:240
-msgid "Save &as"
+#: src/slic3r/GUI/MainFrame.cpp:277
+msgid "Save Project &as"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:240
+#: src/slic3r/GUI/MainFrame.cpp:277
msgid "Save current project file as"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:246
+#: src/slic3r/GUI/MainFrame.cpp:283
msgid "Import STL/OBJ/AM&F/3MF"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:246
+#: src/slic3r/GUI/MainFrame.cpp:283
msgid "Load a model"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:249
+#: src/slic3r/GUI/MainFrame.cpp:286
msgid "Import &Config"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:249
+#: src/slic3r/GUI/MainFrame.cpp:286
msgid "Load exported configuration file"
msgstr "ë‚´ 보낸 구성 파ì¼ë¡œë“œ"
-#: src/slic3r/GUI/MainFrame.cpp:251
+#: src/slic3r/GUI/MainFrame.cpp:288
msgid "Import Config from &project"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:251
+#: src/slic3r/GUI/MainFrame.cpp:288
msgid "Load configuration from project file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:254
+#: src/slic3r/GUI/MainFrame.cpp:291
msgid "Import Config &Bundle"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:254
+#: src/slic3r/GUI/MainFrame.cpp:291
msgid "Load presets from a bundle"
msgstr "번들ì—서 미리 ì„¤ì •ë¡œë“œ"
-#: src/slic3r/GUI/MainFrame.cpp:256
+#: src/slic3r/GUI/MainFrame.cpp:293
msgid "&Import"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:259
+#: src/slic3r/GUI/MainFrame.cpp:296
msgid "Export &G-code"
msgstr "G-코드 내보내기"
-#: src/slic3r/GUI/MainFrame.cpp:259
+#: src/slic3r/GUI/MainFrame.cpp:296
msgid "Export current plate as G-code"
msgstr "현재 í”Œë ˆì´íŠ¸ë¥¼ G 코드로 내보내기"
-#: src/slic3r/GUI/MainFrame.cpp:262
+#: src/slic3r/GUI/MainFrame.cpp:299
msgid "Export plate as &STL"
msgstr "STL로 내보내기"
-#: src/slic3r/GUI/MainFrame.cpp:262
+#: src/slic3r/GUI/MainFrame.cpp:299
msgid "Export current plate as STL"
msgstr "현재 í”Œë ˆì´íŠ¸ë¥¼ STL로 내보내기"
-#: src/slic3r/GUI/MainFrame.cpp:264
+#: src/slic3r/GUI/MainFrame.cpp:301
msgid "Export plate as &AMF"
msgstr "AMF로 내보내기"
-#: src/slic3r/GUI/MainFrame.cpp:264
+#: src/slic3r/GUI/MainFrame.cpp:301
msgid "Export current plate as AMF"
msgstr "현재 í”Œë ˆì´íŠ¸ë¥¼AMF로 내보내기"
-#: src/slic3r/GUI/MainFrame.cpp:267
+#: src/slic3r/GUI/MainFrame.cpp:304
msgid "Export &Config"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:267
+#: src/slic3r/GUI/MainFrame.cpp:304
msgid "Export current configuration to file"
msgstr "현재 êµ¬ì„±ì„ íŒŒì¼ë¡œ 내보내기"
-#: src/slic3r/GUI/MainFrame.cpp:269
+#: src/slic3r/GUI/MainFrame.cpp:306
msgid "Export Config &Bundle"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:269
+#: src/slic3r/GUI/MainFrame.cpp:306
msgid "Export all presets to file"
msgstr "ëª¨ë“ ì´ì „ ì„¤ì •ì„ íŒŒì¼ë¡œ 내보내기"
-#: src/slic3r/GUI/MainFrame.cpp:271
+#: src/slic3r/GUI/MainFrame.cpp:308
msgid "&Export"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:277
+#: src/slic3r/GUI/MainFrame.cpp:314
msgid "Quick Slice"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:277
+#: src/slic3r/GUI/MainFrame.cpp:314
msgid "Slice a file into a G-code"
msgstr "파ì¼ì„ G 코드로 ë¶„í• "
-#: src/slic3r/GUI/MainFrame.cpp:283
+#: src/slic3r/GUI/MainFrame.cpp:320
msgid "Quick Slice and Save As"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:283
+#: src/slic3r/GUI/MainFrame.cpp:320
msgid "Slice a file into a G-code, save as"
msgstr "파ì¼ì„ G 코드로 ë¶„í• í•˜ê³ ë‹¤ìŒìœ¼ë¡œ ì €ìž¥"
-#: src/slic3r/GUI/MainFrame.cpp:289
+#: src/slic3r/GUI/MainFrame.cpp:326
msgid "Repeat Last Quick Slice"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:297
+#: src/slic3r/GUI/MainFrame.cpp:334
msgid "(Re)Slice &Now"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:297
+#: src/slic3r/GUI/MainFrame.cpp:334
msgid "Start new slicing process"
msgstr "새로운 슬ë¼ì´ì‹± 작업 시작"
-#: src/slic3r/GUI/MainFrame.cpp:300
+#: src/slic3r/GUI/MainFrame.cpp:337
msgid "&Repair STL file"
msgstr "STL íŒŒì¼ ë³µêµ¬"
-#: src/slic3r/GUI/MainFrame.cpp:300
+#: src/slic3r/GUI/MainFrame.cpp:337
msgid "Automatically repair an STL file"
msgstr "STL 파ì¼ì„ ìžë™ìœ¼ë¡œ 복구합니다"
-#: src/slic3r/GUI/MainFrame.cpp:303
+#: src/slic3r/GUI/MainFrame.cpp:340
msgid "&Quit"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:303
+#: src/slic3r/GUI/MainFrame.cpp:340
msgid "Quit Slic3r"
msgstr "Slic3r 종료"
-#: src/slic3r/GUI/MainFrame.cpp:321
+#: src/slic3r/GUI/MainFrame.cpp:374
msgid "&Select all"
-msgstr ""
+msgstr "ëª¨ë‘ ì„ íƒ"
-#: src/slic3r/GUI/MainFrame.cpp:321
+#: src/slic3r/GUI/MainFrame.cpp:374
msgid "Selects all objects"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:324
+#: src/slic3r/GUI/MainFrame.cpp:377
msgid "&Delete selected"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:324
+#: src/slic3r/GUI/MainFrame.cpp:377
msgid "Deletes the current selection"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:326
+#: src/slic3r/GUI/MainFrame.cpp:379
msgid "Delete &all"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:326
+#: src/slic3r/GUI/MainFrame.cpp:379
msgid "Deletes all objects"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:339
+#: src/slic3r/GUI/MainFrame.cpp:392
msgid "&Plater Tab"
msgstr "ì„ íƒ ë° í”Œëž˜ì´íЏ íƒ"
-#: src/slic3r/GUI/MainFrame.cpp:339
+#: src/slic3r/GUI/MainFrame.cpp:392
msgid "Show the plater"
msgstr "í”Œë ˆì´íŠ¸ë¥¼ 보기"
-#: src/slic3r/GUI/MainFrame.cpp:346
+#: src/slic3r/GUI/MainFrame.cpp:399
msgid "P&rint Settings Tab"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:346
+#: src/slic3r/GUI/MainFrame.cpp:399
msgid "Show the print settings"
msgstr "ì¸ì‡„ ì„¤ì • 표시"
-#: src/slic3r/GUI/MainFrame.cpp:348
+#: src/slic3r/GUI/MainFrame.cpp:401
msgid "&Filament Settings Tab"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:348
+#: src/slic3r/GUI/MainFrame.cpp:401
msgid "Show the filament settings"
msgstr "í•„ë¼ë©˜íЏ ì„¤ì •ë³´ê¸°"
-#: src/slic3r/GUI/MainFrame.cpp:350
+#: src/slic3r/GUI/MainFrame.cpp:403
msgid "Print&er Settings Tab"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:350
+#: src/slic3r/GUI/MainFrame.cpp:403
msgid "Show the printer settings"
msgstr "간단한 ì„¤ì •ë³´ê¸°"
-#: src/slic3r/GUI/MainFrame.cpp:354
+#: src/slic3r/GUI/MainFrame.cpp:407
msgid "3&D"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:354
+#: src/slic3r/GUI/MainFrame.cpp:407
msgid "Show the 3D editing view"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:356
+#: src/slic3r/GUI/MainFrame.cpp:409
msgid "Pre&view"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:356
+#: src/slic3r/GUI/MainFrame.cpp:409
msgid "Show the 3D slices preview"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:377
+#: src/slic3r/GUI/MainFrame.cpp:430
msgid "Print &Host Upload Queue"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:377
+#: src/slic3r/GUI/MainFrame.cpp:430
msgid "Display the Print Host Upload Queue window"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "&Iso"
+#: src/slic3r/GUI/MainFrame.cpp:439
+msgid "Iso"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:388
+#: src/slic3r/GUI/MainFrame.cpp:439
msgid "Iso View"
msgstr "Iso 보기"
# lib/Slic3r/GUI/MainFrame.pm:327
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "&Top"
+#: src/slic3r/GUI/MainFrame.cpp:441
+msgid "Top"
msgstr "윗부분"
-#: src/slic3r/GUI/MainFrame.cpp:390
+#: src/libslic3r/PrintConfig.cpp:2041
+msgctxt "Layers"
+msgid "Top"
+msgstr "윗부분"
+
+#: src/slic3r/GUI/MainFrame.cpp:441
msgid "Top View"
msgstr "위ì—서 보기"
# lib/Slic3r/GUI/MainFrame.pm:328
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "&Bottom"
+#: src/slic3r/GUI/MainFrame.cpp:442
+msgid "Bottom"
msgstr "바닥(Bottom)"
-#: src/slic3r/GUI/MainFrame.cpp:391
+#: src/libslic3r/PrintConfig.cpp:148
+msgctxt "Layers"
+msgid "Bottom"
+msgstr "바닥(Bottom)"
+
+#: src/slic3r/GUI/MainFrame.cpp:442
msgid "Bottom View"
msgstr "바닥 보기"
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "&Front"
+#: src/slic3r/GUI/MainFrame.cpp:443
+msgid "Front"
msgstr "앞"
-#: src/slic3r/GUI/MainFrame.cpp:392
+#: src/slic3r/GUI/MainFrame.cpp:443
msgid "Front View"
msgstr "앞면 보기"
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "R&ear"
+#: src/slic3r/GUI/MainFrame.cpp:444 src/libslic3r/PrintConfig.cpp:1561
+msgid "Rear"
msgstr "ë’·ë©´"
-#: src/slic3r/GUI/MainFrame.cpp:393
+#: src/slic3r/GUI/MainFrame.cpp:444
msgid "Rear View"
msgstr "뒷면 보기"
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "&Left"
+#: src/slic3r/GUI/MainFrame.cpp:445
+msgid "Left"
msgstr "왼쪽"
-#: src/slic3r/GUI/MainFrame.cpp:394
+#: src/slic3r/GUI/MainFrame.cpp:445
msgid "Left View"
msgstr "왼쪽 보기"
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "&Right"
+#: src/slic3r/GUI/MainFrame.cpp:446
+msgid "Right"
msgstr "오른쪽"
-#: src/slic3r/GUI/MainFrame.cpp:395
+#: src/slic3r/GUI/MainFrame.cpp:446
msgid "Right View"
msgstr "오른쪽 보기"
-#: src/slic3r/GUI/MainFrame.cpp:409
+#: src/slic3r/GUI/MainFrame.cpp:460
msgid "Prusa 3D &Drivers"
msgstr "푸르사 3D 드ë¼ì´ë²„"
-#: src/slic3r/GUI/MainFrame.cpp:409
+#: src/slic3r/GUI/MainFrame.cpp:460
msgid "Open the Prusa3D drivers download page in your browser"
msgstr "브ë¼ìš°ì €ì—서 Prusa3D 드ë¼ì´ë²„ 다운로드 페ì´ì§€ë¥¼ 엽니다"
-#: src/slic3r/GUI/MainFrame.cpp:411
+#: src/slic3r/GUI/MainFrame.cpp:462
msgid "Prusa Edition &Releases"
msgstr "Prusa ì—디션 릴리스"
-#: src/slic3r/GUI/MainFrame.cpp:411
+#: src/slic3r/GUI/MainFrame.cpp:462
msgid "Open the Prusa Edition releases page in your browser"
msgstr "브ë¼ìš°ì €ì—서 Prusa Edition 릴리즈 페ì´ì§€ë¥¼ 엽니 다"
-#: src/slic3r/GUI/MainFrame.cpp:417
+#: src/slic3r/GUI/MainFrame.cpp:468
msgid "Slic3r &Website"
msgstr "Slic3r ë° ì›¹ 사ì´íЏ"
-#: src/slic3r/GUI/MainFrame.cpp:417
+#: src/slic3r/GUI/MainFrame.cpp:468
msgid "Open the Slic3r website in your browser"
msgstr "브ë¼ìš°ì €ì—서 Slic3r 웹 사ì´íЏ 열기"
-#: src/slic3r/GUI/MainFrame.cpp:419
+#: src/slic3r/GUI/MainFrame.cpp:470
msgid "Slic3r &Manual"
msgstr "Slic3r &메뉴얼"
-#: src/slic3r/GUI/MainFrame.cpp:419
+#: src/slic3r/GUI/MainFrame.cpp:470
msgid "Open the Slic3r manual in your browser"
msgstr "브ë¼ìš°ì €ì—서 Slic3r 설명서를 엽니다"
-#: src/slic3r/GUI/MainFrame.cpp:422
+#: src/slic3r/GUI/MainFrame.cpp:473
msgid "System &Info"
msgstr "시스템 ì •ë³´"
-#: src/slic3r/GUI/MainFrame.cpp:422
+#: src/slic3r/GUI/MainFrame.cpp:473
msgid "Show system information"
msgstr "시스템 ì •ë³´ 표시"
-#: src/slic3r/GUI/MainFrame.cpp:424
+#: src/slic3r/GUI/MainFrame.cpp:475
msgid "Show &Configuration Folder"
msgstr "í´ë” 표시 ë° êµ¬ì„±"
-#: src/slic3r/GUI/MainFrame.cpp:424
+#: src/slic3r/GUI/MainFrame.cpp:475
msgid "Show user configuration folder (datadir)"
msgstr "ì‚¬ìš©ìž êµ¬ì„± í´ë” 표시 (datadir)"
-#: src/slic3r/GUI/MainFrame.cpp:426
+#: src/slic3r/GUI/MainFrame.cpp:477
msgid "Report an I&ssue"
msgstr "ë¬¸ì œë³´ê³ "
-#: src/slic3r/GUI/MainFrame.cpp:426
+#: src/slic3r/GUI/MainFrame.cpp:477
msgid "Report an issue on the Slic3r Prusa Edition"
msgstr "Slic3r Prusa Editionì— ê´€í•œ ë¬¸ì œì ë³´ê³ "
-#: src/slic3r/GUI/MainFrame.cpp:428
+#: src/slic3r/GUI/MainFrame.cpp:479
msgid "&About Slic3r"
msgstr "&Slic3rì— ëŒ€í•˜ì—¬"
-#: src/slic3r/GUI/MainFrame.cpp:428
+#: src/slic3r/GUI/MainFrame.cpp:479
msgid "Show about dialog"
msgstr "대화ìƒìž 표시"
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "&Keyboard Shortcuts"
+#: src/slic3r/GUI/MainFrame.cpp:482
+msgid "Keyboard Shortcuts"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:431
+#: src/slic3r/GUI/MainFrame.cpp:482
msgid "Show the list of the keyboard shortcuts"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:439
+#: src/slic3r/GUI/MainFrame.cpp:490
msgid "&File"
msgstr "&파ì¼"
-#: src/slic3r/GUI/MainFrame.cpp:440
+#: src/slic3r/GUI/MainFrame.cpp:491
msgid "&Edit"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:441
+#: src/slic3r/GUI/MainFrame.cpp:492
msgid "&Window"
msgstr "&윈ë„ìš°"
-#: src/slic3r/GUI/MainFrame.cpp:442
+#: src/slic3r/GUI/MainFrame.cpp:493
msgid "&View"
msgstr "&보다"
-#: src/slic3r/GUI/MainFrame.cpp:445
+#: src/slic3r/GUI/MainFrame.cpp:496
msgid "&Help"
msgstr "&ë„움ë§"
-#: src/slic3r/GUI/MainFrame.cpp:472
+#: src/slic3r/GUI/MainFrame.cpp:524
msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
msgstr "슬ë¼ì´ìФ í• íŒŒì¼ì„ ì„ íƒí•˜ì‹ì‹œì˜¤ (STL / OBJ / AMF / 3MF / PRUSA):"
-#: src/slic3r/GUI/MainFrame.cpp:486
+#: src/slic3r/GUI/MainFrame.cpp:538
msgid "No previously sliced file."
msgstr "ì´ì „ì— ë¶„ë¦¬ ëœ íŒŒì¼ì´ 없습니다."
-#: src/slic3r/GUI/MainFrame.cpp:487 src/slic3r/GUI/PrintHostDialogs.cpp:173
+#: src/slic3r/GUI/MainFrame.cpp:539 src/slic3r/GUI/PrintHostDialogs.cpp:219
msgid "Error"
msgstr "ì—러"
-#: src/slic3r/GUI/MainFrame.cpp:492
+#: src/slic3r/GUI/MainFrame.cpp:544
msgid "Previously sliced file ("
msgstr "ì´ì „ì— ë¶„ë¦¬ ëœ íŒŒì¼ ("
-#: src/slic3r/GUI/MainFrame.cpp:492
+#: src/slic3r/GUI/MainFrame.cpp:544
msgid ") not found."
msgstr ")ì„ ì°¾ì„ ìˆ˜ 없습니다."
-#: src/slic3r/GUI/MainFrame.cpp:493
+#: src/slic3r/GUI/MainFrame.cpp:545
msgid "File Not Found"
msgstr "파ì¼ì„ ì°¾ì„수 없다"
-#: src/slic3r/GUI/MainFrame.cpp:531 src/slic3r/GUI/Tab.cpp:3031
+#: src/slic3r/GUI/MainFrame.cpp:580 src/slic3r/GUI/Tab.cpp:3152
msgid "Save "
msgstr "ì €ìž¥ "
-#: src/slic3r/GUI/MainFrame.cpp:531
+#: src/slic3r/GUI/MainFrame.cpp:580
msgid "SVG"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:531
+#: src/slic3r/GUI/MainFrame.cpp:580
msgid "G-code"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:531
+#: src/slic3r/GUI/MainFrame.cpp:580
msgid " file as:"
msgstr " ë‹¤ìŒ íŒŒì¼ :"
-#: src/slic3r/GUI/MainFrame.cpp:548
+#: src/slic3r/GUI/MainFrame.cpp:595
msgid "Save zip file as:"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:560
+#: src/slic3r/GUI/MainFrame.cpp:607 src/slic3r/GUI/Plater.cpp:2352
+#: src/slic3r/GUI/Plater.cpp:3467 src/slic3r/GUI/Tab.cpp:1110
+#: src/slic3r/GUI/Tab.cpp:3348
msgid "Slicing"
msgstr "슬ë¼ì´ì‹±"
-#: src/slic3r/GUI/MainFrame.cpp:560
+#: src/slic3r/GUI/MainFrame.cpp:607
msgid "Processing "
msgstr "프로세싱 "
-#: src/slic3r/GUI/MainFrame.cpp:583
+#: src/slic3r/GUI/MainFrame.cpp:630
msgid " was successfully sliced."
msgstr " 성공ì 으로 슬ë¼ì´ìФ."
-#: src/slic3r/GUI/MainFrame.cpp:585
+#: src/slic3r/GUI/MainFrame.cpp:632
msgid "Slicing Done!"
msgstr "슬ë¼ì´ìФ 완료!"
-#: src/slic3r/GUI/MainFrame.cpp:600
+#: src/slic3r/GUI/MainFrame.cpp:647
msgid "Select the STL file to repair:"
msgstr "복구 í• STL 파ì¼ì„ ì„ íƒí•˜ì‹ì‹œì˜¤:"
-#: src/slic3r/GUI/MainFrame.cpp:614
+#: src/slic3r/GUI/MainFrame.cpp:661
msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
msgstr "OBJ 파ì¼ì„ ì €ìž¥í•˜ì‹ì‹œì˜¤ (STL보다 오류를 ëœ ì¡°ì •í• ê°€ëŠ¥ì„±ì´ ì ìŒ):"
-#: src/slic3r/GUI/MainFrame.cpp:629
+#: src/slic3r/GUI/MainFrame.cpp:676
msgid "Your file was repaired."
msgstr "파ì¼ì´ 복구ë˜ì—ˆìŠµë‹ˆë‹¤."
-#: src/slic3r/GUI/MainFrame.cpp:629
+#: src/slic3r/GUI/MainFrame.cpp:676 src/libslic3r/PrintConfig.cpp:3051
msgid "Repair"
msgstr "ìˆ˜ì •"
-#: src/slic3r/GUI/MainFrame.cpp:643
+#: src/slic3r/GUI/MainFrame.cpp:690
msgid "Save configuration as:"
msgstr "êµ¬ì„±ì„ ì €ìž¥ :"
-#: src/slic3r/GUI/MainFrame.cpp:663 src/slic3r/GUI/MainFrame.cpp:727
+#: src/slic3r/GUI/MainFrame.cpp:710 src/slic3r/GUI/MainFrame.cpp:774
msgid "Select configuration to load:"
msgstr "로드 í• êµ¬ì„± ì„ íƒ :"
-#: src/slic3r/GUI/MainFrame.cpp:700
+#: src/slic3r/GUI/MainFrame.cpp:747
msgid "Save presets bundle as:"
msgstr "ì´ì „ ì„¤ì • ë²ˆë“¤ì„ ë‹¤ìŒê³¼ ê°™ì´ ì €ìž¥ :"
-#: src/slic3r/GUI/MainFrame.cpp:751
+#: src/slic3r/GUI/MainFrame.cpp:798
#, c-format
msgid "%d presets successfully imported."
msgstr "% d ì‚¬ì „ ì„¤ì •ì„ ê°€ì ¸ 왔습니다."
-#: src/slic3r/GUI/MsgDialog.cpp:66
+#: src/slic3r/GUI/MsgDialog.cpp:71
msgid "Slic3r error"
msgstr "Slic3r 오류"
-#: src/slic3r/GUI/MsgDialog.cpp:66
+#: src/slic3r/GUI/MsgDialog.cpp:71
msgid "Slic3r has encountered an error"
msgstr "Slic3rì— ì˜¤ë¥˜ê°€ ë°œìƒí–ˆìŠµë‹ˆë‹¤"
-#: src/slic3r/GUI/MsgDialog.cpp:84
-msgid "Copy to clipboard"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:107
-msgid "Info"
-msgstr "ì •ë³´"
-
-#: src/slic3r/GUI/Plater.cpp:126
+#: src/slic3r/GUI/Plater.cpp:137
msgid "Volume"
msgstr "í¬ê¸°"
-#: src/slic3r/GUI/Plater.cpp:127
+#: src/slic3r/GUI/Plater.cpp:138
msgid "Facets"
msgstr "측면"
-#: src/slic3r/GUI/Plater.cpp:128
+#: src/slic3r/GUI/Plater.cpp:139
msgid "Materials"
msgstr "재료"
-#: src/slic3r/GUI/Plater.cpp:131
+#: src/slic3r/GUI/Plater.cpp:142
msgid "Manifold"
msgstr "ë§Žì€"
-#: src/slic3r/GUI/Plater.cpp:174
+#: src/slic3r/GUI/Plater.cpp:188
msgid "Sliced Info"
msgstr "슬ë¼ì´ìŠ¤ëœ ì •ë³´"
-#: src/slic3r/GUI/Plater.cpp:193 src/slic3r/GUI/Plater.cpp:823
+#: src/slic3r/GUI/Plater.cpp:207 src/slic3r/GUI/Plater.cpp:998
msgid "Used Filament (m)"
msgstr "ì‚¬ìš©ìž í•„ë¼ë©˜íЏ (m)"
-#: src/slic3r/GUI/Plater.cpp:194
+#: src/slic3r/GUI/Plater.cpp:208
msgid "Used Filament (mm³)"
msgstr "ì‚¬ìš©ìž í•„ë¼ë©˜íЏ (mm³)"
-#: src/slic3r/GUI/Plater.cpp:195
+#: src/slic3r/GUI/Plater.cpp:209
msgid "Used Filament (g)"
msgstr "ì‚¬ìš©ìž í•„ë¼ë©˜íЏ (g)"
-#: src/slic3r/GUI/Plater.cpp:196 src/slic3r/GUI/Plater.cpp:838
-#: src/libslic3r/PrintConfig.cpp:718
+#: src/slic3r/GUI/Plater.cpp:210
+msgid "Used Material (unit)"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:211 src/slic3r/GUI/Plater.cpp:1013
+#: src/libslic3r/PrintConfig.cpp:716
msgid "Cost"
msgstr "비용"
-#: src/slic3r/GUI/Plater.cpp:197 src/slic3r/GUI/Plater.cpp:852
+#: src/slic3r/GUI/Plater.cpp:212 src/slic3r/GUI/Plater.cpp:985
+#: src/slic3r/GUI/Plater.cpp:1027
msgid "Estimated printing time"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:198
+#: src/slic3r/GUI/Plater.cpp:213
msgid "Number of tool changes"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:361
-msgid "Support"
-msgstr "서í¬íЏ(지지대)"
+#: src/slic3r/GUI/Plater.cpp:290
+msgid "Click to edit preset"
+msgstr ""
-#: src/slic3r/GUI/Plater.cpp:364
+#: src/slic3r/GUI/Plater.cpp:413
msgid "Select what kind of support do you need"
msgstr "서í¬íŠ¸ì˜ ì¢…ë¥˜ë¥¼ ì„ íƒí•˜ì„¸ìš”"
-#: src/slic3r/GUI/Plater.cpp:365 src/libslic3r/GCode/PreviewData.cpp:162
-msgid "None"
-msgstr "ì—†ìŒ"
-
-#: src/slic3r/GUI/Plater.cpp:366 src/libslic3r/PrintConfig.cpp:1904
+#: src/slic3r/GUI/Plater.cpp:415 src/libslic3r/PrintConfig.cpp:1814
+#: src/libslic3r/PrintConfig.cpp:2419
msgid "Support on build plate only"
msgstr "ì¶œë ¥ë¬¼ë§Œ 서í¬íŠ¸ë¥¼ 지지"
-#: src/slic3r/GUI/Plater.cpp:367
+#: src/slic3r/GUI/Plater.cpp:416
msgid "Everywhere"
msgstr "ëª¨ë“ ê³³"
-#: src/slic3r/GUI/Plater.cpp:379 src/slic3r/GUI/Tab.cpp:977
+#: src/slic3r/GUI/Plater.cpp:438 src/slic3r/GUI/Tab.cpp:1007
msgid "Brim"
msgstr "브림"
-#: src/slic3r/GUI/Plater.cpp:381
+#: src/slic3r/GUI/Plater.cpp:440
msgid ""
"This flag enables the brim that will be printed around each object on the "
"first layer."
msgstr ""
"ì´ í”Œëž˜ê·¸ëŠ” 첫 번째 ë ˆì´ì–´ì˜ ê° ê°œì²´ ì£¼ìœ„ì— ì¸ì‡„ ë ë¸Œë¦¼ì„ í™œì„±í™”í•©ë‹ˆë‹¤."
-#: src/slic3r/GUI/Plater.cpp:390
+#: src/slic3r/GUI/Plater.cpp:448
msgid "Purging volumes"
msgstr "볼륨 ì‚ì œ"
-#: src/slic3r/GUI/Plater.cpp:556
+#: src/slic3r/GUI/Plater.cpp:673
msgid "Print settings"
msgstr "프린트 ì„¤ì •"
-#: src/slic3r/GUI/Plater.cpp:557 src/slic3r/GUI/Tab.cpp:1380
-#: src/slic3r/GUI/Tab.cpp:1381
+#: src/slic3r/GUI/Plater.cpp:674 src/slic3r/GUI/Tab.cpp:1421
+#: src/slic3r/GUI/Tab.cpp:1422
msgid "Filament"
msgstr "í•„ë¼ë©˜íЏ"
-#: src/slic3r/GUI/Plater.cpp:558 src/slic3r/GUI/Preset.cpp:1158
+#: src/slic3r/GUI/Plater.cpp:675 src/slic3r/GUI/Preset.cpp:1252
msgid "SLA print"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:559 src/slic3r/GUI/Preset.cpp:1159
+#: src/slic3r/GUI/Plater.cpp:676 src/slic3r/GUI/Preset.cpp:1253
msgid "SLA material"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:560
+#: src/slic3r/GUI/Plater.cpp:677
msgid "Printer"
msgstr "프린터"
-#: src/slic3r/GUI/Plater.cpp:588
+#: src/slic3r/GUI/Plater.cpp:707 src/slic3r/GUI/Plater.cpp:3674
msgid "Send to printer"
msgstr "프린터로 보내기"
-#: src/slic3r/GUI/Plater.cpp:607
+#: src/slic3r/GUI/Plater.cpp:727 src/slic3r/GUI/Plater.cpp:2352
+#: src/slic3r/GUI/Plater.cpp:3470
msgid "Slice now"
msgstr "지금 ìžë¥´ê¸°"
-#: src/slic3r/GUI/Plater.cpp:787
+#: src/slic3r/GUI/Plater.cpp:860
+msgid "Hold Shift to Slice & Export G-code"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:931
#, c-format
msgid "%d (%d shells)"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:792
+#: src/slic3r/GUI/Plater.cpp:936
#, c-format
msgid "Auto-repaired (%d errors)"
msgstr "오류ìžë™ìˆ˜ì • (%d errors)"
-#: src/slic3r/GUI/Plater.cpp:795
+#: src/slic3r/GUI/Plater.cpp:939
#, c-format
msgid ""
"%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d "
@@ -2053,36 +2381,48 @@ msgstr ""
"%d ë©´ ê³ ì •, %d 모서리 ê³ ì •, %d ë©´ ì œê±°, %d ë©´ 추가, %d ë©´ ë°˜ì „, %d 후방 모서"
"리"
-#: src/slic3r/GUI/Plater.cpp:805
+#: src/slic3r/GUI/Plater.cpp:949
msgid "Yes"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
+#: src/slic3r/GUI/Plater.cpp:972
+msgid "Used Material (ml)"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:975
+msgid "object(s)"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:975
+msgid "supports and pad"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:1000 src/slic3r/GUI/Plater.cpp:1015
msgid "objects"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
+#: src/slic3r/GUI/Plater.cpp:1000 src/slic3r/GUI/Plater.cpp:1015
msgid "wipe tower"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:855
+#: src/slic3r/GUI/Plater.cpp:1030
msgid "normal mode"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:859
+#: src/slic3r/GUI/Plater.cpp:1034
msgid "silent mode"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1304
+#: src/slic3r/GUI/Plater.cpp:1544
msgid "Loading"
msgstr "로딩"
-#: src/slic3r/GUI/Plater.cpp:1314
+#: src/slic3r/GUI/Plater.cpp:1554
#, c-format
msgid "Processing input file %s\n"
msgstr "ìž…ë ¥ íŒŒì¼ ì²˜ë¦¬ %s\n"
-#: src/slic3r/GUI/Plater.cpp:1366
+#: src/slic3r/GUI/Plater.cpp:1612
msgid ""
"This file contains several objects positioned at multiple heights. Instead "
"of considering them as multiple objects, should I consider\n"
@@ -2092,18 +2432,28 @@ msgstr ""
"는 ëŒ€ì‹ ,\n"
"ì´ íŒŒì¼ì€ 여러 ë¶€ë¶„ì„ ê°–ëŠ” ë‹¨ì¼ ê°ì²´ë¡œ 보입니까?\n"
-#: src/slic3r/GUI/Plater.cpp:1369 src/slic3r/GUI/Plater.cpp:1411
+#: src/slic3r/GUI/Plater.cpp:1615 src/slic3r/GUI/Plater.cpp:1707
msgid "Multi-part object detected"
msgstr "다중 부품 ê°ì²´ê°€ ê°ì§€"
-#: src/slic3r/GUI/Plater.cpp:1388
+#: src/slic3r/GUI/Plater.cpp:1650
+msgid ""
+"This file cannot be loaded in simple mode. Do you want to switch to expert "
+"mode?\n"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:1651
+msgid "Detected advanced data"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:1684
#, c-format
msgid ""
"You can't to add the object(s) from %s because of one or some of them "
"is(are) multi-part"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1408
+#: src/slic3r/GUI/Plater.cpp:1704
msgid ""
"Multiple objects were loaded for a multi-material printer.\n"
"Instead of considering them as multiple objects, should I consider\n"
@@ -2113,57 +2463,61 @@ msgstr ""
"여러 ê°ì²´ë¡œ 간주하는 ëŒ€ì‹ ,\n"
"ì´ íŒŒì¼ë“¤ì€ 여러 ë¶€ë¶„ì„ ê°–ëŠ” ë‹¨ì¼ ê°ì²´ë¥¼ 나타낼 수 있습니까?\n"
-#: src/slic3r/GUI/Plater.cpp:1424
+#: src/slic3r/GUI/Plater.cpp:1720
msgid "Loaded"
msgstr "로드(loaded)"
-#: src/slic3r/GUI/Plater.cpp:1492
+#: src/slic3r/GUI/Plater.cpp:1812
msgid ""
"Your object appears to be too large, so it was automatically scaled down to "
"fit your print bed."
msgstr "개체가 너무 커서 ì¸ì‡„ë¬¼ì— ë§žê²Œ ìžë™ìœ¼ë¡œ 축소ë˜ì—ˆìŠµë‹ˆë‹¤."
-#: src/slic3r/GUI/Plater.cpp:1493
+#: src/slic3r/GUI/Plater.cpp:1813
msgid "Object too large?"
msgstr "개체가 너무 í½ë‹ˆê¹Œ?"
-#: src/slic3r/GUI/Plater.cpp:1536
-msgid "Export print config"
-msgstr "ì¸ì‡„ ì„¤ì • 내보내기"
+#: src/slic3r/GUI/Plater.cpp:1863
+msgid "Export STL file:"
+msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1538
+#: src/slic3r/GUI/Plater.cpp:1870
+msgid "Export AMF file:"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:1876
msgid "Save file as:"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1702
+#: src/slic3r/GUI/Plater.cpp:2042
msgid "Arranging canceled"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1705
+#: src/slic3r/GUI/Plater.cpp:2045
msgid "Arranging"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1736
+#: src/slic3r/GUI/Plater.cpp:2079
msgid "Could not arrange model objects! Some geometries may be invalid."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1740
+#: src/slic3r/GUI/Plater.cpp:2083
msgid "Arranging done."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1782
+#: src/slic3r/GUI/Plater.cpp:2124
msgid "Orientation search canceled"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1787
+#: src/slic3r/GUI/Plater.cpp:2129
msgid "Searching for optimal orientation"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1797
+#: src/slic3r/GUI/Plater.cpp:2190
msgid "Orientation found."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1818
+#: src/slic3r/GUI/Plater.cpp:2211
msgid ""
"The selected object can't be split because it contains more than one volume/"
"material."
@@ -2171,170 +2525,179 @@ msgstr ""
"ì„ íƒí•œ ê°ì²´ëŠ” 둘 ì´ìƒì˜ 볼륨 / 재료가 í¬í•¨ë˜ì–´ 있기 ë•Œë¬¸ì— ë¶„í• í• ìˆ˜ 없습니"
"다."
-#: src/slic3r/GUI/Plater.cpp:1945 src/slic3r/GUI/PrintHostDialogs.cpp:174
+#: src/slic3r/GUI/Plater.cpp:2337
+msgid "Invalid data"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:2346
+msgid "Ready to slice"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:2379 src/slic3r/GUI/PrintHostDialogs.cpp:220
msgid "Cancelling"
msgstr "취소 중"
-#: src/slic3r/GUI/Plater.cpp:1962
+#: src/slic3r/GUI/Plater.cpp:2396
msgid "Another export job is currently running."
msgstr "다른 내보내기 ìž‘ì—…ì´ í˜„ìž¬ 실행 중입니다."
-#: src/slic3r/GUI/Plater.cpp:2215
+#: src/slic3r/GUI/Plater.cpp:2656
msgid "Export failed"
msgstr "내보내기 실패"
-#: src/slic3r/GUI/Plater.cpp:2219 src/slic3r/GUI/PrintHostDialogs.cpp:175
+#: src/slic3r/GUI/Plater.cpp:2661 src/slic3r/GUI/PrintHostDialogs.cpp:221
msgid "Cancelled"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2346 src/slic3r/GUI/Tab.cpp:2736
-msgid "Delete"
-msgstr "지우기(delete)"
-
-#: src/slic3r/GUI/Plater.cpp:2346
-msgid "Remove the selected object"
-msgstr "ì„ íƒí•œ ê°ì²´ ì œê±°"
-
-#: src/slic3r/GUI/Plater.cpp:2349
+#: src/slic3r/GUI/Plater.cpp:2747 src/slic3r/GUI/Plater.cpp:2759
+#: src/slic3r/GUI/Plater.cpp:2831
msgid "Increase copies"
msgstr "복사본 늘리기"
-#: src/slic3r/GUI/Plater.cpp:2349
+#: src/slic3r/GUI/Plater.cpp:2825 src/slic3r/GUI/Plater.cpp:2843
+msgid "Remove the selected object"
+msgstr "ì„ íƒí•œ ê°ì²´ ì œê±°"
+
+#: src/slic3r/GUI/Plater.cpp:2831
msgid "Place one more copy of the selected object"
msgstr "ì„ íƒí•œ ê°ì²´ë¥¼ 하나 ë” ë³µì‚¬í•©ë‹ˆë‹¤"
-#: src/slic3r/GUI/Plater.cpp:2351
+#: src/slic3r/GUI/Plater.cpp:2833
msgid "Decrease copies"
msgstr "복사본 ê°ì†Œ"
-#: src/slic3r/GUI/Plater.cpp:2351
+#: src/slic3r/GUI/Plater.cpp:2833
msgid "Remove one copy of the selected object"
msgstr "ì„ íƒí•œ ê°ì²´ 복사본 하나 ì‚ì œ"
-#: src/slic3r/GUI/Plater.cpp:2353
+#: src/slic3r/GUI/Plater.cpp:2835
msgid "Set number of copies"
msgstr "복사ë 수량 ì„¤ì •"
-#: src/slic3r/GUI/Plater.cpp:2353
+#: src/slic3r/GUI/Plater.cpp:2835
msgid "Change the number of copies of the selected object"
msgstr "ì„ íƒí•œ ê°œì²´ì˜ ë³µì‚¬ë³¸ 수 변경"
-#: src/slic3r/GUI/Plater.cpp:2363
+#: src/slic3r/GUI/Plater.cpp:2858
msgid "Reload from Disk"
msgstr "디스í¬ì—서 다시 불러오기"
-#: src/slic3r/GUI/Plater.cpp:2363
+#: src/slic3r/GUI/Plater.cpp:2858
msgid "Reload the selected file from Disk"
msgstr "디스í¬ì—서 다시 불러오기"
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export object as STL"
+#: src/slic3r/GUI/Plater.cpp:2861
+msgid "Export the selected object as STL file"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export this single object as STL file"
-msgstr "ì´ ê°ì²´ë¥¼ STL 파ì¼ë¡œ ë‚´ 보냅니다"
-
-#: src/slic3r/GUI/Plater.cpp:2375
+#: src/slic3r/GUI/Plater.cpp:2873
msgid "Along X axis"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2375
+#: src/slic3r/GUI/Plater.cpp:2873
msgid "Mirror the selected object along the X axis"
msgstr "ì„ íƒí•œ ê°ì²´ë¥¼ X ì¶•ì„ ë”°ë¼ ë°˜ì „í•©ë‹ˆë‹¤"
-#: src/slic3r/GUI/Plater.cpp:2377
+#: src/slic3r/GUI/Plater.cpp:2875
msgid "Along Y axis"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2377
+#: src/slic3r/GUI/Plater.cpp:2875
msgid "Mirror the selected object along the Y axis"
msgstr "ì„ íƒí•œ ê°ì²´ë¥¼ Y ì¶•ì„ ë”°ë¼ ë°˜ì „í•©ë‹ˆë‹¤"
-#: src/slic3r/GUI/Plater.cpp:2379
+#: src/slic3r/GUI/Plater.cpp:2877
msgid "Along Z axis"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2379
+#: src/slic3r/GUI/Plater.cpp:2877
msgid "Mirror the selected object along the Z axis"
msgstr "ì„ íƒí•œ ê°ì²´ë¥¼ Z ì¶•ì„ ë”°ë¼ ë°˜ì „í•©ë‹ˆë‹¤"
-#: src/slic3r/GUI/Plater.cpp:2382
+#: src/slic3r/GUI/Plater.cpp:2880
msgid "Mirror"
msgstr "ë°˜ì „(Mirror)"
-#: src/slic3r/GUI/Plater.cpp:2382
+#: src/slic3r/GUI/Plater.cpp:2880
msgid "Mirror the selected object"
msgstr "ë°˜ì „í• ê°ì œë¥¼ ì„ íƒ"
-#: src/slic3r/GUI/Plater.cpp:2400
+#: src/slic3r/GUI/Plater.cpp:2898
msgid "To objects"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2400 src/slic3r/GUI/Plater.cpp:2431
+#: src/slic3r/GUI/Plater.cpp:2898 src/slic3r/GUI/Plater.cpp:2920
msgid "Split the selected object into individual objects"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2402
+#: src/slic3r/GUI/Plater.cpp:2900
msgid "To parts"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2402 src/slic3r/GUI/Plater.cpp:2451
+#: src/slic3r/GUI/Plater.cpp:2900 src/slic3r/GUI/Plater.cpp:2940
msgid "Split the selected object into individual sub-parts"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2405 src/slic3r/GUI/Plater.cpp:2431
-#: src/slic3r/GUI/Plater.cpp:2451
+#: src/slic3r/GUI/Plater.cpp:2903 src/slic3r/GUI/Plater.cpp:2920
+#: src/slic3r/GUI/Plater.cpp:2940 src/libslic3r/PrintConfig.cpp:3075
msgid "Split"
msgstr "쪼개기"
-#: src/slic3r/GUI/Plater.cpp:2405
+#: src/slic3r/GUI/Plater.cpp:2903
msgid "Split the selected object"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2435
+#: src/slic3r/GUI/Plater.cpp:2926
msgid "Optimize orientation"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2435
+#: src/slic3r/GUI/Plater.cpp:2926
msgid "Optimize the rotation of the object for better print results."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2795
+#: src/slic3r/GUI/Plater.cpp:3342
msgid "Save G-code file as:"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2795
-msgid "Save Zip file as:"
+#: src/slic3r/GUI/Plater.cpp:3342
+msgid "Save SL1 file as:"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2845
+#: src/slic3r/GUI/Plater.cpp:3397
#, c-format
msgid "STL file exported to %s"
msgstr "내보낸 STL íŒŒì¼ %s"
-#: src/slic3r/GUI/Plater.cpp:2861
+#: src/slic3r/GUI/Plater.cpp:3413
#, c-format
msgid "AMF file exported to %s"
msgstr "내보낸 AMF íŒŒì¼ %s"
-#: src/slic3r/GUI/Plater.cpp:2864
+#: src/slic3r/GUI/Plater.cpp:3416
#, c-format
msgid "Error exporting AMF file %s"
msgstr "AMF íŒŒì¼ ë‚´ë³´ë‚´ê¸° 오류 %s"
-#: src/slic3r/GUI/Plater.cpp:2891
+#: src/slic3r/GUI/Plater.cpp:3442
#, c-format
msgid "3MF file exported to %s"
msgstr "3MF 파ì¼ì„ 내보냈습니다 %s"
-#: src/slic3r/GUI/Plater.cpp:2894
+#: src/slic3r/GUI/Plater.cpp:3445
#, c-format
msgid "Error exporting 3MF file %s"
msgstr "3MF íŒŒì¼ ë‚´ë³´ë‚´ê¸° 오류 %s"
-#: src/slic3r/GUI/Preferences.cpp:17 src/slic3r/GUI/Tab.cpp:1712
-#: src/slic3r/GUI/Tab.cpp:1911
+#: src/slic3r/GUI/Plater.cpp:3673
+msgid "Export"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:3674
+msgid "Send G-code"
+msgstr ""
+
+#: src/slic3r/GUI/Preferences.cpp:17 src/slic3r/GUI/Tab.cpp:1762
+#: src/slic3r/GUI/Tab.cpp:1963
msgid "General"
msgstr "ì¼ë°˜"
@@ -2396,11 +2759,11 @@ msgstr ""
"ì´ ì˜µì…˜ì„ ì„ íƒí•˜ë©´ 활성 프린터와 호환ë˜ì§€ 않는 것으로 í‘œì‹œëœ ê²½ìš°ì—ë„ ì¸ì‡„ "
"ë° í•„ë¼ë©˜íЏ ì‚¬ì „ ì„¤ì •ì´ ì‚¬ì „ ì„¤ì • íŽ¸ì§‘ê¸°ì— í‘œì‹œë©ë‹ˆë‹¤"
-#: src/slic3r/GUI/Preferences.cpp:90
+#: src/slic3r/GUI/Preferences.cpp:91
msgid "Use legacy OpenGL 1.1 rendering"
msgstr "ë ˆê±°ì‹œ OpenGL 1.1 ë Œë”ë§ ì‚¬ìš©"
-#: src/slic3r/GUI/Preferences.cpp:92
+#: src/slic3r/GUI/Preferences.cpp:93
msgid ""
"If you have rendering issues caused by a buggy OpenGL 2.0 driver, you may "
"try to check this checkbox. This will disable the layer height editing and "
@@ -2410,26 +2773,40 @@ msgstr ""
"í•´ë³´ì‹ì‹œì˜¤. ì´ë ‡ê²Œí•˜ë©´ ë ˆì´ì–´ ë†’ì´ íŽ¸ì§‘ ë° ì•¤í‹° ì•¨ë¦¬ì–´ì‹±ì´ ë¹„í™œì„±í™”ë˜ë¯€ë¡œ ê·¸"
"래픽 드ë¼ì´ë²„를 ì—…ê·¸ë ˆì´ë“œí•˜ëŠ” ê²ƒì´ ì¢‹ìŠµë‹ˆë‹¤."
-#: src/slic3r/GUI/Preferences.cpp:115
+#: src/slic3r/GUI/Preferences.cpp:101
+msgid "Use Retina resolution for the 3D scene"
+msgstr ""
+
+#: src/slic3r/GUI/Preferences.cpp:103
+msgid ""
+"If enabled, the 3D scene will be rendered in Retina resolution. If you are "
+"experiencing 3D performance problems, disabling this option may help."
+msgstr ""
+
+#: src/slic3r/GUI/Preferences.cpp:126
msgid "You need to restart Slic3r to make the changes effective."
msgstr "변경 사í•ì„ ì ìš©í•˜ë ¤ë©´ Slic3rì„ ë‹¤ì‹œ 시작해야합니다."
-#: src/slic3r/GUI/Preset.cpp:170
+#: src/slic3r/GUI/Preset.cpp:207
msgid "modified"
msgstr "ìˆ˜ì •ëœê³³"
-#: src/slic3r/GUI/Preset.cpp:862 src/slic3r/GUI/Preset.cpp:902
-#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:962
-#: src/slic3r/GUI/PresetBundle.cpp:1459 src/slic3r/GUI/PresetBundle.cpp:1512
+#: src/slic3r/GUI/Preset.cpp:918 src/slic3r/GUI/Preset.cpp:958
+#: src/slic3r/GUI/Preset.cpp:1011 src/slic3r/GUI/Preset.cpp:1043
+#: src/slic3r/GUI/PresetBundle.cpp:1484 src/slic3r/GUI/PresetBundle.cpp:1537
msgid "System presets"
msgstr "시스템 ê¸°ë³¸ì„¤ì •"
-#: src/slic3r/GUI/Preset.cpp:906 src/slic3r/GUI/Preset.cpp:966
-#: src/slic3r/GUI/PresetBundle.cpp:1517
+#: src/slic3r/GUI/Preset.cpp:962 src/slic3r/GUI/Preset.cpp:1047
+#: src/slic3r/GUI/PresetBundle.cpp:1542
msgid "User presets"
msgstr "ì‚¬ìš©ìž ì‚¬ì „ì„¤ì •"
-#: src/slic3r/GUI/Preset.cpp:1157
+#: src/slic3r/GUI/Preset.cpp:991 src/slic3r/GUI/Tab.cpp:247
+msgid "Add a new printer"
+msgstr ""
+
+#: src/slic3r/GUI/Preset.cpp:1251
msgid "filament"
msgstr ""
@@ -2568,48 +2945,44 @@ msgstr "개체 ë ˆì´ì–´ ë†’ì´ %.2f ì— ëŒ€ 한 ì–‡ì€ ë²½ ë‘께 권장 하
msgid "%d lines: %.2lf mm"
msgstr "%d ë¼ì¸(lines): %.2lf mm"
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
+#: src/slic3r/GUI/PrintHostDialogs.cpp:32
msgid "Send G-Code to printer host"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
+#: src/slic3r/GUI/PrintHostDialogs.cpp:32
msgid "Upload to Printer Host with the following filename:"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:31
+#: src/slic3r/GUI/PrintHostDialogs.cpp:34
msgid "Start printing after upload"
msgstr "업로드 후 ì¸ì‡„ 시작"
-#: src/slic3r/GUI/PrintHostDialogs.cpp:33
+#: src/slic3r/GUI/PrintHostDialogs.cpp:41
msgid "Use forward slashes ( / ) as a directory separator if needed."
msgstr "필요한 경우 ë””ë ‰í† ë¦¬ 분리 기호로 슬래시 (/)를 사용하ì‹ì‹œì˜¤."
-#: src/slic3r/GUI/PrintHostDialogs.cpp:111
+#: src/slic3r/GUI/PrintHostDialogs.cpp:157
msgid "Cancel selected"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:113
+#: src/slic3r/GUI/PrintHostDialogs.cpp:159
msgid "Show error message"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:115
-msgid "Close"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:152
-#: src/slic3r/GUI/PrintHostDialogs.cpp:171
+#: src/slic3r/GUI/PrintHostDialogs.cpp:198
+#: src/slic3r/GUI/PrintHostDialogs.cpp:217
msgid "Enqueued"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:172
+#: src/slic3r/GUI/PrintHostDialogs.cpp:218
msgid "Uploading"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:176
+#: src/slic3r/GUI/PrintHostDialogs.cpp:222
msgid "Completed"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:214
+#: src/slic3r/GUI/PrintHostDialogs.cpp:260
msgid "Error uploading to print host:"
msgstr ""
@@ -2622,10 +2995,10 @@ msgid "Time"
msgstr "시간"
#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78 src/libslic3r/PrintConfig.cpp:603
-#: src/libslic3r/PrintConfig.cpp:653 src/libslic3r/PrintConfig.cpp:670
-#: src/libslic3r/PrintConfig.cpp:2352 src/libslic3r/PrintConfig.cpp:2360
-#: src/libslic3r/PrintConfig.cpp:2432 src/libslic3r/PrintConfig.cpp:2440
+#: src/slic3r/GUI/WipeTowerDialog.cpp:82 src/libslic3r/PrintConfig.cpp:611
+#: src/libslic3r/PrintConfig.cpp:655 src/libslic3r/PrintConfig.cpp:670
+#: src/libslic3r/PrintConfig.cpp:2241 src/libslic3r/PrintConfig.cpp:2250
+#: src/libslic3r/PrintConfig.cpp:2308 src/libslic3r/PrintConfig.cpp:2315
msgid "s"
msgstr "s"
@@ -2633,35 +3006,35 @@ msgstr "s"
msgid "Volumetric speed"
msgstr "ìš©ì (Volumetric) 스피트"
-#: src/slic3r/GUI/SysInfoDialog.cpp:40
+#: src/slic3r/GUI/SysInfoDialog.cpp:44
msgid "Slic3r Prusa Edition - System Information"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:49 src/libslic3r/PrintConfig.cpp:202
+#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:228
msgid "Compatible printers"
msgstr "호환 가능한 프린터들"
-#: src/slic3r/GUI/Tab.cpp:50
+#: src/slic3r/GUI/Tab.cpp:51
msgid "Select the printers this profile is compatible with."
msgstr "ì´ í”„ë¡œíŒŒì¼ê³¼ 호환 가능한 프린터를 ì„ íƒí•˜ì„¸ìš”."
-#: src/slic3r/GUI/Tab.cpp:55 src/libslic3r/PrintConfig.cpp:215
+#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:243
msgid "Compatible print profiles"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:56
+#: src/slic3r/GUI/Tab.cpp:57
msgid "Select the print profiles this profile is compatible with."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:118
+#: src/slic3r/GUI/Tab.cpp:132
msgid "Save current "
msgstr "지금 ì €ìž¥ "
-#: src/slic3r/GUI/Tab.cpp:119
+#: src/slic3r/GUI/Tab.cpp:133
msgid "Delete this preset"
msgstr "ì´ì „ ì„¤ì • ì‚ì œ"
-#: src/slic3r/GUI/Tab.cpp:131
+#: src/slic3r/GUI/Tab.cpp:145
msgid ""
"Hover the cursor over buttons to find more information \n"
"or click this button."
@@ -2669,180 +3042,180 @@ msgstr ""
"버튼 위로 커서를 ê°€ì ¸ 가서 ìžì„¸í•œ ì •ë³´ë¥¼ 찾습니다.\n"
"ë˜ëŠ”ì´ ë²„íŠ¼ì„ í´ë¦í•˜ì‹ì‹œì˜¤."
-#: src/slic3r/GUI/Tab.cpp:824
+#: src/slic3r/GUI/Tab.cpp:858
msgid "It's a default preset."
msgstr "기본 ì„¤ì •ìž…ë‹ˆë‹¤."
-#: src/slic3r/GUI/Tab.cpp:825
+#: src/slic3r/GUI/Tab.cpp:859
msgid "It's a system preset."
msgstr "시스템 ì„¤ì •ìž…ë‹ˆë‹¤."
-#: src/slic3r/GUI/Tab.cpp:826
+#: src/slic3r/GUI/Tab.cpp:860
msgid "Current preset is inherited from "
msgstr "ì „ì˜ ì„¤ì •ì—서 ê°€ì ¸ 옵니다 "
-#: src/slic3r/GUI/Tab.cpp:831
+#: src/slic3r/GUI/Tab.cpp:865
msgid "It can't be deleted or modified. "
msgstr "ì‚ì œí•˜ê±°ë‚˜ ìˆ˜ì •í• ìˆ˜ 없습니다. "
-#: src/slic3r/GUI/Tab.cpp:832
+#: src/slic3r/GUI/Tab.cpp:866
msgid ""
"Any modifications should be saved as a new preset inherited from this one. "
msgstr "ëª¨ë“ ìˆ˜ì • 사í•ì€ ì´ í•목ì—서 ë°›ì€ ê¸°ë³¸ ì„¤ì •ìœ¼ë¡œ ì €ìž¥í•´ì•¼í•©ë‹ˆë‹¤. "
-#: src/slic3r/GUI/Tab.cpp:833
+#: src/slic3r/GUI/Tab.cpp:867
msgid "To do that please specify a new name for the preset."
msgstr "ê·¸ë ‡ê²Œí•˜ë ¤ë©´ 기본 ì„¤ì •ì˜ ìƒˆ ì´ë¦„ì„ ì§€ì •í•˜ì‹ì‹œì˜¤."
-#: src/slic3r/GUI/Tab.cpp:837
+#: src/slic3r/GUI/Tab.cpp:871
msgid "Additional information:"
msgstr "추가 ì •ë³´:"
-#: src/slic3r/GUI/Tab.cpp:843
+#: src/slic3r/GUI/Tab.cpp:877
msgid "printer model"
msgstr "프린터 모ë¸"
-#: src/slic3r/GUI/Tab.cpp:851
+#: src/slic3r/GUI/Tab.cpp:885
msgid "default print profile"
msgstr "기본 ì¸ì‡„ 프로파ì¼"
-#: src/slic3r/GUI/Tab.cpp:854
+#: src/slic3r/GUI/Tab.cpp:888
msgid "default filament profile"
msgstr "기본 í•„ë¼ë©˜íЏ 프로파ì¼"
-#: src/slic3r/GUI/Tab.cpp:868
+#: src/slic3r/GUI/Tab.cpp:902
msgid "default SLA material profile"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:872
+#: src/slic3r/GUI/Tab.cpp:906
msgid "default SLA print profile"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:919 src/slic3r/GUI/Tab.cpp:3174
+#: src/slic3r/GUI/Tab.cpp:948 src/slic3r/GUI/Tab.cpp:3303
msgid "Layers and perimeters"
msgstr "ë ˆì´ì–´ ë° ê²½ê³„ì„ "
-#: src/slic3r/GUI/Tab.cpp:920 src/libslic3r/PrintConfig.cpp:46
+#: src/slic3r/GUI/Tab.cpp:949 src/libslic3r/PrintConfig.cpp:55
msgid "Layer height"
msgstr "ë ˆì´ì–´ 높ì´"
-#: src/slic3r/GUI/Tab.cpp:924
+#: src/slic3r/GUI/Tab.cpp:953
msgid "Vertical shells"
msgstr "쉘 높ì´"
-#: src/slic3r/GUI/Tab.cpp:935
+#: src/slic3r/GUI/Tab.cpp:964
msgid "Horizontal shells"
msgstr "쉘 너비"
-#: src/slic3r/GUI/Tab.cpp:936 src/libslic3r/PrintConfig.cpp:1788
+#: src/slic3r/GUI/Tab.cpp:965 src/libslic3r/PrintConfig.cpp:1709
msgid "Solid layers"
msgstr "솔리드 ë ˆì´ì–´"
-#: src/slic3r/GUI/Tab.cpp:941
+#: src/slic3r/GUI/Tab.cpp:970
msgid "Quality (slower slicing)"
msgstr "품질(슬ë¼ì´ì‹±ì´ ëŠë ¤ì§)"
-#: src/slic3r/GUI/Tab.cpp:958
+#: src/slic3r/GUI/Tab.cpp:988
msgid "Reducing printing time"
msgstr "ì¶œë ¥ 시간 단축"
-#: src/slic3r/GUI/Tab.cpp:970
+#: src/slic3r/GUI/Tab.cpp:1000
msgid "Skirt and brim"
msgstr "스커트와 브림"
-#: src/slic3r/GUI/Tab.cpp:987
+#: src/slic3r/GUI/Tab.cpp:1017
msgid "Raft"
msgstr "ë¼í”„트"
-#: src/slic3r/GUI/Tab.cpp:991
+#: src/slic3r/GUI/Tab.cpp:1021
msgid "Options for support material and raft"
msgstr "서í¬íŠ¸ì™€ ë¼í”„트 재료를 ì„ íƒ"
-#: src/slic3r/GUI/Tab.cpp:1006
+#: src/slic3r/GUI/Tab.cpp:1036
msgid "Speed for print moves"
msgstr "ì¶œë ¥ì¤‘ ì´ë™ ì†ë„"
-#: src/slic3r/GUI/Tab.cpp:1018
+#: src/slic3r/GUI/Tab.cpp:1048
msgid "Speed for non-print moves"
msgstr "ë¯¸ì¶œë ¥ì‹œ ì´ë™ì†ë„"
-#: src/slic3r/GUI/Tab.cpp:1021
+#: src/slic3r/GUI/Tab.cpp:1051
msgid "Modifiers"
msgstr "ìˆ˜ì •"
-#: src/slic3r/GUI/Tab.cpp:1024
+#: src/slic3r/GUI/Tab.cpp:1054
msgid "Acceleration control (advanced)"
msgstr "ê°€ì† ì œì–´(ê³ ê¸‰)"
-#: src/slic3r/GUI/Tab.cpp:1031
+#: src/slic3r/GUI/Tab.cpp:1061
msgid "Autospeed (advanced)"
msgstr "ì˜¤í† ìŠ¤í”¼íŠ¸(ê³ ê¸‰)"
-#: src/slic3r/GUI/Tab.cpp:1037
+#: src/slic3r/GUI/Tab.cpp:1069
msgid "Multiple Extruders"
msgstr "다중 ìµìŠ¤íŠ¸ë£¨ë”"
-#: src/slic3r/GUI/Tab.cpp:1045
+#: src/slic3r/GUI/Tab.cpp:1077
msgid "Ooze prevention"
msgstr "오즈 방지(Ooze prevention)"
-#: src/slic3r/GUI/Tab.cpp:1062
+#: src/slic3r/GUI/Tab.cpp:1094
msgid "Extrusion width"
msgstr "ì•…ì¶œ í(Extrusion width)"
-#: src/slic3r/GUI/Tab.cpp:1072
+#: src/slic3r/GUI/Tab.cpp:1104
msgid "Overlap"
msgstr "겹침(Overlap)"
-#: src/slic3r/GUI/Tab.cpp:1075
+#: src/slic3r/GUI/Tab.cpp:1107
msgid "Flow"
msgstr "ìœ ëŸ‰(Flow)"
-#: src/slic3r/GUI/Tab.cpp:1078
+#: src/slic3r/GUI/Tab.cpp:1116
msgid "Other"
msgstr "그 외"
-#: src/slic3r/GUI/Tab.cpp:1085 src/slic3r/GUI/Tab.cpp:3213
+#: src/slic3r/GUI/Tab.cpp:1119 src/slic3r/GUI/Tab.cpp:3351
msgid "Output options"
msgstr "ì¶œë ¥ 옵션"
-#: src/slic3r/GUI/Tab.cpp:1086
+#: src/slic3r/GUI/Tab.cpp:1120
msgid "Sequential printing"
msgstr "ì—°ì† ì¸ì‡„"
-#: src/slic3r/GUI/Tab.cpp:1088
+#: src/slic3r/GUI/Tab.cpp:1122
msgid "Extruder clearance (mm)"
msgstr "ìµìŠ¤íŠ¸ë£¨ë” ê°„ê²©(mm)"
-#: src/slic3r/GUI/Tab.cpp:1097 src/slic3r/GUI/Tab.cpp:3214
+#: src/slic3r/GUI/Tab.cpp:1131 src/slic3r/GUI/Tab.cpp:3352
msgid "Output file"
msgstr "ì¶œë ¥ 파ì¼"
-#: src/slic3r/GUI/Tab.cpp:1103 src/libslic3r/PrintConfig.cpp:1438
+#: src/slic3r/GUI/Tab.cpp:1138 src/libslic3r/PrintConfig.cpp:1382
msgid "Post-processing scripts"
msgstr "í¬ìŠ¤íŠ¸ 프로세싱 스í¬ë¦½íЏ"
-#: src/slic3r/GUI/Tab.cpp:1109 src/slic3r/GUI/Tab.cpp:1110
-#: src/slic3r/GUI/Tab.cpp:1483 src/slic3r/GUI/Tab.cpp:1484
-#: src/slic3r/GUI/Tab.cpp:1883 src/slic3r/GUI/Tab.cpp:1884
-#: src/slic3r/GUI/Tab.cpp:1964 src/slic3r/GUI/Tab.cpp:1965
-#: src/slic3r/GUI/Tab.cpp:3119 src/slic3r/GUI/Tab.cpp:3120
+#: src/slic3r/GUI/Tab.cpp:1144 src/slic3r/GUI/Tab.cpp:1145
+#: src/slic3r/GUI/Tab.cpp:1527 src/slic3r/GUI/Tab.cpp:1528
+#: src/slic3r/GUI/Tab.cpp:1935 src/slic3r/GUI/Tab.cpp:1936
+#: src/slic3r/GUI/Tab.cpp:2027 src/slic3r/GUI/Tab.cpp:2028
+#: src/slic3r/GUI/Tab.cpp:3240 src/slic3r/GUI/Tab.cpp:3241
msgid "Notes"
msgstr "메모"
-#: src/slic3r/GUI/Tab.cpp:1116 src/slic3r/GUI/Tab.cpp:1491
-#: src/slic3r/GUI/Tab.cpp:1890 src/slic3r/GUI/Tab.cpp:1971
-#: src/slic3r/GUI/Tab.cpp:3127 src/slic3r/GUI/Tab.cpp:3219
+#: src/slic3r/GUI/Tab.cpp:1151 src/slic3r/GUI/Tab.cpp:1535
+#: src/slic3r/GUI/Tab.cpp:1942 src/slic3r/GUI/Tab.cpp:2034
+#: src/slic3r/GUI/Tab.cpp:3248 src/slic3r/GUI/Tab.cpp:3357
msgid "Dependencies"
msgstr "ì†í•œ 그룹"
-#: src/slic3r/GUI/Tab.cpp:1117 src/slic3r/GUI/Tab.cpp:1492
-#: src/slic3r/GUI/Tab.cpp:1891 src/slic3r/GUI/Tab.cpp:1972
-#: src/slic3r/GUI/Tab.cpp:3128 src/slic3r/GUI/Tab.cpp:3220
+#: src/slic3r/GUI/Tab.cpp:1152 src/slic3r/GUI/Tab.cpp:1536
+#: src/slic3r/GUI/Tab.cpp:1943 src/slic3r/GUI/Tab.cpp:2035
+#: src/slic3r/GUI/Tab.cpp:3249 src/slic3r/GUI/Tab.cpp:3358
msgid "Profile dependencies"
msgstr "í”„ë¡œíŒŒì¼ ì¢…ì„성"
-#: src/slic3r/GUI/Tab.cpp:1161
+#: src/slic3r/GUI/Tab.cpp:1198
#, no-c-format
msgid ""
"The Spiral Vase mode requires:\n"
@@ -2863,11 +3236,11 @@ msgstr ""
"\n"
"스파ì´ëŸ´ ë°”ì´ìŠ¤ë¥¼ ì‚¬ìš©í•˜ë ¤ë©´ ì´ëŸ¬í•œ ì„¤ì •ì„ ì¡°ì •í•´ì•¼í•©ë‹ˆê¹Œ?"
-#: src/slic3r/GUI/Tab.cpp:1168
+#: src/slic3r/GUI/Tab.cpp:1205
msgid "Spiral Vase"
msgstr "스파ì´ëŸ´ ë°”ì´ìФ"
-#: src/slic3r/GUI/Tab.cpp:1191
+#: src/slic3r/GUI/Tab.cpp:1228
msgid ""
"The Wipe Tower currently supports the non-soluble supports only\n"
"if they are printed with the current extruder without triggering a tool "
@@ -2884,11 +3257,11 @@ msgstr ""
"\n"
"와ì´í¼ 타워를 ì‚¬ìš©í•˜ë ¤ë©´ ì´ëŸ¬í•œ ì„¤ì •ì„ ì¡°ì •í•´ì•¼í•©ë‹ˆê¹Œ?"
-#: src/slic3r/GUI/Tab.cpp:1195 src/slic3r/GUI/Tab.cpp:1212
+#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:1249
msgid "Wipe Tower"
msgstr "와ì´í”„ 타워(Wipe Tower)"
-#: src/slic3r/GUI/Tab.cpp:1209
+#: src/slic3r/GUI/Tab.cpp:1246
msgid ""
"For the Wipe Tower to work with the soluble supports, the support layers\n"
"need to be synchronized with the object layers.\n"
@@ -2900,7 +3273,7 @@ msgstr ""
"\n"
"와ì´í¼ 타워를 ì‚¬ìš©í•˜ë ¤ë©´ 서í¬íЏ ë ˆì´ì–´ë¥¼ ë™ê¸°í™”해야합니까?"
-#: src/slic3r/GUI/Tab.cpp:1227
+#: src/slic3r/GUI/Tab.cpp:1264
msgid ""
"Supports work better, if the following feature is enabled:\n"
"- Detect bridging perimeters\n"
@@ -2912,15 +3285,15 @@ msgstr ""
"\n"
"서í¬íŠ¸ì— ëŒ€í•œ ì„¤ì •ì„ ì¡°ì •í•´ì•¼í•©ë‹ˆê¹Œ?"
-#: src/slic3r/GUI/Tab.cpp:1230
+#: src/slic3r/GUI/Tab.cpp:1267
msgid "Support Generator"
msgstr "서í¬íЏ ìƒì„±"
-#: src/slic3r/GUI/Tab.cpp:1272
+#: src/slic3r/GUI/Tab.cpp:1309
msgid "The "
msgstr "The "
-#: src/slic3r/GUI/Tab.cpp:1272
+#: src/slic3r/GUI/Tab.cpp:1309
#, no-c-format
msgid ""
" infill pattern is not supposed to work at 100% density.\n"
@@ -2931,82 +3304,82 @@ msgstr ""
"\n"
"ì§ì„ 채우기 패턴으로 ì „í™˜í•´ì•¼í•©ë‹ˆê¹Œ?"
-#: src/slic3r/GUI/Tab.cpp:1388
+#: src/slic3r/GUI/Tab.cpp:1429
msgid "Temperature "
msgstr "ì˜¨ë„ "
-#: src/slic3r/GUI/Tab.cpp:1394
+#: src/slic3r/GUI/Tab.cpp:1435
msgid "Bed"
msgstr "배드(Bed)"
-#: src/slic3r/GUI/Tab.cpp:1399
+#: src/slic3r/GUI/Tab.cpp:1440
msgid "Cooling"
msgstr "냉ê°(Cooling)"
-#: src/slic3r/GUI/Tab.cpp:1400 src/libslic3r/PrintConfig.cpp:1333
-#: src/libslic3r/PrintConfig.cpp:2212
+#: src/slic3r/GUI/Tab.cpp:1441 src/libslic3r/PrintConfig.cpp:1285
+#: src/libslic3r/PrintConfig.cpp:2097
msgid "Enable"
msgstr "사용"
-#: src/slic3r/GUI/Tab.cpp:1411
+#: src/slic3r/GUI/Tab.cpp:1452
msgid "Fan settings"
msgstr "팬 ì„¤ì •"
-#: src/slic3r/GUI/Tab.cpp:1412
+#: src/slic3r/GUI/Tab.cpp:1453
msgid "Fan speed"
msgstr "팬 ì†ë„"
-#: src/slic3r/GUI/Tab.cpp:1420
+#: src/slic3r/GUI/Tab.cpp:1461
msgid "Cooling thresholds"
msgstr "ëƒ‰ê° ìž„ê³„ ê°’"
-#: src/slic3r/GUI/Tab.cpp:1426
+#: src/slic3r/GUI/Tab.cpp:1467
msgid "Filament properties"
msgstr "í•„ë¼ë©˜íЏ 특성"
-#: src/slic3r/GUI/Tab.cpp:1430
+#: src/slic3r/GUI/Tab.cpp:1471
msgid "Print speed override"
msgstr "ì¸ì‡„ ì†ë„ 중단"
-#: src/slic3r/GUI/Tab.cpp:1440
+#: src/slic3r/GUI/Tab.cpp:1481
msgid "Toolchange parameters with single extruder MM printers"
msgstr "싱글 ìµìŠ¤íŠ¸ë£¨ë” MM 프린터를 사용한 공구 êµí™˜ 매개 변수"
-#: src/slic3r/GUI/Tab.cpp:1455
+#: src/slic3r/GUI/Tab.cpp:1496
msgid "Ramming settings"
msgstr "ëž˜ë° ì„¤ì •"
-#: src/slic3r/GUI/Tab.cpp:1470 src/slic3r/GUI/Tab.cpp:1846
+#: src/slic3r/GUI/Tab.cpp:1514 src/slic3r/GUI/Tab.cpp:1898
msgid "Custom G-code"
msgstr "ìˆ˜ë™ G코드"
-#: src/slic3r/GUI/Tab.cpp:1471 src/slic3r/GUI/Tab.cpp:1847
-#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:1833
+#: src/slic3r/GUI/Tab.cpp:1515 src/slic3r/GUI/Tab.cpp:1899
+#: src/libslic3r/PrintConfig.cpp:1735 src/libslic3r/PrintConfig.cpp:1750
msgid "Start G-code"
msgstr "스타트 G코드"
-#: src/slic3r/GUI/Tab.cpp:1477 src/slic3r/GUI/Tab.cpp:1853
-#: src/libslic3r/PrintConfig.cpp:333 src/libslic3r/PrintConfig.cpp:344
+#: src/slic3r/GUI/Tab.cpp:1521 src/slic3r/GUI/Tab.cpp:1905
+#: src/libslic3r/PrintConfig.cpp:358 src/libslic3r/PrintConfig.cpp:368
msgid "End G-code"
msgstr "엔드 G코드"
-#: src/slic3r/GUI/Tab.cpp:1588 src/slic3r/GUI/Tab.cpp:1642
+#: src/slic3r/GUI/Tab.cpp:1632 src/slic3r/GUI/Tab.cpp:1689
msgid " Browse "
msgstr " 검색 "
-#: src/slic3r/GUI/Tab.cpp:1605 src/slic3r/GUI/Tab.cpp:1788
+#: src/slic3r/GUI/Tab.cpp:1651 src/slic3r/GUI/Tab.cpp:1838
msgid "Test"
msgstr "시험(test)"
-#: src/slic3r/GUI/Tab.cpp:1615
+#: src/slic3r/GUI/Tab.cpp:1662
msgid "Could not get a valid Printer Host reference"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1621 src/slic3r/GUI/Tab.cpp:1801
+#: src/slic3r/GUI/Tab.cpp:1668 src/slic3r/GUI/Tab.cpp:1851
msgid "Success!"
msgstr "성공!"
-#: src/slic3r/GUI/Tab.cpp:1636
+#: src/slic3r/GUI/Tab.cpp:1683
msgid ""
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
"signed certificate."
@@ -3014,15 +3387,15 @@ msgstr ""
"HTTPS CA 파ì¼ì€ ì„ íƒ ì‚¬í•입니다. ìžì²´ 서명 ëœ ì¸ì¦ì„œë¡œ HTTPS를 사용하는 경우"
"ì—ë§Œ 필요합니다."
-#: src/slic3r/GUI/Tab.cpp:1648
+#: src/slic3r/GUI/Tab.cpp:1696
msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
msgstr "ì¸ì¦ì„œ íŒŒì¼ (* .crt, * .pem) | * .crt; * .pem | ëª¨ë“ íŒŒì¼ | *. *"
-#: src/slic3r/GUI/Tab.cpp:1649
+#: src/slic3r/GUI/Tab.cpp:1697
msgid "Open CA certificate file"
msgstr "Open CA certificate file"
-#: src/slic3r/GUI/Tab.cpp:1676
+#: src/slic3r/GUI/Tab.cpp:1725
msgid ""
"HTTPS CA File:\n"
"\tOn this system, Slic3r uses HTTPS certificates from the system Certificate "
@@ -3031,151 +3404,159 @@ msgid ""
"Store / Keychain."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1713 src/slic3r/GUI/Tab.cpp:1912
+#: src/slic3r/GUI/Tab.cpp:1763 src/slic3r/GUI/Tab.cpp:1964
msgid "Size and coordinates"
msgstr "í¬ê¸°ì™€ 좌표"
-#: src/slic3r/GUI/Tab.cpp:1717 src/slic3r/GUI/Tab.cpp:1916
-#: src/slic3r/GUI/Tab.cpp:2792
+#: src/slic3r/GUI/Tab.cpp:1767 src/slic3r/GUI/Tab.cpp:1968
+#: src/slic3r/GUI/Tab.cpp:2911
msgid " Set "
msgstr " 세트 "
-#: src/slic3r/GUI/Tab.cpp:1740
+#: src/slic3r/GUI/Tab.cpp:1790
msgid "Capabilities"
msgstr "기능"
-#: src/slic3r/GUI/Tab.cpp:1745
+#: src/slic3r/GUI/Tab.cpp:1795
msgid "Number of extruders of the printer."
msgstr "프린터 ìµìŠ¤íŠ¸ë£¨ë” ìˆ«ìž."
-#: src/slic3r/GUI/Tab.cpp:1773
+#: src/slic3r/GUI/Tab.cpp:1823
msgid "USB/Serial connection"
msgstr "USB/시리얼 연결"
-#: src/slic3r/GUI/Tab.cpp:1774 src/libslic3r/PrintConfig.cpp:1660
+#: src/slic3r/GUI/Tab.cpp:1824 src/libslic3r/PrintConfig.cpp:1590
msgid "Serial port"
msgstr "시리얼 í¬íЏ"
-#: src/slic3r/GUI/Tab.cpp:1779
+#: src/slic3r/GUI/Tab.cpp:1829
msgid "Rescan serial ports"
msgstr "시리얼í¬íЏ 재검색"
-#: src/slic3r/GUI/Tab.cpp:1801
+#: src/slic3r/GUI/Tab.cpp:1851
msgid "Connection to printer works correctly."
msgstr "프린터 ì—°ê²°ì´ ì˜¬ë°”ë¥´ê²Œ ìž‘ë™í•©ë‹ˆë‹¤."
-#: src/slic3r/GUI/Tab.cpp:1804
+#: src/slic3r/GUI/Tab.cpp:1854
msgid "Connection failed."
msgstr "연결 실패."
-#: src/slic3r/GUI/Tab.cpp:1817 src/slic3r/GUI/Tab.cpp:1961
+#: src/slic3r/GUI/Tab.cpp:1867 src/slic3r/GUI/Tab.cpp:2022
msgid "Print Host upload"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1859 src/libslic3r/PrintConfig.cpp:92
+#: src/slic3r/GUI/Tab.cpp:1911 src/libslic3r/PrintConfig.cpp:128
msgid "Before layer change G-code"
msgstr "ë ˆì´ì–´ 변경 ì „ G 코드"
-#: src/slic3r/GUI/Tab.cpp:1865 src/libslic3r/PrintConfig.cpp:1042
+#: src/slic3r/GUI/Tab.cpp:1917 src/libslic3r/PrintConfig.cpp:1030
msgid "After layer change G-code"
msgstr "ë ˆì´ì–´ 변경 후 G 코드"
-#: src/slic3r/GUI/Tab.cpp:1871 src/libslic3r/PrintConfig.cpp:2111
+#: src/slic3r/GUI/Tab.cpp:1923 src/libslic3r/PrintConfig.cpp:2005
msgid "Tool change G-code"
msgstr "툴 채ì¸ì§€ G 코드"
-#: src/slic3r/GUI/Tab.cpp:1877
+#: src/slic3r/GUI/Tab.cpp:1929
msgid "Between objects G-code (for sequential printing)"
msgstr "ê°ì²´ ê°„ G 코드 (순차 ì¸ì‡„ìš©)"
-#: src/slic3r/GUI/Tab.cpp:1938
+#: src/slic3r/GUI/Tab.cpp:1990
msgid "Display"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1949 src/slic3r/GUI/Tab.cpp:3102
+#: src/slic3r/GUI/Tab.cpp:2001
+msgid "Tilt"
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:2002
+msgid "Tilt time"
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:2008 src/slic3r/GUI/Tab.cpp:3223
msgid "Corrections"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2011 src/slic3r/GUI/Tab.cpp:2073
-#: src/libslic3r/PrintConfig.cpp:1088 src/libslic3r/PrintConfig.cpp:1098
-#: src/libslic3r/PrintConfig.cpp:1108 src/libslic3r/PrintConfig.cpp:1121
-#: src/libslic3r/PrintConfig.cpp:1132 src/libslic3r/PrintConfig.cpp:1143
-#: src/libslic3r/PrintConfig.cpp:1154
+#: src/slic3r/GUI/Tab.cpp:2074 src/slic3r/GUI/Tab.cpp:2136
+#: src/libslic3r/PrintConfig.cpp:1076 src/libslic3r/PrintConfig.cpp:1086
+#: src/libslic3r/PrintConfig.cpp:1096 src/libslic3r/PrintConfig.cpp:1109
+#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1131
+#: src/libslic3r/PrintConfig.cpp:1142
msgid "Machine limits"
msgstr "ë¨¸ì‹ í•œê³„ì„¤ì •"
-#: src/slic3r/GUI/Tab.cpp:2025
+#: src/slic3r/GUI/Tab.cpp:2088
msgid "Values in this column are for Full Power mode"
msgstr "ì´ ì—´ì˜ ê°’ì€ ìµœëŒ€ ì „ë ¥ 모드입니다"
-#: src/slic3r/GUI/Tab.cpp:2026
+#: src/slic3r/GUI/Tab.cpp:2089
msgid "Full Power"
msgstr "최대 파워"
-#: src/slic3r/GUI/Tab.cpp:2031
+#: src/slic3r/GUI/Tab.cpp:2094
msgid "Values in this column are for Silent mode"
msgstr "ì´ ì—´ì˜ ê°’ì€ ë¬´ìŒ ëª¨ë“œ 용입니다"
-#: src/slic3r/GUI/Tab.cpp:2032
+#: src/slic3r/GUI/Tab.cpp:2095
msgid "Silent"
msgstr "무ìŒ"
-#: src/slic3r/GUI/Tab.cpp:2040
+#: src/slic3r/GUI/Tab.cpp:2103
msgid "Maximum feedrates"
msgstr "최대 ì´ì†¡ì†ë„"
-#: src/slic3r/GUI/Tab.cpp:2045
+#: src/slic3r/GUI/Tab.cpp:2108
msgid "Maximum accelerations"
msgstr "ìµœê³ ê°€ì†ë„"
-#: src/slic3r/GUI/Tab.cpp:2052
+#: src/slic3r/GUI/Tab.cpp:2115
msgid "Jerk limits"
msgstr "ì €í¬(Jerk)ê°’ 한계"
-#: src/slic3r/GUI/Tab.cpp:2057
+#: src/slic3r/GUI/Tab.cpp:2120
msgid "Minimum feedrates"
msgstr "최대 ì´ì†¡ì†ë„"
-#: src/slic3r/GUI/Tab.cpp:2095 src/slic3r/GUI/Tab.cpp:2103
+#: src/slic3r/GUI/Tab.cpp:2158 src/slic3r/GUI/Tab.cpp:2166
msgid "Single extruder MM setup"
msgstr "싱글 ìµìŠ¤íŠ¸ë£¨ë” MM ì„¤ì •"
-#: src/slic3r/GUI/Tab.cpp:2104
+#: src/slic3r/GUI/Tab.cpp:2167
msgid "Single extruder multimaterial parameters"
msgstr "싱글 ìµìŠ¤íŠ¸ë£¨ë” ë©€í‹°ë©”í„°ë¦¬ì•Œ 파ë¼ë¯¸í„°"
-#: src/slic3r/GUI/Tab.cpp:2118 src/libslic3r/GCode/PreviewData.cpp:475
+#: src/slic3r/GUI/Tab.cpp:2181 src/libslic3r/GCode/PreviewData.cpp:475
#, c-format
msgid "Extruder %d"
msgstr "ìµìŠ¤íŠ¸ë£¨ë” %d"
-#: src/slic3r/GUI/Tab.cpp:2125
+#: src/slic3r/GUI/Tab.cpp:2188
msgid "Layer height limits"
msgstr "ë ˆì´ì–´ ë†’ì´ í•œê³„ì¹˜"
-#: src/slic3r/GUI/Tab.cpp:2130
+#: src/slic3r/GUI/Tab.cpp:2193
msgid "Position (for multi-extruder printers)"
msgstr "위치 (멀티 ìµìŠ¤íŠ¸ë£¨ë” í”„ë¦°í„° í¬í•¨)"
-#: src/slic3r/GUI/Tab.cpp:2133
+#: src/slic3r/GUI/Tab.cpp:2196
msgid "Retraction"
msgstr "ë¦¬íŠ¸ë ‰ì…˜"
-#: src/slic3r/GUI/Tab.cpp:2136
+#: src/slic3r/GUI/Tab.cpp:2199
msgid "Only lift Z"
msgstr "Z축만 올림"
-#: src/slic3r/GUI/Tab.cpp:2149
+#: src/slic3r/GUI/Tab.cpp:2212
msgid ""
"Retraction when tool is disabled (advanced settings for multi-extruder "
"setups)"
msgstr "ë„구 비활성화시 ë¦¬íŠ¸ë ‰ì…˜ (멀티 ìµìŠ¤íŠ¸ë£¨ë” ê³ ê¸‰ ì„¤ì •)"
-#: src/slic3r/GUI/Tab.cpp:2153
+#: src/slic3r/GUI/Tab.cpp:2216
msgid "Preview"
msgstr "프리뷰"
-#: src/slic3r/GUI/Tab.cpp:2284
+#: src/slic3r/GUI/Tab.cpp:2352
msgid ""
"The Wipe option is not available when using the Firmware Retraction mode.\n"
"\n"
@@ -3185,99 +3566,95 @@ msgstr ""
"\n"
"펌웨어 ë¦¬íŠ¸ë ‰ì…˜ í•˜ë ¤ë©´ 비활성화해야합니까?"
-#: src/slic3r/GUI/Tab.cpp:2286
+#: src/slic3r/GUI/Tab.cpp:2354
msgid "Firmware Retraction"
msgstr "펌웨어 ë ˆíŠ¸ë ‰ì…˜"
-#: src/slic3r/GUI/Tab.cpp:2565
+#: src/slic3r/GUI/Tab.cpp:2681
#, c-format
msgid "Default preset (%s)"
msgstr "시스템 기본값 (%s)"
-#: src/slic3r/GUI/Tab.cpp:2566
+#: src/slic3r/GUI/Tab.cpp:2682
#, c-format
msgid "Preset (%s)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2583
+#: src/slic3r/GUI/Tab.cpp:2699
msgid "has the following unsaved changes:"
msgstr "ì €ìž¥ë˜ì§€ ì•Šì€ ìˆ˜ì •ì‚¬í•:"
-#: src/slic3r/GUI/Tab.cpp:2586
+#: src/slic3r/GUI/Tab.cpp:2702
msgid "is not compatible with printer"
msgstr "프린터와 호완 ë˜ì§€ 않습니다"
-#: src/slic3r/GUI/Tab.cpp:2587
+#: src/slic3r/GUI/Tab.cpp:2703
msgid "is not compatible with print profile"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2589
+#: src/slic3r/GUI/Tab.cpp:2705
msgid "and it has the following unsaved changes:"
msgstr "ì €ìž¥ë˜ì§€ ì•Šì€ ë³€ê²½ì ì€ ë‹¤ìŒê³¼ 같습니다:"
-#: src/slic3r/GUI/Tab.cpp:2592
+#: src/slic3r/GUI/Tab.cpp:2708
msgid "Discard changes and continue anyway?"
msgstr "ìˆ˜ì •ëœ ì‚¬í•ì„ ì·¨ì†Œí•˜ê³ ê³„ì†í•˜ê² 습니까?"
-#: src/slic3r/GUI/Tab.cpp:2593
+#: src/slic3r/GUI/Tab.cpp:2709
msgid "Unsaved Changes"
msgstr "미 ì €ìž¥ëœ ë³€ê²½ì "
-#: src/slic3r/GUI/Tab.cpp:2604
-msgid "It's impossible to print multi-part object(s) with SLA technology."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2605
+#: src/slic3r/GUI/Tab.cpp:2721
msgid "Please check your object list before preset changing."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2699
+#: src/slic3r/GUI/Tab.cpp:2801
+msgid "Copy"
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:2823
msgid "The supplied name is empty. It can't be saved."
msgstr "íŒŒì¼ ì´ë¦„ì´ ë¹„ì–´ 있습니다. ì €ìž¥í• ìˆ˜ 없습니다."
-#: src/slic3r/GUI/Tab.cpp:2704
+#: src/slic3r/GUI/Tab.cpp:2828
msgid "Cannot overwrite a system profile."
msgstr "시스템 프로파ì¼ì„ ê²¹ì³ ì“¸ 수 없습니다."
-#: src/slic3r/GUI/Tab.cpp:2708
+#: src/slic3r/GUI/Tab.cpp:2832
msgid "Cannot overwrite an external profile."
msgstr "외부 í”„ë¡œí•„ì„ ë®ì–´ 쓸 수 없습니다."
-#: src/slic3r/GUI/Tab.cpp:2734
+#: src/slic3r/GUI/Tab.cpp:2858
msgid "remove"
msgstr "ì œê±°(remove)"
-#: src/slic3r/GUI/Tab.cpp:2734
+#: src/slic3r/GUI/Tab.cpp:2858
msgid "delete"
msgstr "지우기(delete)"
-#: src/slic3r/GUI/Tab.cpp:2735
+#: src/slic3r/GUI/Tab.cpp:2859
msgid "Are you sure you want to "
msgstr "ì •ë§ë¡œ 다ìŒê³¼ ê°™ì´ í•˜ê² ìŠµë‹ˆê¹Œ? "
-#: src/slic3r/GUI/Tab.cpp:2735
+#: src/slic3r/GUI/Tab.cpp:2859
msgid " the selected preset?"
msgstr " 를(ê°€) ì„ íƒëœ ì„¤ì •ì„ ì‹¤í–‰ í• ê¹Œìš”?"
-#: src/slic3r/GUI/Tab.cpp:2736
+#: src/slic3r/GUI/Tab.cpp:2860
msgid "Remove"
msgstr "ì œê±°(remove)"
-#: src/slic3r/GUI/Tab.cpp:2737
+#: src/slic3r/GUI/Tab.cpp:2861
msgid " Preset"
msgstr " 기본 ì„¤ì •"
-#: src/slic3r/GUI/Tab.cpp:2791
-msgid "All"
-msgstr "ëª¨ë‘ ì„ íƒ"
-
-#: src/slic3r/GUI/Tab.cpp:2869
+#: src/slic3r/GUI/Tab.cpp:2989
msgid ""
"LOCKED LOCK;indicates that the settings are the same as the system values "
"for the current option group"
msgstr "ìžë¬¼ì‡ ìž ê¸ˆ : ì„¤ì •ì´ í˜„ìž¬ 옵션 ê·¸ë£¹ì˜ ì‹œìŠ¤í…œ ê°’ê³¼ ë™ì¼ í•¨ì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤"
-#: src/slic3r/GUI/Tab.cpp:2872
+#: src/slic3r/GUI/Tab.cpp:2992
msgid ""
"UNLOCKED LOCK;indicates that some settings were changed and are not equal to "
"the system values for the current option group.\n"
@@ -3289,7 +3666,7 @@ msgstr ""
"현재 옵션 ê·¸ë£¹ì˜ ëª¨ë“ ì„¤ì •ì„ ì‹œìŠ¤í…œ 값으로 ìž¬ì„¤ì •í•˜ë ¤ë©´ ìžë¬¼ì‡ ìž ê¸ˆ ì•„ì´ì½˜ì„ "
"í´ë¦í•˜ì‹ì‹œì˜¤."
-#: src/slic3r/GUI/Tab.cpp:2878
+#: src/slic3r/GUI/Tab.cpp:2998
msgid ""
"WHITE BULLET;for the left button: \tindicates a non-system preset,\n"
"for the right button: \tindicates that the settings hasn't been modified."
@@ -3297,7 +3674,7 @@ msgstr ""
"í°ìƒ‰ ì´ì•Œ; 왼쪽 버튼 : ì‹œìŠ¤í…œì´ ì•„ë‹Œ ì‚¬ì „ ì„¤ì •ì„ ë‚˜íƒ€ë‚´ë©°,\n"
"오른쪽 ë²„íŠ¼ì˜ ê²½ìš° : ì„¤ì •ì´ ìˆ˜ì •ë˜ì§€ 않았 ìŒì„ 나타냅니다."
-#: src/slic3r/GUI/Tab.cpp:2882
+#: src/slic3r/GUI/Tab.cpp:3002
msgid ""
"BACK ARROW;indicates that the settings were changed and are not equal to the "
"last saved preset for the current option group.\n"
@@ -3309,14 +3686,14 @@ msgstr ""
"현재 옵션 ê·¸ë£¹ì˜ ëª¨ë“ ì„¤ì •ì„ ì‹œìŠ¤í…œ 값으로 ìž¬ì„¤ì •í•˜ë ¤ë©´ ìžë¬¼ì‡ ìž ê¸ˆ ì•„ì´ì½˜ì„ "
"í´ë¦í•˜ì‹ì‹œì˜¤."
-#: src/slic3r/GUI/Tab.cpp:2908
+#: src/slic3r/GUI/Tab.cpp:3028
msgid ""
"LOCKED LOCK icon indicates that the settings are the same as the system "
"values for the current option group"
msgstr ""
"ìžë¬¼ì‡ ìž ê¸ˆ ì•„ì´ì½” ì„¤ì •ì´ í˜„ìž¬ 옵션 ê·¸ë£¹ì˜ ì‹œìŠ¤í…œ ê°’ê³¼ ë™ì¼ í•¨ì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤"
-#: src/slic3r/GUI/Tab.cpp:2910
+#: src/slic3r/GUI/Tab.cpp:3030
msgid ""
"UNLOCKED LOCK icon indicates that some settings were changed and are not "
"equal to the system values for the current option group.\n"
@@ -3327,11 +3704,11 @@ msgstr ""
"현재 옵션 ê·¸ë£¹ì˜ ëª¨ë“ ì„¤ì •ì„ ì‹œìŠ¤í…œ 값으로 ìž¬ì„¤ì •í•˜ë ¤ë©´ ìžë¬¼ì‡ ìž ê¸ˆ ì•„ì´ì½˜ì„ "
"í´ë¦í•˜ì‹ì‹œì˜¤."
-#: src/slic3r/GUI/Tab.cpp:2913
+#: src/slic3r/GUI/Tab.cpp:3033
msgid "WHITE BULLET icon indicates a non system preset."
msgstr "í°ìƒ‰ 글머리 ì•„ì´ì½˜ì€ 시스템 ì‚¬ì „ ì„¤ì •ì´ ì•„ë‹Œ ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤."
-#: src/slic3r/GUI/Tab.cpp:2916
+#: src/slic3r/GUI/Tab.cpp:3036
msgid ""
"WHITE BULLET icon indicates that the settings are the same as in the last "
"saved preset for the current option group."
@@ -3339,7 +3716,7 @@ msgstr ""
"í°ìƒ‰ 글머리 기호 ì•„ì´ì½˜ì€ ì„¤ì •ì´ í˜„ìž¬ 옵션 ê·¸ë£¹ì— ëŒ€í•´ 마지막으로 ì €ìž¥ ëœ ì‚¬"
"ì „ ì„¤ì •ê³¼ ë™ì¼ 하다는 ê²ƒì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤."
-#: src/slic3r/GUI/Tab.cpp:2918
+#: src/slic3r/GUI/Tab.cpp:3038
msgid ""
"BACK ARROW icon indicates that the settings were changed and are not equal "
"to the last saved preset for the current option group.\n"
@@ -3351,12 +3728,12 @@ msgstr ""
"마지막 현재 옵션 ê·¸ë£¹ì— ëŒ€ 한 ëª¨ë“ ì„¤ì • 다시 ì„¤ì •ì„ í´ë¦ 하 ì—¬ ì‚¬ì „ ì„¤ì •ì„ ì €"
"장."
-#: src/slic3r/GUI/Tab.cpp:2924
+#: src/slic3r/GUI/Tab.cpp:3044
msgid ""
"LOCKED LOCK icon indicates that the value is the same as the system value."
msgstr "ìž ê¸´ ìžë¬¼ì‡ ì•„ì´ì½˜ ê°’ ê°™ì€ ì‹œìŠ¤í…œ ê°’ ìž„ì„ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤."
-#: src/slic3r/GUI/Tab.cpp:2925
+#: src/slic3r/GUI/Tab.cpp:3045
msgid ""
"UNLOCKED LOCK icon indicates that the value was changed and is not equal to "
"the system value.\n"
@@ -3365,7 +3742,7 @@ msgstr ""
"ìž ê¸ˆ í•´ì œ ìžë¬¼ì‡ ì•„ì´ì½˜ ê°’ 변경 ëœ ì‹œìŠ¤í…œ ê°’ì€ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤.\n"
"시스템 ê°’ì„ í˜„ìž¬ 값으로 ì„¤ì • í•˜ë ¤ë©´ í´ë¦ 합니다."
-#: src/slic3r/GUI/Tab.cpp:2931
+#: src/slic3r/GUI/Tab.cpp:3051
msgid ""
"WHITE BULLET icon indicates that the value is the same as in the last saved "
"preset."
@@ -3373,7 +3750,7 @@ msgstr ""
"í°ìƒ‰ 글머리 기호 ì•„ì´ì½˜ì€ 마지막으로 ì €ìž¥ 한 ì‚¬ì „ ì„¤ì •ê³¼ ë™ì¼í•œ ê°’ì„ ë‚˜íƒ€ëƒ…ë‹ˆ"
"다."
-#: src/slic3r/GUI/Tab.cpp:2932
+#: src/slic3r/GUI/Tab.cpp:3052
msgid ""
"BACK ARROW icon indicates that the value was changed and is not equal to the "
"last saved preset.\n"
@@ -3382,99 +3759,115 @@ msgstr ""
"ìž ê¸ˆ í•´ì œ ìžë¬¼ì‡ ì•„ì´ì½˜ ê°’ 변경 ëœ ì‹œìŠ¤í…œ ê°’ì€ ë‚˜íƒ€ëƒ…ë‹ˆë‹¤.\n"
"시스템 ê°’ì„ í˜„ìž¬ 값으로 ì„¤ì • í•˜ë ¤ë©´ í´ë¦ 합니다."
-#: src/slic3r/GUI/Tab.cpp:3031
+#: src/slic3r/GUI/Tab.cpp:3152
msgid " as:"
msgstr " as:"
-#: src/slic3r/GUI/Tab.cpp:3075
+#: src/slic3r/GUI/Tab.cpp:3196
msgid "the following postfix are not allowed:"
msgstr "ë‹¤ìŒ ì ‘ë¯¸ì‚¬ëŠ” 허용ë˜ì§€ 않습니다:"
-#: src/slic3r/GUI/Tab.cpp:3079
+#: src/slic3r/GUI/Tab.cpp:3200
msgid "The supplied name is not available."
msgstr "The supplied name is not available."
-#: src/slic3r/GUI/Tab.cpp:3092
+#: src/slic3r/GUI/Tab.cpp:3213
msgid "Material"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3094 src/slic3r/GUI/Tab.cpp:3176
+#: src/slic3r/GUI/Tab.cpp:3215 src/slic3r/GUI/Tab.cpp:3305
msgid "Layers"
msgstr "ë ˆì´ì–´"
-#: src/slic3r/GUI/Tab.cpp:3098
+#: src/slic3r/GUI/Tab.cpp:3219
msgid "Exposure"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3183
+#: src/slic3r/GUI/Tab.cpp:3313
msgid "Support head"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3188
+#: src/slic3r/GUI/Tab.cpp:3318
msgid "Support pillar"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3196
+#: src/slic3r/GUI/Tab.cpp:3328
msgid "Connection of the support sticks and junctions"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3200
+#: src/slic3r/GUI/Tab.cpp:3333
msgid "Automatic generation"
msgstr ""
-#: src/slic3r/GUI/Tab.hpp:293 src/slic3r/GUI/Tab.hpp:381
+#: src/slic3r/GUI/Tab.cpp:3395
+msgid "Head penetration should not be greater than the head width."
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:3396
+msgid "Invalid Head penetration"
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:3408
+msgid "Pinhead diameter should be smaller than the pillar diameter."
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:3409
+msgid "Invalid pinhead diameter"
+msgstr ""
+
+#: src/slic3r/GUI/Tab.hpp:307 src/slic3r/GUI/Tab.hpp:395
msgid "Print Settings"
msgstr "ì¶œë ¥ ì„¤ì •"
-#: src/slic3r/GUI/Tab.hpp:311
+#: src/slic3r/GUI/Tab.hpp:325
msgid "Filament Settings"
msgstr "í•„ë¼ë©˜íЏ ì„¤ì •"
-#: src/slic3r/GUI/Tab.hpp:344
+#: src/slic3r/GUI/Tab.hpp:358
msgid "Printer Settings"
msgstr "프린터 ì„¤ì •"
-#: src/slic3r/GUI/Tab.hpp:367
+#: src/slic3r/GUI/Tab.hpp:381
msgid "Material Settings"
msgstr ""
-#: src/slic3r/GUI/Tab.hpp:393
+#: src/slic3r/GUI/Tab.hpp:407
msgid "Save preset"
msgstr "ì‚¬ì „ ì„¤ì • ì €ìž¥"
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
+#: src/slic3r/GUI/UpdateDialogs.cpp:29
msgid "Update available"
msgstr "사용가능한 ì—…ë°ì´íЏ"
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
+#: src/slic3r/GUI/UpdateDialogs.cpp:29
msgid "New version of Slic3r PE is available"
msgstr "새로운 ë²„ì „ì˜ Slic3r PE 사용 가능"
-#: src/slic3r/GUI/UpdateDialogs.cpp:35
+#: src/slic3r/GUI/UpdateDialogs.cpp:36
msgid "To download, follow the link below."
msgstr "ë‹¤ìš´ë¡œë“œí•˜ë ¤ë©´ 아래 ë§í¬ë¥¼ í´ë¦í•˜ì‹ì‹œì˜¤."
-#: src/slic3r/GUI/UpdateDialogs.cpp:42
+#: src/slic3r/GUI/UpdateDialogs.cpp:44
msgid "Current version:"
msgstr "현재 ë²„ì „:"
-#: src/slic3r/GUI/UpdateDialogs.cpp:44
+#: src/slic3r/GUI/UpdateDialogs.cpp:46
msgid "New version:"
msgstr "새로운 ë²„ì „:"
-#: src/slic3r/GUI/UpdateDialogs.cpp:52
+#: src/slic3r/GUI/UpdateDialogs.cpp:54
msgid "Don't notify about new releases any more"
msgstr "새로운 ìˆ˜ì •ì‚¬í•ì— ëŒ€í•´ ë” ì´ìƒ 알림 안 함"
-#: src/slic3r/GUI/UpdateDialogs.cpp:70 src/slic3r/GUI/UpdateDialogs.cpp:162
+#: src/slic3r/GUI/UpdateDialogs.cpp:72 src/slic3r/GUI/UpdateDialogs.cpp:164
msgid "Configuration update"
msgstr "구성 ì—…ë°ì´íЏ"
-#: src/slic3r/GUI/UpdateDialogs.cpp:70
+#: src/slic3r/GUI/UpdateDialogs.cpp:72
msgid "Configuration update is available"
msgstr "구성 ì—…ë°ì´íŠ¸ë¥¼ ì‚¬ìš©í• ìˆ˜ 있ìŒ"
-#: src/slic3r/GUI/UpdateDialogs.cpp:73
+#: src/slic3r/GUI/UpdateDialogs.cpp:75
msgid ""
"Would you like to install it?\n"
"\n"
@@ -3490,15 +3883,15 @@ msgstr ""
"\n"
"ì—…ë°ì´íЏ ëœ êµ¬ì„± 번들 :"
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
+#: src/slic3r/GUI/UpdateDialogs.cpp:111
msgid "Slic3r incompatibility"
msgstr "Slic3r와 호환 ë˜ì§€ 않ìŒ"
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
+#: src/slic3r/GUI/UpdateDialogs.cpp:111
msgid "Slic3r configuration is incompatible"
msgstr "Slic3r êµ¬ì„±ì´ í˜¸í™˜ë˜ì§€ 않습니다"
-#: src/slic3r/GUI/UpdateDialogs.cpp:112
+#: src/slic3r/GUI/UpdateDialogs.cpp:114
msgid ""
"This version of Slic3r PE is not compatible with currently installed "
"configuration bundles.\n"
@@ -3516,24 +3909,24 @@ msgstr ""
"니다. ì´ë ‡ê²Œí•˜ë©´ì´ Slic3rê³¼ 호환ë˜ëŠ” 파ì¼ì„ 설치하기 ì „ì— ê¸°ì¡´ êµ¬ì„±ì˜ ë°±ì—… 스"
"냅 ìƒ·ì„ ìƒì„± í• ìˆ˜ 있습니다.\n"
-#: src/slic3r/GUI/UpdateDialogs.cpp:121
+#: src/slic3r/GUI/UpdateDialogs.cpp:123
#, c-format
msgid "This Slic3r PE version: %s"
msgstr "ì´ Slic3r PE ë²„ì „ : % s"
-#: src/slic3r/GUI/UpdateDialogs.cpp:126
+#: src/slic3r/GUI/UpdateDialogs.cpp:128
msgid "Incompatible bundles:"
msgstr "호환ë˜ì§€ 않는 번들 :"
-#: src/slic3r/GUI/UpdateDialogs.cpp:142
+#: src/slic3r/GUI/UpdateDialogs.cpp:144
msgid "Exit Slic3r"
msgstr "Exit Slic3r"
-#: src/slic3r/GUI/UpdateDialogs.cpp:145
+#: src/slic3r/GUI/UpdateDialogs.cpp:147
msgid "Re-configure"
msgstr "재구성"
-#: src/slic3r/GUI/UpdateDialogs.cpp:166
+#: src/slic3r/GUI/UpdateDialogs.cpp:168
#, c-format
msgid ""
"Slic3r PE now uses an updated configuration structure.\n"
@@ -3559,15 +3952,15 @@ msgstr ""
"새 ì‚¬ì „ ì„¤ì •ì„ ì„¤ì •í•˜ê³ ìžë™ ì‚¬ì „ ì„¤ì • ì—…ë°ì´íŠ¸ë¥¼ ì‚¬ìš©í• ì§€ 여부를 ì„ íƒí•˜ë ¤ë©´ "
"다ìŒì˜ % sì„ ê³„ì† ì§„í–‰í•˜ì‹ì‹œì˜¤."
-#: src/slic3r/GUI/UpdateDialogs.cpp:182
+#: src/slic3r/GUI/UpdateDialogs.cpp:184
msgid "For more information please visit our wiki page:"
msgstr "ìžì„¸í•œ ì •ë³´ëŠ” 위키 페ì´ì§€ë¥¼ 참조하ì‹ì‹œì˜¤ :"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:10
+#: src/slic3r/GUI/WipeTowerDialog.cpp:14
msgid "Ramming customization"
msgstr "ì‚¬ìš©ìž ì •ì˜ ë‹¤ì§€ê¸°(Ramming)"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:36
+#: src/slic3r/GUI/WipeTowerDialog.cpp:40
msgid ""
"Ramming denotes the rapid extrusion just before a tool change in a single-"
"extruder MM printer. Its purpose is to properly shape the end of the "
@@ -3588,49 +3981,49 @@ msgstr ""
"ì „ë¬¸ê°€ ìˆ˜ì¤€ì˜ ì„¤ì •ì´ë¯€ë¡œ ìž˜ëª»ëœ ì¡°ì •ìœ¼ë¡œ ì¸í•´ 용지 걸림, 압출기 íœ ì´ í•„ë¼ë©˜"
"트 ë“±ì— ì—°ì‚ ë 수 있습니다."
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78
+#: src/slic3r/GUI/WipeTowerDialog.cpp:82
msgid "Total ramming time"
msgstr "ì´ ëž˜ë° ì‹œê°„"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:80
+#: src/slic3r/GUI/WipeTowerDialog.cpp:84
msgid "Total rammed volume"
msgstr "ì´ ë ˆë¯¸ë“œ ì–‘"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:84
+#: src/slic3r/GUI/WipeTowerDialog.cpp:88
msgid "Ramming line width"
msgstr "ëž˜ë° ì„ ë„ˆë¹„"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:86
+#: src/slic3r/GUI/WipeTowerDialog.cpp:90
msgid "Ramming line spacing"
msgstr "ëž˜ë° ì„ ê°„ê²©"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:138
+#: src/slic3r/GUI/WipeTowerDialog.cpp:141
msgid "Wipe tower - Purging volume adjustment"
msgstr "와ì´í”„ 타워 - ë²„ë ¤ì§„ í•„ë¼ë©˜íЏ ì¡°ì ˆ"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:219
+#: src/slic3r/GUI/WipeTowerDialog.cpp:225
msgid ""
"Here you can adjust required purging volume (mm³) for any given pair of "
"tools."
msgstr "여기서 주어진 ë„구 ìŒì— 필요한 ì •í™” 용량 (mm³)ì„ ì¡°ì •í• ìˆ˜ 있습니다."
-#: src/slic3r/GUI/WipeTowerDialog.cpp:220
+#: src/slic3r/GUI/WipeTowerDialog.cpp:226
msgid "Extruder changed to"
msgstr "ìµìŠ¤íŠ¸ë£¨ë” ë²ˆê²½"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:228
+#: src/slic3r/GUI/WipeTowerDialog.cpp:234
msgid "unloaded"
msgstr "언로드(unloaded)"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:229
+#: src/slic3r/GUI/WipeTowerDialog.cpp:235
msgid "loaded"
msgstr "로드(loaded)"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:234
+#: src/slic3r/GUI/WipeTowerDialog.cpp:240
msgid "Tool #"
msgstr "툴(Tool) #"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:241
+#: src/slic3r/GUI/WipeTowerDialog.cpp:247
msgid ""
"Total purging volume is calculated by summing two values below, depending on "
"which tools are loaded/unloaded."
@@ -3638,15 +4031,15 @@ msgstr ""
"ì´ ì •í™” ëŸ‰ì€ ì–´ëŠ ê³µêµ¬ê°€ë¡œë“œ / 언로드ë˜ëŠ”ì§€ì— ë”°ë¼ ì•„ëž˜ì˜ ë‘ ê°’ì„ í•©ì‚°í•˜ì—¬ 계"
"ì‚°ë©ë‹ˆë‹¤."
-#: src/slic3r/GUI/WipeTowerDialog.cpp:242
+#: src/slic3r/GUI/WipeTowerDialog.cpp:248
msgid "Volume to purge (mm³) when the filament is being"
msgstr "ì œê±°í• í•„ë¼ë©˜íЏ ì–‘ (mm³)"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:256
+#: src/slic3r/GUI/WipeTowerDialog.cpp:262
msgid "From"
msgstr "From"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:321
+#: src/slic3r/GUI/WipeTowerDialog.cpp:327
msgid ""
"Switching to simple settings will discard changes done in the advanced "
"mode!\n"
@@ -3657,57 +4050,87 @@ msgstr ""
"\n"
"계ì†í•˜ì‹œê² 습니까?"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
+#: src/slic3r/GUI/WipeTowerDialog.cpp:339
msgid "Show simplified settings"
msgstr "간단한 ì„¤ì •ë³´ê¸°"
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
+#: src/slic3r/GUI/WipeTowerDialog.cpp:339
msgid "Show advanced settings"
msgstr "ê³ ê¸‰ ì„¤ì •ë³´ê¸°"
-#: src/slic3r/Utils/OctoPrint.cpp:65
+#: src/slic3r/GUI/wxExtensions.cpp:2398
+#, c-format
+msgid "Switch to the %s mode"
+msgstr ""
+
+#: src/slic3r/GUI/wxExtensions.cpp:2399
+#, c-format
+msgid "Current mode is %s"
+msgstr ""
+
+#: src/slic3r/Utils/Duet.cpp:51
+msgid "Connection to Duet works correctly."
+msgstr ""
+
+#: src/slic3r/Utils/Duet.cpp:56
+msgid "Could not connect to Duet"
+msgstr ""
+
+#: src/slic3r/Utils/Duet.cpp:84 src/slic3r/Utils/Duet.cpp:154
+msgid "Unknown error occured"
+msgstr ""
+
+#: src/slic3r/Utils/Duet.cpp:148
+msgid "Wrong password"
+msgstr ""
+
+#: src/slic3r/Utils/Duet.cpp:151
+msgid "Could not get resources to create a new connection"
+msgstr ""
+
+#: src/slic3r/Utils/OctoPrint.cpp:69
#, c-format
msgid "Mismatched type of print host: %s"
msgstr ""
-#: src/slic3r/Utils/OctoPrint.cpp:80
+#: src/slic3r/Utils/OctoPrint.cpp:84
msgid "Connection to OctoPrint works correctly."
msgstr "OctoPrintì— ì—°ê²°í•˜ë©´ 올바르게 ìž‘ë™í•©ë‹ˆë‹¤."
-#: src/slic3r/Utils/OctoPrint.cpp:86
+#: src/slic3r/Utils/OctoPrint.cpp:90
msgid "Could not connect to OctoPrint"
msgstr "OctoPrintì— ì—°ê²°í• ìˆ˜ 없습니다"
-#: src/slic3r/Utils/OctoPrint.cpp:86
+#: src/slic3r/Utils/OctoPrint.cpp:90
msgid "Note: OctoPrint version at least 1.1.0 is required."
msgstr "ì°¸ê³ : OctoPrint ë²„ì „ 1.1.0 ì´ìƒì´ 필요합니다."
-#: src/slic3r/Utils/OctoPrint.cpp:181
+#: src/slic3r/Utils/OctoPrint.cpp:195
msgid "Connection to Prusa SLA works correctly."
msgstr ""
-#: src/slic3r/Utils/OctoPrint.cpp:186
+#: src/slic3r/Utils/OctoPrint.cpp:200
msgid "Could not connect to Prusa SLA"
msgstr ""
-#: src/slic3r/Utils/PresetUpdater.cpp:571
+#: src/slic3r/Utils/PresetUpdater.cpp:583
#, c-format
msgid "requires min. %s and max. %s"
msgstr "최소. %s 와 최대. %s"
-#: src/slic3r/Utils/PresetUpdater.cpp:576
+#: src/slic3r/Utils/PresetUpdater.cpp:588
#, c-format
msgid "requires min. %s"
msgstr ""
-#: src/slic3r/Utils/PresetUpdater.cpp:578
+#: src/slic3r/Utils/PresetUpdater.cpp:590
#, c-format
msgid "requires max. %s"
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:219
-#: src/slic3r/Utils/FixModelByWin10.cpp:349
-msgid "Exporting the source model"
+#: src/slic3r/Utils/FixModelByWin10.cpp:359
+msgid "Exporting source model"
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:235
@@ -3715,7 +4138,7 @@ msgid "Failed loading the input model."
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:242
-msgid "Repairing the model by the Netfabb service"
+msgid "Repairing model by the Netfabb service"
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:248
@@ -3723,8 +4146,8 @@ msgid "Mesh repair failed."
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:251
-#: src/slic3r/Utils/FixModelByWin10.cpp:367
-msgid "Loading the repaired model"
+#: src/slic3r/Utils/FixModelByWin10.cpp:378
+msgid "Loading repaired model"
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:263
@@ -3733,62 +4156,246 @@ msgstr ""
msgid "Saving mesh into the 3MF container failed."
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:334
+#: src/slic3r/Utils/FixModelByWin10.cpp:340
msgid "Model fixing"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:335
+#: src/slic3r/Utils/FixModelByWin10.cpp:341
msgid "Exporting model..."
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:357
+#: src/slic3r/Utils/FixModelByWin10.cpp:368
msgid "Export of a temporary 3mf file failed"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:372
+#: src/slic3r/Utils/FixModelByWin10.cpp:383
msgid "Import of the repaired 3mf file failed"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:375
+#: src/slic3r/Utils/FixModelByWin10.cpp:385
+msgid "Repaired 3MF file does not contain any object"
+msgstr ""
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:387
+msgid "Repaired 3MF file contains more than one object"
+msgstr ""
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:389
+msgid "Repaired 3MF file does not contain any volume"
+msgstr ""
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:391
+msgid "Repaired 3MF file contains more than one volume"
+msgstr ""
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:400
msgid "Model repair finished"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:379
+#: src/slic3r/Utils/FixModelByWin10.cpp:406
msgid "Model repair canceled"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
+#: src/slic3r/Utils/FixModelByWin10.cpp:423
msgid "Model repaired successfully"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
+#: src/slic3r/Utils/FixModelByWin10.cpp:423
+#: src/slic3r/Utils/FixModelByWin10.cpp:426
msgid "Model Repair by the Netfabb service"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
+#: src/slic3r/Utils/FixModelByWin10.cpp:426
msgid "Model repair failed: \n"
msgstr ""
-#: src/libslic3r/Print.cpp:1175
+#: src/libslic3r/Zipper.cpp:35
+msgid "undefined error"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:37
+msgid "too many files"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:39
+msgid "file too large"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:41
+msgid "unsupported method"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:43
+msgid "unsupported encryption"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:45
+msgid "unsupported feature"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:47
+msgid "failed finding central directory"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:49
+msgid "not a ZIP archive"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:51
+msgid "invalid header or archive is corrupted"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:53
+msgid "unsupported multidisk archive"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:55
+msgid "decompression failed or archive is corrupted"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:57
+msgid "compression failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:59
+msgid "unexpected decompressed size"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:61
+msgid "CRC-32 check failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:63
+msgid "unsupported central directory size"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:65
+msgid "allocation failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:67
+msgid "file open failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:69
+msgid "file create failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:71
+msgid "file write failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:73
+msgid "file read failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:75
+msgid "file close failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:77
+msgid "file seek failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:79
+msgid "file stat failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:81
+msgid "invalid parameter"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:83
+msgid "invalid filename"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:85
+msgid "buffer too small"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:87
+msgid "internal error"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:89
+msgid "file not found"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:91
+msgid "archive is too large"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:93
+msgid "validation failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:95
+msgid "write calledback failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:105
+msgid "Error with zip archive"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2153
+msgid "Starting"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2154
+msgid "Filtering"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2155
+msgid "Generate pinheads"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2156
+msgid "Classification"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2157
+msgid "Routing to ground"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2158
+msgid "Routing supports to model surface"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2159
+msgid "Cascading pillars"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2160
+msgid "Processing small holes"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2161
+msgid "Done"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2162
+msgid "Abort"
+msgstr ""
+
+#: src/libslic3r/Print.cpp:1136
msgid "All objects are outside of the print volume."
msgstr "ëª¨ë“ ê°œì²´ê°€ ì¸ì‡„ 볼륨 ì™¸ë¶€ì— ìžˆìŠµë‹ˆë‹¤."
-#: src/libslic3r/Print.cpp:1201
+#: src/libslic3r/Print.cpp:1165
msgid "Some objects are too close; your extruder will collide with them."
msgstr "ì¼ë¶€ 개체가 너무 ê°€ê¹ìŠµë‹ˆë‹¤. ê·€í•˜ì˜ ì••ì¶œê¸°ê°€ 그들과 ì¶©ëŒí•©ë‹ˆë‹¤."
-#: src/libslic3r/Print.cpp:1216
+#: src/libslic3r/Print.cpp:1180
msgid ""
"Some objects are too tall and cannot be printed without extruder collisions."
msgstr "ì¼ë¶€ 개체는 너무 í¬ê³ ìµìŠ¤íŠ¸ë£¨ë” ì¶©ëŒì—†ì´ ì¸ì‡„ í• ìˆ˜ 없습니다."
-#: src/libslic3r/Print.cpp:1226
+#: src/libslic3r/Print.cpp:1190
msgid "The Spiral Vase option can only be used when printing a single object."
msgstr ""
"ë‚˜ì„ í˜• 꽃병(Spiral Vase) ì˜µì…˜ì€ ë‹¨ì¼ ê°œì²´ë¥¼ ì¸ì‡„ í• ë•Œë§Œ ì‚¬ìš©í• ìˆ˜ 있습니다."
-#: src/libslic3r/Print.cpp:1228
+#: src/libslic3r/Print.cpp:1192
msgid ""
"The Spiral Vase option can only be used when printing single material "
"objects."
@@ -3796,7 +4403,7 @@ msgstr ""
"ë‚˜ì„ í˜• 꽃병 옵션(Spiral Vase)ì€ ë‹¨ì¼ ìž¬ë£Œ ê°ì²´ë¥¼ ì¸ì‡„ í• ë•Œë§Œ ì‚¬ìš©í• ìˆ˜ 있습"
"니다."
-#: src/libslic3r/Print.cpp:1234
+#: src/libslic3r/Print.cpp:1198
msgid ""
"All extruders must have the same diameter for single extruder multimaterial "
"printer."
@@ -3804,13 +4411,13 @@ msgstr ""
"ëª¨ë“ ìµìŠ¤íŠ¸ë£¨ë”는 멀티메터리얼 í”„ë¦°í„°ì˜ ì‹±ê¸€ ìµìŠ¤íŠ¸ë£¨ë”ì— ëŒ€í•´ ë™ì¼í•œ ì§ê²½ì„ "
"ê°€ì ¸ì•¼í•©ë‹ˆë‹¤."
-#: src/libslic3r/Print.cpp:1239
+#: src/libslic3r/Print.cpp:1203
msgid ""
"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter "
"and Repetier G-code flavors."
msgstr ""
-#: src/libslic3r/Print.cpp:1241
+#: src/libslic3r/Print.cpp:1205
msgid ""
"The Wipe Tower is currently only supported with the relative extruder "
"addressing (use_relative_e_distances=1)."
@@ -3818,7 +4425,7 @@ msgstr ""
"와ì´í”„ 타워는 현재 ìƒëŒ€ì 압출기 ì–´ë“œë ˆì‹± (use_relative_e_distances = 1)ì—서"
"ë§Œ ì§€ì›ë©ë‹ˆë‹¤."
-#: src/libslic3r/Print.cpp:1253
+#: src/libslic3r/Print.cpp:1226
msgid ""
"The Wipe Tower is only supported for multiple objects if they have equal "
"layer heigths"
@@ -3826,7 +4433,7 @@ msgstr ""
"와ì´í”„ 타워 (Wipe Tower)는 ê°™ì€ ë ˆì´ì–´ 높ì´ì— 경우 여러 ê°ì²´ì— 대해서만 ì§€ì›"
"ë©ë‹ˆë‹¤"
-#: src/libslic3r/Print.cpp:1255
+#: src/libslic3r/Print.cpp:1228
msgid ""
"The Wipe Tower is only supported for multiple objects if they are printed "
"over an equal number of raft layers"
@@ -3834,7 +4441,7 @@ msgstr ""
"와ì´í”„ 타워는 ê°™ì€ ìˆ˜ì˜ ë¼í”„트 ë ˆì´ì–´ ìœ„ì— ì¸ì‡„ ëœ ê²½ìš° 여러 ê°ì²´ì— 대해서만 "
"ì§€ì›ë©ë‹ˆë‹¤"
-#: src/libslic3r/Print.cpp:1257
+#: src/libslic3r/Print.cpp:1230
msgid ""
"The Wipe Tower is only supported for multiple objects if they are printed "
"with the same support_material_contact_distance"
@@ -3842,30 +4449,30 @@ msgstr ""
"와ì´í”„ 타워는 ë™ì¼í•œ support_material_contact_distance로 ì¸ì‡„ ëœ ê²½ìš° 여러 ê°"
"ì²´ì— ëŒ€í•´ì„œë§Œ ì§€ì›ë©ë‹ˆë‹¤"
-#: src/libslic3r/Print.cpp:1259
+#: src/libslic3r/Print.cpp:1232
msgid ""
"The Wipe Tower is only supported for multiple objects if they are sliced "
"equally."
msgstr ""
"와ì´í”„ 타워는 ë˜‘ê°™ì´ ìŠ¬ë¼ì´ìФ ëœ ê²½ìš° 여러 오브ì íŠ¸ì— ëŒ€í•´ì„œë§Œ ì§€ì›ë©ë‹ˆë‹¤."
-#: src/libslic3r/Print.cpp:1281
+#: src/libslic3r/Print.cpp:1261
msgid ""
"The Wipe tower is only supported if all objects have the same layer height "
"profile"
msgstr ""
"ëª¨ë“ ì˜¤ë¸Œì íŠ¸ì˜ ë ˆì´ì–´ ë†’ì´ í”„ë¡œí•„ì´ ë™ì¼í•œ 경우ì—ë§Œ 와ì´í”„ 타워가 ì§€ì›ë©ë‹ˆë‹¤"
-#: src/libslic3r/Print.cpp:1290
+#: src/libslic3r/Print.cpp:1271
msgid "The supplied settings will cause an empty print."
msgstr "ì œê³µëœ ì„¤ì •ìœ¼ë¡œ ì¸í•´ 빈 ì¸ì‡„ê°€ ë°œìƒí•©ë‹ˆë‹¤."
-#: src/libslic3r/Print.cpp:1307
+#: src/libslic3r/Print.cpp:1288
msgid ""
"One or more object were assigned an extruder that the printer does not have."
msgstr "하나 ì´ìƒì˜ ê°œì²´ì— í”„ë¦°í„°ì—없는 압출기가 ì§€ì •ë˜ì—ˆìŠµë‹ˆë‹¤."
-#: src/libslic3r/Print.cpp:1316
+#: src/libslic3r/Print.cpp:1297
msgid ""
"Printing with multiple extruders of differing nozzle diameters. If support "
"is to be printed with the current extruder (support_material_extruder == 0 "
@@ -3876,13 +4483,13 @@ msgstr ""
"(support_material_extruder == 0 ë˜ëŠ” support_material_interface_extruder == "
"0)로 ì¸ì‡„ë˜ëŠ” 경우 ëª¨ë“ ë…¸ì¦ì€ ë™ì¼í•œ 지름ì´ì–´ì•¼í•©ë‹ˆë‹¤."
-#: src/libslic3r/Print.cpp:1324
+#: src/libslic3r/Print.cpp:1305
msgid ""
"For the Wipe Tower to work with the soluble supports, the support layers "
"need to be synchronized with the object layers."
msgstr ""
-#: src/libslic3r/Print.cpp:1328
+#: src/libslic3r/Print.cpp:1309
msgid ""
"The Wipe Tower currently supports the non-soluble supports only if they are "
"printed with the current extruder without triggering a tool change. (both "
@@ -3890,27 +4497,82 @@ msgid ""
"set to 0)."
msgstr ""
-#: src/libslic3r/Print.cpp:1335
+#: src/libslic3r/Print.cpp:1316
msgid "first_layer_height"
msgstr "first_layer_height"
-#: src/libslic3r/Print.cpp:1350
+#: src/libslic3r/Print.cpp:1331
msgid "First layer height can't be greater than nozzle diameter"
msgstr "첫번째 ë ˆì´ì–´ 높ì´ëŠ” ë…¸ì¦ ì§ê²½ë³´ë‹¤ í´ ìˆ˜ 없습니다"
-#: src/libslic3r/Print.cpp:1354
+#: src/libslic3r/Print.cpp:1335
msgid "Layer height can't be greater than nozzle diameter"
msgstr "ë ˆì´ì–´ 높ì´ëŠ” ë…¸ì¦ ì§ê²½ë³´ë‹¤ í´ ìˆ˜ 없습니다"
-#: src/libslic3r/PrintConfig.cpp:32 src/libslic3r/PrintConfig.cpp:33
+#: src/libslic3r/SLAPrint.cpp:55
+msgid "Slicing model"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:56 src/libslic3r/SLAPrint.cpp:801
+msgid "Generating support points"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:57
+msgid "Generating support tree"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:58
+msgid "Generating pad"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:59
+msgid "Slicing supports"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:71
+msgid "Merging slices and calculating statistics"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:72
+msgid "Rasterizing layers"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:605
+msgid ""
+"Cannot proceed without support points! Add support points or disable support "
+"generation."
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:617
+msgid "Elevation is too low for object."
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:699
+msgid "Slicing had to be stopped due to an internal error."
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:849 src/libslic3r/SLAPrint.cpp:859
+#: src/libslic3r/SLAPrint.cpp:907
+msgid "Visualizing supports"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:1449
+msgid "Slicing done"
+msgstr ""
+
+#: src/libslic3r/PrintBase.cpp:65
+msgid "Failed processing of the output_filename_format template."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:42 src/libslic3r/PrintConfig.cpp:43
msgid "Printer technology"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:41
+#: src/libslic3r/PrintConfig.cpp:50
msgid "Bed shape"
msgstr "배드 모양"
-#: src/libslic3r/PrintConfig.cpp:48
+#: src/libslic3r/PrintConfig.cpp:57
msgid ""
"This setting controls the height (and thus the total number) of the slices/"
"layers. Thinner layers give better accuracy but take more time to print."
@@ -3918,21 +4580,52 @@ msgstr ""
"ì´ ì„¤ì •ì€ ìŠ¬ë¼ì´ìФ/ë ˆì´ì–´ì˜ 높ì´(ë”°ë¼ì„œ ì´ ìˆ˜)를 ì œì–´í•œë‹¤. ì–‡ì€ ì¸µì€ ë” ë‚˜ì€ "
"ì •í™•ì„±ì„ ì œê³µí•˜ì§€ë§Œ ì¸ì‡„하는 ë°ëŠ” ë” ë§Žì€ ì‹œê°„ì´ ê±¸ë¦°ë‹¤."
-#: src/libslic3r/PrintConfig.cpp:56
+#: src/libslic3r/PrintConfig.cpp:64
msgid "Max print height"
msgstr "최대 프린트 높ì´"
-#: src/libslic3r/PrintConfig.cpp:57
+#: src/libslic3r/PrintConfig.cpp:65
msgid ""
"Set this to the maximum height that can be reached by your extruder while "
"printing."
msgstr "ì¸ì‡„ ì¤‘ì— ìµìŠ¤íŠ¸ë£¨ë”ê°€ ë„달 í• ìˆ˜ìžˆëŠ” 최대 높ì´ë¡œ ì„¤ì •í•˜ì‹ì‹œì˜¤."
+#: src/libslic3r/PrintConfig.cpp:71
+msgid "Slice gap closing radius"
+msgstr ""
+
#: src/libslic3r/PrintConfig.cpp:73
+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 ""
+
+#: src/libslic3r/PrintConfig.cpp:81
+msgid "Hostname, IP or URL"
+msgstr "호스트 ì´ë¦„(Hostname), IP or URL"
+
+#: src/libslic3r/PrintConfig.cpp:82
+msgid ""
+"Slic3r can upload G-code files to a printer host. This field should contain "
+"the hostname, IP address or URL of the printer host instance."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:88
+msgid "API Key / Password"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:89
+msgid ""
+"Slic3r can upload G-code files to a printer host. This field should contain "
+"the API Key or the password required for authentication."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:111
msgid "Avoid crossing perimeters"
msgstr "ì¶œë ¥ëœ ì™¸ì¸¡ì„ í”¼í•˜ì„¸ìš”"
-#: src/libslic3r/PrintConfig.cpp:74
+#: src/libslic3r/PrintConfig.cpp:112
msgid ""
"Optimize travel moves in order to minimize the crossing of perimeters. This "
"is mostly useful with Bowden extruders which suffer from oozing. This "
@@ -3942,11 +4635,11 @@ msgstr ""
"(Bowling) 압출기가 í˜ëŸ¬ 나오기 쉬운 ê²½ìš°ì— ì£¼ë¡œ ìœ ìš©í•©ë‹ˆë‹¤. ì´ ê¸°ëŠ¥ì„ ì‚¬ìš©í•˜"
"ë©´ ì¸ì‡„ ë° G 코드 ìƒì„± ì†ë„ê°€ ëŠë ¤ì§‘니다."
-#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:2080
+#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:1976
msgid "Other layers"
msgstr "다른 ë ˆì´ì–´"
-#: src/libslic3r/PrintConfig.cpp:83
+#: src/libslic3r/PrintConfig.cpp:120
msgid ""
"Bed temperature for layers after the first one. Set this to zero to disable "
"bed temperature control commands in the output."
@@ -3954,11 +4647,11 @@ msgstr ""
"첫 번째 ë ˆì´ì–´ ì´í›„ì˜ ë ˆì´ì–´ 온ë„. ì´ ê°’ì„ 0으로 ì„¤ì •í•˜ë©´ ì¶œë ¥ì—서 â€‹â€‹ë² ë“œ ì˜¨ë„ "
"ì œì–´ ëª…ë ¹ì„ ë¹„í™œì„±í™”í•©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:86
+#: src/libslic3r/PrintConfig.cpp:122
msgid "Bed temperature"
msgstr "배드 온ë„"
-#: src/libslic3r/PrintConfig.cpp:93
+#: src/libslic3r/PrintConfig.cpp:129
msgid ""
"This custom code is inserted at every layer change, right before the Z move. "
"Note that you can use placeholder variables for all Slic3r settings as well "
@@ -3968,11 +4661,11 @@ msgstr ""
"ì„¤ì •ê³¼ [layer_num] ë° [layer_z]ì— ëŒ€í•œ ìžë¦¬ 표시 ìž ë³€ìˆ˜ë¥¼ ì‚¬ìš©í• ìˆ˜ 있습니"
"다."
-#: src/libslic3r/PrintConfig.cpp:104
+#: src/libslic3r/PrintConfig.cpp:139
msgid "Between objects G-code"
msgstr "ê°ì²´ ê°„ G 코드"
-#: src/libslic3r/PrintConfig.cpp:105
+#: src/libslic3r/PrintConfig.cpp:140
msgid ""
"This code is inserted between objects when using sequential printing. By "
"default extruder and bed temperature are reset using non-wait command; "
@@ -3987,24 +4680,19 @@ msgstr ""
"ì§€ 않습니다. ëª¨ë“ Slic3r ì„¤ì •ì— ìžë¦¬ 표시 변수를 ì‚¬ìš©í• ìˆ˜ 있으므로 ì›í•˜ëŠ” 위"
"ì¹˜ì— \"M109 S [first_layer_temperature]\"ëª…ë ¹ì„ ë„£ì„ ìˆ˜ 있습니다."
-#: src/libslic3r/PrintConfig.cpp:114
-msgctxt "Layers"
-msgid "Bottom"
-msgstr "바닥(Bottom)"
-
-#: src/libslic3r/PrintConfig.cpp:116
+#: src/libslic3r/PrintConfig.cpp:150
msgid "Number of solid layers to generate on bottom surfaces."
msgstr "ë°”ë‹¥ë©´ì— ìƒì„± í• ì†”ë¦¬ë“œ ë ˆì´ì–´ì˜ 수."
-#: src/libslic3r/PrintConfig.cpp:118
+#: src/libslic3r/PrintConfig.cpp:151
msgid "Bottom solid layers"
msgstr "바닥 ë‹¨ì¼ ë ˆì´ì–´"
-#: src/libslic3r/PrintConfig.cpp:123
+#: src/libslic3r/PrintConfig.cpp:156
msgid "Bridge"
msgstr "브리지"
-#: src/libslic3r/PrintConfig.cpp:124
+#: src/libslic3r/PrintConfig.cpp:157
msgid ""
"This is the acceleration your printer will use for bridges. Set zero to "
"disable acceleration control for bridges."
@@ -4012,18 +4700,18 @@ msgstr ""
"ì´ê²ƒì€ 프린터가 ë¸Œë¦¿ì§€ì— ì‚¬ìš©í• ê°€ì†ë„입니다. ë¸Œë¦¬ì§€ì˜ ê°€ì† ì œì–´ë¥¼ 사용하지 "
"ì•Šìœ¼ë ¤ë©´ 0으로 ì„¤ì •í•˜ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:126 src/libslic3r/PrintConfig.cpp:274
-#: src/libslic3r/PrintConfig.cpp:819 src/libslic3r/PrintConfig.cpp:941
-#: src/libslic3r/PrintConfig.cpp:1100 src/libslic3r/PrintConfig.cpp:1145
-#: src/libslic3r/PrintConfig.cpp:1156 src/libslic3r/PrintConfig.cpp:1386
+#: src/libslic3r/PrintConfig.cpp:159 src/libslic3r/PrintConfig.cpp:302
+#: src/libslic3r/PrintConfig.cpp:814 src/libslic3r/PrintConfig.cpp:935
+#: src/libslic3r/PrintConfig.cpp:1088 src/libslic3r/PrintConfig.cpp:1133
+#: src/libslic3r/PrintConfig.cpp:1144 src/libslic3r/PrintConfig.cpp:1333
msgid "mm/s²"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:133
+#: src/libslic3r/PrintConfig.cpp:165
msgid "Bridging angle"
msgstr "브릿지 ê°ë„"
-#: src/libslic3r/PrintConfig.cpp:135
+#: src/libslic3r/PrintConfig.cpp:167
msgid ""
"Bridging angle override. If left to zero, the bridging angle will be "
"calculated automatically. Otherwise the provided angle will be used for all "
@@ -4033,32 +4721,33 @@ msgstr ""
"로 계산ë©ë‹ˆë‹¤. ê·¸ë ‡ì§€ 않으면 ì œê³µëœ ê°ë„ê°€ ëª¨ë“ ë¸Œë¦¬ì§€ì— ì‚¬ìš©ë©ë‹ˆë‹¤. ê°ë„ ì œ"
"로는 180 °를 사용하ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:138 src/libslic3r/PrintConfig.cpp:734
-#: src/libslic3r/PrintConfig.cpp:1637 src/libslic3r/PrintConfig.cpp:1648
-#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:2063
-#: src/libslic3r/PrintConfig.cpp:2578
+#: src/libslic3r/PrintConfig.cpp:170 src/libslic3r/PrintConfig.cpp:732
+#: src/libslic3r/PrintConfig.cpp:1569 src/libslic3r/PrintConfig.cpp:1579
+#: src/libslic3r/PrintConfig.cpp:1807 src/libslic3r/PrintConfig.cpp:1961
+#: src/libslic3r/PrintConfig.cpp:2459
msgid "°"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:145
+#: src/libslic3r/PrintConfig.cpp:176
msgid "Bridges fan speed"
msgstr "브릿지 팬 ì†ë„"
-#: src/libslic3r/PrintConfig.cpp:146
+#: src/libslic3r/PrintConfig.cpp:177
msgid "This fan speed is enforced during all bridges and overhangs."
msgstr "ì´ íŒ¬ ì†ë„는 ëª¨ë“ ë¸Œë¦¿ì§€ ë° ì˜¤ë²„í–‰ ì¤‘ì— ì ìš©ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:147 src/libslic3r/PrintConfig.cpp:747
-#: src/libslic3r/PrintConfig.cpp:1165 src/libslic3r/PrintConfig.cpp:1232
-#: src/libslic3r/PrintConfig.cpp:1517
+#: src/libslic3r/PrintConfig.cpp:178 src/libslic3r/PrintConfig.cpp:744
+#: src/libslic3r/PrintConfig.cpp:1153 src/libslic3r/PrintConfig.cpp:1216
+#: src/libslic3r/PrintConfig.cpp:1461 src/libslic3r/PrintConfig.cpp:2258
+#: src/libslic3r/PrintConfig.cpp:2498
msgid "%"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:155
+#: src/libslic3r/PrintConfig.cpp:185
msgid "Bridge flow ratio"
msgstr "브릿지 ìœ ëŸ‰(flow)ê°’"
-#: src/libslic3r/PrintConfig.cpp:157
+#: src/libslic3r/PrintConfig.cpp:187
msgid ""
"This factor affects the amount of plastic for bridging. You can decrease it "
"slightly to pull the extrudates and prevent sagging, although default "
@@ -4069,42 +4758,42 @@ msgstr ""
"겨 처ì§ì„ 방지하기 위해 약간 ì¤„ì¼ ìˆ˜ 있지만 기본 ì„¤ì •ì€ ì¼ë°˜ì 으로 ì¢‹ì§€ë§Œì´ "
"ë¬¸ì œë¥¼ 해결하기 ì „ì— ëƒ‰ê° (팬 사용)ì„ ì‹œë„해야합니다."
-#: src/libslic3r/PrintConfig.cpp:168
+#: src/libslic3r/PrintConfig.cpp:197
msgid "Bridges"
msgstr "브릿지(Bridges)"
-#: src/libslic3r/PrintConfig.cpp:170
+#: src/libslic3r/PrintConfig.cpp:199
msgid "Speed for printing bridges."
msgstr "브릿지 ì¸ì‡„ ì†ë„."
-#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:564
-#: src/libslic3r/PrintConfig.cpp:573 src/libslic3r/PrintConfig.cpp:583
-#: src/libslic3r/PrintConfig.cpp:592 src/libslic3r/PrintConfig.cpp:623
-#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:884
-#: src/libslic3r/PrintConfig.cpp:1013 src/libslic3r/PrintConfig.cpp:1090
-#: src/libslic3r/PrintConfig.cpp:1110 src/libslic3r/PrintConfig.cpp:1123
-#: src/libslic3r/PrintConfig.cpp:1134 src/libslic3r/PrintConfig.cpp:1189
-#: src/libslic3r/PrintConfig.cpp:1252 src/libslic3r/PrintConfig.cpp:1418
-#: src/libslic3r/PrintConfig.cpp:1601 src/libslic3r/PrintConfig.cpp:1611
-#: src/libslic3r/PrintConfig.cpp:2041 src/libslic3r/PrintConfig.cpp:2160
+#: src/libslic3r/PrintConfig.cpp:200 src/libslic3r/PrintConfig.cpp:576
+#: src/libslic3r/PrintConfig.cpp:584 src/libslic3r/PrintConfig.cpp:593
+#: src/libslic3r/PrintConfig.cpp:601 src/libslic3r/PrintConfig.cpp:628
+#: src/libslic3r/PrintConfig.cpp:647 src/libslic3r/PrintConfig.cpp:873
+#: src/libslic3r/PrintConfig.cpp:1000 src/libslic3r/PrintConfig.cpp:1078
+#: src/libslic3r/PrintConfig.cpp:1098 src/libslic3r/PrintConfig.cpp:1111
+#: src/libslic3r/PrintConfig.cpp:1122 src/libslic3r/PrintConfig.cpp:1175
+#: src/libslic3r/PrintConfig.cpp:1234 src/libslic3r/PrintConfig.cpp:1362
+#: src/libslic3r/PrintConfig.cpp:1536 src/libslic3r/PrintConfig.cpp:1545
+#: src/libslic3r/PrintConfig.cpp:1940 src/libslic3r/PrintConfig.cpp:2051
msgid "mm/s"
msgstr "mm/s"
-#: src/libslic3r/PrintConfig.cpp:178
+#: src/libslic3r/PrintConfig.cpp:207
msgid "Brim width"
msgstr "브림 í"
-#: src/libslic3r/PrintConfig.cpp:179
+#: src/libslic3r/PrintConfig.cpp:208
msgid ""
"Horizontal width of the brim that will be printed around each object on the "
"first layer."
msgstr "첫 번째 ë ˆì´ì–´ì˜ ê° ê°ì²´ ì£¼ìœ„ì— ì¸ì‡„ ë 가장ìžë¦¬ì˜ 가로 í입니다."
-#: src/libslic3r/PrintConfig.cpp:187
+#: src/libslic3r/PrintConfig.cpp:215
msgid "Clip multi-part objects"
msgstr "여러 파트 오브ì 트 í´ë¦½"
-#: src/libslic3r/PrintConfig.cpp:188
+#: src/libslic3r/PrintConfig.cpp:216
msgid ""
"When printing multi-material objects, this settings will make slic3r to clip "
"the overlapping object parts one by the other (2nd part will be clipped by "
@@ -4114,19 +4803,19 @@ msgstr ""
"ì²´ 파트를 서로 ê²¹ì³ì„œ 잘ë¼ë‚¼ 수 있습니다 (ë‘ ë²ˆì§¸ ë¶€ë¶„ì€ ì²« 번째 부분ì—서 í´"
"리핑ë˜ë©° 세 번째 ë¶€ë¶„ì€ ì²« 번째 ë° ë‘ ë²ˆì§¸ 부분ì—서 잘립니다)."
-#: src/libslic3r/PrintConfig.cpp:196
+#: src/libslic3r/PrintConfig.cpp:223
msgid "Colorprint height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:197
+#: src/libslic3r/PrintConfig.cpp:224
msgid "Heights at which a filament change is to occur. "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:207
+#: src/libslic3r/PrintConfig.cpp:234
msgid "Compatible printers condition"
msgstr "호환 가능한 프린터 조건"
-#: src/libslic3r/PrintConfig.cpp:208
+#: src/libslic3r/PrintConfig.cpp:235
msgid ""
"A boolean expression using the configuration values of an active printer "
"profile. If this expression evaluates to true, this profile is considered "
@@ -4135,22 +4824,22 @@ msgstr ""
"활성 프린터 프로파ì¼ì˜ 구성 ê°’ì„ ì‚¬ìš©í•˜ëŠ” 부울 표현ì‹. ì´ í‘œí˜„ì‹ì´ true로 í‰"
"ê°€ë˜ë©´ì´ í”„ë¡œí•„ì€ í™œì„± 프린터 프로필과 호환ë˜ëŠ” 것으로 간주ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:220
+#: src/libslic3r/PrintConfig.cpp:249
msgid "Compatible print profiles condition"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:221
+#: src/libslic3r/PrintConfig.cpp:250
msgid ""
"A boolean expression using the configuration values of an active print "
"profile. If this expression evaluates to true, this profile is considered "
"compatible with the active print profile."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:235
+#: src/libslic3r/PrintConfig.cpp:267
msgid "Complete individual objects"
msgstr "개별 개체 완성"
-#: src/libslic3r/PrintConfig.cpp:236
+#: src/libslic3r/PrintConfig.cpp:268
msgid ""
"When printing multiple objects or copies, this feature will complete each "
"object before moving onto next one (and starting it from its bottom layer). "
@@ -4162,11 +4851,11 @@ msgstr ""
"í”¼í• ë•Œ ìœ ìš©í•©ë‹ˆë‹¤. Slic3rì€ ì••ì¶œê¸° ì¶©ëŒì„ ê²½ê³ í•˜ê³ ì˜ˆë°©í•´ì•¼í•˜ì§€ë§Œ 조심하ì‹ì‹œ"
"오."
-#: src/libslic3r/PrintConfig.cpp:245
+#: src/libslic3r/PrintConfig.cpp:276
msgid "Enable auto cooling"
msgstr "ìžë™ ëƒ‰ê° ì‚¬ìš©"
-#: src/libslic3r/PrintConfig.cpp:246
+#: src/libslic3r/PrintConfig.cpp:277
msgid ""
"This flag enables the automatic cooling logic that adjusts print speed and "
"fan speed according to layer printing time."
@@ -4174,23 +4863,23 @@ msgstr ""
"ì´ í”Œëž˜ê·¸ëŠ” ë ˆì´ì–´ ì¸ì‡„ ì‹œê°„ì— ë”°ë¼ ì¸ì‡„ ì†ë„와 팬 ì†ë„를 ì¡°ì •í•˜ëŠ” ìžë™ ëƒ‰ê° "
"논리를 활성화합니다."
-#: src/libslic3r/PrintConfig.cpp:252
+#: src/libslic3r/PrintConfig.cpp:282
msgid "Cooling tube position"
msgstr "ëƒ‰ê° íŠœë¸Œ 위치"
-#: src/libslic3r/PrintConfig.cpp:253
+#: src/libslic3r/PrintConfig.cpp:283
msgid "Distance of the center-point of the cooling tube from the extruder tip "
msgstr "압출기 íŒì—서 ëƒ‰ê° íŠœë¸Œì˜ ì¤‘ì‹¬ì ê¹Œì§€ì˜ ê±°ë¦¬ "
-#: src/libslic3r/PrintConfig.cpp:261
+#: src/libslic3r/PrintConfig.cpp:290
msgid "Cooling tube length"
msgstr "ëƒ‰ê° íŠœë¸Œ 길ì´"
-#: src/libslic3r/PrintConfig.cpp:262
+#: src/libslic3r/PrintConfig.cpp:291
msgid "Length of the cooling tube to limit space for cooling moves inside it "
msgstr "ë‚´ë¶€ì˜ ëƒ‰ê° ì´ë™ì„ 위해 ê³µê°„ì„ ì œí•œí•˜ëŠ” ëƒ‰ê° íŠœë¸Œì˜ ê¸¸ì´ "
-#: src/libslic3r/PrintConfig.cpp:271
+#: src/libslic3r/PrintConfig.cpp:299
msgid ""
"This is the acceleration your printer will be reset to after the role-"
"specific acceleration values are used (perimeter/infill). Set zero to "
@@ -4199,11 +4888,11 @@ msgstr ""
"ì—í• ë³„ ê°€ì†ë„ ê°’ì´ ì‚¬ìš© ëœ í›„ì— í”„ë¦°í„°ê°€ ìž¬ì„¤ì •ë˜ëŠ” ì†ë„입니다 (ë‘˜ë ˆ / ì¶©"
"ì „). ê°€ì†ì„ ì „í˜€ ìž¬ì„¤ì •í•˜ì§€ ì•Šìœ¼ë ¤ë©´ 0으로 ì„¤ì •í•˜ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:281
+#: src/libslic3r/PrintConfig.cpp:308
msgid "Default filament profile"
msgstr "기본 í•„ë¼ë©˜íЏ 프로파ì¼"
-#: src/libslic3r/PrintConfig.cpp:282
+#: src/libslic3r/PrintConfig.cpp:309
msgid ""
"Default filament profile associated with the current printer profile. On "
"selection of the current printer profile, this filament profile will be "
@@ -4212,12 +4901,12 @@ msgstr ""
"현재 프린터 프로파ì¼ê³¼ ì—°ê´€ëœ ê¸°ë³¸ í•„ë¼ë©˜íЏ 프로파ì¼. 현재 프린터 프로파ì¼ì„ "
"ì„ íƒí•˜ë©´ ì´ í•„ë¼ë©˜íЏ 프로파ì¼ì´ 활성화ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:287
+#: src/libslic3r/PrintConfig.cpp:315
msgid "Default print profile"
msgstr "기본 ì¸ì‡„ 프로파ì¼"
-#: src/libslic3r/PrintConfig.cpp:288 src/libslic3r/PrintConfig.cpp:2469
-#: src/libslic3r/PrintConfig.cpp:2479
+#: src/libslic3r/PrintConfig.cpp:316 src/libslic3r/PrintConfig.cpp:2337
+#: src/libslic3r/PrintConfig.cpp:2348
msgid ""
"Default print profile associated with the current printer profile. On "
"selection of the current printer profile, this print profile will be "
@@ -4226,11 +4915,11 @@ msgstr ""
"현재 프린터 프로파ì¼ê³¼ ì—°ê´€ëœ ê¸°ë³¸ ì¸ì‡„ 프로파ì¼. 현재 프린터 프로파ì¼ì„ ì„ íƒ"
"í•˜ë©´ì´ ì¸ì‡„ 프로파ì¼ì´ 활성화ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:293
+#: src/libslic3r/PrintConfig.cpp:322
msgid "Disable fan for the first"
msgstr "첫 번째 팬 사용 중지"
-#: src/libslic3r/PrintConfig.cpp:294
+#: src/libslic3r/PrintConfig.cpp:323
msgid ""
"You can set this to a positive value to disable fan at all during the first "
"layers, so that it does not make adhesion worse."
@@ -4238,37 +4927,37 @@ msgstr ""
"ì´ ê°’ì„ ì–‘ìˆ˜ 값으로 ì„¤ì •í•˜ë©´ 첫 번째 ë ˆì´ì–´ì—서 íŒ¬ì„ ì‚¬ìš©í•˜ì§€ 않ë„ë¡ ì„¤ì •í•˜"
"ì—¬ ì ‘ì°©ë ¥ì„ ì•…í™”ì‹œí‚¤ì§€ 않습니다."
-#: src/libslic3r/PrintConfig.cpp:296 src/libslic3r/PrintConfig.cpp:952
-#: src/libslic3r/PrintConfig.cpp:1487 src/libslic3r/PrintConfig.cpp:1691
-#: src/libslic3r/PrintConfig.cpp:1757 src/libslic3r/PrintConfig.cpp:1935
-#: src/libslic3r/PrintConfig.cpp:1985
+#: src/libslic3r/PrintConfig.cpp:325 src/libslic3r/PrintConfig.cpp:945
+#: src/libslic3r/PrintConfig.cpp:1434 src/libslic3r/PrintConfig.cpp:1619
+#: src/libslic3r/PrintConfig.cpp:1680 src/libslic3r/PrintConfig.cpp:1843
+#: src/libslic3r/PrintConfig.cpp:1888
msgid "layers"
msgstr "ë ˆì´ì–´"
-#: src/libslic3r/PrintConfig.cpp:304
+#: src/libslic3r/PrintConfig.cpp:332
msgid "Don't support bridges"
msgstr "서í¬íŠ¸ì™€ 브릿지를 사용하지 마세요"
-#: src/libslic3r/PrintConfig.cpp:306
+#: src/libslic3r/PrintConfig.cpp:334
msgid ""
"Experimental option for preventing support material from being generated "
"under bridged areas."
msgstr ""
"브릿지 ì˜ì— ì•„ëž˜ì— ì„œí¬íŒ… 재료가 ìƒì„±ë˜ëŠ” ê²ƒì„ ë°©ì§€í•˜ê¸°ìœ„í•œ 실험ì 옵션."
-#: src/libslic3r/PrintConfig.cpp:313
+#: src/libslic3r/PrintConfig.cpp:340
msgid "Distance between copies"
msgstr "복사본 간 거리"
-#: src/libslic3r/PrintConfig.cpp:314
+#: src/libslic3r/PrintConfig.cpp:341
msgid "Distance used for the auto-arrange feature of the plater."
msgstr "플래터(plater)ì˜ ìžë™ ì •ë ¬ ê¸°ëŠ¥ì— ì‚¬ìš©ë˜ëŠ” 거리입니다."
-#: src/libslic3r/PrintConfig.cpp:322
+#: src/libslic3r/PrintConfig.cpp:348
msgid "Elephant foot compensation"
msgstr "ì½”ë¼ë¦¬ ë°œ(Elephant foot) ë³´ìƒê°’"
-#: src/libslic3r/PrintConfig.cpp:324
+#: src/libslic3r/PrintConfig.cpp:350
msgid ""
"The first layer will be shrunk in the XY plane by the configured value to "
"compensate for the 1st layer squish aka an Elephant Foot effect."
@@ -4276,7 +4965,7 @@ msgstr ""
"첫 번째 ë ˆì´ì–´ëŠ” 구성 요소 ê°’ì— ë”°ë¼ XY í‰ë©´ì—서 수축ë˜ì–´ ì¼ì¸µ 스 퀴시 ì½”ë¼ë¦¬"
"발(Elephant Foot) 효과를 보완합니다."
-#: src/libslic3r/PrintConfig.cpp:334
+#: src/libslic3r/PrintConfig.cpp:359
msgid ""
"This end procedure is inserted at the end of the output file. Note that you "
"can use placeholder variables for all Slic3r settings."
@@ -4284,7 +4973,7 @@ msgstr ""
"ì´ ì¢…ë£Œ ì ˆì°¨ëŠ” ì¶œë ¥ 파ì¼ì˜ ëì— ì‚½ìž…ëœë‹¤. ëª¨ë“ Slic3r ì„¤ì •ì— ìžë¦¬ í‘œì‹œìž ë³€ìˆ˜"
"를 ì‚¬ìš©í• ìˆ˜ 있다는 ì ì— ìœ ì˜í•˜ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:345
+#: src/libslic3r/PrintConfig.cpp:369
msgid ""
"This end procedure is inserted at the end of the output file, before the "
"printer end gcode. Note that you can use placeholder variables for all "
@@ -4295,11 +4984,11 @@ msgstr ""
"ì •ì— ìžë¦¬ í‘œì‹œìž ë³€ìˆ˜ë¥¼ ì‚¬ìš©í• ìˆ˜ 있다는 ì ì— ìœ ì˜í•˜ì‹ì‹œì˜¤. 여러 ê°œì˜ ì••ì¶œë¶€"
"ê°€ 있는 경우, ê·¸ 코드는 ì••ì¶œ 순서대로 처리ëœë‹¤."
-#: src/libslic3r/PrintConfig.cpp:356
+#: src/libslic3r/PrintConfig.cpp:379
msgid "Ensure vertical shell thickness"
msgstr "ìˆ˜ì§ ì‰˜(shell) ë‘께 확ì¸"
-#: src/libslic3r/PrintConfig.cpp:358
+#: src/libslic3r/PrintConfig.cpp:381
msgid ""
"Add solid infill near sloping surfaces to guarantee the vertical shell "
"thickness (top+bottom solid layers)."
@@ -4307,44 +4996,52 @@ msgstr ""
"경사 표면 ê·¼ì²˜ì— ì†”ë¦¬ë“œ ì¸í•„ì„ ì¶”ê°€í•˜ì—¬ ìˆ˜ì§ ì…¸ ë‘께(ìƒë‹¨+하단 솔리드 ë ˆì´ì–´)"
"를 보장하ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:365
-msgid "Top/bottom fill pattern"
-msgstr "ìƒë‹¨/하단 채우기(fill) 패턴"
-
-#: src/libslic3r/PrintConfig.cpp:367
-msgid ""
-"Fill pattern for top/bottom infill. This only affects the external visible "
-"layer, and not its adjacent solid shells."
+#: src/libslic3r/PrintConfig.cpp:387
+msgid "Top fill pattern"
msgstr ""
-"ìƒë‹¨/하단 ì£¼ìž…ì˜ ì±„ìš°ê¸° íŒ¨í„´ì€ ì¸ì ‘한 ì™¸ë¶€ë©´ì´ ì•„ë‹Œ 외부 솔리드 층ì—ë§Œ ì˜í–¥"
-"ì„ ë¯¸ì¹œë‹¤."
-#: src/libslic3r/PrintConfig.cpp:376 src/libslic3r/PrintConfig.cpp:800
-#: src/libslic3r/PrintConfig.cpp:2021
+#: src/libslic3r/PrintConfig.cpp:389
+msgid ""
+"Fill pattern for top infill. This only affects the top visible layer, and "
+"not its adjacent solid shells."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:397 src/libslic3r/PrintConfig.cpp:795
+#: src/libslic3r/PrintConfig.cpp:1921
msgid "Rectilinear"
msgstr "ì§ì„ ë©´(Rectilinear)"
-#: src/libslic3r/PrintConfig.cpp:377 src/libslic3r/PrintConfig.cpp:806
+#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:801
msgid "Concentric"
msgstr "ë™ì‹¬ì›(Concentric)"
-#: src/libslic3r/PrintConfig.cpp:378 src/libslic3r/PrintConfig.cpp:810
+#: src/libslic3r/PrintConfig.cpp:399 src/libslic3r/PrintConfig.cpp:805
msgid "Hilbert Curve"
msgstr "ížë²„트 ê³¡ì„ (Hilbert Curve)"
-#: src/libslic3r/PrintConfig.cpp:379 src/libslic3r/PrintConfig.cpp:811
+#: src/libslic3r/PrintConfig.cpp:400 src/libslic3r/PrintConfig.cpp:806
msgid "Archimedean Chords"
msgstr "아르키메ë°ìš°ìФ(Archimedean Chords)"
-#: src/libslic3r/PrintConfig.cpp:380 src/libslic3r/PrintConfig.cpp:812
+#: src/libslic3r/PrintConfig.cpp:401 src/libslic3r/PrintConfig.cpp:807
msgid "Octagram Spiral"
msgstr "옥타그램 ë‚˜ì„ (Octagram Spiral)"
-#: src/libslic3r/PrintConfig.cpp:386 src/libslic3r/PrintConfig.cpp:397
+#: src/libslic3r/PrintConfig.cpp:408
+msgid "Bottom fill pattern"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:409
+msgid ""
+"Fill pattern for bottom infill. This only affects the bottom external "
+"visible layer, and not its adjacent solid shells."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:414 src/libslic3r/PrintConfig.cpp:424
msgid "External perimeters"
msgstr "외측 ë‘˜ë ˆ"
-#: src/libslic3r/PrintConfig.cpp:388
+#: src/libslic3r/PrintConfig.cpp:416
msgid ""
"Set this to a non-zero value to set a manual extrusion width for external "
"perimeters. If left zero, default extrusion width will be used if set, "
@@ -4355,14 +5052,14 @@ msgstr ""
"오. 0ì¸ ê²½ìš° 기본 ì••ì¶œ 너비가 사용ë˜ë©°, ê·¸ë ‡ì§€ 않으면 1.125 x ë…¸ì¦ ì§ê²½ì´ 사"
"ìš©ëœë‹¤. 백분율(예: 200%)로 표현ë˜ëŠ” 경우, ë ˆì´ì–´ 높ì´ì— ê±¸ì³ ê³„ì‚°ëœë‹¤."
-#: src/libslic3r/PrintConfig.cpp:391 src/libslic3r/PrintConfig.cpp:841
-#: src/libslic3r/PrintConfig.cpp:975 src/libslic3r/PrintConfig.cpp:1408
-#: src/libslic3r/PrintConfig.cpp:1769 src/libslic3r/PrintConfig.cpp:1958
-#: src/libslic3r/PrintConfig.cpp:2129
+#: src/libslic3r/PrintConfig.cpp:419 src/libslic3r/PrintConfig.cpp:834
+#: src/libslic3r/PrintConfig.cpp:966 src/libslic3r/PrintConfig.cpp:1353
+#: src/libslic3r/PrintConfig.cpp:1691 src/libslic3r/PrintConfig.cpp:1864
+#: src/libslic3r/PrintConfig.cpp:2022
msgid "mm or % (leave 0 for default)"
msgstr "mm ë˜ëŠ” %(ê¸°ë³¸ê°’ì˜ ê²½ìš° 0으로 ìœ ì§€)"
-#: src/libslic3r/PrintConfig.cpp:399
+#: src/libslic3r/PrintConfig.cpp:426
msgid ""
"This separate setting will affect the speed of external perimeters (the "
"visible ones). If expressed as percentage (for example: 80%) it will be "
@@ -4372,17 +5069,17 @@ msgstr ""
"(예: 80%)로 표현ë˜ëŠ” 경우 ìœ„ì˜ Perimeter ì†ë„ ì„¤ì •ì— ë”°ë¼ ê³„ì‚°ëœë‹¤. ìžë™ì„ 위"
"í•´ 0으로 ì„¤ì •í•œë‹¤."
-#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:864
-#: src/libslic3r/PrintConfig.cpp:1725 src/libslic3r/PrintConfig.cpp:1780
-#: src/libslic3r/PrintConfig.cpp:2006 src/libslic3r/PrintConfig.cpp:2142
+#: src/libslic3r/PrintConfig.cpp:429 src/libslic3r/PrintConfig.cpp:855
+#: src/libslic3r/PrintConfig.cpp:1650 src/libslic3r/PrintConfig.cpp:1701
+#: src/libslic3r/PrintConfig.cpp:1907 src/libslic3r/PrintConfig.cpp:2034
msgid "mm/s or %"
msgstr "mm/s ë˜ëŠ” %"
-#: src/libslic3r/PrintConfig.cpp:409
+#: src/libslic3r/PrintConfig.cpp:436
msgid "External perimeters first"
msgstr "외부 ê²½ê³„ì„ ë¨¼ì €"
-#: src/libslic3r/PrintConfig.cpp:411
+#: src/libslic3r/PrintConfig.cpp:438
msgid ""
"Print contour perimeters from the outermost one to the innermost one instead "
"of the default inverse order."
@@ -4390,11 +5087,11 @@ msgstr ""
"기본 ì—순 ëŒ€ì‹ ê°€ìž¥ 바깥쪽부터 가장 안쪽까지 ìœ¤ê³½ì„ ì„ ì¸ì‡„하ì‹ì‹œì˜¤. 타겟 TTS"
"ë³µì‚¬í•˜ê¸°ë²ˆì— ì €ìž¥ë²ˆì— ì €ìž¥ë²ˆì— ìˆ˜ì •."
-#: src/libslic3r/PrintConfig.cpp:418
+#: src/libslic3r/PrintConfig.cpp:444
msgid "Extra perimeters if needed"
msgstr "필요한 경우 추가 ë‘˜ë ˆ"
-#: src/libslic3r/PrintConfig.cpp:420
+#: src/libslic3r/PrintConfig.cpp:446
#, no-c-format
msgid ""
"Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r "
@@ -4404,7 +5101,7 @@ msgstr ""
"경사 ë²½ì˜ í‹ˆì„ í”¼í•˜ê¸° 위해 필요한 경우 ë” ë§Žì€ perimeter를 추가하ì‹ì‹œì˜¤. 위"
"ì˜ ë£¨í”„ì˜ 70% ì´ìƒì´ 지지ë 때까지 Slic3r는 계ì†í•´ì„œ perimeter를 추가한다."
-#: src/libslic3r/PrintConfig.cpp:431
+#: src/libslic3r/PrintConfig.cpp:456
msgid ""
"The extruder to use (unless more specific extruder settings are specified). "
"This value overrides perimeter and infill extruders, but not the support "
@@ -4413,7 +5110,7 @@ msgstr ""
"ì‚¬ìš©í• ì••ì¶œë¶€(ë” êµ¬ì²´ì ì¸ ì••ì¶œë¶€ ì„¤ì •ì´ ì§€ì •ë˜ì§€ ì•Šì€ ê²½ìš°) ì´ ê°’ì€ ê²½ê³„ ë° "
"압출부를 초과하지만 ì§€ì› ì••ì¶œìžë¥¼ 주입하지는 않는다."
-#: src/libslic3r/PrintConfig.cpp:444
+#: src/libslic3r/PrintConfig.cpp:468
msgid ""
"Set this to the vertical distance between your nozzle tip and (usually) the "
"X carriage rods. In other words, this is the height of the clearance "
@@ -4424,11 +5121,11 @@ msgstr ""
"다시 ë§í•˜ë©´, ì´ê²ƒì€ ë‹¹ì‹ ì˜ ì••ì¶œê¸° ì£¼ìœ„ì˜ í‹ˆìƒˆ 실린ë”ì˜ ë†’ì´ì´ë©°, ê·¸ê²ƒì€ ë‹¤ë¥¸ "
"ì¸ì‡„ëœ ë¬¼ì²´ì™€ ì¶©ëŒí•˜ê¸° ì „ì— ì••ì¶œê¸°ê°€ ì—¿ë³¼ 수 있는 최대 깊ì´ë¥¼ 나타낸다."
-#: src/libslic3r/PrintConfig.cpp:455
+#: src/libslic3r/PrintConfig.cpp:478
msgid "Radius"
msgstr "반지름"
-#: src/libslic3r/PrintConfig.cpp:456
+#: src/libslic3r/PrintConfig.cpp:479
msgid ""
"Set this to the clearance radius around your extruder. If the extruder is "
"not centered, choose the largest value for safety. This setting is used to "
@@ -4438,19 +5135,19 @@ msgstr ""
"으면 ì•ˆì „ì„ ìœ„í•´ 가장 í° ê°’ì„ ì„ íƒí•˜ì‹ì‹œì˜¤. ì´ ì„¤ì •ì€ ì¶©ëŒ ì—¬ë¶€ë¥¼ 확ì¸í•˜ê³ 플"
"ëž˜í„°ì— ê·¸ëž˜í”½ 미리 보기를 표시하기 위해 사용ëœë‹¤."
-#: src/libslic3r/PrintConfig.cpp:467
+#: src/libslic3r/PrintConfig.cpp:489
msgid "Extruder Color"
msgstr "ìµìŠ¤íŠ¸ë£¨ë” ì»¬ëŸ¬"
-#: src/libslic3r/PrintConfig.cpp:468 src/libslic3r/PrintConfig.cpp:535
+#: src/libslic3r/PrintConfig.cpp:490 src/libslic3r/PrintConfig.cpp:550
msgid "This is only used in the Slic3r interface as a visual help."
msgstr "ì´ê²ƒì€ 시ê°ì ë„움ë§ë¡œ Slic3r ì¸í„°íŽ˜ì´ìФì—서만 사용ëœë‹¤."
-#: src/libslic3r/PrintConfig.cpp:475
+#: src/libslic3r/PrintConfig.cpp:496
msgid "Extruder offset"
msgstr "ìµìŠ¤íŠ¸ë£¨ë” ì˜¤í”„ì…‹"
-#: src/libslic3r/PrintConfig.cpp:476
+#: src/libslic3r/PrintConfig.cpp:497
msgid ""
"If your firmware doesn't handle the extruder displacement you need the G-"
"code to take it into account. This option lets you specify the displacement "
@@ -4461,11 +5158,11 @@ msgstr ""
"ì„ ì‚¬ìš©í•˜ë©´ 첫 번째 ê²ƒì— ëŒ€í•œ ê° ì••ì¶œê¸°ì˜ ë³€ìœ„ë¥¼ ì§€ì •í• ìˆ˜ 있습니다. ì–‘ì˜ ì¢Œ"
"표가 필요합니다 (XY 좌표ì—서 ëºë‹ˆë‹¤)."
-#: src/libslic3r/PrintConfig.cpp:486
+#: src/libslic3r/PrintConfig.cpp:506
msgid "Extrusion axis"
msgstr "압출 축"
-#: src/libslic3r/PrintConfig.cpp:487
+#: src/libslic3r/PrintConfig.cpp:507
msgid ""
"Use this option to set the axis letter associated to your printer's extruder "
"(usually E but some printers use A)."
@@ -4473,11 +5170,11 @@ msgstr ""
"ì´ ì˜µì…˜ì„ ì‚¬ìš©í•˜ì—¬ í”„ë¦°í„°ì˜ ì••ì¶œê¸°ì— ì—°ê²°ëœ ì¶• 문ìžë¥¼ ì„¤ì •í•©ë‹ˆë‹¤ (보통 Eì´ì§€"
"ë§Œ ì¼ë¶€ 프린터는 A를 사용합니다)."
-#: src/libslic3r/PrintConfig.cpp:493
+#: src/libslic3r/PrintConfig.cpp:512
msgid "Extrusion multiplier"
msgstr "압출 승수"
-#: src/libslic3r/PrintConfig.cpp:494
+#: src/libslic3r/PrintConfig.cpp:513
msgid ""
"This factor changes the amount of flow proportionally. You may need to tweak "
"this setting to get nice surface finish and correct single wall widths. "
@@ -4489,11 +5186,11 @@ msgstr ""
"ì´ìž…니다. ì´ ê°’ì„ ë” ë³€ê²½í•´ì•¼í•œë‹¤ê³ íŒë‹¨ë˜ë©´ í•„ë¼ë©˜íЏ ì§ê²½ê³¼ 펌웨어 E 단계를 "
"확ì¸í•˜ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:503
+#: src/libslic3r/PrintConfig.cpp:521
msgid "Default extrusion width"
msgstr "기본 ì••ì¶œ í"
-#: src/libslic3r/PrintConfig.cpp:505
+#: src/libslic3r/PrintConfig.cpp:523
msgid ""
"Set this to a non-zero value to allow a manual extrusion width. If left to "
"zero, Slic3r derives extrusion widths from the nozzle diameter (see the "
@@ -4506,15 +5203,15 @@ msgstr ""
"ì˜ íˆ´íŒ ì°¸ì¡°). 백분율로 표시ë˜ëŠ” 경우 (예 : 230 %) ë ˆì´ì–´ 높ì´ë¥¼ 기준으로 계"
"ì‚°ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:509
+#: src/libslic3r/PrintConfig.cpp:527
msgid "mm or % (leave 0 for auto)"
msgstr "mm ë˜ëŠ” % (ìžë™ìœ¼ë¡œ 0ì„ ìœ ì§€)"
-#: src/libslic3r/PrintConfig.cpp:515
+#: src/libslic3r/PrintConfig.cpp:532
msgid "Keep fan always on"
msgstr "í•ìƒ íŒ¬ 켜기"
-#: src/libslic3r/PrintConfig.cpp:516
+#: src/libslic3r/PrintConfig.cpp:533
msgid ""
"If this is enabled, fan will never be disabled and will be kept running at "
"least at its minimum speed. Useful for PLA, harmful for ABS."
@@ -4522,11 +5219,11 @@ msgstr ""
"ì´ ê¸°ëŠ¥ì„ ì‚¬ìš©í•˜ë©´ íŒ¬ì´ ë¹„í™œì„±í™”ë˜ì§€ 않으며 최소한 최소 ì†ë„로 ê³„ì† íšŒì „í•©ë‹ˆ"
"다. PLAì— ìœ ìš©í•˜ë©° ABSì— í•´ë¡ë‹¤."
-#: src/libslic3r/PrintConfig.cpp:522
+#: src/libslic3r/PrintConfig.cpp:538
msgid "Enable fan if layer print time is below"
msgstr "ë ˆì´ì–´ ì¸ì‡„ ì‹œê°„ì´ ë¯¸ë§Œì¸ ê²½ìš° 팬 활성화"
-#: src/libslic3r/PrintConfig.cpp:523
+#: src/libslic3r/PrintConfig.cpp:539
msgid ""
"If layer print time is estimated below this number of seconds, fan will be "
"enabled and its speed will be calculated by interpolating the minimum and "
@@ -4535,27 +5232,27 @@ msgstr ""
"ë ˆì´ì–´ ì¸ì‡„ 시간ì´ì´ ì´ˆ 미만으로 예ìƒë˜ëŠ” 경우 íŒ¬ì´ í™œì„±í™”ë˜ê³ ì†ë„는 최소 "
"ë° ìµœëŒ€ ì†ë„를 보간하여 계산ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:525 src/libslic3r/PrintConfig.cpp:1711
+#: src/libslic3r/PrintConfig.cpp:541 src/libslic3r/PrintConfig.cpp:1637
msgid "approximate seconds"
msgstr "근사치 초"
-#: src/libslic3r/PrintConfig.cpp:534
+#: src/libslic3r/PrintConfig.cpp:549
msgid "Color"
msgstr "색ìƒ"
-#: src/libslic3r/PrintConfig.cpp:541
+#: src/libslic3r/PrintConfig.cpp:555
msgid "Filament notes"
msgstr "í•„ë¼ë©˜íЏ 메모"
-#: src/libslic3r/PrintConfig.cpp:542
+#: src/libslic3r/PrintConfig.cpp:556
msgid "You can put your notes regarding the filament here."
msgstr "ì—¬ê¸°ì— í•„ë¼ë©˜íŠ¸ì— ê´€í•œ 메모를 ë„£ì„ ìˆ˜ 있다."
-#: src/libslic3r/PrintConfig.cpp:551 src/libslic3r/PrintConfig.cpp:1196
+#: src/libslic3r/PrintConfig.cpp:564 src/libslic3r/PrintConfig.cpp:1181
msgid "Max volumetric speed"
msgstr "최대 ì²´ì ì†ë„"
-#: src/libslic3r/PrintConfig.cpp:552
+#: src/libslic3r/PrintConfig.cpp:565
msgid ""
"Maximum volumetric speed allowed for this filament. Limits the maximum "
"volumetric speed of a print to the minimum of print and filament volumetric "
@@ -4564,31 +5261,31 @@ msgstr ""
"ì´ í•„ë¼ë©˜íŠ¸ì— í—ˆìš©ë˜ëŠ” 최대 ì²´ì ì†ë„. ì¸ì‡„ë¬¼ì˜ ìµœëŒ€ ì²´ì ì†ë„를 ì¸ì‡„ ë° í•„ë¼"
"멘트 ì²´ì ì†ë„ 최소로 ì œí•œí•œë‹¤. ì œí•œ ì—†ìŒì— 대해 0으로 ì„¤ì •í•˜ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:555 src/libslic3r/PrintConfig.cpp:1199
+#: src/libslic3r/PrintConfig.cpp:568 src/libslic3r/PrintConfig.cpp:1184
msgid "mm³/s"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:562
+#: src/libslic3r/PrintConfig.cpp:574
msgid "Loading speed"
msgstr "로딩 ì†ë„"
-#: src/libslic3r/PrintConfig.cpp:563
+#: src/libslic3r/PrintConfig.cpp:575
msgid "Speed used for loading the filament on the wipe tower. "
msgstr "와ì´í¼ 탑(wipe)ì— í•„ë¼ë©˜íŠ¸ë¥¼ 장착하는 ë° ì‚¬ìš©ë˜ëŠ” ì†ë„. "
-#: src/libslic3r/PrintConfig.cpp:571
+#: src/libslic3r/PrintConfig.cpp:582
msgid "Loading speed at the start"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:572
+#: src/libslic3r/PrintConfig.cpp:583
msgid "Speed used at the very beginning of loading phase. "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:580
+#: src/libslic3r/PrintConfig.cpp:590
msgid "Unloading speed"
msgstr "언로딩 스피드"
-#: src/libslic3r/PrintConfig.cpp:581
+#: src/libslic3r/PrintConfig.cpp:591
msgid ""
"Speed used for unloading the filament on the wipe tower (does not affect "
"initial part of unloading just after ramming). "
@@ -4596,20 +5293,20 @@ msgstr ""
"와ì´í¼ 타워ì—서 í•„ë¼ë©˜íŠ¸ë¥¼ 언로드하는 ë° ì‚¬ìš©ë˜ëŠ” ì†ë„(램핑 후 바로 ì–¸ë¡œë”©ì˜ "
"초기 부분ì—는 ì˜í–¥ì„ 주지 않ìŒ). "
-#: src/libslic3r/PrintConfig.cpp:590
+#: src/libslic3r/PrintConfig.cpp:599
msgid "Unloading speed at the start"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:591
+#: src/libslic3r/PrintConfig.cpp:600
msgid ""
"Speed used for unloading the tip of the filament immediately after ramming. "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:599
+#: src/libslic3r/PrintConfig.cpp:607
msgid "Delay after unloading"
msgstr "언로드 후 ë”œë ˆì´"
-#: src/libslic3r/PrintConfig.cpp:600
+#: src/libslic3r/PrintConfig.cpp:608
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 "
@@ -4618,30 +5315,30 @@ msgstr ""
"í•„ë¼ë©˜íŠ¸ë¥¼ 내린 후 기다리는 시간. ì›ëž˜ 치수로 축소하는 ë° ë” ë§Žì€ ì‹œê°„ì´ í•„ìš”"
"í• ìˆ˜ìžˆëŠ” ìœ ì—°í•œ 재료로 ì‹ ë¢°í• ìˆ˜ìžˆëŠ” 공구 êµí™˜ì„ ì–»ì„ ìˆ˜ 있습니다. "
-#: src/libslic3r/PrintConfig.cpp:610
+#: src/libslic3r/PrintConfig.cpp:617
msgid "Number of cooling moves"
msgstr "ì¿¨ë§ ì´ë™ 숫ìž"
-#: src/libslic3r/PrintConfig.cpp:611
+#: src/libslic3r/PrintConfig.cpp:618
msgid ""
"Filament is cooled by being moved back and forth in the cooling tubes. "
"Specify desired number of these moves "
msgstr ""
"í•„ë¼ë©˜íŠ¸ëŠ” ëƒ‰ê° íŠœë¸Œì—서 앞뒤로 움ì§ì—¬ 냉ê°ë©ë‹ˆë‹¤. ì›í•˜ëŠ” ì´ë™ ìˆ«ìž ì§€ì • "
-#: src/libslic3r/PrintConfig.cpp:620
+#: src/libslic3r/PrintConfig.cpp:626
msgid "Speed of the first cooling move"
msgstr "첫 번째 ëƒ‰ê° ì´ë™ ì†ë„"
-#: src/libslic3r/PrintConfig.cpp:621
+#: src/libslic3r/PrintConfig.cpp:627
msgid "Cooling moves are gradually accelerating beginning at this speed. "
msgstr "ëƒ‰ê° ì†ë„ê°€ 서서히 빨ë¼ì§€ê³ 있습니다. "
-#: src/libslic3r/PrintConfig.cpp:629
+#: src/libslic3r/PrintConfig.cpp:634
msgid "Minimal purge on wipe tower"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:630
+#: src/libslic3r/PrintConfig.cpp:635
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 "
@@ -4650,45 +5347,45 @@ msgid ""
"to produce successive infill or sacrificial object extrusions reliably."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:635
+#: src/libslic3r/PrintConfig.cpp:639
msgid "mm³"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:641
+#: src/libslic3r/PrintConfig.cpp:645
msgid "Speed of the last cooling move"
msgstr "마지막 ëƒ‰ê° ì´ë™ ì†ë„"
-#: src/libslic3r/PrintConfig.cpp:642
+#: src/libslic3r/PrintConfig.cpp:646
msgid "Cooling moves are gradually accelerating towards this speed. "
msgstr "냉ê°ì€ ì´ ì†ë„쪽으로 ì ì°¨ ê°€ì†í™”ë˜ê³ 있습니다. "
-#: src/libslic3r/PrintConfig.cpp:650
+#: src/libslic3r/PrintConfig.cpp:653
msgid "Filament load time"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:651
+#: src/libslic3r/PrintConfig.cpp:654
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 ""
-#: src/libslic3r/PrintConfig.cpp:659
+#: src/libslic3r/PrintConfig.cpp:661
msgid "Ramming parameters"
msgstr "ëž˜ë° íŒŒë¼ë¯¸í„°"
-#: src/libslic3r/PrintConfig.cpp:660
+#: src/libslic3r/PrintConfig.cpp:662
msgid ""
"This string is edited by RammingDialog and contains ramming specific "
"parameters "
msgstr ""
"ì´ ë¬¸ìžì—´ì€ RammingDialogì— ì˜í•´ 편집ë˜ê³ ëž¨ë° íŠ¹ì • 매개 변수를 í¬í•¨í•©ë‹ˆë‹¤ "
-#: src/libslic3r/PrintConfig.cpp:667
+#: src/libslic3r/PrintConfig.cpp:668
msgid "Filament unload time"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:668
+#: src/libslic3r/PrintConfig.cpp:669
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 "
@@ -4704,11 +5401,11 @@ msgstr ""
"ì—¬ê¸°ì— í•„ë¼ë©˜íЏ ì§ê²½ì„ ìž…ë ¥í•˜ì‹ì‹œì˜¤. ì •ë°€ë„ê°€ 필요하므로 캘리í¼ë¥¼ 사용하여 í•„"
"ë¼ë©˜íŠ¸ë¥¼ ë”°ë¼ ì—¬ëŸ¬ 번 ì¸¡ì • 한 ë‹¤ìŒ í‰ê· ì„ ê³„ì‚°í•˜ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:685
+#: src/libslic3r/PrintConfig.cpp:684
msgid "Density"
msgstr "ë°€ë„"
-#: src/libslic3r/PrintConfig.cpp:686
+#: src/libslic3r/PrintConfig.cpp:685
msgid ""
"Enter your filament density here. This is only for statistical information. "
"A decent way is to weigh a known length of filament and compute the ratio of "
@@ -4719,41 +5416,41 @@ msgstr ""
"ì€ ì•Œë ¤ì§„ 길ì´ì˜ í•„ë¼ë©˜íŠ¸ì˜ ë¬´ê²Œë¥¼ ì¸¡ì •í•˜ê³ ê¸¸ì´ì™€ ë³¼ë¥¨ì˜ ë¹„ìœ¨ì„ ê³„ì‚°í•˜ëŠ” 것"
"입니다. 변위를 통해 ì§ì ‘ì 으로 부피를 계산하는 ê²ƒì´ ë” ì¢‹ìŠµë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:689
+#: src/libslic3r/PrintConfig.cpp:688
msgid "g/cm³"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:695
+#: src/libslic3r/PrintConfig.cpp:693
msgid "Filament type"
msgstr "í•„ë¼ë©˜íЏ 타입"
-#: src/libslic3r/PrintConfig.cpp:696
+#: src/libslic3r/PrintConfig.cpp:694
msgid "The filament material type for use in custom G-codes."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:712
+#: src/libslic3r/PrintConfig.cpp:710
msgid "Soluble material"
msgstr "수용성 재료"
-#: src/libslic3r/PrintConfig.cpp:713
+#: src/libslic3r/PrintConfig.cpp:711
msgid "Soluble material is most likely used for a soluble support."
msgstr "수용성 재료눈 ë¬¼ì— ë…¹ëŠ” 서í¬íŠ¸ì— ê°€ìž¥ ë§Žì´ ì‚¬ìš©ëœë‹¤."
-#: src/libslic3r/PrintConfig.cpp:719
+#: src/libslic3r/PrintConfig.cpp:717
msgid ""
"Enter your filament cost per kg here. This is only for statistical "
"information."
msgstr "kg 당 í•„ë¼ë©˜íЏ ë¹„ìš©ì„ ì—¬ê¸°ì— ìž…ë ¥í•˜ì‹ì‹œì˜¤. 통계를 내기 위해서 입니다."
-#: src/libslic3r/PrintConfig.cpp:720
+#: src/libslic3r/PrintConfig.cpp:718
msgid "money/kg"
msgstr "ì›(\\)/kg"
-#: src/libslic3r/PrintConfig.cpp:729
+#: src/libslic3r/PrintConfig.cpp:727
msgid "Fill angle"
msgstr "채움 ê°ë„"
-#: src/libslic3r/PrintConfig.cpp:731
+#: src/libslic3r/PrintConfig.cpp:729
msgid ""
"Default base angle for infill orientation. Cross-hatching will be applied to "
"this. Bridges will be infilled using the best direction Slic3r can detect, "
@@ -4763,60 +5460,60 @@ msgstr ""
"ì§€ í• ìˆ˜ìžˆëŠ” 최ìƒì˜ ë°©í–¥ì„ ì‚¬ìš©í•˜ì—¬ ë¸Œë¦¿ì§•ì´ ì±„ì›Œì§€ë¯€ë¡œì´ ì„¤ì •ì€ ì˜í–¥ì„ 미치"
"지 않습니다."
-#: src/libslic3r/PrintConfig.cpp:744
+#: src/libslic3r/PrintConfig.cpp:741
msgid "Fill density"
msgstr "채우기(fill) ë°€ë„"
-#: src/libslic3r/PrintConfig.cpp:746
+#: src/libslic3r/PrintConfig.cpp:743
msgid "Density of internal infill, expressed in the range 0% - 100%."
msgstr "0 % - 100 % 범위로 표현 ëœ ë‚´ë¶€ 채움(infill)ì˜ ë°€ë„."
-#: src/libslic3r/PrintConfig.cpp:782
+#: src/libslic3r/PrintConfig.cpp:778
msgid "Fill pattern"
msgstr "채우기(fill) 패턴"
-#: src/libslic3r/PrintConfig.cpp:784
+#: src/libslic3r/PrintConfig.cpp:780
msgid "Fill pattern for general low-density infill."
msgstr "ì¼ë°˜ ë‚®ì€ ë°€ë„ ì±„ì›€ì˜ íŒ¨í„´."
-#: src/libslic3r/PrintConfig.cpp:801
+#: src/libslic3r/PrintConfig.cpp:796
msgid "Grid"
msgstr "그리드(Grid)"
-#: src/libslic3r/PrintConfig.cpp:802
+#: src/libslic3r/PrintConfig.cpp:797
msgid "Triangles"
msgstr "삼ê°í˜•(Triangles)"
-#: src/libslic3r/PrintConfig.cpp:803
+#: src/libslic3r/PrintConfig.cpp:798
msgid "Stars"
msgstr "별(Stars)"
-#: src/libslic3r/PrintConfig.cpp:804
+#: src/libslic3r/PrintConfig.cpp:799
msgid "Cubic"
msgstr "íë¹…"
-#: src/libslic3r/PrintConfig.cpp:805
+#: src/libslic3r/PrintConfig.cpp:800
msgid "Line"
msgstr "ì„ (Line)"
-#: src/libslic3r/PrintConfig.cpp:807 src/libslic3r/PrintConfig.cpp:2023
+#: src/libslic3r/PrintConfig.cpp:802 src/libslic3r/PrintConfig.cpp:1923
msgid "Honeycomb"
msgstr "벌집"
-#: src/libslic3r/PrintConfig.cpp:808
+#: src/libslic3r/PrintConfig.cpp:803
msgid "3D Honeycomb"
msgstr "3D 벌집"
-#: src/libslic3r/PrintConfig.cpp:809
+#: src/libslic3r/PrintConfig.cpp:804
msgid "Gyroid"
msgstr "ìžì´ë¡œì´ë“œ(Gyroid)"
-#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:826
-#: src/libslic3r/PrintConfig.cpp:835 src/libslic3r/PrintConfig.cpp:871
+#: src/libslic3r/PrintConfig.cpp:811 src/libslic3r/PrintConfig.cpp:820
+#: src/libslic3r/PrintConfig.cpp:828 src/libslic3r/PrintConfig.cpp:861
msgid "First layer"
msgstr "첫 ë ˆì´ì–´"
-#: src/libslic3r/PrintConfig.cpp:817
+#: src/libslic3r/PrintConfig.cpp:812
msgid ""
"This is the acceleration your printer will use for first layer. Set zero to "
"disable acceleration control for first layer."
@@ -4824,7 +5521,7 @@ msgstr ""
"ì´ê²ƒì€ 프린터가 첫 번째 ë ˆì´ì–´ì— ì‚¬ìš©í• ê°€ì†ë„입니다. 0ì„ ì„¤ì •í•˜ë©´ 첫 번째 ë ˆ"
"ì´ì–´ì— 대한 ê°€ì† ì œì–´ê°€ 사용ë˜ì§€ 않습니다."
-#: src/libslic3r/PrintConfig.cpp:827
+#: src/libslic3r/PrintConfig.cpp:821
msgid ""
"Heated build plate temperature for the first layer. Set this to zero to "
"disable bed temperature control commands in the output."
@@ -4832,7 +5529,7 @@ msgstr ""
"첫 번째 ë ˆì´ì–´ì— 대한 빌드 í”Œë ˆì´íЏ 온ë„를 가열. ì´ ê°’ì„ 0으로 ì„¤ì •í•˜ë©´ ì¶œë ¥"
"ì—서 â€‹â€‹ë² ë“œ ì˜¨ë„ ì œì–´ ëª…ë ¹ì„ ë¹„í™œì„±í™”í•©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:837
+#: src/libslic3r/PrintConfig.cpp:830
msgid ""
"Set this to a non-zero value to set a manual extrusion width for first "
"layer. You can use this to force fatter extrudates for better adhesion. If "
@@ -4844,11 +5541,11 @@ msgstr ""
"수 있습니다. 백분율 (예 : 120 %)로 표현하면 첫 번째 ë ˆì´ì–´ 높ì´ë¥¼ 기준으로 계"
"ì‚°ë©ë‹ˆë‹¤. 0으로 ì„¤ì •í•˜ë©´ 기본 ì••ì¶œ íì´ ì‚¬ìš©ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:848
+#: src/libslic3r/PrintConfig.cpp:840
msgid "First layer height"
msgstr "첫 ë ˆì´ì–´ 높ì´"
-#: src/libslic3r/PrintConfig.cpp:850
+#: src/libslic3r/PrintConfig.cpp:842
msgid ""
"When printing with very low layer heights, you might still want to print a "
"thicker bottom layer to improve adhesion and tolerance for non perfect build "
@@ -4860,16 +5557,16 @@ msgstr ""
"다. ì´ê²ƒì€ ì ˆëŒ€ê°’ ë˜ëŠ” 기본 계층 높ì´ì— 대한 백분율(예: 150%)로 í‘œì‹œí• ìˆ˜ 있"
"다."
-#: src/libslic3r/PrintConfig.cpp:854 src/libslic3r/PrintConfig.cpp:1003
-#: src/libslic3r/PrintConfig.cpp:1884
+#: src/libslic3r/PrintConfig.cpp:846 src/libslic3r/PrintConfig.cpp:991
+#: src/libslic3r/PrintConfig.cpp:1796
msgid "mm or %"
msgstr "mm/s ë˜ëŠ” %"
-#: src/libslic3r/PrintConfig.cpp:860
+#: src/libslic3r/PrintConfig.cpp:851
msgid "First layer speed"
msgstr "첫 ë ˆì´ì–´ ì†ë„"
-#: src/libslic3r/PrintConfig.cpp:861
+#: src/libslic3r/PrintConfig.cpp:852
msgid ""
"If expressed as absolute value in mm/s, this speed will be applied to all "
"the print moves of the first layer, regardless of their type. If expressed "
@@ -4879,7 +5576,7 @@ msgstr ""
"ì¸ì‡„ ì´ë™ì— ì ìš©ëœë‹¤. 백분율(예: 40%)로 표현ë˜ëŠ” 경우 기본 ì†ë„를 스케ì¼ë§í•œ"
"다."
-#: src/libslic3r/PrintConfig.cpp:872
+#: src/libslic3r/PrintConfig.cpp:862
msgid ""
"Extruder temperature for first layer. If you want to control temperature "
"manually during print, set this to zero to disable temperature control "
@@ -4888,7 +5585,7 @@ msgstr ""
"첫 번째 ì¸µì˜ ì™¸ë¶€ 온ë„. ì¸ì‡„ ì¤‘ì— ì˜¨ë„를 수ë™ìœ¼ë¡œ ì œì–´í•˜ë ¤ë©´ ì¶œë ¥ 파ì¼ì—서 온"
"ë„ ì œì–´ ëª…ë ¹ì„ ì‚¬ìš©í•˜ì§€ ì•Šìœ¼ë ¤ë©´ ì´ ê°’ì„ 0으로 ì„¤ì •í•˜ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:882
+#: src/libslic3r/PrintConfig.cpp:871
msgid ""
"Speed for filling small gaps using short zigzag moves. Keep this reasonably "
"low to avoid too much shaking and resonance issues. Set zero to disable gaps "
@@ -4898,11 +5595,11 @@ msgstr ""
"기 위해 ì´ê²ƒì„ 합리ì 으로 낮게 ìœ ì§€í•œë‹¤. 간격 채우기를 사용하지 ì•Šìœ¼ë ¤ë©´ 0ì„ "
"ì„¤ì •í•˜ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:890
+#: src/libslic3r/PrintConfig.cpp:879
msgid "Verbose G-code"
msgstr "세부 G-코드"
-#: src/libslic3r/PrintConfig.cpp:891
+#: src/libslic3r/PrintConfig.cpp:880
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 "
@@ -4912,11 +5609,11 @@ msgstr ""
"ì„ ì„ íƒí•˜ì‹ì‹œì˜¤. ë§Œì¼ ë‹¹ì‹ ì´ SD카드로 ì¸ì‡„한다면, 파ì¼ì˜ 추가 무게로 ì¸í•´ 펌"
"ì›¨ì–´ì˜ ì†ë„ê°€ ëŠë ¤ì§ˆ 수 있다."
-#: src/libslic3r/PrintConfig.cpp:899
+#: src/libslic3r/PrintConfig.cpp:887
msgid "G-code flavor"
msgstr "G-code 형ì‹"
-#: src/libslic3r/PrintConfig.cpp:900
+#: src/libslic3r/PrintConfig.cpp:888
msgid ""
"Some G/M-code commands, including temperature control and others, are not "
"universal. Set this option to your printer's firmware to get a compatible "
@@ -4927,22 +5624,22 @@ msgstr ""
"ì–»ìœ¼ë ¤ë©´ ì´ ì˜µì…˜ì„ í”„ë¦°í„°ì˜ íŽŒì›¨ì–´ë¡œ ì„¤ì •í•˜ì‹ì‹œì˜¤. \"ì••ì¶œ ì—†ìŒ\" 형ì‹ì€ "
"Slic3rê°€ ì–´ë– í•œ ì••ì¶œ ê°’ë„ ì¶œë ¥í•˜ì§€ 못하게 한다."
-#: src/libslic3r/PrintConfig.cpp:924
+#: src/libslic3r/PrintConfig.cpp:911
msgid "No extrusion"
msgstr "ì••ì¶œ ì—†ìŒ"
-#: src/libslic3r/PrintConfig.cpp:929
+#: src/libslic3r/PrintConfig.cpp:924
msgid "High extruder current on filament swap"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:930
+#: src/libslic3r/PrintConfig.cpp:925
msgid ""
"It may be beneficial to increase the extruder motor current during the "
"filament exchange sequence to allow for rapid ramming feed rates and to "
"overcome resistance when loading a filament with an ugly shaped tip."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:939
+#: src/libslic3r/PrintConfig.cpp:933
msgid ""
"This is the acceleration your printer will use for infill. Set zero to "
"disable acceleration control for infill."
@@ -4950,11 +5647,11 @@ msgstr ""
"ì´ê²ƒì€ ë‹¹ì‹ í”„ë¦°í„°ì˜ ì±„ì›€ ê°€ì†ë ¥ì´ë‹¤. ì£¼ìž…ì— ëŒ€í•œ ê°€ì† ì œì–´ë¥¼ ë¹„í™œì„±í™”í•˜ë ¤ë©´ "
"0ì„ ì„¤ì •í•˜ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:948
+#: src/libslic3r/PrintConfig.cpp:941
msgid "Combine infill every"
msgstr "ë‹¤ìŒ ì‹œê°„ë§ˆë‹¤ ê²°í•©"
-#: src/libslic3r/PrintConfig.cpp:950
+#: src/libslic3r/PrintConfig.cpp:943
msgid ""
"This feature allows to combine infill and speed up your print by extruding "
"thicker infill layers while preserving thin perimeters, thus accuracy."
@@ -4962,19 +5659,19 @@ msgstr ""
"ì´ ê¸°ëŠ¥ì€ ì¸í•„ì„ ê²°í•©í•˜ê³ ì–‡ì€ ì£¼ë³€ê¸°ê¸°ë¥¼ 보존하면서 ë‘꺼운 ì¸í•„ ì¸µì„ ì••ì¶œí•˜"
"ì—¬ ì¸ì‡„ ì†ë„를 ë†’ì¼ ìˆ˜ 있ë„ë¡ í•˜ì—¬ ì •í™•ë„를 높ì¸ë‹¤."
-#: src/libslic3r/PrintConfig.cpp:954
+#: src/libslic3r/PrintConfig.cpp:946
msgid "Combine infill every n layers"
msgstr "ëª¨ë“ nê°œ ì¸µì„ ì±„ìš°ê¸° 위해 ê²°í•©"
-#: src/libslic3r/PrintConfig.cpp:960
+#: src/libslic3r/PrintConfig.cpp:952
msgid "Infill extruder"
msgstr "채움(Infill) ìµìŠ¤íŠ¸ë£¨ë”"
-#: src/libslic3r/PrintConfig.cpp:962
+#: src/libslic3r/PrintConfig.cpp:954
msgid "The extruder to use when printing infill."
msgstr "채움으로 ì‚¬ìš©í• ìµìŠ¤íŠ¸ë£¨ë”."
-#: src/libslic3r/PrintConfig.cpp:971
+#: src/libslic3r/PrintConfig.cpp:962
msgid ""
"Set this to a non-zero value to set a manual extrusion width for infill. If "
"left zero, default extrusion width will be used if set, otherwise 1.125 x "
@@ -4988,21 +5685,21 @@ msgstr ""
"ì„ ì‚¬ìš©í•˜ëŠ” ê²ƒì´ ì¢‹ìŠµë‹ˆë‹¤. 백분율 (예 : 90 %)로 표현하면 ë ˆì´ì–´ 높ì´ë¥¼ 기준으"
"로 계산ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:981
+#: src/libslic3r/PrintConfig.cpp:971
msgid "Infill before perimeters"
msgstr "ë‘˜ë ˆë³´ë‹¤ ì•žìª½ì— ì±„ì›€"
-#: src/libslic3r/PrintConfig.cpp:982
+#: src/libslic3r/PrintConfig.cpp:972
msgid ""
"This option will switch the print order of perimeters and infill, making the "
"latter first."
msgstr "ì´ ì˜µì…˜ì€ ì™¸ë¶€ì¶œë ¥ê³¼ 채움 ì¸ì‡„ 순서를 바꾸어, 후ìžë¥¼ ë¨¼ì € ë§Œë“ ë‹¤."
-#: src/libslic3r/PrintConfig.cpp:988
+#: src/libslic3r/PrintConfig.cpp:977
msgid "Only infill where needed"
msgstr "필요한 경우 채ìŒ"
-#: src/libslic3r/PrintConfig.cpp:990
+#: src/libslic3r/PrintConfig.cpp:979
msgid ""
"This option will limit infill to the areas actually needed for supporting "
"ceilings (it will act as internal support material). If enabled, slows down "
@@ -5012,11 +5709,11 @@ msgstr ""
"ì„ í• ê²ƒì´ë‹¤). í™œì„±í™”ëœ ê²½ìš° ê´€ë ¨ëœ ì—¬ëŸ¬ ë²ˆì˜ ì 검으로 ì¸í•´ G-code ìƒì„± ì†ë„"
"를 늦춰ë¼."
-#: src/libslic3r/PrintConfig.cpp:998
+#: src/libslic3r/PrintConfig.cpp:986
msgid "Infill/perimeters overlap"
msgstr "채움/ë‘˜ë ˆ 겹침(perimeters overlap)"
-#: src/libslic3r/PrintConfig.cpp:1000
+#: src/libslic3r/PrintConfig.cpp:988
msgid ""
"This setting applies an additional overlap between infill and perimeters for "
"better bonding. Theoretically this shouldn't be needed, but backlash might "
@@ -5027,23 +5724,23 @@ msgstr ""
"ë¡ ì 으로 ì´ê²ƒì€ 필요하지 않아야하지만 백래시가 ê°ì„ ìœ ë°œí• ìˆ˜ 있습니다. 백분"
"율 (예 : 15 %)로 표시ë˜ëŠ” 경우 경계 ì••ì¶œ íì„ ê¸°ì¤€ìœ¼ë¡œ 계산ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1012
+#: src/libslic3r/PrintConfig.cpp:999
msgid "Speed for printing the internal fill. Set to zero for auto."
msgstr "ë‚´ë¶€ 채우기 ì¸ì‡„ ì†ë„. ìžë™ìœ¼ë¡œ 0으로 ì„¤ì •í•˜ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:1020
+#: src/libslic3r/PrintConfig.cpp:1007
msgid "Inherits profile"
msgstr "프로필 ìƒì†"
-#: src/libslic3r/PrintConfig.cpp:1021
+#: src/libslic3r/PrintConfig.cpp:1008
msgid "Name of the profile, from which this profile inherits."
msgstr "ì´ í”„ë¡œíŒŒì¼ì´ ìƒì†ë˜ëŠ” 프로파ì¼ì˜ ì´ë¦„."
-#: src/libslic3r/PrintConfig.cpp:1032
+#: src/libslic3r/PrintConfig.cpp:1021
msgid "Interface shells"
msgstr "ì¸í„°íŽ˜ì´ìФ ì…¸(shells)"
-#: src/libslic3r/PrintConfig.cpp:1033
+#: src/libslic3r/PrintConfig.cpp:1022
msgid ""
"Force the generation of solid shells between adjacent materials/volumes. "
"Useful for multi-extruder prints with translucent materials or manual "
@@ -5052,7 +5749,7 @@ msgstr ""
"ì¸ì ‘ 재료/볼륨 사ì´ì— ê³ ì²´ 쉘 ìƒì„±ì„ ê°•ì œí•˜ì‹ì‹œì˜¤. 반투명 재료 ë˜ëŠ” ìˆ˜ë™ ìˆ˜ìš©"
"성 서í¬íЏ 재료를 사용한 다중 압ㅊ기 ì¸ì‡„ì— ìœ ìš©í•¨."
-#: src/libslic3r/PrintConfig.cpp:1043
+#: src/libslic3r/PrintConfig.cpp:1031
msgid ""
"This custom code is inserted at every layer change, right after the Z move "
"and before the extruder moves to the first layer point. Note that you can "
@@ -5064,11 +5761,11 @@ msgstr ""
"[layer_num] ë° [layer_z]ì— ìžë¦¬ í‘œì‹œìž ë³€ìˆ˜ë¥¼ ì‚¬ìš©í• ìˆ˜ 있다는 ì ì— ìœ ì˜í•˜ì‹"
"시오."
-#: src/libslic3r/PrintConfig.cpp:1054
+#: src/libslic3r/PrintConfig.cpp:1042
msgid "Supports remaining times"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1055
+#: src/libslic3r/PrintConfig.cpp:1043
msgid ""
"Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute "
"intervals into the G-code to let the firmware show accurate remaining time. "
@@ -5076,63 +5773,63 @@ msgid ""
"firmware supports M73 Qxx Sxx for the silent mode."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1063
+#: src/libslic3r/PrintConfig.cpp:1051
msgid "Supports silent mode"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1064
+#: src/libslic3r/PrintConfig.cpp:1052
msgid "Set silent mode for the G-code flavor"
msgstr "G-코드 íŠ¹ì§•ì— ëŒ€í•œ ë¬´ìŒ ëª¨ë“œ ì„¤ì •"
-#: src/libslic3r/PrintConfig.cpp:1087
+#: src/libslic3r/PrintConfig.cpp:1075
msgid "Maximum feedrate %1%"
msgstr "최 대 ê³µ 급 ì† ë„ %1%"
-#: src/libslic3r/PrintConfig.cpp:1089
+#: src/libslic3r/PrintConfig.cpp:1077
msgid "Maximum feedrate of the %1% axis"
msgstr "최대 공급 ì†ë„ of the %1% axis"
-#: src/libslic3r/PrintConfig.cpp:1097
+#: src/libslic3r/PrintConfig.cpp:1085
msgid "Maximum acceleration %1%"
msgstr "ìµœëŒ€ê°€ì† %1%"
-#: src/libslic3r/PrintConfig.cpp:1099
+#: src/libslic3r/PrintConfig.cpp:1087
msgid "Maximum acceleration of the %1% axis"
msgstr "최대 ê°€ì†ë„는 %1% ì¶•"
-#: src/libslic3r/PrintConfig.cpp:1107
+#: src/libslic3r/PrintConfig.cpp:1095
msgid "Maximum jerk %1%"
msgstr "최대 ì €í¬(jerk) %1%"
-#: src/libslic3r/PrintConfig.cpp:1109
+#: src/libslic3r/PrintConfig.cpp:1097
msgid "Maximum jerk of the %1% axis"
msgstr "최대 ì €í¬ëŠ”(jerk) %1% axis"
-#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122
+#: src/libslic3r/PrintConfig.cpp:1108 src/libslic3r/PrintConfig.cpp:1110
msgid "Minimum feedrate when extruding"
msgstr "압출시 최소 공급 ì†ë„"
-#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133
+#: src/libslic3r/PrintConfig.cpp:1119 src/libslic3r/PrintConfig.cpp:1121
msgid "Minimum travel feedrate"
msgstr "최소 ì´ì†¡ ì†ë„"
-#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144
+#: src/libslic3r/PrintConfig.cpp:1130 src/libslic3r/PrintConfig.cpp:1132
msgid "Maximum acceleration when extruding"
msgstr "압출시 최대 ê°€ì†ë„"
-#: src/libslic3r/PrintConfig.cpp:1153 src/libslic3r/PrintConfig.cpp:1155
+#: src/libslic3r/PrintConfig.cpp:1141 src/libslic3r/PrintConfig.cpp:1143
msgid "Maximum acceleration when retracting"
msgstr "ë¦¬íŠ¸ë ‰ì…˜ 최대 ê°€ì†ë„"
-#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1173
+#: src/libslic3r/PrintConfig.cpp:1151 src/libslic3r/PrintConfig.cpp:1160
msgid "Max"
msgstr "최대"
-#: src/libslic3r/PrintConfig.cpp:1164
+#: src/libslic3r/PrintConfig.cpp:1152
msgid "This setting represents the maximum speed of your fan."
msgstr "ì´ ì„¤ì •ì€ íŒ¬ì˜ ìµœëŒ€ ì†ë„를 나타냅니다."
-#: src/libslic3r/PrintConfig.cpp:1174
+#: src/libslic3r/PrintConfig.cpp:1161
#, no-c-format
msgid ""
"This is the highest printable layer height for this extruder, used to cap "
@@ -5145,11 +5842,11 @@ msgstr ""
"는 ì••ì¶œ íì˜ 75 %입니다. 0으로 ì„¤ì •í•˜ë©´ 층 높ì´ê°€ ë…¸ì¦ ì§€ë¦„ì˜ 75 %로 ì œí•œë©ë‹ˆ"
"다."
-#: src/libslic3r/PrintConfig.cpp:1185
+#: src/libslic3r/PrintConfig.cpp:1171
msgid "Max print speed"
msgstr "최대 프린트 ì†ë„"
-#: src/libslic3r/PrintConfig.cpp:1186
+#: src/libslic3r/PrintConfig.cpp:1172
msgid ""
"When setting other speed settings to 0 Slic3r will autocalculate the optimal "
"speed in order to keep constant extruder pressure. This experimental setting "
@@ -5159,18 +5856,18 @@ msgstr ""
"ì˜ ì†ë„를 ìžë™ 계산한다. ì´ ì‹¤í—˜ ì„¤ì •ì€ í—ˆìš©í• ìµœëŒ€ ì¸ì‡„ ì†ë„를 ì„¤ì •í•˜ëŠ” ë° "
"사용ëœë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1197
+#: src/libslic3r/PrintConfig.cpp:1182
msgid ""
"This experimental setting is used to set the maximum volumetric speed your "
"extruder supports."
msgstr ""
"ì´ ì‹¤í—˜ ì„¤ì •ì€ ì••ì¶œê¸°ê°€ ì§€ì›í•˜ëŠ” 최대 ì²´ì ì†ë„를 ì„¤ì •í•˜ê¸° 위해 사용ëœë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1206
+#: src/libslic3r/PrintConfig.cpp:1191
msgid "Max volumetric slope positive"
msgstr "최대 ì²´ì 기울기 ì–‘"
-#: src/libslic3r/PrintConfig.cpp:1207 src/libslic3r/PrintConfig.cpp:1219
+#: src/libslic3r/PrintConfig.cpp:1192 src/libslic3r/PrintConfig.cpp:1203
msgid ""
"This experimental setting is used to limit the speed of change in extrusion "
"rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate "
@@ -5181,23 +5878,23 @@ msgstr ""
"1.8mm3/s(0.45mm ì••ì¶œ í, 0.2mm ì••ì¶œ 높ì´, 공급 ì†ë„ 20mm/s)ì—서 5.4mm3/s(ê³µ"
"급 ì†ë„ 60mm/s)로 변경하는 ë° ìµœì†Œ 2ì´ˆ ì´ìƒ 걸린다."
-#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1223
+#: src/libslic3r/PrintConfig.cpp:1196 src/libslic3r/PrintConfig.cpp:1207
msgid "mm³/s²"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1218
+#: src/libslic3r/PrintConfig.cpp:1202
msgid "Max volumetric slope negative"
msgstr "최대 ì²´ì 기울기 ìŒìˆ˜"
-#: src/libslic3r/PrintConfig.cpp:1230 src/libslic3r/PrintConfig.cpp:1240
+#: src/libslic3r/PrintConfig.cpp:1214 src/libslic3r/PrintConfig.cpp:1223
msgid "Min"
msgstr "최소"
-#: src/libslic3r/PrintConfig.cpp:1231
+#: src/libslic3r/PrintConfig.cpp:1215
msgid "This setting represents the minimum PWM your fan needs to work."
msgstr "ì´ ì„¤ì •ì€ ìµœì†Œ PWMíŒ¬ì´ í™œë™í•˜ëŠ”ë° í•„ìš”í•œë¥¼ 나타냅니다."
-#: src/libslic3r/PrintConfig.cpp:1241
+#: src/libslic3r/PrintConfig.cpp:1224
msgid ""
"This is the lowest printable layer height for this extruder and limits the "
"resolution for variable layer height. Typical values are between 0.05 mm and "
@@ -5206,19 +5903,19 @@ msgstr ""
"ì´ê²ƒì€ ì´ ì••ì¶œê¸°ì— ëŒ€í•œ 가장 ë‚®ì€ ì¸ì‡„ 가능한 층 높ì´ì´ê³ 가변 층 높ì´ì— 대"
"한 ë¶„í•´ëŠ¥ì„ ì œí•œí•œë‹¤. 대표ì ì¸ ê°’ì€ 0.05mm와 0.1mmì´ë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1250
+#: src/libslic3r/PrintConfig.cpp:1232
msgid "Min print speed"
msgstr "최소 ì¸ì‡„ ì†ë„"
-#: src/libslic3r/PrintConfig.cpp:1251
+#: src/libslic3r/PrintConfig.cpp:1233
msgid "Slic3r will not scale speed down below this speed."
msgstr "Slic3r는 ì´ ì†ë„ ì´í•˜ë¡œ ì†ë„를 낮추지 ì•Šì„ ê²ƒì´ë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1259
+#: src/libslic3r/PrintConfig.cpp:1240
msgid "Minimal filament extrusion length"
msgstr "최소 í•„ë¼ë©˜íЏ ì••ì¶œ 길ì´"
-#: src/libslic3r/PrintConfig.cpp:1260
+#: src/libslic3r/PrintConfig.cpp:1241
msgid ""
"Generate no less than the number of skirt loops required to consume the "
"specified amount of filament on the bottom layer. For multi-extruder "
@@ -5227,11 +5924,11 @@ msgstr ""
"하단 ë ˆì´ì–´ì—서 ì§€ì •ëœ ì–‘ì˜ í•„ë¼ë©˜íŠ¸ë¥¼ 사용하는 ë° í•„ìš”í•œ 스커트 ë£¨í”„ì˜ ìˆ˜ ì´"
"ìƒìœ¼ë¡œ ìƒì„±í•œë‹¤. 멀티 ìµìŠ¤íŠ¸ë£¨ë”ì˜ ê²½ìš°, ì´ ìµœì†Œê°’ì€ ê° ì¶”ê°€ê¸°ê¸°ì— ì ìš©ëœë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1270
+#: src/libslic3r/PrintConfig.cpp:1250
msgid "Configuration notes"
msgstr "구성 노트"
-#: src/libslic3r/PrintConfig.cpp:1271
+#: src/libslic3r/PrintConfig.cpp:1251
msgid ""
"You can put here your personal notes. This text will be added to the G-code "
"header comments."
@@ -5239,50 +5936,30 @@ msgstr ""
"ì—¬ê¸°ì— ê°œì¸ ë…¸íŠ¸ë¥¼ ë„£ì„ ìˆ˜ 있다. ì´ í…스트는 G-code í—¤ë” ì½”ë©˜íŠ¸ì— ì¶”ê°€ë 것ì´"
"다."
-#: src/libslic3r/PrintConfig.cpp:1281
+#: src/libslic3r/PrintConfig.cpp:1260
msgid "Nozzle diameter"
msgstr "ë…¸ì¦ ì§ê²½"
-#: src/libslic3r/PrintConfig.cpp:1282
+#: src/libslic3r/PrintConfig.cpp:1261
msgid ""
"This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)"
msgstr "ì´ ì§€ë¦„ì€ ì—‘ìŠ¤íŠ¸ë£¨ë” ë…¸ì¦ì˜ ì§ê²½ì´ë‹¤(예: 0.5, 0.35 등)."
-#: src/libslic3r/PrintConfig.cpp:1288
+#: src/libslic3r/PrintConfig.cpp:1266
msgid "Host Type"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1289
+#: src/libslic3r/PrintConfig.cpp:1267
msgid ""
"Slic3r can upload G-code files to a printer host. This field must contain "
"the kind of the host."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1301
-msgid "API Key / Password"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1302
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the API Key or the password required for authentication."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1317
-msgid "Hostname, IP or URL"
-msgstr "호스트 ì´ë¦„(Hostname), IP or URL"
-
-#: src/libslic3r/PrintConfig.cpp:1318
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the hostname, IP address or URL of the printer host instance."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1325
+#: src/libslic3r/PrintConfig.cpp:1278
msgid "Only retract when crossing perimeters"
msgstr "ë‘˜ë ˆë¥¼ 횡단 í• ë•Œë§Œ 수축"
-#: src/libslic3r/PrintConfig.cpp:1326
+#: src/libslic3r/PrintConfig.cpp:1279
msgid ""
"Disables retraction when the travel path does not exceed the upper layer's "
"perimeters (and thus any ooze will be probably invisible)."
@@ -5290,7 +5967,7 @@ msgstr ""
"ì´ë™ 경로가 ìƒìœ„ ë ˆì´ì–´ì˜ 경계를 초과하지 않는 경우 ë¦¬íŠ¸ëž™ì…˜ì„ ë¹„í™œì„±í™”í•©ë‹ˆ"
"다. ë”°ë¼ì„œ ëª¨ë“ ì˜¤ì¦ˆê°€ ë³´ì´ì§€ 않습니다."
-#: src/libslic3r/PrintConfig.cpp:1334
+#: src/libslic3r/PrintConfig.cpp:1286
msgid ""
"This option will drop the temperature of the inactive extruders to prevent "
"oozing. It will enable a tall skirt automatically and move extruders outside "
@@ -5300,11 +5977,11 @@ msgstr ""
"ë³€ê²½í• ë•Œ 키가 í° ìŠ¤ì»¤íŠ¸ë¥¼ ìžë™ìœ¼ë¡œ ì‚¬ìš©í•˜ê³ ìŠ¤ì»¤íŠ¸ 외부로 압출기를 ì´ë™í•©ë‹ˆ"
"다."
-#: src/libslic3r/PrintConfig.cpp:1342
+#: src/libslic3r/PrintConfig.cpp:1293
msgid "Output filename format"
msgstr "ì¶œë ¥ 파ì¼ì´ë¦„ 형ì‹"
-#: src/libslic3r/PrintConfig.cpp:1343
+#: src/libslic3r/PrintConfig.cpp:1294
msgid ""
"You can use all configuration options as variables inside this template. For "
"example: [layer_height], [fill_density] etc. You can also use [timestamp], "
@@ -5312,11 +5989,11 @@ msgid ""
"[input_filename], [input_filename_base]."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1353
+#: src/libslic3r/PrintConfig.cpp:1303
msgid "Detect bridging perimeters"
msgstr "브릿 ì§• ê²½ê³„ì„ ê°ì§€"
-#: src/libslic3r/PrintConfig.cpp:1355
+#: src/libslic3r/PrintConfig.cpp:1305
msgid ""
"Experimental option to adjust flow for overhangs (bridge flow will be used), "
"to apply bridge speed to them and enable fan."
@@ -5324,11 +6001,11 @@ msgstr ""
"ì˜¤ë²„í–‰ì— ëŒ€í•œ ìœ ëŸ‰ì„ ì¡°ì •í•˜ëŠ” 실험 옵션 (브리지 í름(flow)ì´ ì‚¬ìš©ë¨)ì— ë¸Œë¦¿"
"ì§€ ì†ë„를 ì ìš©í•˜ê³ íŒ¬ì„ í™œì„±í™”í•©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1362
+#: src/libslic3r/PrintConfig.cpp:1311
msgid "Filament parking position"
msgstr "í•„ë¼ë©˜íЏ 멈춤 위치"
-#: src/libslic3r/PrintConfig.cpp:1363
+#: src/libslic3r/PrintConfig.cpp:1312
msgid ""
"Distance of the extruder tip from the position where the filament is parked "
"when unloaded. This should match the value in printer firmware. "
@@ -5336,11 +6013,11 @@ msgstr ""
"ì–¸ 로딩시 í•„ë¼ë©˜íЏ 위치ì—서 압출기 íŒì˜ 거리. ì´ ê°’ì€ í”„ë¦°í„° íŽŒì›¨ì–´ì˜ ê°’ê³¼ ì¼"
"치해야합니다. "
-#: src/libslic3r/PrintConfig.cpp:1372
+#: src/libslic3r/PrintConfig.cpp:1320
msgid "Extra loading distance"
msgstr "추가 로딩 거리"
-#: src/libslic3r/PrintConfig.cpp:1373
+#: src/libslic3r/PrintConfig.cpp:1321
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 "
@@ -5351,12 +6028,12 @@ msgstr ""
"ì´ë™ 한 거리와 ë™ì¼í•©ë‹ˆë‹¤. 양수ì´ë©´ ìŒìˆ˜ê°€ ë” ë§Žì´ ë¡œë“œë˜ê³ 로드가 ìŒìˆ˜ ì¸ ê²½"
"우 언로드보다 짧습니다. "
-#: src/libslic3r/PrintConfig.cpp:1382 src/libslic3r/PrintConfig.cpp:1402
-#: src/libslic3r/PrintConfig.cpp:1415 src/libslic3r/PrintConfig.cpp:1425
+#: src/libslic3r/PrintConfig.cpp:1329 src/libslic3r/PrintConfig.cpp:1347
+#: src/libslic3r/PrintConfig.cpp:1359 src/libslic3r/PrintConfig.cpp:1369
msgid "Perimeters"
msgstr "ë‘˜ë ˆ"
-#: src/libslic3r/PrintConfig.cpp:1383
+#: src/libslic3r/PrintConfig.cpp:1330
msgid ""
"This is the acceleration your printer will use for perimeters. A high value "
"like 9000 usually gives good results if your hardware is up to the job. Set "
@@ -5366,17 +6043,17 @@ msgstr ""
"ìž‘ë™í•˜ë©´ ì¢‹ì€ ê²°ê³¼ë¥¼ ì œê³µí•©ë‹ˆë‹¤. ì£¼ë³€ì„ ê°€ì† ì œì–´í•˜ì§€ ì•Šìœ¼ë ¤ë©´ 0으로 ì„¤ì •í•˜ì‹"
"시오."
-#: src/libslic3r/PrintConfig.cpp:1392
+#: src/libslic3r/PrintConfig.cpp:1338
msgid "Perimeter extruder"
msgstr "주변 ìµìŠ¤íŠ¸ë£¨ë”"
-#: src/libslic3r/PrintConfig.cpp:1394
+#: src/libslic3r/PrintConfig.cpp:1340
msgid ""
"The extruder to use when printing perimeters and brim. First extruder is 1."
msgstr ""
"ë‘˜ë ˆì™€ 가장ìžë¦¬ë¥¼ ì¸ì‡„ í• ë•Œ ì‚¬ìš©í• ì••ì¶œê¸°ìž…ë‹ˆë‹¤. 첫 번째 압출기는 1입니다."
-#: src/libslic3r/PrintConfig.cpp:1404
+#: src/libslic3r/PrintConfig.cpp:1349
msgid ""
"Set this to a non-zero value to set a manual extrusion width for perimeters. "
"You may want to use thinner extrudates to get more accurate surfaces. If "
@@ -5390,12 +6067,12 @@ msgstr ""
"ì§ê²½ì´ 사용ë©ë‹ˆë‹¤. 백분율 (예 : 200 %)로 표현하면 ë ˆì´ì–´ 높ì´ë¥¼ 기준으로 계산"
"ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1417
+#: src/libslic3r/PrintConfig.cpp:1361
msgid ""
"Speed for perimeters (contours, aka vertical shells). Set to zero for auto."
msgstr "ë‘˜ë ˆì˜ ì†ë„ (ë“±ê³ ì„ , ì¼ëª… 세로 ì…¸). ìžë™ìœ¼ë¡œ 0으로 ì„¤ì •í•˜ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:1427
+#: src/libslic3r/PrintConfig.cpp:1371
msgid ""
"This option sets the number of perimeters to generate for each layer. Note "
"that Slic3r may increase this number automatically when it detects sloping "
@@ -5406,11 +6083,11 @@ msgstr ""
"사용하면 ë” í° ì£¼ë³€ 수를 사용하는 ê²½ì‚¬ë©´ì„ ê°ì§€ í• ë•Œ Slic3rì´ì´ 수를 ìžë™ìœ¼"
"로 ì¦ê°€ì‹œí‚¬ 수 있습니다."
-#: src/libslic3r/PrintConfig.cpp:1431
+#: src/libslic3r/PrintConfig.cpp:1375
msgid "(minimum)"
msgstr "(최소)"
-#: src/libslic3r/PrintConfig.cpp:1439
+#: src/libslic3r/PrintConfig.cpp:1383
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. "
@@ -5423,35 +6100,35 @@ msgstr ""
"파ì¼ì˜ ì ˆëŒ€ 경로를 첫 번째 ì¸ìˆ˜ë¡œ ì „ë‹¬ë˜ë©° 환경 변수를 ì½ìŒìœ¼ë¡œì¨ Slic3r 구"
"성 ì„¤ì •ì— ì•¡ì„¸ìŠ¤ í• ìˆ˜ 있습니다."
-#: src/libslic3r/PrintConfig.cpp:1452
+#: src/libslic3r/PrintConfig.cpp:1395
msgid "Printer type"
msgstr "프린터 타입"
-#: src/libslic3r/PrintConfig.cpp:1453
+#: src/libslic3r/PrintConfig.cpp:1396
msgid "Type of the printer."
msgstr "프린터 ìœ í˜•."
-#: src/libslic3r/PrintConfig.cpp:1457
+#: src/libslic3r/PrintConfig.cpp:1401
msgid "Printer notes"
msgstr "프린터 노트"
-#: src/libslic3r/PrintConfig.cpp:1458
+#: src/libslic3r/PrintConfig.cpp:1402
msgid "You can put your notes regarding the printer here."
msgstr "프린터 ê´€ë ¨ 메모를 ì—¬ê¸°ì— ë„£ì„ ìˆ˜ 있습니다."
-#: src/libslic3r/PrintConfig.cpp:1467
+#: src/libslic3r/PrintConfig.cpp:1410
msgid "Printer vendor"
msgstr "ì œì¡° 회사"
-#: src/libslic3r/PrintConfig.cpp:1468
+#: src/libslic3r/PrintConfig.cpp:1411
msgid "Name of the printer vendor."
msgstr "프린터 공급 ì—…ì²´ì˜ ì´ë¦„입니다."
-#: src/libslic3r/PrintConfig.cpp:1472
+#: src/libslic3r/PrintConfig.cpp:1416
msgid "Printer variant"
msgstr "프린터 변형"
-#: src/libslic3r/PrintConfig.cpp:1473
+#: src/libslic3r/PrintConfig.cpp:1417
msgid ""
"Name of the printer variant. For example, the printer variants may be "
"differentiated by a nozzle diameter."
@@ -5459,22 +6136,22 @@ msgstr ""
"프린터 변종 ì´ë¦„입니다. 예를 들어, 프린터 ë³€í˜•ì€ ë…¸ì¦ ì§€ë¦„ìœ¼ë¡œ 구별 ë 수 있"
"습니다."
-#: src/libslic3r/PrintConfig.cpp:1483
+#: src/libslic3r/PrintConfig.cpp:1430
msgid "Raft layers"
msgstr "ë¼í”„트(Raft) ë ˆì´ì–´"
-#: src/libslic3r/PrintConfig.cpp:1485
+#: src/libslic3r/PrintConfig.cpp:1432
msgid ""
"The object will be raised by this number of layers, and support material "
"will be generated under it."
msgstr ""
"물체는 ì´ ê°œìˆ˜ì˜ ì¸µì— ì˜í•´ ìƒìйë˜ë©°, ê·¸ 아래ì—서 서í¬íЏ 재료가 ìƒì„±ë 것ì´ë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1494
+#: src/libslic3r/PrintConfig.cpp:1440
msgid "Resolution"
msgstr "í•´ê²°"
-#: src/libslic3r/PrintConfig.cpp:1495
+#: src/libslic3r/PrintConfig.cpp:1441
msgid ""
"Minimum detail resolution, used to simplify the input file for speeding up "
"the slicing job and reducing memory usage. High-resolution models often "
@@ -5486,20 +6163,20 @@ msgstr ""
"있는 것보다 ë” ë§Žì€ ë””í…Œì¼ì„ ê°€ì§€ê³ ìžˆë‹¤. 단순화를 사용하지 ì•Šê³ ìž…ë ¥ì—서 ì „"
"ì²´ í•´ìƒë„를 ì‚¬ìš©í•˜ë ¤ë©´ 0으로 ì„¤ì •í•˜ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:1506
+#: src/libslic3r/PrintConfig.cpp:1451
msgid "Minimum travel after retraction"
msgstr "리트랙션 후 최소 ì´ë™ 거리"
-#: src/libslic3r/PrintConfig.cpp:1507
+#: src/libslic3r/PrintConfig.cpp:1452
msgid ""
"Retraction is not triggered when travel moves are shorter than this length."
msgstr "ì´ë™ 거리가 ì´ ê¸¸ì´ë³´ë‹¤ 짧으면 ë¦¬íŠ¸ë ‰ì…˜ì´ íŠ¸ë¦¬ê±°ë˜ì§€ 않습니다."
-#: src/libslic3r/PrintConfig.cpp:1514
+#: src/libslic3r/PrintConfig.cpp:1458
msgid "Retract amount before wipe"
msgstr "닦아 내기 ì „ì˜ ìˆ˜ì¶•ëŸ‰"
-#: src/libslic3r/PrintConfig.cpp:1515
+#: src/libslic3r/PrintConfig.cpp:1459
msgid ""
"With bowden extruders, it may be wise to do some amount of quick retract "
"before doing the wipe movement."
@@ -5507,23 +6184,23 @@ msgstr ""
"ë³´ìš° ë´ ì••ì¶œê¸°ë¥¼ 사용하면 와ì´í¼ ë™ìž‘ì„하기 ì „ì— ì•½ê°„ì˜ ë¹ ë¥¸ 리트랙션 를하는 "
"ê²ƒì´ ì¢‹ìŠµë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1523
+#: src/libslic3r/PrintConfig.cpp:1466
msgid "Retract on layer change"
msgstr "ë ˆì´ì–´ 변경 후퇴"
-#: src/libslic3r/PrintConfig.cpp:1524
+#: src/libslic3r/PrintConfig.cpp:1467
msgid "This flag enforces a retraction whenever a Z move is done."
msgstr "ì´ í”Œëž˜ê·¸ëŠ” Z ì´ë™ì´ 완료 ë 때마다 취소를 ê°•ì œ 실행합니다."
-#: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:1539
+#: src/libslic3r/PrintConfig.cpp:1472 src/libslic3r/PrintConfig.cpp:1480
msgid "Length"
msgstr "길ì´"
-#: src/libslic3r/PrintConfig.cpp:1531
+#: src/libslic3r/PrintConfig.cpp:1473
msgid "Retraction Length"
msgstr "리트랙션 길ì´"
-#: src/libslic3r/PrintConfig.cpp:1532
+#: src/libslic3r/PrintConfig.cpp:1474
msgid ""
"When retraction is triggered, filament is pulled back by the specified "
"amount (the length is measured on raw filament, before it enters the "
@@ -5532,15 +6209,15 @@ msgstr ""
"후퇴가 트리거ë˜ë©´ í•„ë¼ë©˜íŠ¸ê°€ ì§€ì •ëœ ì–‘ë§Œí¼ ë’¤ë¡œ 당겨집니다 (길ì´ëŠ” ì••ì¶œê¸°ì— "
"들어가기 ì „ì— ì›ì‹œ í•„ë¼ë©˜íЏì—서 ì¸¡ì •ë©ë‹ˆë‹¤)."
-#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1544
+#: src/libslic3r/PrintConfig.cpp:1476 src/libslic3r/PrintConfig.cpp:1485
msgid "mm (zero to disable)"
msgstr "mm (0ì€ ë¹„í™œì„±í™”)"
-#: src/libslic3r/PrintConfig.cpp:1540
+#: src/libslic3r/PrintConfig.cpp:1481
msgid "Retraction Length (Toolchange)"
msgstr "리트랙션 ê¸¸ì´ (툴 ì²´ì¸ì§€)"
-#: src/libslic3r/PrintConfig.cpp:1541
+#: src/libslic3r/PrintConfig.cpp:1482
msgid ""
"When retraction is triggered before changing tool, filament is pulled back "
"by the specified amount (the length is measured on raw filament, before it "
@@ -5549,11 +6226,11 @@ msgstr ""
"공구를 êµì²´í•˜ê¸° ì „ì— í›„í‡´ê°€ 트리거ë˜ë©´ í•„ë¼ë©˜íŠ¸ê°€ ì§€ì •ëœ ì–‘ë§Œí¼ ë’¤ë¡œ 당겨집니"
"다 (길ì´ëŠ” ì••ì¶œê¸°ì— ë“¤ì–´ê°€ê¸° ì „ì— ì›ì‹œ í•„ë¼ë©˜íЏì—서 ì¸¡ì •ë©ë‹ˆë‹¤)."
-#: src/libslic3r/PrintConfig.cpp:1550
+#: src/libslic3r/PrintConfig.cpp:1490
msgid "Lift Z"
msgstr "Z축 올림"
-#: src/libslic3r/PrintConfig.cpp:1551
+#: src/libslic3r/PrintConfig.cpp:1491
msgid ""
"If you set this to a positive value, Z is quickly raised every time a "
"retraction is triggered. When using multiple extruders, only the setting for "
@@ -5562,15 +6239,15 @@ msgstr ""
"ì´ ê°’ì„ ì–‘ìˆ˜ 값으로 ì„¤ì •í•˜ë©´ ì² íšŒê°€ 트리거 ë 때마다 Zê°€ ë¹ ë¥´ê²Œ 올ë¼ê°‘니다. "
"여러 ê°œì˜ ì••ì¶œê¸°ë¥¼ 사용하는 경우 첫 번째 ì••ì¶œê¸°ì˜ ì„¤ì • ë§Œ ê³ ë ¤ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1559
+#: src/libslic3r/PrintConfig.cpp:1498
msgid "Above Z"
msgstr "Z 위"
-#: src/libslic3r/PrintConfig.cpp:1560
+#: src/libslic3r/PrintConfig.cpp:1499
msgid "Only lift Z above"
msgstr "ì˜¤ì§ Zì¶• 위로만"
-#: src/libslic3r/PrintConfig.cpp:1561
+#: src/libslic3r/PrintConfig.cpp:1500
msgid ""
"If you set this to a positive value, Z lift will only take place above the "
"specified absolute Z. You can tune this setting for skipping lift on the "
@@ -5579,15 +6256,15 @@ msgstr ""
"ì´ê²ƒì„ ì–‘ì˜ ê°’ìœ¼ë¡œ ì„¤ì •í•˜ë©´, Z 리프트는 ì§€ì •ëœ ì ˆëŒ€ Z 위로만 ë°œìƒí•œë‹¤. 첫 번"
"째 층ì—서 리프트를 건너뛸 수 있ë„ë¡ ì´ ì„¤ì •ì„ ì¡°ì •í• ìˆ˜ 있다."
-#: src/libslic3r/PrintConfig.cpp:1569
+#: src/libslic3r/PrintConfig.cpp:1507
msgid "Below Z"
msgstr "Z 아래"
-#: src/libslic3r/PrintConfig.cpp:1570
+#: src/libslic3r/PrintConfig.cpp:1508
msgid "Only lift Z below"
msgstr "Z값 아래만"
-#: src/libslic3r/PrintConfig.cpp:1571
+#: src/libslic3r/PrintConfig.cpp:1509
msgid ""
"If you set this to a positive value, Z lift will only take place below the "
"specified absolute Z. You can tune this setting for limiting lift to the "
@@ -5596,11 +6273,11 @@ msgstr ""
"ì´ê²ƒì„ 양수 값으로 ì„¤ì •í•˜ë©´ Z 리프트가 ì§€ì •ëœ ì ˆëŒ€ Z 아래ì—서만 ë°œìƒí•©ë‹ˆë‹¤. "
"첫 번째 ë ˆì´ì–´ë¡œ 리프트를 ì œí•œí•˜ê¸° ìœ„í•´ì´ ì„¤ì •ì„ ì¡°ì •í• ìˆ˜ 있습니다."
-#: src/libslic3r/PrintConfig.cpp:1580 src/libslic3r/PrintConfig.cpp:1589
+#: src/libslic3r/PrintConfig.cpp:1517 src/libslic3r/PrintConfig.cpp:1525
msgid "Extra length on restart"
msgstr "재시작시 ì—¬ë¶„ì˜ ê¸¸ì´"
-#: src/libslic3r/PrintConfig.cpp:1581
+#: src/libslic3r/PrintConfig.cpp:1518
msgid ""
"When the retraction is compensated after the travel move, the extruder will "
"push this additional amount of filament. This setting is rarely needed."
@@ -5608,7 +6285,7 @@ msgstr ""
"ì´ë™ 후 ë¦¬íŠ¸ë ‰ì…”ì´ ë³´ì •ë˜ë©´ ìµìŠ¤íŠ¸ë£¨ë”ê°€ 추가 ì–‘ì˜ í•„ë¼ë©˜íŠ¸ë¥¼ 밀어냅니다. ì´ "
"ì„¤ì •ì€ ê±°ì˜ í•„ìš”í•˜ì§€ 않습니다."
-#: src/libslic3r/PrintConfig.cpp:1590
+#: src/libslic3r/PrintConfig.cpp:1526
msgid ""
"When the retraction is compensated after changing tool, the extruder will "
"push this additional amount of filament."
@@ -5616,19 +6293,19 @@ msgstr ""
"ë„구를 êµí™˜ 한 후 ë¦¬íŠ¸ë ‰ì…˜ë¥¼ ë³´ì •í•˜ë©´ ìµìŠ¤íŠ¸ë£¨ë”ê°€ 추가 ì–‘ì˜ í•„ë¼ë©˜íŠ¸ë¥¼ 밀게"
"ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1598 src/libslic3r/PrintConfig.cpp:1599
+#: src/libslic3r/PrintConfig.cpp:1533 src/libslic3r/PrintConfig.cpp:1534
msgid "Retraction Speed"
msgstr "리트랙션 ì†ë„"
-#: src/libslic3r/PrintConfig.cpp:1600
+#: src/libslic3r/PrintConfig.cpp:1535
msgid "The speed for retractions (it only applies to the extruder motor)."
msgstr "리트랙션 ì†ë„ (ìµìŠ¤íŠ¸ë£¨ë” ëª¨í„°ì—ë§Œ ì ìš©ë¨)."
-#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1608
+#: src/libslic3r/PrintConfig.cpp:1541 src/libslic3r/PrintConfig.cpp:1542
msgid "Deretraction Speed"
msgstr "ê°ì† ì†ë„"
-#: src/libslic3r/PrintConfig.cpp:1609
+#: src/libslic3r/PrintConfig.cpp:1543
msgid ""
"The speed for loading of a filament into extruder after retraction (it only "
"applies to the extruder motor). If left to zero, the retraction speed is "
@@ -5637,71 +6314,67 @@ msgstr ""
"리트랙션 후 ì••ì¶œê¸°ì— í•„ë¼ë©˜íŠ¸ë¥¼ 로드하는 ì†ë„ (압출기 모터ì—ë§Œ ì ìš©ë¨). 0으"
"로 방치하면 리트랙션 ì†ë„ê°€ 사용ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1617
+#: src/libslic3r/PrintConfig.cpp:1550
msgid "Seam position"
msgstr "ìž¬ë´‰ì„ ìœ„ì¹˜"
-#: src/libslic3r/PrintConfig.cpp:1619
+#: src/libslic3r/PrintConfig.cpp:1552
msgid "Position of perimeters starting points."
msgstr "ë‘˜ë ˆì˜ ì‹œìž‘ì ì˜ ìœ„ì¹˜."
-#: src/libslic3r/PrintConfig.cpp:1626
+#: src/libslic3r/PrintConfig.cpp:1558
msgid "Random"
msgstr "무작위"
-#: src/libslic3r/PrintConfig.cpp:1627
+#: src/libslic3r/PrintConfig.cpp:1559
msgid "Nearest"
msgstr "가장 가까운"
-#: src/libslic3r/PrintConfig.cpp:1628
+#: src/libslic3r/PrintConfig.cpp:1560
msgid "Aligned"
msgstr "ì •ë ¬"
-#: src/libslic3r/PrintConfig.cpp:1629
-msgid "Rear"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1636
+#: src/libslic3r/PrintConfig.cpp:1568
msgid "Direction"
msgstr "ë°©í–¥"
-#: src/libslic3r/PrintConfig.cpp:1638
+#: src/libslic3r/PrintConfig.cpp:1570
msgid "Preferred direction of the seam"
msgstr "ì„ í˜¸í•˜ëŠ” 심(seam)ì˜ ë°©í–¥"
-#: src/libslic3r/PrintConfig.cpp:1639
+#: src/libslic3r/PrintConfig.cpp:1571
msgid "Seam preferred direction"
msgstr "심(Seam) ì„ í˜¸ ë°©í–¥"
-#: src/libslic3r/PrintConfig.cpp:1647
+#: src/libslic3r/PrintConfig.cpp:1578
msgid "Jitter"
msgstr "지터(Jitter)"
-#: src/libslic3r/PrintConfig.cpp:1649
+#: src/libslic3r/PrintConfig.cpp:1580
msgid "Seam preferred direction jitter"
msgstr "(Seam) ì„ í˜¸ ë°©í–¥ 지터(Jitter)"
-#: src/libslic3r/PrintConfig.cpp:1650
+#: src/libslic3r/PrintConfig.cpp:1581
msgid "Preferred direction of the seam - jitter"
msgstr "ìž¬ë´‰ì„ ì§€í„°ì˜ ì„ í˜¸ ë°©í–¥"
-#: src/libslic3r/PrintConfig.cpp:1661
+#: src/libslic3r/PrintConfig.cpp:1591
msgid "USB/serial port for printer connection."
msgstr "프린터 ì—°ê²°ì„ ìœ„í•œ USB/시리얼 í¬íЏ."
-#: src/libslic3r/PrintConfig.cpp:1669
+#: src/libslic3r/PrintConfig.cpp:1598
msgid "Serial port speed"
msgstr "시리얼 í¬íЏ ì†ë„"
-#: src/libslic3r/PrintConfig.cpp:1670
+#: src/libslic3r/PrintConfig.cpp:1599
msgid "Speed (baud) of USB/serial port for printer connection."
msgstr "프린터 ì—°ê²°ì„ ìœ„í•œ USB/시리얼 í¬íŠ¸ì˜ ì†ë„(보드)"
-#: src/libslic3r/PrintConfig.cpp:1679
+#: src/libslic3r/PrintConfig.cpp:1608
msgid "Distance from object"
msgstr "ê°ì²´ë¡œë¶€í„°ì˜ 거리"
-#: src/libslic3r/PrintConfig.cpp:1680
+#: src/libslic3r/PrintConfig.cpp:1609
msgid ""
"Distance between skirt and object(s). Set this to zero to attach the skirt "
"to the object(s) and get a brim for better adhesion."
@@ -5709,11 +6382,11 @@ msgstr ""
"스커트와 ê°ì²´ 사ì´ì˜ 거리. 스커트를 ê°ì²´ì— ë¶€ì°©í•˜ê³ ì ‘ì°©ë ¥ì„ ë†’ì´ê¸° 위해 ì´"
"를 0으로 ì„¤ì •í•œë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1688
+#: src/libslic3r/PrintConfig.cpp:1616
msgid "Skirt height"
msgstr "스커트(Skirt) 높ì´"
-#: src/libslic3r/PrintConfig.cpp:1689
+#: src/libslic3r/PrintConfig.cpp:1617
msgid ""
"Height of skirt expressed in layers. Set this to a tall value to use skirt "
"as a shield against drafts."
@@ -5721,15 +6394,15 @@ msgstr ""
"ìŠ¤ì»¤íŠ¸ì˜ ë†’ì´ ë ˆì´ì–´ë¡œ 표현ëœë‹¤. ì´ë¥¼ ë†’ì€ ê°’ìœ¼ë¡œ ì„¤ì •í•˜ì—¬ 스커트를 드래프트"
"ì— ëŒ€í•œ 쉴ㄷ로 활용하ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:1697
+#: src/libslic3r/PrintConfig.cpp:1624
msgid "Loops (minimum)"
msgstr "루프 (최소)"
-#: src/libslic3r/PrintConfig.cpp:1698
+#: src/libslic3r/PrintConfig.cpp:1625
msgid "Skirt Loops"
msgstr "스커트 루프"
-#: src/libslic3r/PrintConfig.cpp:1699
+#: src/libslic3r/PrintConfig.cpp:1626
msgid ""
"Number of loops for the skirt. If the Minimum Extrusion Length option is "
"set, the number of loops might be greater than the one configured here. Set "
@@ -5738,11 +6411,11 @@ msgstr ""
"ìŠ¤ì»¤íŠ¸ì˜ ë£¨í”„ 수입니다. 최소 ì••ì¶œ ê¸¸ì´ ì˜µì…˜ì„ ì„¤ì •í•œ 경우 ì—¬ê¸°ì— êµ¬ì„±ëœ ë£¨í”„ "
"수보다 í´ ìˆ˜ 있다. 스커트를 ì™„ì „ížˆ ë¹„í™œì„±í™”í•˜ë ¤ë©´ ì´ ê°’ì„ 0으로 ì„¤ì •í•˜ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:1708
+#: src/libslic3r/PrintConfig.cpp:1634
msgid "Slow down if layer print time is below"
msgstr "ë ˆì´ì–´ ì¸ì‡„ ì‹œê°„ì´ ë‹¤ìŒê³¼ ê°™ì€ ê²½ìš° ì†ë„를 낮추ì‹ì‹œì˜¤"
-#: src/libslic3r/PrintConfig.cpp:1709
+#: src/libslic3r/PrintConfig.cpp:1635
msgid ""
"If layer print time is estimated below this number of seconds, print moves "
"speed will be scaled down to extend duration to this value."
@@ -5750,11 +6423,11 @@ msgstr ""
"층 ì¸ì‡„ ì‹œê°„ì´ ì´ ì‹œê°„ë³´ë‹¤ 낮게 ì¶”ì •ë 경우, ì¸ì‡„ ì´ë™ ì†ë„는 ì´ ê°’ìœ¼ë¡œ ì§€ì†"
"ë˜ë„ë¡ ì¶•ì†Œëœë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1720
+#: src/libslic3r/PrintConfig.cpp:1645
msgid "Small perimeters"
msgstr "ìž‘ì€ ë‘˜ë ˆ"
-#: src/libslic3r/PrintConfig.cpp:1722
+#: src/libslic3r/PrintConfig.cpp:1647
msgid ""
"This separate setting will affect the speed of perimeters having radius <= "
"6.5mm (usually holes). If expressed as percentage (for example: 80%) it will "
@@ -5764,34 +6437,34 @@ msgstr ""
"분율로 표시ë˜ëŠ” 경우 (예 : 80 %) ìœ„ì˜ ì†ë„ ì„¤ì •ì—서 계산ë©ë‹ˆë‹¤. ìžë™ìœ¼ë¡œ 0으"
"로 ì„¤ì •í•˜ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:1732
+#: src/libslic3r/PrintConfig.cpp:1657
msgid "Solid infill threshold area"
msgstr "솔리드 채우기 임계값 ì˜ì—"
-#: src/libslic3r/PrintConfig.cpp:1734
+#: src/libslic3r/PrintConfig.cpp:1659
msgid ""
"Force solid infill for regions having a smaller area than the specified "
"threshold."
msgstr ""
"ì§€ì •ëœ í•œê³„ê°’ë³´ë‹¤ ìž‘ì€ ì˜ì—ì„ ê°€ì§„ ì˜ì—ì— ëŒ€í•´ 솔리드 ì¸í•„ì„ ê°•ì œ ì ìš©."
-#: src/libslic3r/PrintConfig.cpp:1735
+#: src/libslic3r/PrintConfig.cpp:1660
msgid "mm²"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1742
+#: src/libslic3r/PrintConfig.cpp:1666
msgid "Solid infill extruder"
msgstr "솔리드 ì¸í•„ ìµìŠ¤íŠ¸ë£¨ë”"
-#: src/libslic3r/PrintConfig.cpp:1744
+#: src/libslic3r/PrintConfig.cpp:1668
msgid "The extruder to use when printing solid infill."
msgstr "꽉찬 ë©´ì„ ì¸ì‡„í• ë•Œ 사용하는 ìµìŠ¤íŠ¸ë£¨ë”."
-#: src/libslic3r/PrintConfig.cpp:1751
+#: src/libslic3r/PrintConfig.cpp:1674
msgid "Solid infill every"
msgstr "솔리드 ì¸í•„ 간격"
-#: src/libslic3r/PrintConfig.cpp:1753
+#: src/libslic3r/PrintConfig.cpp:1676
msgid ""
"This feature allows to force a solid layer every given number of layers. "
"Zero to disable. You can set this to any value (for example 9999); Slic3r "
@@ -5802,7 +6475,7 @@ msgstr ""
"수 ì—†ìŒ. ë‹¹ì‹ ì€ ì´ê²ƒì„ ì–´ë–¤ ê°’ìœ¼ë¡œë„ ì„¤ì •í• ìˆ˜ 있다(예: 9999). Slic3r는 ë…¸ì¦ "
"ì§ê²½ê³¼ 층 높ì´ì— ë”°ë¼ ê²°í•©í• ìµœëŒ€ 가능한 층 수를 ìžë™ìœ¼ë¡œ ì„ íƒí•œë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1766
+#: src/libslic3r/PrintConfig.cpp:1688
msgid ""
"Set this to a non-zero value to set a manual extrusion width for infill for "
"solid surfaces. If left zero, default extrusion width will be used if set, "
@@ -5813,7 +6486,7 @@ msgstr ""
"하ì‹ì‹œì˜¤. 0ì¸ ê²½ìš° 기본 ì••ì¶œ 너비가 사용ë˜ë©°, ê·¸ë ‡ì§€ 않으면 1.125 x ë…¸ì¦ ì§ê²½"
"ì´ ì‚¬ìš©ëœë‹¤. 백분율(예: 90%)로 표현ë˜ëŠ” 경우, 계층 높ì´ì— ê±¸ì³ ê³„ì‚°ëœë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1777
+#: src/libslic3r/PrintConfig.cpp:1698
msgid ""
"Speed for printing solid regions (top/bottom/internal horizontal shells). "
"This can be expressed as a percentage (for example: 80%) over the default "
@@ -5822,15 +6495,15 @@ msgstr ""
"솔리드 ì˜ì—(ìƒë‹¨/하부/ë‚´ë¶€ ìˆ˜í‰ ì…¸) ì¸ì‡„ ì†ë„ ì´ëŠ” ìœ„ì˜ ê¸°ë³¸ 주입 ì†ë„ì— ëŒ€"
"한 백분율(예: 80%)로 í‘œì‹œí• ìˆ˜ 있다. ìžë™ì„ 위해 0으로 ì„¤ì •í•œë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1789
+#: src/libslic3r/PrintConfig.cpp:1710
msgid "Number of solid layers to generate on top and bottom surfaces."
msgstr "ìƒë‹¨ ë° í•˜ë‹¨ í‘œë©´ì— ìƒì„±í• 솔리드 ë ˆì´ì–´ 수입니다."
-#: src/libslic3r/PrintConfig.cpp:1796
+#: src/libslic3r/PrintConfig.cpp:1716
msgid "Spiral vase"
msgstr "스파ì´ëŸ´ ë°”ì´ìФ"
-#: src/libslic3r/PrintConfig.cpp:1797
+#: src/libslic3r/PrintConfig.cpp:1717
msgid ""
"This feature will raise Z gradually while printing a single-walled object in "
"order to remove any visible seam. This option requires a single perimeter, "
@@ -5844,11 +6517,11 @@ msgstr ""
"ìˆ˜ì— ìƒê´€ì—†ì´ ì„¤ì •í• ìˆ˜ 있다. ê·¸ê²ƒì€ ë¬¼ì²´ë³´ë‹¤ ë” ë§Žì´ ì¸ì‡„í• ë•ŒëŠ” ìž‘ë™í•˜ì§€ 않"
"ì„ ê²ƒì´ë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1806
+#: src/libslic3r/PrintConfig.cpp:1725
msgid "Temperature variation"
msgstr "ì˜¨ë„ ë³€í™”"
-#: src/libslic3r/PrintConfig.cpp:1807
+#: src/libslic3r/PrintConfig.cpp:1726
msgid ""
"Temperature difference to be applied when an extruder is not active. Enables "
"a full-height \"sacrificial\" skirt on which the nozzles are periodically "
@@ -5857,7 +6530,7 @@ msgstr ""
"ëŒì¶œë¶€ê°€ 활성화ë˜ì§€ ì•Šì€ ê²½ìš° ì ìš©ë˜ëŠ” ì˜¨ë„ ì°¨ì´. ë…¸ì¦ì„ 주기ì 으로 닦는 ì „"
"ì²´ ë†’ì´ \"ì¸ê³µ\" 스커트가 가능하다."
-#: src/libslic3r/PrintConfig.cpp:1818
+#: src/libslic3r/PrintConfig.cpp:1736
msgid ""
"This start procedure is inserted at the beginning, after bed has reached the "
"target temperature and extruder just started heating, and before extruder "
@@ -5874,7 +6547,7 @@ msgstr ""
"ë“ Slic3r ì„¤ì •ì— ìžë¦¬ 표시 ìž ë³€ìˆ˜ë¥¼ ì‚¬ìš©í• ìˆ˜ 있으므로 ì›í•˜ëŠ” ìœ„ì¹˜ì— \"M109 "
"S [first_layer_temperature]\"ëª…ë ¹ì„ ë„£ì„ ìˆ˜ 있습니다."
-#: src/libslic3r/PrintConfig.cpp:1834
+#: src/libslic3r/PrintConfig.cpp:1751
msgid ""
"This start procedure is inserted at the beginning, after any printer start "
"gcode. This is used to override settings for a specific filament. If Slic3r "
@@ -5893,48 +6566,48 @@ msgstr ""
"[first_layer_temperature]\"ëª…ë ¹ì„ ë„£ì„ ìˆ˜ 있습니다. 여러 ê°œì˜ ì••ì¶œê¸°ê°€ìžˆëŠ” ê²½"
"ìš° gcodeê°€ 압출기 순서로 처리ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1850
+#: src/libslic3r/PrintConfig.cpp:1766
msgid "Single Extruder Multi Material"
msgstr "싱글 ìµìŠ¤íŠ¸ë£¨ë” ë©€í‹°ë©”í„°ë¦¬ì–¼"
-#: src/libslic3r/PrintConfig.cpp:1851
+#: src/libslic3r/PrintConfig.cpp:1767
msgid "The printer multiplexes filaments into a single hot end."
msgstr "프린터는 í•„ë¼ë©˜íŠ¸ë¥¼ í•˜ë‚˜ì˜ í•« ì—”ë“œì— ë©€í‹°í”Œë ‰ì‹±í•©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1857
+#: src/libslic3r/PrintConfig.cpp:1772
msgid "Prime all printing extruders"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1858
+#: src/libslic3r/PrintConfig.cpp:1773
msgid ""
"If enabled, all printing extruders will be primed at the front edge of the "
"print bed at the start of the print."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1864
+#: src/libslic3r/PrintConfig.cpp:1778
msgid "Generate support material"
msgstr "서í¬íЏ 재료 ìƒì„±"
-#: src/libslic3r/PrintConfig.cpp:1866
+#: src/libslic3r/PrintConfig.cpp:1780
msgid "Enable support material generation."
msgstr "서í¬íЏ 재료를 사용합니다."
-#: src/libslic3r/PrintConfig.cpp:1871
+#: src/libslic3r/PrintConfig.cpp:1784
msgid "Auto generated supports"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1873
+#: src/libslic3r/PrintConfig.cpp:1786
msgid ""
"If checked, supports will be generated automatically based on the overhang "
"threshold value. If unchecked, supports will be generated inside the "
"\"Support Enforcer\" volumes only."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1880
+#: src/libslic3r/PrintConfig.cpp:1792
msgid "XY separation between an object and its support"
msgstr "물체와 ê·¸ 서í¬íЏ ì‚¬ì´ XY 분리"
-#: src/libslic3r/PrintConfig.cpp:1882
+#: src/libslic3r/PrintConfig.cpp:1794
msgid ""
"XY separation between an object and its support. If expressed as percentage "
"(for example 50%), it will be calculated over external perimeter width."
@@ -5942,17 +6615,17 @@ msgstr ""
"ê°ì²´ì™€ ê·¸ 서í¬íЏ 사ì´ì˜ XY 분리. 백분율 (예 : 50 %)로 표시ë˜ëŠ” 경우 외부 둘"
"ë ˆ 너비를 기준으로 계산ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1893
+#: src/libslic3r/PrintConfig.cpp:1804
msgid "Pattern angle"
msgstr "채움 ê°ë„"
-#: src/libslic3r/PrintConfig.cpp:1895
+#: src/libslic3r/PrintConfig.cpp:1806
msgid ""
"Use this setting to rotate the support material pattern on the horizontal "
"plane."
msgstr "ì´ ì„¤ì •ì„ ì‚¬ìš©í•˜ì—¬ì§€ì§€ í‰ë©´ íŒ¨í„´ì„ ìˆ˜í‰ë©´ìœ¼ë¡œ íšŒì „ì‹œí‚µë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1906
+#: src/libslic3r/PrintConfig.cpp:1816 src/libslic3r/PrintConfig.cpp:2421
msgid ""
"Only create support if it lies on a build plate. Don't create support on a "
"print."
@@ -5960,11 +6633,11 @@ msgstr ""
"ê·¸ê²ƒì´ ë¹Œë“œ í”Œë ˆì´íЏì—있는 경우ì—ë§Œ ì§€ì›ì„ 작성하ì‹ì‹œì˜¤. ì¸ì‡„ë¬¼ì— ëŒ€í•œ ì§€ì›"
"ì„ ìž‘ì„±í•˜ì§€ 마ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:1913
+#: src/libslic3r/PrintConfig.cpp:1822
msgid "Contact Z distance"
msgstr "Z 거리 문ì˜"
-#: src/libslic3r/PrintConfig.cpp:1915
+#: src/libslic3r/PrintConfig.cpp:1824
msgid ""
"The vertical distance between object and support material interface. Setting "
"this to 0 will also prevent Slic3r from using bridge flow and speed for the "
@@ -5973,19 +6646,19 @@ msgstr ""
"물체와 서í¬íЏ 사ì´ì˜ ìˆ˜ì§ ê±°ë¦¬. ì´ ê°’ì„ 0으로 ì„¤ì •í•˜ë©´ Slic3rì´ ì²« 번째 ê°ì²´ "
"ë ˆì´ì–´ì— 브리지 í름과 ì†ë„를 사용하지 못하게ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1923
+#: src/libslic3r/PrintConfig.cpp:1831
msgid "soluble"
msgstr "수용성"
-#: src/libslic3r/PrintConfig.cpp:1924
+#: src/libslic3r/PrintConfig.cpp:1832
msgid "detachable"
msgstr "분리 가능"
-#: src/libslic3r/PrintConfig.cpp:1929
+#: src/libslic3r/PrintConfig.cpp:1837
msgid "Enforce support for the first"
msgstr "첫 번째 서í¬íЏ ë” ê°•í™”"
-#: src/libslic3r/PrintConfig.cpp:1931
+#: src/libslic3r/PrintConfig.cpp:1839
msgid ""
"Generate support material for the specified number of layers counting from "
"bottom, regardless of whether normal support material is enabled or not and "
@@ -5996,15 +6669,15 @@ msgstr ""
"세어 ì§€ì •ëœ ë ˆì´ì–´ ìˆ˜ì— ëŒ€í•œì§€ì§€ ìžë£Œë¥¼ ìƒì„±í•©ë‹ˆë‹¤. ì´ê²ƒì€ 빌드 í”Œë ˆì´íŠ¸ì— ë§¤"
"ìš° 얇거나 부족한 í’‹ 프린트를 가진 물체를 ë” ë§Žì´ ë¶€ì°© í• ë•Œ ìœ ìš©í•©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1937
+#: src/libslic3r/PrintConfig.cpp:1844
msgid "Enforce support for the first n layers"
msgstr "첫 번째 n ê°œì˜ ë ˆì´ì–´ì— 대한 서í¬íЏ ê°•í™”"
-#: src/libslic3r/PrintConfig.cpp:1943
+#: src/libslic3r/PrintConfig.cpp:1850
msgid "Support material/raft/skirt extruder"
msgstr "서í¬íЏ 재료 / ë¼í”„트 / 스커트 ìµìŠ¤íŠ¸ë£¨ë”"
-#: src/libslic3r/PrintConfig.cpp:1945
+#: src/libslic3r/PrintConfig.cpp:1852
msgid ""
"The extruder to use when printing support material, raft and skirt (1+, 0 to "
"use the current extruder to minimize tool changes)."
@@ -6012,7 +6685,7 @@ msgstr ""
"서í¬íЏ 재료, ë¼í”„트 ë° ìŠ¤ì»¤íŠ¸ë¥¼ ì¸ì‡„ í• ë•Œ 사용하는 압출기 (ë„구 ë³€ê²½ì„ ìµœì†Œ"
"화하기 위해 현재 압출기를 ì‚¬ìš©í•˜ë ¤ë©´ 1+, 0)."
-#: src/libslic3r/PrintConfig.cpp:1955
+#: src/libslic3r/PrintConfig.cpp:1861
msgid ""
"Set this to a non-zero value to set a manual extrusion width for support "
"material. If left zero, default extrusion width will be used if set, "
@@ -6023,20 +6696,20 @@ msgstr ""
"0으로 ì„¤ì •í•˜ë©´ ì„¤ì •ëœ ê²½ìš° 기본 ì••ì¶œ íì´ ì‚¬ìš©ë˜ê³ ê·¸ë ‡ì§€ 않으면 ë…¸ì¦ ì§€ë¦„ì´ "
"사용ë©ë‹ˆë‹¤. 백분율 (예 : 90 %)로 표현하면 ë ˆì´ì–´ 높ì´ë¥¼ 기준으로 계산ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:1964
+#: src/libslic3r/PrintConfig.cpp:1869
msgid "Interface loops"
msgstr "ì¸í„°íŽ˜ì´ìФ 루프"
-#: src/libslic3r/PrintConfig.cpp:1966
+#: src/libslic3r/PrintConfig.cpp:1871
msgid ""
"Cover the top contact layer of the supports with loops. Disabled by default."
msgstr "ì§€ì§€ëŒ€ì˜ ìƒë‹¨ ì ‘ì´‰ ì¸µì„ ë£¨í”„ë¡œ ë®ìœ¼ì‹ì‹œì˜¤. 기본ì 으로 사용 안 함."
-#: src/libslic3r/PrintConfig.cpp:1972
+#: src/libslic3r/PrintConfig.cpp:1876
msgid "Support material/raft interface extruder"
msgstr "서í¬íЏ 재료/ë¼í”„트 ì¸í„°íŽ˜ì´ìФ ìµìŠ¤íŠ¸ë£¨ë”"
-#: src/libslic3r/PrintConfig.cpp:1974
+#: src/libslic3r/PrintConfig.cpp:1878
msgid ""
"The extruder to use when printing support material interface (1+, 0 to use "
"the current extruder to minimize tool changes). This affects raft too."
@@ -6045,26 +6718,26 @@ msgstr ""
"기 위해 현재 ìµìŠ¤íŠ¸ë£¨ë”를 ì‚¬ìš©í•˜ë ¤ë©´ 1+, 0). ì´ê²ƒì€ ë¼í”„트ì—ë„ ì˜í–¥ì„ 미칩니"
"다."
-#: src/libslic3r/PrintConfig.cpp:1982
+#: src/libslic3r/PrintConfig.cpp:1885
msgid "Interface layers"
msgstr "ì¸í„°íŽ˜ì´ìФ ë ˆì´ì–´"
-#: src/libslic3r/PrintConfig.cpp:1984
+#: src/libslic3r/PrintConfig.cpp:1887
msgid ""
"Number of interface layers to insert between the object(s) and support "
"material."
msgstr "ê°ì²´ì™€ 서í¬íЏ 재료 사ì´ì— ì‚½ìž…í• ì¸í„°íŽ˜ì´ìФ ë ˆì´ì–´ 수입니다."
-#: src/libslic3r/PrintConfig.cpp:1992
+#: src/libslic3r/PrintConfig.cpp:1894
msgid "Interface pattern spacing"
msgstr "ì¸í„°íŽ˜ì´ìФ 패턴 간격"
-#: src/libslic3r/PrintConfig.cpp:1994
+#: src/libslic3r/PrintConfig.cpp:1896
msgid "Spacing between interface lines. Set zero to get a solid interface."
msgstr ""
"ì¸í„°íŽ˜ì´ìФ ë¼ì¸ ê°„ 간격. 솔리드 ì¸í„°íŽ˜ì´ìŠ¤ë¥¼ ê°€ì ¸ì˜¤ë ¤ë©´ 0ì„ ì„¤ì •í•˜ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:2004
+#: src/libslic3r/PrintConfig.cpp:1905
msgid ""
"Speed for printing support material interface layers. If expressed as "
"percentage (for example 50%) it will be calculated over support material "
@@ -6073,35 +6746,35 @@ msgstr ""
"서í¬íЏ 재료 ì¸í„°íŽ˜ì´ìФ ë ˆì´ì–´ ì¸ì‡„ ì†ë„ 백분율(예: 50%)로 표현ë 경우 서í¬íЏ "
"재료 ì†ë„ì— ë”°ë¼ ê³„ì‚°ëœë‹¤."
-#: src/libslic3r/PrintConfig.cpp:2013
+#: src/libslic3r/PrintConfig.cpp:1914
msgid "Pattern"
msgstr "패턴"
-#: src/libslic3r/PrintConfig.cpp:2015
+#: src/libslic3r/PrintConfig.cpp:1916
msgid "Pattern used to generate support material."
msgstr "서í¬íЏ 재료를 ìƒì„±í•˜ëŠ” ë° ì‚¬ìš©ë˜ëŠ” 패턴."
-#: src/libslic3r/PrintConfig.cpp:2022
+#: src/libslic3r/PrintConfig.cpp:1922
msgid "Rectilinear grid"
msgstr "ì§ì„ 그리드"
-#: src/libslic3r/PrintConfig.cpp:2028
+#: src/libslic3r/PrintConfig.cpp:1928
msgid "Pattern spacing"
msgstr "패턴 간격"
-#: src/libslic3r/PrintConfig.cpp:2030
+#: src/libslic3r/PrintConfig.cpp:1930
msgid "Spacing between support material lines."
msgstr "서í¬íЏ 재료 ë¼ì¸ 사ì´ì˜ 간격."
-#: src/libslic3r/PrintConfig.cpp:2040
+#: src/libslic3r/PrintConfig.cpp:1939
msgid "Speed for printing support material."
msgstr "서í¬íЏ 재료를 ì¸ì‡„하는 ì†ë„."
-#: src/libslic3r/PrintConfig.cpp:2047
+#: src/libslic3r/PrintConfig.cpp:1946
msgid "Synchronize with object layers"
msgstr "ê°ì²´ ë ˆì´ì–´ì™€ ë™ê¸°í™”"
-#: src/libslic3r/PrintConfig.cpp:2049
+#: src/libslic3r/PrintConfig.cpp:1948
msgid ""
"Synchronize support layers with the object print layers. This is useful with "
"multi-material printers, where the extruder switch is expensive."
@@ -6109,11 +6782,11 @@ msgstr ""
"서í¬íЏ ë ˆì´ì–´ë¥¼ 프린트 ë ˆì´ì–´ì™€ ë™ê¸°í™”하ì‹ì‹œì˜¤. ì´ê²ƒì€ 스위치가 비싼 멀티 ë©”"
"터리얼 프린터ì—서 ìœ ìš©í•˜ë‹¤."
-#: src/libslic3r/PrintConfig.cpp:2056
+#: src/libslic3r/PrintConfig.cpp:1954
msgid "Overhang threshold"
msgstr "오버행 한계ì "
-#: src/libslic3r/PrintConfig.cpp:2058
+#: src/libslic3r/PrintConfig.cpp:1956
msgid ""
"Support material will not be generated for overhangs whose slope angle (90° "
"= vertical) is above the given threshold. In other words, this value "
@@ -6125,11 +6798,11 @@ msgstr ""
"성ë˜ì§€ 않는다. 즉, ì´ ê°’ì€ ì„œí¬íЏ 재료 ì—†ì´ ì¸ì‡„í• ìˆ˜ 있는 가장 ìˆ˜í‰ ê²½ì‚¬(수"
"í‰ë©´ì—서 ì¸¡ì •ë¨)를 나타낸다. ìžë™ ê°ì§€ë¥¼ 위해 0으로 ì„¤ì •í•˜ì‹ì‹œì˜¤(권장)."
-#: src/libslic3r/PrintConfig.cpp:2071
+#: src/libslic3r/PrintConfig.cpp:1968
msgid "With sheath around the support"
msgstr "서í¬íЏ 주변ì´ë‚˜ 외부로"
-#: src/libslic3r/PrintConfig.cpp:2073
+#: src/libslic3r/PrintConfig.cpp:1970
msgid ""
"Add a sheath (a single perimeter line) around the base support. This makes "
"the support more reliable, but also more difficult to remove."
@@ -6137,7 +6810,7 @@ msgstr ""
"기본 서í¬íЏ ì£¼ìœ„ì— ì™¸ìž¥ (ë‹¨ì¼ ì£¼ë³€ ì„ )ì„ ì¶”ê°€í•˜ì‹ì‹œì˜¤. ì´ê²ƒì€ 페ì´ìФ ì—…ì„ë³´"
"다 ì‹ ë¢°ì„±ìžˆê²Œ 만들ë¿ë§Œ ì•„ë‹ˆë¼ ì œê±°í•˜ê¸°ë„ ì–´ë µìŠµë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:2081
+#: src/libslic3r/PrintConfig.cpp:1977
msgid ""
"Extruder temperature for layers after the first one. Set this to zero to "
"disable temperature control commands in the output."
@@ -6145,25 +6818,25 @@ msgstr ""
"첫 번째 것 ì´í›„ì— ë ˆì´ì–´ì— 대한 ë” ë‚®ì€ ì˜¨ë„. ì´ ê°’ì„ 0으로 ì„¤ì •í•˜ë©´ ì¶œë ¥ì—"
"서 â€‹â€‹ì˜¨ë„ ì œì–´ ëª…ë ¹ì„ ë¹„í™œì„±í™” í• ìˆ˜ 있습니다."
-#: src/libslic3r/PrintConfig.cpp:2084
+#: src/libslic3r/PrintConfig.cpp:1979
msgid "Temperature"
msgstr "온ë„"
-#: src/libslic3r/PrintConfig.cpp:2090
+#: src/libslic3r/PrintConfig.cpp:1985
msgid "Detect thin walls"
msgstr "ì–‡ì€ ë²½(walls) ê°ì§€"
-#: src/libslic3r/PrintConfig.cpp:2092
+#: src/libslic3r/PrintConfig.cpp:1987
msgid ""
"Detect single-width walls (parts where two extrusions don't fit and we need "
"to collapse them into a single trace)."
msgstr "싱글 너비 ë²½ (ë‘ ë¶€ë¶„ì´ ë§žì§€ 않는 부분과 무너지는 부분)ì„ ê°ì§€í•©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:2099
+#: src/libslic3r/PrintConfig.cpp:1993
msgid "Threads"
msgstr "ìŠ¤ë ˆë“œ(Threads)"
-#: src/libslic3r/PrintConfig.cpp:2100
+#: src/libslic3r/PrintConfig.cpp:1994
msgid ""
"Threads are used to parallelize long-running tasks. Optimal threads number "
"is slightly above the number of available cores/processors."
@@ -6171,7 +6844,7 @@ msgstr ""
"ìŠ¤ë ˆë“œëŠ” 장기 실행 태스í¬ë¥¼ ë³‘ë ¬ 처리하는 ë° ì‚¬ìš©ë©ë‹ˆë‹¤. 최ì ì˜ ìŠ¤ë ˆë“œ 수는 "
"사용 가능한 코어 / 프로세서 수보다 약간 높습니다."
-#: src/libslic3r/PrintConfig.cpp:2112
+#: src/libslic3r/PrintConfig.cpp:2006
msgid ""
"This custom code is inserted right before every extruder change. Note that "
"you can use placeholder variables for all Slic3r settings as well as "
@@ -6181,7 +6854,7 @@ msgstr ""
"[previous_extruder] ë° [next_extruder]ë¿ ì•„ë‹ˆë¼ ëª¨ë“ Slic3r ì„¤ì •ì— ëŒ€í•´ ìžë¦¬ "
"표시 ìž ë³€ìˆ˜ë¥¼ ì‚¬ìš©í• ìˆ˜ 있습니다."
-#: src/libslic3r/PrintConfig.cpp:2125
+#: src/libslic3r/PrintConfig.cpp:2018
msgid ""
"Set this to a non-zero value to set a manual extrusion width for infill for "
"top surfaces. You may want to use thinner extrudates to fill all narrow "
@@ -6195,7 +6868,7 @@ msgstr ""
"으면 ë…¸ì¦ ì§€ë¦„ì´ ì‚¬ìš©ë©ë‹ˆë‹¤. 백분율 (예 : 90 %)로 표현하면 ë ˆì´ì–´ 높ì´ë¥¼ 기준"
"으로 계산ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:2137
+#: src/libslic3r/PrintConfig.cpp:2029
msgid ""
"Speed for printing top solid layers (it only applies to the uppermost "
"external layers and not to their internal solid layers). You may want to "
@@ -6208,28 +6881,23 @@ msgstr ""
"ì „ ì†ë„ì— ëŒ€í•œ 백분율 (예 : 80 %)로 나타낼 수 있습니다. ìžë™ìœ¼ë¡œ 0으로 ì„¤ì •í•˜"
"ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:2149
-msgctxt "Layers"
-msgid "Top"
-msgstr "윗부분"
-
-#: src/libslic3r/PrintConfig.cpp:2151
+#: src/libslic3r/PrintConfig.cpp:2043
msgid "Number of solid layers to generate on top surfaces."
msgstr "ìƒë‹¨ í‘œë©´ì— ìƒì„± í• ì†”ë¦¬ë“œ ë ˆì´ì–´ 수입니다."
-#: src/libslic3r/PrintConfig.cpp:2153
+#: src/libslic3r/PrintConfig.cpp:2044
msgid "Top solid layers"
msgstr "탑 솔리드 ë ˆì´ì–´"
-#: src/libslic3r/PrintConfig.cpp:2159
+#: src/libslic3r/PrintConfig.cpp:2050
msgid "Speed for travel moves (jumps between distant extrusion points)."
msgstr "ì´ë™ ì†ë„ (먼 ëŒì¶œ ì 사ì´ì˜ ì 프)."
-#: src/libslic3r/PrintConfig.cpp:2168
+#: src/libslic3r/PrintConfig.cpp:2058
msgid "Use firmware retraction"
msgstr "펌웨어 ì² íšŒ"
-#: src/libslic3r/PrintConfig.cpp:2169
+#: src/libslic3r/PrintConfig.cpp:2059
msgid ""
"This experimental setting uses G10 and G11 commands to have the firmware "
"handle the retraction. This is only supported in recent Marlin."
@@ -6237,11 +6905,11 @@ msgstr ""
"ì´ ì‹¤í—˜ ì„¤ì •ì€ G10 ë° G11 ëª…ë ¹ì„ ì‚¬ìš©í•˜ì—¬ 펌웨어ì—서 취소를 처리하ë„ë¡í•©ë‹ˆ"
"다. ì´ê²ƒì€ ìµœê·¼ì˜ ë§ë¦°ì—서만 ì§€ì›ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:2176
+#: src/libslic3r/PrintConfig.cpp:2065
msgid "Use relative E distances"
msgstr "ìƒëŒ€ì ì¸ E 거리 사용"
-#: src/libslic3r/PrintConfig.cpp:2177
+#: src/libslic3r/PrintConfig.cpp:2066
msgid ""
"If your firmware requires relative E values, check this, otherwise leave it "
"unchecked. Most firmwares use absolute values."
@@ -6249,11 +6917,11 @@ msgstr ""
"íŽŒì›¨ì–´ì— ìƒëŒ€ E ê°’ì´ í•„ìš”í•œ ê²½ìš°ì´ ê°’ì„ ì„ íƒí•˜ê³ , ê·¸ë ‡ì§€ 않으면 ì„ íƒí•˜ì§€ 마ì‹"
"시오. ëŒ€ë¶€ë¶„ì˜ íšŒì‚¬ëŠ” ì ˆëŒ€ ê°’ì„ ì‚¬ìš©í•©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:2184
+#: src/libslic3r/PrintConfig.cpp:2072
msgid "Use volumetric E"
msgstr "ìš©ì E 사용"
-#: src/libslic3r/PrintConfig.cpp:2185
+#: src/libslic3r/PrintConfig.cpp:2073
msgid ""
"This experimental setting uses outputs the E values in cubic millimeters "
"instead of linear millimeters. If your firmware doesn't already know "
@@ -6268,11 +6936,11 @@ msgstr ""
"[filament_diameter_0] T0'ê³¼ ê°™ì€ ëª…ë ¹ì„ ìž…ë ¥ í• ìˆ˜ 있습니다 Slic3r. ì´ê²ƒì€ 최"
"ê·¼ì˜ ë§ë¦°ì—서만 ì§€ì›ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:2196
+#: src/libslic3r/PrintConfig.cpp:2083
msgid "Enable variable layer height feature"
msgstr "가변 ë ˆì´ì–´ ë†’ì´ ê¸°ëŠ¥ 사용"
-#: src/libslic3r/PrintConfig.cpp:2197
+#: src/libslic3r/PrintConfig.cpp:2084
msgid ""
"Some printers or printer setups may have difficulties printing with a "
"variable layer height. Enabled by default."
@@ -6280,11 +6948,11 @@ msgstr ""
"ì¼ë¶€ 프린터 ë˜ëŠ” 프린터 ì„¤ì •ì€ ê°€ë³€ ë ˆì´ì–´ 높ì´ë¡œ ì¸ì‡„하는 ë° ì–´ë ¤ì›€ì´ìžˆì„ "
"수 있습니다. 기본ì 으로 사용ë©ë‹ˆë‹¤."
-#: src/libslic3r/PrintConfig.cpp:2204
+#: src/libslic3r/PrintConfig.cpp:2090
msgid "Wipe while retracting"
msgstr "수축시 닦아내ì‹ì‹œì˜¤"
-#: src/libslic3r/PrintConfig.cpp:2205
+#: src/libslic3r/PrintConfig.cpp:2091
msgid ""
"This flag will move the nozzle while retracting to minimize the possible "
"blob on leaky extruders."
@@ -6292,7 +6960,7 @@ msgstr ""
"ì´ í”Œëž˜ê·¸ëŠ” ëˆ„ì¶œëœ ë¦¬íŠ¸ëž™ì‹±ì˜ ë¸”ëŸ½ ê°€ëŠ¥ì„±ì„ ìµœì†Œí™”í•˜ê¸° 위해 수축하는 ë™ì•ˆ ë…¸"
"ì¦ì„ ì´ë™ì‹œí‚¨ë‹¤."
-#: src/libslic3r/PrintConfig.cpp:2213
+#: src/libslic3r/PrintConfig.cpp:2098
msgid ""
"Multi material printers may need to prime or purge extruders on tool "
"changes. Extrude the excess material into the wipe tower."
@@ -6300,11 +6968,11 @@ msgstr ""
"멀티 메터리알 프린터는 공구 êµí™˜ 시 ìµìŠ¤íŠ¸ë£¨ë”를 프ë¼ì´ë°í•˜ê±°ë‚˜ ì œê±°í•´ì•¼ í• "
"수 있다. ê³¼ë„한 ë¬¼ì§ˆì„ ì™€ì´í¼ íƒ€ì›Œì— ëŒì¶œì‹œí‚¨ë‹¤."
-#: src/libslic3r/PrintConfig.cpp:2220
+#: src/libslic3r/PrintConfig.cpp:2104
msgid "Purging volumes - load/unload volumes"
msgstr "볼륨 ì‚ì œ - 볼륨 로드/언로드"
-#: src/libslic3r/PrintConfig.cpp:2221
+#: src/libslic3r/PrintConfig.cpp:2105
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 "
@@ -6313,11 +6981,11 @@ msgstr ""
"ì´ ë²¡í„°ëŠ” 와ì´í¼ ìž‘ë™ íƒ€ì›Œì— ì‚¬ìš©ë˜ëŠ” ê° ê³µêµ¬ì™€ êµí™˜í•˜ëŠ” ë° í•„ìš”í•œ ë³¼ë¥¨ì„ ì €"
"장한다. ì´ëŸ¬í•œ ê°’ì€ ì•„ëž˜ ì „ì²´ ì‚ì œ 볼륨 ìƒì„±ì„ 단순화하기 위해 사용ëœë‹¤. "
-#: src/libslic3r/PrintConfig.cpp:2228
+#: src/libslic3r/PrintConfig.cpp:2111
msgid "Purging volumes - matrix"
msgstr "볼륨 ì‚ì œ - í–‰ë ¬"
-#: src/libslic3r/PrintConfig.cpp:2229
+#: src/libslic3r/PrintConfig.cpp:2112
msgid ""
"This matrix describes volumes (in cubic milimetres) required to purge the "
"new filament on the wipe tower for any given pair of tools. "
@@ -6325,73 +6993,73 @@ msgstr ""
"ì´ ë§¤íŠ¸ë¦ìŠ¤ëŠ” 주어진 공구 ìŒì— 대해 새 í•„ë¼ë©˜íŠ¸ë¥¼ 지우는 ë° í•„ìš”í•œ 볼륨(ìž…ë°© "
"밀리미터)ì„ ì„¤ëª…í•œë‹¤. "
-#: src/libslic3r/PrintConfig.cpp:2239
+#: src/libslic3r/PrintConfig.cpp:2121
msgid "Position X"
msgstr "X축 위치"
-#: src/libslic3r/PrintConfig.cpp:2240
+#: src/libslic3r/PrintConfig.cpp:2122
msgid "X coordinate of the left front corner of a wipe tower"
msgstr "와ì´í”„ íƒ€ì›Œì˜ ì¢Œì¸¡ ì „ë©´ ëª¨ì„œë¦¬ì˜ X 좌표"
-#: src/libslic3r/PrintConfig.cpp:2247
+#: src/libslic3r/PrintConfig.cpp:2128
msgid "Position Y"
msgstr "Y축 위치"
-#: src/libslic3r/PrintConfig.cpp:2248
+#: src/libslic3r/PrintConfig.cpp:2129
msgid "Y coordinate of the left front corner of a wipe tower"
msgstr "와ì´í¼ ìž‘ë™ íƒ€ì›Œì˜ ì¢Œì¸¡ ì „ë°© ëª¨ì„œë¦¬ì˜ Y 좌표"
-#: src/libslic3r/PrintConfig.cpp:2256
+#: src/libslic3r/PrintConfig.cpp:2136
msgid "Width of a wipe tower"
msgstr "와ì´í¼ 타워 í"
-#: src/libslic3r/PrintConfig.cpp:2263
+#: src/libslic3r/PrintConfig.cpp:2142
msgid "Wipe tower rotation angle"
msgstr "와ì´í¼ 타워 íšŒì „ê°ë„"
-#: src/libslic3r/PrintConfig.cpp:2264
+#: src/libslic3r/PrintConfig.cpp:2143
msgid "Wipe tower rotation angle with respect to x-axis "
msgstr "X ì¶•ì— ëŒ€í•œ 와ì´í¼ 타워 ê°ë„ "
-#: src/libslic3r/PrintConfig.cpp:2265
+#: src/libslic3r/PrintConfig.cpp:2144 src/libslic3r/PrintConfig.cpp:2565
msgid "degrees"
msgstr "ê°ë„"
-#: src/libslic3r/PrintConfig.cpp:2272
+#: src/libslic3r/PrintConfig.cpp:2150
msgid "Wipe into this object's infill"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2273
+#: src/libslic3r/PrintConfig.cpp:2151
msgid ""
"Purging after toolchange will done inside this object's infills. This lowers "
"the amount of waste but may result in longer print time due to additional "
"travel moves."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2281
+#: src/libslic3r/PrintConfig.cpp:2158
msgid "Wipe into this object"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2282
+#: src/libslic3r/PrintConfig.cpp:2159
msgid ""
"Object will be used to purge the nozzle after a toolchange to save material "
"that would otherwise end up in the wipe tower and decrease print time. "
"Colours of the objects will be mixed as a result."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2289
+#: src/libslic3r/PrintConfig.cpp:2165
msgid "Maximal bridging distance"
msgstr "최대 브리징 거리"
-#: src/libslic3r/PrintConfig.cpp:2290
+#: src/libslic3r/PrintConfig.cpp:2166
msgid "Maximal distance between supports on sparse infill sections. "
msgstr "드문드문하 ì¸í•„ 섹션ì—서 지지대 사ì´ì˜ 최대 거리. "
-#: src/libslic3r/PrintConfig.cpp:2297
+#: src/libslic3r/PrintConfig.cpp:2172
msgid "XY Size Compensation"
msgstr "XY í¬ê¸° ë³´ì •"
-#: src/libslic3r/PrintConfig.cpp:2299
+#: src/libslic3r/PrintConfig.cpp:2174
msgid ""
"The object will be grown/shrunk in the XY plane by the configured value "
"(negative = inwards, positive = outwards). This might be useful for fine-"
@@ -6400,11 +7068,11 @@ msgstr ""
"XY í‰ë©´ì—서 ì„¤ì •ëœ ê°’(ìŒìˆ˜ = 안, ì–‘ = 바깥쪽)ì— ë”°ë¼ ê°ì²´ê°€ ì¦ê°€/ì •ê²©ëœë‹¤. ì´"
"는 êµ¬ë© í¬ê¸°ë¥¼ 미세 ì¡°ì •í•˜ëŠ”ë° ìœ ìš©í• ìˆ˜ 있다."
-#: src/libslic3r/PrintConfig.cpp:2308
+#: src/libslic3r/PrintConfig.cpp:2182
msgid "Z offset"
msgstr "Z 오프셋"
-#: src/libslic3r/PrintConfig.cpp:2309
+#: src/libslic3r/PrintConfig.cpp:2183
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 "
@@ -6415,425 +7083,578 @@ msgstr ""
"톱 0ì´ ì‹¤ì œë¡œ ë…¸ì¦ì„ 프린트 ë² ë“œì—서 0.3mm 떨어진 ê³³ì— ë‘” 경우, ì´ë¥¼ -0.3(ë˜"
"는 엔드 ìŠ¤í†±ì„ ê³ ì •)으로 ì„¤ì •í•˜ì‹ì‹œì˜¤."
-#: src/libslic3r/PrintConfig.cpp:2319
-msgid "Bed size X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2320 src/libslic3r/PrintConfig.cpp:2327
-#: src/libslic3r/PrintConfig.cpp:2334 src/libslic3r/PrintConfig.cpp:2343
-#: src/libslic3r/PrintConfig.cpp:2351 src/libslic3r/PrintConfig.cpp:2359
-msgid "Dwarf"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2326
-msgid "Bed size Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2333
-msgid "Picture resolution X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2335 src/libslic3r/PrintConfig.cpp:2344
-msgid "px"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2342
-msgid "Picture resolution Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2350 src/libslic3r/PrintConfig.cpp:2430
-#: src/libslic3r/PrintConfig.cpp:2431
-msgid "Exposure time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2358
-msgid "Exposure time first layers"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2373
+#: src/libslic3r/PrintConfig.cpp:2200
msgid "Display width"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2374
+#: src/libslic3r/PrintConfig.cpp:2201
msgid "Width of the display"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2380
+#: src/libslic3r/PrintConfig.cpp:2206
msgid "Display height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2381
+#: src/libslic3r/PrintConfig.cpp:2207
msgid "Height of the display"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2387
+#: src/libslic3r/PrintConfig.cpp:2212
msgid "Number of pixels in"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2389
+#: src/libslic3r/PrintConfig.cpp:2214
msgid "Number of pixels in X"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2396
+#: src/libslic3r/PrintConfig.cpp:2220
msgid "Number of pixels in Y"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2402
+#: src/libslic3r/PrintConfig.cpp:2225
msgid "Display orientation"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2403
+#: src/libslic3r/PrintConfig.cpp:2226
msgid ""
"Set the actual LCD display orientation inside the SLA printer. Portrait mode "
"will flip the meaning of display width and height parameters and the output "
"images will be rotated by 90 degrees."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2410
+#: src/libslic3r/PrintConfig.cpp:2232
msgid "Landscape"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2411
+#: src/libslic3r/PrintConfig.cpp:2233
msgid "Portrait"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2415 src/libslic3r/PrintConfig.cpp:2416
+#: src/libslic3r/PrintConfig.cpp:2238
+msgid "Fast"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2239
+msgid "Fast tilt"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2240
+msgid "Time of the fast tilt"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2247
+msgid "Slow"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2248
+msgid "Slow tilt"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2249
+msgid "Time of the slow tilt"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2256
+msgid "Area fill"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2257
+msgid ""
+"The percentage of the bed area. \n"
+"If the print area exceeds the specified value, \n"
+"then a slow tilt will be used, otherwise - a fast tilt"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2264 src/libslic3r/PrintConfig.cpp:2265
+#: src/libslic3r/PrintConfig.cpp:2266
msgid "Printer scaling correction"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2422 src/libslic3r/PrintConfig.cpp:2423
+#: src/libslic3r/PrintConfig.cpp:2272 src/libslic3r/PrintConfig.cpp:2273
+msgid "Printer absolute correction"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2274
+msgid ""
+"Will inflate or deflate the sliced 2D polygons according to the sign of the "
+"correction."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2281
+msgid "Printer gamma correction"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2282
+msgid "This will apply a gamm correction to the rasterized 2D polygons."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2291 src/libslic3r/PrintConfig.cpp:2292
msgid "Initial layer height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439
+#: src/libslic3r/PrintConfig.cpp:2298
+msgid "Faded layers"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2299
+msgid ""
+"Number of the layers needed for the exposure time fade from initial exposure "
+"time to the exposure time"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2306 src/libslic3r/PrintConfig.cpp:2307
+msgid "Exposure time"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2313 src/libslic3r/PrintConfig.cpp:2314
msgid "Initial exposure time"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2446 src/libslic3r/PrintConfig.cpp:2447
-msgid "Correction for expansion when printing"
+#: src/libslic3r/PrintConfig.cpp:2320 src/libslic3r/PrintConfig.cpp:2321
+msgid "Correction for expansion"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2452 src/libslic3r/PrintConfig.cpp:2453
-msgid "Correction for expansion after curing"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2458
+#: src/libslic3r/PrintConfig.cpp:2327
msgid "SLA print material notes"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2459
+#: src/libslic3r/PrintConfig.cpp:2328
msgid "You can put your notes regarding the SLA print material here."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2468 src/libslic3r/PrintConfig.cpp:2478
+#: src/libslic3r/PrintConfig.cpp:2336 src/libslic3r/PrintConfig.cpp:2347
msgid "Default SLA material profile"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2487
+#: src/libslic3r/PrintConfig.cpp:2358
msgid "Generate supports"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2489
+#: src/libslic3r/PrintConfig.cpp:2360
msgid "Generate supports for the models"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2494
+#: src/libslic3r/PrintConfig.cpp:2365
msgid "Support head front diameter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2496
+#: src/libslic3r/PrintConfig.cpp:2367
msgid "Diameter of the pointing side of the head"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2503
+#: src/libslic3r/PrintConfig.cpp:2374
msgid "Support head penetration"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2505
+#: src/libslic3r/PrintConfig.cpp:2376
msgid "How much the pinhead has to penetrate the model surface"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2512
+#: src/libslic3r/PrintConfig.cpp:2383
msgid "Support head width"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2514
+#: src/libslic3r/PrintConfig.cpp:2385
msgid "Width from the back sphere center to the front sphere center"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2521
+#: src/libslic3r/PrintConfig.cpp:2393
msgid "Support pillar diameter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2523
+#: src/libslic3r/PrintConfig.cpp:2395
msgid "Diameter in mm of the support pillars"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2530
+#: src/libslic3r/PrintConfig.cpp:2403
msgid "Support pillar connection mode"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2531
+#: src/libslic3r/PrintConfig.cpp:2404
msgid ""
"Controls the bridge type between two neigboring pillars. Can be zig-zag, "
"cross (double zig-zag) or dynamic which will automatically switch between "
"the first two depending on the distance of the two pillars."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2540
+#: src/libslic3r/PrintConfig.cpp:2412
msgid "Zig-Zag"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2541
+#: src/libslic3r/PrintConfig.cpp:2413
msgid "Cross"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2542
+#: src/libslic3r/PrintConfig.cpp:2414
msgid "Dynamic"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2546
+#: src/libslic3r/PrintConfig.cpp:2426
msgid "Pillar widening factor"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2548
+#: src/libslic3r/PrintConfig.cpp:2428
msgid ""
"Merging bridges or pillars into another pillars can increase the radius. "
"Zero means no increase, one means full increase."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2557
+#: src/libslic3r/PrintConfig.cpp:2437
msgid "Support base diameter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2559
+#: src/libslic3r/PrintConfig.cpp:2439
msgid "Diameter in mm of the pillar base"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2566
+#: src/libslic3r/PrintConfig.cpp:2447
msgid "Support base height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2568
+#: src/libslic3r/PrintConfig.cpp:2449
msgid "The height of the pillar base cone"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2575
+#: src/libslic3r/PrintConfig.cpp:2456
msgid "Critical angle"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2577
+#: src/libslic3r/PrintConfig.cpp:2458
msgid "The default angle for connecting support sticks and junctions."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2584
+#: src/libslic3r/PrintConfig.cpp:2466
msgid "Max bridge length"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2586
+#: src/libslic3r/PrintConfig.cpp:2468
msgid "The max length of a bridge"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2593
+#: src/libslic3r/PrintConfig.cpp:2475
+msgid "Max pillar linking distance"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2477
+msgid ""
+"The max distance of two pillars to get linked with each other. A zero value "
+"will prohibit pillar cascading."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2485
msgid "Object elevation"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2595
+#: src/libslic3r/PrintConfig.cpp:2487
msgid "How much the supports should lift up the supported object."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2602
-msgid "Density on horizontal surfaces"
+#: src/libslic3r/PrintConfig.cpp:2495
+msgid "Support points density"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2604
-msgid ""
-"How many support points (approximately) should be placed on horizontal "
-"surface."
+#: src/libslic3r/PrintConfig.cpp:2497
+msgid "This is a relative measure of support points density."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2605 src/libslic3r/PrintConfig.cpp:2614
-msgid "points per square dm"
+#: src/libslic3r/PrintConfig.cpp:2503
+msgid "Minimal distance of the support points"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2611
-msgid "Density on surfaces at 45 degrees"
+#: src/libslic3r/PrintConfig.cpp:2505
+msgid "No support points will be placed closer than this threshold."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2613
-msgid ""
-"How many support points (approximately) should be placed on surface sloping "
-"at 45 degrees."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2620
-msgid "Minimal support point height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2622
-msgid "No support points will be placed lower than this value from the bottom."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2629
+#: src/libslic3r/PrintConfig.cpp:2511
msgid "Use pad"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2631
+#: src/libslic3r/PrintConfig.cpp:2513
msgid "Add a pad underneath the supported model"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2636
+#: src/libslic3r/PrintConfig.cpp:2518
msgid "Pad wall thickness"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2645
+#: src/libslic3r/PrintConfig.cpp:2520
+msgid "The thickness of the pad and its optional cavity walls."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2528
msgid "Pad wall height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2654
+#: src/libslic3r/PrintConfig.cpp:2529
+msgid "Defines the cavity depth. Set to zero to disable the cavity."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2539
msgid "Max merge distance"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2663
+#: src/libslic3r/PrintConfig.cpp:2541
+msgid ""
+"Some objects can get along with a few smaller pads instead of a single big "
+"one. This parameter defines how far the center of two smaller pads should "
+"be. If theyare closer, they will get merged into one pad."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2552
msgid "Pad edge radius"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3017
+#: src/libslic3r/PrintConfig.cpp:2561
+msgid "Pad wall slope"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2563
+msgid ""
+"The slope of the pad wall relative to the bed plane. 90 degrees means "
+"straight walls."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2924
+msgid "Export SVG"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2925
+msgid "Export the model(s) as OBJ."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2936
+msgid "Export SLA"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2937
+msgid "Slice the model and export SLA printing layers as PNG."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2942
+msgid "Export 3MF"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2943
+msgid "Export the model(s) as 3MF."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2947
+msgid "Export AMF"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2948
+msgid "Export the model(s) as AMF."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2952
+msgid "Export STL"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2953
+msgid "Export the model(s) as STL."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2958
+msgid "Slice the model and export toolpaths as G-code."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2963
+msgid "Slice"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2964
+msgid ""
+"Slice the model as FFF or SLA based on the printer_technology configuration "
+"value."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2969
+msgid "Help"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2970
+msgid "Show this help."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2975
+msgid "Help (FFF options)"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2976
+msgid "Show the full list of print/G-code configuration options."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2980
+msgid "Help (SLA options)"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2981
+msgid "Show the full list of SLA print configuration options."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2985
+msgid "Output Model Info"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2986
+msgid "Write information about the model to the console."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2990
+msgid "Save config file"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2991
+msgid "Save configuration to the specified file."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3001
+msgid "Align XY"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3002
+msgid "Align the model to the given point."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3007
msgid "Cut model at the given Z."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3022
-msgid "Dont arrange"
+#: src/libslic3r/PrintConfig.cpp:3028
+msgid "Center"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3023
+#: src/libslic3r/PrintConfig.cpp:3029
+msgid "Center the print around the given center."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3033
+msgid "Don't arrange"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3034
msgid ""
-"Don't arrange the objects on the build plate. The model coordinates define "
-"the absolute positions on the build plate. The option --center will be "
-"ignored."
+"Do not rearrange the given models before merging and keep their original XY "
+"coordinates."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3030
-msgid "User data directory"
+#: src/libslic3r/PrintConfig.cpp:3037
+msgid "Duplicate"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3031
+#: src/libslic3r/PrintConfig.cpp:3038
+msgid "Multiply copies by this factor."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3042
+msgid "Duplicate by grid"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3043
+msgid "Multiply copies by creating a grid."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3046
+msgid "Merge"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3047
+msgid ""
+"Arrange the supplied models in a plate and merge them in a single model in "
+"order to perform actions once."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3052
+msgid ""
+"Try to repair any non-manifold meshes (this option is implicitly added "
+"whenever we need to slice the model to perform the requested action)."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3056
+msgid "Rotation angle around the Z axis in degrees."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3060
+msgid "Rotate around X"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3061
+msgid "Rotation angle around the X axis in degrees."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3065
+msgid "Rotate around Y"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3066
+msgid "Rotation angle around the Y axis in degrees."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3071
+msgid "Scaling factor or percentage."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3076
+msgid ""
+"Detect unconnected parts in the given model(s) and split them into separate "
+"objects."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3079
+msgid "Scale to Fit"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3080
+msgid "Scale to fit the given volume."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3089
+msgid "Ignore non-existent config files"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3090
+msgid "Do not fail if a file supplied to --load does not exist."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3093
+msgid "Load config file"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3094
+msgid ""
+"Load configuration from the specified file. It can be used more than once to "
+"load options from multiple files."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3097
+msgid "Output File"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3098
+msgid ""
+"The file where the output will be written (if not specified, it will be "
+"based on the input file)."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3108
+msgid "Data directory"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3109
msgid ""
"Load and store settings at the given directory. This is useful for "
"maintaining different profiles or including configurations from a network "
"storage."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3038
-msgid "Export 3MF"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3039
-msgid "Slice the model and export slices as 3MF."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3044
-msgid "Slice"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3045
-msgid "Slice the model and export gcode."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3050
-msgid "Help"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3051
-msgid "Show this help."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3056
-msgid "Use GUI"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3057
-msgid ""
-"Forces the GUI launch instead of command line slicing (if you supply a model "
-"file, it will be loaded into the plater)"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3063
-msgid "Output Model Info"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3064
-msgid "Write information about the model to the console."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3069
-msgid "Load config file"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3070
-msgid ""
-"Load configuration from the specified file. It can be used more than once to "
-"load options from multiple files."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3075
-msgid "Do not use GUI"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3076
-msgid ""
-"Forces the command line slicing instead of gui. This takes precedence over --"
-"gui if both are present."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3081
-msgid "Output File"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3082
-msgid ""
-"The file where the output will be written (if not specified, it will be "
-"based on the input file)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3088
-msgid "Rotation angle around the Z axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3093
-msgid "Rotate around X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3094
-msgid "Rotation angle around the X axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3099
-msgid "Rotate around Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3100
-msgid "Rotation angle around the Y axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3105
-msgid "Save config file"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3106
-msgid "Save configuration to the specified file."
-msgstr ""
-
#: src/libslic3r/PrintConfig.cpp:3112
-msgid "Scaling factor (default: 1)."
+msgid "Logging level"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3125
-msgid "Print center"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3126
-msgid "Center the print around the given center (default: 100, 100)."
+#: src/libslic3r/PrintConfig.cpp:3113
+msgid ""
+"Messages with severity lower or eqal to the loglevel will be printed out. 0:"
+"trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal"
msgstr ""
#: src/libslic3r/GCode/PreviewData.cpp:176
diff --git a/resources/localization/list.txt b/resources/localization/list.txt
index aa673bbdf..fdffaf9d9 100644
--- a/resources/localization/list.txt
+++ b/resources/localization/list.txt
@@ -1,4 +1,5 @@
src/slic3r/GUI/AboutDialog.cpp
+src/slic3r/GUI/BackgroundSlicingProcess.cpp
src/slic3r/GUI/BedShapeDialog.cpp
src/slic3r/GUI/BedShapeDialog.hpp
src/slic3r/GUI/BonjourDialog.cpp
@@ -8,11 +9,17 @@ src/slic3r/GUI/ConfigWizard.cpp
src/slic3r/GUI/Field.cpp
src/slic3r/GUI/FirmwareDialog.cpp
src/slic3r/GUI/GLCanvas3D.cpp
-src/slic3r/GUI/GLGizmo.cpp
+src/slic3r/GUI/Gizmos/GLGizmoCut.cpp
+src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp
+src/slic3r/GUI/Gizmos/GLGizmoMove.cpp
+src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp
+src/slic3r/GUI/Gizmos/GLGizmoScale.cpp
+src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp
src/slic3r/GUI/GUI.cpp
src/slic3r/GUI/GUI_App.cpp
src/slic3r/GUI/GUI_ObjectList.cpp
src/slic3r/GUI/GUI_ObjectManipulation.cpp
+src/slic3r/GUI/GUI_ObjectSettings.cpp
src/slic3r/GUI/GUI_Preview.cpp
src/slic3r/GUI/KBShortcutsDialog.cpp
src/slic3r/GUI/MainFrame.cpp
@@ -23,15 +30,23 @@ src/slic3r/GUI/Preset.cpp
src/slic3r/GUI/PresetBundle.cpp
src/slic3r/GUI/PresetHints.cpp
src/slic3r/GUI/PrintHostDialogs.cpp
+src/slic3r/GUI/ProgressStatusBar.cpp
src/slic3r/GUI/RammingChart.cpp
src/slic3r/GUI/SysInfoDialog.cpp
src/slic3r/GUI/Tab.cpp
src/slic3r/GUI/Tab.hpp
src/slic3r/GUI/UpdateDialogs.cpp
src/slic3r/GUI/WipeTowerDialog.cpp
+src/slic3r/GUI/wxExtensions.cpp
+src/slic3r/Utils/Duet.cpp
src/slic3r/Utils/OctoPrint.cpp
src/slic3r/Utils/PresetUpdater.cpp
src/slic3r/Utils/FixModelByWin10.cpp
+src/libslic3r/Zipper.cpp
+src/libslic3r/SLA/SLASupportTree.cpp
src/libslic3r/Print.cpp
+src/libslic3r/SLAPrint.cpp
+src/libslic3r/PrintBase.cpp
src/libslic3r/PrintConfig.cpp
+src/libslic3r/PrintObject.cpp
src/libslic3r/GCode/PreviewData.cpp
diff --git a/resources/localization/pl/Slic3rPE.mo b/resources/localization/pl/Slic3rPE.mo
deleted file mode 100644
index 7cd9902cf..000000000
Binary files a/resources/localization/pl/Slic3rPE.mo and /dev/null differ
diff --git a/resources/localization/pl/Slic3rPE_pl.po b/resources/localization/pl/Slic3rPE_pl.po
deleted file mode 100644
index 44c39a7c2..000000000
--- a/resources/localization/pl/Slic3rPE_pl.po
+++ /dev/null
@@ -1,7006 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-17 13:39+0100\n"
-"PO-Revision-Date: \n"
-"Last-Translator: Oleksandra Iushchenko \n"
-"Language-Team: \n"
-"Language: pl\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"Plural-Forms: nplurals=4; plural=(n == 1) ? 0 : ((n%10 >= 2 && n%10 <=4 && (n"
-"%100 < 12 || n%100 > 14)) ? 1 : ((n%10 == 0 || n%10 == 1 || (n%10 >= 5 && n"
-"%10 <=9)) || (n%100 >= 12 && n%100 <= 14)) ? 2 : 3);\n"
-"X-Generator: Poedit 2.0.8\n"
-
-#: src/slic3r/GUI/AboutDialog.cpp:33
-msgid "About Slic3r"
-msgstr "O Slic3r"
-
-#: src/slic3r/GUI/AboutDialog.cpp:68 src/slic3r/GUI/MainFrame.cpp:51
-msgid "Version"
-msgstr "Wersja"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:43
-msgid "Shape"
-msgstr "Kształt"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:50
-msgid "Rectangular"
-msgstr "ProstokÄ…tny"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:54
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:207 src/slic3r/GUI/Plater.cpp:125
-#: src/slic3r/GUI/Tab.cpp:2122
-msgid "Size"
-msgstr "Rozmiar"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:55
-msgid "Size in X and Y of the rectangular plate."
-msgstr "Rozmiar X i Y stołu prostokątnego."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:61
-msgid "Origin"
-msgstr "Punkt zerowy"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:62
-msgid ""
-"Distance of the 0,0 G-code coordinate from the front left corner of the "
-"rectangle."
-msgstr ""
-"Odległość koordynaty punktu zerowego od przedniego lewego rogu prostokąta."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:66
-msgid "Circular"
-msgstr "Okrągły"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:69 src/slic3r/GUI/ConfigWizard.cpp:92
-#: src/slic3r/GUI/ConfigWizard.cpp:456 src/slic3r/GUI/ConfigWizard.cpp:470
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:80
-#: src/libslic3r/PrintConfig.cpp:50 src/libslic3r/PrintConfig.cpp:58
-#: src/libslic3r/PrintConfig.cpp:180 src/libslic3r/PrintConfig.cpp:254
-#: src/libslic3r/PrintConfig.cpp:263 src/libslic3r/PrintConfig.cpp:315
-#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:448
-#: src/libslic3r/PrintConfig.cpp:460 src/libslic3r/PrintConfig.cpp:480
-#: src/libslic3r/PrintConfig.cpp:679 src/libslic3r/PrintConfig.cpp:1178
-#: src/libslic3r/PrintConfig.cpp:1243 src/libslic3r/PrintConfig.cpp:1263
-#: src/libslic3r/PrintConfig.cpp:1283 src/libslic3r/PrintConfig.cpp:1365
-#: src/libslic3r/PrintConfig.cpp:1376 src/libslic3r/PrintConfig.cpp:1499
-#: src/libslic3r/PrintConfig.cpp:1508 src/libslic3r/PrintConfig.cpp:1554
-#: src/libslic3r/PrintConfig.cpp:1563 src/libslic3r/PrintConfig.cpp:1574
-#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1592
-#: src/libslic3r/PrintConfig.cpp:1682 src/libslic3r/PrintConfig.cpp:1918
-#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2031
-#: src/libslic3r/PrintConfig.cpp:2241 src/libslic3r/PrintConfig.cpp:2249
-#: src/libslic3r/PrintConfig.cpp:2257 src/libslic3r/PrintConfig.cpp:2291
-#: src/libslic3r/PrintConfig.cpp:2302 src/libslic3r/PrintConfig.cpp:2313
-#: src/libslic3r/PrintConfig.cpp:2321 src/libslic3r/PrintConfig.cpp:2328
-#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2497
-#: src/libslic3r/PrintConfig.cpp:2506 src/libslic3r/PrintConfig.cpp:2515
-#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2560
-#: src/libslic3r/PrintConfig.cpp:2569 src/libslic3r/PrintConfig.cpp:2587
-#: src/libslic3r/PrintConfig.cpp:2596 src/libslic3r/PrintConfig.cpp:2623
-#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2648
-#: src/libslic3r/PrintConfig.cpp:2657 src/libslic3r/PrintConfig.cpp:2666
-msgid "mm"
-msgstr "mm"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:70 src/libslic3r/PrintConfig.cpp:676
-msgid "Diameter"
-msgstr "Åšrednica"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:71
-msgid ""
-"Diameter of the print bed. It is assumed that origin (0,0) is located in the "
-"center."
-msgstr ""
-"Średnica stołu. Z założenia punkt bazowy (0, 0) jest zlokalizowany na środku."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:75 src/slic3r/GUI/GUI_Preview.cpp:265
-#: src/libslic3r/GCode/PreviewData.cpp:175
-msgid "Custom"
-msgstr "Własny"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:79
-msgid "Load shape from STL..."
-msgstr ""
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:125
-msgid "Settings"
-msgstr "Ustawienia"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:298
-msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Wybierz plik do importu kształtu stołu (STL/OBJ/AMF/3MF/PRUSA):"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:315 src/slic3r/GUI/GUI_ObjectList.cpp:835
-msgid "Error! "
-msgstr "Błąd! "
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:324
-msgid "The selected file contains no geometry."
-msgstr "Wybrany plik nie zawiera żadnego kształtu."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:328
-msgid ""
-"The selected file contains several disjoint areas. This is not supported."
-msgstr ""
-"Wybrany plik zawiera kilka rozłączonych obszarów. Taki plik nie jest "
-"obsługiwany."
-
-#: src/slic3r/GUI/BedShapeDialog.hpp:44 src/slic3r/GUI/ConfigWizard.cpp:419
-msgid "Bed Shape"
-msgstr "Kształt stołu"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:54
-msgid "Network lookup"
-msgstr "PodglÄ…d sieci"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:67
-msgid "Address"
-msgstr "Adres"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:68
-msgid "Hostname"
-msgstr "Nazwa hosta"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:69
-msgid "Service name"
-msgstr "Nazwa usługi"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:70
-msgid "OctoPrint version"
-msgstr "Wersja OctoPrint"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:188
-msgid "Searching for devices"
-msgstr "Wyszukiwanie urządzeń"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:195
-msgid "Finished"
-msgstr "Zakończono"
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:15
-msgid "Buttons And Text Colors Description"
-msgstr "Opis Przycisków i Kolorów Tekstu"
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:40
-msgid "Value is the same as the system value"
-msgstr "Wartość jest taka sama jak systemowa"
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:57
-msgid ""
-"Value was changed and is not equal to the system value or the last saved "
-"preset"
-msgstr ""
-"Wartość została zmieniona i nie równa się wartości systemowej lub tej z "
-"ostatnio zapisanego zestawu ustawień"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:16
-msgid "Upgrade"
-msgstr "Aktualizacja"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:18
-msgid "Downgrade"
-msgstr "Deaktualizacja"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:20
-msgid "Before roll back"
-msgstr "Przez zmianÄ…"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:22
-msgid "User"
-msgstr "Użytkownik"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:25
-msgid "Unknown"
-msgstr "Nieznane"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:37
-msgid "Active: "
-msgstr "Aktywny: "
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43
-msgid "slic3r version"
-msgstr "wersja Slic3r"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:44 src/slic3r/GUI/Preset.cpp:1156
-msgid "print"
-msgstr "druk"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:45
-msgid "filaments"
-msgstr "filamenty"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1160
-msgid "printer"
-msgstr "drukarka"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 src/slic3r/GUI/Tab.cpp:838
-msgid "vendor"
-msgstr "dostawca"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50
-msgid "version"
-msgstr "wersja"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51
-msgid "min slic3r version"
-msgstr "minimalna wersja slic3r"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53
-msgid "max slic3r version"
-msgstr "maksymalna wersja Slic3r"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
-msgid "model"
-msgstr "model"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
-msgid "variants"
-msgstr "warianty"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68
-msgid "Incompatible with this Slic3r"
-msgstr "Niekompatybilne z tÄ… wersjÄ… Slic3r"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71
-msgid "Activate"
-msgstr "Aktywacja"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:97
-msgid "Configuration Snapshots"
-msgstr "Zrzuty konfiguracji"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:92
-msgid "nozzle"
-msgstr "dysza"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:93
-msgid "default"
-msgstr "domyślnie"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:116
-msgid "Select all"
-msgstr "Zaznacz wszystko"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:117
-msgid "Select none"
-msgstr "Odznacz"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:226
-#, c-format
-msgid "Welcome to the Slic3r %s"
-msgstr "Witaj w Slic3r %s"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:226
-msgid "Welcome"
-msgstr "Witaj"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:232 src/slic3r/GUI/GUI_App.cpp:606
-#, c-format
-msgid "Run %s"
-msgstr "Uruchom %s"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:234
-#, c-format
-msgid ""
-"Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial "
-"configuration; just a few settings and you will be ready to print."
-msgstr ""
-"Witaj w Slic3r Prusa Edition! Ten %s pomoże we wstępnej konfiguracji - tylko "
-"kilka ustawień dzieli Cię od gotowości do drukowania."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:238
-msgid ""
-"Remove user profiles - install from scratch (a snapshot will be taken "
-"beforehand)"
-msgstr ""
-"Usuń profile użytkownika - czysta instalacja (najpierw zostanie wykonany "
-"zrzut)"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:263
-msgid "Other vendors"
-msgstr "Inni dostawcy"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:265
-msgid "Custom setup"
-msgstr "Własne ustawienia"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:289
-msgid "Automatic updates"
-msgstr "Automatyczne aktualizacje"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:289
-msgid "Updates"
-msgstr "Aktualizacje"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:297 src/slic3r/GUI/Preferences.cpp:59
-msgid "Check for application updates"
-msgstr "Sprawdź aktualizacje aplikacji"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:300 src/slic3r/GUI/Preferences.cpp:61
-msgid ""
-"If enabled, Slic3r checks for new versions of Slic3r PE online. When a new "
-"version becomes available a notification is displayed at the next "
-"application startup (never during program usage). This is only a "
-"notification mechanisms, no automatic installation is done."
-msgstr ""
-"Włączenie automatycznego sprawdzania dostępności nowych wersji Slic3r PE "
-"online. Pojawienie się nowej wersji spowoduje wyświetlenie powiadomienia "
-"przy starcie aplikacji (nigdy podczas jej pracy). Ta funkcja służy tylko "
-"powiadamianiu, nie instaluje aktualizacji automatycznie."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:304 src/slic3r/GUI/Preferences.cpp:67
-msgid "Update built-in Presets automatically"
-msgstr "Automatyczna aktualizacja wbudowanych zestawów ustawień"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:307 src/slic3r/GUI/Preferences.cpp:69
-msgid ""
-"If enabled, Slic3r downloads updates of built-in system presets in the "
-"background. These updates are downloaded into a separate temporary location. "
-"When a new preset version becomes available it is offered at application "
-"startup."
-msgstr ""
-"Włączenie powoduje pobieranie wbudowanych systemowych zestawów ustawień w "
-"tle. Te ustawienia są pobierane do oddzielnej lokalizacji tymczasowej. Jeśli "
-"pojawi siÄ™ nowa wersja to opcja jej instalacji pojawi siÄ™ przy starcie "
-"aplikacji."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:308
-msgid ""
-"Updates are never applied without user's consent and never overwrite user's "
-"customized settings."
-msgstr ""
-"Aktualizacje nie są stosowane bez wiedzy użytkownika i nigdy nie nadpisują "
-"zapisanych ustawień własnych."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:313
-msgid ""
-"Additionally a backup snapshot of the whole configuration is created before "
-"an update is applied."
-msgstr ""
-"Dodatkowa kopia zrzutu całej konfiguracji jest tworzona przed "
-"zainstalowaniem aktualizacji."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:320
-msgid "Other Vendors"
-msgstr "Inni dostawcy"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:322
-msgid "Pick another vendor supported by Slic3r PE:"
-msgstr "Wybierz innego dostawcÄ™ wspieranego przez Slic3r PE:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:381
-msgid "Firmware Type"
-msgstr "Typ firmware"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:381 src/slic3r/GUI/Tab.cpp:1820
-msgid "Firmware"
-msgstr "Firmware"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:385
-msgid "Choose the type of firmware used by your printer."
-msgstr "Wybierz rodzaj firmware używanego przez Twoją drukarkę."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:419
-msgid "Bed Shape and Size"
-msgstr "Kształt i rozmiar stołu roboczego"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:422
-msgid "Set the shape of your printer's bed."
-msgstr "Ustaw kształt stołu roboczego drukarki."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:436
-msgid "Filament and Nozzle Diameters"
-msgstr "Åšrednice filamentu i dyszy"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:436
-msgid "Print Diameters"
-msgstr "Åšrednice wydruku"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:452
-msgid "Enter the diameter of your printer's hot end nozzle."
-msgstr "Wprowadź średnicę dyszy hotendu."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:455
-msgid "Nozzle Diameter:"
-msgstr "Åšrednica dyszy:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:465
-msgid "Enter the diameter of your filament."
-msgstr "Wprowadź średnicę filamentu."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:466
-msgid ""
-"Good precision is required, so use a caliper and do multiple measurements "
-"along the filament, then compute the average."
-msgstr ""
-"Wymagana jest spora precyzja, użyj więc suwmiarki i przeprowadź kilka "
-"pomiarów w sporych odstępach od siebie i oblicz średnią."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:469
-msgid "Filament Diameter:"
-msgstr "Åšrednica Filamentu:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:487
-msgid "Extruder and Bed Temperatures"
-msgstr "Temperatury ekstrudera i stołu"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:487
-msgid "Temperatures"
-msgstr "Temperatury"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:503
-msgid "Enter the temperature needed for extruding your filament."
-msgstr "Wprowadź temperaturę potrzebną do ekstruzji filamentu."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:504
-msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS."
-msgstr "Generalną zasadą jest 160 do 230 °C dla PLA i 215 do 250 °C dla ABS."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:507
-msgid "Extrusion Temperature:"
-msgstr "Temperatura ekstrudera:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:508 src/slic3r/GUI/ConfigWizard.cpp:522
-msgid "°C"
-msgstr "°C"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:517
-msgid ""
-"Enter the bed temperature needed for getting your filament to stick to your "
-"heated bed."
-msgstr ""
-"Wprowadź temperaturę potrzebną do dobrego przylegania filamentu do "
-"powierzchni podgrzewanego stołu."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:518
-msgid ""
-"A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have "
-"no heated bed."
-msgstr ""
-"Generalną zasadą jest 60 °C dla PLA i 110 °C dla ABS. Ustaw zero jeśli nie "
-"masz podgrzewanego stołu."
-
-#: src/slic3r/GUI/ConfigWizard.cpp:521
-msgid "Bed Temperature:"
-msgstr "Temperatura stołu:"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:833
-msgid "< &Back"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:834
-msgid "&Next >"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:835
-msgid "&Finish"
-msgstr "&Zakończ"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:906
-msgid "Configuration Wizard"
-msgstr "Asystent Konfiguracji"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:907
-msgid "Configuration &Wizard"
-msgstr "&Asystent Konfiguracji"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:909
-msgid "Configuration Assistant"
-msgstr "Asystent konfiguracji"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:910
-msgid "Configuration &Assistant"
-msgstr "&Asystent Konfiguracji"
-
-#: src/slic3r/GUI/Field.cpp:109
-msgid "default value"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:112
-msgid "parameter name"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:140
-#, c-format
-msgid "%s doesn't support percentage"
-msgstr "%s nie może być wartością procentową"
-
-#: src/slic3r/GUI/Field.cpp:148 src/slic3r/GUI/Field.cpp:168
-msgid ""
-"Input value contains incorrect symbol(s).\n"
-"Use, please, only digits"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:153
-msgid "Input value is out of range"
-msgstr "Wartość poza zakresem"
-
-#: src/slic3r/GUI/Field.cpp:176
-#, c-format
-msgid ""
-"Do you mean %d%% instead of %d %s?\n"
-"Select YES if you want to change this value to %d%%, \n"
-"or NO if you are sure that %d %s is a correct value."
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:179
-msgid "Parameter validation"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:133
-msgid "Flash!"
-msgstr "Flash!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:134 src/slic3r/GUI/GLGizmo.cpp:2270
-msgid "Cancel"
-msgstr "Anuluj"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:135
-msgid "Flashing in progress. Please do not disconnect the printer!"
-msgstr "Flashowanie w toku. Proszę nie odłączać drukarki!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:245
-msgid "Flashing succeeded!"
-msgstr "Flashowanie pomyślne!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:246
-msgid "Flashing failed. Please see the avrdude log below."
-msgstr "Flashowanie nie powiodło się. Zobacz log z avrdude poniżej."
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:247
-msgid "Flashing cancelled."
-msgstr "Flashowanie anulowane."
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:279
-#, c-format
-msgid "Flashing failed: %s"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:293
-#, c-format
-msgid ""
-"This firmware hex file does not match the printer model.\n"
-"The hex file is intended for: %s\n"
-"Printer reported: %s\n"
-"\n"
-"Do you want to continue and flash this hex file anyway?\n"
-"Please only continue if you are sure this is the right thing to do."
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:380 src/slic3r/GUI/FirmwareDialog.cpp:414
-msgid ""
-"Multiple Original Prusa i3 MMU 2.0 devices found. Please only connect one at "
-"a time for flashing."
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:508
-msgid "The device could not have been found"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:581
-#, c-format
-msgid "Error accessing port at %s: %s"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:690
-msgid "Firmware flasher"
-msgstr "Flasher firmware"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:712
-msgid "Firmware image:"
-msgstr "Obraz firmware:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:716
-msgid "Serial port:"
-msgstr "Port szeregowy:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:718
-msgid "Autodetected"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:719
-msgid "Rescan"
-msgstr "Skanuj ponownie"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:726
-msgid "Progress:"
-msgstr "Postęp:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:729
-msgid "Status:"
-msgstr "Stan:"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:730
-msgid "Ready"
-msgstr "Gotowe"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:750
-msgid "Advanced: avrdude output log"
-msgstr "Zaawansowane: log wyjściowy z avrdude"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:809
-msgid ""
-"Are you sure you want to cancel firmware flashing?\n"
-"This could leave your printer in an unusable state!"
-msgstr ""
-"Czy na pewno chcesz przerwać flashowanie firmware?\n"
-"Może to spowodować nieprzewidziane problemy z drukarką!"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:810
-msgid "Confirmation"
-msgstr "Potwierdzenie"
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:813
-msgid "Cancelling..."
-msgstr ""
-
-#: src/slic3r/GUI/GLCanvas3D.cpp:4640
-msgid "Detected object outside print volume"
-msgstr ""
-
-#: src/slic3r/GUI/GLCanvas3D.cpp:7962
-msgid "Detected toolpath outside print volume"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:751 src/slic3r/GUI/GUI_ObjectManipulation.cpp:300
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:322
-#: src/libslic3r/PrintConfig.cpp:3087
-msgid "Rotate"
-msgstr "Obróć"
-
-#: src/slic3r/GUI/GLGizmo.cpp:785
-msgid "Rotation (deg)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:841 src/slic3r/GUI/GUI_ObjectManipulation.cpp:206
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:301
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:323
-#: src/libslic3r/PrintConfig.cpp:3111
-msgid "Scale"
-msgstr "Skalowanie"
-
-#: src/slic3r/GUI/GLGizmo.cpp:1072
-msgid "Scale (%)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1200
-msgid "Move"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Position (mm)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Displacement (mm)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1430
-msgid "Place on face"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2207
-msgid "Left mouse click - add point"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2208
-msgid "Right mouse click - remove point"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2211
-msgid "Generate points automatically"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2212
-msgid "Remove all points"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2245
-msgid "SLA Support Points"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2268 src/slic3r/GUI/GLGizmo.cpp:2468
-msgid "Rotate lower part upwards"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2269 src/slic3r/GUI/GLGizmo.cpp:2470
-msgid "Perform cut"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2276
-msgid "Cut object:"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2356 src/slic3r/GUI/GLGizmo.cpp:2461
-#: src/libslic3r/PrintConfig.cpp:3016
-msgid "Cut"
-msgstr "Obcinanie"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2466
-msgid "Keep upper part"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2467
-msgid "Keep lower part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI.cpp:242
-msgid "Notice"
-msgstr "Uwaga"
-
-#: src/slic3r/GUI/GUI.cpp:248
-msgid "Attempt to free unreferenced scalar"
-msgstr "Próba uwolnienia nieokreślonego skalara"
-
-#: src/slic3r/GUI/GUI.cpp:250 src/slic3r/GUI/WipeTowerDialog.cpp:40
-#: src/slic3r/GUI/WipeTowerDialog.cpp:322
-msgid "Warning"
-msgstr "Ostrzeżenie"
-
-#: src/slic3r/GUI/GUI_App.cpp:377
-msgid "Choose one file (3MF):"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:389
-msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Wybierz jeden lub więcej plików (STL/OBJ/AMF/3MF/PRUSA):"
-
-#: src/slic3r/GUI/GUI_App.cpp:451
-msgid "Array of language names and identifiers should have the same size."
-msgstr "Listy nazw języków i oznaczeń powinny mieć taki sam rozmiar."
-
-#: src/slic3r/GUI/GUI_App.cpp:461
-msgid "Select the language"
-msgstr "Wybierz język"
-
-#: src/slic3r/GUI/GUI_App.cpp:461
-msgid "Language"
-msgstr "Język"
-
-#: src/slic3r/GUI/GUI_App.cpp:529 src/libslic3r/PrintConfig.cpp:270
-msgid "Default"
-msgstr "Domyślnie"
-
-#: src/slic3r/GUI/GUI_App.cpp:609
-msgid "&Configuration Snapshots"
-msgstr "Zrzuty &konfiguracji"
-
-#: src/slic3r/GUI/GUI_App.cpp:609
-msgid "Inspect / activate configuration snapshots"
-msgstr "Sprawdzenie / aktywacja zrzutów konfiguracji"
-
-#: src/slic3r/GUI/GUI_App.cpp:610
-msgid "Take Configuration &Snapshot"
-msgstr "Wykonaj &Zrzut Konfiguracji"
-
-#: src/slic3r/GUI/GUI_App.cpp:610
-msgid "Capture a configuration snapshot"
-msgstr "Zapisz zrzut konfiguracji"
-
-#: src/slic3r/GUI/GUI_App.cpp:613
-msgid "&Preferences"
-msgstr "&Preferencje"
-
-#: src/slic3r/GUI/GUI_App.cpp:613
-msgid "Application preferences"
-msgstr "Preferencje aplikacji"
-
-#: src/slic3r/GUI/GUI_App.cpp:616
-msgid "Simple"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:616
-msgid "Simple View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:617 src/slic3r/GUI/GUI_ObjectList.cpp:39
-#: src/slic3r/GUI/Tab.cpp:948 src/slic3r/GUI/Tab.cpp:962
-#: src/slic3r/GUI/Tab.cpp:1058 src/slic3r/GUI/Tab.cpp:1061
-#: src/slic3r/GUI/Tab.cpp:1425 src/slic3r/GUI/Tab.cpp:1840
-#: src/libslic3r/PrintConfig.cpp:156 src/libslic3r/PrintConfig.cpp:323
-#: src/libslic3r/PrintConfig.cpp:999 src/libslic3r/PrintConfig.cpp:2298
-msgid "Advanced"
-msgstr "Zaawansowane"
-
-#: src/slic3r/GUI/GUI_App.cpp:617
-msgid "Advanced View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:618
-msgid "Expert"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:618
-msgid "Expert View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:620
-msgid "Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:620
-msgid "Slic3r View Mode"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:622
-msgid "Change Application &Language"
-msgstr "Zmień &język aplikacji"
-
-#: src/slic3r/GUI/GUI_App.cpp:624
-msgid "Flash printer &firmware"
-msgstr "Flash &firmware drukarki"
-
-#: src/slic3r/GUI/GUI_App.cpp:624
-msgid "Upload a firmware image into an Arduino based printer"
-msgstr "Wgraj obraz firmware do drukarki opartej na Adruino"
-
-#: src/slic3r/GUI/GUI_App.cpp:636
-msgid "Taking configuration snapshot"
-msgstr "Zrzucanie konfiguracji"
-
-#: src/slic3r/GUI/GUI_App.cpp:636
-msgid "Snapshot name"
-msgstr "Nazwa zrzutu"
-
-#: src/slic3r/GUI/GUI_App.cpp:674
-msgid "Application will be restarted"
-msgstr "Aplikacja zostanie uruchomiona ponownie"
-
-#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/Tab.cpp:2606
-msgid "Attention!"
-msgstr "Uwaga!"
-
-#: src/slic3r/GUI/GUI_App.cpp:691
-msgid "&Configuration"
-msgstr "&Konfiguracja"
-
-#: src/slic3r/GUI/GUI_App.cpp:711
-msgid "You have unsaved changes "
-msgstr "Masz niesapisane zmiany "
-
-#: src/slic3r/GUI/GUI_App.cpp:711
-msgid ". Discard changes and continue anyway?"
-msgstr ". Odrzucić zmiany i kontynuować?"
-
-#: src/slic3r/GUI/GUI_App.cpp:712
-msgid "Unsaved Presets"
-msgstr "Niezapisane zestawy ustawień"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:31 src/libslic3r/PrintConfig.cpp:47
-#: src/libslic3r/PrintConfig.cpp:115 src/libslic3r/PrintConfig.cpp:357
-#: src/libslic3r/PrintConfig.cpp:410 src/libslic3r/PrintConfig.cpp:419
-#: src/libslic3r/PrintConfig.cpp:849 src/libslic3r/PrintConfig.cpp:1037
-#: src/libslic3r/PrintConfig.cpp:1354 src/libslic3r/PrintConfig.cpp:1426
-#: src/libslic3r/PrintConfig.cpp:1618 src/libslic3r/PrintConfig.cpp:2091
-#: src/libslic3r/PrintConfig.cpp:2150
-msgid "Layers and Perimeters"
-msgstr "Warstwy i Obrysy"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:32 src/slic3r/GUI/Tab.cpp:952
-#: src/slic3r/GUI/Tab.cpp:953 src/slic3r/GUI/Tab.cpp:1274
-#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:366
-#: src/libslic3r/PrintConfig.cpp:730 src/libslic3r/PrintConfig.cpp:745
-#: src/libslic3r/PrintConfig.cpp:783 src/libslic3r/PrintConfig.cpp:938
-#: src/libslic3r/PrintConfig.cpp:949 src/libslic3r/PrintConfig.cpp:969
-#: src/libslic3r/PrintConfig.cpp:989 src/libslic3r/PrintConfig.cpp:1010
-#: src/libslic3r/PrintConfig.cpp:1733 src/libslic3r/PrintConfig.cpp:1752
-msgid "Infill"
-msgstr "Wypełnienie"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_Preview.cpp:262
-#: src/slic3r/GUI/Tab.cpp:980 src/slic3r/GUI/Tab.cpp:981
-#: src/libslic3r/PrintConfig.cpp:305 src/libslic3r/PrintConfig.cpp:1484
-#: src/libslic3r/PrintConfig.cpp:1865 src/libslic3r/PrintConfig.cpp:1872
-#: src/libslic3r/PrintConfig.cpp:1881 src/libslic3r/PrintConfig.cpp:1894
-#: src/libslic3r/PrintConfig.cpp:1905 src/libslic3r/PrintConfig.cpp:1914
-#: src/libslic3r/PrintConfig.cpp:1930 src/libslic3r/PrintConfig.cpp:1953
-#: src/libslic3r/PrintConfig.cpp:1965 src/libslic3r/PrintConfig.cpp:1983
-#: src/libslic3r/PrintConfig.cpp:1993 src/libslic3r/PrintConfig.cpp:2003
-#: src/libslic3r/PrintConfig.cpp:2014 src/libslic3r/PrintConfig.cpp:2029
-#: src/libslic3r/PrintConfig.cpp:2038 src/libslic3r/PrintConfig.cpp:2039
-#: src/libslic3r/PrintConfig.cpp:2048 src/libslic3r/PrintConfig.cpp:2057
-#: src/libslic3r/PrintConfig.cpp:2072 src/libslic3r/GCode/PreviewData.cpp:172
-msgid "Support material"
-msgstr "Materiał podporowy"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_Preview.cpp:241
-#: src/slic3r/GUI/Tab.cpp:1005 src/libslic3r/PrintConfig.cpp:169
-#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:881
-#: src/libslic3r/PrintConfig.cpp:1011 src/libslic3r/PrintConfig.cpp:1416
-#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1721
-#: src/libslic3r/PrintConfig.cpp:1776 src/libslic3r/PrintConfig.cpp:2136
-msgid "Speed"
-msgstr "Prędkość"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/Tab.cpp:1038
-#: src/slic3r/GUI/Tab.cpp:1744 src/libslic3r/PrintConfig.cpp:430
-#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:1393
-#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1944
-#: src/libslic3r/PrintConfig.cpp:1973 src/libslic3r/PrintConfig.cpp:2271
-#: src/libslic3r/PrintConfig.cpp:2280
-msgid "Extruders"
-msgstr "Ekstrudery"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/libslic3r/PrintConfig.cpp:387
-#: src/libslic3r/PrintConfig.cpp:504 src/libslic3r/PrintConfig.cpp:836
-#: src/libslic3r/PrintConfig.cpp:970 src/libslic3r/PrintConfig.cpp:1403
-#: src/libslic3r/PrintConfig.cpp:1765 src/libslic3r/PrintConfig.cpp:1954
-#: src/libslic3r/PrintConfig.cpp:2124
-msgid "Extrusion Width"
-msgstr "Szerokość Ekstruzji"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:41 src/slic3r/GUI/Tab.cpp:3179
-#: src/slic3r/GUI/Tab.cpp:3180 src/libslic3r/PrintConfig.cpp:2488
-#: src/libslic3r/PrintConfig.cpp:2495 src/libslic3r/PrintConfig.cpp:2504
-#: src/libslic3r/PrintConfig.cpp:2513 src/libslic3r/PrintConfig.cpp:2522
-#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2558
-#: src/libslic3r/PrintConfig.cpp:2567 src/libslic3r/PrintConfig.cpp:2576
-#: src/libslic3r/PrintConfig.cpp:2585 src/libslic3r/PrintConfig.cpp:2594
-#: src/libslic3r/PrintConfig.cpp:2603 src/libslic3r/PrintConfig.cpp:2612
-#: src/libslic3r/PrintConfig.cpp:2621
-msgid "Supports"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:42 src/slic3r/GUI/Tab.cpp:3205
-#: src/slic3r/GUI/Tab.cpp:3206 src/libslic3r/PrintConfig.cpp:2630
-#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2646
-#: src/libslic3r/PrintConfig.cpp:2655 src/libslic3r/PrintConfig.cpp:2664
-msgid "Pad"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:115
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:129
-msgid "Name"
-msgstr "Nazwa"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:134
-msgid "Right button click the icon to change the object settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:142
-#, c-format
-msgid "Auto-repaired (%d errors):\n"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:145
-msgid "degenerate facets"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:146
-msgid "edges fixed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:147
-msgid "facets removed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:148
-msgid "facets added"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:149
-msgid "facets reversed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:150
-msgid "backwards edges"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:164
-msgid "Right button click the icon to fix STL through Netfabb"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:196 src/slic3r/GUI/Tab.cpp:1389
-#: src/libslic3r/PrintConfig.cpp:429
-msgid "Extruder"
-msgstr "Ekstruder"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:615
-msgid "Select showing settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:655
-msgid "Load"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659 src/slic3r/GUI/GUI_ObjectList.cpp:688
-#: src/slic3r/GUI/GUI_ObjectList.cpp:691
-msgid "Box"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Cylinder"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Sphere"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Slab"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:671 src/slic3r/GUI/GUI_ObjectList.cpp:685
-msgid "Add part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:672
-msgid "Add modifier"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:673 src/slic3r/GUI/GUI_ObjectList.cpp:687
-msgid "Add support enforcer"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:674 src/slic3r/GUI/GUI_ObjectList.cpp:690
-msgid "Add support blocker"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:711
-msgid "Split to parts"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:725
-msgid "Add settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:739
-msgid "Change type"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1009
-msgid "You can't delete the last solid part from object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1017
-msgid "You can't delete the last intance from object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1044 src/slic3r/GUI/Plater.cpp:1825
-msgid ""
-"The selected object couldn't be split because it contains only one part."
-msgstr ""
-"Wybrany model nie może być rozdzielony ponieważ zawiera tylko jedną część."
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1138
-msgid "Group manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1149
-msgid "Object manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1159
-msgid "Object Settings to modify"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1163
-msgid "Part Settings to modify"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1173
-msgid "Part manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1180
-msgid "Instance manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1655
-msgid "You can't change a type of the last solid part of the object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1662
-msgid "Select type of part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1744 src/slic3r/GUI/Tab.cpp:3070
-#: src/slic3r/GUI/Tab.cpp:3074
-msgid "The supplied name is not valid;"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1745 src/slic3r/GUI/Tab.cpp:3071
-msgid "the following characters are not allowed:"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:21
-msgid "Object Manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:132
-msgid "Object name"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252
-msgid "Position"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:205
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253
-msgid "Rotation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254
-msgid "Scale factors"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:321
-msgid "Translate"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_Preview.cpp:235
-msgid "View"
-msgstr "Widok"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/GUI_Preview.cpp:550
-#: src/libslic3r/GCode/PreviewData.cpp:394
-msgid "Feature type"
-msgstr "Rodzaj funkcji"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/PrintConfig.cpp:443
-msgid "Height"
-msgstr "Wysokość"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/PrintConfig.cpp:2255
-msgid "Width"
-msgstr "Szerokość"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:242
-msgid "Volumetric flow rate"
-msgstr "Objętościowa wartość przepływu"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:243 src/slic3r/GUI/GUI_Preview.cpp:347
-#: src/slic3r/GUI/GUI_Preview.cpp:496 src/slic3r/GUI/GUI_Preview.cpp:718
-#: src/libslic3r/GCode/PreviewData.cpp:404
-msgid "Tool"
-msgstr "Narzędzie"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:244 src/slic3r/GUI/GUI_Preview.cpp:550
-#: src/libslic3r/GCode/PreviewData.cpp:406
-msgid "Color Print"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_Preview.cpp:247
-msgid "Show"
-msgstr "Pokaż"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/GUI_Preview.cpp:251
-msgid "Feature types"
-msgstr "Rodzaje funkcji"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/GCode/PreviewData.cpp:163
-msgid "Perimeter"
-msgstr "Obrys"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:254 src/libslic3r/GCode/PreviewData.cpp:164
-msgid "External perimeter"
-msgstr "Obrys zewnętrzny"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/GCode/PreviewData.cpp:165
-msgid "Overhang perimeter"
-msgstr "Obrys zwisu"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:256 src/libslic3r/GCode/PreviewData.cpp:166
-msgid "Internal infill"
-msgstr "Wypełnienie wewnętrzne"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:257 src/libslic3r/PrintConfig.cpp:1764
-#: src/libslic3r/PrintConfig.cpp:1775 src/libslic3r/GCode/PreviewData.cpp:167
-msgid "Solid infill"
-msgstr "Zwarte wypełnienie"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:258 src/libslic3r/PrintConfig.cpp:2123
-#: src/libslic3r/PrintConfig.cpp:2135 src/libslic3r/GCode/PreviewData.cpp:168
-msgid "Top solid infill"
-msgstr "Zwarte wypełnienie górne"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:259 src/libslic3r/GCode/PreviewData.cpp:169
-msgid "Bridge infill"
-msgstr "Wypełnienie mostu"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:260 src/libslic3r/PrintConfig.cpp:880
-#: src/libslic3r/GCode/PreviewData.cpp:170
-msgid "Gap fill"
-msgstr "Wypełnienie szpar"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:261 src/slic3r/GUI/Tab.cpp:971
-#: src/libslic3r/GCode/PreviewData.cpp:171
-msgid "Skirt"
-msgstr "Skirt"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:263 src/libslic3r/PrintConfig.cpp:2002
-#: src/libslic3r/GCode/PreviewData.cpp:173
-msgid "Support material interface"
-msgstr "Warstwa łącząca podpory z modelem"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:264 src/slic3r/GUI/Tab.cpp:1049
-#: src/libslic3r/GCode/PreviewData.cpp:174
-msgid "Wipe tower"
-msgstr "Wieża czyszcząca"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:269 src/libslic3r/PrintConfig.cpp:2158
-msgid "Travel"
-msgstr "Jałowy"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:270
-msgid "Retractions"
-msgstr "Retrakcje"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:271
-msgid "Unretractions"
-msgstr "Powrót retrakcji"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:272
-msgid "Shells"
-msgstr "Powłoka"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:12
-msgid "Slic3r Prusa Edition - Keyboard Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:47
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:126
-msgid "Main Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:101
-msgid "Open project STL/OBJ/AMF/3MF with config, delete bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:102
-msgid "Import STL/OBJ/AMF/3MF without config, keep bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:103
-msgid "Load Config from .ini/amf/3mf/gcode"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:104 src/slic3r/GUI/Plater.cpp:605
-msgid "Export G-code"
-msgstr "Eksport G-code"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:105
-msgid "Save project (3MF)"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:106
-msgid "Load Config from .ini/amf/3mf/gcode and merge"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:107
-msgid "(Re)slice"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:108
-msgid "Quick slice"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 src/slic3r/GUI/MainFrame.cpp:289
-msgid "Repeat last quick slice"
-msgstr "Powtórz ostatnie szybkie cięcie"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:110
-msgid "Select Plater Tab"
-msgstr "Zakładka Stół"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:111
-msgid "Quick slice and Save as"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:112
-msgid "Select Print Settings Tab"
-msgstr "Ustawienia Druku"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:113
-msgid "Select Filament Settings Tab"
-msgstr "Ustawienia Filamentu"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:114
-msgid "Select Printer Settings Tab"
-msgstr "Ustawienia Drukarki"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:115
-msgid "Switch to 3D"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:116
-msgid "Switch to Preview"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 src/slic3r/GUI/Preferences.cpp:10
-msgid "Preferences"
-msgstr "Preferencje"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:118
-#: src/slic3r/GUI/PrintHostDialogs.cpp:89
-msgid "Print host upload queue"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:119
-msgid "Camera view "
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:120
-msgid "Add Instance to selected object "
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:121
-msgid "Remove Instance from selected object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:122
-msgid "Show keyboard shortcuts list"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:123
-msgid "Switch between 3D and Preview"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:124
-msgid "Select multiple object/Move multiple object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:132
-msgid "Arrange"
-msgstr "Rozmieść"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:133
-msgid "Select All objects"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:134
-msgid "Delete selected"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:135
-msgid "Delete All"
-msgstr "Usuń wszystko"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:136
-msgid "Gizmo move"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:137
-msgid "Gizmo scale"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:138
-msgid "Gizmo rotate"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:139
-msgid "Gizmo cut"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:140
-msgid "Gizmo Place face on bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:141
-msgid "Gizmo SLA support points"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:142
-msgid "Zoom to Bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:143
-msgid "Zoom to all objects in scene, if none selected"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:144
-msgid "Zoom to selected object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:145
-msgid "Zoom in"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:146
-msgid "Zoom out"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:147
-msgid "Unselect gizmo, keep object selection"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:149
-msgid "Plater Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
-msgid "Arrow Up"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
-msgid "Upper Layer"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
-msgid "Arrow Down"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
-msgid "Lower Layer"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:158
-msgid "Preview Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:53
-msgid ""
-" - Remember to check for updates at http://github.com/prusa3d/slic3r/releases"
-msgstr ""
-" - Pamiętaj aby sprawdzać aktualizacja na http://github.com/prusa3d/slic3r/"
-"releases"
-
-#: src/slic3r/GUI/MainFrame.cpp:130
-msgid "Plater"
-msgstr "Zawartość Stołu"
-
-#: src/slic3r/GUI/MainFrame.cpp:236
-msgid "&Open"
-msgstr "&Otwórz"
-
-#: src/slic3r/GUI/MainFrame.cpp:236
-msgid "Open a project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:238
-msgid "&Save"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:238
-msgid "Save current project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:240
-msgid "Save &as"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:240
-msgid "Save current project file as"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:246
-msgid "Import STL/OBJ/AM&F/3MF"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:246
-msgid "Load a model"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:249
-msgid "Import &Config"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:249
-msgid "Load exported configuration file"
-msgstr "Wczytaj wyeksportowany plik konfiguracyjny"
-
-#: src/slic3r/GUI/MainFrame.cpp:251
-msgid "Import Config from &project"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:251
-msgid "Load configuration from project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:254
-msgid "Import Config &Bundle"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:254
-msgid "Load presets from a bundle"
-msgstr "Wczytaj zestaw ustawień"
-
-#: src/slic3r/GUI/MainFrame.cpp:256
-msgid "&Import"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:259
-msgid "Export &G-code"
-msgstr "Eksport &G-code"
-
-#: src/slic3r/GUI/MainFrame.cpp:259
-msgid "Export current plate as G-code"
-msgstr "Eksport zawartości stołu jako G-code"
-
-#: src/slic3r/GUI/MainFrame.cpp:262
-msgid "Export plate as &STL"
-msgstr "Eksport zawartości stołu jako &STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:262
-msgid "Export current plate as STL"
-msgstr "Eksport zawartości stołu jako STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:264
-msgid "Export plate as &AMF"
-msgstr "Eksport zawartości stołu jako &AMF"
-
-#: src/slic3r/GUI/MainFrame.cpp:264
-msgid "Export current plate as AMF"
-msgstr "Eksport zawartości stołu jako AMF"
-
-#: src/slic3r/GUI/MainFrame.cpp:267
-msgid "Export &Config"
-msgstr "Eksport &Konfiguracji"
-
-#: src/slic3r/GUI/MainFrame.cpp:267
-msgid "Export current configuration to file"
-msgstr "Eksport obecnej konfiguracji do pliku"
-
-#: src/slic3r/GUI/MainFrame.cpp:269
-msgid "Export Config &Bundle"
-msgstr "Eksport &Paczki Konfiguracyjnej"
-
-#: src/slic3r/GUI/MainFrame.cpp:269
-msgid "Export all presets to file"
-msgstr "Eksport wszystkich zestawów ustawień do pliku"
-
-#: src/slic3r/GUI/MainFrame.cpp:271
-msgid "&Export"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:277
-msgid "Quick Slice"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:277
-msgid "Slice a file into a G-code"
-msgstr "Cięcie jako G-code"
-
-#: src/slic3r/GUI/MainFrame.cpp:283
-msgid "Quick Slice and Save As"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:283
-msgid "Slice a file into a G-code, save as"
-msgstr "Cięcie jako G-code, zapisz jako"
-
-#: src/slic3r/GUI/MainFrame.cpp:289
-msgid "Repeat Last Quick Slice"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:297
-msgid "(Re)Slice &Now"
-msgstr "T&nij (ponownie)"
-
-#: src/slic3r/GUI/MainFrame.cpp:297
-msgid "Start new slicing process"
-msgstr "Uruchom nowy proces cięcia"
-
-#: src/slic3r/GUI/MainFrame.cpp:300
-msgid "&Repair STL file"
-msgstr "Na&prawa pliku STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:300
-msgid "Automatically repair an STL file"
-msgstr "Automatyczna naprawa pliku STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:303
-msgid "&Quit"
-msgstr "&Wyjście"
-
-#: src/slic3r/GUI/MainFrame.cpp:303
-msgid "Quit Slic3r"
-msgstr "Zamknij Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:321
-msgid "&Select all"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:321
-msgid "Selects all objects"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:324
-msgid "&Delete selected"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:324
-msgid "Deletes the current selection"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:326
-msgid "Delete &all"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:326
-msgid "Deletes all objects"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:339
-msgid "&Plater Tab"
-msgstr "Zakładka &Stół"
-
-#: src/slic3r/GUI/MainFrame.cpp:339
-msgid "Show the plater"
-msgstr "Pokaż zawartość stołu"
-
-#: src/slic3r/GUI/MainFrame.cpp:346
-msgid "P&rint Settings Tab"
-msgstr "Ustawienia D&ruku"
-
-#: src/slic3r/GUI/MainFrame.cpp:346
-msgid "Show the print settings"
-msgstr "Pokaż ustawienia druku"
-
-#: src/slic3r/GUI/MainFrame.cpp:348
-msgid "&Filament Settings Tab"
-msgstr "Ustawienia &Filamentu"
-
-#: src/slic3r/GUI/MainFrame.cpp:348
-msgid "Show the filament settings"
-msgstr "Pokaż ustawienia filamentu"
-
-#: src/slic3r/GUI/MainFrame.cpp:350
-msgid "Print&er Settings Tab"
-msgstr "&Ustawienia Drukarki"
-
-#: src/slic3r/GUI/MainFrame.cpp:350
-msgid "Show the printer settings"
-msgstr "Pokaż ustawienia drukarki"
-
-#: src/slic3r/GUI/MainFrame.cpp:354
-msgid "3&D"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:354
-msgid "Show the 3D editing view"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:356
-msgid "Pre&view"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:356
-msgid "Show the 3D slices preview"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:377
-msgid "Print &Host Upload Queue"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:377
-msgid "Display the Print Host Upload Queue window"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "&Iso"
-msgstr "&Izometryczny"
-
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "Iso View"
-msgstr "Widok izometryczny"
-
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "&Top"
-msgstr "Z &góry"
-
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "Top View"
-msgstr "Widok z góry"
-
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "&Bottom"
-msgstr "Od &dołu"
-
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "Bottom View"
-msgstr "Widok od dołu"
-
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "&Front"
-msgstr "&Przód"
-
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "Front View"
-msgstr "Widok przodu"
-
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "R&ear"
-msgstr "&Tył"
-
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "Rear View"
-msgstr "Widok z tyłu"
-
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "&Left"
-msgstr "&Lewo"
-
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "Left View"
-msgstr "Widok lewy"
-
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "&Right"
-msgstr "P&rawo"
-
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "Right View"
-msgstr "Widok prawy"
-
-#: src/slic3r/GUI/MainFrame.cpp:409
-msgid "Prusa 3D &Drivers"
-msgstr "&Sterowniki Prusa3D"
-
-#: src/slic3r/GUI/MainFrame.cpp:409
-msgid "Open the Prusa3D drivers download page in your browser"
-msgstr "Otwórz stronę Prusa3D ze sterownikami w przeglądarce"
-
-#: src/slic3r/GUI/MainFrame.cpp:411
-msgid "Prusa Edition &Releases"
-msgstr "W&ydania Prusa Edition"
-
-#: src/slic3r/GUI/MainFrame.cpp:411
-msgid "Open the Prusa Edition releases page in your browser"
-msgstr "Otwórz stronę z wydaniami Prusa Edition w przeglądarce"
-
-#: src/slic3r/GUI/MainFrame.cpp:417
-msgid "Slic3r &Website"
-msgstr "Strona &WWW Slic3ra"
-
-#: src/slic3r/GUI/MainFrame.cpp:417
-msgid "Open the Slic3r website in your browser"
-msgstr "Otwórz stronę Slic3ra w przeglądarce"
-
-#: src/slic3r/GUI/MainFrame.cpp:419
-msgid "Slic3r &Manual"
-msgstr "I&nstrukcja"
-
-#: src/slic3r/GUI/MainFrame.cpp:419
-msgid "Open the Slic3r manual in your browser"
-msgstr "Otwórz instrukcję do Slic3ra w przeglądarce"
-
-#: src/slic3r/GUI/MainFrame.cpp:422
-msgid "System &Info"
-msgstr "&Informacje o systemie"
-
-#: src/slic3r/GUI/MainFrame.cpp:422
-msgid "Show system information"
-msgstr "Pokaż informacje o systemie"
-
-#: src/slic3r/GUI/MainFrame.cpp:424
-msgid "Show &Configuration Folder"
-msgstr "Pokaż folder &Konfiguracyjny"
-
-#: src/slic3r/GUI/MainFrame.cpp:424
-msgid "Show user configuration folder (datadir)"
-msgstr "Pokaż folder z konfiguracjami użytkownika (datadir)"
-
-#: src/slic3r/GUI/MainFrame.cpp:426
-msgid "Report an I&ssue"
-msgstr "Zgłoś &problem"
-
-#: src/slic3r/GUI/MainFrame.cpp:426
-msgid "Report an issue on the Slic3r Prusa Edition"
-msgstr "Zgłoś problem z Slic3r Prusa Edition"
-
-#: src/slic3r/GUI/MainFrame.cpp:428
-msgid "&About Slic3r"
-msgstr "Inform&acje o Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:428
-msgid "Show about dialog"
-msgstr "Pokaż okienko"
-
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "&Keyboard Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "Show the list of the keyboard shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:439
-msgid "&File"
-msgstr "&Plik"
-
-#: src/slic3r/GUI/MainFrame.cpp:440
-msgid "&Edit"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:441
-msgid "&Window"
-msgstr "&Okno"
-
-#: src/slic3r/GUI/MainFrame.cpp:442
-msgid "&View"
-msgstr "&Widok"
-
-#: src/slic3r/GUI/MainFrame.cpp:445
-msgid "&Help"
-msgstr "Pomo&c"
-
-#: src/slic3r/GUI/MainFrame.cpp:472
-msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Wybierz plik do pocięcia (STL/OBJ/AMF/3MF/PRUSA):"
-
-#: src/slic3r/GUI/MainFrame.cpp:486
-msgid "No previously sliced file."
-msgstr "Brak poprzednio pociętych plików."
-
-#: src/slic3r/GUI/MainFrame.cpp:487 src/slic3r/GUI/PrintHostDialogs.cpp:173
-msgid "Error"
-msgstr "Błąd"
-
-#: src/slic3r/GUI/MainFrame.cpp:492
-msgid "Previously sliced file ("
-msgstr "Poprzednio pocięty plik ("
-
-#: src/slic3r/GUI/MainFrame.cpp:492
-msgid ") not found."
-msgstr ") nie znaleziono."
-
-#: src/slic3r/GUI/MainFrame.cpp:493
-msgid "File Not Found"
-msgstr "Nie znaleziono pliku"
-
-#: src/slic3r/GUI/MainFrame.cpp:531 src/slic3r/GUI/Tab.cpp:3031
-msgid "Save "
-msgstr "Zapisz "
-
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid "SVG"
-msgstr "SVG"
-
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid "G-code"
-msgstr "G-code"
-
-# Context: L('Save ') . ($params{export_svg} ? L('SVG') : L('G-code')) . L(' file as:'), e.g. "Save G-Code file as:"
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid " file as:"
-msgstr " plik jako:"
-
-#: src/slic3r/GUI/MainFrame.cpp:548
-msgid "Save zip file as:"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:560
-msgid "Slicing"
-msgstr "Cięcie"
-
-#: src/slic3r/GUI/MainFrame.cpp:560
-msgid "Processing "
-msgstr "Przetwarzanie "
-
-#: src/slic3r/GUI/MainFrame.cpp:583
-msgid " was successfully sliced."
-msgstr " został pomyślnie pocięty."
-
-#: src/slic3r/GUI/MainFrame.cpp:585
-msgid "Slicing Done!"
-msgstr "Cięcie zakończone!"
-
-#: src/slic3r/GUI/MainFrame.cpp:600
-msgid "Select the STL file to repair:"
-msgstr "Wybierz plik STL do naprawy:"
-
-#: src/slic3r/GUI/MainFrame.cpp:614
-msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
-msgstr "Zapisz plik OBJ (mniej podatny na błędy współrzędnych niż STL) jako:"
-
-#: src/slic3r/GUI/MainFrame.cpp:629
-msgid "Your file was repaired."
-msgstr "Twój plik został naprawiony."
-
-#: src/slic3r/GUI/MainFrame.cpp:629
-msgid "Repair"
-msgstr "Naprawa"
-
-#: src/slic3r/GUI/MainFrame.cpp:643
-msgid "Save configuration as:"
-msgstr "Zapisz konfiguracjÄ™ jako:"
-
-#: src/slic3r/GUI/MainFrame.cpp:663 src/slic3r/GUI/MainFrame.cpp:727
-msgid "Select configuration to load:"
-msgstr "Wybierz konfiguracjÄ™ do wczytania:"
-
-#: src/slic3r/GUI/MainFrame.cpp:700
-msgid "Save presets bundle as:"
-msgstr "Zapisz paczkę ustawień jako:"
-
-#: src/slic3r/GUI/MainFrame.cpp:751
-#, c-format
-msgid "%d presets successfully imported."
-msgstr "pomyślnie zaimportowano %d zestawów ustawień."
-
-#: src/slic3r/GUI/MsgDialog.cpp:66
-msgid "Slic3r error"
-msgstr "Błąd Slic3r"
-
-#: src/slic3r/GUI/MsgDialog.cpp:66
-msgid "Slic3r has encountered an error"
-msgstr "Slic3r napotkał błąd"
-
-#: src/slic3r/GUI/MsgDialog.cpp:84
-msgid "Copy to clipboard"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:107
-msgid "Info"
-msgstr "Info"
-
-#: src/slic3r/GUI/Plater.cpp:126
-msgid "Volume"
-msgstr "Objętość"
-
-#: src/slic3r/GUI/Plater.cpp:127
-msgid "Facets"
-msgstr "Powierzchnie"
-
-#: src/slic3r/GUI/Plater.cpp:128
-msgid "Materials"
-msgstr "Materiały"
-
-#: src/slic3r/GUI/Plater.cpp:131
-msgid "Manifold"
-msgstr "Model zamknięty"
-
-#: src/slic3r/GUI/Plater.cpp:174
-msgid "Sliced Info"
-msgstr "Informacje o cięciu"
-
-#: src/slic3r/GUI/Plater.cpp:193 src/slic3r/GUI/Plater.cpp:823
-msgid "Used Filament (m)"
-msgstr "Użyty filament (m)"
-
-#: src/slic3r/GUI/Plater.cpp:194
-msgid "Used Filament (mm³)"
-msgstr "Użyty filament (mm³)"
-
-#: src/slic3r/GUI/Plater.cpp:195
-msgid "Used Filament (g)"
-msgstr "Użyty filament (g)"
-
-#: src/slic3r/GUI/Plater.cpp:196 src/slic3r/GUI/Plater.cpp:838
-#: src/libslic3r/PrintConfig.cpp:718
-msgid "Cost"
-msgstr "Koszt"
-
-#: src/slic3r/GUI/Plater.cpp:197 src/slic3r/GUI/Plater.cpp:852
-msgid "Estimated printing time"
-msgstr "Szacowany czas druku"
-
-#: src/slic3r/GUI/Plater.cpp:198
-msgid "Number of tool changes"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:361
-msgid "Support"
-msgstr "Podpory"
-
-#: src/slic3r/GUI/Plater.cpp:364
-msgid "Select what kind of support do you need"
-msgstr "Wybierz rodzaj potrzebnych podpór"
-
-#: src/slic3r/GUI/Plater.cpp:365 src/libslic3r/GCode/PreviewData.cpp:162
-msgid "None"
-msgstr "Brak"
-
-#: src/slic3r/GUI/Plater.cpp:366 src/libslic3r/PrintConfig.cpp:1904
-msgid "Support on build plate only"
-msgstr "Podpory jedynie na powierzchni stołu"
-
-#: src/slic3r/GUI/Plater.cpp:367
-msgid "Everywhere"
-msgstr "Wszędzie"
-
-#: src/slic3r/GUI/Plater.cpp:379 src/slic3r/GUI/Tab.cpp:977
-msgid "Brim"
-msgstr "Brim (obramowanie)"
-
-#: src/slic3r/GUI/Plater.cpp:381
-msgid ""
-"This flag enables the brim that will be printed around each object on the "
-"first layer."
-msgstr ""
-"Ta flaga włącza brim, który zostanie wydrukowany na pierwszej warstwie wokół "
-"każdego modelu."
-
-#: src/slic3r/GUI/Plater.cpp:390
-msgid "Purging volumes"
-msgstr "Objętości czyszczenia"
-
-#: src/slic3r/GUI/Plater.cpp:556
-msgid "Print settings"
-msgstr "Ustawienia druku"
-
-#: src/slic3r/GUI/Plater.cpp:557 src/slic3r/GUI/Tab.cpp:1380
-#: src/slic3r/GUI/Tab.cpp:1381
-msgid "Filament"
-msgstr "Filament"
-
-#: src/slic3r/GUI/Plater.cpp:558 src/slic3r/GUI/Preset.cpp:1158
-msgid "SLA print"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:559 src/slic3r/GUI/Preset.cpp:1159
-msgid "SLA material"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:560
-msgid "Printer"
-msgstr "Drukarka"
-
-#: src/slic3r/GUI/Plater.cpp:588
-msgid "Send to printer"
-msgstr "Wyślij do drukarki"
-
-#: src/slic3r/GUI/Plater.cpp:607
-msgid "Slice now"
-msgstr "Cięcie"
-
-#: src/slic3r/GUI/Plater.cpp:787
-#, c-format
-msgid "%d (%d shells)"
-msgstr "%d (%d obrysów)"
-
-#: src/slic3r/GUI/Plater.cpp:792
-#, c-format
-msgid "Auto-repaired (%d errors)"
-msgstr "Naprawiono automatycznie (%d błędów)"
-
-#: src/slic3r/GUI/Plater.cpp:795
-#, c-format
-msgid ""
-"%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d "
-"facets reversed, %d backwards edges"
-msgstr ""
-"%d nieprawidłowych powierzchni, %d naprawionych krawędzi, %d powierzchni "
-"usunięto, %d powierzchni dodano, %d powierzchni odwrócono, %d odwróconych "
-"krawędzi"
-
-#: src/slic3r/GUI/Plater.cpp:805
-msgid "Yes"
-msgstr "Tak"
-
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
-msgid "objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
-msgid "wipe tower"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:855
-msgid "normal mode"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:859
-msgid "silent mode"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1304
-msgid "Loading"
-msgstr "Wczytywanie"
-
-#: src/slic3r/GUI/Plater.cpp:1314
-#, c-format
-msgid "Processing input file %s\n"
-msgstr "Przetwarzanie pliku wejściowego %s\n"
-
-#: src/slic3r/GUI/Plater.cpp:1366
-msgid ""
-"This file contains several objects positioned at multiple heights. Instead "
-"of considering them as multiple objects, should I consider\n"
-"this file as a single object having multiple parts?\n"
-msgstr ""
-"Ten plik zawiera kilka modeli umieszczonych na różnych wysokościach. "
-"Potraktować go jako\n"
-"jeden model składający się z kilku części?\n"
-
-#: src/slic3r/GUI/Plater.cpp:1369 src/slic3r/GUI/Plater.cpp:1411
-msgid "Multi-part object detected"
-msgstr "Wykryto obiekt wieloczęściowy"
-
-#: src/slic3r/GUI/Plater.cpp:1388
-#, c-format
-msgid ""
-"You can't to add the object(s) from %s because of one or some of them "
-"is(are) multi-part"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1408
-msgid ""
-"Multiple objects were loaded for a multi-material printer.\n"
-"Instead of considering them as multiple objects, should I consider\n"
-"these files to represent a single object having multiple parts?\n"
-msgstr ""
-"Kilka obiektów zostało załadowanych dla drukarki typu multi-material.\n"
-"Traktować je jako jeden model zawierający kilka części?\n"
-
-#: src/slic3r/GUI/Plater.cpp:1424
-msgid "Loaded"
-msgstr "Wczytano"
-
-#: src/slic3r/GUI/Plater.cpp:1492
-msgid ""
-"Your object appears to be too large, so it was automatically scaled down to "
-"fit your print bed."
-msgstr ""
-"Importowany model przekracza wymiary przestrzeni roboczej i został "
-"przeskalowany do odpowiednich rozmiarów."
-
-#: src/slic3r/GUI/Plater.cpp:1493
-msgid "Object too large?"
-msgstr "Model zbyt duży?"
-
-#: src/slic3r/GUI/Plater.cpp:1536
-msgid "Export print config"
-msgstr "Export konfiguracji druku"
-
-#: src/slic3r/GUI/Plater.cpp:1538
-msgid "Save file as:"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1702
-msgid "Arranging canceled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1705
-msgid "Arranging"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1736
-msgid "Could not arrange model objects! Some geometries may be invalid."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1740
-msgid "Arranging done."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1782
-msgid "Orientation search canceled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1787
-msgid "Searching for optimal orientation"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1797
-msgid "Orientation found."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1818
-msgid ""
-"The selected object can't be split because it contains more than one volume/"
-"material."
-msgstr ""
-"Wybrany model nie może być podzielony ponieważ składa się z więcej niż "
-"jednej części lub zawiera więcej niż jeden materiał."
-
-#: src/slic3r/GUI/Plater.cpp:1945 src/slic3r/GUI/PrintHostDialogs.cpp:174
-msgid "Cancelling"
-msgstr "Anulowanie"
-
-#: src/slic3r/GUI/Plater.cpp:1962
-msgid "Another export job is currently running."
-msgstr "W tej chwili trwa inny proces eksportu."
-
-#: src/slic3r/GUI/Plater.cpp:2215
-msgid "Export failed"
-msgstr "Niepowodzenie eksportu"
-
-#: src/slic3r/GUI/Plater.cpp:2219 src/slic3r/GUI/PrintHostDialogs.cpp:175
-msgid "Cancelled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2346 src/slic3r/GUI/Tab.cpp:2736
-msgid "Delete"
-msgstr "Usuń"
-
-#: src/slic3r/GUI/Plater.cpp:2346
-msgid "Remove the selected object"
-msgstr "Usuń wybrany model"
-
-#: src/slic3r/GUI/Plater.cpp:2349
-msgid "Increase copies"
-msgstr "Zwiększ kopie"
-
-#: src/slic3r/GUI/Plater.cpp:2349
-msgid "Place one more copy of the selected object"
-msgstr "Umieść jedną kopię zaznaczonego modelu"
-
-#: src/slic3r/GUI/Plater.cpp:2351
-msgid "Decrease copies"
-msgstr "Zmniejsz kopie"
-
-#: src/slic3r/GUI/Plater.cpp:2351
-msgid "Remove one copy of the selected object"
-msgstr "Usuń jedną kopię wybranego modelu"
-
-#: src/slic3r/GUI/Plater.cpp:2353
-msgid "Set number of copies"
-msgstr "Ustaw ilość kopii"
-
-#: src/slic3r/GUI/Plater.cpp:2353
-msgid "Change the number of copies of the selected object"
-msgstr "Zmień ilość kopii wybranego modelu"
-
-#: src/slic3r/GUI/Plater.cpp:2363
-msgid "Reload from Disk"
-msgstr "Wczytaj ponownie z dysku"
-
-#: src/slic3r/GUI/Plater.cpp:2363
-msgid "Reload the selected file from Disk"
-msgstr "Wczytaj ponownie wybrany plik z dysku"
-
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export object as STL"
-msgstr "Eksport modelu jako STL"
-
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export this single object as STL file"
-msgstr "Eksport pojedynczego modelu jako plik STL"
-
-#: src/slic3r/GUI/Plater.cpp:2375
-msgid "Along X axis"
-msgstr "Wzdłuż osi X"
-
-#: src/slic3r/GUI/Plater.cpp:2375
-msgid "Mirror the selected object along the X axis"
-msgstr "Odbicie lustrzane wybranego modelu w osi X"
-
-#: src/slic3r/GUI/Plater.cpp:2377
-msgid "Along Y axis"
-msgstr "Wzdłuż osi Y"
-
-#: src/slic3r/GUI/Plater.cpp:2377
-msgid "Mirror the selected object along the Y axis"
-msgstr "Odbicie lustrzane wybranego modelu w osi Y"
-
-#: src/slic3r/GUI/Plater.cpp:2379
-msgid "Along Z axis"
-msgstr "Wzdłuż osi Z"
-
-#: src/slic3r/GUI/Plater.cpp:2379
-msgid "Mirror the selected object along the Z axis"
-msgstr "Odbicie lustrzane wybranego modelu w osi Z"
-
-#: src/slic3r/GUI/Plater.cpp:2382
-msgid "Mirror"
-msgstr "Lustrzane"
-
-#: src/slic3r/GUI/Plater.cpp:2382
-msgid "Mirror the selected object"
-msgstr "Odbicie lustrzane wybranego modelu"
-
-#: src/slic3r/GUI/Plater.cpp:2400
-msgid "To objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2400 src/slic3r/GUI/Plater.cpp:2431
-msgid "Split the selected object into individual objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2402
-msgid "To parts"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2402 src/slic3r/GUI/Plater.cpp:2451
-msgid "Split the selected object into individual sub-parts"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2405 src/slic3r/GUI/Plater.cpp:2431
-#: src/slic3r/GUI/Plater.cpp:2451
-msgid "Split"
-msgstr "Podziel"
-
-#: src/slic3r/GUI/Plater.cpp:2405
-msgid "Split the selected object"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2435
-msgid "Optimize orientation"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2435
-msgid "Optimize the rotation of the object for better print results."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2795
-msgid "Save G-code file as:"
-msgstr "Zapisz plik G-code jako:"
-
-#: src/slic3r/GUI/Plater.cpp:2795
-msgid "Save Zip file as:"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2845
-#, c-format
-msgid "STL file exported to %s"
-msgstr "Plik STL został wyeksportowany do %s"
-
-#: src/slic3r/GUI/Plater.cpp:2861
-#, c-format
-msgid "AMF file exported to %s"
-msgstr "Plik AMF został wyeksportowany do %s"
-
-#: src/slic3r/GUI/Plater.cpp:2864
-#, c-format
-msgid "Error exporting AMF file %s"
-msgstr "Błąd eksportu pliku AMF %s"
-
-#: src/slic3r/GUI/Plater.cpp:2891
-#, c-format
-msgid "3MF file exported to %s"
-msgstr "Plik 3MF został wyeksportowany do %s"
-
-#: src/slic3r/GUI/Plater.cpp:2894
-#, c-format
-msgid "Error exporting 3MF file %s"
-msgstr "Błąd eksportu pliku 3MF %s"
-
-#: src/slic3r/GUI/Preferences.cpp:17 src/slic3r/GUI/Tab.cpp:1712
-#: src/slic3r/GUI/Tab.cpp:1911
-msgid "General"
-msgstr "Ogólne"
-
-#: src/slic3r/GUI/Preferences.cpp:34
-msgid "Remember output directory"
-msgstr "Zapamiętaj katalog wyjściowy"
-
-#: src/slic3r/GUI/Preferences.cpp:36
-msgid ""
-"If this is enabled, Slic3r will prompt the last output directory instead of "
-"the one containing the input files."
-msgstr ""
-"Włączenie spowoduje, że Slic3r będzie za każdym razem pytał gdzie "
-"wyeksportować plik zamiast używać katalogu z plikami wejściowymi."
-
-#: src/slic3r/GUI/Preferences.cpp:42
-msgid "Auto-center parts"
-msgstr "Rozmieść modele automatycznie"
-
-#: src/slic3r/GUI/Preferences.cpp:44
-msgid ""
-"If this is enabled, Slic3r will auto-center objects around the print bed "
-"center."
-msgstr ""
-"Spowoduje, że Slic3r będzie automatycznie umieszczał modele wokół centrum "
-"stołu."
-
-#: src/slic3r/GUI/Preferences.cpp:50
-msgid "Background processing"
-msgstr "Przetwarzanie w tle"
-
-#: src/slic3r/GUI/Preferences.cpp:52
-msgid ""
-"If this is enabled, Slic3r will pre-process objects as soon as they're "
-"loaded in order to save time when exporting G-code."
-msgstr ""
-"Spowoduje, że Slic3r będzie automatycznie procesował modele jak tylko "
-"zostaną załadowane aby zmniejszyć czas eksportu G-code."
-
-#: src/slic3r/GUI/Preferences.cpp:74
-msgid "Suppress \" - default - \" presets"
-msgstr "Ukryj \" - domyślne - \" zestawy ustawień"
-
-#: src/slic3r/GUI/Preferences.cpp:76
-msgid ""
-"Suppress \" - default - \" presets in the Print / Filament / Printer "
-"selections once there are any other valid presets available."
-msgstr ""
-"Ukryj \" - domyślne - \" zestawy ustawień w zakładkach Druk / Filament / "
-"Drukarka gdy dostępne są inne kompatybilne ustawienia."
-
-#: src/slic3r/GUI/Preferences.cpp:82
-msgid "Show incompatible print and filament presets"
-msgstr "Pokaż niekompatybilne ustawienia druku i filamentów"
-
-#: src/slic3r/GUI/Preferences.cpp:84
-msgid ""
-"When checked, the print and filament presets are shown in the preset editor "
-"even if they are marked as incompatible with the active printer"
-msgstr ""
-"Zaznaczenie tej opcji spowoduje wyświetlanie wszystkich ustawień druku i "
-"filamentów w edytorze zestawów ustawień, nawet jeśli są oznaczone jak "
-"niekompatybilne z wybranÄ… drukarkÄ…"
-
-#: src/slic3r/GUI/Preferences.cpp:90
-msgid "Use legacy OpenGL 1.1 rendering"
-msgstr "Użyj renderowania OpenGL 1.1 (przestarzałe)"
-
-#: src/slic3r/GUI/Preferences.cpp:92
-msgid ""
-"If you have rendering issues caused by a buggy OpenGL 2.0 driver, you may "
-"try to check this checkbox. This will disable the layer height editing and "
-"anti aliasing, so it is likely better to upgrade your graphics driver."
-msgstr ""
-"Jeśli napotykasz błędy spowodowane problematycznym sterownikiem OpenGL 2.0, "
-"spróbuj zaznaczyć to pole. Wyłączy to edycję wysokości warstwy i anti-"
-"aliasing, więc prawdopodobnie lepiej będzie zaktualizować sterowniki karty "
-"graficznej."
-
-#: src/slic3r/GUI/Preferences.cpp:115
-msgid "You need to restart Slic3r to make the changes effective."
-msgstr "Trzeba zrestartować Slic3r aby wprowadzić zmiany."
-
-#: src/slic3r/GUI/Preset.cpp:170
-msgid "modified"
-msgstr ""
-
-#: src/slic3r/GUI/Preset.cpp:862 src/slic3r/GUI/Preset.cpp:902
-#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:962
-#: src/slic3r/GUI/PresetBundle.cpp:1459 src/slic3r/GUI/PresetBundle.cpp:1512
-msgid "System presets"
-msgstr "Ustawienia systemowe"
-
-#: src/slic3r/GUI/Preset.cpp:906 src/slic3r/GUI/Preset.cpp:966
-#: src/slic3r/GUI/PresetBundle.cpp:1517
-msgid "User presets"
-msgstr "Zestawy użytkownika"
-
-#: src/slic3r/GUI/Preset.cpp:1157
-msgid "filament"
-msgstr ""
-
-#: src/slic3r/GUI/PresetHints.cpp:28
-#, c-format
-msgid ""
-"If estimated layer time is below ~%ds, fan will run at %d%% and print speed "
-"will be reduced so that no less than %ds are spent on that layer (however, "
-"speed will never be reduced below %dmm/s)."
-msgstr ""
-"Jeśli szacowany czas druku warstwy jest niższy niż ~%d s, wentylator będzie "
-"pracował na %d %% a prędkość druku zostanie obniżona tak, aby warstwa była "
-"drukowana przez nie mniej niż %d s (jednakże prędkość nie zejdzie poniżej "
-"%d mm/s)."
-
-#: src/slic3r/GUI/PresetHints.cpp:32
-#, c-format
-msgid ""
-"\n"
-"If estimated layer time is greater, but still below ~%ds, fan will run at a "
-"proportionally decreasing speed between %d%% and %d%%."
-msgstr ""
-"\n"
-"Jeśli szacowany czas jest wyższy, ale poniżej ~%ds, wentylator będzie "
-"pracował z proporcjonalnie zmniejszaną prędkością poniędzy %d%% a %d%%."
-
-#: src/slic3r/GUI/PresetHints.cpp:36
-msgid ""
-"\n"
-"During the other layers, fan "
-msgstr ""
-"\n"
-"Na pozostałych warstwach, wentylator "
-
-#: src/slic3r/GUI/PresetHints.cpp:38
-msgid "Fan "
-msgstr "Wentylator "
-
-#: src/slic3r/GUI/PresetHints.cpp:43
-#, c-format
-msgid "will always run at %d%% "
-msgstr "będzie zawsze pracować w %d %% "
-
-#: src/slic3r/GUI/PresetHints.cpp:46
-#, c-format
-msgid "except for the first %d layers"
-msgstr "za wyjÄ…tkiem pierwszych %d warstw"
-
-#: src/slic3r/GUI/PresetHints.cpp:50
-msgid "except for the first layer"
-msgstr "za wyjÄ…tkiem pierwszej warstwy"
-
-#: src/slic3r/GUI/PresetHints.cpp:52
-msgid "will be turned off."
-msgstr "będzie wyłączony."
-
-#: src/slic3r/GUI/PresetHints.cpp:153
-msgid "external perimeters"
-msgstr "obrysów zewnętrznych"
-
-#: src/slic3r/GUI/PresetHints.cpp:162
-msgid "perimeters"
-msgstr "obrysy"
-
-#: src/slic3r/GUI/PresetHints.cpp:171
-msgid "infill"
-msgstr "wypełnienia"
-
-#: src/slic3r/GUI/PresetHints.cpp:181
-msgid "solid infill"
-msgstr "zwarte wypełnienie"
-
-#: src/slic3r/GUI/PresetHints.cpp:189
-msgid "top solid infill"
-msgstr "zwarte wypełnienie na szczycie"
-
-#: src/slic3r/GUI/PresetHints.cpp:200
-msgid "support"
-msgstr "podpora"
-
-#: src/slic3r/GUI/PresetHints.cpp:210
-msgid "support interface"
-msgstr "warstwa łącząca podpory z modelem"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "First layer volumetric"
-msgstr "Na pierwszej warstwie"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "Bridging volumetric"
-msgstr "Mosty objętościowe"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "Volumetric"
-msgstr "Objętościowy"
-
-#: src/slic3r/GUI/PresetHints.cpp:217
-msgid " flow rate is maximized "
-msgstr " przepływ osiąga wartości szczytowe "
-
-#: src/slic3r/GUI/PresetHints.cpp:220
-msgid "by the print profile maximum"
-msgstr "maksimum zależny od profilu wydruku"
-
-#: src/slic3r/GUI/PresetHints.cpp:221
-msgid "when printing "
-msgstr "podczas druku "
-
-#: src/slic3r/GUI/PresetHints.cpp:222
-msgid " with a volumetric rate "
-msgstr " ze współczynnikiem objętościowym "
-
-#: src/slic3r/GUI/PresetHints.cpp:226
-#, c-format
-msgid "%3.2f mm³/s"
-msgstr "%3.2f mm³/s"
-
-#: src/slic3r/GUI/PresetHints.cpp:228
-#, c-format
-msgid " at filament speed %3.2f mm/s."
-msgstr " z prędkością filamentu %3.2f mm/s."
-
-#: src/slic3r/GUI/PresetHints.cpp:247
-msgid ""
-"Recommended object thin wall thickness: Not available due to invalid layer "
-"height."
-msgstr ""
-"Zalecana grubość ścian dla modelu: niedostępna ze względu na niewłaściwą "
-"wysokość warstwy."
-
-#: src/slic3r/GUI/PresetHints.cpp:264
-#, c-format
-msgid "Recommended object thin wall thickness for layer height %.2f and "
-msgstr "Zalecana grubość ściany modelu dla wysokości warstwy %.2f i "
-
-#: src/slic3r/GUI/PresetHints.cpp:271
-#, c-format
-msgid "%d lines: %.2lf mm"
-msgstr "%d linii: %.2lf mm"
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
-msgid "Send G-Code to printer host"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
-msgid "Upload to Printer Host with the following filename:"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:31
-msgid "Start printing after upload"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:33
-msgid "Use forward slashes ( / ) as a directory separator if needed."
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:111
-msgid "Cancel selected"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:113
-msgid "Show error message"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:115
-msgid "Close"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:152
-#: src/slic3r/GUI/PrintHostDialogs.cpp:171
-msgid "Enqueued"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:172
-msgid "Uploading"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:176
-msgid "Completed"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:214
-msgid "Error uploading to print host:"
-msgstr ""
-
-#: src/slic3r/GUI/RammingChart.cpp:23
-msgid "NO RAMMING AT ALL"
-msgstr "BRAK WYCISKANIA"
-
-#: src/slic3r/GUI/RammingChart.cpp:76
-msgid "Time"
-msgstr "Czas"
-
-#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78 src/libslic3r/PrintConfig.cpp:603
-#: src/libslic3r/PrintConfig.cpp:653 src/libslic3r/PrintConfig.cpp:670
-#: src/libslic3r/PrintConfig.cpp:2352 src/libslic3r/PrintConfig.cpp:2360
-#: src/libslic3r/PrintConfig.cpp:2432 src/libslic3r/PrintConfig.cpp:2440
-msgid "s"
-msgstr ""
-
-#: src/slic3r/GUI/RammingChart.cpp:81
-msgid "Volumetric speed"
-msgstr "Prędkość objętościowa"
-
-#: src/slic3r/GUI/SysInfoDialog.cpp:40
-msgid "Slic3r Prusa Edition - System Information"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:49 src/libslic3r/PrintConfig.cpp:202
-msgid "Compatible printers"
-msgstr "Kompatybilne drukarki"
-
-#: src/slic3r/GUI/Tab.cpp:50
-msgid "Select the printers this profile is compatible with."
-msgstr "Wybierz drukarki kompatybilne z tym profilem."
-
-#: src/slic3r/GUI/Tab.cpp:55 src/libslic3r/PrintConfig.cpp:215
-msgid "Compatible print profiles"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:56
-msgid "Select the print profiles this profile is compatible with."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:118
-msgid "Save current "
-msgstr "Zapisz bieżące "
-
-#: src/slic3r/GUI/Tab.cpp:119
-msgid "Delete this preset"
-msgstr "Usuń ten zestaw ustawień"
-
-#: src/slic3r/GUI/Tab.cpp:131
-msgid ""
-"Hover the cursor over buttons to find more information \n"
-"or click this button."
-msgstr ""
-"Umieść kursor nad przyciskiem aby uzyskać więcej informacji\n"
-"lub kliknij ten przycisk."
-
-#: src/slic3r/GUI/Tab.cpp:824
-msgid "It's a default preset."
-msgstr "Domyślny zestaw ustawień."
-
-#: src/slic3r/GUI/Tab.cpp:825
-msgid "It's a system preset."
-msgstr "To jest systemowy zestaw ustawień."
-
-#: src/slic3r/GUI/Tab.cpp:826
-msgid "Current preset is inherited from "
-msgstr "Obecny zestaw ustawień jest dziedziczony z "
-
-#: src/slic3r/GUI/Tab.cpp:831
-msgid "It can't be deleted or modified. "
-msgstr "Nie można usunąć ani zmodyfikować. "
-
-#: src/slic3r/GUI/Tab.cpp:832
-msgid ""
-"Any modifications should be saved as a new preset inherited from this one. "
-msgstr ""
-"Każda modyfikacja powinna zostać zapisana jako nowy zestaw ustawień "
-"dziedziczony z obecnego. "
-
-#: src/slic3r/GUI/Tab.cpp:833
-msgid "To do that please specify a new name for the preset."
-msgstr "Aby to zrobić ustaw nową nazwę zestawu ustawień."
-
-#: src/slic3r/GUI/Tab.cpp:837
-msgid "Additional information:"
-msgstr "Dodatkowe informacje:"
-
-#: src/slic3r/GUI/Tab.cpp:843
-msgid "printer model"
-msgstr "model drukarki"
-
-#: src/slic3r/GUI/Tab.cpp:851
-msgid "default print profile"
-msgstr "domyślny profil druku"
-
-#: src/slic3r/GUI/Tab.cpp:854
-msgid "default filament profile"
-msgstr "domyślny profil filamentu"
-
-#: src/slic3r/GUI/Tab.cpp:868
-msgid "default SLA material profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:872
-msgid "default SLA print profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:919 src/slic3r/GUI/Tab.cpp:3174
-msgid "Layers and perimeters"
-msgstr "Warstwy i obrysy"
-
-#: src/slic3r/GUI/Tab.cpp:920 src/libslic3r/PrintConfig.cpp:46
-msgid "Layer height"
-msgstr "Wysokość warstwy"
-
-#: src/slic3r/GUI/Tab.cpp:924
-msgid "Vertical shells"
-msgstr "Powłoka pionowa"
-
-#: src/slic3r/GUI/Tab.cpp:935
-msgid "Horizontal shells"
-msgstr "Powłoka pozioma"
-
-#: src/slic3r/GUI/Tab.cpp:936 src/libslic3r/PrintConfig.cpp:1788
-msgid "Solid layers"
-msgstr "Zwarte warstwy"
-
-#: src/slic3r/GUI/Tab.cpp:941
-msgid "Quality (slower slicing)"
-msgstr "Jakość (wolniejsze cięcie)"
-
-#: src/slic3r/GUI/Tab.cpp:958
-msgid "Reducing printing time"
-msgstr "Obniżanie czasu wydruku"
-
-#: src/slic3r/GUI/Tab.cpp:970
-msgid "Skirt and brim"
-msgstr "Skirt i brim"
-
-#: src/slic3r/GUI/Tab.cpp:987
-msgid "Raft"
-msgstr "Tratwa (raft)"
-
-#: src/slic3r/GUI/Tab.cpp:991
-msgid "Options for support material and raft"
-msgstr "Opcje materiału podporowego i tratwy (raft)"
-
-#: src/slic3r/GUI/Tab.cpp:1006
-msgid "Speed for print moves"
-msgstr "Prędkość ruchów drukujących"
-
-#: src/slic3r/GUI/Tab.cpp:1018
-msgid "Speed for non-print moves"
-msgstr "Prędkość ruchów jałowych"
-
-#: src/slic3r/GUI/Tab.cpp:1021
-msgid "Modifiers"
-msgstr "Modyfikatory"
-
-#: src/slic3r/GUI/Tab.cpp:1024
-msgid "Acceleration control (advanced)"
-msgstr "Ustawienia przyspieszeń (zaawansowane)"
-
-#: src/slic3r/GUI/Tab.cpp:1031
-msgid "Autospeed (advanced)"
-msgstr "Automatyczne dostosowanie prędkości (zaawansowane)"
-
-#: src/slic3r/GUI/Tab.cpp:1037
-msgid "Multiple Extruders"
-msgstr "Kilka ekstruderów"
-
-#: src/slic3r/GUI/Tab.cpp:1045
-msgid "Ooze prevention"
-msgstr "Zapobieganie wyciekom (ooze)"
-
-#: src/slic3r/GUI/Tab.cpp:1062
-msgid "Extrusion width"
-msgstr "Szerokość ekstruzji"
-
-#: src/slic3r/GUI/Tab.cpp:1072
-msgid "Overlap"
-msgstr "Nakładanie"
-
-#: src/slic3r/GUI/Tab.cpp:1075
-msgid "Flow"
-msgstr "Przepływ"
-
-#: src/slic3r/GUI/Tab.cpp:1078
-msgid "Other"
-msgstr "Inne"
-
-#: src/slic3r/GUI/Tab.cpp:1085 src/slic3r/GUI/Tab.cpp:3213
-msgid "Output options"
-msgstr "Opcje wyjściowe"
-
-#: src/slic3r/GUI/Tab.cpp:1086
-msgid "Sequential printing"
-msgstr "Drukowanie sekwencyjne (model po modelu)"
-
-#: src/slic3r/GUI/Tab.cpp:1088
-msgid "Extruder clearance (mm)"
-msgstr "Odstęp od ekstrudera (mm)"
-
-#: src/slic3r/GUI/Tab.cpp:1097 src/slic3r/GUI/Tab.cpp:3214
-msgid "Output file"
-msgstr "Plik wyjściowy"
-
-#: src/slic3r/GUI/Tab.cpp:1103 src/libslic3r/PrintConfig.cpp:1438
-msgid "Post-processing scripts"
-msgstr "Skrypty do przetwarzania końcowego"
-
-#: src/slic3r/GUI/Tab.cpp:1109 src/slic3r/GUI/Tab.cpp:1110
-#: src/slic3r/GUI/Tab.cpp:1483 src/slic3r/GUI/Tab.cpp:1484
-#: src/slic3r/GUI/Tab.cpp:1883 src/slic3r/GUI/Tab.cpp:1884
-#: src/slic3r/GUI/Tab.cpp:1964 src/slic3r/GUI/Tab.cpp:1965
-#: src/slic3r/GUI/Tab.cpp:3119 src/slic3r/GUI/Tab.cpp:3120
-msgid "Notes"
-msgstr "Notatki"
-
-#: src/slic3r/GUI/Tab.cpp:1116 src/slic3r/GUI/Tab.cpp:1491
-#: src/slic3r/GUI/Tab.cpp:1890 src/slic3r/GUI/Tab.cpp:1971
-#: src/slic3r/GUI/Tab.cpp:3127 src/slic3r/GUI/Tab.cpp:3219
-msgid "Dependencies"
-msgstr "Zależności"
-
-#: src/slic3r/GUI/Tab.cpp:1117 src/slic3r/GUI/Tab.cpp:1492
-#: src/slic3r/GUI/Tab.cpp:1891 src/slic3r/GUI/Tab.cpp:1972
-#: src/slic3r/GUI/Tab.cpp:3128 src/slic3r/GUI/Tab.cpp:3220
-msgid "Profile dependencies"
-msgstr "Zależności profilowe"
-
-#: src/slic3r/GUI/Tab.cpp:1161
-#, no-c-format
-msgid ""
-"The Spiral Vase mode requires:\n"
-"- one perimeter\n"
-"- no top solid layers\n"
-"- 0% fill density\n"
-"- no support material\n"
-"- no ensure_vertical_shell_thickness\n"
-"\n"
-"Shall I adjust those settings in order to enable Spiral Vase?"
-msgstr ""
-"Wymagania trybu wazy:\n"
-"- jeden obrys\n"
-"- brak warstw górnych\n"
-"- 0% wypełnienia\n"
-"- brak materiału podporowego\n"
-"- brak opcji \"zagwarantuj odpowiednią grubość ścianki\"\n"
-"\n"
-"Czy ustawić te parametry odpowiednio dla trybu wazy?"
-
-#: src/slic3r/GUI/Tab.cpp:1168
-msgid "Spiral Vase"
-msgstr "Tryb Wazy"
-
-#: src/slic3r/GUI/Tab.cpp:1191
-msgid ""
-"The Wipe Tower currently supports the non-soluble supports only\n"
-"if they are printed with the current extruder without triggering a tool "
-"change.\n"
-"(both support_material_extruder and support_material_interface_extruder need "
-"to be set to 0).\n"
-"\n"
-"Shall I adjust those settings in order to enable the Wipe Tower?"
-msgstr ""
-"Użycie wieży czyszczącej jest możliwe jedynie przy użyciu nierozpuszczalnych "
-"podpór\n"
-"gdy są drukowane z obecnie używanego ekstrudera, bez inicjowania jego "
-"zmiany.\n"
-"(zarówno support_material_extruder i support_material_interface_extruder "
-"muszą być ustawione na 0).\n"
-"\n"
-"Zmienić te ustawienia aby włączyć wieżę czyszczącą?"
-
-#: src/slic3r/GUI/Tab.cpp:1195 src/slic3r/GUI/Tab.cpp:1212
-msgid "Wipe Tower"
-msgstr "Wieża Czyszcząca"
-
-#: src/slic3r/GUI/Tab.cpp:1209
-msgid ""
-"For the Wipe Tower to work with the soluble supports, the support layers\n"
-"need to be synchronized with the object layers.\n"
-"\n"
-"Shall I synchronize support layers in order to enable the Wipe Tower?"
-msgstr ""
-"Aby wieża czyszcząca działała przy rozpuszczalnych podporach, warstwy "
-"podporowe muszą być zsynchronizowane z warstwami modelu.\n"
-"\n"
-"Zsynchronizować warstwy podporowe aby włączyć wieżę czyszczącą?"
-
-#: src/slic3r/GUI/Tab.cpp:1227
-msgid ""
-"Supports work better, if the following feature is enabled:\n"
-"- Detect bridging perimeters\n"
-"\n"
-"Shall I adjust those settings for supports?"
-msgstr ""
-"Druk podpór daje lepsze efekty, gdy następująca funkcja jest włączona:\n"
-"- Wykrywanie mostów przy obrysach\n"
-"\n"
-"Zmienić tą opcję dla druku podpór?"
-
-#: src/slic3r/GUI/Tab.cpp:1230
-msgid "Support Generator"
-msgstr "Generator Podpór"
-
-# Used in context: _("The ") + str_fill_pattern + _(" infill pattern is not supposed to work at 100% density.\n")
-#: src/slic3r/GUI/Tab.cpp:1272
-msgid "The "
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1272
-#, no-c-format
-msgid ""
-" infill pattern is not supposed to work at 100% density.\n"
-"\n"
-"Shall I switch to rectilinear fill pattern?"
-msgstr ""
-" wzór wypełnienia nie działa z gęstością 100%.\n"
-"\n"
-"Zmienić wzór wypełnienia na linie równoległe?"
-
-#: src/slic3r/GUI/Tab.cpp:1388
-msgid "Temperature "
-msgstr "Temperatura "
-
-#: src/slic3r/GUI/Tab.cpp:1394
-msgid "Bed"
-msgstr "Stół"
-
-#: src/slic3r/GUI/Tab.cpp:1399
-msgid "Cooling"
-msgstr "Chłodzenie"
-
-#: src/slic3r/GUI/Tab.cpp:1400 src/libslic3r/PrintConfig.cpp:1333
-#: src/libslic3r/PrintConfig.cpp:2212
-msgid "Enable"
-msgstr "Włącz"
-
-#: src/slic3r/GUI/Tab.cpp:1411
-msgid "Fan settings"
-msgstr "Ustawienia wentylatora"
-
-#: src/slic3r/GUI/Tab.cpp:1412
-msgid "Fan speed"
-msgstr "Prędkość wentylatora"
-
-#: src/slic3r/GUI/Tab.cpp:1420
-msgid "Cooling thresholds"
-msgstr "Progi chłodzenia"
-
-#: src/slic3r/GUI/Tab.cpp:1426
-msgid "Filament properties"
-msgstr "Właściwości filamentu"
-
-#: src/slic3r/GUI/Tab.cpp:1430
-msgid "Print speed override"
-msgstr "Nadpisanie prędkości druku"
-
-#: src/slic3r/GUI/Tab.cpp:1440
-msgid "Toolchange parameters with single extruder MM printers"
-msgstr "Parametry zmiany narzędzia dla drukarek MM z jednym ekstruderem"
-
-#: src/slic3r/GUI/Tab.cpp:1455
-msgid "Ramming settings"
-msgstr "Ustawienia wyciskania"
-
-#: src/slic3r/GUI/Tab.cpp:1470 src/slic3r/GUI/Tab.cpp:1846
-msgid "Custom G-code"
-msgstr "Własny G-code"
-
-#: src/slic3r/GUI/Tab.cpp:1471 src/slic3r/GUI/Tab.cpp:1847
-#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:1833
-msgid "Start G-code"
-msgstr "G-code startowy"
-
-#: src/slic3r/GUI/Tab.cpp:1477 src/slic3r/GUI/Tab.cpp:1853
-#: src/libslic3r/PrintConfig.cpp:333 src/libslic3r/PrintConfig.cpp:344
-msgid "End G-code"
-msgstr "Końcowy G-code"
-
-#: src/slic3r/GUI/Tab.cpp:1588 src/slic3r/GUI/Tab.cpp:1642
-msgid " Browse "
-msgstr " PrzeglÄ…daj "
-
-#: src/slic3r/GUI/Tab.cpp:1605 src/slic3r/GUI/Tab.cpp:1788
-msgid "Test"
-msgstr "Test"
-
-#: src/slic3r/GUI/Tab.cpp:1615
-msgid "Could not get a valid Printer Host reference"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1621 src/slic3r/GUI/Tab.cpp:1801
-msgid "Success!"
-msgstr "Powodzenie!"
-
-#: src/slic3r/GUI/Tab.cpp:1636
-msgid ""
-"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
-"signed certificate."
-msgstr ""
-"Plik HTTPS CA jest opcjonalny. Jest potrzebny jedynie w sytuacji, gdy "
-"używasz HTTPS z certyfikatem samopodpisanym."
-
-#: src/slic3r/GUI/Tab.cpp:1648
-msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
-msgstr "Pliki certyfikatów (*.crt, *.pem)|*.crt;*.pem|Wszystkie pliki|*.*"
-
-#: src/slic3r/GUI/Tab.cpp:1649
-msgid "Open CA certificate file"
-msgstr "Otwórz plik certyfikatu CA"
-
-#: src/slic3r/GUI/Tab.cpp:1676
-msgid ""
-"HTTPS CA File:\n"
-"\tOn this system, Slic3r uses HTTPS certificates from the system Certificate "
-"Store or Keychain.\n"
-"\tTo use a custom CA file, please import your CA file into Certificate "
-"Store / Keychain."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1713 src/slic3r/GUI/Tab.cpp:1912
-msgid "Size and coordinates"
-msgstr "Rozmiar i koordynaty"
-
-#: src/slic3r/GUI/Tab.cpp:1717 src/slic3r/GUI/Tab.cpp:1916
-#: src/slic3r/GUI/Tab.cpp:2792
-msgid " Set "
-msgstr " Ustaw "
-
-#: src/slic3r/GUI/Tab.cpp:1740
-msgid "Capabilities"
-msgstr "Możliwości"
-
-#: src/slic3r/GUI/Tab.cpp:1745
-msgid "Number of extruders of the printer."
-msgstr "Liczba ekstruderów drukarki."
-
-#: src/slic3r/GUI/Tab.cpp:1773
-msgid "USB/Serial connection"
-msgstr "Połączenie USB/szeregowe"
-
-#: src/slic3r/GUI/Tab.cpp:1774 src/libslic3r/PrintConfig.cpp:1660
-msgid "Serial port"
-msgstr "Port szeregowy"
-
-#: src/slic3r/GUI/Tab.cpp:1779
-msgid "Rescan serial ports"
-msgstr "Przeskanuj porty szeregowe"
-
-#: src/slic3r/GUI/Tab.cpp:1801
-msgid "Connection to printer works correctly."
-msgstr "Połączenie z drukarką pomyślne."
-
-#: src/slic3r/GUI/Tab.cpp:1804
-msgid "Connection failed."
-msgstr "Błąd połączenia."
-
-#: src/slic3r/GUI/Tab.cpp:1817 src/slic3r/GUI/Tab.cpp:1961
-msgid "Print Host upload"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1859 src/libslic3r/PrintConfig.cpp:92
-msgid "Before layer change G-code"
-msgstr "G-code wykonywany przed zmianÄ… warstwy"
-
-#: src/slic3r/GUI/Tab.cpp:1865 src/libslic3r/PrintConfig.cpp:1042
-msgid "After layer change G-code"
-msgstr "G-code wykonywany po zmianie warstwy"
-
-#: src/slic3r/GUI/Tab.cpp:1871 src/libslic3r/PrintConfig.cpp:2111
-msgid "Tool change G-code"
-msgstr "G-code wykonywany przy zmianie narzędzia"
-
-#: src/slic3r/GUI/Tab.cpp:1877
-msgid "Between objects G-code (for sequential printing)"
-msgstr ""
-"G-code wykonywany przy przejściach pomiędzy modelami (druk sekwencyjny)"
-
-#: src/slic3r/GUI/Tab.cpp:1938
-msgid "Display"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1949 src/slic3r/GUI/Tab.cpp:3102
-msgid "Corrections"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2011 src/slic3r/GUI/Tab.cpp:2073
-#: src/libslic3r/PrintConfig.cpp:1088 src/libslic3r/PrintConfig.cpp:1098
-#: src/libslic3r/PrintConfig.cpp:1108 src/libslic3r/PrintConfig.cpp:1121
-#: src/libslic3r/PrintConfig.cpp:1132 src/libslic3r/PrintConfig.cpp:1143
-#: src/libslic3r/PrintConfig.cpp:1154
-msgid "Machine limits"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2025
-msgid "Values in this column are for Full Power mode"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2026
-msgid "Full Power"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2031
-msgid "Values in this column are for Silent mode"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2032
-msgid "Silent"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2040
-msgid "Maximum feedrates"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2045
-msgid "Maximum accelerations"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2052
-msgid "Jerk limits"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2057
-msgid "Minimum feedrates"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2095 src/slic3r/GUI/Tab.cpp:2103
-msgid "Single extruder MM setup"
-msgstr "Ustawienia MM dla jednego ekstrudera"
-
-#: src/slic3r/GUI/Tab.cpp:2104
-msgid "Single extruder multimaterial parameters"
-msgstr "Parametry multimaterial przy jednym ekstruderze"
-
-#: src/slic3r/GUI/Tab.cpp:2118 src/libslic3r/GCode/PreviewData.cpp:475
-#, c-format
-msgid "Extruder %d"
-msgstr "Ekstruder %d"
-
-#: src/slic3r/GUI/Tab.cpp:2125
-msgid "Layer height limits"
-msgstr "Limit wysokości warstw"
-
-#: src/slic3r/GUI/Tab.cpp:2130
-msgid "Position (for multi-extruder printers)"
-msgstr "Pozycja (dla drukarek z kilkoma ekstruderami)"
-
-#: src/slic3r/GUI/Tab.cpp:2133
-msgid "Retraction"
-msgstr "Retrakcja"
-
-#: src/slic3r/GUI/Tab.cpp:2136
-msgid "Only lift Z"
-msgstr "Tylko z-hop"
-
-#: src/slic3r/GUI/Tab.cpp:2149
-msgid ""
-"Retraction when tool is disabled (advanced settings for multi-extruder "
-"setups)"
-msgstr ""
-"Retrakcja gdy dany ekstruder nie jest w użyciu (funkcja zaawansowana dla "
-"drukarek z kilkoma ekstruderami)"
-
-#: src/slic3r/GUI/Tab.cpp:2153
-msgid "Preview"
-msgstr "PodglÄ…d"
-
-#: src/slic3r/GUI/Tab.cpp:2284
-msgid ""
-"The Wipe option is not available when using the Firmware Retraction mode.\n"
-"\n"
-"Shall I disable it in order to enable Firmware Retraction?"
-msgstr ""
-"Opcja czyszczenia dyszy nie jest dostępna z funkcją Retrakcji w Firmware "
-"(Firmware Retraction).\n"
-"\n"
-"Wyłączyć ją aby włączyć Firmware Retraction?"
-
-#: src/slic3r/GUI/Tab.cpp:2286
-msgid "Firmware Retraction"
-msgstr "Retrakcja z firmware"
-
-#: src/slic3r/GUI/Tab.cpp:2565
-#, c-format
-msgid "Default preset (%s)"
-msgstr "Domyślne zestaw ustawień (%s)"
-
-#: src/slic3r/GUI/Tab.cpp:2566
-#, c-format
-msgid "Preset (%s)"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2583
-msgid "has the following unsaved changes:"
-msgstr "ma następujące niezapisane zmiany:"
-
-#: src/slic3r/GUI/Tab.cpp:2586
-msgid "is not compatible with printer"
-msgstr "nie jest kompatybilne z drukarkÄ…"
-
-#: src/slic3r/GUI/Tab.cpp:2587
-msgid "is not compatible with print profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2589
-msgid "and it has the following unsaved changes:"
-msgstr "i ma następujące niezapisane zmiany:"
-
-#: src/slic3r/GUI/Tab.cpp:2592
-msgid "Discard changes and continue anyway?"
-msgstr "Odrzucić zmiany i kontynuować?"
-
-#: src/slic3r/GUI/Tab.cpp:2593
-msgid "Unsaved Changes"
-msgstr "Niezapisane zmiany"
-
-#: src/slic3r/GUI/Tab.cpp:2604
-msgid "It's impossible to print multi-part object(s) with SLA technology."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2605
-msgid "Please check your object list before preset changing."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2699
-msgid "The supplied name is empty. It can't be saved."
-msgstr "Podana nazwa jest pusta. Nie można zapisać."
-
-#: src/slic3r/GUI/Tab.cpp:2704
-msgid "Cannot overwrite a system profile."
-msgstr "Nie można nadpisać profilu systemowego."
-
-#: src/slic3r/GUI/Tab.cpp:2708
-msgid "Cannot overwrite an external profile."
-msgstr "Nie można nadpisać profilu zewnętrznego."
-
-#: src/slic3r/GUI/Tab.cpp:2734
-msgid "remove"
-msgstr "usuń"
-
-#: src/slic3r/GUI/Tab.cpp:2734
-msgid "delete"
-msgstr "usuń"
-
-#: src/slic3r/GUI/Tab.cpp:2735
-msgid "Are you sure you want to "
-msgstr "Czy na pewno chcesz "
-
-#: src/slic3r/GUI/Tab.cpp:2735
-msgid " the selected preset?"
-msgstr " wybrany zestaw ustawień?"
-
-#: src/slic3r/GUI/Tab.cpp:2736
-msgid "Remove"
-msgstr "Usuń"
-
-#: src/slic3r/GUI/Tab.cpp:2737
-msgid " Preset"
-msgstr " Zestaw ustawień"
-
-#: src/slic3r/GUI/Tab.cpp:2791
-msgid "All"
-msgstr "Wszystko"
-
-#: src/slic3r/GUI/Tab.cpp:2869
-msgid ""
-"LOCKED LOCK;indicates that the settings are the same as the system values "
-"for the current option group"
-msgstr ""
-"ZAMKNIĘTA KÅÓDKA;oznacza, że ustawienia sÄ… takie same jak wartoÅ›ci systemowe "
-"w obecnej grupie ustawień"
-
-#: src/slic3r/GUI/Tab.cpp:2872
-msgid ""
-"UNLOCKED LOCK;indicates that some settings were changed and are not equal to "
-"the system values for the current option group.\n"
-"Click the UNLOCKED LOCK icon to reset all settings for current option group "
-"to the system values."
-msgstr ""
-"OTWARTA KÅÓDKA; oznacza, że niektóre ustawienia zostaÅ‚y zmodyfikowane i nie "
-"odpowiadają wartościom systemowym w obecnej grupie opcji.\n"
-"Kliknij ikonÄ™ OTWARTEJ KÅÓDKI aby zresetować wszystkie ustawienia obecnej "
-"grupy ustawień do wartości systemowych."
-
-#: src/slic3r/GUI/Tab.cpp:2878
-msgid ""
-"WHITE BULLET;for the left button: \tindicates a non-system preset,\n"
-"for the right button: \tindicates that the settings hasn't been modified."
-msgstr ""
-"BIAÅA KROPKA;dla lewego przycisku: wskazuje na niesystemowy zestaw "
-"ustawień,\n"
-"dla prawego przycisku: wskazuje, że ustawienia nie zostały zmodyfikowane."
-
-#: src/slic3r/GUI/Tab.cpp:2882
-msgid ""
-"BACK ARROW;indicates that the settings were changed and are not equal to the "
-"last saved preset for the current option group.\n"
-"Click the BACK ARROW icon to reset all settings for the current option group "
-"to the last saved preset."
-msgstr ""
-"STRZAÅKA W TYÅ;oznacza, że ustawienia zostaÅ‚y zmodyfikowane i nie "
-"odpowiadają tym z ostatnio zapisanego zestawu ustawień dla obecnej grupy "
-"opcji.\n"
-"Kliknij ikonÄ™ STRZAÅKI W TYÅ aby zresetować wszystkie ustawienia w obecnej "
-"grupie opcji do tych z ostatnio zapisanego zestawu ustawień."
-
-#: src/slic3r/GUI/Tab.cpp:2908
-msgid ""
-"LOCKED LOCK icon indicates that the settings are the same as the system "
-"values for the current option group"
-msgstr ""
-"ZAMKNIĘTA KÅÓDKA oznacza, że ustawienia sÄ… takie same jak wartoÅ›ci systemowe "
-"w obecnej grupie ustawień"
-
-#: src/slic3r/GUI/Tab.cpp:2910
-msgid ""
-"UNLOCKED LOCK icon indicates that some settings were changed and are not "
-"equal to the system values for the current option group.\n"
-"Click to reset all settings for current option group to the system values."
-msgstr ""
-"OTWARTA KÅÓDKA oznacza, że niektóre ustawienia zostaÅ‚y zmodyfikowane i nie "
-"odpowiadają wartościom systemowym w obecnej grupie opcji.\n"
-"Kliknij aby zresetować wszystkie ustawienia obecnej grupy ustawień do "
-"wartości systemowych."
-
-#: src/slic3r/GUI/Tab.cpp:2913
-msgid "WHITE BULLET icon indicates a non system preset."
-msgstr "BIAÅA KROPKA oznacza niesystemowy zestaw ustawieÅ„."
-
-#: src/slic3r/GUI/Tab.cpp:2916
-msgid ""
-"WHITE BULLET icon indicates that the settings are the same as in the last "
-"saved preset for the current option group."
-msgstr ""
-"BIAÅA KROPKA oznacza, że ustawienia sÄ… takie same jak w ostatnio zapisanym "
-"zestawie ustawień dla obecnej grupy opcji."
-
-#: src/slic3r/GUI/Tab.cpp:2918
-msgid ""
-"BACK ARROW icon indicates that the settings were changed and are not equal "
-"to the last saved preset for the current option group.\n"
-"Click to reset all settings for the current option group to the last saved "
-"preset."
-msgstr ""
-"STRZAÅKA W TYÅ oznacza, że ustawienia zostaÅ‚y zmodyfikowane i nie "
-"odpowiadają tym z ostatnio zapisanego zestawu ustawień dla obecnej grupy "
-"opcji.\n"
-"Kliknij aby zresetować wszystkie ustawienia w obecnej grupie opcji do tych z "
-"ostatnio zapisanego zestawu ustawień."
-
-#: src/slic3r/GUI/Tab.cpp:2924
-msgid ""
-"LOCKED LOCK icon indicates that the value is the same as the system value."
-msgstr ""
-"ZAMKNIĘTA KÅÓDKA oznacza, że ustawienia sÄ… takie same jak wartoÅ›ci systemowe."
-
-#: src/slic3r/GUI/Tab.cpp:2925
-msgid ""
-"UNLOCKED LOCK icon indicates that the value was changed and is not equal to "
-"the system value.\n"
-"Click to reset current value to the system value."
-msgstr ""
-"OTWARTA KÅÓDKA oznacza, że niektóre ustawienia zostaÅ‚y zmodyfikowane i nie "
-"odpowiadają wartościom systemowym.\n"
-"Kliknij ikonę aby zresetować do wartości systemowej."
-
-#: src/slic3r/GUI/Tab.cpp:2931
-msgid ""
-"WHITE BULLET icon indicates that the value is the same as in the last saved "
-"preset."
-msgstr ""
-"BIAÅA KROPKA oznacza, że wartość jest taka sama jak w ostatnio zapisanym "
-"zestawie ustawień."
-
-#: src/slic3r/GUI/Tab.cpp:2932
-msgid ""
-"BACK ARROW icon indicates that the value was changed and is not equal to the "
-"last saved preset.\n"
-"Click to reset current value to the last saved preset."
-msgstr ""
-"STRZAÅKA W TYÅ oznacza, że ustawienia zostaÅ‚y zmodyfikowane i nie "
-"odpowiadają tym z ostatnio zapisanego zestawu ustawień.\n"
-"Kliknij aby zresetować wszystkie ustawienia do tych z ostatnio zapisanego "
-"zestawu ustawień."
-
-# Used in this context: _("Save ") + title + _(" as:")
-#: src/slic3r/GUI/Tab.cpp:3031
-msgid " as:"
-msgstr " jako:"
-
-#: src/slic3r/GUI/Tab.cpp:3075
-msgid "the following postfix are not allowed:"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3079
-msgid "The supplied name is not available."
-msgstr "Podana nazwa jest niedostępna."
-
-#: src/slic3r/GUI/Tab.cpp:3092
-msgid "Material"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3094 src/slic3r/GUI/Tab.cpp:3176
-msgid "Layers"
-msgstr "Warstwy"
-
-#: src/slic3r/GUI/Tab.cpp:3098
-msgid "Exposure"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3183
-msgid "Support head"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3188
-msgid "Support pillar"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3196
-msgid "Connection of the support sticks and junctions"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3200
-msgid "Automatic generation"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.hpp:293 src/slic3r/GUI/Tab.hpp:381
-msgid "Print Settings"
-msgstr "Ustawienia Druku"
-
-#: src/slic3r/GUI/Tab.hpp:311
-msgid "Filament Settings"
-msgstr "Ustawienia Filamentu"
-
-#: src/slic3r/GUI/Tab.hpp:344
-msgid "Printer Settings"
-msgstr "Ustawienia Drukarki"
-
-#: src/slic3r/GUI/Tab.hpp:367
-msgid "Material Settings"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.hpp:393
-msgid "Save preset"
-msgstr "Zapisz zestaw ustawień"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
-msgid "Update available"
-msgstr "Dostępna jest aktualizacja"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
-msgid "New version of Slic3r PE is available"
-msgstr "Dostępna jest nowa wersja Slic3r PE"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:35
-msgid "To download, follow the link below."
-msgstr "Przejdź do linku aby pobrać."
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:42
-msgid "Current version:"
-msgstr "Obecna wersja:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:44
-msgid "New version:"
-msgstr "Nowa wersja:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:52
-msgid "Don't notify about new releases any more"
-msgstr "Nie powiadamiaj o nowych wersjach"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:70 src/slic3r/GUI/UpdateDialogs.cpp:162
-msgid "Configuration update"
-msgstr "Aktualizacja konfiguracji"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:70
-msgid "Configuration update is available"
-msgstr "Dostępna jest aktualizacja konfiguracji"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:73
-msgid ""
-"Would you like to install it?\n"
-"\n"
-"Note that a full configuration snapshot will be created first. It can then "
-"be restored at any time should there be a problem with the new version.\n"
-"\n"
-"Updated configuration bundles:"
-msgstr ""
-"Czy chcesz kontynuować instalację?\n"
-"\n"
-"Weź pod uwagę, że najpierw zostanie stworzony zrzut konfiguracji. Może być "
-"przywrócony w każdej chwili, gdyby okazało się, że nowa wersja powoduje "
-"problemy.\n"
-"\n"
-"Zaktualizowane paczki konfiguracyjne:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
-msgid "Slic3r incompatibility"
-msgstr "Niekompatybilność ze Slic3r"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
-msgid "Slic3r configuration is incompatible"
-msgstr "Konfiguracja Slic3r jest niekompatybilna"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:112
-msgid ""
-"This version of Slic3r PE is not compatible with currently installed "
-"configuration bundles.\n"
-"This probably happened as a result of running an older Slic3r PE after using "
-"a newer one.\n"
-"\n"
-"You may either exit Slic3r and try again with a newer version, or you may re-"
-"run the initial configuration. Doing so will create a backup snapshot of the "
-"existing configuration before installing files compatible with this Slic3r.\n"
-msgstr ""
-"Ta wersja Slic3r PE nie jest kompatybilna z aktualnie zainstalowanym "
-"zestawem konfiguracji.\n"
-"Może to być rezultatem uruchomienia starszej wersji Slic3r PE po instalacji "
-"nowszej.\n"
-"\n"
-"Masz 2 opcje wyboru: możesz zamknąć Slic3r i spróbować ponownie uruchomić "
-"nowszą wersję lub uruchomić ponownie konfigurację początkową. Wybranie "
-"drugiej opcji spowoduje stworzenie zrzutu istniejÄ…cej konfiguracji przed "
-"instalacjÄ… konfiguracji kompatybilnej z tÄ… wersjÄ… Slic3ra.\n"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:121
-#, c-format
-msgid "This Slic3r PE version: %s"
-msgstr "Ta wersja Slic3r PE: %s"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:126
-msgid "Incompatible bundles:"
-msgstr "Niekompatybilne zestawy ustawień:"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:142
-msgid "Exit Slic3r"
-msgstr "Zamknij Slic3r"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:145
-msgid "Re-configure"
-msgstr "Ponowna konfiguracja"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:166
-#, c-format
-msgid ""
-"Slic3r PE now uses an updated configuration structure.\n"
-"\n"
-"So called 'System presets' have been introduced, which hold the built-in "
-"default settings for various printers. These System presets cannot be "
-"modified, instead, users now may create their own presets inheriting "
-"settings from one of the System presets.\n"
-"An inheriting preset may either inherit a particular value from its parent "
-"or override it with a customized value.\n"
-"\n"
-"Please proceed with the %s that follows to set up the new presets and to "
-"choose whether to enable automatic preset updates."
-msgstr ""
-"Slic3r PE używa teraz ulepszonej struktury konfiguracji.\n"
-"\n"
-"Wprowadzamy tak zwane \"Zestawy systemowe\", które zawierają preinstalowane "
-"ustawienia domyślne dla różnych drukarek. Te Zestawy nie mogą być "
-"zmodyfikowane, ale za to użytkownik może na ich bazie utworzyć własne - "
-"kopiując ustawienia z jednego z Zestawów.\n"
-"Zestaw dziedziczący ustawienia może skopiować ustawienia z zestawu "
-"nadrzędnego lub nadpisać je własnymi.\n"
-"\n"
-"Przejdź do %s aby stworzyć nowe zestawy i wybrać opcję ich automatycznej "
-"aktualizacji."
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:182
-msgid "For more information please visit our wiki page:"
-msgstr "Aby uzyskać więcej informacji odwiedź naszą wiki:"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:10
-msgid "Ramming customization"
-msgstr "Dostosowywanie wyciskania"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:36
-msgid ""
-"Ramming denotes the rapid extrusion just before a tool change in a single-"
-"extruder MM printer. Its purpose is to properly shape the end of the "
-"unloaded filament so it does not prevent insertion of the new filament and "
-"can itself be reinserted later. This phase is important and different "
-"materials can require different extrusion speeds to get the good shape. For "
-"this reason, the extrusion rates during ramming are adjustable.\n"
-"\n"
-"This is an expert-level setting, incorrect adjustment will likely lead to "
-"jams, extruder wheel grinding into filament etc."
-msgstr ""
-"Wyciskanie oznacza szybką ekstruzję bezpośrednio przed zmianą narzędzia w "
-"drukarce typu MultiMaterial z jednym ekstruderem (narzędzie w tym przypadku "
-"oznacza filament). Jego zadaniem jest odpowiednie ukształtowanie końcówki "
-"rozładowywanego filamentu, aby jego ponowne załadowanie mogło odbyć się bez "
-"przeszkód. Ta faza procesu zmiany filamentu jest bardzo ważna a różne "
-"filamenty mogą potrzebować różnej prędkości wyciskania aby uzyskać "
-"odpowiedni kształt końcówki. Z tego powodu można edytować jego parametry.\n"
-"\n"
-"To jest ustawienie dla zaawansowanych użytkowników. Nieprawidłowe wartości "
-"mogą powodować blokady, ścieranie filamentu przez radełko itp."
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78
-msgid "Total ramming time"
-msgstr "Całkowity czas wyciskania"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:80
-msgid "Total rammed volume"
-msgstr "Całkowita objętość wyciskania"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:84
-msgid "Ramming line width"
-msgstr "Szerokość linii wyciskania"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:86
-msgid "Ramming line spacing"
-msgstr "Rozmieszczenie linii wyciskania"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:138
-msgid "Wipe tower - Purging volume adjustment"
-msgstr "Wieża czyszcząca - dostosowanie objętości czyszczenia"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:219
-msgid ""
-"Here you can adjust required purging volume (mm³) for any given pair of "
-"tools."
-msgstr ""
-"To ustawienie odpowiada za objętość czyszczonego filamentu w (mm³) dla danej "
-"pary ekstruderów."
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:220
-msgid "Extruder changed to"
-msgstr "Ekstruder zmieniony na"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:228
-msgid "unloaded"
-msgstr "rozładowano"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:229
-msgid "loaded"
-msgstr "załadowano"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:234
-msgid "Tool #"
-msgstr "Narzędzie #"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:241
-msgid ""
-"Total purging volume is calculated by summing two values below, depending on "
-"which tools are loaded/unloaded."
-msgstr ""
-"Całkowita objętość czyszczenia jest obliczana z sumy obydwóch wartości "
-"poniżej, w zależności która para narzędzi jest rozładowana/ładowana."
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:242
-msgid "Volume to purge (mm³) when the filament is being"
-msgstr "Objętość do wyczyszczenia (mm³), gdy filament jest"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:256
-msgid "From"
-msgstr "Od"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:321
-msgid ""
-"Switching to simple settings will discard changes done in the advanced "
-"mode!\n"
-"\n"
-"Do you want to proceed?"
-msgstr ""
-"Włączenie trybu prostego spowoduje odrzucenie zmian wprowadzonych w trybie "
-"zaawansowanym! Czy chcesz kontynować?"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
-msgid "Show simplified settings"
-msgstr "Pokaż ustawienia uproszczone"
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
-msgid "Show advanced settings"
-msgstr "Pokaż ustawienia zaawansowane"
-
-#: src/slic3r/Utils/OctoPrint.cpp:65
-#, c-format
-msgid "Mismatched type of print host: %s"
-msgstr ""
-
-#: src/slic3r/Utils/OctoPrint.cpp:80
-msgid "Connection to OctoPrint works correctly."
-msgstr "Połączenie z OctoPrint pomyślne."
-
-#: src/slic3r/Utils/OctoPrint.cpp:86
-msgid "Could not connect to OctoPrint"
-msgstr "Nie można połączyć się z OctoPrint"
-
-#: src/slic3r/Utils/OctoPrint.cpp:86
-msgid "Note: OctoPrint version at least 1.1.0 is required."
-msgstr "Uwaga: wymagany jest OctoPrint w wersji 1.1.0 lub wyższej."
-
-#: src/slic3r/Utils/OctoPrint.cpp:181
-msgid "Connection to Prusa SLA works correctly."
-msgstr ""
-
-#: src/slic3r/Utils/OctoPrint.cpp:186
-msgid "Could not connect to Prusa SLA"
-msgstr ""
-
-#: src/slic3r/Utils/PresetUpdater.cpp:571
-#, c-format
-msgid "requires min. %s and max. %s"
-msgstr "wymaga min. %s i max. %s"
-
-#: src/slic3r/Utils/PresetUpdater.cpp:576
-#, c-format
-msgid "requires min. %s"
-msgstr ""
-
-#: src/slic3r/Utils/PresetUpdater.cpp:578
-#, c-format
-msgid "requires max. %s"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:219
-#: src/slic3r/Utils/FixModelByWin10.cpp:349
-msgid "Exporting the source model"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:235
-msgid "Failed loading the input model."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:242
-msgid "Repairing the model by the Netfabb service"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:248
-msgid "Mesh repair failed."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:251
-#: src/slic3r/Utils/FixModelByWin10.cpp:367
-msgid "Loading the repaired model"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:263
-#: src/slic3r/Utils/FixModelByWin10.cpp:270
-#: src/slic3r/Utils/FixModelByWin10.cpp:302
-msgid "Saving mesh into the 3MF container failed."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:334
-msgid "Model fixing"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:335
-msgid "Exporting model..."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:357
-msgid "Export of a temporary 3mf file failed"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:372
-msgid "Import of the repaired 3mf file failed"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:375
-msgid "Model repair finished"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:379
-msgid "Model repair canceled"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
-msgid "Model repaired successfully"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
-msgid "Model Repair by the Netfabb service"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
-msgid "Model repair failed: \n"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1175
-msgid "All objects are outside of the print volume."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1201
-msgid "Some objects are too close; your extruder will collide with them."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1216
-msgid ""
-"Some objects are too tall and cannot be printed without extruder collisions."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1226
-msgid "The Spiral Vase option can only be used when printing a single object."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1228
-msgid ""
-"The Spiral Vase option can only be used when printing single material "
-"objects."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1234
-msgid ""
-"All extruders must have the same diameter for single extruder multimaterial "
-"printer."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1239
-msgid ""
-"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter "
-"and Repetier G-code flavors."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1241
-msgid ""
-"The Wipe Tower is currently only supported with the relative extruder "
-"addressing (use_relative_e_distances=1)."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1253
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they have equal "
-"layer heigths"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1255
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they are printed "
-"over an equal number of raft layers"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1257
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they are printed "
-"with the same support_material_contact_distance"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1259
-msgid ""
-"The Wipe Tower is only supported for multiple objects if they are sliced "
-"equally."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1281
-msgid ""
-"The Wipe tower is only supported if all objects have the same layer height "
-"profile"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1290
-msgid "The supplied settings will cause an empty print."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1307
-msgid ""
-"One or more object were assigned an extruder that the printer does not have."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1316
-msgid ""
-"Printing with multiple extruders of differing nozzle diameters. If support "
-"is to be printed with the current extruder (support_material_extruder == 0 "
-"or support_material_interface_extruder == 0), all nozzles have to be of the "
-"same diameter."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1324
-msgid ""
-"For the Wipe Tower to work with the soluble supports, the support layers "
-"need to be synchronized with the object layers."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1328
-msgid ""
-"The Wipe Tower currently supports the non-soluble supports only if they are "
-"printed with the current extruder without triggering a tool change. (both "
-"support_material_extruder and support_material_interface_extruder need to be "
-"set to 0)."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1335
-msgid "first_layer_height"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1350
-msgid "First layer height can't be greater than nozzle diameter"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1354
-msgid "Layer height can't be greater than nozzle diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:32 src/libslic3r/PrintConfig.cpp:33
-msgid "Printer technology"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:41
-msgid "Bed shape"
-msgstr "Kształt stołu"
-
-#: src/libslic3r/PrintConfig.cpp:48
-msgid ""
-"This setting controls the height (and thus the total number) of the slices/"
-"layers. Thinner layers give better accuracy but take more time to print."
-msgstr ""
-"To ustawienie odpowiada za wysokość warstwy (czyli cięcia), a w konsekwencji "
-"za ich liczbę. Niższe warstwy zapewniają lepszą dokładność i jakość, ale "
-"wydłużają ogólny czas wydruku."
-
-#: src/libslic3r/PrintConfig.cpp:56
-msgid "Max print height"
-msgstr "Maksymalna wysokość wydruku"
-
-#: src/libslic3r/PrintConfig.cpp:57
-msgid ""
-"Set this to the maximum height that can be reached by your extruder while "
-"printing."
-msgstr ""
-"Ustaw tutaj maksymalną wysokość, jaką może osiągnąć Twój ekstruder podczas "
-"drukowania."
-
-#: src/libslic3r/PrintConfig.cpp:73
-msgid "Avoid crossing perimeters"
-msgstr "Unikaj ruchów nad obrysami"
-
-#: src/libslic3r/PrintConfig.cpp:74
-msgid ""
-"Optimize travel moves in order to minimize the crossing of perimeters. This "
-"is mostly useful with Bowden extruders which suffer from oozing. This "
-"feature slows down both the print and the G-code generation."
-msgstr ""
-"Optymalizuj ruchy jałowe aby zminimalizować przejeżdżanie nad obrysami. Ta "
-"funkcja jest przydatna szczególne przy ekstruderach typu bowden, podatnych "
-"na wyciekanie filamentu z dyszy. Włączenie tej funkcji wydłuża zarówno czas "
-"druku jak i czas generowania G-code."
-
-#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:2080
-msgid "Other layers"
-msgstr "Inne warstwy"
-
-#: src/libslic3r/PrintConfig.cpp:83
-msgid ""
-"Bed temperature for layers after the first one. Set this to zero to disable "
-"bed temperature control commands in the output."
-msgstr ""
-"Temperatura stołu dla warstw powyżej pierwszej. Ustaw 0 aby wyłączyć "
-"kontrolowanie temperatury w pliku wyjściowym."
-
-#: src/libslic3r/PrintConfig.cpp:86
-msgid "Bed temperature"
-msgstr "Temperatura stołu"
-
-#: src/libslic3r/PrintConfig.cpp:93
-msgid ""
-"This custom code is inserted at every layer change, right before the Z move. "
-"Note that you can use placeholder variables for all Slic3r settings as well "
-"as [layer_num] and [layer_z]."
-msgstr ""
-"Ten kod jest wykonywany przy każdej zmianie warstwy, zaraz przed "
-"podniesieniem ekstrudera na wysokość nowej warstwy. Pamiętaj, że możesz użyć "
-"zmiennych typu placeholder dla wszystkich ustawień Slic3r, jak np. "
-"[layer_num] (numer warstwy) i [layer_z] (położenie warstwy w osi Z)."
-
-#: src/libslic3r/PrintConfig.cpp:104
-msgid "Between objects G-code"
-msgstr "G-code wykonywany przy przejściach pomiędzy modelami"
-
-#: src/libslic3r/PrintConfig.cpp:105
-msgid ""
-"This code is inserted between objects when using sequential printing. By "
-"default extruder and bed temperature are reset using non-wait command; "
-"however if M104, M109, M140 or M190 are detected in this custom code, Slic3r "
-"will not add temperature commands. Note that you can use placeholder "
-"variables for all Slic3r settings, so you can put a \"M109 "
-"S[first_layer_temperature]\" command wherever you want."
-msgstr ""
-"Ten kod jest wykonywany pomiędzy drukiem poszczególnych modeli w trybie "
-"druku sekwencyjnego. Domyślnie przy komendzie non-wait temperatury dyszy i "
-"stołu są resetowane; jednakże jeśli przy tej opcji zostaną użyte komendy "
-"M104, M109, M140 lub M190 to Slic3r nie doda własnych komend do kontroli "
-"temperatury. Pamiętaj, że możesz używać zmiennych typu placeholder, więc np. "
-"komendÄ™ \"M109 S[first_layer_temperature]\" (temperatura pierwszej warstwy) "
-"możesz umieścić gdzie chcesz."
-
-#: src/libslic3r/PrintConfig.cpp:114
-msgctxt "Layers"
-msgid "Bottom"
-msgstr "Dolne"
-
-#: src/libslic3r/PrintConfig.cpp:116
-msgid "Number of solid layers to generate on bottom surfaces."
-msgstr "Liczba zwartych warstw dolnych."
-
-#: src/libslic3r/PrintConfig.cpp:118
-msgid "Bottom solid layers"
-msgstr "Zwarte warstwy dolne"
-
-#: src/libslic3r/PrintConfig.cpp:123
-msgid "Bridge"
-msgstr "Most"
-
-#: src/libslic3r/PrintConfig.cpp:124
-msgid ""
-"This is the acceleration your printer will use for bridges. Set zero to "
-"disable acceleration control for bridges."
-msgstr ""
-"To jest przyspieszenie stosowane przy druku mostów. Ustaw zero aby wyłączyć "
-"osobne ustawienia przyspieszenia dla mostów."
-
-#: src/libslic3r/PrintConfig.cpp:126 src/libslic3r/PrintConfig.cpp:274
-#: src/libslic3r/PrintConfig.cpp:819 src/libslic3r/PrintConfig.cpp:941
-#: src/libslic3r/PrintConfig.cpp:1100 src/libslic3r/PrintConfig.cpp:1145
-#: src/libslic3r/PrintConfig.cpp:1156 src/libslic3r/PrintConfig.cpp:1386
-msgid "mm/s²"
-msgstr "mm/s²"
-
-#: src/libslic3r/PrintConfig.cpp:133
-msgid "Bridging angle"
-msgstr "Kąt linii mostów"
-
-#: src/libslic3r/PrintConfig.cpp:135
-msgid ""
-"Bridging angle override. If left to zero, the bridging angle will be "
-"calculated automatically. Otherwise the provided angle will be used for all "
-"bridges. Use 180° for zero angle."
-msgstr ""
-"Nadpisanie kąta linii mostów. Jeśli zostanie 0 to kąt zostanie obliczony "
-"automatycznie. W innym przypadku ustawiony kąt będzie dotyczył wszystkich "
-"mostów. Ustaw 180° dla kąta zerowego."
-
-#: src/libslic3r/PrintConfig.cpp:138 src/libslic3r/PrintConfig.cpp:734
-#: src/libslic3r/PrintConfig.cpp:1637 src/libslic3r/PrintConfig.cpp:1648
-#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:2063
-#: src/libslic3r/PrintConfig.cpp:2578
-msgid "°"
-msgstr "°"
-
-#: src/libslic3r/PrintConfig.cpp:145
-msgid "Bridges fan speed"
-msgstr "Prędkość wentylatora przy mostach"
-
-#: src/libslic3r/PrintConfig.cpp:146
-msgid "This fan speed is enforced during all bridges and overhangs."
-msgstr ""
-"Ta prędkość wentylatora zostanie zastosowana przy druku mostów i zwisów."
-
-#: src/libslic3r/PrintConfig.cpp:147 src/libslic3r/PrintConfig.cpp:747
-#: src/libslic3r/PrintConfig.cpp:1165 src/libslic3r/PrintConfig.cpp:1232
-#: src/libslic3r/PrintConfig.cpp:1517
-msgid "%"
-msgstr "%"
-
-#: src/libslic3r/PrintConfig.cpp:155
-msgid "Bridge flow ratio"
-msgstr "Współczynnik przepływu przy mostach"
-
-#: src/libslic3r/PrintConfig.cpp:157
-msgid ""
-"This factor affects the amount of plastic for bridging. You can decrease it "
-"slightly to pull the extrudates and prevent sagging, although default "
-"settings are usually good and you should experiment with cooling (use a fan) "
-"before tweaking this."
-msgstr ""
-"Ten współczynnik określa ilość plastiku wytłaczaną przy drukowaniu mostów. "
-"Możesz delikatnie zmniejszyć tą wartość aby zapobiec opadaniu drukowanej "
-"linii, jednakże standardowe ustawienia są zazwyczaj dobrze dobrane i "
-"najpierw poeksperymentuj z chłodzeniem wydruku."
-
-#: src/libslic3r/PrintConfig.cpp:168
-msgid "Bridges"
-msgstr "Mosty"
-
-#: src/libslic3r/PrintConfig.cpp:170
-msgid "Speed for printing bridges."
-msgstr "Prędkość drukowania mostów."
-
-#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:564
-#: src/libslic3r/PrintConfig.cpp:573 src/libslic3r/PrintConfig.cpp:583
-#: src/libslic3r/PrintConfig.cpp:592 src/libslic3r/PrintConfig.cpp:623
-#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:884
-#: src/libslic3r/PrintConfig.cpp:1013 src/libslic3r/PrintConfig.cpp:1090
-#: src/libslic3r/PrintConfig.cpp:1110 src/libslic3r/PrintConfig.cpp:1123
-#: src/libslic3r/PrintConfig.cpp:1134 src/libslic3r/PrintConfig.cpp:1189
-#: src/libslic3r/PrintConfig.cpp:1252 src/libslic3r/PrintConfig.cpp:1418
-#: src/libslic3r/PrintConfig.cpp:1601 src/libslic3r/PrintConfig.cpp:1611
-#: src/libslic3r/PrintConfig.cpp:2041 src/libslic3r/PrintConfig.cpp:2160
-msgid "mm/s"
-msgstr "mm/s"
-
-#: src/libslic3r/PrintConfig.cpp:178
-msgid "Brim width"
-msgstr "Szerokość brim"
-
-#: src/libslic3r/PrintConfig.cpp:179
-msgid ""
-"Horizontal width of the brim that will be printed around each object on the "
-"first layer."
-msgstr ""
-"Szerokość brim (obramowania), drukowanego wokół każdego z modeli na "
-"pierwszej warstwie."
-
-#: src/libslic3r/PrintConfig.cpp:187
-msgid "Clip multi-part objects"
-msgstr "Przycinaj modele złożone z kilku części"
-
-#: src/libslic3r/PrintConfig.cpp:188
-msgid ""
-"When printing multi-material objects, this settings will make slic3r to clip "
-"the overlapping object parts one by the other (2nd part will be clipped by "
-"the 1st, 3rd part will be clipped by the 1st and 2nd etc)."
-msgstr ""
-"To ustawienie sprawi, że podczas druku modeli z wielu materiałów, Slic3r "
-"przytnie nachodzące na siebie części (druga część zostanie przycięta przez "
-"pierwszÄ…, trzecia przez pierwszÄ… i drugÄ… itd.)"
-
-#: src/libslic3r/PrintConfig.cpp:196
-msgid "Colorprint height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:197
-msgid "Heights at which a filament change is to occur. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:207
-msgid "Compatible printers condition"
-msgstr "Warunki kompatybilności z drukarką"
-
-#: src/libslic3r/PrintConfig.cpp:208
-msgid ""
-"A boolean expression using the configuration values of an active printer "
-"profile. If this expression evaluates to true, this profile is considered "
-"compatible with the active printer profile."
-msgstr ""
-"Wyrażenie logiczne (Boole'owskie) używające wartości konfiguracji aktywnego "
-"profilu drukarki. Jeśli to wyrażenie jest prawdziwe to znaczy, że aktywny "
-"profil jest kompatybilny z drukarkÄ…."
-
-#: src/libslic3r/PrintConfig.cpp:220
-msgid "Compatible print profiles condition"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:221
-msgid ""
-"A boolean expression using the configuration values of an active print "
-"profile. If this expression evaluates to true, this profile is considered "
-"compatible with the active print profile."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:235
-msgid "Complete individual objects"
-msgstr "Druk sekwencyjny (model po modelu)"
-
-#: src/libslic3r/PrintConfig.cpp:236
-msgid ""
-"When printing multiple objects or copies, this feature will complete each "
-"object before moving onto next one (and starting it from its bottom layer). "
-"This feature is useful to avoid the risk of ruined prints. Slic3r should "
-"warn and prevent you from extruder collisions, but beware."
-msgstr ""
-"Włączenie tej opcji sprawi, że przy druku kilku modeli drukarka wydrukuje "
-"jeden model w całości zanim przejdzie do następnego (zaczynając od "
-"najniższej warstwy). Przydaje się aby uniknąć ryzyka niepowodzenia wydruku "
-"kilku części. Slic3r powinien ostrzec przed możliwością kolizji z "
-"ekstruderem, ale zachowaj ostrożność."
-
-#: src/libslic3r/PrintConfig.cpp:245
-msgid "Enable auto cooling"
-msgstr "Włącz automatyczne chłodzenie"
-
-#: src/libslic3r/PrintConfig.cpp:246
-msgid ""
-"This flag enables the automatic cooling logic that adjusts print speed and "
-"fan speed according to layer printing time."
-msgstr ""
-"Ta flaga umożliwia automatyczne sterowanie chłodzeniem przez zmianę "
-"prędkości druku i wentylatora względem czasu druku jednej warstwy."
-
-#: src/libslic3r/PrintConfig.cpp:252
-msgid "Cooling tube position"
-msgstr "Pozycja rurki chłodzącej"
-
-#: src/libslic3r/PrintConfig.cpp:253
-msgid "Distance of the center-point of the cooling tube from the extruder tip "
-msgstr "Odległość punktu centralnego rurki chłodzącej od końcówki ekstrudera "
-
-#: src/libslic3r/PrintConfig.cpp:261
-msgid "Cooling tube length"
-msgstr "Długość rurki chłodzącej"
-
-#: src/libslic3r/PrintConfig.cpp:262
-msgid "Length of the cooling tube to limit space for cooling moves inside it "
-msgstr "Długość rurki chłodzącej ograniczająca ruchy chłodzące wewnątrz jej "
-
-#: src/libslic3r/PrintConfig.cpp:271
-msgid ""
-"This is the acceleration your printer will be reset to after the role-"
-"specific acceleration values are used (perimeter/infill). Set zero to "
-"prevent resetting acceleration at all."
-msgstr ""
-"Do tej wartości przyspieszenia drukarka wróci gdy ustawione zostaną "
-"przyspieszenia dla określonych ruchów (obrysy/wypełnienie). Ustaw zero aby "
-"wyłączyć resetowanie przyspieszeń."
-
-#: src/libslic3r/PrintConfig.cpp:281
-msgid "Default filament profile"
-msgstr "Domyślny profil filamentu"
-
-#: src/libslic3r/PrintConfig.cpp:282
-msgid ""
-"Default filament profile associated with the current printer profile. On "
-"selection of the current printer profile, this filament profile will be "
-"activated."
-msgstr ""
-"Domyślny profil filamentu powiązany z obecnym profilem drukarki. Przy "
-"wybraniu obecnego profilu drukarki automatycznie zostanie wybrany ten profil "
-"filamentu."
-
-#: src/libslic3r/PrintConfig.cpp:287
-msgid "Default print profile"
-msgstr "Domyślny profil druku"
-
-#: src/libslic3r/PrintConfig.cpp:288 src/libslic3r/PrintConfig.cpp:2469
-#: src/libslic3r/PrintConfig.cpp:2479
-msgid ""
-"Default print profile associated with the current printer profile. On "
-"selection of the current printer profile, this print profile will be "
-"activated."
-msgstr ""
-"Domyślny profil druku powiązany z obecnym profilem drukarki. Przy wybraniu "
-"obecnego profilu drukarki automatycznie zostanie wybrany ten profil "
-"filamentu."
-
-#: src/libslic3r/PrintConfig.cpp:293
-msgid "Disable fan for the first"
-msgstr "Wyłącz wentylator przy pierwszych"
-
-#: src/libslic3r/PrintConfig.cpp:294
-msgid ""
-"You can set this to a positive value to disable fan at all during the first "
-"layers, so that it does not make adhesion worse."
-msgstr ""
-"Wpisując tutaj wartość dodatnią możesz wyłączyć wentylator podczas druku "
-"pierwszych warstw, aby nie pogarszać przyczepności do stołu."
-
-#: src/libslic3r/PrintConfig.cpp:296 src/libslic3r/PrintConfig.cpp:952
-#: src/libslic3r/PrintConfig.cpp:1487 src/libslic3r/PrintConfig.cpp:1691
-#: src/libslic3r/PrintConfig.cpp:1757 src/libslic3r/PrintConfig.cpp:1935
-#: src/libslic3r/PrintConfig.cpp:1985
-msgid "layers"
-msgstr "warstwy"
-
-#: src/libslic3r/PrintConfig.cpp:304
-msgid "Don't support bridges"
-msgstr "Nie używaj podpór pod mostami"
-
-#: src/libslic3r/PrintConfig.cpp:306
-msgid ""
-"Experimental option for preventing support material from being generated "
-"under bridged areas."
-msgstr ""
-"Funkcja eksperymentalna mająca zapobiegać tworzeniu podpór pod mostami."
-
-#: src/libslic3r/PrintConfig.cpp:313
-msgid "Distance between copies"
-msgstr "Odstęp pomiędzy kopiami"
-
-#: src/libslic3r/PrintConfig.cpp:314
-msgid "Distance used for the auto-arrange feature of the plater."
-msgstr "Odstęp używany przy automatycznym rozmieszczaniu modeli na stole."
-
-#: src/libslic3r/PrintConfig.cpp:322
-msgid "Elephant foot compensation"
-msgstr "Kompensacja \"stopy słonia\""
-
-#: src/libslic3r/PrintConfig.cpp:324
-msgid ""
-"The first layer will be shrunk in the XY plane by the configured value to "
-"compensate for the 1st layer squish aka an Elephant Foot effect."
-msgstr ""
-"Pierwsza warstwa zostanie zmniejszona o tą wartość w osiach X i Y aby "
-"zniwelować efekt stopy słonia (Elephant Foot - gdy pierwsza warstwa "
-"\"rozjeżdża\" się na boki)."
-
-#: src/libslic3r/PrintConfig.cpp:334
-msgid ""
-"This end procedure is inserted at the end of the output file. Note that you "
-"can use placeholder variables for all Slic3r settings."
-msgstr ""
-"Ten kod jest wykonywany jako ostatni w pliku wyjściowym. Pamiętaj, że możesz "
-"użyć zmiennych typu placeholder dla wszystkich ustawień Slic3r."
-
-#: src/libslic3r/PrintConfig.cpp:345
-msgid ""
-"This end procedure is inserted at the end of the output file, before the "
-"printer end gcode. Note that you can use placeholder variables for all "
-"Slic3r settings. If you have multiple extruders, the gcode is processed in "
-"extruder order."
-msgstr ""
-"Ten kod jest wykonywany na samym końcu, przed samym zakończeniem wykonywania "
-"pliku G-code. Pamiętaj, że możesz użyć zmiennych typu placeholder dla "
-"wszystkich ustawień Slic3r. Jeśli masz kilka ekstruderów, ten G-code jest "
-"wykonywany zgodnie z ich kolejnością."
-
-#: src/libslic3r/PrintConfig.cpp:356
-msgid "Ensure vertical shell thickness"
-msgstr "Zagwarantuj odpowiednią grubość ścianki"
-
-#: src/libslic3r/PrintConfig.cpp:358
-msgid ""
-"Add solid infill near sloping surfaces to guarantee the vertical shell "
-"thickness (top+bottom solid layers)."
-msgstr ""
-"Dodaj zwarte wypełnienie przy pochyłych powierzchniach aby zagwarantować "
-"odpowiednią grubość warstwy (suma górnych i dolnych zwartych warstw)."
-
-#: src/libslic3r/PrintConfig.cpp:365
-msgid "Top/bottom fill pattern"
-msgstr "Wzór wypełnienia góry/dołu"
-
-#: src/libslic3r/PrintConfig.cpp:367
-msgid ""
-"Fill pattern for top/bottom infill. This only affects the external visible "
-"layer, and not its adjacent solid shells."
-msgstr ""
-"Wzór wypełnienia górnego/dolnego. Ma wpływ jedynie na zewnętrzne widoczne "
-"warstwy, nie ma wpływu na przylegające do nich powłoki zwartego wypełnienia."
-
-#: src/libslic3r/PrintConfig.cpp:376 src/libslic3r/PrintConfig.cpp:800
-#: src/libslic3r/PrintConfig.cpp:2021
-msgid "Rectilinear"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:377 src/libslic3r/PrintConfig.cpp:806
-msgid "Concentric"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:378 src/libslic3r/PrintConfig.cpp:810
-msgid "Hilbert Curve"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:379 src/libslic3r/PrintConfig.cpp:811
-msgid "Archimedean Chords"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:380 src/libslic3r/PrintConfig.cpp:812
-msgid "Octagram Spiral"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:386 src/libslic3r/PrintConfig.cpp:397
-msgid "External perimeters"
-msgstr "Obrysy zewnętrzne"
-
-#: src/libslic3r/PrintConfig.cpp:388
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for external "
-"perimeters. If left zero, default extrusion width will be used if set, "
-"otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
-"(for example 200%), it will be computed over layer height."
-msgstr ""
-"Ustaw tą wartość jako niezerową aby pozwolić na ręczne ustawienie szerokości "
-"ekstruzji obrysów zewnętrznych. Jeśli ustawisz zero, szerokość będzie miała "
-"wartość domyślną, czyli 1.125x średnicy dyszy. Jeśli ustawisz wartość "
-"procentową (np. 200%) to zostanie obliczona z wysokości warstwy."
-
-#: src/libslic3r/PrintConfig.cpp:391 src/libslic3r/PrintConfig.cpp:841
-#: src/libslic3r/PrintConfig.cpp:975 src/libslic3r/PrintConfig.cpp:1408
-#: src/libslic3r/PrintConfig.cpp:1769 src/libslic3r/PrintConfig.cpp:1958
-#: src/libslic3r/PrintConfig.cpp:2129
-msgid "mm or % (leave 0 for default)"
-msgstr "mm lub % (zero dla domyślnych)"
-
-#: src/libslic3r/PrintConfig.cpp:399
-msgid ""
-"This separate setting will affect the speed of external perimeters (the "
-"visible ones). If expressed as percentage (for example: 80%) it will be "
-"calculated on the perimeters speed setting above. Set to zero for auto."
-msgstr ""
-"To ustawienie steruje prędkością zewnętrznych (widocznych) obrysów. Jeśli "
-"ustawisz wartość procentową (np. 80%) to zostanie obliczona z prędkości "
-"obrysów ustawionej powyżej. Ustaw zero aby pozwolić na sterowanie "
-"automatyczne."
-
-#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:864
-#: src/libslic3r/PrintConfig.cpp:1725 src/libslic3r/PrintConfig.cpp:1780
-#: src/libslic3r/PrintConfig.cpp:2006 src/libslic3r/PrintConfig.cpp:2142
-msgid "mm/s or %"
-msgstr "mm/s lub %"
-
-#: src/libslic3r/PrintConfig.cpp:409
-msgid "External perimeters first"
-msgstr "Najpierw obrysy zewnętrzne"
-
-#: src/libslic3r/PrintConfig.cpp:411
-msgid ""
-"Print contour perimeters from the outermost one to the innermost one instead "
-"of the default inverse order."
-msgstr ""
-"Drukuj obrysy od zewnątrz do wewnątrz zamiast domyślnego ustawienia węwnątrz-"
-"zewnÄ…trz."
-
-#: src/libslic3r/PrintConfig.cpp:418
-msgid "Extra perimeters if needed"
-msgstr "Dodatkowe obrysy jeśli potrzebne"
-
-#: src/libslic3r/PrintConfig.cpp:420
-#, no-c-format
-msgid ""
-"Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r "
-"keeps adding perimeters, until more than 70% of the loop immediately above "
-"is supported."
-msgstr ""
-"Dodaj więcej obrysów, aby uniknąć przerw przy pochyłych ścianach. Slic3r "
-"będzie dodawał tyle obrysów, ile jest potrzebne aby podeprzeć co najmniej "
-"70% grubości ściany kolejnej warstwy."
-
-#: src/libslic3r/PrintConfig.cpp:431
-msgid ""
-"The extruder to use (unless more specific extruder settings are specified). "
-"This value overrides perimeter and infill extruders, but not the support "
-"extruders."
-msgstr ""
-"Używany ekstruder (jeśli nie są określone dokładniejsze ustawienia "
-"ekstuderów). To ustawienie nadpisuje ustawienia ekstruderów dla obrysów i "
-"wypełnienia, ale nie tych dla podpór."
-
-#: src/libslic3r/PrintConfig.cpp:444
-msgid ""
-"Set this to the vertical distance between your nozzle tip and (usually) the "
-"X carriage rods. In other words, this is the height of the clearance "
-"cylinder around your extruder, and it represents the maximum depth the "
-"extruder can peek before colliding with other printed objects."
-msgstr ""
-"Określa pionową odległość końcówki dyszy od (zazwyczaj) prętów osi X. "
-"Inaczej mówiąc (matematycznie), jest to wysokość cylindra opisanego na "
-"zespole ekstrudera i określa maksymalną głębokość, na którą może opuścić się "
-"ekstruder aby nie uderzyć w obiekt znajdujący się bezpośrednio pod prętami "
-"osi X."
-
-#: src/libslic3r/PrintConfig.cpp:455
-msgid "Radius"
-msgstr "Promień"
-
-#: src/libslic3r/PrintConfig.cpp:456
-msgid ""
-"Set this to the clearance radius around your extruder. If the extruder is "
-"not centered, choose the largest value for safety. This setting is used to "
-"check for collisions and to display the graphical preview in the plater."
-msgstr ""
-"Określa promień okręgu opisanego na całym zespole ekstrudera (matematycznie "
-"- wyobraź sobie, że chcesz narysować okrąg opisany na zespole ekstrudera "
-"patrząc na niego z góry). Jeśli sam ekstruder nie jest dokładnie na środku, "
-"użyj największego promienia. Ta wartość jest używana do wykrywania możliwych "
-"kolizji z wydrukowanymi modelami i jako graficzna reprezentacja na "
-"wirtualnym stole."
-
-#: src/libslic3r/PrintConfig.cpp:467
-msgid "Extruder Color"
-msgstr "Kolor ekstrudera"
-
-#: src/libslic3r/PrintConfig.cpp:468 src/libslic3r/PrintConfig.cpp:535
-msgid "This is only used in the Slic3r interface as a visual help."
-msgstr ""
-"Ta funkcja jest używana jedynie w interfejsie Slic3ra jako pomoc wizualna."
-
-#: src/libslic3r/PrintConfig.cpp:475
-msgid "Extruder offset"
-msgstr "Margines ekstrudera"
-
-#: src/libslic3r/PrintConfig.cpp:476
-msgid ""
-"If your firmware doesn't handle the extruder displacement you need the G-"
-"code to take it into account. This option lets you specify the displacement "
-"of each extruder with respect to the first one. It expects positive "
-"coordinates (they will be subtracted from the XY coordinate)."
-msgstr ""
-"Jeśli oprogramowanie układowe (firmware) Twojej drukarki nie obsługuje "
-"rozmieszczenia ekstruderów to trzeba to określić w G-code. Ta opcja pozwala "
-"ustawić rozmieszczenie każdego ekstrudera w relacji do pierwszego. Oczekuje "
-"koordynat dodatnich (będą odejmowane od koordynat XY)."
-
-#: src/libslic3r/PrintConfig.cpp:486
-msgid "Extrusion axis"
-msgstr "OÅ› ekstruzji"
-
-#: src/libslic3r/PrintConfig.cpp:487
-msgid ""
-"Use this option to set the axis letter associated to your printer's extruder "
-"(usually E but some printers use A)."
-msgstr ""
-"Ta opcja określa literę, którą Twoja drukarka opisuje oś ekstrudera "
-"(zazwyczaj jest to E ale niektóre drukarki używają A)."
-
-#: src/libslic3r/PrintConfig.cpp:493
-msgid "Extrusion multiplier"
-msgstr "Współczynnik ekstruzji"
-
-#: src/libslic3r/PrintConfig.cpp:494
-msgid ""
-"This factor changes the amount of flow proportionally. You may need to tweak "
-"this setting to get nice surface finish and correct single wall widths. "
-"Usual values are between 0.9 and 1.1. If you think you need to change this "
-"more, check filament diameter and your firmware E steps."
-msgstr ""
-"Ten współczynnik określa proporcjonalną ilość przepływu plastiku. Możesz "
-"zmienić tą wartość aby uzyskać gładsze powierzchnie i poprawną szerokość "
-"ścian drukowanych z 1 linii. Ten współczynnik waha się zazwyczaj od 0.9 do "
-"1.1. Jeśli musisz wykroczyć poza ten zakres to najpierw zmierz średnicę "
-"filamentu i kroki ekstrudera (E steps)."
-
-#: src/libslic3r/PrintConfig.cpp:503
-msgid "Default extrusion width"
-msgstr "Domyślna szerokość linii"
-
-#: src/libslic3r/PrintConfig.cpp:505
-msgid ""
-"Set this to a non-zero value to allow a manual extrusion width. If left to "
-"zero, Slic3r derives extrusion widths from the nozzle diameter (see the "
-"tooltips for perimeter extrusion width, infill extrusion width etc). If "
-"expressed as percentage (for example: 230%), it will be computed over layer "
-"height."
-msgstr ""
-"Ustaw tą wartość jako niezerową aby pozwolić na ręczne ustawienie szerokości "
-"ekstrudowanej linii. Jeśli ustawisz zero, Slic3r obliczy szerokość ekstruzji "
-"na podstawie średnicy dyszy (zobacz wskazówki dla szerokości ekstruzji "
-"obrysów, wypełnienia itp). Jeśli ustawisz wartość procentową (np. 230%) to "
-"zostanie obliczona z wysokości warstwy."
-
-#: src/libslic3r/PrintConfig.cpp:509
-msgid "mm or % (leave 0 for auto)"
-msgstr "mm lub % (zero dla wartości automatycznych)"
-
-#: src/libslic3r/PrintConfig.cpp:515
-msgid "Keep fan always on"
-msgstr "Wentylator zawsze włączony"
-
-#: src/libslic3r/PrintConfig.cpp:516
-msgid ""
-"If this is enabled, fan will never be disabled and will be kept running at "
-"least at its minimum speed. Useful for PLA, harmful for ABS."
-msgstr ""
-"Ta opcja spowoduje, że wentylator nie wyłączy się podczas druku, tzn. zawsze "
-"będzie pracował z przynajmniej minimalną prędkością. Przydatne dla PLA, może "
-"szkodzić przy ABS."
-
-#: src/libslic3r/PrintConfig.cpp:522
-msgid "Enable fan if layer print time is below"
-msgstr "Włącz chłodzenie jeśli czas druku warstwy wynosi poniżej"
-
-#: src/libslic3r/PrintConfig.cpp:523
-msgid ""
-"If layer print time is estimated below this number of seconds, fan will be "
-"enabled and its speed will be calculated by interpolating the minimum and "
-"maximum speeds."
-msgstr ""
-"Jeśli szacowany czas druku warstwy będzie niższy niż ta wartość to "
-"wentylator będzie włączony a jego prędkość będzie interpolowana na podstawie "
-"górnego i dolnego limitu prędkości."
-
-#: src/libslic3r/PrintConfig.cpp:525 src/libslic3r/PrintConfig.cpp:1711
-msgid "approximate seconds"
-msgstr "szacowane sekundy"
-
-#: src/libslic3r/PrintConfig.cpp:534
-msgid "Color"
-msgstr "Kolor"
-
-#: src/libslic3r/PrintConfig.cpp:541
-msgid "Filament notes"
-msgstr "Notatki do filamentu"
-
-#: src/libslic3r/PrintConfig.cpp:542
-msgid "You can put your notes regarding the filament here."
-msgstr "Tutaj możesz umieścić notatki dotyczące filamentu."
-
-#: src/libslic3r/PrintConfig.cpp:551 src/libslic3r/PrintConfig.cpp:1196
-msgid "Max volumetric speed"
-msgstr "Maksymalny przepływ"
-
-#: src/libslic3r/PrintConfig.cpp:552
-msgid ""
-"Maximum volumetric speed allowed for this filament. Limits the maximum "
-"volumetric speed of a print to the minimum of print and filament volumetric "
-"speed. Set to zero for no limit."
-msgstr ""
-"Maksymalna prędkość objętościowa dla tego filamentu. Ogranicza maksymalną "
-"prędkość objętościową do minimum objętościowej prędkości druku i filamentu. "
-"Ustaw zero aby usunąć ograniczenie."
-
-#: src/libslic3r/PrintConfig.cpp:555 src/libslic3r/PrintConfig.cpp:1199
-msgid "mm³/s"
-msgstr "mm³/s"
-
-#: src/libslic3r/PrintConfig.cpp:562
-msgid "Loading speed"
-msgstr "Prędkość ładowania"
-
-#: src/libslic3r/PrintConfig.cpp:563
-msgid "Speed used for loading the filament on the wipe tower. "
-msgstr "Prędkość ładowania filamentu przy druku wieży czyszczącej. "
-
-#: src/libslic3r/PrintConfig.cpp:571
-msgid "Loading speed at the start"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:572
-msgid "Speed used at the very beginning of loading phase. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:580
-msgid "Unloading speed"
-msgstr "Prędkość rozładowania"
-
-#: src/libslic3r/PrintConfig.cpp:581
-msgid ""
-"Speed used for unloading the filament on the wipe tower (does not affect "
-"initial part of unloading just after ramming). "
-msgstr ""
-"Prędkość rozładowywania filamentu dla wieży czyszczącej (nie wpływa na "
-"początkową fazę rozładowywania zaraz po wyciskaniu). "
-
-#: src/libslic3r/PrintConfig.cpp:590
-msgid "Unloading speed at the start"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:591
-msgid ""
-"Speed used for unloading the tip of the filament immediately after ramming. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:599
-msgid "Delay after unloading"
-msgstr "Opóźnienie po rozładowaniu"
-
-#: src/libslic3r/PrintConfig.cpp:600
-msgid ""
-"Time to wait after the filament is unloaded. May help to get reliable "
-"toolchanges with flexible materials that may need more time to shrink to "
-"original dimensions. "
-msgstr ""
-"Czas bezczynności po rozładowaniu filamentu. Może pomóc w bezproblemowej "
-"zmianie narzędzia podczas druku z materiałami elastycznymi, które mogą "
-"potrzebować więcej czasu na skurcz termiczny wracając do nominalnego "
-"rozmiaru. "
-
-#: src/libslic3r/PrintConfig.cpp:610
-msgid "Number of cooling moves"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:611
-msgid ""
-"Filament is cooled by being moved back and forth in the cooling tubes. "
-"Specify desired number of these moves "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:620
-msgid "Speed of the first cooling move"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:621
-msgid "Cooling moves are gradually accelerating beginning at this speed. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:629
-msgid "Minimal purge on wipe tower"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:630
-msgid ""
-"After a tool change, the exact position of the newly loaded filament inside "
-"the nozzle may not be known, and the filament pressure is likely not yet "
-"stable. Before purging the print head into an infill or a sacrificial "
-"object, Slic3r will always prime this amount of material into the wipe tower "
-"to produce successive infill or sacrificial object extrusions reliably."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:635
-msgid "mm³"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:641
-msgid "Speed of the last cooling move"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:642
-msgid "Cooling moves are gradually accelerating towards this speed. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:650
-msgid "Filament load time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:651
-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 ""
-
-#: src/libslic3r/PrintConfig.cpp:659
-msgid "Ramming parameters"
-msgstr "Parametry wyciskania"
-
-#: src/libslic3r/PrintConfig.cpp:660
-msgid ""
-"This string is edited by RammingDialog and contains ramming specific "
-"parameters "
-msgstr ""
-"Ten ciąg jest edytowany przez RammingDialog i zawiera parametry właściwe dla "
-"wyciskania "
-
-#: src/libslic3r/PrintConfig.cpp:667
-msgid "Filament unload time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:668
-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 ""
-
-#: src/libslic3r/PrintConfig.cpp:677
-msgid ""
-"Enter your filament diameter here. Good precision is required, so use a "
-"caliper and do multiple measurements along the filament, then compute the "
-"average."
-msgstr ""
-"Wprowadź średnicę filamentu. Wymagana jest precyzja, więc użyj suwmiarki i "
-"zmierz filament w kilku miejscach, potem oblicz średnią."
-
-#: src/libslic3r/PrintConfig.cpp:685
-msgid "Density"
-msgstr "Gęstość"
-
-#: src/libslic3r/PrintConfig.cpp:686
-msgid ""
-"Enter your filament density here. This is only for statistical information. "
-"A decent way is to weigh a known length of filament and compute the ratio of "
-"the length to volume. Better is to calculate the volume directly through "
-"displacement."
-msgstr ""
-"Wprowadź gęstość filamentu. Służy tylko statystykom. Dobrą metodą jest "
-"zważenie filamentu o zmierzonej długości i przeliczenie stosunku wagi do "
-"objętości."
-
-#: src/libslic3r/PrintConfig.cpp:689
-msgid "g/cm³"
-msgstr "g/cm³"
-
-#: src/libslic3r/PrintConfig.cpp:695
-msgid "Filament type"
-msgstr "Typ filamentu"
-
-#: src/libslic3r/PrintConfig.cpp:696
-msgid "The filament material type for use in custom G-codes."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:712
-msgid "Soluble material"
-msgstr "Materiał rozpuszczalny"
-
-#: src/libslic3r/PrintConfig.cpp:713
-msgid "Soluble material is most likely used for a soluble support."
-msgstr ""
-"Materiał rozpuszczalny jest używany zazwyczaj do rozpuszczalnych podpór."
-
-#: src/libslic3r/PrintConfig.cpp:719
-msgid ""
-"Enter your filament cost per kg here. This is only for statistical "
-"information."
-msgstr "Wprowadź koszt filamentu za kilogram. Służy tylko statystykom."
-
-#: src/libslic3r/PrintConfig.cpp:720
-msgid "money/kg"
-msgstr "piniendzy/kg"
-
-#: src/libslic3r/PrintConfig.cpp:729
-msgid "Fill angle"
-msgstr "Kąt wypełnienia"
-
-#: src/libslic3r/PrintConfig.cpp:731
-msgid ""
-"Default base angle for infill orientation. Cross-hatching will be applied to "
-"this. Bridges will be infilled using the best direction Slic3r can detect, "
-"so this setting does not affect them."
-msgstr ""
-"Domyślny kąt linii wypełnienia. Mosty będą wypełniane z użyciem najlepszego "
-"kierunku obliczonego przez Slic3r, więc to ustawienie ich nie dotyczy."
-
-#: src/libslic3r/PrintConfig.cpp:744
-msgid "Fill density"
-msgstr "Gęstość wypełnienia"
-
-#: src/libslic3r/PrintConfig.cpp:746
-msgid "Density of internal infill, expressed in the range 0% - 100%."
-msgstr "Gęstość wypełnienia wewnętrznego, wyrażana w zakresie 0% - 100%."
-
-#: src/libslic3r/PrintConfig.cpp:782
-msgid "Fill pattern"
-msgstr "Wzór wypełnienia"
-
-#: src/libslic3r/PrintConfig.cpp:784
-msgid "Fill pattern for general low-density infill."
-msgstr "Wzór dla ogólnego wypełnienia o niskiej gęstości."
-
-#: src/libslic3r/PrintConfig.cpp:801
-msgid "Grid"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:802
-msgid "Triangles"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:803
-msgid "Stars"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:804
-msgid "Cubic"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:805
-msgid "Line"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:807 src/libslic3r/PrintConfig.cpp:2023
-msgid "Honeycomb"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:808
-msgid "3D Honeycomb"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:809
-msgid "Gyroid"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:826
-#: src/libslic3r/PrintConfig.cpp:835 src/libslic3r/PrintConfig.cpp:871
-msgid "First layer"
-msgstr "Pierwsza warstwa"
-
-#: src/libslic3r/PrintConfig.cpp:817
-msgid ""
-"This is the acceleration your printer will use for first layer. Set zero to "
-"disable acceleration control for first layer."
-msgstr ""
-"To jest przyspieszenie stosowane przy druku pierwszej warstwy. Ustaw zero "
-"aby wyłączyć osobne ustawienia przyspieszenia dla pierwszej warstwy."
-
-#: src/libslic3r/PrintConfig.cpp:827
-msgid ""
-"Heated build plate temperature for the first layer. Set this to zero to "
-"disable bed temperature control commands in the output."
-msgstr ""
-"Temperatura podgrzewanego stołu dla pierwszej warstwy. Ustaw zero aby "
-"wyłączyć komendy kontrolujące temperaturę stołu w pliku wyjściowym."
-
-#: src/libslic3r/PrintConfig.cpp:837
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for first "
-"layer. You can use this to force fatter extrudates for better adhesion. If "
-"expressed as percentage (for example 120%) it will be computed over first "
-"layer height. If set to zero, it will use the default extrusion width."
-msgstr ""
-"Ustaw tą wartość jako niezerową aby pozwolić na ręczne ustawienie szerokości "
-"ekstruzji pierwszej warstwy. Dzięki tej funkcji możesz wymusić grubsze linie "
-"dla lepszej przyczepności. Jeśli ustawisz wartość procentową (np. 120%) to "
-"będzie oliczona z wysokości pierwszej warstwy. Ustaw zero dla wartości "
-"domyślnej."
-
-#: src/libslic3r/PrintConfig.cpp:848
-msgid "First layer height"
-msgstr "Wysokość pierwszej warstwy"
-
-#: src/libslic3r/PrintConfig.cpp:850
-msgid ""
-"When printing with very low layer heights, you might still want to print a "
-"thicker bottom layer to improve adhesion and tolerance for non perfect build "
-"plates. This can be expressed as an absolute value or as a percentage (for "
-"example: 150%) over the default layer height."
-msgstr ""
-"Podczas druku z bardzo małą wysokością warstwy warto mimo wszystko "
-"wydrukować najniższą warstwę o większej wysokości aby zwiększyć przyczepność "
-"i tolerancję na niedoskonałości powierzchni druki. Może być wyrażona jako "
-"wartość bezwzględna lub procentowa (np. 150%) nominalnej wysokości warstwy."
-
-#: src/libslic3r/PrintConfig.cpp:854 src/libslic3r/PrintConfig.cpp:1003
-#: src/libslic3r/PrintConfig.cpp:1884
-msgid "mm or %"
-msgstr "mm lub %"
-
-#: src/libslic3r/PrintConfig.cpp:860
-msgid "First layer speed"
-msgstr "Prędkość pierwszej warstwy"
-
-#: src/libslic3r/PrintConfig.cpp:861
-msgid ""
-"If expressed as absolute value in mm/s, this speed will be applied to all "
-"the print moves of the first layer, regardless of their type. If expressed "
-"as a percentage (for example: 40%) it will scale the default speeds."
-msgstr ""
-"Jeśli ustawisz wartość bezwzględną wyrażoną w mm/s, taka prędkość będzie "
-"zastosowana dla wszystkich ruchów drukujących dla pierwszej warstwy, nie "
-"zależnie od ich rodzajów. Jeśli ustawisz wartość procentową (np. 40%), "
-"będzie ona skalowana wg domyślnej prędkości."
-
-#: src/libslic3r/PrintConfig.cpp:872
-msgid ""
-"Extruder temperature for first layer. If you want to control temperature "
-"manually during print, set this to zero to disable temperature control "
-"commands in the output file."
-msgstr ""
-"Temperatura ekstrudera dla pierwszej warstwy. Jeśli chcesz ręcznie "
-"kontrolować temperaturę podczas druku to ustaw zero aby wyłączyć komendy "
-"kontrolujące temperaturę w pliku wyjściowym."
-
-#: src/libslic3r/PrintConfig.cpp:882
-msgid ""
-"Speed for filling small gaps using short zigzag moves. Keep this reasonably "
-"low to avoid too much shaking and resonance issues. Set zero to disable gaps "
-"filling."
-msgstr ""
-"Prędkość wypełniania szczelin krótkimi ruchami typu zygzak. Ustaw tą wartość "
-"na tyle nisko aby uniknąć wibracji i rezonansu. Ustaw 0 aby wyłączyć "
-"wypełnianie szczelin."
-
-#: src/libslic3r/PrintConfig.cpp:890
-msgid "Verbose G-code"
-msgstr "G-code rozszerzony"
-
-#: src/libslic3r/PrintConfig.cpp:891
-msgid ""
-"Enable this to get a commented G-code file, with each line explained by a "
-"descriptive text. If you print from SD card, the additional weight of the "
-"file could make your firmware slow down."
-msgstr ""
-"Włącz tą opcję aby dodawać komentarz opsiujący do każdej liniki pliku G-"
-"code. Przy druku z karty SD dodatkowy rozmiar pliku może sprawiać, że "
-"firmware będzie reagować wolniej."
-
-#: src/libslic3r/PrintConfig.cpp:899
-msgid "G-code flavor"
-msgstr "Rodzaj G-code"
-
-#: src/libslic3r/PrintConfig.cpp:900
-msgid ""
-"Some G/M-code commands, including temperature control and others, are not "
-"universal. Set this option to your printer's firmware to get a compatible "
-"output. The \"No extrusion\" flavor prevents Slic3r from exporting any "
-"extrusion value at all."
-msgstr ""
-"Niektóre komendy G/M-code, wliczając w to dot. kontroli temperatury i inne, "
-"nie są uniwersalne. Ustaw tą opcję zgodnie z oprogramowaniem układowym "
-"Twojej drukarki aby dostać kompatybilny plik wyjściowy. Parametr \"Bez "
-"ekstruzji\" (\"No extrusion\") zapobiega generowaniu przez Slic3r "
-"jakichkolwiek ekstruzji."
-
-#: src/libslic3r/PrintConfig.cpp:924
-msgid "No extrusion"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:929
-msgid "High extruder current on filament swap"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:930
-msgid ""
-"It may be beneficial to increase the extruder motor current during the "
-"filament exchange sequence to allow for rapid ramming feed rates and to "
-"overcome resistance when loading a filament with an ugly shaped tip."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:939
-msgid ""
-"This is the acceleration your printer will use for infill. Set zero to "
-"disable acceleration control for infill."
-msgstr ""
-"To jest przyspieszenie stosowane przy druku wypełnienia. Ustaw zero aby "
-"wyłączyć osobne ustawienia przyspieszenia dla wypełnienia."
-
-#: src/libslic3r/PrintConfig.cpp:948
-msgid "Combine infill every"
-msgstr "Scalaj wypełnienie co"
-
-#: src/libslic3r/PrintConfig.cpp:950
-msgid ""
-"This feature allows to combine infill and speed up your print by extruding "
-"thicker infill layers while preserving thin perimeters, thus accuracy."
-msgstr ""
-"Ta funkcja pozwala ustawić oddzielne wysokości dla wypełnienia i obrysów "
-"modelu i przyspieszyć wydruk ustawiając np. wyższą warstwę wypełnienia "
-"zachowując nominalną wysokość obrysów, co pozwoli zachować wysoką jakość i "
-"dokładność wydruku."
-
-#: src/libslic3r/PrintConfig.cpp:954
-msgid "Combine infill every n layers"
-msgstr "Scalaj wypełnienie co n warstw"
-
-#: src/libslic3r/PrintConfig.cpp:960
-msgid "Infill extruder"
-msgstr "Ekstruder dla wypełnienia"
-
-#: src/libslic3r/PrintConfig.cpp:962
-msgid "The extruder to use when printing infill."
-msgstr "Ekstruder używany do druku wypełnienia."
-
-#: src/libslic3r/PrintConfig.cpp:971
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill. If "
-"left zero, default extrusion width will be used if set, otherwise 1.125 x "
-"nozzle diameter will be used. You may want to use fatter extrudates to speed "
-"up the infill and make your parts stronger. If expressed as percentage (for "
-"example 90%) it will be computed over layer height."
-msgstr ""
-"Ustaw tą wartość jako niezerową aby pozwolić na ręczne ustawienie szerokości "
-"ekstruzji wypełnienia. Jeśli ustawisz zero to szerokość będzie miała wartość "
-"domyślną, czyli 1.125x średnicy dyszy. Możesz ustawić większą szerokość aby "
-"przyspieszyć druk wypełnienia i zwiększyć wytrzymałość wydruków. Jeśli "
-"ustawisz wartość procentową (np. 90%) to zostanie obliczona z wysokości "
-"warstwy."
-
-#: src/libslic3r/PrintConfig.cpp:981
-msgid "Infill before perimeters"
-msgstr "Wypełnienie przed obrysami"
-
-#: src/libslic3r/PrintConfig.cpp:982
-msgid ""
-"This option will switch the print order of perimeters and infill, making the "
-"latter first."
-msgstr ""
-"Ta opcja zamieni kolejność druku obrysów i wypełnienia, aby te drugie były "
-"drukowane jako pierwsze."
-
-#: src/libslic3r/PrintConfig.cpp:988
-msgid "Only infill where needed"
-msgstr "Tylko potrzebne wypełnienie"
-
-#: src/libslic3r/PrintConfig.cpp:990
-msgid ""
-"This option will limit infill to the areas actually needed for supporting "
-"ceilings (it will act as internal support material). If enabled, slows down "
-"the G-code generation due to the multiple checks involved."
-msgstr ""
-"Ta opcja wygeneruje wypełnienie jedynie w miejscach, gdzie jest potrzebne do "
-"podparcia górnych warstw (zadziała na zasadzie wewnętrznych podpór). "
-"Włączenie jej spowolni generowanie G-code ze względu na konieczność "
-"kilkukrotnej weryfikacji."
-
-#: src/libslic3r/PrintConfig.cpp:998
-msgid "Infill/perimeters overlap"
-msgstr "Nakładanie wypełnienia na obrysy"
-
-#: src/libslic3r/PrintConfig.cpp:1000
-msgid ""
-"This setting applies an additional overlap between infill and perimeters for "
-"better bonding. Theoretically this shouldn't be needed, but backlash might "
-"cause gaps. If expressed as percentage (example: 15%) it is calculated over "
-"perimeter extrusion width."
-msgstr ""
-"To ustawienie odpowiada za dodatkowe nakładanie na siebie linii obrysów i "
-"wypełnienia dla lepszego spojenia. Teoretycznie nie powinno być potrzebne "
-"ale luz może powodować szczeliny. Jeśli ustawisz wartość procentową (np. "
-"15%) to zostanie obliczona z szerokości ekstruzji obrysów."
-
-#: src/libslic3r/PrintConfig.cpp:1012
-msgid "Speed for printing the internal fill. Set to zero for auto."
-msgstr ""
-"Prędkość druku wewnętrznego wypełnienia. Ustaw 0 dla prędkości automatycznej."
-
-#: src/libslic3r/PrintConfig.cpp:1020
-msgid "Inherits profile"
-msgstr "Dziedziczy profil"
-
-#: src/libslic3r/PrintConfig.cpp:1021
-msgid "Name of the profile, from which this profile inherits."
-msgstr "Nazwa profilu, z którego dziedziczy ten profil."
-
-#: src/libslic3r/PrintConfig.cpp:1032
-msgid "Interface shells"
-msgstr "Obrysy łączące"
-
-#: src/libslic3r/PrintConfig.cpp:1033
-msgid ""
-"Force the generation of solid shells between adjacent materials/volumes. "
-"Useful for multi-extruder prints with translucent materials or manual "
-"soluble support material."
-msgstr ""
-"Wymuś generowanie zwartych powłok pomiędzy przylegającymi do siebie "
-"materiałami. Przydatne przy druku materiałami przejrzystymi lub przy "
-"ręcznych podporach rozpuszczalnych."
-
-#: src/libslic3r/PrintConfig.cpp:1043
-msgid ""
-"This custom code is inserted at every layer change, right after the Z move "
-"and before the extruder moves to the first layer point. Note that you can "
-"use placeholder variables for all Slic3r settings as well as [layer_num] and "
-"[layer_z]."
-msgstr ""
-"Ten kod jest wykonywany przy każdej zmianie warstwy - zaraz po podniesieniu "
-"głowicy na wysokość kolejnej warstwy ale zanim ekstruder przejdzie do "
-"pierwszego punktu nowej warstwy. Pamiętaj, że możesz użyć zmiennych typu "
-"placeholder dla wszystkich ustawień Slic3r, jak np. [layer_num] (numer "
-"warstwy) i [layer_z] (położenie warstwy w osi Z)."
-
-#: src/libslic3r/PrintConfig.cpp:1054
-msgid "Supports remaining times"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1055
-msgid ""
-"Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute "
-"intervals into the G-code to let the firmware show accurate remaining time. "
-"As of now only the Prusa i3 MK3 firmware recognizes M73. Also the i3 MK3 "
-"firmware supports M73 Qxx Sxx for the silent mode."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1063
-msgid "Supports silent mode"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1064
-msgid "Set silent mode for the G-code flavor"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1087
-msgid "Maximum feedrate %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1089
-msgid "Maximum feedrate of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1097
-msgid "Maximum acceleration %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1099
-msgid "Maximum acceleration of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1107
-msgid "Maximum jerk %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1109
-msgid "Maximum jerk of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122
-msgid "Minimum feedrate when extruding"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133
-msgid "Minimum travel feedrate"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144
-msgid "Maximum acceleration when extruding"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1153 src/libslic3r/PrintConfig.cpp:1155
-msgid "Maximum acceleration when retracting"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1173
-msgid "Max"
-msgstr "Max"
-
-#: src/libslic3r/PrintConfig.cpp:1164
-msgid "This setting represents the maximum speed of your fan."
-msgstr "To ustawienie odpowiada za maksymalną prędkość wentylatora."
-
-#: src/libslic3r/PrintConfig.cpp:1174
-#, no-c-format
-msgid ""
-"This is the highest printable layer height for this extruder, used to cap "
-"the variable layer height and support layer height. Maximum recommended "
-"layer height is 75% of the extrusion width to achieve reasonable inter-layer "
-"adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter."
-msgstr ""
-"To jest najwyższa możliwa do wydrukowania wysokość warstwy dla tego "
-"ekstrudera i jednocześnie górny limit dla funkcji zmiennej wysokości warstwy "
-"i materiału podporowego. Zalecana jest wartość nie większa niż 75% "
-"szerokości ekstruzji aby zapewnić dobrą przyczepność warstw do siebie. Jeśli "
-"ustawisz zero, wysokość warstwy zostanie ograniczona do 75% średnicy dyszy."
-
-#: src/libslic3r/PrintConfig.cpp:1185
-msgid "Max print speed"
-msgstr "Maksymalna prędkość druku"
-
-#: src/libslic3r/PrintConfig.cpp:1186
-msgid ""
-"When setting other speed settings to 0 Slic3r will autocalculate the optimal "
-"speed in order to keep constant extruder pressure. This experimental setting "
-"is used to set the highest print speed you want to allow."
-msgstr ""
-"Ustawienie pozostałych prędkości na 0 spowoduje, ze Slic3r będzie "
-"automatycznie przeliczał optymalną prędkość dla utrzymania stałego ciśnienia "
-"materiału w ekstruderze. To eksperymentalne ustawienie określa maksymalną "
-"dozwoloną prędkość druku."
-
-#: src/libslic3r/PrintConfig.cpp:1197
-msgid ""
-"This experimental setting is used to set the maximum volumetric speed your "
-"extruder supports."
-msgstr ""
-"Ta eksperymentalna funkcja określa maksymalną prędkość objętościową, którą "
-"jest w stanie wytłoczyć Twój ekstruder."
-
-#: src/libslic3r/PrintConfig.cpp:1206
-msgid "Max volumetric slope positive"
-msgstr "Maksymalny objętościowo kąt pozytywny"
-
-#: src/libslic3r/PrintConfig.cpp:1207 src/libslic3r/PrintConfig.cpp:1219
-msgid ""
-"This experimental setting is used to limit the speed of change in extrusion "
-"rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate "
-"of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/"
-"s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds."
-msgstr ""
-"To ustawienie eksperymentalne jest używane do ograniczania szybkości zmian "
-"ilości ekstrudowanego materiału. Wartość 1.8 mm³/s² oznacza, że zmiana z "
-"ilości ekstrudowanego materiału z poziomu 1.8 mm³/s (czyli 0.45 mm "
-"szerokości ekstruzji, 0.2 mm wysokości warstwy przy prędkości 20 mm/s) na "
-"5.4 mm³/s (prędkość 60 mm/s) zajmie co najmniej 2 sekundy."
-
-#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1223
-msgid "mm³/s²"
-msgstr "mm³/s²"
-
-#: src/libslic3r/PrintConfig.cpp:1218
-msgid "Max volumetric slope negative"
-msgstr "Maksymalny negatywny kÄ…t zwisu"
-
-#: src/libslic3r/PrintConfig.cpp:1230 src/libslic3r/PrintConfig.cpp:1240
-msgid "Min"
-msgstr "Min"
-
-#: src/libslic3r/PrintConfig.cpp:1231
-msgid "This setting represents the minimum PWM your fan needs to work."
-msgstr ""
-"To ustawienie wyraża minimalny PWM (Pulse Width Modulation), który jest "
-"niezbędny dla wentylatora."
-
-#: src/libslic3r/PrintConfig.cpp:1241
-msgid ""
-"This is the lowest printable layer height for this extruder and limits the "
-"resolution for variable layer height. Typical values are between 0.05 mm and "
-"0.1 mm."
-msgstr ""
-"To jest najniższa możliwa do wydrukowania wysokość warstwy dla tego "
-"ekstrudera i jednocześnie dolny limit dla funkcji zmiennej wysokości "
-"warstwy. Zazwyczaj jest to 0.05 lub 0.1 mm."
-
-#: src/libslic3r/PrintConfig.cpp:1250
-msgid "Min print speed"
-msgstr "Minimalna prędkość druku"
-
-#: src/libslic3r/PrintConfig.cpp:1251
-msgid "Slic3r will not scale speed down below this speed."
-msgstr "Slic3r nie będzie skalował prędkości poniżej tej wartości."
-
-#: src/libslic3r/PrintConfig.cpp:1259
-msgid "Minimal filament extrusion length"
-msgstr "Minimalna długość ekstruzji"
-
-#: src/libslic3r/PrintConfig.cpp:1260
-msgid ""
-"Generate no less than the number of skirt loops required to consume the "
-"specified amount of filament on the bottom layer. For multi-extruder "
-"machines, this minimum applies to each extruder."
-msgstr ""
-"Generuj ilość pętli skirtu nie mniejszą niż określona aby zużyć taką ilość "
-"filamentu na dolnej warstwie. Dla drukarek z kilkoma ekstuderami ta wartość "
-"jest stosowana dla każdego z nich."
-
-#: src/libslic3r/PrintConfig.cpp:1270
-msgid "Configuration notes"
-msgstr "Notatki konfiguracyjne"
-
-#: src/libslic3r/PrintConfig.cpp:1271
-msgid ""
-"You can put here your personal notes. This text will be added to the G-code "
-"header comments."
-msgstr ""
-"Tutaj możesz umieścić notatki, które zostaną dodane do nagłówka pliku G-code."
-
-#: src/libslic3r/PrintConfig.cpp:1281
-msgid "Nozzle diameter"
-msgstr "Åšrednica dyszy"
-
-#: src/libslic3r/PrintConfig.cpp:1282
-msgid ""
-"This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)"
-msgstr "To jest średnica dyszy ekstrudera (np. 0.5, 0.35 itp.)"
-
-#: src/libslic3r/PrintConfig.cpp:1288
-msgid "Host Type"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1289
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field must contain "
-"the kind of the host."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1301
-msgid "API Key / Password"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1302
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the API Key or the password required for authentication."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1317
-msgid "Hostname, IP or URL"
-msgstr "Nazwa Hosta, IP lub URL"
-
-#: src/libslic3r/PrintConfig.cpp:1318
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the hostname, IP address or URL of the printer host instance."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1325
-msgid "Only retract when crossing perimeters"
-msgstr "Retrakcja tylko przy przechodzeniu nad obrysami"
-
-#: src/libslic3r/PrintConfig.cpp:1326
-msgid ""
-"Disables retraction when the travel path does not exceed the upper layer's "
-"perimeters (and thus any ooze will be probably invisible)."
-msgstr ""
-"Wyłącza retrakcję gdy ruch jałowy nie wykracza poza zewnętrzny obrys górnej "
-"warstwy (więc jakiekolwiek wycieki z dyszy prawdopodobnie i tak nie będą "
-"widoczne)."
-
-#: src/libslic3r/PrintConfig.cpp:1334
-msgid ""
-"This option will drop the temperature of the inactive extruders to prevent "
-"oozing. It will enable a tall skirt automatically and move extruders outside "
-"such skirt when changing temperatures."
-msgstr ""
-"Ta funkcja obniży temperatury nieużywanych ekstruderów aby zapobiec "
-"wyciekaniu filamentu z dyszy. Równocześnie włączy wysoki skirt i przesunie "
-"ekstrudery poza jego obrys przy zmianie temperatury."
-
-#: src/libslic3r/PrintConfig.cpp:1342
-msgid "Output filename format"
-msgstr "Rozszerzenie pliku wyjściowego"
-
-#: src/libslic3r/PrintConfig.cpp:1343
-msgid ""
-"You can use all configuration options as variables inside this template. For "
-"example: [layer_height], [fill_density] etc. You can also use [timestamp], "
-"[year], [month], [day], [hour], [minute], [second], [version], "
-"[input_filename], [input_filename_base]."
-msgstr ""
-"Możesz użyć wszystkich opcji konfiguracjnych jako zmiennych w tym szablonie, "
-"takich jak np: [layer_height] - wysokość warstwy, [fill_density] - gęstość "
-"wypełnienia, itp. Możesz również użyć [timestamp] - czas, [year] - rok, "
-"[month] - miesiąc, [day] - dzień, [hour] - godzina, [minute] - minuta, "
-"[second] - sekunda, [version] - wersja, [input_filename] - pełna nazwa pliku "
-"wejściowego, [input_filename_base] - nazwa pliku wejściowego bez "
-"rozszerzenia."
-
-#: src/libslic3r/PrintConfig.cpp:1353
-msgid "Detect bridging perimeters"
-msgstr "Wykrywanie mostów przy obrysach"
-
-#: src/libslic3r/PrintConfig.cpp:1355
-msgid ""
-"Experimental option to adjust flow for overhangs (bridge flow will be used), "
-"to apply bridge speed to them and enable fan."
-msgstr ""
-"Opcja eksperymentalna dostosowująca przepływ przy zwisach (zostanie "
-"zastosowany przepływ taki jak dla mostów), zastosuje również prędkość i "
-"chłodzenie takie jak dla mostów."
-
-#: src/libslic3r/PrintConfig.cpp:1362
-msgid "Filament parking position"
-msgstr "Pozycja zatrzymania filamentu"
-
-#: src/libslic3r/PrintConfig.cpp:1363
-msgid ""
-"Distance of the extruder tip from the position where the filament is parked "
-"when unloaded. This should match the value in printer firmware. "
-msgstr ""
-"Odległość końcówki ekstrudera do miejsca zatrzymania filamentu po "
-"rozładowaniu. Ta wartość powinna odpowiadać tej ustawionej w firmware "
-"drukarki. "
-
-#: src/libslic3r/PrintConfig.cpp:1372
-msgid "Extra loading distance"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1373
-msgid ""
-"When set to zero, the distance the filament is moved from parking position "
-"during load is exactly the same as it was moved back during unload. When "
-"positive, it is loaded further, if negative, the loading move is shorter "
-"than unloading. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1382 src/libslic3r/PrintConfig.cpp:1402
-#: src/libslic3r/PrintConfig.cpp:1415 src/libslic3r/PrintConfig.cpp:1425
-msgid "Perimeters"
-msgstr "Obrysy"
-
-#: src/libslic3r/PrintConfig.cpp:1383
-msgid ""
-"This is the acceleration your printer will use for perimeters. A high value "
-"like 9000 usually gives good results if your hardware is up to the job. Set "
-"zero to disable acceleration control for perimeters."
-msgstr ""
-"To jest przyspieszenie stosowane przy druku obrysów. Wysoka wartość, np. "
-"9000 zazwyczaj daje dobre rezultaty - pod warunkiem, że Twój sprzęt się do "
-"tego nadaje. Ustaw zero aby wyłączyć osobne ustawienia przyspieszenia dla "
-"obrysów."
-
-#: src/libslic3r/PrintConfig.cpp:1392
-msgid "Perimeter extruder"
-msgstr "Ekstruder dla obrysów"
-
-#: src/libslic3r/PrintConfig.cpp:1394
-msgid ""
-"The extruder to use when printing perimeters and brim. First extruder is 1."
-msgstr ""
-"Ekstruder używany przy druku obrysów i brim. Pierwszy ekstruder ma nr 1."
-
-#: src/libslic3r/PrintConfig.cpp:1404
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for perimeters. "
-"You may want to use thinner extrudates to get more accurate surfaces. If "
-"left zero, default extrusion width will be used if set, otherwise 1.125 x "
-"nozzle diameter will be used. If expressed as percentage (for example 200%) "
-"it will be computed over layer height."
-msgstr ""
-"Ustaw tą wartość jako niezerową aby pozwolić na ręczne ustawienie szerokości "
-"ekstruzji obrysów. Możesz ustawić większą szerokość aby uzyskać "
-"dokładniejsze wykończenie powierzchni. Jeśli ustawisz zero to szerokość "
-"będzie miała wartość domyślną, czyli 1.125x średnicy dyszy. Jeśli ustawisz "
-"wartość procentową (np. 200%) to zostanie obliczona z wysokości warstwy."
-
-#: src/libslic3r/PrintConfig.cpp:1417
-msgid ""
-"Speed for perimeters (contours, aka vertical shells). Set to zero for auto."
-msgstr ""
-"Prędkość obrysów (inaczej powłoki pionowej). Ustaw 0 dla prędkości "
-"automatycznej."
-
-#: src/libslic3r/PrintConfig.cpp:1427
-msgid ""
-"This option sets the number of perimeters to generate for each layer. Note "
-"that Slic3r may increase this number automatically when it detects sloping "
-"surfaces which benefit from a higher number of perimeters if the Extra "
-"Perimeters option is enabled."
-msgstr ""
-"To ustawienie określa ilość obrysów, które będą generowane dla każdej "
-"warstwy. Weź po uwagę, że Slic3r może zwiększyć tą liczbę automatycznie gdy "
-"wykryje zwisy, w których wydruku pomoże dodatkowa ilość obrysów przy "
-"jednocześnie włączonej opcji \"Dodatkowe obrysy jeśli potrzebne\"."
-
-#: src/libslic3r/PrintConfig.cpp:1431
-msgid "(minimum)"
-msgstr "(minimum)"
-
-#: src/libslic3r/PrintConfig.cpp:1439
-msgid ""
-"If you want to process the output G-code through custom scripts, just list "
-"their absolute paths here. Separate multiple scripts with a semicolon. "
-"Scripts will be passed the absolute path to the G-code file as the first "
-"argument, and they can access the Slic3r config settings by reading "
-"environment variables."
-msgstr ""
-"Wprowadź ścieżki do własnych skryptów jeśli chcesz dodać je do wyjściowego "
-"pliku G-code. Możesz dodać wiele skryptów, rozdzielając je średnikiem ( ; ). "
-"Skrypty będą przetwarzane jako pierwsze w kolejności i mają dostęp do "
-"ustawień konfiguracyjnych Slic3ra przez zmienne środowiskowe."
-
-#: src/libslic3r/PrintConfig.cpp:1452
-msgid "Printer type"
-msgstr "Rodzaj drukarki"
-
-#: src/libslic3r/PrintConfig.cpp:1453
-msgid "Type of the printer."
-msgstr "Rodzaj drukarki."
-
-#: src/libslic3r/PrintConfig.cpp:1457
-msgid "Printer notes"
-msgstr "Notatki o drukarce"
-
-#: src/libslic3r/PrintConfig.cpp:1458
-msgid "You can put your notes regarding the printer here."
-msgstr "Tutaj możesz umieścić notatki dotyczące drukarki."
-
-#: src/libslic3r/PrintConfig.cpp:1467
-msgid "Printer vendor"
-msgstr "Dostawca drukarki"
-
-#: src/libslic3r/PrintConfig.cpp:1468
-msgid "Name of the printer vendor."
-msgstr "Nazwa dostawcy drukarki."
-
-#: src/libslic3r/PrintConfig.cpp:1472
-msgid "Printer variant"
-msgstr "Wariant drukarki"
-
-#: src/libslic3r/PrintConfig.cpp:1473
-msgid ""
-"Name of the printer variant. For example, the printer variants may be "
-"differentiated by a nozzle diameter."
-msgstr "Nazwa wersji drukarki. Możesz np. tworzyć warianty wg średnicy dyszy."
-
-#: src/libslic3r/PrintConfig.cpp:1483
-msgid "Raft layers"
-msgstr "Warstwy tratwy"
-
-#: src/libslic3r/PrintConfig.cpp:1485
-msgid ""
-"The object will be raised by this number of layers, and support material "
-"will be generated under it."
-msgstr ""
-"Model zostanie podniesiony o zadaną ilość warstw i umieszczony na podporach."
-
-#: src/libslic3r/PrintConfig.cpp:1494
-msgid "Resolution"
-msgstr "Rozdzielczość"
-
-#: src/libslic3r/PrintConfig.cpp:1495
-msgid ""
-"Minimum detail resolution, used to simplify the input file for speeding up "
-"the slicing job and reducing memory usage. High-resolution models often "
-"carry more detail than printers can render. Set to zero to disable any "
-"simplification and use full resolution from input."
-msgstr ""
-"Minimalna rozdzielczość, używana do uproszczenia modelu wejściowego, co "
-"prowadzi do przyspieszenia procesu cięcia. Modele w wysokiej rozdzielczości "
-"mogą zawierać więcej szczegółów niż drukarka jest w stanie przetworzyć. "
-"Ustaw zero aby wyłączyć upraszczanie i użyć pełnej rozdzielczości pliku "
-"wejściowego."
-
-#: src/libslic3r/PrintConfig.cpp:1506
-msgid "Minimum travel after retraction"
-msgstr "Minimalny ruch jałowy po retrakcji"
-
-#: src/libslic3r/PrintConfig.cpp:1507
-msgid ""
-"Retraction is not triggered when travel moves are shorter than this length."
-msgstr ""
-"Retrakcja nie zostanie wykonana przy ruchu jałowym krótszym niż ta wartość."
-
-#: src/libslic3r/PrintConfig.cpp:1514
-msgid "Retract amount before wipe"
-msgstr "Długość retrakcji przed ruchem czyszczącym"
-
-#: src/libslic3r/PrintConfig.cpp:1515
-msgid ""
-"With bowden extruders, it may be wise to do some amount of quick retract "
-"before doing the wipe movement."
-msgstr ""
-"Przy ekstruderze typu bowden warto wykonać szybką retrakcję przed ruchem "
-"czyszczÄ…cym."
-
-#: src/libslic3r/PrintConfig.cpp:1523
-msgid "Retract on layer change"
-msgstr "Retrakcja przy zmianie warstwy"
-
-#: src/libslic3r/PrintConfig.cpp:1524
-msgid "This flag enforces a retraction whenever a Z move is done."
-msgstr "Ta flaga wymusza retrakcję przy każdej zmianie wysokości Z."
-
-#: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:1539
-msgid "Length"
-msgstr "Długość"
-
-#: src/libslic3r/PrintConfig.cpp:1531
-msgid "Retraction Length"
-msgstr "Długość retrakcji"
-
-#: src/libslic3r/PrintConfig.cpp:1532
-msgid ""
-"When retraction is triggered, filament is pulled back by the specified "
-"amount (the length is measured on raw filament, before it enters the "
-"extruder)."
-msgstr ""
-"Kiedy zostaje wykonana retrakcja to filament o określonej długości jest "
-"wciągany z powrotem (mierzona jest długość nieprzetworzonego filamentu, "
-"zanim wejdzie do ekstrudera)."
-
-#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1544
-msgid "mm (zero to disable)"
-msgstr "mm (zero aby wyłączyć)"
-
-#: src/libslic3r/PrintConfig.cpp:1540
-msgid "Retraction Length (Toolchange)"
-msgstr "Długość Retrakcji (zmiana narzędzia)"
-
-#: src/libslic3r/PrintConfig.cpp:1541
-msgid ""
-"When retraction is triggered before changing tool, filament is pulled back "
-"by the specified amount (the length is measured on raw filament, before it "
-"enters the extruder)."
-msgstr ""
-"Kiedy retrakcja zostaje wykonana przed zmianÄ… ekstrudera, filament o "
-"określonej długości jest wciągany z powrotem (mierzona jest długość "
-"nieprzetworzonego filamentu, zanim wejdzie do ekstrudera)."
-
-#: src/libslic3r/PrintConfig.cpp:1550
-msgid "Lift Z"
-msgstr "Z-hop"
-
-#: src/libslic3r/PrintConfig.cpp:1551
-msgid ""
-"If you set this to a positive value, Z is quickly raised every time a "
-"retraction is triggered. When using multiple extruders, only the setting for "
-"the first extruder will be considered."
-msgstr ""
-"Jeśli ustawisz tu wartość dodatnią to oś Z wykona szybki ruch w górę przy "
-"każdej retrakcji. Przy używaniu kilku ekstruderów tylko ustawienia "
-"pierwszego z nich będą brane pod uwagę."
-
-#: src/libslic3r/PrintConfig.cpp:1559
-msgid "Above Z"
-msgstr "Powyżej Z"
-
-#: src/libslic3r/PrintConfig.cpp:1560
-msgid "Only lift Z above"
-msgstr "Z-hop tylko powyżej"
-
-#: src/libslic3r/PrintConfig.cpp:1561
-msgid ""
-"If you set this to a positive value, Z lift will only take place above the "
-"specified absolute Z. You can tune this setting for skipping lift on the "
-"first layers."
-msgstr ""
-"Jeśli ustawisz wartość dodatnią, to oś Z (z-hop) będzie podnosić się tylko "
-"powyżej ustawionej wartości. Możesz w ten sposób wyłączyć z-hop na pierwszej "
-"warstwie."
-
-#: src/libslic3r/PrintConfig.cpp:1569
-msgid "Below Z"
-msgstr "Poniżej Z"
-
-#: src/libslic3r/PrintConfig.cpp:1570
-msgid "Only lift Z below"
-msgstr "Z-hop tylko poniżej"
-
-#: src/libslic3r/PrintConfig.cpp:1571
-msgid ""
-"If you set this to a positive value, Z lift will only take place below the "
-"specified absolute Z. You can tune this setting for limiting lift to the "
-"first layers."
-msgstr ""
-"Jeśli ustawisz wartość dodatnią, to z-hop będzie odbywał się tylko poniżej "
-"ustawionej wartości. Możesz w ten sposób ograniczyć działanie funkcji np. "
-"tylko dla pierwszych warstw."
-
-#: src/libslic3r/PrintConfig.cpp:1580 src/libslic3r/PrintConfig.cpp:1589
-msgid "Extra length on restart"
-msgstr "Dodatkowa ilość dla powrotu"
-
-#: src/libslic3r/PrintConfig.cpp:1581
-msgid ""
-"When the retraction is compensated after the travel move, the extruder will "
-"push this additional amount of filament. This setting is rarely needed."
-msgstr ""
-"Jeśli retrakcja jest korygowana po ruchu jałowym, ekstruder przepchnie taką "
-"dodatkową ilość filamentu. Ta opcja jest rzadko potrzebna."
-
-#: src/libslic3r/PrintConfig.cpp:1590
-msgid ""
-"When the retraction is compensated after changing tool, the extruder will "
-"push this additional amount of filament."
-msgstr ""
-"Jeśli retrakcja jest korygowana po zmianie narzędzia, ekstruder przepchnie "
-"taką dodatkową ilość filamentu."
-
-#: src/libslic3r/PrintConfig.cpp:1598 src/libslic3r/PrintConfig.cpp:1599
-msgid "Retraction Speed"
-msgstr "Prędkość retrakcji"
-
-#: src/libslic3r/PrintConfig.cpp:1600
-msgid "The speed for retractions (it only applies to the extruder motor)."
-msgstr "Prędkość retrakcji (stosowana tylko dla silnika ekstrudera)."
-
-#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1608
-msgid "Deretraction Speed"
-msgstr "Prędkość powrotu retrakcji"
-
-#: src/libslic3r/PrintConfig.cpp:1609
-msgid ""
-"The speed for loading of a filament into extruder after retraction (it only "
-"applies to the extruder motor). If left to zero, the retraction speed is "
-"used."
-msgstr ""
-"Prędkość powrotu filamentu do ekstrudera po retrakcji (dotyczy tylko silnika "
-"ekstrudera). Ustaw zero aby użyć prędkości retrakcji."
-
-#: src/libslic3r/PrintConfig.cpp:1617
-msgid "Seam position"
-msgstr "Pozycja szwu"
-
-#: src/libslic3r/PrintConfig.cpp:1619
-msgid "Position of perimeters starting points."
-msgstr "Pozycja startowa druku obrysów."
-
-#: src/libslic3r/PrintConfig.cpp:1626
-msgid "Random"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1627
-msgid "Nearest"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1628
-msgid "Aligned"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1629
-msgid "Rear"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1636
-msgid "Direction"
-msgstr "Kierunek"
-
-#: src/libslic3r/PrintConfig.cpp:1638
-msgid "Preferred direction of the seam"
-msgstr "Preferowane ustawienie szwu"
-
-#: src/libslic3r/PrintConfig.cpp:1639
-msgid "Seam preferred direction"
-msgstr "Preferowany kierunek szwu"
-
-#: src/libslic3r/PrintConfig.cpp:1647
-msgid "Jitter"
-msgstr "Jitter"
-
-#: src/libslic3r/PrintConfig.cpp:1649
-msgid "Seam preferred direction jitter"
-msgstr "Kierunek jitter wyznaczany przez szew"
-
-#: src/libslic3r/PrintConfig.cpp:1650
-msgid "Preferred direction of the seam - jitter"
-msgstr "Preferowany kierunek szwu - jitter"
-
-#: src/libslic3r/PrintConfig.cpp:1661
-msgid "USB/serial port for printer connection."
-msgstr "Port USB/szeregowy do połączenia z drukarką."
-
-#: src/libslic3r/PrintConfig.cpp:1669
-msgid "Serial port speed"
-msgstr "Szybkość portu szeregowego"
-
-#: src/libslic3r/PrintConfig.cpp:1670
-msgid "Speed (baud) of USB/serial port for printer connection."
-msgstr ""
-"Szybkość transmisji portu USB/portu szeregowego do połączenia z drukarką."
-
-#: src/libslic3r/PrintConfig.cpp:1679
-msgid "Distance from object"
-msgstr "Odstęp od modelu"
-
-#: src/libslic3r/PrintConfig.cpp:1680
-msgid ""
-"Distance between skirt and object(s). Set this to zero to attach the skirt "
-"to the object(s) and get a brim for better adhesion."
-msgstr ""
-"Odległość skirtu od modelu. Ustaw zero aby dołączyć do modelu i uzyskać "
-"obramowanie dla lepszej przyczepności."
-
-#: src/libslic3r/PrintConfig.cpp:1688
-msgid "Skirt height"
-msgstr "Wysokość skirt"
-
-#: src/libslic3r/PrintConfig.cpp:1689
-msgid ""
-"Height of skirt expressed in layers. Set this to a tall value to use skirt "
-"as a shield against drafts."
-msgstr ""
-"Wysokość skirtu wyrażona w warstwach. Ustawienie wysokiej wartości spowoduje "
-"stworzenie osłony chroniącej przed przeciągami."
-
-#: src/libslic3r/PrintConfig.cpp:1697
-msgid "Loops (minimum)"
-msgstr "Pętle (minimum)"
-
-#: src/libslic3r/PrintConfig.cpp:1698
-msgid "Skirt Loops"
-msgstr "Liczba obrysów skirt"
-
-#: src/libslic3r/PrintConfig.cpp:1699
-msgid ""
-"Number of loops for the skirt. If the Minimum Extrusion Length option is "
-"set, the number of loops might be greater than the one configured here. Set "
-"this to zero to disable skirt completely."
-msgstr ""
-"Liczba pętli skirt. Jeśli włączona jest opcja \"Minimalna długość ekstruzji"
-"\", to może ona nadpisać wartość wprowadzoną w tym polu. Ustaw zero aby "
-"całkowicie wyłączyć skirt."
-
-#: src/libslic3r/PrintConfig.cpp:1708
-msgid "Slow down if layer print time is below"
-msgstr "Zwolnij jeśli czas warstwy wynosi mniej niż"
-
-#: src/libslic3r/PrintConfig.cpp:1709
-msgid ""
-"If layer print time is estimated below this number of seconds, print moves "
-"speed will be scaled down to extend duration to this value."
-msgstr ""
-"Jeśli szacowany czas druku warstwy będzie niższy niż ta wartość to prędkość "
-"ruchów drukujących będzie zmniejszona aby wydłużyć czas druku."
-
-#: src/libslic3r/PrintConfig.cpp:1720
-msgid "Small perimeters"
-msgstr "Małe obrysy"
-
-#: src/libslic3r/PrintConfig.cpp:1722
-msgid ""
-"This separate setting will affect the speed of perimeters having radius <= "
-"6.5mm (usually holes). If expressed as percentage (for example: 80%) it will "
-"be calculated on the perimeters speed setting above. Set to zero for auto."
-msgstr ""
-"To ustawienie reguluje prędkość obrysów posiadających promień mniejszy lub "
-"równy 6.5 mm (zazwyczaj chodzi o otwory). Jeśli ustawisz wartość procentową "
-"(np. 80%) to zostanie obliczona z prędkości obrysów ustawionej powyżej. "
-"Ustaw zero aby użyć nastawów automatycznych."
-
-#: src/libslic3r/PrintConfig.cpp:1732
-msgid "Solid infill threshold area"
-msgstr "Próg powierzchni zwartego wypełnienia"
-
-#: src/libslic3r/PrintConfig.cpp:1734
-msgid ""
-"Force solid infill for regions having a smaller area than the specified "
-"threshold."
-msgstr "Wymuś zwarte wypełnienie dla obszarów mniejszych niż zadany próg."
-
-#: src/libslic3r/PrintConfig.cpp:1735
-msgid "mm²"
-msgstr "mm²"
-
-#: src/libslic3r/PrintConfig.cpp:1742
-msgid "Solid infill extruder"
-msgstr "Ekstruder do zwartego wypełnienia"
-
-#: src/libslic3r/PrintConfig.cpp:1744
-msgid "The extruder to use when printing solid infill."
-msgstr "Ekstruder używany do druku zwartego wypełnienia."
-
-#: src/libslic3r/PrintConfig.cpp:1751
-msgid "Solid infill every"
-msgstr "Zwarte wypełnienie co"
-
-#: src/libslic3r/PrintConfig.cpp:1753
-msgid ""
-"This feature allows to force a solid layer every given number of layers. "
-"Zero to disable. You can set this to any value (for example 9999); Slic3r "
-"will automatically choose the maximum possible number of layers to combine "
-"according to nozzle diameter and layer height."
-msgstr ""
-"Ta funkcja pozwoli wstawić zwartą warstwę wypełnienia pomiędzy określoną "
-"liczbą warstw. Ustaw zero aby wyłączyć. Możesz ustawić tu dowolną wartość "
-"(np. 9999) a Slic3r automatycznie wybierze maksymalną możliwą liczbę warstw "
-"biorąc pod uwagę średnicę dyszy i wysokość warstwy."
-
-#: src/libslic3r/PrintConfig.cpp:1766
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill for "
-"solid surfaces. If left zero, default extrusion width will be used if set, "
-"otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
-"(for example 90%) it will be computed over layer height."
-msgstr ""
-"Ustaw tą wartość jako niezerową aby pozwolić na ręczne ustawienie szerokości "
-"ekstruzji wypełnienia powierzchni zwartych. Jeśli ustawisz zero, szerokość "
-"będzie miała wartość domyślną, czyli 1.125x średnicy dyszy. Jeśli ustawisz "
-"wartość procentową (np. 90%) to zostanie obliczona z wysokości warstwy."
-
-#: src/libslic3r/PrintConfig.cpp:1777
-msgid ""
-"Speed for printing solid regions (top/bottom/internal horizontal shells). "
-"This can be expressed as a percentage (for example: 80%) over the default "
-"infill speed above. Set to zero for auto."
-msgstr ""
-"Prędkość druku zwartych obszarów (góra/dół/poziome powłoki wewnętrzne). Może "
-"być wyrażona procentowo (np. 80%) ponad domyślną prędkość wypełnienia. Wpisz "
-"zero dla automatycznego ustawienia."
-
-#: src/libslic3r/PrintConfig.cpp:1789
-msgid "Number of solid layers to generate on top and bottom surfaces."
-msgstr "Liczba zwartych warstw górnych i dolnych."
-
-#: src/libslic3r/PrintConfig.cpp:1796
-msgid "Spiral vase"
-msgstr "Tryb wazy"
-
-#: src/libslic3r/PrintConfig.cpp:1797
-msgid ""
-"This feature will raise Z gradually while printing a single-walled object in "
-"order to remove any visible seam. This option requires a single perimeter, "
-"no infill, no top solid layers and no support material. You can still set "
-"any number of bottom solid layers as well as skirt/brim loops. It won't work "
-"when printing more than an object."
-msgstr ""
-"Ta funkcja pozwala drukować modele z 1 zewnętrzną ścianką z ciągłym "
-"podnoszeniem Z, aby uniknąć widocznego szwu (czyli ekstruder nie będzie "
-"drukował po 1 warstwie na 1 wysokości, lecz będzie podnosił się płynnie w "
-"formie spirali). Wymaga użycia 1 obrysu, zerowego wypełnienia, braku warstw "
-"górnych i braku podpór. Możesz ustawić dowolną ilość dolnych warstw jak i "
-"obrysów skirt/brim. Nie zadziała przy druku więcej niż jednego modelu."
-
-#: src/libslic3r/PrintConfig.cpp:1806
-msgid "Temperature variation"
-msgstr "Zmiana temperatury"
-
-#: src/libslic3r/PrintConfig.cpp:1807
-msgid ""
-"Temperature difference to be applied when an extruder is not active. Enables "
-"a full-height \"sacrificial\" skirt on which the nozzles are periodically "
-"wiped."
-msgstr ""
-"Różnica temperatur mająca zastosowanie gdy ekstruder nie jest używany. "
-"Włącza druk skirtu o wysokości równej wysokości modelu, dzięki której dysze "
-"będą co jakiś czas czyszczone."
-
-#: src/libslic3r/PrintConfig.cpp:1818
-msgid ""
-"This start procedure is inserted at the beginning, after bed has reached the "
-"target temperature and extruder just started heating, and before extruder "
-"has finished heating. If Slic3r detects M104 or M190 in your custom codes, "
-"such commands will not be prepended automatically so you're free to "
-"customize the order of heating commands and other custom actions. Note that "
-"you can use placeholder variables for all Slic3r settings, so you can put a "
-"\"M109 S[first_layer_temperature]\" command wherever you want."
-msgstr ""
-"Ten skrypt jest wykonywany na początku, po tym jak stół roboczy osiągnie "
-"zadanÄ… temperaturÄ™ i ekstruder zacznie podgrzewanie, ale zanim nagrzeje siÄ™ "
-"do zadanej temperatury. Jeśli Slic3r wykryje komendy typu M104, M109, M140 "
-"lub M190, to nie zostaną one wykonane na początku, więc możesz określić "
-"kolejność komend dot. podgrzewania i innych dodanych akcji. Pamiętaj, że "
-"możesz używać zmiennych typu placeholder, więc np. komendę \"M109 "
-"S[first_layer_temperature]\" (temperatura pierwszej warstwy) możesz umieścić "
-"gdzie chcesz."
-
-#: src/libslic3r/PrintConfig.cpp:1834
-msgid ""
-"This start procedure is inserted at the beginning, after any printer start "
-"gcode. This is used to override settings for a specific filament. If Slic3r "
-"detects M104, M109, M140 or M190 in your custom codes, such commands will "
-"not be prepended automatically so you're free to customize the order of "
-"heating commands and other custom actions. Note that you can use placeholder "
-"variables for all Slic3r settings, so you can put a \"M109 "
-"S[first_layer_temperature]\" command wherever you want. If you have multiple "
-"extruders, the gcode is processed in extruder order."
-msgstr ""
-"Ten skrypt jest wykonywany na samym początku G-code. Może być użyty do "
-"nadpisania określonych ustawień filamentu. Jeśli Slic3r wykryje komendy typu "
-"M104, M109, M140 lub M190, to nie zostaną one wykonane na początku, więc "
-"możesz określić kolejność komend dot. podgrzewania i innych dodanych akcji. "
-"Pamiętaj, że możesz używać zmiennych typu placeholder, więc np. komendę "
-"\"M109 S[first_layer_temperature]\" (temperatura pierwszej warstwy) możesz "
-"umieścić gdzie chcesz. Jeśli posiadasz kilka ekstruderów, ten G-code jest "
-"wykonywany w ich kolejności."
-
-#: src/libslic3r/PrintConfig.cpp:1850
-msgid "Single Extruder Multi Material"
-msgstr "Multi Material z jednym ekstruderem"
-
-#: src/libslic3r/PrintConfig.cpp:1851
-msgid "The printer multiplexes filaments into a single hot end."
-msgstr "Drukarka przechodzi pomiędzy filamentami używając jednego hotendu."
-
-#: src/libslic3r/PrintConfig.cpp:1857
-msgid "Prime all printing extruders"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1858
-msgid ""
-"If enabled, all printing extruders will be primed at the front edge of the "
-"print bed at the start of the print."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1864
-msgid "Generate support material"
-msgstr "Generuj materiał podporowy"
-
-#: src/libslic3r/PrintConfig.cpp:1866
-msgid "Enable support material generation."
-msgstr "Włącz generowanie materiału podporowego."
-
-#: src/libslic3r/PrintConfig.cpp:1871
-msgid "Auto generated supports"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1873
-msgid ""
-"If checked, supports will be generated automatically based on the overhang "
-"threshold value. If unchecked, supports will be generated inside the "
-"\"Support Enforcer\" volumes only."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1880
-msgid "XY separation between an object and its support"
-msgstr "Odstęp materiału podporowego od modelu w osiach XY"
-
-#: src/libslic3r/PrintConfig.cpp:1882
-msgid ""
-"XY separation between an object and its support. If expressed as percentage "
-"(for example 50%), it will be calculated over external perimeter width."
-msgstr ""
-"Odstęp materiału podporowego od modelu w osiach XY. Jeśli ustawisz wartość "
-"procentową (np. 15%) to zostanie obliczona z szerokości ekstruzji obrysów "
-"zewnętrznych."
-
-#: src/libslic3r/PrintConfig.cpp:1893
-msgid "Pattern angle"
-msgstr "KÄ…t wzoru"
-
-#: src/libslic3r/PrintConfig.cpp:1895
-msgid ""
-"Use this setting to rotate the support material pattern on the horizontal "
-"plane."
-msgstr ""
-"To ustawienie odpowiada za obrót materiału podporowego w płaszczyźnie "
-"poziomej."
-
-#: src/libslic3r/PrintConfig.cpp:1906
-msgid ""
-"Only create support if it lies on a build plate. Don't create support on a "
-"print."
-msgstr "Tworzenie podpór tylko na stole. Nie będą tworzone na wydruku."
-
-#: src/libslic3r/PrintConfig.cpp:1913
-msgid "Contact Z distance"
-msgstr "Odstęp w osi Z"
-
-#: src/libslic3r/PrintConfig.cpp:1915
-msgid ""
-"The vertical distance between object and support material interface. Setting "
-"this to 0 will also prevent Slic3r from using bridge flow and speed for the "
-"first object layer."
-msgstr ""
-"Dystans w pionie między modelem a warstwą łączącą materiału podporowego. "
-"Ustawienie na 0 wyłączy ustawienie mostu (prędkości i przepływu) dla "
-"pierwszej warstwy modelu nad warstwą łączącą."
-
-#: src/libslic3r/PrintConfig.cpp:1923
-msgid "soluble"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1924
-msgid "detachable"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1929
-msgid "Enforce support for the first"
-msgstr "WymuÅ› podpory dla pierwszych"
-
-#: src/libslic3r/PrintConfig.cpp:1931
-msgid ""
-"Generate support material for the specified number of layers counting from "
-"bottom, regardless of whether normal support material is enabled or not and "
-"regardless of any angle threshold. This is useful for getting more adhesion "
-"of objects having a very thin or poor footprint on the build plate."
-msgstr ""
-"Generuj materiał podporowy dla określonej liczby warstw licząc od dołu, "
-"niezależnie od tego czy normalny materiał podporowy jest włączony i "
-"niezależnie od progu kąta. Przydaje się aby uzyskać lepszą przyczepność "
-"modelu, które mają bardzo małą powierzchnię kontaktu z powierzchnią druku."
-
-#: src/libslic3r/PrintConfig.cpp:1937
-msgid "Enforce support for the first n layers"
-msgstr "WymuÅ› podpory dla pierwszych n warstw"
-
-#: src/libslic3r/PrintConfig.cpp:1943
-msgid "Support material/raft/skirt extruder"
-msgstr "Ekstruder dla podpór/tratwy (raft)/skirtu"
-
-#: src/libslic3r/PrintConfig.cpp:1945
-msgid ""
-"The extruder to use when printing support material, raft and skirt (1+, 0 to "
-"use the current extruder to minimize tool changes)."
-msgstr ""
-"Ekstruder używany przy druku podpór, tratwy (raft) i skirtu (1+, zero aby "
-"użyć obecnie wybranego ekstrudera i zminimalizować zmiany filamentu)."
-
-#: src/libslic3r/PrintConfig.cpp:1955
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for support "
-"material. If left zero, default extrusion width will be used if set, "
-"otherwise nozzle diameter will be used. If expressed as percentage (for "
-"example 90%) it will be computed over layer height."
-msgstr ""
-"Ustaw tą wartość jako niezerową aby pozwolić na ręczne ustawienie szerokości "
-"ekstruzji materiału podporowego. Jeśli ustawisz zero to szerokość będzie "
-"miała wartość domyślną, czyli będzie równa średnicy dyszy. Jeśli ustawisz "
-"wartość procentową (np. 90%) to zostanie obliczona z wysokości warstwy."
-
-#: src/libslic3r/PrintConfig.cpp:1964
-msgid "Interface loops"
-msgstr "Warstwy łączące"
-
-#: src/libslic3r/PrintConfig.cpp:1966
-msgid ""
-"Cover the top contact layer of the supports with loops. Disabled by default."
-msgstr "Pokryj pętlą górną warstwę podpór. Domyślnie wyłączone."
-
-#: src/libslic3r/PrintConfig.cpp:1972
-msgid "Support material/raft interface extruder"
-msgstr "Ekstruder dla podpór/warstw łączących raft z modelem"
-
-#: src/libslic3r/PrintConfig.cpp:1974
-msgid ""
-"The extruder to use when printing support material interface (1+, 0 to use "
-"the current extruder to minimize tool changes). This affects raft too."
-msgstr ""
-"Ekstruder używany przy druku warstw łączących podpory z modelem (1+, zero "
-"aby użyć obecnie wybranego ekstrudera i zminimalizować zmiany filamentu). Ma "
-"wpływ również na druk tratwy (raftu)."
-
-#: src/libslic3r/PrintConfig.cpp:1982
-msgid "Interface layers"
-msgstr "Warstwy łączące"
-
-#: src/libslic3r/PrintConfig.cpp:1984
-msgid ""
-"Number of interface layers to insert between the object(s) and support "
-"material."
-msgstr "Liczba warstw łączących materiał podporowy z modelem właściwym."
-
-#: src/libslic3r/PrintConfig.cpp:1992
-msgid "Interface pattern spacing"
-msgstr "Rozmieszczenie wzoru warstw łączących"
-
-#: src/libslic3r/PrintConfig.cpp:1994
-msgid "Spacing between interface lines. Set zero to get a solid interface."
-msgstr ""
-"Rozmieszczenie linii warstwy łączącej. Ustaw zero dla zwartej warstwy "
-"łączącej."
-
-#: src/libslic3r/PrintConfig.cpp:2004
-msgid ""
-"Speed for printing support material interface layers. If expressed as "
-"percentage (for example 50%) it will be calculated over support material "
-"speed."
-msgstr ""
-"Prędkość druku warstw łączących materiału podporowego. Jeśli ustawisz "
-"wartość procentową (np. 50%) to zostanie obliczona z prędkości druku "
-"materiału podporowego."
-
-#: src/libslic3r/PrintConfig.cpp:2013
-msgid "Pattern"
-msgstr "Wzór"
-
-#: src/libslic3r/PrintConfig.cpp:2015
-msgid "Pattern used to generate support material."
-msgstr "Wzór podpór."
-
-#: src/libslic3r/PrintConfig.cpp:2022
-msgid "Rectilinear grid"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2028
-msgid "Pattern spacing"
-msgstr "Rozmieszczenie wzoru"
-
-#: src/libslic3r/PrintConfig.cpp:2030
-msgid "Spacing between support material lines."
-msgstr "Rozmieszczenie linii materiału podporowego."
-
-#: src/libslic3r/PrintConfig.cpp:2040
-msgid "Speed for printing support material."
-msgstr "Prędkość druku materiału podporowego."
-
-#: src/libslic3r/PrintConfig.cpp:2047
-msgid "Synchronize with object layers"
-msgstr "Synchronizuj z warstwami modelu"
-
-#: src/libslic3r/PrintConfig.cpp:2049
-msgid ""
-"Synchronize support layers with the object print layers. This is useful with "
-"multi-material printers, where the extruder switch is expensive."
-msgstr ""
-"Synchronizuj warstwy podporowe z warstwami modelu. Przydaje siÄ™ przy "
-"drukarkach typu multi-material gdy zmiana używanego materiału jest kosztowna."
-
-#: src/libslic3r/PrintConfig.cpp:2056
-msgid "Overhang threshold"
-msgstr "Próg zwisu"
-
-#: src/libslic3r/PrintConfig.cpp:2058
-msgid ""
-"Support material will not be generated for overhangs whose slope angle (90° "
-"= vertical) is above the given threshold. In other words, this value "
-"represent the most horizontal slope (measured from the horizontal plane) "
-"that you can print without support material. Set to zero for automatic "
-"detection (recommended)."
-msgstr ""
-"Podpory nie będą generowane dla zwisów, których kąt przekracza zadany próg "
-"(90° = pion). Inaczej mówiąc, ta wartość określa największy kąt od poziomu "
-"(kąt mierzony od płaszczyzny poziomej), który będzie drukowany bez podpór."
-
-#: src/libslic3r/PrintConfig.cpp:2071
-msgid "With sheath around the support"
-msgstr "Z osłoną wokół podpór"
-
-#: src/libslic3r/PrintConfig.cpp:2073
-msgid ""
-"Add a sheath (a single perimeter line) around the base support. This makes "
-"the support more reliable, but also more difficult to remove."
-msgstr ""
-"Dodaj osłonę (pojedynczą linię) wokół podpory bazowej. Sprawi to, że podpory "
-"będą stabilniejsze, ale też trudniejsze do usunięcia."
-
-#: src/libslic3r/PrintConfig.cpp:2081
-msgid ""
-"Extruder temperature for layers after the first one. Set this to zero to "
-"disable temperature control commands in the output."
-msgstr ""
-"Temperatura ekstrudera dla warstw powyżej pierwszej. Ustaw zero aby wyłączyć "
-"komendy kontrolujące temperaturę w pliku wyjściowym."
-
-#: src/libslic3r/PrintConfig.cpp:2084
-msgid "Temperature"
-msgstr "Temperatura"
-
-#: src/libslic3r/PrintConfig.cpp:2090
-msgid "Detect thin walls"
-msgstr "Wykrywanie cienkich ścian"
-
-#: src/libslic3r/PrintConfig.cpp:2092
-msgid ""
-"Detect single-width walls (parts where two extrusions don't fit and we need "
-"to collapse them into a single trace)."
-msgstr ""
-"Wykrywaj ściany o grubości jednego obrysu (obszary, gdzie 2 obrysy nie "
-"zmieszczą się i trzeba będzie połączyć je w jedną linię)."
-
-#: src/libslic3r/PrintConfig.cpp:2099
-msgid "Threads"
-msgstr "WÄ…tki"
-
-#: src/libslic3r/PrintConfig.cpp:2100
-msgid ""
-"Threads are used to parallelize long-running tasks. Optimal threads number "
-"is slightly above the number of available cores/processors."
-msgstr ""
-"Wątki są używane do równoległego przetwarzania zadań wymagających używa "
-"wielu zasobów. Optymalna liczba wątków powinna być odrobinę większa od "
-"dostępnej liczby rdzeni lub procesorów."
-
-#: src/libslic3r/PrintConfig.cpp:2112
-msgid ""
-"This custom code is inserted right before every extruder change. Note that "
-"you can use placeholder variables for all Slic3r settings as well as "
-"[previous_extruder] and [next_extruder]."
-msgstr ""
-"Ten kod jest wykonywany przed każdą zmianą ekstrudera/filamentu. Pamiętaj, "
-"że możesz użyć zmiennych typu placeholder dla wszystkich ustawień Slic3r, "
-"jak np. [previous_extruder] (poprzedni ekstruder) i [next_extruder] "
-"(następny ekstruder)."
-
-#: src/libslic3r/PrintConfig.cpp:2125
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill for "
-"top surfaces. You may want to use thinner extrudates to fill all narrow "
-"regions and get a smoother finish. If left zero, default extrusion width "
-"will be used if set, otherwise nozzle diameter will be used. If expressed as "
-"percentage (for example 90%) it will be computed over layer height."
-msgstr ""
-"Ustaw tą wartość jako niezerową aby pozwolić na ręczne ustawienie szerokości "
-"ekstruzji zwartego wypełnienia górnych warstw. Możesz ustawić mniejszą "
-"szerokość aby wypełnić szczeliny i uzyskać gładsze wykończenie. Jeśli "
-"ustawisz zero, szerokość będzie miała wartość domyślną, czyli będzie równa "
-"średnicy dyszy. Jeśli ustawisz wartość procentową (np. 90%) to zostanie "
-"obliczona z wysokości warstwy."
-
-#: src/libslic3r/PrintConfig.cpp:2137
-msgid ""
-"Speed for printing top solid layers (it only applies to the uppermost "
-"external layers and not to their internal solid layers). You may want to "
-"slow down this to get a nicer surface finish. This can be expressed as a "
-"percentage (for example: 80%) over the solid infill speed above. Set to zero "
-"for auto."
-msgstr ""
-"Prędkość druku najwyższych warstw zwartych (dotyczy tylko najwyższych, "
-"zewnętrznych warstw i nie obejmuje zwartych warstw umieszczonych niżej). "
-"Warto obniżyć tą wartość dla ładniejszego wykończenia powierzchni. Jeśli "
-"ustawisz wartość procentową (np. 80%) to zosttanie obliczona z prędkości "
-"druku zwartego wypełnienia. Ustaw zero dla prędkości automatycznej."
-
-#: src/libslic3r/PrintConfig.cpp:2149
-msgctxt "Layers"
-msgid "Top"
-msgstr "Górne"
-
-#: src/libslic3r/PrintConfig.cpp:2151
-msgid "Number of solid layers to generate on top surfaces."
-msgstr "Liczba zwartych warstw górnych."
-
-#: src/libslic3r/PrintConfig.cpp:2153
-msgid "Top solid layers"
-msgstr "Zwarte warstwy górne"
-
-#: src/libslic3r/PrintConfig.cpp:2159
-msgid "Speed for travel moves (jumps between distant extrusion points)."
-msgstr "Prędkość ruchów jałowych (przeskoków pomiędzy punktami ekstruzji)."
-
-#: src/libslic3r/PrintConfig.cpp:2168
-msgid "Use firmware retraction"
-msgstr "Użyj retrakcji z firmware"
-
-#: src/libslic3r/PrintConfig.cpp:2169
-msgid ""
-"This experimental setting uses G10 and G11 commands to have the firmware "
-"handle the retraction. This is only supported in recent Marlin."
-msgstr ""
-"Ta eksperymentalna funkcja używa komend G10 i G11 aby przerzucić kontrolę "
-"retrakcji na firmware. Jest wspierana jedynie przez najnowsze wersje Marlina."
-
-#: src/libslic3r/PrintConfig.cpp:2176
-msgid "Use relative E distances"
-msgstr "Użyj względnych wartości E (ekstruzji)"
-
-#: src/libslic3r/PrintConfig.cpp:2177
-msgid ""
-"If your firmware requires relative E values, check this, otherwise leave it "
-"unchecked. Most firmwares use absolute values."
-msgstr ""
-"Jeśli Twój firmware wymaga względnych wartości E, zaznacz to pole. W innym "
-"przypadku zostaw puste. Większość układów obsługuje wartości absolutne."
-
-#: src/libslic3r/PrintConfig.cpp:2184
-msgid "Use volumetric E"
-msgstr "Użyj wolumetrycznej wartości E"
-
-#: src/libslic3r/PrintConfig.cpp:2185
-msgid ""
-"This experimental setting uses outputs the E values in cubic millimeters "
-"instead of linear millimeters. If your firmware doesn't already know "
-"filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] "
-"T0' in your start G-code in order to turn volumetric mode on and use the "
-"filament diameter associated to the filament selected in Slic3r. This is "
-"only supported in recent Marlin."
-msgstr ""
-"Ta eksperymentalna funkcja określa wyjściowe dane E (ilość ekstruzji) w "
-"milimetrach sześciennych zamiast długości. Jeśli średnica filamentu nie "
-"została jeszcze ustawiona w firmware, możesz użyć komendy \"M200 "
-"D[filament_diameter_0] T0\" w skrypcie startowym aby włączyć tryb "
-"objętościowy i użyć filamentu powiązanego z ustawionym w Slic3r. Ta funkcja "
-"jest wspierana jedynie przez najnowsze wersje Marlina."
-
-#: src/libslic3r/PrintConfig.cpp:2196
-msgid "Enable variable layer height feature"
-msgstr "Włącz funkcję zmiennej wysokości warstwy"
-
-#: src/libslic3r/PrintConfig.cpp:2197
-msgid ""
-"Some printers or printer setups may have difficulties printing with a "
-"variable layer height. Enabled by default."
-msgstr ""
-"Niektóre drukarki mogą mieć trudności z drukiem ze zmienną wysokością "
-"warstwy. Domyślnie włączone."
-
-#: src/libslic3r/PrintConfig.cpp:2204
-msgid "Wipe while retracting"
-msgstr "Czyszczenie przy retrakcji"
-
-#: src/libslic3r/PrintConfig.cpp:2205
-msgid ""
-"This flag will move the nozzle while retracting to minimize the possible "
-"blob on leaky extruders."
-msgstr ""
-"Ta flaga włączy ruch dyszy przy retrakcji aby zminimalizować formowanie się "
-"kropli filamentu wokół końcówki dyszy przy ekstruderach, które mają "
-"tendencjÄ™ do wyciekania filamentu."
-
-#: src/libslic3r/PrintConfig.cpp:2213
-msgid ""
-"Multi material printers may need to prime or purge extruders on tool "
-"changes. Extrude the excess material into the wipe tower."
-msgstr ""
-"Drukarki pracujÄ…ce z kilkoma filamentami na raz (multi-material) mogÄ… "
-"wymagać czyszczenia głowicy przy zmianie filamentu. Nadmiar materiału jest "
-"wytłaczany w formie wieży czyszczącej."
-
-#: src/libslic3r/PrintConfig.cpp:2220
-msgid "Purging volumes - load/unload volumes"
-msgstr "Objętość czyszczenia - objętość ładowania/rozładowania"
-
-#: src/libslic3r/PrintConfig.cpp:2221
-msgid ""
-"This vector saves required volumes to change from/to each tool used on the "
-"wipe tower. These values are used to simplify creation of the full purging "
-"volumes below. "
-msgstr ""
-"To ustawienie określa wymaganą objętość wieży czyszczącej przy zmianie "
-"danego narzędzia. Te wartości używane są do uproszczenia określenia pełnych "
-"wartości czyszczenia poniżej. "
-
-#: src/libslic3r/PrintConfig.cpp:2228
-msgid "Purging volumes - matrix"
-msgstr "Objętości czyszczenia - formuła"
-
-#: src/libslic3r/PrintConfig.cpp:2229
-msgid ""
-"This matrix describes volumes (in cubic milimetres) required to purge the "
-"new filament on the wipe tower for any given pair of tools. "
-msgstr ""
-"Ta formuła określa objętość (w milimetrach sześciennych) wymaganą do "
-"wyczyszczenia filamentu na wieży czyszczącej dla danej pary narzędzi "
-"(filamentów). "
-
-#: src/libslic3r/PrintConfig.cpp:2239
-msgid "Position X"
-msgstr "Pozycja X"
-
-#: src/libslic3r/PrintConfig.cpp:2240
-msgid "X coordinate of the left front corner of a wipe tower"
-msgstr "Koordynata X wieży czyszczącej od przedniego lewego narożnika"
-
-#: src/libslic3r/PrintConfig.cpp:2247
-msgid "Position Y"
-msgstr "Pozycja Y"
-
-#: src/libslic3r/PrintConfig.cpp:2248
-msgid "Y coordinate of the left front corner of a wipe tower"
-msgstr "Koordynata wieży czyszczącej w osi Y od przedniego lewego narożnika"
-
-#: src/libslic3r/PrintConfig.cpp:2256
-msgid "Width of a wipe tower"
-msgstr "Szerokość wieży czyszczącej"
-
-#: src/libslic3r/PrintConfig.cpp:2263
-msgid "Wipe tower rotation angle"
-msgstr "Kąt obrotu wieży czyszczącej"
-
-#: src/libslic3r/PrintConfig.cpp:2264
-msgid "Wipe tower rotation angle with respect to x-axis "
-msgstr "Obrót wieży czyszczącej względem osi X "
-
-#: src/libslic3r/PrintConfig.cpp:2265
-msgid "degrees"
-msgstr "stopni"
-
-#: src/libslic3r/PrintConfig.cpp:2272
-msgid "Wipe into this object's infill"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2273
-msgid ""
-"Purging after toolchange will done inside this object's infills. This lowers "
-"the amount of waste but may result in longer print time due to additional "
-"travel moves."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2281
-msgid "Wipe into this object"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2282
-msgid ""
-"Object will be used to purge the nozzle after a toolchange to save material "
-"that would otherwise end up in the wipe tower and decrease print time. "
-"Colours of the objects will be mixed as a result."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2289
-msgid "Maximal bridging distance"
-msgstr "Maksymalna odległość drukowania mostów"
-
-#: src/libslic3r/PrintConfig.cpp:2290
-msgid "Maximal distance between supports on sparse infill sections. "
-msgstr "Minimalny odstęp pomiędzy podporami w sekcjach rzadkiego wypełnienia. "
-
-#: src/libslic3r/PrintConfig.cpp:2297
-msgid "XY Size Compensation"
-msgstr "Korekta wymiarów XY"
-
-#: src/libslic3r/PrintConfig.cpp:2299
-msgid ""
-"The object will be grown/shrunk in the XY plane by the configured value "
-"(negative = inwards, positive = outwards). This might be useful for fine-"
-"tuning hole sizes."
-msgstr ""
-"Model zostanie zmniejszony lub zwiększony w osiach X i Y o zadaną wartość "
-"(ujemna = zmniejszenie, dotatnia = zwiększenie). Może być przydatne przy "
-"kalibracji średnic otworów."
-
-#: src/libslic3r/PrintConfig.cpp:2308
-msgid "Z offset"
-msgstr "Margines Z"
-
-#: src/libslic3r/PrintConfig.cpp:2309
-msgid ""
-"This value will be added (or subtracted) from all the Z coordinates in the "
-"output G-code. It is used to compensate for bad Z endstop position: for "
-"example, if your endstop zero actually leaves the nozzle 0.3mm far from the "
-"print bed, set this to -0.3 (or fix your endstop)."
-msgstr ""
-"Wartość tego ustawienia zostanie dodana (lub odjęta) od wszystkich koordynat "
-"w osi Z w pliku wyjściowym G-code. Jest używana dla korekcji złego położenia "
-"wyłącznika krańcowego osi Z. Np. jeśli końcówka dyszy znajduje się 0.3 mm "
-"ponad położeniem zerowym, ustaw tutaj -0.3 (lub napraw krańcówkę)."
-
-#: src/libslic3r/PrintConfig.cpp:2319
-msgid "Bed size X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2320 src/libslic3r/PrintConfig.cpp:2327
-#: src/libslic3r/PrintConfig.cpp:2334 src/libslic3r/PrintConfig.cpp:2343
-#: src/libslic3r/PrintConfig.cpp:2351 src/libslic3r/PrintConfig.cpp:2359
-msgid "Dwarf"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2326
-msgid "Bed size Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2333
-msgid "Picture resolution X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2335 src/libslic3r/PrintConfig.cpp:2344
-msgid "px"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2342
-msgid "Picture resolution Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2350 src/libslic3r/PrintConfig.cpp:2430
-#: src/libslic3r/PrintConfig.cpp:2431
-msgid "Exposure time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2358
-msgid "Exposure time first layers"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2373
-msgid "Display width"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2374
-msgid "Width of the display"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2380
-msgid "Display height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2381
-msgid "Height of the display"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2387
-msgid "Number of pixels in"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2389
-msgid "Number of pixels in X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2396
-msgid "Number of pixels in Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2402
-msgid "Display orientation"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2403
-msgid ""
-"Set the actual LCD display orientation inside the SLA printer. Portrait mode "
-"will flip the meaning of display width and height parameters and the output "
-"images will be rotated by 90 degrees."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2410
-msgid "Landscape"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2411
-msgid "Portrait"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2415 src/libslic3r/PrintConfig.cpp:2416
-msgid "Printer scaling correction"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2422 src/libslic3r/PrintConfig.cpp:2423
-msgid "Initial layer height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439
-msgid "Initial exposure time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2446 src/libslic3r/PrintConfig.cpp:2447
-msgid "Correction for expansion when printing"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2452 src/libslic3r/PrintConfig.cpp:2453
-msgid "Correction for expansion after curing"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2458
-msgid "SLA print material notes"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2459
-msgid "You can put your notes regarding the SLA print material here."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2468 src/libslic3r/PrintConfig.cpp:2478
-msgid "Default SLA material profile"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2487
-msgid "Generate supports"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2489
-msgid "Generate supports for the models"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2494
-msgid "Support head front diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2496
-msgid "Diameter of the pointing side of the head"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2503
-msgid "Support head penetration"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2505
-msgid "How much the pinhead has to penetrate the model surface"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2512
-msgid "Support head width"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2514
-msgid "Width from the back sphere center to the front sphere center"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2521
-msgid "Support pillar diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2523
-msgid "Diameter in mm of the support pillars"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2530
-msgid "Support pillar connection mode"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2531
-msgid ""
-"Controls the bridge type between two neigboring pillars. Can be zig-zag, "
-"cross (double zig-zag) or dynamic which will automatically switch between "
-"the first two depending on the distance of the two pillars."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2540
-msgid "Zig-Zag"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2541
-msgid "Cross"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2542
-msgid "Dynamic"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2546
-msgid "Pillar widening factor"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2548
-msgid ""
-"Merging bridges or pillars into another pillars can increase the radius. "
-"Zero means no increase, one means full increase."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2557
-msgid "Support base diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2559
-msgid "Diameter in mm of the pillar base"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2566
-msgid "Support base height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2568
-msgid "The height of the pillar base cone"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2575
-msgid "Critical angle"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2577
-msgid "The default angle for connecting support sticks and junctions."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2584
-msgid "Max bridge length"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2586
-msgid "The max length of a bridge"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2593
-msgid "Object elevation"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2595
-msgid "How much the supports should lift up the supported object."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2602
-msgid "Density on horizontal surfaces"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2604
-msgid ""
-"How many support points (approximately) should be placed on horizontal "
-"surface."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2605 src/libslic3r/PrintConfig.cpp:2614
-msgid "points per square dm"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2611
-msgid "Density on surfaces at 45 degrees"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2613
-msgid ""
-"How many support points (approximately) should be placed on surface sloping "
-"at 45 degrees."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2620
-msgid "Minimal support point height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2622
-msgid "No support points will be placed lower than this value from the bottom."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2629
-msgid "Use pad"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2631
-msgid "Add a pad underneath the supported model"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2636
-msgid "Pad wall thickness"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2645
-msgid "Pad wall height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2654
-msgid "Max merge distance"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2663
-msgid "Pad edge radius"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3017
-msgid "Cut model at the given Z."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3022
-msgid "Dont arrange"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3023
-msgid ""
-"Don't arrange the objects on the build plate. The model coordinates define "
-"the absolute positions on the build plate. The option --center will be "
-"ignored."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3030
-msgid "User data directory"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3031
-msgid ""
-"Load and store settings at the given directory. This is useful for "
-"maintaining different profiles or including configurations from a network "
-"storage."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3038
-msgid "Export 3MF"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3039
-msgid "Slice the model and export slices as 3MF."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3044
-msgid "Slice"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3045
-msgid "Slice the model and export gcode."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3050
-msgid "Help"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3051
-msgid "Show this help."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3056
-msgid "Use GUI"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3057
-msgid ""
-"Forces the GUI launch instead of command line slicing (if you supply a model "
-"file, it will be loaded into the plater)"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3063
-msgid "Output Model Info"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3064
-msgid "Write information about the model to the console."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3069
-msgid "Load config file"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3070
-msgid ""
-"Load configuration from the specified file. It can be used more than once to "
-"load options from multiple files."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3075
-msgid "Do not use GUI"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3076
-msgid ""
-"Forces the command line slicing instead of gui. This takes precedence over --"
-"gui if both are present."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3081
-msgid "Output File"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3082
-msgid ""
-"The file where the output will be written (if not specified, it will be "
-"based on the input file)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3088
-msgid "Rotation angle around the Z axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3093
-msgid "Rotate around X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3094
-msgid "Rotation angle around the X axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3099
-msgid "Rotate around Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3100
-msgid "Rotation angle around the Y axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3105
-msgid "Save config file"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3106
-msgid "Save configuration to the specified file."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3112
-msgid "Scaling factor (default: 1)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3125
-msgid "Print center"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3126
-msgid "Center the print around the given center (default: 100, 100)."
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:176
-msgid "Mixed"
-msgstr "Mieszane"
-
-#: src/libslic3r/GCode/PreviewData.cpp:396
-msgid "Height (mm)"
-msgstr "Wysokość (mm)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:398
-msgid "Width (mm)"
-msgstr "Szerokość (mm)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:400
-msgid "Speed (mm/s)"
-msgstr "Prędkość (mm/s)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:402
-msgid "Volumetric flow rate (mm3/s)"
-msgstr "Objętościowy współczynnik przepływu (mm3/s)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:491
-msgid "Default print color"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:495
-#, c-format
-msgid "up to %.2f mm"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:499
-#, c-format
-msgid "above %.2f mm"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:504
-#, c-format
-msgid "%.2f - %.2f mm"
-msgstr ""
diff --git a/resources/localization/uk/Slic3rPE.mo b/resources/localization/uk/Slic3rPE.mo
deleted file mode 100644
index 8c5c5437b..000000000
Binary files a/resources/localization/uk/Slic3rPE.mo and /dev/null differ
diff --git a/resources/localization/uk/Slic3rPE_uk.po b/resources/localization/uk/Slic3rPE_uk.po
deleted file mode 100644
index 3845994bf..000000000
--- a/resources/localization/uk/Slic3rPE_uk.po
+++ /dev/null
@@ -1,5804 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: \n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-17 13:39+0100\n"
-"PO-Revision-Date: 2019-02-26 10:38+0100\n"
-"Last-Translator: Oleksandra Iushchenko \n"
-"Language-Team: \n"
-"Language: uk\n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 2.0.8\n"
-"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
-
-#: src/slic3r/GUI/AboutDialog.cpp:33
-msgid "About Slic3r"
-msgstr "Про Slic3r"
-
-#: src/slic3r/GUI/AboutDialog.cpp:68 src/slic3r/GUI/MainFrame.cpp:51
-msgid "Version"
-msgstr "ВерÑÑ–Ñ"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:43
-msgid "Shape"
-msgstr "ВиглÑд (Форма)"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:50
-msgid "Rectangular"
-msgstr "ПрÑмокутний"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:54
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:207 src/slic3r/GUI/Plater.cpp:125
-#: src/slic3r/GUI/Tab.cpp:2122
-msgid "Size"
-msgstr "Розмір"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:55
-msgid "Size in X and Y of the rectangular plate."
-msgstr "Розмір прÑмокутної подложки за X та Y."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:61
-msgid "Origin"
-msgstr "Початок координат"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:62
-msgid "Distance of the 0,0 G-code coordinate from the front left corner of the rectangle."
-msgstr "ВідÑтань координат 0,0 G-коду від нижнього лівого кута прÑмокутника."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:66
-msgid "Circular"
-msgstr "Круговий"
-
-msgid "Switch to %s mode"
-msgstr "Перейти до режиму %s"
-
-msgid "Current mode is %s"
-msgstr "Поточний режим - %s"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:69 src/slic3r/GUI/ConfigWizard.cpp:92
-#: src/slic3r/GUI/ConfigWizard.cpp:456 src/slic3r/GUI/ConfigWizard.cpp:470
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:80
-#: src/libslic3r/PrintConfig.cpp:50 src/libslic3r/PrintConfig.cpp:58
-#: src/libslic3r/PrintConfig.cpp:180 src/libslic3r/PrintConfig.cpp:254
-#: src/libslic3r/PrintConfig.cpp:263 src/libslic3r/PrintConfig.cpp:315
-#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:448
-#: src/libslic3r/PrintConfig.cpp:460 src/libslic3r/PrintConfig.cpp:480
-#: src/libslic3r/PrintConfig.cpp:679 src/libslic3r/PrintConfig.cpp:1178
-#: src/libslic3r/PrintConfig.cpp:1243 src/libslic3r/PrintConfig.cpp:1263
-#: src/libslic3r/PrintConfig.cpp:1283 src/libslic3r/PrintConfig.cpp:1365
-#: src/libslic3r/PrintConfig.cpp:1376 src/libslic3r/PrintConfig.cpp:1499
-#: src/libslic3r/PrintConfig.cpp:1508 src/libslic3r/PrintConfig.cpp:1554
-#: src/libslic3r/PrintConfig.cpp:1563 src/libslic3r/PrintConfig.cpp:1574
-#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1592
-#: src/libslic3r/PrintConfig.cpp:1682 src/libslic3r/PrintConfig.cpp:1918
-#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2031
-#: src/libslic3r/PrintConfig.cpp:2241 src/libslic3r/PrintConfig.cpp:2249
-#: src/libslic3r/PrintConfig.cpp:2257 src/libslic3r/PrintConfig.cpp:2291
-#: src/libslic3r/PrintConfig.cpp:2302 src/libslic3r/PrintConfig.cpp:2313
-#: src/libslic3r/PrintConfig.cpp:2321 src/libslic3r/PrintConfig.cpp:2328
-#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2497
-#: src/libslic3r/PrintConfig.cpp:2506 src/libslic3r/PrintConfig.cpp:2515
-#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2560
-#: src/libslic3r/PrintConfig.cpp:2569 src/libslic3r/PrintConfig.cpp:2587
-#: src/libslic3r/PrintConfig.cpp:2596 src/libslic3r/PrintConfig.cpp:2623
-#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2648
-#: src/libslic3r/PrintConfig.cpp:2657 src/libslic3r/PrintConfig.cpp:2666
-msgid "mm"
-msgstr "мм"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:70 src/libslic3r/PrintConfig.cpp:676
-msgid "Diameter"
-msgstr "Діаметр"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:71
-msgid "Diameter of the print bed. It is assumed that origin (0,0) is located in the center."
-msgstr "Діаметр подложки. ПередбачаєтьÑÑ, що початок координат (0,0) знаходитьÑÑ Ð² центрі."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:75 src/slic3r/GUI/GUI_Preview.cpp:265
-#: src/libslic3r/GCode/PreviewData.cpp:175
-msgid "Custom"
-msgstr "КориÑтувацький"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:79
-msgid "Load shape from STL..."
-msgstr "Завантажте форму з STL ..."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:125
-msgid "Settings"
-msgstr "ÐалаштуваннÑ"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:298
-msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Виберіть файл, щоб імпортувати форму полотна з (STL/OBJ/AMF/PRUSA):"
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:315 src/slic3r/GUI/GUI_ObjectList.cpp:835
-msgid "Error! "
-msgstr "Помилка! "
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:324
-msgid "The selected file contains no geometry."
-msgstr "Обраний файл не міÑтить геометрії."
-
-#: src/slic3r/GUI/BedShapeDialog.cpp:328
-msgid "The selected file contains several disjoint areas. This is not supported."
-msgstr "Обраний файл міÑтить декілька непереÑічних облаÑтей. Ðе підтримуєтьÑÑ."
-
-#: src/slic3r/GUI/BedShapeDialog.hpp:44 src/slic3r/GUI/ConfigWizard.cpp:419
-msgid "Bed Shape"
-msgstr "Форма полотна"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:54
-msgid "Network lookup"
-msgstr ""
-
-#: src/slic3r/GUI/BonjourDialog.cpp:67
-msgid "Address"
-msgstr ""
-
-#: src/slic3r/GUI/BonjourDialog.cpp:68
-msgid "Hostname"
-msgstr ""
-
-#: src/slic3r/GUI/BonjourDialog.cpp:69
-msgid "Service name"
-msgstr ""
-
-#: src/slic3r/GUI/BonjourDialog.cpp:70
-msgid "OctoPrint version"
-msgstr "ВерÑÑ–Ñ OctoPrint"
-
-#: src/slic3r/GUI/BonjourDialog.cpp:188
-msgid "Searching for devices"
-msgstr ""
-
-#: src/slic3r/GUI/BonjourDialog.cpp:195
-msgid "Finished"
-msgstr ""
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:15
-msgid "Buttons And Text Colors Description"
-msgstr ""
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:40
-msgid "Value is the same as the system value"
-msgstr ""
-
-#: src/slic3r/GUI/ButtonsDescription.cpp:57
-msgid "Value was changed and is not equal to the system value or the last saved preset"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:16
-msgid "Upgrade"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:18
-msgid "Downgrade"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:20
-msgid "Before roll back"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:22
-msgid "User"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:25
-msgid "Unknown"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:37
-msgid "Active: "
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43
-msgid "slic3r version"
-msgstr "верÑÑ–Ñ slic3r"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:44 src/slic3r/GUI/Preset.cpp:1156
-msgid "print"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:45
-msgid "filaments"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1160
-msgid "printer"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 src/slic3r/GUI/Tab.cpp:838
-msgid "vendor"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50
-msgid "version"
-msgstr "верÑÑ–Ñ"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51
-msgid "min slic3r version"
-msgstr "мінімальна верÑÑ–Ñ slic3r"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53
-msgid "max slic3r version"
-msgstr "макÑимальна верÑÑ–Ñ slic3r"
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
-msgid "model"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
-msgid "variants"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68
-msgid "Incompatible with this Slic3r"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71
-msgid "Activate"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:97
-msgid "Configuration Snapshots"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:92
-msgid "nozzle"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:93
-msgid "default"
-msgstr "за замовчаннÑм"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:116
-msgid "Select all"
-msgstr "Вибрати вÑе"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:117
-msgid "Select none"
-msgstr "Ðічого"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:226
-#, c-format
-msgid "Welcome to the Slic3r %s"
-msgstr "ЛаÑкаво проÑимо до Slic3r %s"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:226
-msgid "Welcome"
-msgstr "ЛаÑкаво проÑимо"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:232 src/slic3r/GUI/GUI_App.cpp:606
-#, c-format
-msgid "Run %s"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:234
-#, c-format
-msgid "Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial configuration; just a few settings and you will be ready to print."
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:238
-msgid "Remove user profiles - install from scratch (a snapshot will be taken beforehand)"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:263
-msgid "Other vendors"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:265
-msgid "Custom setup"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:289
-msgid "Automatic updates"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:289
-msgid "Updates"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:297 src/slic3r/GUI/Preferences.cpp:59
-msgid "Check for application updates"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:300 src/slic3r/GUI/Preferences.cpp:61
-msgid "If enabled, Slic3r checks for new versions of Slic3r PE online. When a new version becomes available a notification is displayed at the next application startup (never during program usage). This is only a notification mechanisms, no automatic installation is done."
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:304 src/slic3r/GUI/Preferences.cpp:67
-msgid "Update built-in Presets automatically"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:307 src/slic3r/GUI/Preferences.cpp:69
-msgid "If enabled, Slic3r downloads updates of built-in system presets in the background. These updates are downloaded into a separate temporary location. When a new preset version becomes available it is offered at application startup."
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:308
-msgid "Updates are never applied without user's consent and never overwrite user's customized settings."
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:313
-msgid "Additionally a backup snapshot of the whole configuration is created before an update is applied."
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:320
-msgid "Other Vendors"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:322
-msgid "Pick another vendor supported by Slic3r PE:"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:381
-msgid "Firmware Type"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:381 src/slic3r/GUI/Tab.cpp:1820
-msgid "Firmware"
-msgstr "Прошивка"
-
-#: src/slic3r/GUI/ConfigWizard.cpp:385
-msgid "Choose the type of firmware used by your printer."
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:419
-msgid "Bed Shape and Size"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:422
-msgid "Set the shape of your printer's bed."
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:436
-msgid "Filament and Nozzle Diameters"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:436
-msgid "Print Diameters"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:452
-msgid "Enter the diameter of your printer's hot end nozzle."
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:455
-msgid "Nozzle Diameter:"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:465
-msgid "Enter the diameter of your filament."
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:466
-msgid "Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average."
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:469
-msgid "Filament Diameter:"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:487
-msgid "Extruder and Bed Temperatures"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:487
-msgid "Temperatures"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:503
-msgid "Enter the temperature needed for extruding your filament."
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:504
-msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS."
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:507
-msgid "Extrusion Temperature:"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:508 src/slic3r/GUI/ConfigWizard.cpp:522
-msgid "°C"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:517
-msgid "Enter the bed temperature needed for getting your filament to stick to your heated bed."
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:518
-msgid "A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have no heated bed."
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:521
-msgid "Bed Temperature:"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:833
-msgid "< &Back"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:834
-msgid "&Next >"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:835
-msgid "&Finish"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:906
-msgid "Configuration Wizard"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:907
-msgid "Configuration &Wizard"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:909
-msgid "Configuration Assistant"
-msgstr ""
-
-#: src/slic3r/GUI/ConfigWizard.cpp:910
-msgid "Configuration &Assistant"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:109
-msgid "default value"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:112
-msgid "parameter name"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:140
-#, c-format
-msgid "%s doesn't support percentage"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:148 src/slic3r/GUI/Field.cpp:168
-msgid ""
-"Input value contains incorrect symbol(s).\n"
-"Use, please, only digits"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:153
-msgid "Input value is out of range"
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:176
-#, c-format
-msgid ""
-"Do you mean %d%% instead of %d %s?\n"
-"Select YES if you want to change this value to %d%%, \n"
-"or NO if you are sure that %d %s is a correct value."
-msgstr ""
-
-#: src/slic3r/GUI/Field.cpp:179
-msgid "Parameter validation"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:133
-msgid "Flash!"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:134 src/slic3r/GUI/GLGizmo.cpp:2270
-msgid "Cancel"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:135
-msgid "Flashing in progress. Please do not disconnect the printer!"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:245
-msgid "Flashing succeeded!"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:246
-msgid "Flashing failed. Please see the avrdude log below."
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:247
-msgid "Flashing cancelled."
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:279
-#, c-format
-msgid "Flashing failed: %s"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:293
-#, c-format
-msgid ""
-"This firmware hex file does not match the printer model.\n"
-"The hex file is intended for: %s\n"
-"Printer reported: %s\n"
-"\n"
-"Do you want to continue and flash this hex file anyway?\n"
-"Please only continue if you are sure this is the right thing to do."
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:380 src/slic3r/GUI/FirmwareDialog.cpp:414
-msgid "Multiple Original Prusa i3 MMU 2.0 devices found. Please only connect one at a time for flashing."
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:508
-msgid "The device could not have been found"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:581
-#, c-format
-msgid "Error accessing port at %s: %s"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:690
-msgid "Firmware flasher"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:712
-msgid "Firmware image:"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:716
-msgid "Serial port:"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:718
-msgid "Autodetected"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:719
-msgid "Rescan"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:726
-msgid "Progress:"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:729
-msgid "Status:"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:730
-msgid "Ready"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:750
-msgid "Advanced: avrdude output log"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:809
-msgid ""
-"Are you sure you want to cancel firmware flashing?\n"
-"This could leave your printer in an unusable state!"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:810
-msgid "Confirmation"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:813
-msgid "Cancelling..."
-msgstr ""
-
-#: src/slic3r/GUI/GLCanvas3D.cpp:4640
-msgid "Detected object outside print volume"
-msgstr ""
-
-#: src/slic3r/GUI/GLCanvas3D.cpp:7962
-msgid "Detected toolpath outside print volume"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:751 src/slic3r/GUI/GUI_ObjectManipulation.cpp:300
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:322
-#: src/libslic3r/PrintConfig.cpp:3087
-msgid "Rotate"
-msgstr "Повернути"
-
-#: src/slic3r/GUI/GLGizmo.cpp:785
-msgid "Rotation (deg)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:841 src/slic3r/GUI/GUI_ObjectManipulation.cpp:206
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:301
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:323
-#: src/libslic3r/PrintConfig.cpp:3111
-msgid "Scale"
-msgstr "МаÑштаб"
-
-#: src/slic3r/GUI/GLGizmo.cpp:1072
-msgid "Scale (%)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1200
-msgid "Move"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Position (mm)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Displacement (mm)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1430
-msgid "Place on face"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2207
-msgid "Left mouse click - add point"
-msgstr "Ліва кнопка миші - додати точку"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2208
-msgid "Right mouse click - remove point"
-msgstr "Права кнопка миші - видалити точку"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2211
-msgid "Generate points automatically"
-msgstr "Генерувати точки автоматично"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2212
-msgid "Remove all points"
-msgstr "Видалити вÑÑ– точки"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2245
-msgid "SLA Support Points"
-msgstr "Точки SLA підтримки"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2268 src/slic3r/GUI/GLGizmo.cpp:2468
-msgid "Rotate lower part upwards"
-msgstr "Повернути нижню чаÑтину вгору"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2269 src/slic3r/GUI/GLGizmo.cpp:2470
-msgid "Perform cut"
-msgstr "Виконати розріз"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2276
-msgid "Cut object:"
-msgstr "Розрізати об'єкт:"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2356 src/slic3r/GUI/GLGizmo.cpp:2461
-#: src/libslic3r/PrintConfig.cpp:3016
-msgid "Cut"
-msgstr "Розрізати"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2466
-msgid "Keep upper part"
-msgstr "Залишити верхню чаÑтину"
-
-#: src/slic3r/GUI/GLGizmo.cpp:2467
-msgid "Keep lower part"
-msgstr "Залишити нижню чаÑтину"
-
-#: src/slic3r/GUI/GUI.cpp:242
-msgid "Notice"
-msgstr "ЗауваженнÑ"
-
-#: src/slic3r/GUI/GUI.cpp:248
-msgid "Attempt to free unreferenced scalar"
-msgstr ""
-
-#: src/slic3r/GUI/GUI.cpp:250 src/slic3r/GUI/WipeTowerDialog.cpp:40
-#: src/slic3r/GUI/WipeTowerDialog.cpp:322
-msgid "Warning"
-msgstr "ЗаÑтереженнÑ"
-
-#: src/slic3r/GUI/GUI_App.cpp:377
-msgid "Choose one file (3MF):"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:389
-msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Виберіть один чи кілька файлів (STL/OBJ/AMF/PRUSA):"
-
-#: src/slic3r/GUI/GUI_App.cpp:451
-msgid "Array of language names and identifiers should have the same size."
-msgstr "МаÑив імен мов та Ñ—Ñ… ідентифікаторів має бути однакового розміру."
-
-#: src/slic3r/GUI/GUI_App.cpp:461
-msgid "Select the language"
-msgstr "Оберіть мову"
-
-#: src/slic3r/GUI/GUI_App.cpp:461
-msgid "Language"
-msgstr "Мова"
-
-#: src/slic3r/GUI/GUI_App.cpp:529 src/libslic3r/PrintConfig.cpp:270
-msgid "Default"
-msgstr "За замовчуваннÑм"
-
-#: src/slic3r/GUI/GUI_App.cpp:609
-msgid "&Configuration Snapshots"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:609
-msgid "Inspect / activate configuration snapshots"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:610
-msgid "Take Configuration &Snapshot"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:610
-msgid "Capture a configuration snapshot"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:613
-msgid "&Preferences"
-msgstr "&Преференції"
-
-#: src/slic3r/GUI/GUI_App.cpp:613
-msgid "Application preferences"
-msgstr "Преференції заÑтоÑуваннÑ"
-
-#: src/slic3r/GUI/GUI_App.cpp:616
-msgid "Simple"
-msgstr "ПроÑтий"
-
-#: src/slic3r/GUI/GUI_App.cpp:616
-msgid "Simple View Mode"
-msgstr "ПроÑтий режим переглÑду"
-
-#: src/slic3r/GUI/GUI_App.cpp:617 src/slic3r/GUI/GUI_ObjectList.cpp:39
-#: src/slic3r/GUI/Tab.cpp:948 src/slic3r/GUI/Tab.cpp:962
-#: src/slic3r/GUI/Tab.cpp:1058 src/slic3r/GUI/Tab.cpp:1061
-#: src/slic3r/GUI/Tab.cpp:1425 src/slic3r/GUI/Tab.cpp:1840
-#: src/libslic3r/PrintConfig.cpp:156 src/libslic3r/PrintConfig.cpp:323
-#: src/libslic3r/PrintConfig.cpp:999 src/libslic3r/PrintConfig.cpp:2298
-msgid "Advanced"
-msgstr "Розширений"
-
-#: src/slic3r/GUI/GUI_App.cpp:617
-msgid "Advanced View Mode"
-msgstr "Розширений режим переглÑду"
-
-#: src/slic3r/GUI/GUI_App.cpp:618
-msgid "Expert"
-msgstr "ЕкÑперт"
-
-#: src/slic3r/GUI/GUI_App.cpp:618
-msgid "Expert View Mode"
-msgstr "Режим переглÑду ЕкÑперт"
-
-#: src/slic3r/GUI/GUI_App.cpp:620
-msgid "Mode"
-msgstr "Режим"
-
-#: src/slic3r/GUI/GUI_App.cpp:620
-msgid "Slic3r View Mode"
-msgstr "Режим переглÑду Slic3r'у"
-
-#: src/slic3r/GUI/GUI_App.cpp:622
-msgid "Change Application &Language"
-msgstr "Змінити &мову заÑтоÑуваннÑ"
-
-#: src/slic3r/GUI/GUI_App.cpp:624
-msgid "Flash printer &firmware"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:624
-msgid "Upload a firmware image into an Arduino based printer"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:636
-msgid "Taking configuration snapshot"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:636
-msgid "Snapshot name"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_App.cpp:674
-msgid "Application will be restarted"
-msgstr "ЗаÑтоÑÑƒÐ²Ð°Ð½Ð½Ñ Ð±ÑƒÐ´Ðµ перезапущене"
-
-#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/Tab.cpp:2606
-msgid "Attention!"
-msgstr "Увага!"
-
-#: src/slic3r/GUI/GUI_App.cpp:691
-msgid "&Configuration"
-msgstr "&КонфігураціÑ"
-
-#: src/slic3r/GUI/GUI_App.cpp:711
-msgid "You have unsaved changes "
-msgstr "У Ð²Ð°Ñ Ñ” незбережені зміни "
-
-#: src/slic3r/GUI/GUI_App.cpp:711
-msgid ". Discard changes and continue anyway?"
-msgstr ". Відхилити зміни Ñ– продовжити в будь-Ñкому випадку?"
-
-#: src/slic3r/GUI/GUI_App.cpp:712
-msgid "Unsaved Presets"
-msgstr "Ðезбереженні налаштуваннÑ"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:31 src/libslic3r/PrintConfig.cpp:47
-#: src/libslic3r/PrintConfig.cpp:115 src/libslic3r/PrintConfig.cpp:357
-#: src/libslic3r/PrintConfig.cpp:410 src/libslic3r/PrintConfig.cpp:419
-#: src/libslic3r/PrintConfig.cpp:849 src/libslic3r/PrintConfig.cpp:1037
-#: src/libslic3r/PrintConfig.cpp:1354 src/libslic3r/PrintConfig.cpp:1426
-#: src/libslic3r/PrintConfig.cpp:1618 src/libslic3r/PrintConfig.cpp:2091
-#: src/libslic3r/PrintConfig.cpp:2150
-msgid "Layers and Perimeters"
-msgstr "Шари та периметри"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:32 src/slic3r/GUI/Tab.cpp:952
-#: src/slic3r/GUI/Tab.cpp:953 src/slic3r/GUI/Tab.cpp:1274
-#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:366
-#: src/libslic3r/PrintConfig.cpp:730 src/libslic3r/PrintConfig.cpp:745
-#: src/libslic3r/PrintConfig.cpp:783 src/libslic3r/PrintConfig.cpp:938
-#: src/libslic3r/PrintConfig.cpp:949 src/libslic3r/PrintConfig.cpp:969
-#: src/libslic3r/PrintConfig.cpp:989 src/libslic3r/PrintConfig.cpp:1010
-#: src/libslic3r/PrintConfig.cpp:1733 src/libslic3r/PrintConfig.cpp:1752
-msgid "Infill"
-msgstr "ЗаповненнÑ"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_Preview.cpp:262
-#: src/slic3r/GUI/Tab.cpp:980 src/slic3r/GUI/Tab.cpp:981
-#: src/libslic3r/PrintConfig.cpp:305 src/libslic3r/PrintConfig.cpp:1484
-#: src/libslic3r/PrintConfig.cpp:1865 src/libslic3r/PrintConfig.cpp:1872
-#: src/libslic3r/PrintConfig.cpp:1881 src/libslic3r/PrintConfig.cpp:1894
-#: src/libslic3r/PrintConfig.cpp:1905 src/libslic3r/PrintConfig.cpp:1914
-#: src/libslic3r/PrintConfig.cpp:1930 src/libslic3r/PrintConfig.cpp:1953
-#: src/libslic3r/PrintConfig.cpp:1965 src/libslic3r/PrintConfig.cpp:1983
-#: src/libslic3r/PrintConfig.cpp:1993 src/libslic3r/PrintConfig.cpp:2003
-#: src/libslic3r/PrintConfig.cpp:2014 src/libslic3r/PrintConfig.cpp:2029
-#: src/libslic3r/PrintConfig.cpp:2038 src/libslic3r/PrintConfig.cpp:2039
-#: src/libslic3r/PrintConfig.cpp:2048 src/libslic3r/PrintConfig.cpp:2057
-#: src/libslic3r/PrintConfig.cpp:2072 src/libslic3r/GCode/PreviewData.cpp:172
-msgid "Support material"
-msgstr "Підтримка"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_Preview.cpp:241
-#: src/slic3r/GUI/Tab.cpp:1005 src/libslic3r/PrintConfig.cpp:169
-#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:881
-#: src/libslic3r/PrintConfig.cpp:1011 src/libslic3r/PrintConfig.cpp:1416
-#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1721
-#: src/libslic3r/PrintConfig.cpp:1776 src/libslic3r/PrintConfig.cpp:2136
-msgid "Speed"
-msgstr "ШвидкіÑть"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/Tab.cpp:1038
-#: src/slic3r/GUI/Tab.cpp:1744 src/libslic3r/PrintConfig.cpp:430
-#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:1393
-#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1944
-#: src/libslic3r/PrintConfig.cpp:1973 src/libslic3r/PrintConfig.cpp:2271
-#: src/libslic3r/PrintConfig.cpp:2280
-msgid "Extruders"
-msgstr "ЕкÑтрудери"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/libslic3r/PrintConfig.cpp:387
-#: src/libslic3r/PrintConfig.cpp:504 src/libslic3r/PrintConfig.cpp:836
-#: src/libslic3r/PrintConfig.cpp:970 src/libslic3r/PrintConfig.cpp:1403
-#: src/libslic3r/PrintConfig.cpp:1765 src/libslic3r/PrintConfig.cpp:1954
-#: src/libslic3r/PrintConfig.cpp:2124
-msgid "Extrusion Width"
-msgstr "Ширина екÑтрузії"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:41 src/slic3r/GUI/Tab.cpp:3179
-#: src/slic3r/GUI/Tab.cpp:3180 src/libslic3r/PrintConfig.cpp:2488
-#: src/libslic3r/PrintConfig.cpp:2495 src/libslic3r/PrintConfig.cpp:2504
-#: src/libslic3r/PrintConfig.cpp:2513 src/libslic3r/PrintConfig.cpp:2522
-#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2558
-#: src/libslic3r/PrintConfig.cpp:2567 src/libslic3r/PrintConfig.cpp:2576
-#: src/libslic3r/PrintConfig.cpp:2585 src/libslic3r/PrintConfig.cpp:2594
-#: src/libslic3r/PrintConfig.cpp:2603 src/libslic3r/PrintConfig.cpp:2612
-#: src/libslic3r/PrintConfig.cpp:2621
-msgid "Supports"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:42 src/slic3r/GUI/Tab.cpp:3205
-#: src/slic3r/GUI/Tab.cpp:3206 src/libslic3r/PrintConfig.cpp:2630
-#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2646
-#: src/libslic3r/PrintConfig.cpp:2655 src/libslic3r/PrintConfig.cpp:2664
-msgid "Pad"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:115
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:129
-msgid "Name"
-msgstr "Ім'Ñ"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:134
-msgid "Right button click the icon to change the object settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:142
-#, c-format
-msgid "Auto-repaired (%d errors):\n"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:145
-msgid "degenerate facets"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:146
-msgid "edges fixed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:147
-msgid "facets removed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:148
-msgid "facets added"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:149
-msgid "facets reversed"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:150
-msgid "backwards edges"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:164
-msgid "Right button click the icon to fix STL through Netfabb"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:196 src/slic3r/GUI/Tab.cpp:1389
-#: src/libslic3r/PrintConfig.cpp:429
-msgid "Extruder"
-msgstr "ЕкÑтрудер"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:615
-msgid "Select showing settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:655
-msgid "Load"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659 src/slic3r/GUI/GUI_ObjectList.cpp:688
-#: src/slic3r/GUI/GUI_ObjectList.cpp:691
-msgid "Box"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Cylinder"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Sphere"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
-msgid "Slab"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:671 src/slic3r/GUI/GUI_ObjectList.cpp:685
-msgid "Add part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:672
-msgid "Add modifier"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:673 src/slic3r/GUI/GUI_ObjectList.cpp:687
-msgid "Add support enforcer"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:674 src/slic3r/GUI/GUI_ObjectList.cpp:690
-msgid "Add support blocker"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:711
-msgid "Split to parts"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:725
-msgid "Add settings"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:739
-msgid "Change type"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1009
-msgid "You can't delete the last solid part from object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1017
-msgid "You can't delete the last intance from object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1044 src/slic3r/GUI/Plater.cpp:1825
-msgid "The selected object couldn't be split because it contains only one part."
-msgstr "Вибраний об'єкт не можна розділити, оÑкільки він міÑтить лише одну чаÑтину."
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1138
-msgid "Group manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1149
-msgid "Object manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1159
-msgid "Object Settings to modify"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1163
-msgid "Part Settings to modify"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1173
-msgid "Part manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1180
-msgid "Instance manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1655
-msgid "You can't change a type of the last solid part of the object."
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1662
-msgid "Select type of part"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1744 src/slic3r/GUI/Tab.cpp:3070
-#: src/slic3r/GUI/Tab.cpp:3074
-msgid "The supplied name is not valid;"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1745 src/slic3r/GUI/Tab.cpp:3071
-msgid "the following characters are not allowed:"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:21
-msgid "Object Manipulation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:132
-msgid "Object name"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252
-msgid "Position"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:205
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253
-msgid "Rotation"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254
-msgid "Scale factors"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:321
-msgid "Translate"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_Preview.cpp:235
-msgid "View"
-msgstr "Вид"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/GUI_Preview.cpp:550
-#: src/libslic3r/GCode/PreviewData.cpp:394
-msgid "Feature type"
-msgstr "Тип ознаки"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/PrintConfig.cpp:443
-msgid "Height"
-msgstr "ВиÑота"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/PrintConfig.cpp:2255
-msgid "Width"
-msgstr "Ширина"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:242
-msgid "Volumetric flow rate"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_Preview.cpp:243 src/slic3r/GUI/GUI_Preview.cpp:347
-#: src/slic3r/GUI/GUI_Preview.cpp:496 src/slic3r/GUI/GUI_Preview.cpp:718
-#: src/libslic3r/GCode/PreviewData.cpp:404
-msgid "Tool"
-msgstr "ІнÑтрумент"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:244 src/slic3r/GUI/GUI_Preview.cpp:550
-#: src/libslic3r/GCode/PreviewData.cpp:406
-msgid "Color Print"
-msgstr ""
-
-#: src/slic3r/GUI/GUI_Preview.cpp:247
-msgid "Show"
-msgstr "Показати"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/GUI_Preview.cpp:251
-msgid "Feature types"
-msgstr "Типи ознак"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/GCode/PreviewData.cpp:163
-msgid "Perimeter"
-msgstr "Периметр"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:254 src/libslic3r/GCode/PreviewData.cpp:164
-msgid "External perimeter"
-msgstr "Зовнішній периметр"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/GCode/PreviewData.cpp:165
-msgid "Overhang perimeter"
-msgstr "ÐавиÑаючий периметр"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:256 src/libslic3r/GCode/PreviewData.cpp:166
-msgid "Internal infill"
-msgstr "Внутрішнє наповненнÑ"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:257 src/libslic3r/PrintConfig.cpp:1764
-#: src/libslic3r/PrintConfig.cpp:1775 src/libslic3r/GCode/PreviewData.cpp:167
-msgid "Solid infill"
-msgstr "Суцільне наповненнÑ"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:258 src/libslic3r/PrintConfig.cpp:2123
-#: src/libslic3r/PrintConfig.cpp:2135 src/libslic3r/GCode/PreviewData.cpp:168
-msgid "Top solid infill"
-msgstr "Верхнє Ñуцільне наповненнÑ"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:259 src/libslic3r/GCode/PreviewData.cpp:169
-msgid "Bridge infill"
-msgstr "МоÑтове наповненнÑ"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:260 src/libslic3r/PrintConfig.cpp:880
-#: src/libslic3r/GCode/PreviewData.cpp:170
-msgid "Gap fill"
-msgstr "Ð—Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ñ€Ð¾Ð·Ñ€Ð¸Ð²Ñƒ"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:261 src/slic3r/GUI/Tab.cpp:971
-#: src/libslic3r/GCode/PreviewData.cpp:171
-msgid "Skirt"
-msgstr "ПлінтуÑ"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:263 src/libslic3r/PrintConfig.cpp:2002
-#: src/libslic3r/GCode/PreviewData.cpp:173
-msgid "Support material interface"
-msgstr "Ð†Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ Ð¿Ñ–Ð´Ñ‚Ñ€Ð¸Ð¼ÑƒÑŽÑ‡Ð¾Ð³Ð¾ матеріалу"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:264 src/slic3r/GUI/Tab.cpp:1049
-#: src/libslic3r/GCode/PreviewData.cpp:174
-msgid "Wipe tower"
-msgstr "Вежа вичищуваннÑ"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:269 src/libslic3r/PrintConfig.cpp:2158
-msgid "Travel"
-msgstr "ПереÑуваннÑ"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:270
-msgid "Retractions"
-msgstr "ПерериваннÑ"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:271
-msgid "Unretractions"
-msgstr "ÐеперериваннÑ"
-
-#: src/slic3r/GUI/GUI_Preview.cpp:272
-msgid "Shells"
-msgstr "Оболонки"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:12
-msgid "Slic3r Prusa Edition - Keyboard Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:47
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:126
-msgid "Main Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:101
-msgid "Open project STL/OBJ/AMF/3MF with config, delete bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:102
-msgid "Import STL/OBJ/AMF/3MF without config, keep bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:103
-msgid "Load Config from .ini/amf/3mf/gcode"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:104 src/slic3r/GUI/Plater.cpp:605
-msgid "Export G-code"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:105
-msgid "Save project (3MF)"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:106
-msgid "Load Config from .ini/amf/3mf/gcode and merge"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:107
-msgid "(Re)slice"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:108
-msgid "Quick slice"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 src/slic3r/GUI/MainFrame.cpp:289
-msgid "Repeat last quick slice"
-msgstr "Повторити оÑтаннє швидке нарізаннÑ"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:110
-msgid "Select Plater Tab"
-msgstr "Вибрати вкладку Plater"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:111
-msgid "Quick slice and Save as"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:112
-msgid "Select Print Settings Tab"
-msgstr "Вибрати вкладку параметрів друку"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:113
-msgid "Select Filament Settings Tab"
-msgstr "Вибрати вкладку параметрів філаменту"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:114
-msgid "Select Printer Settings Tab"
-msgstr "Вибрати вкладку параметрів принтеру"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:115
-msgid "Switch to 3D"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:116
-msgid "Switch to Preview"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 src/slic3r/GUI/Preferences.cpp:10
-msgid "Preferences"
-msgstr "Преференції"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:118
-#: src/slic3r/GUI/PrintHostDialogs.cpp:89
-msgid "Print host upload queue"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:119
-msgid "Camera view "
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:120
-msgid "Add Instance to selected object "
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:121
-msgid "Remove Instance from selected object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:122
-msgid "Show keyboard shortcuts list"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:123
-msgid "Switch between 3D and Preview"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:124
-msgid "Select multiple object/Move multiple object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:132
-msgid "Arrange"
-msgstr "Організувати"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:133
-msgid "Select All objects"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:134
-msgid "Delete selected"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:135
-msgid "Delete All"
-msgstr "Видалити вÑе"
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:136
-msgid "Gizmo move"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:137
-msgid "Gizmo scale"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:138
-msgid "Gizmo rotate"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:139
-msgid "Gizmo cut"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:140
-msgid "Gizmo Place face on bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:141
-msgid "Gizmo SLA support points"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:142
-msgid "Zoom to Bed"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:143
-msgid "Zoom to all objects in scene, if none selected"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:144
-msgid "Zoom to selected object"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:145
-msgid "Zoom in"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:146
-msgid "Zoom out"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:147
-msgid "Unselect gizmo, keep object selection"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:149
-msgid "Plater Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
-msgid "Arrow Up"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
-msgid "Upper Layer"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
-msgid "Arrow Down"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
-msgid "Lower Layer"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:158
-msgid "Preview Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:53
-msgid " - Remember to check for updates at http://github.com/prusa3d/slic3r/releases"
-msgstr " - Пам'Ñтайте оновлювати з http://github.com/prusa3d/slic3r/releases"
-
-#: src/slic3r/GUI/MainFrame.cpp:130
-msgid "Plater"
-msgstr "Платер"
-
-#: src/slic3r/GUI/MainFrame.cpp:236
-msgid "&Open"
-msgstr "&Відкрити"
-
-#: src/slic3r/GUI/MainFrame.cpp:236
-msgid "Open a project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:238
-msgid "&Save"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:238
-msgid "Save current project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:240
-msgid "Save &as"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:240
-msgid "Save current project file as"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:246
-msgid "Import STL/OBJ/AM&F/3MF"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:246
-msgid "Load a model"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:249
-msgid "Import &Config"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:249
-msgid "Load exported configuration file"
-msgstr "Завантажити екÑпортований файл конфігурації"
-
-#: src/slic3r/GUI/MainFrame.cpp:251
-msgid "Import Config from &project"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:251
-msgid "Load configuration from project file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:254
-msgid "Import Config &Bundle"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:254
-msgid "Load presets from a bundle"
-msgstr "Завантажити Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð· пакету"
-
-#: src/slic3r/GUI/MainFrame.cpp:256
-msgid "&Import"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:259
-msgid "Export &G-code"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:259
-msgid "Export current plate as G-code"
-msgstr "ЕкÑпорт поточної плаÑтини Ñк G-код"
-
-#: src/slic3r/GUI/MainFrame.cpp:262
-msgid "Export plate as &STL"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:262
-msgid "Export current plate as STL"
-msgstr "ЕкÑпорт поточної плаÑтини Ñк STL"
-
-#: src/slic3r/GUI/MainFrame.cpp:264
-msgid "Export plate as &AMF"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:264
-msgid "Export current plate as AMF"
-msgstr "ЕкÑпорт поточної плаÑтини Ñк AMF"
-
-#: src/slic3r/GUI/MainFrame.cpp:267
-msgid "Export &Config"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:267
-msgid "Export current configuration to file"
-msgstr "ЕкÑпортувати поточну конфігурацію в файл"
-
-#: src/slic3r/GUI/MainFrame.cpp:269
-msgid "Export Config &Bundle"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:269
-msgid "Export all presets to file"
-msgstr "ЕкÑпортувати вÑÑ– Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñƒ файл"
-
-#: src/slic3r/GUI/MainFrame.cpp:271
-msgid "&Export"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:277
-msgid "Quick Slice"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:277
-msgid "Slice a file into a G-code"
-msgstr "Ðарізати файл у G-код"
-
-#: src/slic3r/GUI/MainFrame.cpp:283
-msgid "Quick Slice and Save As"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:283
-msgid "Slice a file into a G-code, save as"
-msgstr "Ðарізати файл у G-код, зберегти Ñк"
-
-#: src/slic3r/GUI/MainFrame.cpp:289
-msgid "Repeat Last Quick Slice"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:297
-msgid "(Re)Slice &Now"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:297
-msgid "Start new slicing process"
-msgstr "Почати новий Ð¿Ñ€Ð¾Ñ†ÐµÑ Ð½Ð°Ñ€Ñ–Ð·Ð°Ð½Ð½Ñ"
-
-#: src/slic3r/GUI/MainFrame.cpp:300
-msgid "&Repair STL file"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:300
-msgid "Automatically repair an STL file"
-msgstr "Ðвтоматично відновити Ñк STL-файл"
-
-#: src/slic3r/GUI/MainFrame.cpp:303
-msgid "&Quit"
-msgstr "Вихід"
-
-#: src/slic3r/GUI/MainFrame.cpp:303
-msgid "Quit Slic3r"
-msgstr "Вийти зі Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:321
-msgid "&Select all"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:321
-msgid "Selects all objects"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:324
-msgid "&Delete selected"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:324
-msgid "Deletes the current selection"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:326
-msgid "Delete &all"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:326
-msgid "Deletes all objects"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:339
-msgid "&Plater Tab"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:339
-msgid "Show the plater"
-msgstr "Показати plater"
-
-#: src/slic3r/GUI/MainFrame.cpp:346
-msgid "P&rint Settings Tab"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:346
-msgid "Show the print settings"
-msgstr "Показати параметри друку"
-
-#: src/slic3r/GUI/MainFrame.cpp:348
-msgid "&Filament Settings Tab"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:348
-msgid "Show the filament settings"
-msgstr "Показати параметри філаменту"
-
-#: src/slic3r/GUI/MainFrame.cpp:350
-msgid "Print&er Settings Tab"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:350
-msgid "Show the printer settings"
-msgstr "Показати параметри принтеру"
-
-#: src/slic3r/GUI/MainFrame.cpp:354
-msgid "3&D"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:354
-msgid "Show the 3D editing view"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:356
-msgid "Pre&view"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:356
-msgid "Show the 3D slices preview"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:377
-msgid "Print &Host Upload Queue"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:377
-msgid "Display the Print Host Upload Queue window"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "&Iso"
-msgstr "&Iso"
-
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "Iso View"
-msgstr "Вид Iso"
-
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "&Top"
-msgstr "З&верху"
-
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "Top View"
-msgstr "Вид зверху"
-
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "&Bottom"
-msgstr "З&низу"
-
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "Bottom View"
-msgstr "Вид знизу"
-
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "&Front"
-msgstr "С&переду"
-
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "Front View"
-msgstr "Вид Ñпереду"
-
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "R&ear"
-msgstr "З&заду"
-
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "Rear View"
-msgstr "Вид ззаду"
-
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "&Left"
-msgstr "З &лівого боку"
-
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "Left View"
-msgstr "Вид з лівого боку"
-
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "&Right"
-msgstr "З &правого боку"
-
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "Right View"
-msgstr "Вид з правого боку"
-
-#: src/slic3r/GUI/MainFrame.cpp:409
-msgid "Prusa 3D &Drivers"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:409
-msgid "Open the Prusa3D drivers download page in your browser"
-msgstr "Відкрити Ñторінку Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ Ð´Ñ€Ð°Ð¹Ð²ÐµÑ€Ñ–Ð² Prusa3D у Ñвоєму браузері"
-
-#: src/slic3r/GUI/MainFrame.cpp:411
-msgid "Prusa Edition &Releases"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:411
-msgid "Open the Prusa Edition releases page in your browser"
-msgstr "Відкрити Ñторінку релізів Prusa Edition у Ñвоєму браузері"
-
-#: src/slic3r/GUI/MainFrame.cpp:417
-msgid "Slic3r &Website"
-msgstr "Веб-Ñайт Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:417
-msgid "Open the Slic3r website in your browser"
-msgstr "Відкрити Ñторінку Slic3r у Ñвоєму браузері"
-
-#: src/slic3r/GUI/MainFrame.cpp:419
-msgid "Slic3r &Manual"
-msgstr "ПоÑібник до Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:419
-msgid "Open the Slic3r manual in your browser"
-msgstr "Відкрити Ñторінку поÑібнику до Slic3r у Ñвоєму браузері"
-
-#: src/slic3r/GUI/MainFrame.cpp:422
-msgid "System &Info"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:422
-msgid "Show system information"
-msgstr "Показати інформацію про ÑиÑтему"
-
-#: src/slic3r/GUI/MainFrame.cpp:424
-msgid "Show &Configuration Folder"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:424
-msgid "Show user configuration folder (datadir)"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:426
-msgid "Report an I&ssue"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:426
-msgid "Report an issue on the Slic3r Prusa Edition"
-msgstr "Повідомити про проблему на Slic3r Prusa Edition"
-
-#: src/slic3r/GUI/MainFrame.cpp:428
-msgid "&About Slic3r"
-msgstr "&Про Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:428
-msgid "Show about dialog"
-msgstr "Показати діалог Про Slic3r"
-
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "&Keyboard Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "Show the list of the keyboard shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:439
-msgid "&File"
-msgstr "Файл"
-
-#: src/slic3r/GUI/MainFrame.cpp:440
-msgid "&Edit"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:441
-msgid "&Window"
-msgstr "Вікно"
-
-#: src/slic3r/GUI/MainFrame.cpp:442
-msgid "&View"
-msgstr "Вид"
-
-#: src/slic3r/GUI/MainFrame.cpp:445
-msgid "&Help"
-msgstr "Допомога"
-
-#: src/slic3r/GUI/MainFrame.cpp:472
-msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr "Вибрати файл Ð´Ð»Ñ Ð½Ð°Ñ€Ñ–Ð·Ð°Ð½Ð½Ñ (STL/OBJ/AMF/3MF/PRUSA):"
-
-#: src/slic3r/GUI/MainFrame.cpp:486
-msgid "No previously sliced file."
-msgstr "Ðемає попередньо нарізаного файлу."
-
-#: src/slic3r/GUI/MainFrame.cpp:487 src/slic3r/GUI/PrintHostDialogs.cpp:173
-msgid "Error"
-msgstr "Помилка"
-
-#: src/slic3r/GUI/MainFrame.cpp:492
-msgid "Previously sliced file ("
-msgstr "Попередньо нарізаний файл ("
-
-#: src/slic3r/GUI/MainFrame.cpp:492
-msgid ") not found."
-msgstr ") не знайдено."
-
-#: src/slic3r/GUI/MainFrame.cpp:493
-msgid "File Not Found"
-msgstr "Файл не знайдено"
-
-#: src/slic3r/GUI/MainFrame.cpp:531 src/slic3r/GUI/Tab.cpp:3031
-msgid "Save "
-msgstr "Зберегти "
-
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid "SVG"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid "G-code"
-msgstr "G-код"
-
-#: src/slic3r/GUI/MainFrame.cpp:531
-msgid " file as:"
-msgstr " файл Ñк:"
-
-#: src/slic3r/GUI/MainFrame.cpp:548
-msgid "Save zip file as:"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:560
-msgid "Slicing"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:560
-msgid "Processing "
-msgstr "Обробка "
-
-#: src/slic3r/GUI/MainFrame.cpp:583
-msgid " was successfully sliced."
-msgstr " був уÑпішно нарізаний."
-
-#: src/slic3r/GUI/MainFrame.cpp:585
-msgid "Slicing Done!"
-msgstr "ÐÐ°Ñ€Ñ–Ð·Ð°Ð½Ð½Ñ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð¾!"
-
-#: src/slic3r/GUI/MainFrame.cpp:600
-msgid "Select the STL file to repair:"
-msgstr "Вибрати STL-файл Ð´Ð»Ñ Ð²Ñ–Ð´Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ:"
-
-#: src/slic3r/GUI/MainFrame.cpp:614
-msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
-msgstr "Зберегти OBJ-файл (менш Ñхильний координувати помилки, ніж STL) Ñк:"
-
-#: src/slic3r/GUI/MainFrame.cpp:629
-msgid "Your file was repaired."
-msgstr "Ваш файл було відновлено."
-
-#: src/slic3r/GUI/MainFrame.cpp:629
-msgid "Repair"
-msgstr "Відновити"
-
-#: src/slic3r/GUI/MainFrame.cpp:643
-msgid "Save configuration as:"
-msgstr "Зберегти конфігурацію Ñк:"
-
-#: src/slic3r/GUI/MainFrame.cpp:663 src/slic3r/GUI/MainFrame.cpp:727
-msgid "Select configuration to load:"
-msgstr "Вибрати конфігурацію Ð´Ð»Ñ Ð·Ð°Ð²Ð°Ð½Ñ‚Ð°Ð¶ÐµÐ½Ð½Ñ:"
-
-#: src/slic3r/GUI/MainFrame.cpp:700
-msgid "Save presets bundle as:"
-msgstr "Зберегти набір налаштувань Ñк:"
-
-#: src/slic3r/GUI/MainFrame.cpp:751
-#, c-format
-msgid "%d presets successfully imported."
-msgstr "%d налаштувань уÑпішно імпортовано."
-
-#: src/slic3r/GUI/MsgDialog.cpp:66
-msgid "Slic3r error"
-msgstr ""
-
-#: src/slic3r/GUI/MsgDialog.cpp:66
-msgid "Slic3r has encountered an error"
-msgstr ""
-
-#: src/slic3r/GUI/MsgDialog.cpp:84
-msgid "Copy to clipboard"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:107
-msgid "Info"
-msgstr "Інфо"
-
-#: src/slic3r/GUI/Plater.cpp:126
-msgid "Volume"
-msgstr "ОбÑÑг"
-
-#: src/slic3r/GUI/Plater.cpp:127
-msgid "Facets"
-msgstr "Грані"
-
-#: src/slic3r/GUI/Plater.cpp:128
-msgid "Materials"
-msgstr "Матеріали"
-
-#: src/slic3r/GUI/Plater.cpp:131
-msgid "Manifold"
-msgstr "РізноманіттÑ"
-
-#: src/slic3r/GUI/Plater.cpp:174
-msgid "Sliced Info"
-msgstr "Ð†Ð½Ñ„Ð¾Ñ€Ð¼Ð°Ñ†Ñ–Ñ Ð· нарізаннÑ"
-
-#: src/slic3r/GUI/Plater.cpp:193 src/slic3r/GUI/Plater.cpp:823
-msgid "Used Filament (m)"
-msgstr "ВикориÑтано філаметну (м)"
-
-#: src/slic3r/GUI/Plater.cpp:194
-msgid "Used Filament (mm³)"
-msgstr "ВикориÑтано філаметну (мм³)"
-
-#: src/slic3r/GUI/Plater.cpp:195
-msgid "Used Filament (g)"
-msgstr "ВикориÑтано філаметну (г)"
-
-#: src/slic3r/GUI/Plater.cpp:196 src/slic3r/GUI/Plater.cpp:838
-#: src/libslic3r/PrintConfig.cpp:718
-msgid "Cost"
-msgstr "ВартіÑть"
-
-#: src/slic3r/GUI/Plater.cpp:197 src/slic3r/GUI/Plater.cpp:852
-msgid "Estimated printing time"
-msgstr "Приблизний Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ"
-
-#: src/slic3r/GUI/Plater.cpp:198
-msgid "Number of tool changes"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:361
-msgid "Support"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:364
-msgid "Select what kind of support do you need"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:365 src/libslic3r/GCode/PreviewData.cpp:162
-msgid "None"
-msgstr "Жодне"
-
-#: src/slic3r/GUI/Plater.cpp:366 src/libslic3r/PrintConfig.cpp:1904
-msgid "Support on build plate only"
-msgstr "Підтримка тільки на збірній плаÑтині"
-
-#: src/slic3r/GUI/Plater.cpp:367
-msgid "Everywhere"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:379 src/slic3r/GUI/Tab.cpp:977
-msgid "Brim"
-msgstr "Край"
-
-#: src/slic3r/GUI/Plater.cpp:381
-msgid "This flag enables the brim that will be printed around each object on the first layer."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:390
-msgid "Purging volumes"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:556
-msgid "Print settings"
-msgstr "Параметри друку"
-
-#: src/slic3r/GUI/Plater.cpp:557 src/slic3r/GUI/Tab.cpp:1380
-#: src/slic3r/GUI/Tab.cpp:1381
-msgid "Filament"
-msgstr "Філамент"
-
-#: src/slic3r/GUI/Plater.cpp:558 src/slic3r/GUI/Preset.cpp:1158
-msgid "SLA print"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:559 src/slic3r/GUI/Preset.cpp:1159
-msgid "SLA material"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:560
-msgid "Printer"
-msgstr "Принтер"
-
-#: src/slic3r/GUI/Plater.cpp:588
-msgid "Send to printer"
-msgstr "ÐадіÑлати на принтер"
-
-#: src/slic3r/GUI/Plater.cpp:607
-msgid "Slice now"
-msgstr "Ðарізати зараз"
-
-#: src/slic3r/GUI/Plater.cpp:787
-#, c-format
-msgid "%d (%d shells)"
-msgstr "%d (%d оболонок)"
-
-#: src/slic3r/GUI/Plater.cpp:792
-#, c-format
-msgid "Auto-repaired (%d errors)"
-msgstr "Ðвтоматичне Ð²Ñ–Ð´Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ (%d помилок)"
-
-#: src/slic3r/GUI/Plater.cpp:795
-#, c-format
-msgid "%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d facets reversed, %d backwards edges"
-msgstr "вироджено %d грані, виправлено %d країв, вилучено %d грані, додано %d грані, змінено %d грані, повернуто %d країв"
-
-#: src/slic3r/GUI/Plater.cpp:805
-msgid "Yes"
-msgstr "Так"
-
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
-msgid "objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
-msgid "wipe tower"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:855
-msgid "normal mode"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:859
-msgid "silent mode"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1304
-msgid "Loading"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1314
-#, c-format
-msgid "Processing input file %s\n"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1366
-msgid ""
-"This file contains several objects positioned at multiple heights. Instead of considering them as multiple objects, should I consider\n"
-"this file as a single object having multiple parts?\n"
-msgstr ""
-"Цей файл міÑтить кілька об'єктів, розташованих на декількох виÑотах. ЗаміÑть того, щоб розглÑдати Ñ—Ñ… Ñк кілька об'єктів, чи потрібно розглÑнути\n"
-"цей файл Ñк єдиний об'єкт, що має декілька чаÑтин?\n"
-
-#: src/slic3r/GUI/Plater.cpp:1369 src/slic3r/GUI/Plater.cpp:1411
-msgid "Multi-part object detected"
-msgstr "ВиÑвлено об'єкт, що ÑкладаєтьÑÑ Ð· кількох чаÑтин"
-
-#: src/slic3r/GUI/Plater.cpp:1388
-#, c-format
-msgid "You can't to add the object(s) from %s because of one or some of them is(are) multi-part"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1408
-msgid ""
-"Multiple objects were loaded for a multi-material printer.\n"
-"Instead of considering them as multiple objects, should I consider\n"
-"these files to represent a single object having multiple parts?\n"
-msgstr ""
-"До мульти-матеріального принтеру завантажено кілька об'єктів.\n"
-"ЗаміÑть того, щоб розглÑдати Ñ—Ñ… Ñк кілька об'єктів, чи потрібно розглÑнути\n"
-"ці файл Ñк єдиний об'єкт, що має декілька чаÑтин?\n"
-
-#: src/slic3r/GUI/Plater.cpp:1424
-msgid "Loaded"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1492
-msgid "Your object appears to be too large, so it was automatically scaled down to fit your print bed."
-msgstr "Ваш об'єкт видавÑÑ Ð·Ð°Ð½Ð°Ð´Ñ‚Ð¾ великим, тому він автоматично зменшивÑÑ Ð²Ñ–Ð´Ð¿Ð¾Ð²Ñ–Ð´Ð½Ð¾ до вашої полотна друку."
-
-#: src/slic3r/GUI/Plater.cpp:1493
-msgid "Object too large?"
-msgstr "Об'єкт занадто великий?"
-
-#: src/slic3r/GUI/Plater.cpp:1536
-msgid "Export print config"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1538
-msgid "Save file as:"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1702
-msgid "Arranging canceled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1705
-msgid "Arranging"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1736
-msgid "Could not arrange model objects! Some geometries may be invalid."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1740
-msgid "Arranging done."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1782
-msgid "Orientation search canceled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1787
-msgid "Searching for optimal orientation"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1797
-msgid "Orientation found."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1818
-msgid "The selected object can't be split because it contains more than one volume/material."
-msgstr "Вибраний об'єкт не можна розділити, оÑкільки міÑтить більше одного об'єму/матеріалу."
-
-#: src/slic3r/GUI/Plater.cpp:1945 src/slic3r/GUI/PrintHostDialogs.cpp:174
-msgid "Cancelling"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1962
-msgid "Another export job is currently running."
-msgstr "Ðа даний Ñ‡Ð°Ñ Ð²Ð¸ÐºÐ¾Ð½ÑƒÑ”Ñ‚ÑŒÑÑ Ñ–Ð½ÑˆÐ¸Ð¹ екÑпорт."
-
-#: src/slic3r/GUI/Plater.cpp:2215
-msgid "Export failed"
-msgstr "ЕкÑпортувати не вдалоÑÑ"
-
-#: src/slic3r/GUI/Plater.cpp:2219 src/slic3r/GUI/PrintHostDialogs.cpp:175
-msgid "Cancelled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2346 src/slic3r/GUI/Tab.cpp:2736
-msgid "Delete"
-msgstr "Видалити"
-
-#: src/slic3r/GUI/Plater.cpp:2346
-msgid "Remove the selected object"
-msgstr "Видалити вибраний об'єкт"
-
-#: src/slic3r/GUI/Plater.cpp:2349
-msgid "Increase copies"
-msgstr "Збільшити копії"
-
-#: src/slic3r/GUI/Plater.cpp:2349
-msgid "Place one more copy of the selected object"
-msgstr "Розташувати ще одну копію обраного об'єкта"
-
-#: src/slic3r/GUI/Plater.cpp:2351
-msgid "Decrease copies"
-msgstr "Зменшити копії"
-
-#: src/slic3r/GUI/Plater.cpp:2351
-msgid "Remove one copy of the selected object"
-msgstr "Вилучіть одну копію обраного об'єкта"
-
-#: src/slic3r/GUI/Plater.cpp:2353
-msgid "Set number of copies"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2353
-msgid "Change the number of copies of the selected object"
-msgstr "Змінити кількіÑть копій обраного об'єкта"
-
-#: src/slic3r/GUI/Plater.cpp:2363
-msgid "Reload from Disk"
-msgstr "Перезавантажити з диÑка"
-
-#: src/slic3r/GUI/Plater.cpp:2363
-msgid "Reload the selected file from Disk"
-msgstr "Перезавантажити вибраний файл із диÑка"
-
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export object as STL"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export this single object as STL file"
-msgstr "ЕкÑпортувати цей окремий об'єкт Ñк STL-файл"
-
-#: src/slic3r/GUI/Plater.cpp:2375
-msgid "Along X axis"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2375
-msgid "Mirror the selected object along the X axis"
-msgstr "Віддзеркалити виділений об'єкт уздовж оÑÑ– Ð¥"
-
-#: src/slic3r/GUI/Plater.cpp:2377
-msgid "Along Y axis"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2377
-msgid "Mirror the selected object along the Y axis"
-msgstr "Віддзеркалити виділений об'єкт уздовж оÑÑ– Y"
-
-#: src/slic3r/GUI/Plater.cpp:2379
-msgid "Along Z axis"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2379
-msgid "Mirror the selected object along the Z axis"
-msgstr "Віддзеркалити виділений об'єкт уздовж оÑÑ– Z"
-
-#: src/slic3r/GUI/Plater.cpp:2382
-msgid "Mirror"
-msgstr "Віддзеркалити"
-
-#: src/slic3r/GUI/Plater.cpp:2382
-msgid "Mirror the selected object"
-msgstr "Віддзеркалити виділений об'єкт"
-
-#: src/slic3r/GUI/Plater.cpp:2400
-msgid "To objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2400 src/slic3r/GUI/Plater.cpp:2431
-msgid "Split the selected object into individual objects"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2402
-msgid "To parts"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2402 src/slic3r/GUI/Plater.cpp:2451
-msgid "Split the selected object into individual sub-parts"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2405 src/slic3r/GUI/Plater.cpp:2431
-#: src/slic3r/GUI/Plater.cpp:2451
-msgid "Split"
-msgstr "Розділити"
-
-#: src/slic3r/GUI/Plater.cpp:2405
-msgid "Split the selected object"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2435
-msgid "Optimize orientation"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2435
-msgid "Optimize the rotation of the object for better print results."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2795
-msgid "Save G-code file as:"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2795
-msgid "Save Zip file as:"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2845
-#, c-format
-msgid "STL file exported to %s"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2861
-#, c-format
-msgid "AMF file exported to %s"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2864
-#, c-format
-msgid "Error exporting AMF file %s"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2891
-#, c-format
-msgid "3MF file exported to %s"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2894
-#, c-format
-msgid "Error exporting 3MF file %s"
-msgstr ""
-
-#: src/slic3r/GUI/Preferences.cpp:17 src/slic3r/GUI/Tab.cpp:1712
-#: src/slic3r/GUI/Tab.cpp:1911
-msgid "General"
-msgstr "Загальне"
-
-#: src/slic3r/GUI/Preferences.cpp:34
-msgid "Remember output directory"
-msgstr "Пам'Ñтати вихідний каталог"
-
-#: src/slic3r/GUI/Preferences.cpp:36
-msgid "If this is enabled, Slic3r will prompt the last output directory instead of the one containing the input files."
-msgstr "Якщо вибрано, Slic3r запропонує оÑтанню вихідну директорію заміÑть тої, що вказана у вхідному файлі."
-
-#: src/slic3r/GUI/Preferences.cpp:42
-msgid "Auto-center parts"
-msgstr "Ðвтоцентрувати чаÑтини"
-
-#: src/slic3r/GUI/Preferences.cpp:44
-msgid "If this is enabled, Slic3r will auto-center objects around the print bed center."
-msgstr "Якщо вибрано, Slic3r автоматично орієнтує об'єкти навколо центру друку."
-
-#: src/slic3r/GUI/Preferences.cpp:50
-msgid "Background processing"
-msgstr "Фонова обробка"
-
-#: src/slic3r/GUI/Preferences.cpp:52
-msgid "If this is enabled, Slic3r will pre-process objects as soon as they're loaded in order to save time when exporting G-code."
-msgstr "Якщо вибрано, Slic3r буде попередньо оброблÑти об'єкти, Ñк тільки вони будуть завантажені, щоб заощадити Ñ‡Ð°Ñ Ð¿Ñ€Ð¸ екÑпорті G-коду."
-
-#: src/slic3r/GUI/Preferences.cpp:74
-msgid "Suppress \" - default - \" presets"
-msgstr "Заборонити Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ \"- за замовчуваннÑм -\""
-
-#: src/slic3r/GUI/Preferences.cpp:76
-msgid "Suppress \" - default - \" presets in the Print / Filament / Printer selections once there are any other valid presets available."
-msgstr "Заборонити Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ \"- за замовчуваннÑм -\" у параметрах Друк / Філамент / Принтер, Ñкщо доÑтупні інші діючі налаштуваннÑ."
-
-#: src/slic3r/GUI/Preferences.cpp:82
-msgid "Show incompatible print and filament presets"
-msgstr "Показувати неÑуміÑні Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ñ€ÑƒÐºÑƒ та філаменту"
-
-#: src/slic3r/GUI/Preferences.cpp:84
-msgid "When checked, the print and filament presets are shown in the preset editor even if they are marked as incompatible with the active printer"
-msgstr "Якщо вибрано, Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ñ€ÑƒÐºÑƒ та філаменту відображаютьÑÑ Ñƒ ÑпиÑку налаштувань, навіть Ñкщо вони позначені Ñк неÑуміÑні з активним принтером"
-
-#: src/slic3r/GUI/Preferences.cpp:90
-msgid "Use legacy OpenGL 1.1 rendering"
-msgstr "ВикориÑтовувати заÑтарілий OpenGL 1.1 рендеринг"
-
-#: src/slic3r/GUI/Preferences.cpp:92
-msgid "If you have rendering issues caused by a buggy OpenGL 2.0 driver, you may try to check this checkbox. This will disable the layer height editing and anti aliasing, so it is likely better to upgrade your graphics driver."
-msgstr "Якщо у Ð²Ð°Ñ Ð²Ð¸Ð½Ð¸ÐºÐ°ÑŽÑ‚ÑŒ проблеми з візуалізацією, Ñпричинені помилковим драйвером OpenGL 2.0, Ñпробуйте вибрати цю опцію. Це призведе до Ð²Ð¸Ð¼ÐºÐ½ÐµÐ½Ð½Ñ Ñ€ÐµÐ´Ð°Ð³ÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ð¸Ñоти шару та згладжуваннÑ, тому краще оновити графічний драйвер."
-
-#: src/slic3r/GUI/Preferences.cpp:115
-msgid "You need to restart Slic3r to make the changes effective."
-msgstr "З метою ефективноÑті зміни, Вам потрібно буде перезапуÑтити Slic3r."
-
-#: src/slic3r/GUI/Preset.cpp:170
-msgid "modified"
-msgstr "модифікований"
-
-#: src/slic3r/GUI/Preset.cpp:862 src/slic3r/GUI/Preset.cpp:902
-#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:962
-#: src/slic3r/GUI/PresetBundle.cpp:1459 src/slic3r/GUI/PresetBundle.cpp:1512
-msgid "System presets"
-msgstr "СиÑтемні налаштуваннÑ"
-
-#: src/slic3r/GUI/Preset.cpp:906 src/slic3r/GUI/Preset.cpp:966
-#: src/slic3r/GUI/PresetBundle.cpp:1517
-msgid "User presets"
-msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ ÐºÐ¾Ñ€Ð¸Ñтувача"
-
-#: src/slic3r/GUI/Preset.cpp:1157
-msgid "filament"
-msgstr ""
-
-#: src/slic3r/GUI/PresetHints.cpp:28
-#, c-format
-msgid "If estimated layer time is below ~%ds, fan will run at %d%% and print speed will be reduced so that no less than %ds are spent on that layer (however, speed will never be reduced below %dmm/s)."
-msgstr "Якщо запланований Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ шару нижче ~%dÑ, вентилÑтор буде працювати на%d%%, Ñ– швидкіÑть друку буде зменшена, так що на цей шар витрачаєтьÑÑ Ð½Ðµ менше %dÑ (однак швидкіÑть ніколи не зменшитьÑÑ Ð½Ð¸Ð¶Ñ‡Ðµ %d mm/s) ."
-
-#: src/slic3r/GUI/PresetHints.cpp:32
-#, c-format
-msgid ""
-"\n"
-"If estimated layer time is greater, but still below ~%ds, fan will run at a proportionally decreasing speed between %d%% and %d%%."
-msgstr ""
-"\n"
-"Якщо запланований Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ шару більше, але вÑе ще нижче ~%dÑ, вентилÑтор буде працювати з пропорційно зменшуваною швидкіÑтю між %d%% та %d%%."
-
-#: src/slic3r/GUI/PresetHints.cpp:36
-msgid ""
-"\n"
-"During the other layers, fan "
-msgstr ""
-"\n"
-"Під Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ інших шарів вентилÑтор "
-
-#: src/slic3r/GUI/PresetHints.cpp:38
-msgid "Fan "
-msgstr "ВентилÑтор "
-
-#: src/slic3r/GUI/PresetHints.cpp:43
-#, c-format
-msgid "will always run at %d%% "
-msgstr "буде завжди працювати на %d%% "
-
-#: src/slic3r/GUI/PresetHints.cpp:46
-#, c-format
-msgid "except for the first %d layers"
-msgstr "за винÑтком перших %d шарів"
-
-#: src/slic3r/GUI/PresetHints.cpp:50
-msgid "except for the first layer"
-msgstr "за винÑтком першого шару"
-
-#: src/slic3r/GUI/PresetHints.cpp:52
-msgid "will be turned off."
-msgstr "буде вимкнено."
-
-#: src/slic3r/GUI/PresetHints.cpp:153
-msgid "external perimeters"
-msgstr "зовнішні периметри"
-
-#: src/slic3r/GUI/PresetHints.cpp:162
-msgid "perimeters"
-msgstr "периметри"
-
-#: src/slic3r/GUI/PresetHints.cpp:171
-msgid "infill"
-msgstr "наповненнÑ"
-
-#: src/slic3r/GUI/PresetHints.cpp:181
-msgid "solid infill"
-msgstr "Ñуцільне наповненнÑ"
-
-#: src/slic3r/GUI/PresetHints.cpp:189
-msgid "top solid infill"
-msgstr "верхній Ñуцільне наповненнÑ"
-
-#: src/slic3r/GUI/PresetHints.cpp:200
-msgid "support"
-msgstr "підтримка"
-
-#: src/slic3r/GUI/PresetHints.cpp:210
-msgid "support interface"
-msgstr "Ñ–Ð½Ñ‚ÐµÑ€Ñ„ÐµÐ¹Ñ Ð¿Ñ–Ð´Ñ‚Ñ€Ð¸Ð¼ÐºÐ¸"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "First layer volumetric"
-msgstr "Об'єм першого шару"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "Bridging volumetric"
-msgstr "Об'єм моÑтів"
-
-#: src/slic3r/GUI/PresetHints.cpp:216
-msgid "Volumetric"
-msgstr "Об'ємний"
-
-#: src/slic3r/GUI/PresetHints.cpp:217
-msgid " flow rate is maximized "
-msgstr " швидкіÑть потоку макÑимізуєтьÑÑ "
-
-#: src/slic3r/GUI/PresetHints.cpp:220
-msgid "by the print profile maximum"
-msgstr "за профілем друку макÑимум"
-
-#: src/slic3r/GUI/PresetHints.cpp:221
-msgid "when printing "
-msgstr "коли друкуємо "
-
-#: src/slic3r/GUI/PresetHints.cpp:222
-msgid " with a volumetric rate "
-msgstr " з об'ємною швидкіÑтю "
-
-#: src/slic3r/GUI/PresetHints.cpp:226
-#, c-format
-msgid "%3.2f mm³/s"
-msgstr "%3.2f мм³/Ñ"
-
-#: src/slic3r/GUI/PresetHints.cpp:228
-#, c-format
-msgid " at filament speed %3.2f mm/s."
-msgstr " при швидкоÑті філаменту %3.2f мм/Ñ."
-
-#: src/slic3r/GUI/PresetHints.cpp:247
-msgid "Recommended object thin wall thickness: Not available due to invalid layer height."
-msgstr "Рекомендований об'єкт товщиною тонкої Ñтінки: ÐедоÑтупний через невірне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð²Ð¸Ñоти шару."
-
-#: src/slic3r/GUI/PresetHints.cpp:264
-#, c-format
-msgid "Recommended object thin wall thickness for layer height %.2f and "
-msgstr "Рекомендована товщина Ñтінки Ð´Ð»Ñ Ð²Ð¸Ñоти шару %.2f та "
-
-#: src/slic3r/GUI/PresetHints.cpp:271
-#, c-format
-msgid "%d lines: %.2lf mm"
-msgstr "%d Ñ€Ñдків: %.2lf мм"
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
-msgid "Send G-Code to printer host"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
-msgid "Upload to Printer Host with the following filename:"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:31
-msgid "Start printing after upload"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:33
-msgid "Use forward slashes ( / ) as a directory separator if needed."
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:111
-msgid "Cancel selected"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:113
-msgid "Show error message"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:115
-msgid "Close"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:152
-#: src/slic3r/GUI/PrintHostDialogs.cpp:171
-msgid "Enqueued"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:172
-msgid "Uploading"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:176
-msgid "Completed"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:214
-msgid "Error uploading to print host:"
-msgstr ""
-
-#: src/slic3r/GUI/RammingChart.cpp:23
-msgid "NO RAMMING AT ALL"
-msgstr ""
-
-#: src/slic3r/GUI/RammingChart.cpp:76
-msgid "Time"
-msgstr ""
-
-#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78 src/libslic3r/PrintConfig.cpp:603
-#: src/libslic3r/PrintConfig.cpp:653 src/libslic3r/PrintConfig.cpp:670
-#: src/libslic3r/PrintConfig.cpp:2352 src/libslic3r/PrintConfig.cpp:2360
-#: src/libslic3r/PrintConfig.cpp:2432 src/libslic3r/PrintConfig.cpp:2440
-msgid "s"
-msgstr ""
-
-#: src/slic3r/GUI/RammingChart.cpp:81
-msgid "Volumetric speed"
-msgstr ""
-
-#: src/slic3r/GUI/SysInfoDialog.cpp:40
-msgid "Slic3r Prusa Edition - System Information"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:49 src/libslic3r/PrintConfig.cpp:202
-msgid "Compatible printers"
-msgstr "СуміÑні принтери"
-
-#: src/slic3r/GUI/Tab.cpp:50
-msgid "Select the printers this profile is compatible with."
-msgstr "Оберіть принтери, ÑуміÑні з цим профілем."
-
-#: src/slic3r/GUI/Tab.cpp:55 src/libslic3r/PrintConfig.cpp:215
-msgid "Compatible print profiles"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:56
-msgid "Select the print profiles this profile is compatible with."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:118
-msgid "Save current "
-msgstr "Зберегти поточний "
-
-#: src/slic3r/GUI/Tab.cpp:119
-msgid "Delete this preset"
-msgstr "Видалити це налаштуваннÑ"
-
-#: src/slic3r/GUI/Tab.cpp:131
-msgid ""
-"Hover the cursor over buttons to find more information \n"
-"or click this button."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:824
-msgid "It's a default preset."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:825
-msgid "It's a system preset."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:826
-msgid "Current preset is inherited from "
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:831
-msgid "It can't be deleted or modified. "
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:832
-msgid "Any modifications should be saved as a new preset inherited from this one. "
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:833
-msgid "To do that please specify a new name for the preset."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:837
-msgid "Additional information:"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:843
-msgid "printer model"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:851
-msgid "default print profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:854
-msgid "default filament profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:868
-msgid "default SLA material profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:872
-msgid "default SLA print profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:919 src/slic3r/GUI/Tab.cpp:3174
-msgid "Layers and perimeters"
-msgstr "Шари та периметри"
-
-#: src/slic3r/GUI/Tab.cpp:920 src/libslic3r/PrintConfig.cpp:46
-msgid "Layer height"
-msgstr "ВиÑота шару"
-
-#: src/slic3r/GUI/Tab.cpp:924
-msgid "Vertical shells"
-msgstr "Вертикальні оболонки"
-
-#: src/slic3r/GUI/Tab.cpp:935
-msgid "Horizontal shells"
-msgstr "Горизонтальні оболонки"
-
-#: src/slic3r/GUI/Tab.cpp:936 src/libslic3r/PrintConfig.cpp:1788
-msgid "Solid layers"
-msgstr "Суцільні шари"
-
-#: src/slic3r/GUI/Tab.cpp:941
-msgid "Quality (slower slicing)"
-msgstr "ЯкіÑть (повільне нарізаннÑ)"
-
-#: src/slic3r/GUI/Tab.cpp:958
-msgid "Reducing printing time"
-msgstr "Ð—Ð½Ð¸Ð¶ÐµÐ½Ð½Ñ Ñ‡Ð°Ñу друку"
-
-#: src/slic3r/GUI/Tab.cpp:970
-msgid "Skirt and brim"
-msgstr "ÐŸÐ»Ñ–Ð½Ñ‚ÑƒÑ Ñ‚Ð° край"
-
-#: src/slic3r/GUI/Tab.cpp:987
-msgid "Raft"
-msgstr "Пліт"
-
-#: src/slic3r/GUI/Tab.cpp:991
-msgid "Options for support material and raft"
-msgstr "Варіанти Ð´Ð»Ñ Ð¾Ð¿Ð¾Ñ€Ð½Ð¾Ð³Ð¾ матеріалу та плоту"
-
-#: src/slic3r/GUI/Tab.cpp:1006
-msgid "Speed for print moves"
-msgstr "ШвидкіÑть друкарÑьких рухів"
-
-#: src/slic3r/GUI/Tab.cpp:1018
-msgid "Speed for non-print moves"
-msgstr "ШвидкіÑть недрукарÑьких рухів"
-
-#: src/slic3r/GUI/Tab.cpp:1021
-msgid "Modifiers"
-msgstr "Модифікатори"
-
-#: src/slic3r/GUI/Tab.cpp:1024
-msgid "Acceleration control (advanced)"
-msgstr "Контроль приÑÐºÐ¾Ñ€ÐµÐ½Ð½Ñ (розширений)"
-
-#: src/slic3r/GUI/Tab.cpp:1031
-msgid "Autospeed (advanced)"
-msgstr "Ðвтоматична швидкіÑть (розширена)"
-
-#: src/slic3r/GUI/Tab.cpp:1037
-msgid "Multiple Extruders"
-msgstr "Кілька екÑтрудерів"
-
-#: src/slic3r/GUI/Tab.cpp:1045
-msgid "Ooze prevention"
-msgstr "Профілактика проÑочуваннÑ"
-
-#: src/slic3r/GUI/Tab.cpp:1062
-msgid "Extrusion width"
-msgstr "Ширина екÑтрузії"
-
-#: src/slic3r/GUI/Tab.cpp:1072
-msgid "Overlap"
-msgstr "ПерекриттÑ"
-
-#: src/slic3r/GUI/Tab.cpp:1075
-msgid "Flow"
-msgstr "Потік"
-
-#: src/slic3r/GUI/Tab.cpp:1078
-msgid "Other"
-msgstr "Інше"
-
-#: src/slic3r/GUI/Tab.cpp:1085 src/slic3r/GUI/Tab.cpp:3213
-msgid "Output options"
-msgstr "Параметри виводу"
-
-#: src/slic3r/GUI/Tab.cpp:1086
-msgid "Sequential printing"
-msgstr "ПоÑлідовне друкуваннÑ"
-
-#: src/slic3r/GUI/Tab.cpp:1088
-msgid "Extruder clearance (mm)"
-msgstr "Розмір екÑтрудера (мм)"
-
-#: src/slic3r/GUI/Tab.cpp:1097 src/slic3r/GUI/Tab.cpp:3214
-msgid "Output file"
-msgstr "Вихідний файл"
-
-#: src/slic3r/GUI/Tab.cpp:1103 src/libslic3r/PrintConfig.cpp:1438
-msgid "Post-processing scripts"
-msgstr "Скрипти поÑÑ‚-обробки"
-
-#: src/slic3r/GUI/Tab.cpp:1109 src/slic3r/GUI/Tab.cpp:1110
-#: src/slic3r/GUI/Tab.cpp:1483 src/slic3r/GUI/Tab.cpp:1484
-#: src/slic3r/GUI/Tab.cpp:1883 src/slic3r/GUI/Tab.cpp:1884
-#: src/slic3r/GUI/Tab.cpp:1964 src/slic3r/GUI/Tab.cpp:1965
-#: src/slic3r/GUI/Tab.cpp:3119 src/slic3r/GUI/Tab.cpp:3120
-msgid "Notes"
-msgstr "Примітки"
-
-#: src/slic3r/GUI/Tab.cpp:1116 src/slic3r/GUI/Tab.cpp:1491
-#: src/slic3r/GUI/Tab.cpp:1890 src/slic3r/GUI/Tab.cpp:1971
-#: src/slic3r/GUI/Tab.cpp:3127 src/slic3r/GUI/Tab.cpp:3219
-msgid "Dependencies"
-msgstr "ЗалежноÑті"
-
-#: src/slic3r/GUI/Tab.cpp:1117 src/slic3r/GUI/Tab.cpp:1492
-#: src/slic3r/GUI/Tab.cpp:1891 src/slic3r/GUI/Tab.cpp:1972
-#: src/slic3r/GUI/Tab.cpp:3128 src/slic3r/GUI/Tab.cpp:3220
-msgid "Profile dependencies"
-msgstr "ЗалежноÑті профілю"
-
-#: src/slic3r/GUI/Tab.cpp:1161
-#, no-c-format
-msgid ""
-"The Spiral Vase mode requires:\n"
-"- one perimeter\n"
-"- no top solid layers\n"
-"- 0% fill density\n"
-"- no support material\n"
-"- no ensure_vertical_shell_thickness\n"
-"\n"
-"Shall I adjust those settings in order to enable Spiral Vase?"
-msgstr ""
-"Режим Ñпіральної вази вимагає:\n"
-"- один периметр\n"
-"- немає верхніх щільних шарів\n"
-"- 0% щільніÑть заповненнÑ\n"
-"- немає підтримуючого матеріалу\n"
-"- не забезпечує товщини вертикальної оболонки\n"
-"\n"
-"Чи потрібно змінити ці налаштуваннÑ, щоб увімкнути режим Спіральної вази?"
-
-#: src/slic3r/GUI/Tab.cpp:1168
-msgid "Spiral Vase"
-msgstr "Спіральна ваза"
-
-#: src/slic3r/GUI/Tab.cpp:1191
-msgid ""
-"The Wipe Tower currently supports the non-soluble supports only\n"
-"if they are printed with the current extruder without triggering a tool change.\n"
-"(both support_material_extruder and support_material_interface_extruder need to be set to 0).\n"
-"\n"
-"Shall I adjust those settings in order to enable the Wipe Tower?"
-msgstr ""
-"Вичіщуюча веж в даний Ñ‡Ð°Ñ Ð¿Ñ–Ð´Ñ‚Ñ€Ð¸Ð¼ÑƒÑ” лише нерозчинну підтримку\n"
-"Ñкщо вони друкуютьÑÑ Ð· поточним екÑтрудером, не запуÑкаючи зміну інÑтрументу.\n"
-"(обидва Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ support_material_extruder Ñ– support_material_interface_extruder повинні бути вÑтановлені на 0).\n"
-"\n"
-"Чи потрібно коригувати ці налаштуваннÑ, щоб увімкнути вичіщуючу веж?"
-
-#: src/slic3r/GUI/Tab.cpp:1195 src/slic3r/GUI/Tab.cpp:1212
-msgid "Wipe Tower"
-msgstr "Вичіщуюча веж"
-
-#: src/slic3r/GUI/Tab.cpp:1209
-msgid ""
-"For the Wipe Tower to work with the soluble supports, the support layers\n"
-"need to be synchronized with the object layers.\n"
-"\n"
-"Shall I synchronize support layers in order to enable the Wipe Tower?"
-msgstr ""
-"Ð”Ð»Ñ Ñ‚Ð¾Ð³Ð¾, щоб Вичіщуюча веж працювала з розчинними підтримками, шари підтримки\n"
-"повинні бути Ñинхронізовані з шаром об'єкта.\n"
-"\n"
-"Чи потрібно Ñинхронізувати шари підтримки, щоб увімкнути вичіщуючу веж?"
-
-#: src/slic3r/GUI/Tab.cpp:1227
-msgid ""
-"Supports work better, if the following feature is enabled:\n"
-"- Detect bridging perimeters\n"
-"\n"
-"Shall I adjust those settings for supports?"
-msgstr ""
-"Підтримка працює краще, Ñкщо ввімкнено таку функцію:\n"
-"- ВиÑÐ²Ð»ÐµÐ½Ð½Ñ Ð²Ð¸ÑÑчих периметрів(перемичок)\n"
-"\n"
-"Чи потрібно змінити ці Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð»Ñ Ð¿Ñ–Ð´Ñ‚Ñ€Ð¸Ð¼ÐºÐ¸?"
-
-#: src/slic3r/GUI/Tab.cpp:1230
-msgid "Support Generator"
-msgstr "Ð¡Ñ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð¿Ñ–Ð´Ñ‚Ñ€Ð¸Ð¼ÐºÐ¸"
-
-#: src/slic3r/GUI/Tab.cpp:1272
-msgid "The "
-msgstr "Шаблон Ð½Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ "
-
-#: src/slic3r/GUI/Tab.cpp:1272
-#, no-c-format
-msgid ""
-" infill pattern is not supposed to work at 100% density.\n"
-"\n"
-"Shall I switch to rectilinear fill pattern?"
-msgstr ""
-" не підтримуєтьÑÑ Ð½Ð° 100% щільноÑті.\n"
-"\n"
-"Чи потрібно змінити його на Rectilinear шаблон заповненнÑ?"
-
-#: src/slic3r/GUI/Tab.cpp:1388
-msgid "Temperature "
-msgstr "Температура "
-
-#: src/slic3r/GUI/Tab.cpp:1394
-msgid "Bed"
-msgstr "Полотно"
-
-#: src/slic3r/GUI/Tab.cpp:1399
-msgid "Cooling"
-msgstr "ОхолодженнÑ"
-
-#: src/slic3r/GUI/Tab.cpp:1400 src/libslic3r/PrintConfig.cpp:1333
-#: src/libslic3r/PrintConfig.cpp:2212
-msgid "Enable"
-msgstr "Увімкнути"
-
-#: src/slic3r/GUI/Tab.cpp:1411
-msgid "Fan settings"
-msgstr "ÐÐ°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð²ÐµÐ½Ñ‚Ð¸Ð»Ñтора"
-
-#: src/slic3r/GUI/Tab.cpp:1412
-msgid "Fan speed"
-msgstr "ШвидкіÑть вентилÑтора"
-
-#: src/slic3r/GUI/Tab.cpp:1420
-msgid "Cooling thresholds"
-msgstr "Пороги охолодженнÑ"
-
-#: src/slic3r/GUI/Tab.cpp:1426
-msgid "Filament properties"
-msgstr "ВлаÑтивоÑті філаменту"
-
-#: src/slic3r/GUI/Tab.cpp:1430
-msgid "Print speed override"
-msgstr "ÐŸÐµÑ€ÐµÐ²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÑˆÐ²Ð¸Ð´ÐºÐ¾Ñті друку"
-
-#: src/slic3r/GUI/Tab.cpp:1440
-msgid "Toolchange parameters with single extruder MM printers"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1455
-msgid "Ramming settings"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1470 src/slic3r/GUI/Tab.cpp:1846
-msgid "Custom G-code"
-msgstr "КориÑтувацький G-код"
-
-#: src/slic3r/GUI/Tab.cpp:1471 src/slic3r/GUI/Tab.cpp:1847
-#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:1833
-msgid "Start G-code"
-msgstr "Початок G-коду"
-
-#: src/slic3r/GUI/Tab.cpp:1477 src/slic3r/GUI/Tab.cpp:1853
-#: src/libslic3r/PrintConfig.cpp:333 src/libslic3r/PrintConfig.cpp:344
-msgid "End G-code"
-msgstr "Ð—Ð°ÐºÑ–Ð½Ñ‡ÐµÐ½Ð½Ñ G-коду"
-
-#: src/slic3r/GUI/Tab.cpp:1588 src/slic3r/GUI/Tab.cpp:1642
-msgid " Browse "
-msgstr " ПереглÑнути "
-
-#: src/slic3r/GUI/Tab.cpp:1605 src/slic3r/GUI/Tab.cpp:1788
-msgid "Test"
-msgstr "Перевірити"
-
-#: src/slic3r/GUI/Tab.cpp:1615
-msgid "Could not get a valid Printer Host reference"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1621 src/slic3r/GUI/Tab.cpp:1801
-msgid "Success!"
-msgstr "УÑпіх!"
-
-#: src/slic3r/GUI/Tab.cpp:1636
-msgid "HTTPS CA file is optional. It is only needed if you use HTTPS with a self-signed certificate."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1648
-msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1649
-msgid "Open CA certificate file"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1676
-msgid ""
-"HTTPS CA File:\n"
-"\tOn this system, Slic3r uses HTTPS certificates from the system Certificate Store or Keychain.\n"
-"\tTo use a custom CA file, please import your CA file into Certificate Store / Keychain."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1713 src/slic3r/GUI/Tab.cpp:1912
-msgid "Size and coordinates"
-msgstr "Розмір і координати"
-
-#: src/slic3r/GUI/Tab.cpp:1717 src/slic3r/GUI/Tab.cpp:1916
-#: src/slic3r/GUI/Tab.cpp:2792
-msgid " Set "
-msgstr " Ð’Ñтановити "
-
-#: src/slic3r/GUI/Tab.cpp:1740
-msgid "Capabilities"
-msgstr "МожливоÑті"
-
-#: src/slic3r/GUI/Tab.cpp:1745
-msgid "Number of extruders of the printer."
-msgstr "КількіÑть екÑтрудерів у принтері."
-
-#: src/slic3r/GUI/Tab.cpp:1773
-msgid "USB/Serial connection"
-msgstr "USB/поÑлідовне з'єднаннÑ"
-
-#: src/slic3r/GUI/Tab.cpp:1774 src/libslic3r/PrintConfig.cpp:1660
-msgid "Serial port"
-msgstr "ПоÑлідовний порт"
-
-#: src/slic3r/GUI/Tab.cpp:1779
-msgid "Rescan serial ports"
-msgstr "Сканувати ще раз поÑлідовні порти"
-
-#: src/slic3r/GUI/Tab.cpp:1801
-msgid "Connection to printer works correctly."
-msgstr "ÐŸÑ–Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ принтера працює коректно."
-
-#: src/slic3r/GUI/Tab.cpp:1804
-msgid "Connection failed."
-msgstr "ÐŸÑ–Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð½Ñ Ð½Ðµ вдалоÑÑ."
-
-#: src/slic3r/GUI/Tab.cpp:1817 src/slic3r/GUI/Tab.cpp:1961
-msgid "Print Host upload"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1859 src/libslic3r/PrintConfig.cpp:92
-msgid "Before layer change G-code"
-msgstr "G-код перед зміною шару"
-
-#: src/slic3r/GUI/Tab.cpp:1865 src/libslic3r/PrintConfig.cpp:1042
-msgid "After layer change G-code"
-msgstr "G-код піÑÐ»Ñ Ð·Ð¼Ñ–Ð½Ð¸ шару"
-
-#: src/slic3r/GUI/Tab.cpp:1871 src/libslic3r/PrintConfig.cpp:2111
-msgid "Tool change G-code"
-msgstr "G-код зміни інÑтрументу"
-
-#: src/slic3r/GUI/Tab.cpp:1877
-msgid "Between objects G-code (for sequential printing)"
-msgstr "G-код між об'єктами (Ð´Ð»Ñ Ð¿Ð¾Ñлідовного друку)"
-
-#: src/slic3r/GUI/Tab.cpp:1938
-msgid "Display"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:1949 src/slic3r/GUI/Tab.cpp:3102
-msgid "Corrections"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2011 src/slic3r/GUI/Tab.cpp:2073
-#: src/libslic3r/PrintConfig.cpp:1088 src/libslic3r/PrintConfig.cpp:1098
-#: src/libslic3r/PrintConfig.cpp:1108 src/libslic3r/PrintConfig.cpp:1121
-#: src/libslic3r/PrintConfig.cpp:1132 src/libslic3r/PrintConfig.cpp:1143
-#: src/libslic3r/PrintConfig.cpp:1154
-msgid "Machine limits"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2025
-msgid "Values in this column are for Full Power mode"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2026
-msgid "Full Power"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2031
-msgid "Values in this column are for Silent mode"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2032
-msgid "Silent"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2040
-msgid "Maximum feedrates"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2045
-msgid "Maximum accelerations"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2052
-msgid "Jerk limits"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2057
-msgid "Minimum feedrates"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2095 src/slic3r/GUI/Tab.cpp:2103
-msgid "Single extruder MM setup"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2104
-msgid "Single extruder multimaterial parameters"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2118 src/libslic3r/GCode/PreviewData.cpp:475
-#, c-format
-msgid "Extruder %d"
-msgstr "ЕкÑтрудер %d"
-
-#: src/slic3r/GUI/Tab.cpp:2125
-msgid "Layer height limits"
-msgstr "Межі виÑоти шару"
-
-#: src/slic3r/GUI/Tab.cpp:2130
-msgid "Position (for multi-extruder printers)"
-msgstr "ÐŸÐ¾Ð·Ð¸Ñ†Ñ–Ñ (Ð´Ð»Ñ Ð¼ÑƒÐ»ÑŒÑ‚Ð¸-екÑтрудерних принтерів)"
-
-#: src/slic3r/GUI/Tab.cpp:2133
-msgid "Retraction"
-msgstr "ПерериваннÑ"
-
-#: src/slic3r/GUI/Tab.cpp:2136
-msgid "Only lift Z"
-msgstr "Межі піднÑÑ‚Ñ‚Ñ Z"
-
-#: src/slic3r/GUI/Tab.cpp:2149
-msgid "Retraction when tool is disabled (advanced settings for multi-extruder setups)"
-msgstr "ÐŸÐµÑ€ÐµÑ€Ð¸Ð²Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¸ відключенні інÑтрумента (додаткові Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð´Ð»Ñ Ð½Ð°Ð»Ð°Ð³Ð¾Ð´Ð¶ÐµÐ½Ð½Ñ Ð¼ÑƒÐ»ÑŒÑ‚Ð¸-екÑтрудерів)"
-
-#: src/slic3r/GUI/Tab.cpp:2153
-msgid "Preview"
-msgstr "Попередній переглÑд"
-
-#: src/slic3r/GUI/Tab.cpp:2284
-msgid ""
-"The Wipe option is not available when using the Firmware Retraction mode.\n"
-"\n"
-"Shall I disable it in order to enable Firmware Retraction?"
-msgstr ""
-"Параметр «ОчиÑтити» недоÑтупний при викориÑтанні режиму програмного перериваннÑ.\n"
-"\n"
-"Відключити його Ð´Ð»Ñ ÑƒÐ²Ñ–Ð¼ÐºÐ½ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾Ð³Ñ€Ð°Ð¼Ð½Ð¾Ð³Ð¾ перериваннÑ?"
-
-#: src/slic3r/GUI/Tab.cpp:2286
-msgid "Firmware Retraction"
-msgstr "Програмне перериваннÑ"
-
-#: src/slic3r/GUI/Tab.cpp:2565
-#, c-format
-msgid "Default preset (%s)"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2566
-#, c-format
-msgid "Preset (%s)"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2583
-msgid "has the following unsaved changes:"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2586
-msgid "is not compatible with printer"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2587
-msgid "is not compatible with print profile"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2589
-msgid "and it has the following unsaved changes:"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2592
-msgid "Discard changes and continue anyway?"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2593
-msgid "Unsaved Changes"
-msgstr "Ðезбережені зміни"
-
-#: src/slic3r/GUI/Tab.cpp:2604
-msgid "It's impossible to print multi-part object(s) with SLA technology."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2605
-msgid "Please check your object list before preset changing."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2699
-msgid "The supplied name is empty. It can't be saved."
-msgstr "Ðадане ім'Ñ Ð¿Ð¾Ñ€Ð¾Ð¶Ð½Ñ”. Ðе вдаєтьÑÑ Ð·Ð±ÐµÑ€ÐµÐ³Ñ‚Ð¸."
-
-#: src/slic3r/GUI/Tab.cpp:2704
-msgid "Cannot overwrite a system profile."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2708
-msgid "Cannot overwrite an external profile."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2734
-msgid "remove"
-msgstr "переміÑтити"
-
-#: src/slic3r/GUI/Tab.cpp:2734
-msgid "delete"
-msgstr "видалити"
-
-#: src/slic3r/GUI/Tab.cpp:2735
-msgid "Are you sure you want to "
-msgstr "Ви впевнені, що хочете "
-
-#: src/slic3r/GUI/Tab.cpp:2735
-msgid " the selected preset?"
-msgstr " вибране налаштуваннÑ?"
-
-#: src/slic3r/GUI/Tab.cpp:2736
-msgid "Remove"
-msgstr "ПереміÑтити"
-
-#: src/slic3r/GUI/Tab.cpp:2737
-msgid " Preset"
-msgstr " ÐалаштуваннÑ"
-
-#: src/slic3r/GUI/Tab.cpp:2791
-msgid "All"
-msgstr "Ð’ÑÑ–"
-
-#: src/slic3r/GUI/Tab.cpp:2869
-msgid "LOCKED LOCK;indicates that the settings are the same as the system values for the current option group"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2872
-msgid ""
-"UNLOCKED LOCK;indicates that some settings were changed and are not equal to the system values for the current option group.\n"
-"Click the UNLOCKED LOCK icon to reset all settings for current option group to the system values."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2878
-msgid ""
-"WHITE BULLET;for the left button: \tindicates a non-system preset,\n"
-"for the right button: \tindicates that the settings hasn't been modified."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2882
-msgid ""
-"BACK ARROW;indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n"
-"Click the BACK ARROW icon to reset all settings for the current option group to the last saved preset."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2908
-msgid "LOCKED LOCK icon indicates that the settings are the same as the system values for the current option group"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2910
-msgid ""
-"UNLOCKED LOCK icon indicates that some settings were changed and are not equal to the system values for the current option group.\n"
-"Click to reset all settings for current option group to the system values."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2913
-msgid "WHITE BULLET icon indicates a non system preset."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2916
-msgid "WHITE BULLET icon indicates that the settings are the same as in the last saved preset for the current option group."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2918
-msgid ""
-"BACK ARROW icon indicates that the settings were changed and are not equal to the last saved preset for the current option group.\n"
-"Click to reset all settings for the current option group to the last saved preset."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2924
-msgid "LOCKED LOCK icon indicates that the value is the same as the system value."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2925
-msgid ""
-"UNLOCKED LOCK icon indicates that the value was changed and is not equal to the system value.\n"
-"Click to reset current value to the system value."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2931
-msgid "WHITE BULLET icon indicates that the value is the same as in the last saved preset."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2932
-msgid ""
-"BACK ARROW icon indicates that the value was changed and is not equal to the last saved preset.\n"
-"Click to reset current value to the last saved preset."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3031
-msgid " as:"
-msgstr " Ñк:"
-
-#: src/slic3r/GUI/Tab.cpp:3075
-msgid "the following postfix are not allowed:"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3079
-msgid "The supplied name is not available."
-msgstr "Ðадане ім'Ñ Ð½ÐµÐ´Ñ–Ð¹Ñне."
-
-#: src/slic3r/GUI/Tab.cpp:3092
-msgid "Material"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3094 src/slic3r/GUI/Tab.cpp:3176
-msgid "Layers"
-msgstr "Шари"
-
-#: src/slic3r/GUI/Tab.cpp:3098
-msgid "Exposure"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3183
-msgid "Support head"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3188
-msgid "Support pillar"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3196
-msgid "Connection of the support sticks and junctions"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:3200
-msgid "Automatic generation"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.hpp:293 src/slic3r/GUI/Tab.hpp:381
-msgid "Print Settings"
-msgstr "Параметри друку"
-
-#: src/slic3r/GUI/Tab.hpp:311
-msgid "Filament Settings"
-msgstr "Параметри філаменту"
-
-#: src/slic3r/GUI/Tab.hpp:344
-msgid "Printer Settings"
-msgstr "Параметри принтеру"
-
-#: src/slic3r/GUI/Tab.hpp:367
-msgid "Material Settings"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.hpp:393
-msgid "Save preset"
-msgstr "Зберегти налаштуваннÑ"
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
-msgid "Update available"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
-msgid "New version of Slic3r PE is available"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:35
-msgid "To download, follow the link below."
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:42
-msgid "Current version:"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:44
-msgid "New version:"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:52
-msgid "Don't notify about new releases any more"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:70 src/slic3r/GUI/UpdateDialogs.cpp:162
-msgid "Configuration update"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:70
-msgid "Configuration update is available"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:73
-msgid ""
-"Would you like to install it?\n"
-"\n"
-"Note that a full configuration snapshot will be created first. It can then be restored at any time should there be a problem with the new version.\n"
-"\n"
-"Updated configuration bundles:"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
-msgid "Slic3r incompatibility"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
-msgid "Slic3r configuration is incompatible"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:112
-msgid ""
-"This version of Slic3r PE is not compatible with currently installed configuration bundles.\n"
-"This probably happened as a result of running an older Slic3r PE after using a newer one.\n"
-"\n"
-"You may either exit Slic3r and try again with a newer version, or you may re-run the initial configuration. Doing so will create a backup snapshot of the existing configuration before installing files compatible with this Slic3r.\n"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:121
-#, c-format
-msgid "This Slic3r PE version: %s"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:126
-msgid "Incompatible bundles:"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:142
-msgid "Exit Slic3r"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:145
-msgid "Re-configure"
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:166
-#, c-format
-msgid ""
-"Slic3r PE now uses an updated configuration structure.\n"
-"\n"
-"So called 'System presets' have been introduced, which hold the built-in default settings for various printers. These System presets cannot be modified, instead, users now may create their own presets inheriting settings from one of the System presets.\n"
-"An inheriting preset may either inherit a particular value from its parent or override it with a customized value.\n"
-"\n"
-"Please proceed with the %s that follows to set up the new presets and to choose whether to enable automatic preset updates."
-msgstr ""
-
-#: src/slic3r/GUI/UpdateDialogs.cpp:182
-msgid "For more information please visit our wiki page:"
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:10
-msgid "Ramming customization"
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:36
-msgid ""
-"Ramming denotes the rapid extrusion just before a tool change in a single-extruder MM printer. Its purpose is to properly shape the end of the unloaded filament so it does not prevent insertion of the new filament and can itself be reinserted later. This phase is important and different materials can require different extrusion speeds to get the good shape. For this reason, the extrusion rates during ramming are adjustable.\n"
-"\n"
-"This is an expert-level setting, incorrect adjustment will likely lead to jams, extruder wheel grinding into filament etc."
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78
-msgid "Total ramming time"
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:80
-msgid "Total rammed volume"
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:84
-msgid "Ramming line width"
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:86
-msgid "Ramming line spacing"
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:138
-msgid "Wipe tower - Purging volume adjustment"
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:219
-msgid "Here you can adjust required purging volume (mm³) for any given pair of tools."
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:220
-msgid "Extruder changed to"
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:228
-msgid "unloaded"
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:229
-msgid "loaded"
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:234
-msgid "Tool #"
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:241
-msgid "Total purging volume is calculated by summing two values below, depending on which tools are loaded/unloaded."
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:242
-msgid "Volume to purge (mm³) when the filament is being"
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:256
-msgid "From"
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:321
-msgid ""
-"Switching to simple settings will discard changes done in the advanced mode!\n"
-"\n"
-"Do you want to proceed?"
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
-msgid "Show simplified settings"
-msgstr ""
-
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
-msgid "Show advanced settings"
-msgstr ""
-
-#: src/slic3r/Utils/OctoPrint.cpp:65
-#, c-format
-msgid "Mismatched type of print host: %s"
-msgstr ""
-
-#: src/slic3r/Utils/OctoPrint.cpp:80
-msgid "Connection to OctoPrint works correctly."
-msgstr "ÐŸÑ–Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð½Ñ Ð´Ð¾ OctoPrint працює правильно."
-
-#: src/slic3r/Utils/OctoPrint.cpp:86
-msgid "Could not connect to OctoPrint"
-msgstr ""
-
-#: src/slic3r/Utils/OctoPrint.cpp:86
-msgid "Note: OctoPrint version at least 1.1.0 is required."
-msgstr ""
-
-#: src/slic3r/Utils/OctoPrint.cpp:181
-msgid "Connection to Prusa SLA works correctly."
-msgstr ""
-
-#: src/slic3r/Utils/OctoPrint.cpp:186
-msgid "Could not connect to Prusa SLA"
-msgstr ""
-
-#: src/slic3r/Utils/PresetUpdater.cpp:571
-#, c-format
-msgid "requires min. %s and max. %s"
-msgstr ""
-
-#: src/slic3r/Utils/PresetUpdater.cpp:576
-#, c-format
-msgid "requires min. %s"
-msgstr ""
-
-#: src/slic3r/Utils/PresetUpdater.cpp:578
-#, c-format
-msgid "requires max. %s"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:219
-#: src/slic3r/Utils/FixModelByWin10.cpp:349
-msgid "Exporting the source model"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:235
-msgid "Failed loading the input model."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:242
-msgid "Repairing the model by the Netfabb service"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:248
-msgid "Mesh repair failed."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:251
-#: src/slic3r/Utils/FixModelByWin10.cpp:367
-msgid "Loading the repaired model"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:263
-#: src/slic3r/Utils/FixModelByWin10.cpp:270
-#: src/slic3r/Utils/FixModelByWin10.cpp:302
-msgid "Saving mesh into the 3MF container failed."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:334
-msgid "Model fixing"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:335
-msgid "Exporting model..."
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:357
-msgid "Export of a temporary 3mf file failed"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:372
-msgid "Import of the repaired 3mf file failed"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:375
-msgid "Model repair finished"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:379
-msgid "Model repair canceled"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
-msgid "Model repaired successfully"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
-msgid "Model Repair by the Netfabb service"
-msgstr ""
-
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
-msgid "Model repair failed: \n"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1175
-msgid "All objects are outside of the print volume."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1201
-msgid "Some objects are too close; your extruder will collide with them."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1216
-msgid "Some objects are too tall and cannot be printed without extruder collisions."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1226
-msgid "The Spiral Vase option can only be used when printing a single object."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1228
-msgid "The Spiral Vase option can only be used when printing single material objects."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1234
-msgid "All extruders must have the same diameter for single extruder multimaterial printer."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1239
-msgid "The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter and Repetier G-code flavors."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1241
-msgid "The Wipe Tower is currently only supported with the relative extruder addressing (use_relative_e_distances=1)."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1253
-msgid "The Wipe Tower is only supported for multiple objects if they have equal layer heigths"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1255
-msgid "The Wipe Tower is only supported for multiple objects if they are printed over an equal number of raft layers"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1257
-msgid "The Wipe Tower is only supported for multiple objects if they are printed with the same support_material_contact_distance"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1259
-msgid "The Wipe Tower is only supported for multiple objects if they are sliced equally."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1281
-msgid "The Wipe tower is only supported if all objects have the same layer height profile"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1290
-msgid "The supplied settings will cause an empty print."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1307
-msgid "One or more object were assigned an extruder that the printer does not have."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1316
-msgid "Printing with multiple extruders of differing nozzle diameters. If support is to be printed with the current extruder (support_material_extruder == 0 or support_material_interface_extruder == 0), all nozzles have to be of the same diameter."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1324
-msgid "For the Wipe Tower to work with the soluble supports, the support layers need to be synchronized with the object layers."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1328
-msgid "The Wipe Tower currently supports the non-soluble supports only if they are printed with the current extruder without triggering a tool change. (both support_material_extruder and support_material_interface_extruder need to be set to 0)."
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1335
-msgid "first_layer_height"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1350
-msgid "First layer height can't be greater than nozzle diameter"
-msgstr ""
-
-#: src/libslic3r/Print.cpp:1354
-msgid "Layer height can't be greater than nozzle diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:32 src/libslic3r/PrintConfig.cpp:33
-msgid "Printer technology"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:41
-msgid "Bed shape"
-msgstr "Форма полотна"
-
-#: src/libslic3r/PrintConfig.cpp:48
-msgid "This setting controls the height (and thus the total number) of the slices/layers. Thinner layers give better accuracy but take more time to print."
-msgstr "Цей параметр визначає виÑоту (Ñ–, таким чином, загальну кількіÑть) шарів. Тонкі шари забезпечують більшу точніÑть, але Ð´Ð»Ñ Ð´Ñ€ÑƒÐºÑƒ потрібно більше чаÑу."
-
-#: src/libslic3r/PrintConfig.cpp:56
-msgid "Max print height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:57
-msgid "Set this to the maximum height that can be reached by your extruder while printing."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:73
-msgid "Avoid crossing perimeters"
-msgstr "Уникати Ð¿ÐµÑ€ÐµÑ‚Ð¸Ð½Ð°Ð½Ð½Ñ Ð¿ÐµÑ€Ð¸Ð¼ÐµÑ‚Ñ€Ñ–Ð²"
-
-#: src/libslic3r/PrintConfig.cpp:74
-msgid "Optimize travel moves in order to minimize the crossing of perimeters. This is mostly useful with Bowden extruders which suffer from oozing. This feature slows down both the print and the G-code generation."
-msgstr "Оптимізуйте рухи переÑувань, щоб мінімізувати перетин периметрів. Ð’ оÑновному це кориÑно Ð´Ð»Ñ ÐµÐºÑтрудерів Bowden, Ñкі Ñтраждають від протіканнÑ. Ð¦Ñ Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ ÑƒÐ¿Ð¾Ð²Ñ–Ð»ÑŒÐ½ÑŽÑ” Ñк друк, так Ñ– генерацію G-коду."
-
-#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:2080
-msgid "Other layers"
-msgstr "Інші шари"
-
-#: src/libslic3r/PrintConfig.cpp:83
-msgid "Bed temperature for layers after the first one. Set this to zero to disable bed temperature control commands in the output."
-msgstr "Температура полотна Ð´Ð»Ñ Ð¾Ñтанніх шарів піÑÐ»Ñ Ð¿ÐµÑ€ÑˆÐ¾Ð³Ð¾. УÑтановіть 0, щоб відключити команди ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐ¼Ð¿ÐµÑ€Ð°Ñ‚ÑƒÑ€Ð¾ÑŽ полотна на виході."
-
-#: src/libslic3r/PrintConfig.cpp:86
-msgid "Bed temperature"
-msgstr "Температура полотна"
-
-#: src/libslic3r/PrintConfig.cpp:93
-msgid "This custom code is inserted at every layer change, right before the Z move. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]."
-msgstr "Цей кориÑтувацький код вÑтавлÑєтьÑÑ Ð¿Ñ€Ð¸ кожній зміні шару перед початком Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Z. Зауважте, що ви можете викориÑтовувати змінні-заповнювачі Ð´Ð»Ñ Ð²ÑÑ–Ñ… параметрів Slic3r, а також [layer_num] Ñ– [layer_z]."
-
-#: src/libslic3r/PrintConfig.cpp:104
-msgid "Between objects G-code"
-msgstr "G-код між об'єктами"
-
-#: src/libslic3r/PrintConfig.cpp:105
-msgid "This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want."
-msgstr "Цей код вÑтавлÑєтьÑÑ Ð¼Ñ–Ð¶ об'єктами при викориÑтанні поÑлідовного друку. За замовчуваннÑм екÑтрудер Ñ– температура полотна ÑкидаютьÑÑ Ð·Ð° допомогою команди non-wait; однак, Ñкщо в цьому кориÑтувальному коді виÑвлÑютьÑÑ M104, M109, M140 або M190, Slic3r не додаватиме команди температури. Зверніть увагу, що ви можете викориÑтовувати змінні-заповнювачі Ð´Ð»Ñ Ð²ÑÑ–Ñ… параметрів Slic3r, то ж ви можете вÑтавити команду \"M109 S [first_layer_temperature]\" де завгодно."
-
-#: src/libslic3r/PrintConfig.cpp:114
-msgctxt "Layers"
-msgid "Bottom"
-msgstr "Ðижні"
-
-#: src/libslic3r/PrintConfig.cpp:116
-msgid "Number of solid layers to generate on bottom surfaces."
-msgstr "КількіÑть Ñуцільних шарів, генерованих на нижніх поверхнÑÑ…."
-
-#: src/libslic3r/PrintConfig.cpp:118
-msgid "Bottom solid layers"
-msgstr "Ðижні Ñуцільні шари"
-
-#: src/libslic3r/PrintConfig.cpp:123
-msgid "Bridge"
-msgstr "МіÑÑ‚"
-
-#: src/libslic3r/PrintConfig.cpp:124
-msgid "This is the acceleration your printer will use for bridges. Set zero to disable acceleration control for bridges."
-msgstr "Це приÑкореннÑ, Ñке ваш принтер викориÑтовуватиме Ð´Ð»Ñ Ð¼Ð¾Ñтів. Ð’Ñтановити 0, щоб відключити ÑƒÐ¿Ñ€Ð°Ð²Ð»Ñ–Ð½Ð½Ñ Ð¿Ñ€Ð¸ÑкореннÑм Ð´Ð»Ñ Ð¼Ð¾Ñтів."
-
-#: src/libslic3r/PrintConfig.cpp:126 src/libslic3r/PrintConfig.cpp:274
-#: src/libslic3r/PrintConfig.cpp:819 src/libslic3r/PrintConfig.cpp:941
-#: src/libslic3r/PrintConfig.cpp:1100 src/libslic3r/PrintConfig.cpp:1145
-#: src/libslic3r/PrintConfig.cpp:1156 src/libslic3r/PrintConfig.cpp:1386
-msgid "mm/s²"
-msgstr "мм/Ѳ"
-
-#: src/libslic3r/PrintConfig.cpp:133
-msgid "Bridging angle"
-msgstr "Кут моÑта"
-
-#: src/libslic3r/PrintConfig.cpp:135
-msgid "Bridging angle override. If left to zero, the bridging angle will be calculated automatically. Otherwise the provided angle will be used for all bridges. Use 180° for zero angle."
-msgstr "Зміна кута моÑту. Якщо вÑтановити на 0, кут моÑтів буде розрахований автоматично. Інакше передбачений кут буде викориÑтаний Ð´Ð»Ñ Ð²ÑÑ–Ñ… моÑтів. ВикориÑтовуйте 180° Ð´Ð»Ñ Ð½ÑƒÐ»ÑŒÐ¾Ð²Ð¾Ð³Ð¾ кута."
-
-#: src/libslic3r/PrintConfig.cpp:138 src/libslic3r/PrintConfig.cpp:734
-#: src/libslic3r/PrintConfig.cpp:1637 src/libslic3r/PrintConfig.cpp:1648
-#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:2063
-#: src/libslic3r/PrintConfig.cpp:2578
-msgid "°"
-msgstr "°"
-
-#: src/libslic3r/PrintConfig.cpp:145
-msgid "Bridges fan speed"
-msgstr "ШвидкіÑть вентилÑтора Ð´Ð»Ñ Ð¼Ð¾Ñтів"
-
-#: src/libslic3r/PrintConfig.cpp:146
-msgid "This fan speed is enforced during all bridges and overhangs."
-msgstr "Ð¦Ñ ÑˆÐ²Ð¸Ð´ÐºÑ–Ñть вентилÑтора виконуєтьÑÑ Ð´Ð»Ñ Ð²ÑÑ–Ñ… моÑтів Ñ– виÑтупів."
-
-#: src/libslic3r/PrintConfig.cpp:147 src/libslic3r/PrintConfig.cpp:747
-#: src/libslic3r/PrintConfig.cpp:1165 src/libslic3r/PrintConfig.cpp:1232
-#: src/libslic3r/PrintConfig.cpp:1517
-msgid "%"
-msgstr "%"
-
-#: src/libslic3r/PrintConfig.cpp:155
-msgid "Bridge flow ratio"
-msgstr "Ð¡Ð¿Ñ–Ð²Ð²Ñ–Ð´Ð½Ð¾ÑˆÐµÐ½Ð½Ñ Ð¼Ð¾Ñтового потоку"
-
-#: src/libslic3r/PrintConfig.cpp:157
-msgid "This factor affects the amount of plastic for bridging. You can decrease it slightly to pull the extrudates and prevent sagging, although default settings are usually good and you should experiment with cooling (use a fan) before tweaking this."
-msgstr "Цей фактор впливає на кількіÑть плаÑтику Ð´Ð»Ñ Ð¼Ð¾Ñтів. Ви можете трохи зменшити його, щоб витÑгнути екÑтрудати та не допуÑтити провиÑаннÑ, хоча Ñтандартні Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð°Ð·Ð²Ð¸Ñ‡Ð°Ð¹ добрі, тому ви маете по-екÑпериментувати з охолодженнÑм (викориÑтовуйте вентилÑтор), перш ніж Ñ—Ñ… налаштувати."
-
-#: src/libslic3r/PrintConfig.cpp:168
-msgid "Bridges"
-msgstr "МоÑти"
-
-#: src/libslic3r/PrintConfig.cpp:170
-msgid "Speed for printing bridges."
-msgstr "ШвидкіÑть друку моÑтів."
-
-#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:564
-#: src/libslic3r/PrintConfig.cpp:573 src/libslic3r/PrintConfig.cpp:583
-#: src/libslic3r/PrintConfig.cpp:592 src/libslic3r/PrintConfig.cpp:623
-#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:884
-#: src/libslic3r/PrintConfig.cpp:1013 src/libslic3r/PrintConfig.cpp:1090
-#: src/libslic3r/PrintConfig.cpp:1110 src/libslic3r/PrintConfig.cpp:1123
-#: src/libslic3r/PrintConfig.cpp:1134 src/libslic3r/PrintConfig.cpp:1189
-#: src/libslic3r/PrintConfig.cpp:1252 src/libslic3r/PrintConfig.cpp:1418
-#: src/libslic3r/PrintConfig.cpp:1601 src/libslic3r/PrintConfig.cpp:1611
-#: src/libslic3r/PrintConfig.cpp:2041 src/libslic3r/PrintConfig.cpp:2160
-msgid "mm/s"
-msgstr "мм/Ñ"
-
-#: src/libslic3r/PrintConfig.cpp:178
-msgid "Brim width"
-msgstr "Ширина краю"
-
-#: src/libslic3r/PrintConfig.cpp:179
-msgid "Horizontal width of the brim that will be printed around each object on the first layer."
-msgstr "Горизонтальна ширина краю, Ñка буде надрукована навколо кожного об'єкта на першому шарі."
-
-#: src/libslic3r/PrintConfig.cpp:187
-msgid "Clip multi-part objects"
-msgstr "Обрізати об'єкти, що ÑкладаютьÑÑ Ð· кількох чаÑтин"
-
-#: src/libslic3r/PrintConfig.cpp:188
-msgid "When printing multi-material objects, this settings will make slic3r to clip the overlapping object parts one by the other (2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc)."
-msgstr "Під Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ багатоматеріальних об'єктів ці Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð·Ð¼ÑƒÑˆÑƒÑŽÑ‚ÑŒ slic3r обрізати чаÑтини, що перекриваютьÑÑ Ð¾Ð´Ð¸Ð½ одною (друга чаÑтина буде обрізана першою, Ñ‚Ñ€ÐµÑ‚Ñ - першою та другою, тощо)."
-
-#: src/libslic3r/PrintConfig.cpp:196
-msgid "Colorprint height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:197
-msgid "Heights at which a filament change is to occur. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:207
-msgid "Compatible printers condition"
-msgstr "Стан ÑуміÑних принтерів"
-
-#: src/libslic3r/PrintConfig.cpp:208
-msgid "A boolean expression using the configuration values of an active printer profile. If this expression evaluates to true, this profile is considered compatible with the active printer profile."
-msgstr "Логічний вираз, що викориÑтовує Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÐºÐ¾Ð½Ñ„Ñ–Ð³ÑƒÑ€Ð°Ñ†Ñ–Ñ— активного профілю принтера. Якщо цей вираз оцінюєтьÑÑ Ñк Правда, цей профіль вважаєтьÑÑ ÑуміÑним з активним профілем принтера."
-
-#: src/libslic3r/PrintConfig.cpp:220
-msgid "Compatible print profiles condition"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:221
-msgid "A boolean expression using the configuration values of an active print profile. If this expression evaluates to true, this profile is considered compatible with the active print profile."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:235
-msgid "Complete individual objects"
-msgstr "Закінчити окремі об'єкти"
-
-#: src/libslic3r/PrintConfig.cpp:236
-msgid "When printing multiple objects or copies, this feature will complete each object before moving onto next one (and starting it from its bottom layer). This feature is useful to avoid the risk of ruined prints. Slic3r should warn and prevent you from extruder collisions, but beware."
-msgstr "Під Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ декількох об'єктів або копій Ñ†Ñ Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡Ð¸Ñ‚ÑŒ Ð·Ð°Ð²ÐµÑ€ÑˆÐµÐ½Ð½Ñ ÐºÐ¾Ð¶Ð½Ð¾Ð³Ð¾ об'єкту, перш ніж переходити до наÑтупного (Ñ– почине його з нижнього шару). Ð¦Ñ Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ ÐºÐ¾Ñ€Ð¸Ñна Ð´Ð»Ñ ÑƒÐ½Ð¸ÐºÐ½ÐµÐ½Ð½Ñ Ñ€Ð¸Ð·Ð¸ÐºÑƒ зіпÑованих відбитків. Slic3r має попередити та запобігти зіткненню екÑтрудера, але будьте обережні."
-
-#: src/libslic3r/PrintConfig.cpp:245
-msgid "Enable auto cooling"
-msgstr "Увімкнути автоматичне охолодженнÑ"
-
-#: src/libslic3r/PrintConfig.cpp:246
-msgid "This flag enables the automatic cooling logic that adjusts print speed and fan speed according to layer printing time."
-msgstr "Цей прапорець дозволÑÑ” автоматичну логіку охолодженнÑ, Ñка регулює швидкіÑть друку та швидкіÑть вентилÑції відповідно до чаÑу друку шару."
-
-#: src/libslic3r/PrintConfig.cpp:252
-msgid "Cooling tube position"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:253
-msgid "Distance of the center-point of the cooling tube from the extruder tip "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:261
-msgid "Cooling tube length"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:262
-msgid "Length of the cooling tube to limit space for cooling moves inside it "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:271
-msgid "This is the acceleration your printer will be reset to after the role-specific acceleration values are used (perimeter/infill). Set zero to prevent resetting acceleration at all."
-msgstr "Це приÑкореннÑ, на Ñке переключитьÑÑ Ð²Ð°Ñˆ принтер піÑÐ»Ñ Ñ‚Ð¾Ð³Ð¾, Ñк будуть викориÑтані конкретні визначені приÑÐºÐ¾Ñ€ÐµÐ½Ð½Ñ (периметру / заповненнÑ). Ð’Ñтановити 0, щоб запобігти ÑкиданнÑм приÑÐºÐ¾Ñ€ÐµÐ½Ð½Ñ Ð²Ð·Ð°Ð³Ð°Ð»Ñ–."
-
-#: src/libslic3r/PrintConfig.cpp:281
-msgid "Default filament profile"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:282
-msgid "Default filament profile associated with the current printer profile. On selection of the current printer profile, this filament profile will be activated."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:287
-msgid "Default print profile"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:288 src/libslic3r/PrintConfig.cpp:2469
-#: src/libslic3r/PrintConfig.cpp:2479
-msgid "Default print profile associated with the current printer profile. On selection of the current printer profile, this print profile will be activated."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:293
-msgid "Disable fan for the first"
-msgstr "Вимкнути вентилÑтор Ð´Ð»Ñ Ð¿ÐµÑ€ÑˆÐ¾Ð³Ð¾(их)"
-
-#: src/libslic3r/PrintConfig.cpp:294
-msgid "You can set this to a positive value to disable fan at all during the first layers, so that it does not make adhesion worse."
-msgstr "Ви можете вÑтановити це позитивне значеннÑ, щоб взагалі вимкнути вентилÑтор протÑгом друку декількох перших шарів, щоб це не призвело до гіршого зчепленнÑ."
-
-#: src/libslic3r/PrintConfig.cpp:296 src/libslic3r/PrintConfig.cpp:952
-#: src/libslic3r/PrintConfig.cpp:1487 src/libslic3r/PrintConfig.cpp:1691
-#: src/libslic3r/PrintConfig.cpp:1757 src/libslic3r/PrintConfig.cpp:1935
-#: src/libslic3r/PrintConfig.cpp:1985
-msgid "layers"
-msgstr "шару(ів)"
-
-#: src/libslic3r/PrintConfig.cpp:304
-msgid "Don't support bridges"
-msgstr "Ðе підтримувати моÑти"
-
-#: src/libslic3r/PrintConfig.cpp:306
-msgid "Experimental option for preventing support material from being generated under bridged areas."
-msgstr "ЕкÑпериментальний варіант Ð´Ð»Ñ Ð·Ð°Ð¿Ð¾Ð±Ñ–Ð³Ð°Ð½Ð½Ñ ÑƒÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½ÑŽ допоміжного матеріалу в облаÑÑ‚ÑÑ… під моÑтами."
-
-#: src/libslic3r/PrintConfig.cpp:313
-msgid "Distance between copies"
-msgstr "ВідÑтань між копіÑми"
-
-#: src/libslic3r/PrintConfig.cpp:314
-msgid "Distance used for the auto-arrange feature of the plater."
-msgstr "ВідÑтань викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾Ð³Ð¾ Ñ€Ð¾Ð·Ñ‚Ð°ÑˆÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ð»Ð°Ñ‚ÐµÑ€Ñƒ."
-
-#: src/libslic3r/PrintConfig.cpp:322
-msgid "Elephant foot compensation"
-msgstr "Ð—Ñ€Ñ–Ð²Ð½Ð¾Ð²Ð°Ð¶ÐµÐ½Ð½Ñ Ð¡Ñ‚Ð¾Ð¿Ð¸ Ñлона"
-
-#: src/libslic3r/PrintConfig.cpp:324
-msgid "The first layer will be shrunk in the XY plane by the configured value to compensate for the 1st layer squish aka an Elephant Foot effect."
-msgstr "Перший шар буде зменшено в площині XY завдÑки налаштованому значенню, щоб компенÑувати ефект Ðоги Слона Ð´Ð»Ñ 1-го шару."
-
-#: src/libslic3r/PrintConfig.cpp:334
-msgid "This end procedure is inserted at the end of the output file. Note that you can use placeholder variables for all Slic3r settings."
-msgstr "Ð¦Ñ ÐºÑ–Ð½Ñ†ÐµÐ²Ð° процедура вÑтавлÑєтьÑÑ Ð² кінці вихідного файлу. Зауважте, що ви можете викориÑтовувати заповнювачі змінних Ð´Ð»Ñ Ð²ÑÑ–Ñ… параметрів Slic3r."
-
-#: src/libslic3r/PrintConfig.cpp:345
-msgid "This end procedure is inserted at the end of the output file, before the printer end gcode. Note that you can use placeholder variables for all Slic3r settings. If you have multiple extruders, the gcode is processed in extruder order."
-msgstr "Ð¦Ñ ÐºÑ–Ð½Ñ†ÐµÐ²Ð° процедура вÑтавлÑєтьÑÑ Ð² кінці вихідного файлу перед кінцевим кодом принтера. Зауважте, що ви можете викориÑтовувати заповнювачі змінних Ð´Ð»Ñ Ð²ÑÑ–Ñ… параметрів Slic3r. Якщо у Ð²Ð°Ñ Ñ” кілька екÑтрудерів, G-code оброблÑєтьÑÑ Ð² порÑдку екÑтрудерів."
-
-#: src/libslic3r/PrintConfig.cpp:356
-msgid "Ensure vertical shell thickness"
-msgstr "Перевірте товщину вертикальної оболонки"
-
-#: src/libslic3r/PrintConfig.cpp:358
-msgid "Add solid infill near sloping surfaces to guarantee the vertical shell thickness (top+bottom solid layers)."
-msgstr "Додайте Ñуцільні наповнювачі Ð±Ñ–Ð»Ñ Ð½Ð°Ñ…Ð¸Ð»ÐµÐ½Ð¸Ñ… поверхонь, щоб гарантувати товщину вертикальної оболонки (верхній Ñ– нижній Ñуцільні шари)."
-
-#: src/libslic3r/PrintConfig.cpp:365
-msgid "Top/bottom fill pattern"
-msgstr "Верхній/нижній шаблон наповненнÑ"
-
-#: src/libslic3r/PrintConfig.cpp:367
-msgid "Fill pattern for top/bottom infill. This only affects the external visible layer, and not its adjacent solid shells."
-msgstr "Шаблон Ð´Ð»Ñ Ð²ÐµÑ€Ñ…Ð½ÑŒÐ¾Ð³Ð¾/нижнього наповненнÑ. Це впливає лише на зовнішній видимий шар, а не на ÑуÑідні Ñуцільні оболонки."
-
-#: src/libslic3r/PrintConfig.cpp:376 src/libslic3r/PrintConfig.cpp:800
-#: src/libslic3r/PrintConfig.cpp:2021
-msgid "Rectilinear"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:377 src/libslic3r/PrintConfig.cpp:806
-msgid "Concentric"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:378 src/libslic3r/PrintConfig.cpp:810
-msgid "Hilbert Curve"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:379 src/libslic3r/PrintConfig.cpp:811
-msgid "Archimedean Chords"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:380 src/libslic3r/PrintConfig.cpp:812
-msgid "Octagram Spiral"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:386 src/libslic3r/PrintConfig.cpp:397
-msgid "External perimeters"
-msgstr "Зовнішні периметри"
-
-#: src/libslic3r/PrintConfig.cpp:388
-msgid "Set this to a non-zero value to set a manual extrusion width for external perimeters. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%), it will be computed over layer height."
-msgstr "Ð’Ñтановіть Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð½ÐµÐ½ÑƒÐ»ÑŒÐ¾Ð²Ð¸Ð¼, щоб вÑтановити ручну ширину екÑтрузії Ð´Ð»Ñ Ð·Ð¾Ð²Ð½Ñ–ÑˆÐ½Ñ–Ñ… периметрів. Якщо залишити 0, ширина екÑтрузії за замовчуваннÑм буде викориÑтана, Ñкщо вÑтановлено, інакше буде викориÑтано 1,125 x діаметр Ñопла. Якщо він виражений у відÑотках (наприклад, 200%), він буде обчиÑлюватиÑÑ Ð·Ð° виÑотою шару."
-
-#: src/libslic3r/PrintConfig.cpp:391 src/libslic3r/PrintConfig.cpp:841
-#: src/libslic3r/PrintConfig.cpp:975 src/libslic3r/PrintConfig.cpp:1408
-#: src/libslic3r/PrintConfig.cpp:1769 src/libslic3r/PrintConfig.cpp:1958
-#: src/libslic3r/PrintConfig.cpp:2129
-msgid "mm or % (leave 0 for default)"
-msgstr "мм або % (залиште 0 за замовчаннÑм)"
-
-#: src/libslic3r/PrintConfig.cpp:399
-msgid "This separate setting will affect the speed of external perimeters (the visible ones). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto."
-msgstr "Цей окремий параметр впливає на швидкіÑть зовнішніх периметрів (видимих). Якщо вона виражена у відÑотках (наприклад: 80%), вона буде розрахована на Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ ÑˆÐ²Ð¸Ð´ÐºÐ¾Ñті периметра вище. Ð’Ñтановити 0 Ð´Ð»Ñ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾Ð³Ð¾ викориÑтаннÑ."
-
-#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:864
-#: src/libslic3r/PrintConfig.cpp:1725 src/libslic3r/PrintConfig.cpp:1780
-#: src/libslic3r/PrintConfig.cpp:2006 src/libslic3r/PrintConfig.cpp:2142
-msgid "mm/s or %"
-msgstr "мм/Ñ Ð°Ð±Ð¾ %"
-
-#: src/libslic3r/PrintConfig.cpp:409
-msgid "External perimeters first"
-msgstr "Спочатку зовнішні периметри"
-
-#: src/libslic3r/PrintConfig.cpp:411
-msgid "Print contour perimeters from the outermost one to the innermost one instead of the default inverse order."
-msgstr "Друкувати контури периметра від найзовнішнього до найвнутрішнього, заміÑть інверÑного порÑдку за замовчаннÑм."
-
-#: src/libslic3r/PrintConfig.cpp:418
-msgid "Extra perimeters if needed"
-msgstr "Додаткові периметри, Ñкщо необхідно"
-
-#: src/libslic3r/PrintConfig.cpp:420
-#, no-c-format
-msgid "Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r keeps adding perimeters, until more than 70% of the loop immediately above is supported."
-msgstr "За необхідноÑті додайте периметри, щоб уникнути прогалин у похилих Ñтінах. Slic3r продовжує додавати периметри, поки підтримуєтьÑÑ Ð±Ñ–Ð»ÑŒÑˆÐµ 70% петель безпоÑередньо вище."
-
-#: src/libslic3r/PrintConfig.cpp:431
-msgid "The extruder to use (unless more specific extruder settings are specified). This value overrides perimeter and infill extruders, but not the support extruders."
-msgstr "ВикориÑтовуваний екÑтрудер (Ñкщо не вказано більш конкретні параметри екÑтрудера). Це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ²Ð¸Ð·Ð½Ð°Ñ‡Ð°Ñ” екÑтрудери периметра та наповнювача, але не екÑтрудери підтримки."
-
-#: src/libslic3r/PrintConfig.cpp:444
-msgid "Set this to the vertical distance between your nozzle tip and (usually) the X carriage rods. In other words, this is the height of the clearance cylinder around your extruder, and it represents the maximum depth the extruder can peek before colliding with other printed objects."
-msgstr "УÑтановіть Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñк вертикальну відÑтань між наконечником Ñопла та (звичайно) шатунами X каретки. Іншими Ñловами, це виÑота циліндра Ð¾Ñ‡Ð¸Ñ‰ÐµÐ½Ð½Ñ Ð½Ð°Ð²ÐºÐ¾Ð»Ð¾ вашого екÑтрудера, Ñ– це ÑвлÑÑ” Ñобою макÑимальну глибину, Ñку екÑтрудер може розглÑдати до Ð·Ñ–Ñ‚ÐºÐ½ÐµÐ½Ð½Ñ Ð· іншими друкованими предметами."
-
-#: src/libslic3r/PrintConfig.cpp:455
-msgid "Radius"
-msgstr "РадіуÑ"
-
-#: src/libslic3r/PrintConfig.cpp:456
-msgid "Set this to the clearance radius around your extruder. If the extruder is not centered, choose the largest value for safety. This setting is used to check for collisions and to display the graphical preview in the plater."
-msgstr "УÑтановіть Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñк Ñ€Ð°Ð´Ñ–ÑƒÑ Ð·Ð°Ð·Ð¾Ñ€Ñ–Ð² навколо вашої екÑтрудера. Якщо екÑтрудер не центрований, Ð´Ð»Ñ Ð±ÐµÐ·Ð¿ÐµÐºÐ¸ виберіть найбільше Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ . Цей параметр викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ²Ñ–Ñ€ÐºÐ¸ зіткнень та Ð²Ñ–Ð´Ð¾Ð±Ñ€Ð°Ð¶ÐµÐ½Ð½Ñ Ð³Ñ€Ð°Ñ„Ñ–Ñ‡Ð½Ð¾Ð³Ð¾ попереднього переглÑду в панелі."
-
-#: src/libslic3r/PrintConfig.cpp:467
-msgid "Extruder Color"
-msgstr "Колір екÑтрудера"
-
-#: src/libslic3r/PrintConfig.cpp:468 src/libslic3r/PrintConfig.cpp:535
-msgid "This is only used in the Slic3r interface as a visual help."
-msgstr "Ð¦Ñ Ð¾Ð¿Ñ†Ñ–Ñ Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑтовуєтьÑÑ Ð»Ð¸ÑˆÐµ у інтерфейÑÑ– Slic3r Ñк візуальна допомога."
-
-#: src/libslic3r/PrintConfig.cpp:475
-msgid "Extruder offset"
-msgstr "Ð—Ð¼Ñ–Ñ‰ÐµÐ½Ð½Ñ ÐµÐºÑтрудеру"
-
-#: src/libslic3r/PrintConfig.cpp:476
-msgid "If your firmware doesn't handle the extruder displacement you need the G-code to take it into account. This option lets you specify the displacement of each extruder with respect to the first one. It expects positive coordinates (they will be subtracted from the XY coordinate)."
-msgstr "Якщо ваша прошивка не ÑправлÑєтьÑÑ Ð· витіÑненнÑм екÑтрудера, вам потрібен G-код, щоб врахувати це. Ð¦Ñ Ð¾Ð¿Ñ†Ñ–Ñ Ð´Ð¾Ð·Ð²Ð¾Ð»ÑÑ” вказати Ð·Ð¼Ñ–Ñ‰ÐµÐ½Ð½Ñ ÐºÐ¾Ð¶Ð½Ð¾Ð³Ð¾ екÑтрудера відноÑно першого. Він очікує позитивних координат (вони будуть віднімані від координати XY)."
-
-#: src/libslic3r/PrintConfig.cpp:486
-msgid "Extrusion axis"
-msgstr "ОÑÑŒ екÑтрузії"
-
-#: src/libslic3r/PrintConfig.cpp:487
-msgid "Use this option to set the axis letter associated to your printer's extruder (usually E but some printers use A)."
-msgstr "ВикориÑтовуйте цю опцію, щоб вÑтановити букву оÑей, пов'Ñзану з екÑтрудером принтера (зазвичай E, але деÑкі принтери викориÑтовують A)."
-
-#: src/libslic3r/PrintConfig.cpp:493
-msgid "Extrusion multiplier"
-msgstr "Коефіцієнт екÑтрузії"
-
-#: src/libslic3r/PrintConfig.cpp:494
-msgid "This factor changes the amount of flow proportionally. You may need to tweak this setting to get nice surface finish and correct single wall widths. Usual values are between 0.9 and 1.1. If you think you need to change this more, check filament diameter and your firmware E steps."
-msgstr "Цей фактор пропорційно змінює величину потоку. Вам може знадобитиÑÑ Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ñ‚Ð¸ цей параметр, щоб отримати хорошу обробку поверхні та правильно визначити ширину однієї Ñтіни. Звичайні Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ - від 0,9 до 1,1. Якщо ви вважаєте, що його потрібно більше змінити, перевірте діаметр нитки та E кроки прошивки ."
-
-#: src/libslic3r/PrintConfig.cpp:503
-msgid "Default extrusion width"
-msgstr "Ширина екÑтрузії за замовчаннÑм"
-
-#: src/libslic3r/PrintConfig.cpp:505
-msgid "Set this to a non-zero value to allow a manual extrusion width. If left to zero, Slic3r derives extrusion widths from the nozzle diameter (see the tooltips for perimeter extrusion width, infill extrusion width etc). If expressed as percentage (for example: 230%), it will be computed over layer height."
-msgstr "УÑтановіть ненульове значеннÑ, щоб дозволити ручне Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ ÑˆÐ¸Ñ€Ð¸Ð½Ð¸ екÑтрузії. Якщо залишити Ñк 0, Slic3r отримує ширину екÑтрузії від діаметра Ñопла (див. Підказки Ð´Ð»Ñ ÑˆÐ¸Ñ€Ð¸Ð½Ð¸ екÑтрузії периметру, ширини екÑтрузії наповнювача тощо). Якщо Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð²Ð¸Ñ€Ð°Ð¶ÐµÐ½Ðµ у відÑотках (наприклад: 230%), воно буде обчиÑлюватиÑÑ Ð·Ð° виÑотою шару."
-
-#: src/libslic3r/PrintConfig.cpp:509
-msgid "mm or % (leave 0 for auto)"
-msgstr "мм або % (залиште 0 Ð´Ð»Ñ Ð°Ð²Ñ‚Ð¾Ð¾Ð±Ñ‡Ð¸ÑленнÑ)"
-
-#: src/libslic3r/PrintConfig.cpp:515
-msgid "Keep fan always on"
-msgstr "Тримайте вентилÑтор завжди"
-
-#: src/libslic3r/PrintConfig.cpp:516
-msgid "If this is enabled, fan will never be disabled and will be kept running at least at its minimum speed. Useful for PLA, harmful for ABS."
-msgstr "Якщо Ñ†Ñ Ð¾Ð¿Ñ†Ñ–Ñ Ð²Ð²Ñ–Ð¼ÐºÐ½ÐµÐ½Ð°, вентилÑтор ніколи не буде відключений Ñ– буде триматиÑÑ, Ñк мінімум, на мінімальній швидкоÑті. КориÑно Ð´Ð»Ñ PLA, шкідливо Ð´Ð»Ñ ABS."
-
-#: src/libslic3r/PrintConfig.cpp:522
-msgid "Enable fan if layer print time is below"
-msgstr "Увімкнути вентилÑтор, Ñкщо Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ шару нижче"
-
-#: src/libslic3r/PrintConfig.cpp:523
-msgid "If layer print time is estimated below this number of seconds, fan will be enabled and its speed will be calculated by interpolating the minimum and maximum speeds."
-msgstr "Якщо Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ шару оцінюєтьÑÑ Ð½Ð¸Ð¶Ñ‡Ðµ цієї кількоÑті Ñекунд, вентилÑтор буде активований, а його швидкіÑть буде розрахована шлÑхом інтерполÑції мінімальної та макÑимальної швидкоÑті."
-
-#: src/libslic3r/PrintConfig.cpp:525 src/libslic3r/PrintConfig.cpp:1711
-msgid "approximate seconds"
-msgstr "приблизні Ñекунди"
-
-#: src/libslic3r/PrintConfig.cpp:534
-msgid "Color"
-msgstr "Колір"
-
-#: src/libslic3r/PrintConfig.cpp:541
-msgid "Filament notes"
-msgstr "Примітки до філаменту"
-
-#: src/libslic3r/PrintConfig.cpp:542
-msgid "You can put your notes regarding the filament here."
-msgstr "Тут ви можете поміÑтити Ñвої нотатки щодо філаменту."
-
-#: src/libslic3r/PrintConfig.cpp:551 src/libslic3r/PrintConfig.cpp:1196
-msgid "Max volumetric speed"
-msgstr "МакÑимальна об'ємна швидкіÑть"
-
-#: src/libslic3r/PrintConfig.cpp:552
-msgid "Maximum volumetric speed allowed for this filament. Limits the maximum volumetric speed of a print to the minimum of print and filament volumetric speed. Set to zero for no limit."
-msgstr "МакÑимальна об'ємна швидкіÑть, припуÑтима Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ філаметну. Обмежує макÑимальну об'ємну швидкіÑть друку до мінімуму об'ємної швидкоÑті друку та філаметну. Ð’Ñтановити 0 Ð´Ð»Ñ Ð²Ñ–Ð´ÑутноÑті обмежень."
-
-#: src/libslic3r/PrintConfig.cpp:555 src/libslic3r/PrintConfig.cpp:1199
-msgid "mm³/s"
-msgstr "мм³/Ñ"
-
-#: src/libslic3r/PrintConfig.cpp:562
-msgid "Loading speed"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:563
-msgid "Speed used for loading the filament on the wipe tower. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:571
-msgid "Loading speed at the start"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:572
-msgid "Speed used at the very beginning of loading phase. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:580
-msgid "Unloading speed"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:581
-msgid "Speed used for unloading the filament on the wipe tower (does not affect initial part of unloading just after ramming). "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:590
-msgid "Unloading speed at the start"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:591
-msgid "Speed used for unloading the tip of the filament immediately after ramming. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:599
-msgid "Delay after unloading"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:600
-msgid "Time to wait after the filament is unloaded. May help to get reliable toolchanges with flexible materials that may need more time to shrink to original dimensions. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:610
-msgid "Number of cooling moves"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:611
-msgid "Filament is cooled by being moved back and forth in the cooling tubes. Specify desired number of these moves "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:620
-msgid "Speed of the first cooling move"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:621
-msgid "Cooling moves are gradually accelerating beginning at this speed. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:629
-msgid "Minimal purge on wipe tower"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:630
-msgid "After a tool change, the exact position of the newly loaded filament inside the nozzle may not be known, and the filament pressure is likely not yet stable. Before purging the print head into an infill or a sacrificial object, Slic3r will always prime this amount of material into the wipe tower to produce successive infill or sacrificial object extrusions reliably."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:635
-msgid "mm³"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:641
-msgid "Speed of the last cooling move"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:642
-msgid "Cooling moves are gradually accelerating towards this speed. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:650
-msgid "Filament load time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:651
-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 ""
-
-#: src/libslic3r/PrintConfig.cpp:659
-msgid "Ramming parameters"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:660
-msgid "This string is edited by RammingDialog and contains ramming specific parameters "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:667
-msgid "Filament unload time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:668
-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 ""
-
-#: src/libslic3r/PrintConfig.cpp:677
-msgid "Enter your filament diameter here. Good precision is required, so use a caliper and do multiple measurements along the filament, then compute the average."
-msgstr "Введіть тут діаметр Ñвого філаменту. Ðеобхідна виÑока точніÑть, тому викориÑтовуйте Ñуматор Ñ– виконайте декілька вимірювань вздовж нитки, потім обчиÑліть Ñереднє значеннÑ."
-
-#: src/libslic3r/PrintConfig.cpp:685
-msgid "Density"
-msgstr "ЩільніÑть"
-
-#: src/libslic3r/PrintConfig.cpp:686
-msgid "Enter your filament density here. This is only for statistical information. A decent way is to weigh a known length of filament and compute the ratio of the length to volume. Better is to calculate the volume directly through displacement."
-msgstr "Введіть тут щільніÑть Ñвого філаменту. Це тільки Ð´Ð»Ñ ÑтатиÑтичної інформації. ПриÑтойним ÑпоÑобом Ñ” Ð·Ð²Ð°Ð¶ÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ñ–Ð´Ð¾Ð¼Ð¾Ñ— довжини нитки та обчиÑÐ»ÐµÐ½Ð½Ñ ÑÐ¿Ñ–Ð²Ð²Ñ–Ð´Ð½Ð¾ÑˆÐµÐ½Ð½Ñ Ð´Ð¾Ð²Ð¶Ð¸Ð½Ð¸ до обÑÑгу. Краще обчиÑлити об'єм безпоÑередньо через зміщеннÑ."
-
-#: src/libslic3r/PrintConfig.cpp:689
-msgid "g/cm³"
-msgstr "г/Ñм³"
-
-#: src/libslic3r/PrintConfig.cpp:695
-msgid "Filament type"
-msgstr "Тип філаменту"
-
-#: src/libslic3r/PrintConfig.cpp:696
-msgid "The filament material type for use in custom G-codes."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:712
-msgid "Soluble material"
-msgstr "Розчинний матеріал"
-
-#: src/libslic3r/PrintConfig.cpp:713
-msgid "Soluble material is most likely used for a soluble support."
-msgstr "Розчинний матеріал переважно викориÑтовуєтьÑÑ Ð´Ð»Ñ Ñ€Ð¾Ð·Ñ‡Ð¸Ð½Ð½Ð¾Ñ— підтримки."
-
-#: src/libslic3r/PrintConfig.cpp:719
-msgid "Enter your filament cost per kg here. This is only for statistical information."
-msgstr "Введіть тут Ñвою вартіÑть філаменту на кг. Це тільки Ð´Ð»Ñ ÑтатиÑтичної інформації."
-
-#: src/libslic3r/PrintConfig.cpp:720
-msgid "money/kg"
-msgstr "грошових одиниць/кг"
-
-#: src/libslic3r/PrintConfig.cpp:729
-msgid "Fill angle"
-msgstr "Кут наповненнÑ"
-
-#: src/libslic3r/PrintConfig.cpp:731
-msgid "Default base angle for infill orientation. Cross-hatching will be applied to this. Bridges will be infilled using the best direction Slic3r can detect, so this setting does not affect them."
-msgstr "ОÑновний кут орієнтації Ð½Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ð·Ð° замовчуваннÑм. Ð”Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ буде заÑтоÑовуватиÑÑ ÐºÑ€Ð¾Ñ-штрих. МоÑти будуть заповнені, викориÑтовуючи найкращий напрÑм, Ñкий може виÑвити Slic3r, тому цей параметр на них не впливає."
-
-#: src/libslic3r/PrintConfig.cpp:744
-msgid "Fill density"
-msgstr "ЩільніÑть заповненнÑ"
-
-#: src/libslic3r/PrintConfig.cpp:746
-msgid "Density of internal infill, expressed in the range 0% - 100%."
-msgstr "ЩільніÑть внутрішнього заповненнÑ, виражена в діапазоні 0% - 100%."
-
-#: src/libslic3r/PrintConfig.cpp:782
-msgid "Fill pattern"
-msgstr "Шаблон заповненнÑ"
-
-#: src/libslic3r/PrintConfig.cpp:784
-msgid "Fill pattern for general low-density infill."
-msgstr "Шаблон Ð·Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ð´Ð»Ñ Ð·Ð°Ð³Ð°Ð»ÑŒÐ½Ð¾Ð³Ð¾ низько-швидкіÑного наповненнÑ."
-
-#: src/libslic3r/PrintConfig.cpp:801
-msgid "Grid"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:802
-msgid "Triangles"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:803
-msgid "Stars"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:804
-msgid "Cubic"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:805
-msgid "Line"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:807 src/libslic3r/PrintConfig.cpp:2023
-msgid "Honeycomb"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:808
-msgid "3D Honeycomb"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:809
-msgid "Gyroid"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:826
-#: src/libslic3r/PrintConfig.cpp:835 src/libslic3r/PrintConfig.cpp:871
-msgid "First layer"
-msgstr "Перший шар"
-
-#: src/libslic3r/PrintConfig.cpp:817
-msgid "This is the acceleration your printer will use for first layer. Set zero to disable acceleration control for first layer."
-msgstr "Це приÑкореннÑ, Ñке ваш принтер викориÑтовуватиме Ð´Ð»Ñ Ð¿ÐµÑ€ÑˆÐ¾Ð³Ð¾ шару. Ð’Ñтановити 0, щоб вимкнути ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¸ÑкореннÑм Ð´Ð»Ñ Ð¿ÐµÑ€ÑˆÐ¾Ð³Ð¾ шару."
-
-#: src/libslic3r/PrintConfig.cpp:827
-msgid "Heated build plate temperature for the first layer. Set this to zero to disable bed temperature control commands in the output."
-msgstr "Температура підігрітої збірної плаÑтини Ð´Ð»Ñ Ð¿ÐµÑ€ÑˆÐ¾Ð³Ð¾ шару. УÑтановіть 0, щоб відключити команди ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐ¼Ð¿ÐµÑ€Ð°Ñ‚ÑƒÑ€Ð¾ÑŽ полотна на виході."
-
-#: src/libslic3r/PrintConfig.cpp:837
-msgid "Set this to a non-zero value to set a manual extrusion width for first layer. You can use this to force fatter extrudates for better adhesion. If expressed as percentage (for example 120%) it will be computed over first layer height. If set to zero, it will use the default extrusion width."
-msgstr "Ð’Ñтановіть ненульове значеннÑ, щоб вÑтановити ручну ширину екÑтрузії Ð´Ð»Ñ Ð¿ÐµÑ€ÑˆÐ¾Ð³Ð¾ шару. Ви можете викориÑтовувати цю опцію з метою навмиÑного пом'ÑÐºÑˆÐµÐ½Ð½Ñ ÐµÐºÑтрудату Ð´Ð»Ñ ÐºÑ€Ð°Ñ‰Ð¾Ñ— адгезії. Якщо вона виражена у відÑотках (наприклад, 120%), вона буде обчиÑлена за виÑотою першого шару. Якщо вÑтановлено на 0 - викориÑтовуватиме Ñтандартну ширину екÑтрузії."
-
-#: src/libslic3r/PrintConfig.cpp:848
-msgid "First layer height"
-msgstr "ВиÑота першого шару"
-
-#: src/libslic3r/PrintConfig.cpp:850
-msgid "When printing with very low layer heights, you might still want to print a thicker bottom layer to improve adhesion and tolerance for non perfect build plates. This can be expressed as an absolute value or as a percentage (for example: 150%) over the default layer height."
-msgstr "Під Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ з дуже низькими виÑотами шару ви, можливо, вÑе-таки захочете надрукувати більш товÑтий нижній шар, щоб поліпшити адгезію та толерантніÑть до невідповідних збірних плаÑтин. Можна виразити Ñк абÑолютне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð°Ð±Ð¾ Ñк відÑоток (наприклад: 150%) по виÑоті шару за замовчуваннÑм."
-
-#: src/libslic3r/PrintConfig.cpp:854 src/libslic3r/PrintConfig.cpp:1003
-#: src/libslic3r/PrintConfig.cpp:1884
-msgid "mm or %"
-msgstr "мм або %"
-
-#: src/libslic3r/PrintConfig.cpp:860
-msgid "First layer speed"
-msgstr "ШвидкіÑть першого шару"
-
-#: src/libslic3r/PrintConfig.cpp:861
-msgid "If expressed as absolute value in mm/s, this speed will be applied to all the print moves of the first layer, regardless of their type. If expressed as a percentage (for example: 40%) it will scale the default speeds."
-msgstr "Якщо вона виражена в абÑолютному значенні в мм/Ñ, Ñ†Ñ ÑˆÐ²Ð¸Ð´ÐºÑ–Ñть буде заÑтоÑована до вÑÑ–Ñ… рухів друку першого шару незалежно від Ñ—Ñ… типу. Якщо вона виражена у відÑотках (наприклад: 40%), вона буде маÑштабувати швидкіÑть за замовчуваннÑм."
-
-#: src/libslic3r/PrintConfig.cpp:872
-msgid "Extruder temperature for first layer. If you want to control temperature manually during print, set this to zero to disable temperature control commands in the output file."
-msgstr "Температура екÑтрудеру Ð´Ð»Ñ Ð¿ÐµÑ€ÑˆÐ¾Ð³Ð¾ шару. Якщо ви хочете контролювати температуру вручну під Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ, вÑтановіть 0, щоб вимкнути команди ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐ¼Ð¿ÐµÑ€Ð°Ñ‚ÑƒÑ€Ð¾ÑŽ у вихідному файлі."
-
-#: src/libslic3r/PrintConfig.cpp:882
-msgid "Speed for filling small gaps using short zigzag moves. Keep this reasonably low to avoid too much shaking and resonance issues. Set zero to disable gaps filling."
-msgstr "ШвидкіÑть Ð´Ð»Ñ Ð·Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ð½ÐµÐ²ÐµÐ»Ð¸ÐºÐ¸Ñ… розривів за допомогою коротких зигзагоподібних рухів. ДотримуйтеÑÑŒ доÑтатньо низьких значень, щоб уникнути надмірних потрÑÑінь та резонанÑних проблем. Ð’Ñтановити 0, щоб вимкнути Ð·Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ñ€Ð¾Ð·Ñ€Ð¸Ð²Ñ–Ð²."
-
-#: src/libslic3r/PrintConfig.cpp:890
-msgid "Verbose G-code"
-msgstr "Докладний G-код"
-
-#: src/libslic3r/PrintConfig.cpp:891
-msgid "Enable this to get a commented G-code file, with each line explained by a descriptive text. If you print from SD card, the additional weight of the file could make your firmware slow down."
-msgstr "Увімкніть Ð´Ð»Ñ Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ð½Ð½Ñ ÐºÐ¾Ð¼ÐµÐ½Ñ‚Ð¾Ð²Ð°Ð½Ð¾Ð³Ð¾ файлу G-коду, причому кожен Ñ€Ñдок поÑÑнюєтьÑÑ Ð¾Ð¿Ð¸Ñовим текÑтом. Якщо ви друкуєте з SD-карти, додаткова вага файлу може призвеÑти до ÑƒÐ¿Ð¾Ð²Ñ–Ð»ÑŒÐ½ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¾ÑˆÐ¸Ð²ÐºÐ¸."
-
-#: src/libslic3r/PrintConfig.cpp:899
-msgid "G-code flavor"
-msgstr "ОÑобливіÑть G-коду"
-
-#: src/libslic3r/PrintConfig.cpp:900
-msgid "Some G/M-code commands, including temperature control and others, are not universal. Set this option to your printer's firmware to get a compatible output. The \"No extrusion\" flavor prevents Slic3r from exporting any extrusion value at all."
-msgstr "ДеÑкі команди G/M-коду, включаючи контроль температури тощо, не Ñ” універÑальними. УÑтановіть цей параметр на прошивку принтера, щоб отримати ÑуміÑний вихід. \"ВідÑутніÑть екÑтрузії\" не дозволÑÑ” Slic3r екÑпортувати будь-Ñке Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ ÐµÐºÑтрузії."
-
-#: src/libslic3r/PrintConfig.cpp:924
-msgid "No extrusion"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:929
-msgid "High extruder current on filament swap"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:930
-msgid "It may be beneficial to increase the extruder motor current during the filament exchange sequence to allow for rapid ramming feed rates and to overcome resistance when loading a filament with an ugly shaped tip."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:939
-msgid "This is the acceleration your printer will use for infill. Set zero to disable acceleration control for infill."
-msgstr "Це приÑкореннÑ, Ñке ваш принтер викориÑтовуватиме Ð´Ð»Ñ Ð½Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ. Ð’Ñтановити 0, щоб вимкнути регулÑтор приÑÐºÐ¾Ñ€ÐµÐ½Ð½Ñ Ð´Ð»Ñ Ð·Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ."
-
-#: src/libslic3r/PrintConfig.cpp:948
-msgid "Combine infill every"
-msgstr "Об'єднати Ð½Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ ÐºÐ¾Ð¶Ð½Ñ–"
-
-#: src/libslic3r/PrintConfig.cpp:950
-msgid "This feature allows to combine infill and speed up your print by extruding thicker infill layers while preserving thin perimeters, thus accuracy."
-msgstr "Ð¦Ñ Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ Ð´Ð¾Ð·Ð²Ð¾Ð»ÑÑ” поєднувати Ð½Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ñ‚Ð° приÑкорити друк, екÑтрудуючи більш товÑті шари наповненнÑ, зберігаючи тонкі периметри, а отже, Ñ– точніÑтю."
-
-#: src/libslic3r/PrintConfig.cpp:954
-msgid "Combine infill every n layers"
-msgstr "Об'єднати Ð½Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ ÐºÐ¾Ð¶Ð½Ñ– n шарів"
-
-#: src/libslic3r/PrintConfig.cpp:960
-msgid "Infill extruder"
-msgstr "Ðаповнювач екÑтрудера"
-
-#: src/libslic3r/PrintConfig.cpp:962
-msgid "The extruder to use when printing infill."
-msgstr "ЕкÑтрудер, викориÑтовуваний під Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ наповненнÑ."
-
-#: src/libslic3r/PrintConfig.cpp:971
-msgid "Set this to a non-zero value to set a manual extrusion width for infill. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. You may want to use fatter extrudates to speed up the infill and make your parts stronger. If expressed as percentage (for example 90%) it will be computed over layer height."
-msgstr "Ð’Ñтановіть Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ñк ненульове, щоб вÑтановити ручну ширину екÑтрузії Ð´Ð»Ñ Ð½Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ. Якщо залишити 0, ширина екÑтрузії за замовчуваннÑм буде викориÑтана, Ñкщо вÑтановлено, інакше буде викориÑтано 1,125 x діаметр Ñопла. Можливо, ви захочете викориÑтовувати більш товÑті екÑтруди, щоб приÑкорити Ð½Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ñ‚Ð° зміцнити Ñвої деталі. Якщо він виражений у відÑотках (наприклад, 90%), він буде обчиÑлюватиÑÑ Ð·Ð° виÑотою шару."
-
-#: src/libslic3r/PrintConfig.cpp:981
-msgid "Infill before perimeters"
-msgstr "Ð—Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ð¿ÐµÑ€ÐµÐ´ периметрами"
-
-#: src/libslic3r/PrintConfig.cpp:982
-msgid "This option will switch the print order of perimeters and infill, making the latter first."
-msgstr "За допомогою цього параметра можна буде змінити порÑдок друку периметрів та наповнювачів, зробивши оÑтаннє першим."
-
-#: src/libslic3r/PrintConfig.cpp:988
-msgid "Only infill where needed"
-msgstr "Заповнити тільки там, де потрібно"
-
-#: src/libslic3r/PrintConfig.cpp:990
-msgid "This option will limit infill to the areas actually needed for supporting ceilings (it will act as internal support material). If enabled, slows down the G-code generation due to the multiple checks involved."
-msgstr "Ð¦Ñ Ð¾Ð¿Ñ†Ñ–Ñ Ð¾Ð±Ð¼ÐµÐ¶Ð¸Ñ‚ÑŒ Ð·Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ð¾Ð±Ð»Ð°Ñтей, фактично необхідних Ð´Ð»Ñ Ð¿Ñ–Ð´Ñ‚Ñ€Ð¸Ð¼ÐºÐ¸ Ñтель (це буде діÑти Ñк внутрішній матеріал підтримки). Якщо це ввімкнено, ÑповільнюєтьÑÑ Ð³ÐµÐ½ÐµÑ€Ð°Ñ†Ñ–Ñ G-коду через декілька перевірок."
-
-#: src/libslic3r/PrintConfig.cpp:998
-msgid "Infill/perimeters overlap"
-msgstr "ÐŸÐµÑ€ÐµÐºÑ€Ð¸Ñ‚Ñ‚Ñ Ð½Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ/периметрів"
-
-#: src/libslic3r/PrintConfig.cpp:1000
-msgid "This setting applies an additional overlap between infill and perimeters for better bonding. Theoretically this shouldn't be needed, but backlash might cause gaps. If expressed as percentage (example: 15%) it is calculated over perimeter extrusion width."
-msgstr "Цей параметр заÑтоÑовує додаткове Ð¿ÐµÑ€ÐµÐºÑ€Ð¸Ñ‚Ñ‚Ñ Ð¼Ñ–Ð¶ заповненнÑм та периметрами Ð´Ð»Ñ ÐºÑ€Ð°Ñ‰Ð¾Ð³Ð¾ зчепленнÑ. Теоретично це не повинно бути необхідним, але люфт може Ñпричинити розриви. Якщо він виражений у відÑотках (приклад: 15%), його розраховують за шириною екÑтрузії по периметру."
-
-#: src/libslic3r/PrintConfig.cpp:1012
-msgid "Speed for printing the internal fill. Set to zero for auto."
-msgstr "ШвидкіÑть друку внутрішнього заповненнÑ. Ð’Ñтановити 0 Ð´Ð»Ñ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾Ð³Ð¾ обчиÑленнÑ."
-
-#: src/libslic3r/PrintConfig.cpp:1020
-msgid "Inherits profile"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1021
-msgid "Name of the profile, from which this profile inherits."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1032
-msgid "Interface shells"
-msgstr "ІнтерфейÑні оболонки"
-
-#: src/libslic3r/PrintConfig.cpp:1033
-msgid "Force the generation of solid shells between adjacent materials/volumes. Useful for multi-extruder prints with translucent materials or manual soluble support material."
-msgstr "ПримуÑове ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ñуцільної оболонки між Ñуміжними матеріалами/обÑÑгами. КориÑно Ð´Ð»Ñ Ð´Ñ€ÑƒÐºÑƒ з багатьма екÑтрудерами з напівпрозорими матеріалами або ручним розчинним матеріалом Ð´Ð»Ñ Ð¿Ñ–Ð´Ñ‚Ñ€Ð¸Ð¼ÐºÐ¸."
-
-#: src/libslic3r/PrintConfig.cpp:1043
-msgid "This custom code is inserted at every layer change, right after the Z move and before the extruder moves to the first layer point. Note that you can use placeholder variables for all Slic3r settings as well as [layer_num] and [layer_z]."
-msgstr "Цей кориÑтувацький код вÑтавлÑєтьÑÑ Ð¿Ñ€Ð¸ кожній зміні шару відразу піÑÐ»Ñ Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Z Ñ– перед тим, Ñк екÑтрудер переміÑтитьÑÑ Ð´Ð¾ точки першого шару. Зауважте, що ви можете викориÑтовувати змінні-заповнювачі Ð´Ð»Ñ Ð²ÑÑ–Ñ… параметрів Slic3r, а також [layer_num] Ñ– [layer_z]."
-
-#: src/libslic3r/PrintConfig.cpp:1054
-msgid "Supports remaining times"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1055
-msgid "Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute intervals into the G-code to let the firmware show accurate remaining time. As of now only the Prusa i3 MK3 firmware recognizes M73. Also the i3 MK3 firmware supports M73 Qxx Sxx for the silent mode."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1063
-msgid "Supports silent mode"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1064
-msgid "Set silent mode for the G-code flavor"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1087
-msgid "Maximum feedrate %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1089
-msgid "Maximum feedrate of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1097
-msgid "Maximum acceleration %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1099
-msgid "Maximum acceleration of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1107
-msgid "Maximum jerk %1%"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1109
-msgid "Maximum jerk of the %1% axis"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122
-msgid "Minimum feedrate when extruding"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133
-msgid "Minimum travel feedrate"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144
-msgid "Maximum acceleration when extruding"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1153 src/libslic3r/PrintConfig.cpp:1155
-msgid "Maximum acceleration when retracting"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1173
-msgid "Max"
-msgstr "МакÑимально"
-
-#: src/libslic3r/PrintConfig.cpp:1164
-msgid "This setting represents the maximum speed of your fan."
-msgstr "Цей параметр відображає макÑимальну швидкіÑть вашого вентилÑтора."
-
-#: src/libslic3r/PrintConfig.cpp:1174
-#, no-c-format
-msgid "This is the highest printable layer height for this extruder, used to cap the variable layer height and support layer height. Maximum recommended layer height is 75% of the extrusion width to achieve reasonable inter-layer adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter."
-msgstr "Це найбільша виÑота друкованого шару Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ екÑтрудера, що викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð¾Ð±Ð¼ÐµÐ¶ÐµÐ½Ð½Ñ Ð²Ð¸Ñоти змінного шару та виÑоти підтримуючого шару. МакÑимальна рекомендована виÑота шару Ñтановить 75% ширини екÑтрузії Ð´Ð»Ñ Ð´Ð¾ÑÑÐ³Ð½ÐµÐ½Ð½Ñ Ñ€Ð¾Ð·ÑƒÐ¼Ð½Ð¾Ñ— міжшарової адгезії. Якщо вÑтановлено 0, виÑота шару обмежена 75% діаметра Ñопла."
-
-#: src/libslic3r/PrintConfig.cpp:1185
-msgid "Max print speed"
-msgstr "МакÑимальна швидкіÑть друку"
-
-#: src/libslic3r/PrintConfig.cpp:1186
-msgid "When setting other speed settings to 0 Slic3r will autocalculate the optimal speed in order to keep constant extruder pressure. This experimental setting is used to set the highest print speed you want to allow."
-msgstr "При вÑтановленні інших параметрів швидкоÑті до 0, Slic3r буде автоматично обчиÑлювати оптимальну швидкіÑть, щоб підтримувати поÑтійний тиÑк екÑтрудера. Цей екÑпериментальний параметр викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð²ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð¼Ð°ÐºÑимальної швидкоÑті друку, Ñку ви хочете дозволити."
-
-#: src/libslic3r/PrintConfig.cpp:1197
-msgid "This experimental setting is used to set the maximum volumetric speed your extruder supports."
-msgstr "Цей екÑпериментальний параметр викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð²ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð¼Ð°ÐºÑимальної об'ємної швидкоÑті, Ñку підтримує екÑтрудер."
-
-#: src/libslic3r/PrintConfig.cpp:1206
-msgid "Max volumetric slope positive"
-msgstr "МакÑимальний об'ємний нахил позитивний"
-
-#: src/libslic3r/PrintConfig.cpp:1207 src/libslic3r/PrintConfig.cpp:1219
-msgid "This experimental setting is used to limit the speed of change in extrusion rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds."
-msgstr "Цей екÑпериментальний параметр викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð¾Ð±Ð¼ÐµÐ¶ÐµÐ½Ð½Ñ ÑˆÐ²Ð¸Ð´ÐºÐ¾Ñті зміни швидкоÑті екÑтрузії. Ð—Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ 1,8 мм³/Ѳ гарантує, що зміна швидкоÑті екÑтрузії 1,8 мм³/Ñ (ширина екÑтрузії 0,45 мм, виÑота екÑтрузії 0,2 мм, швидкіÑть подачі 20 мм/Ñ) до 5,4 мм³/Ñ (подача 60 мм/Ñ) займе принаймні 2 Ñекунди."
-
-#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1223
-msgid "mm³/s²"
-msgstr "мм³/Ѳ"
-
-#: src/libslic3r/PrintConfig.cpp:1218
-msgid "Max volumetric slope negative"
-msgstr "МакÑимальний об'ємний Ñхил негативний"
-
-#: src/libslic3r/PrintConfig.cpp:1230 src/libslic3r/PrintConfig.cpp:1240
-msgid "Min"
-msgstr "Мінімально"
-
-#: src/libslic3r/PrintConfig.cpp:1231
-msgid "This setting represents the minimum PWM your fan needs to work."
-msgstr "Цей параметр відповідає мінімальній ШІМ, на Ñкій повинен працювати ваш вентилÑтор."
-
-#: src/libslic3r/PrintConfig.cpp:1241
-msgid "This is the lowest printable layer height for this extruder and limits the resolution for variable layer height. Typical values are between 0.05 mm and 0.1 mm."
-msgstr "Це найменша виÑота друкованого шару Ð´Ð»Ñ Ñ†ÑŒÐ¾Ð³Ð¾ екÑтрудера та обмежує роздільну здатніÑть Ð´Ð»Ñ Ð²Ð¸Ñоти змінного шару. Типові Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ - від 0,05 мм до 0,1 мм."
-
-#: src/libslic3r/PrintConfig.cpp:1250
-msgid "Min print speed"
-msgstr "Мінімальна швидкіÑть друку"
-
-#: src/libslic3r/PrintConfig.cpp:1251
-msgid "Slic3r will not scale speed down below this speed."
-msgstr "Slic3r не буде маÑштабувати швидкіÑть нижче цієї швидкоÑті."
-
-#: src/libslic3r/PrintConfig.cpp:1259
-msgid "Minimal filament extrusion length"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1260
-msgid "Generate no less than the number of skirt loops required to consume the specified amount of filament on the bottom layer. For multi-extruder machines, this minimum applies to each extruder."
-msgstr "Створити не менше кількоÑті петель плінтуÑу, необхідних Ð´Ð»Ñ ÑÐ¿Ð¾Ð¶Ð¸Ð²Ð°Ð½Ð½Ñ Ð·Ð°Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¾Ñ— кількоÑті філаменту на нижньому шарі. Ð”Ð»Ñ Ð¼Ð°ÑˆÐ¸Ð½ із декількома екÑтрудерами цей мінімум заÑтоÑовуєтьÑÑ Ð´Ð¾ кожного екÑтрудера."
-
-#: src/libslic3r/PrintConfig.cpp:1270
-msgid "Configuration notes"
-msgstr "Примітки до конфігурації"
-
-#: src/libslic3r/PrintConfig.cpp:1271
-msgid "You can put here your personal notes. This text will be added to the G-code header comments."
-msgstr "Ви можете додати тут Ñвої оÑобиÑті примітки. Цей текÑÑ‚ буде додано до коментарів заголовка G-коду."
-
-#: src/libslic3r/PrintConfig.cpp:1281
-msgid "Nozzle diameter"
-msgstr "Діаметр Ñопла"
-
-#: src/libslic3r/PrintConfig.cpp:1282
-msgid "This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)"
-msgstr "Це діаметр Ñопла вашого екÑтрудера (наприклад: 0.5, 0.35 тощо)"
-
-#: src/libslic3r/PrintConfig.cpp:1288
-msgid "Host Type"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1289
-msgid "Slic3r can upload G-code files to a printer host. This field must contain the kind of the host."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1301
-msgid "API Key / Password"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1302
-msgid "Slic3r can upload G-code files to a printer host. This field should contain the API Key or the password required for authentication."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1317
-msgid "Hostname, IP or URL"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1318
-msgid "Slic3r can upload G-code files to a printer host. This field should contain the hostname, IP address or URL of the printer host instance."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1325
-msgid "Only retract when crossing perimeters"
-msgstr "Перервати тільки у разі перетину периметрів"
-
-#: src/libslic3r/PrintConfig.cpp:1326
-msgid "Disables retraction when the travel path does not exceed the upper layer's perimeters (and thus any ooze will be probably invisible)."
-msgstr "Вимикає перериваннÑ, коли шлÑÑ… не перевищує периметри верхніх шарів (Ñ–, таким чином, будь-Ñкий розрÑдник буде, мабуть, невидимим)."
-
-#: src/libslic3r/PrintConfig.cpp:1334
-msgid "This option will drop the temperature of the inactive extruders to prevent oozing. It will enable a tall skirt automatically and move extruders outside such skirt when changing temperatures."
-msgstr "Цей параметр знизить температуру неактивних екÑтрудерів, щоб запобігти протіканню. Це дозволить автоматично ввімкнути виÑокий Ð¿Ð»Ñ–Ð½Ñ‚ÑƒÑ Ñ‚Ð° переміÑтить екÑтрудери за межі такого плінтуÑа у разі зміни температури."
-
-#: src/libslic3r/PrintConfig.cpp:1342
-msgid "Output filename format"
-msgstr "Формат вихідного файлу"
-
-#: src/libslic3r/PrintConfig.cpp:1343
-msgid "You can use all configuration options as variables inside this template. For example: [layer_height], [fill_density] etc. You can also use [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename], [input_filename_base]."
-msgstr "Ви можете викориÑтовувати вÑÑ– параметри конфігурації Ñк змінні вÑередині цього шаблону. Ðаприклад: [layer_height], [fill_density] тощо. Ви також можете викориÑтовувати [timestamp], [year], [month], [day], [hour], [minute], [second], [version], [input_filename] ], [input_filename_base]."
-
-#: src/libslic3r/PrintConfig.cpp:1353
-msgid "Detect bridging perimeters"
-msgstr "ВиÑÐ²Ð»ÐµÐ½Ð½Ñ Ð²Ð¸ÑÑчих периметрів"
-
-#: src/libslic3r/PrintConfig.cpp:1355
-msgid "Experimental option to adjust flow for overhangs (bridge flow will be used), to apply bridge speed to them and enable fan."
-msgstr "ЕкÑпериментальний параметр Ð´Ð»Ñ Ñ€ÐµÐ³ÑƒÐ»ÑŽÐ²Ð°Ð½Ð½Ñ Ð¿Ð¾Ñ‚Ð¾ÐºÑƒ Ð´Ð»Ñ Ð²Ð¸Ñтупів (буде викориÑтано моÑтовий потік), щоб заÑтоÑувати до них швидкіÑть моÑту та увімкнути вентилÑтор."
-
-#: src/libslic3r/PrintConfig.cpp:1362
-msgid "Filament parking position"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1363
-msgid "Distance of the extruder tip from the position where the filament is parked when unloaded. This should match the value in printer firmware. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1372
-msgid "Extra loading distance"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1373
-msgid "When set to zero, the distance the filament is moved from parking position during load is exactly the same as it was moved back during unload. When positive, it is loaded further, if negative, the loading move is shorter than unloading. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1382 src/libslic3r/PrintConfig.cpp:1402
-#: src/libslic3r/PrintConfig.cpp:1415 src/libslic3r/PrintConfig.cpp:1425
-msgid "Perimeters"
-msgstr "Периметри"
-
-#: src/libslic3r/PrintConfig.cpp:1383
-msgid "This is the acceleration your printer will use for perimeters. A high value like 9000 usually gives good results if your hardware is up to the job. Set zero to disable acceleration control for perimeters."
-msgstr "Це приÑкореннÑ, Ñке ваш принтер викориÑтовуватиме Ð´Ð»Ñ Ð¿ÐµÑ€Ð¸Ð¼ÐµÑ‚Ñ€Ñ–Ð². ВиÑока значеннÑ, таке Ñк 9000, зазвичай дає хороші результати, Ñкщо ваше апаратне Ð·Ð°Ð±ÐµÐ·Ð¿ÐµÑ‡ÐµÐ½Ð½Ñ Ð²Ñ–Ð´Ð¿Ð¾Ð²Ñ–Ð´Ð°Ñ” завданню. Ð’Ñтановити 0, щоб вимкнути регулÑтор приÑÐºÐ¾Ñ€ÐµÐ½Ð½Ñ Ð´Ð»Ñ Ð¿ÐµÑ€Ð¸Ð¼ÐµÑ‚Ñ€Ñ–Ð²."
-
-#: src/libslic3r/PrintConfig.cpp:1392
-msgid "Perimeter extruder"
-msgstr "ЕкÑтрудер периметру"
-
-#: src/libslic3r/PrintConfig.cpp:1394
-msgid "The extruder to use when printing perimeters and brim. First extruder is 1."
-msgstr "ЕкÑтрудер, що викориÑтовуєтьÑÑ Ð¿Ñ€Ð¸ друці периметрів Ñ– краю. Перший екÑтрудер - 1."
-
-#: src/libslic3r/PrintConfig.cpp:1404
-msgid "Set this to a non-zero value to set a manual extrusion width for perimeters. You may want to use thinner extrudates to get more accurate surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 200%) it will be computed over layer height."
-msgstr "УÑтановіть Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð½ÐµÐ½ÑƒÐ»ÑŒÐ¾Ð²Ð¸Ð¼, щоб вÑтановити ручну ширину екÑтрузії Ð´Ð»Ñ Ð¿ÐµÑ€Ð¸Ð¼ÐµÑ‚Ñ€Ñ–Ð². Ви можете викориÑтовувати більш тонкі екÑтруди, щоб отримати більш точні поверхні. Якщо залишити 0, буде викориÑтана ширина екÑтрузії за замовчуваннÑм, в іншому випадку викориÑтовуватиметьÑÑ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ 1,125 Ñ… діаметр Ñопла. Якщо він виражений у відÑотках (наприклад, 200%), він буде обчиÑлюватиÑÑ Ð·Ð° виÑотою шару."
-
-#: src/libslic3r/PrintConfig.cpp:1417
-msgid "Speed for perimeters (contours, aka vertical shells). Set to zero for auto."
-msgstr "ШвидкіÑть Ð´Ð»Ñ Ð¿ÐµÑ€Ð¸Ð¼ÐµÑ‚Ñ€Ñ–Ð² (контури, вертикальні оболонки). Ð’Ñтановити 0 Ð´Ð»Ñ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾Ð³Ð¾ викориÑтаннÑ."
-
-#: src/libslic3r/PrintConfig.cpp:1427
-msgid "This option sets the number of perimeters to generate for each layer. Note that Slic3r may increase this number automatically when it detects sloping surfaces which benefit from a higher number of perimeters if the Extra Perimeters option is enabled."
-msgstr "Ð¦Ñ Ð¾Ð¿Ñ†Ñ–Ñ Ð²Ð¸Ð·Ð½Ð°Ñ‡Ð°Ñ” кількіÑть периметрів Ð´Ð»Ñ ÐºÐ¾Ð¶Ð½Ð¾Ð³Ð¾ шару. Зверніть увагу, що Slic3r може автоматично збільшувати це чиÑло, коли виÑвлÑÑ” похилі поверхні, Ñкі отримують вигоду від більшої кількоÑті периметрів, Ñкщо Ð¾Ð¿Ñ†Ñ–Ñ Â«Ð”Ð¾Ð´Ð°Ñ‚ÐºÐ¾Ð²Ñ– периметри» увімкнена."
-
-#: src/libslic3r/PrintConfig.cpp:1431
-msgid "(minimum)"
-msgstr "(мінімум)"
-
-#: src/libslic3r/PrintConfig.cpp:1439
-msgid "If you want to process the output G-code through custom scripts, just list their absolute paths here. Separate multiple scripts with a semicolon. Scripts will be passed the absolute path to the G-code file as the first argument, and they can access the Slic3r config settings by reading environment variables."
-msgstr "Якщо ви хочете оброблÑти вихідний G-код через влаÑні Ñценарії, проÑто перелічіть тут Ñ—Ñ… абÑолютні шлÑхи. Кілька Ñкриптів відокремте крапкою з комою. Сценарії буде передано абÑолютним шлÑхам до файлу G-коду Ñк перший аргумент, Ñ– вони можуть отримати доÑтуп до параметрів конфігурації Slic3r, прочитавши змінні Ñередовища."
-
-#: src/libslic3r/PrintConfig.cpp:1452
-msgid "Printer type"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1453
-msgid "Type of the printer."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1457
-msgid "Printer notes"
-msgstr "Примітки принтера"
-
-#: src/libslic3r/PrintConfig.cpp:1458
-msgid "You can put your notes regarding the printer here."
-msgstr "Тут ви можете поміÑтити Ñвої нотатки щодо принтера."
-
-#: src/libslic3r/PrintConfig.cpp:1467
-msgid "Printer vendor"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1468
-msgid "Name of the printer vendor."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1472
-msgid "Printer variant"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1473
-msgid "Name of the printer variant. For example, the printer variants may be differentiated by a nozzle diameter."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1483
-msgid "Raft layers"
-msgstr "ПлоÑкі шари"
-
-#: src/libslic3r/PrintConfig.cpp:1485
-msgid "The object will be raised by this number of layers, and support material will be generated under it."
-msgstr "Об'єкт буде піднÑтий цією кількіÑтю шарів, Ñ– під ним буде згенерований матеріал підтримки."
-
-#: src/libslic3r/PrintConfig.cpp:1494
-msgid "Resolution"
-msgstr "Роздільна здатніÑть"
-
-#: src/libslic3r/PrintConfig.cpp:1495
-msgid "Minimum detail resolution, used to simplify the input file for speeding up the slicing job and reducing memory usage. High-resolution models often carry more detail than printers can render. Set to zero to disable any simplification and use full resolution from input."
-msgstr "Мінімальна роздільна здатніÑть деталі, що викориÑтовуєтьÑÑ Ð´Ð»Ñ ÑÐ¿Ñ€Ð¾Ñ‰ÐµÐ½Ð½Ñ Ð²Ñ…Ñ–Ð´Ð½Ð¾Ð³Ð¾ файлу Ð´Ð»Ñ Ð¿Ñ€Ð¸ÑÐºÐ¾Ñ€ÐµÐ½Ð½Ñ Ñ€Ð¾Ð±Ð¾Ñ‚Ð¸ над розрізаннÑм та Ð·Ð¼ÐµÐ½ÑˆÐµÐ½Ð½Ñ Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð°Ð½Ð½Ñ Ð¿Ð°Ð¼'Ñті. Моделі з виÑокою роздільною здатніÑтю чаÑто неÑуть більш детальну інформацію, ніж можуть зробити принтери. Ð’Ñтановіть 0, щоб вимкнути будь-Ñке ÑÐ¿Ñ€Ð¾Ñ‰ÐµÐ½Ð½Ñ Ñ‚Ð° викориÑтовувати повну роздільну здатніÑть від введеннÑ."
-
-#: src/libslic3r/PrintConfig.cpp:1506
-msgid "Minimum travel after retraction"
-msgstr "Мінімальне Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Ð¿Ñ–ÑÐ»Ñ Ð¿ÐµÑ€ÐµÑ€Ð¸Ð²Ð°Ð½Ð½Ñ"
-
-#: src/libslic3r/PrintConfig.cpp:1507
-msgid "Retraction is not triggered when travel moves are shorter than this length."
-msgstr "ÐŸÐµÑ€ÐµÑ€Ð¸Ð²Ð°Ð½Ð½Ñ Ð½Ðµ Ñпрацьовує, коли Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ ÐºÐ¾Ñ€Ð¾Ñ‚ÑˆÐµ за цю довжину."
-
-#: src/libslic3r/PrintConfig.cpp:1514
-msgid "Retract amount before wipe"
-msgstr "КількіÑть переривань перед чищеннÑм"
-
-#: src/libslic3r/PrintConfig.cpp:1515
-msgid "With bowden extruders, it may be wise to do some amount of quick retract before doing the wipe movement."
-msgstr "ЗавдÑки екÑтрудерам з бандами, має зміÑÑ‚ зробити певну кількіÑть переривань перед рухами очищеннÑ."
-
-#: src/libslic3r/PrintConfig.cpp:1523
-msgid "Retract on layer change"
-msgstr "ÐŸÐµÑ€ÐµÑ€Ð¸Ð²Ð°Ð½Ð½Ñ Ð½Ð° зміну шарів"
-
-#: src/libslic3r/PrintConfig.cpp:1524
-msgid "This flag enforces a retraction whenever a Z move is done."
-msgstr "Цей прапор забезпечує Ð¿ÐµÑ€ÐµÑ€Ð¸Ð²Ð°Ð½Ð½Ñ ÐºÐ¾Ð¶Ð½Ð¾Ð³Ð¾ разу, коли виконуєтьÑÑ Ð¿ÐµÑ€ÐµÐ¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Z."
-
-#: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:1539
-msgid "Length"
-msgstr "Довжина"
-
-#: src/libslic3r/PrintConfig.cpp:1531
-msgid "Retraction Length"
-msgstr "Довжина перериваннÑ"
-
-#: src/libslic3r/PrintConfig.cpp:1532
-msgid "When retraction is triggered, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
-msgstr "Коли Ñпрацьовує перериваннÑ, філамент відтÑгуєтьÑÑ Ð½Ð°Ð·Ð°Ð´ до вказаної кількоÑті (довжина вимірюєтьÑÑ Ð½Ð° Ñирого філаменту перед тим, Ñк вона надходить у екÑтрудер)."
-
-#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1544
-msgid "mm (zero to disable)"
-msgstr "мм (0, щоб вимкнути)"
-
-#: src/libslic3r/PrintConfig.cpp:1540
-msgid "Retraction Length (Toolchange)"
-msgstr "Довжина Ð¿ÐµÑ€ÐµÑ€Ð¸Ð²Ð°Ð½Ð½Ñ (зміна інÑтрумента)"
-
-#: src/libslic3r/PrintConfig.cpp:1541
-msgid "When retraction is triggered before changing tool, filament is pulled back by the specified amount (the length is measured on raw filament, before it enters the extruder)."
-msgstr "Коли Ñпрацьовує Ð¿ÐµÑ€ÐµÑ€Ð¸Ð²Ð°Ð½Ð½Ñ Ð½Ð° зміну інÑтрумента, філамент відтÑгуєтьÑÑ Ð½Ð°Ð·Ð°Ð´ до вказаної кількоÑті (довжина вимірюєтьÑÑ Ð½Ð° Ñирого філаменту перед тим, Ñк вона надходить у екÑтрудер)."
-
-#: src/libslic3r/PrintConfig.cpp:1550
-msgid "Lift Z"
-msgstr "ПіднÑти Z"
-
-#: src/libslic3r/PrintConfig.cpp:1551
-msgid "If you set this to a positive value, Z is quickly raised every time a retraction is triggered. When using multiple extruders, only the setting for the first extruder will be considered."
-msgstr "Якщо ви вÑтановите це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿Ð¾Ð·Ð¸Ñ‚Ð¸Ð²Ð½Ð¸Ð¼, Z швидко піднімаєтьÑÑ Ñ‰Ð¾Ñ€Ð°Ð·Ñƒ, коли Ñпрацьовує перериваннÑ. При викориÑтанні декількох екÑтрудерів буде розглÑнуто Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð»Ð¸ÑˆÐµ першого екÑтрудера."
-
-#: src/libslic3r/PrintConfig.cpp:1559
-msgid "Above Z"
-msgstr "Вище Z"
-
-#: src/libslic3r/PrintConfig.cpp:1560
-msgid "Only lift Z above"
-msgstr "Тільки піднімати Z"
-
-#: src/libslic3r/PrintConfig.cpp:1561
-msgid "If you set this to a positive value, Z lift will only take place above the specified absolute Z. You can tune this setting for skipping lift on the first layers."
-msgstr "Якщо ви вÑтановите це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿Ð¾Ð·Ð¸Ñ‚Ð¸Ð²Ð½Ð¸Ð¼, Z буде лише підніматиÑÑ Ð½Ð°Ð» вказаним абÑолютним Z. Ви можете налаштувати цей параметр так, що піднÑÑ‚Ñ‚Ñ Ð±ÑƒÐ´Ðµ пропуÑкатиÑÑ Ð½Ð° перших шарах."
-
-#: src/libslic3r/PrintConfig.cpp:1569
-msgid "Below Z"
-msgstr "Ðижче Z"
-
-#: src/libslic3r/PrintConfig.cpp:1570
-msgid "Only lift Z below"
-msgstr "Тільки опуÑкати Z"
-
-#: src/libslic3r/PrintConfig.cpp:1571
-msgid "If you set this to a positive value, Z lift will only take place below the specified absolute Z. You can tune this setting for limiting lift to the first layers."
-msgstr "Якщо ви вÑтановите це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿Ð¾Ð·Ð¸Ñ‚Ð¸Ð²Ð½Ð¸Ð¼, Z буде лише опуÑкатиÑÑ Ð½Ð¸Ð¶Ñ‡Ðµ вказаного абÑолютного Z. Ви можете налаштувати цей параметр так, що піднÑÑ‚Ñ‚Ñ Ð±ÑƒÐ´Ðµ обмежене на перших шарах."
-
-#: src/libslic3r/PrintConfig.cpp:1580 src/libslic3r/PrintConfig.cpp:1589
-msgid "Extra length on restart"
-msgstr "Додаткова довжина при перезапуÑку"
-
-#: src/libslic3r/PrintConfig.cpp:1581
-msgid "When the retraction is compensated after the travel move, the extruder will push this additional amount of filament. This setting is rarely needed."
-msgstr "Коли Ð¿ÐµÑ€ÐµÑ€Ð¸Ð²Ð°Ð½Ð½Ñ ÐºÐ¾Ð¼Ð¿ÐµÐ½ÑуєтьÑÑ Ð¿Ñ–ÑÐ»Ñ Ñ€ÑƒÑ…Ñƒ переміщеннÑ, екÑтрудер буде проштовхувати цю додаткову кількіÑть філамента. Цей параметр рідко потрібний."
-
-#: src/libslic3r/PrintConfig.cpp:1590
-msgid "When the retraction is compensated after changing tool, the extruder will push this additional amount of filament."
-msgstr "Коли Ð¿ÐµÑ€ÐµÑ€Ð¸Ð²Ð°Ð½Ð½Ñ ÐºÐ¾Ð¼Ð¿ÐµÐ½ÑуєтьÑÑ Ð¿Ñ–ÑÐ»Ñ Ð·Ð¼Ñ–Ð½Ð¸ інÑтрумента, екÑтрудер буде проштовхувати цю додаткову кількіÑть філамента."
-
-#: src/libslic3r/PrintConfig.cpp:1598 src/libslic3r/PrintConfig.cpp:1599
-msgid "Retraction Speed"
-msgstr "ШвидкіÑть перериваннÑ"
-
-#: src/libslic3r/PrintConfig.cpp:1600
-msgid "The speed for retractions (it only applies to the extruder motor)."
-msgstr "ШвидкіÑть Ð¿ÐµÑ€ÐµÑ€Ð¸Ð²Ð°Ð½Ð½Ñ (це ÑтоÑуєтьÑÑ Ð»Ð¸ÑˆÐµ двигуна екÑтрудера)."
-
-#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1608
-msgid "Deretraction Speed"
-msgstr "ШвидкіÑть піÑлÑ-перериваннÑ"
-
-#: src/libslic3r/PrintConfig.cpp:1609
-msgid "The speed for loading of a filament into extruder after retraction (it only applies to the extruder motor). If left to zero, the retraction speed is used."
-msgstr "ШвидкіÑть Ð·Ð°Ð²ÐµÐ´ÐµÐ½Ð½Ñ Ñ„Ñ–Ð»Ð°Ð¼ÐµÐ½Ñ‚Ð° в екÑтрудер піÑÐ»Ñ Ð¿ÐµÑ€ÐµÑ€Ð¸Ð²Ð°Ð½Ð½Ñ (це ÑтоÑуєтьÑÑ Ð»Ð¸ÑˆÐµ двигуна екÑтрудера ). Якщо залишити 0, викориÑтовуєтьÑÑ ÑˆÐ²Ð¸Ð´ÐºÑ–Ñть Ð¿ÐµÑ€ÐµÑ€Ð¸Ð²Ð°Ð½Ð½Ñ ."
-
-#: src/libslic3r/PrintConfig.cpp:1617
-msgid "Seam position"
-msgstr "ÐŸÐ¾Ð·Ð¸Ñ†Ñ–Ñ ÑˆÐ²Ð°"
-
-#: src/libslic3r/PrintConfig.cpp:1619
-msgid "Position of perimeters starting points."
-msgstr "ÐŸÐ¾Ð·Ð¸Ñ†Ñ–Ñ Ñтартових точок периметра."
-
-#: src/libslic3r/PrintConfig.cpp:1626
-msgid "Random"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1627
-msgid "Nearest"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1628
-msgid "Aligned"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1629
-msgid "Rear"
-msgstr "Ззаду"
-
-#: src/libslic3r/PrintConfig.cpp:1636
-msgid "Direction"
-msgstr "ÐапрÑмок"
-
-#: src/libslic3r/PrintConfig.cpp:1638
-msgid "Preferred direction of the seam"
-msgstr "Бажаний напрÑмок шва"
-
-#: src/libslic3r/PrintConfig.cpp:1639
-msgid "Seam preferred direction"
-msgstr "Бажаний напрÑмок шва"
-
-#: src/libslic3r/PrintConfig.cpp:1647
-msgid "Jitter"
-msgstr "Джиттер"
-
-#: src/libslic3r/PrintConfig.cpp:1649
-msgid "Seam preferred direction jitter"
-msgstr "Бажаний напрÑмок шва джитера"
-
-#: src/libslic3r/PrintConfig.cpp:1650
-msgid "Preferred direction of the seam - jitter"
-msgstr "Бажаний напрÑмок шва - джитера"
-
-#: src/libslic3r/PrintConfig.cpp:1661
-msgid "USB/serial port for printer connection."
-msgstr "USB / поÑлідовний порт Ð´Ð»Ñ Ð¿Ñ–Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¸Ð½Ñ‚ÐµÑ€Ð°."
-
-#: src/libslic3r/PrintConfig.cpp:1669
-msgid "Serial port speed"
-msgstr "ШвидкіÑть поÑлідовного порту"
-
-#: src/libslic3r/PrintConfig.cpp:1670
-msgid "Speed (baud) of USB/serial port for printer connection."
-msgstr "ШвидкіÑть (бод) USB / поÑлідовного порту Ð´Ð»Ñ Ð¿Ñ–Ð´ÐºÐ»ÑŽÑ‡ÐµÐ½Ð½Ñ Ð¿Ñ€Ð¸Ð½Ñ‚ÐµÑ€Ð°."
-
-#: src/libslic3r/PrintConfig.cpp:1679
-msgid "Distance from object"
-msgstr "ВідÑтань від об'єкту"
-
-#: src/libslic3r/PrintConfig.cpp:1680
-msgid "Distance between skirt and object(s). Set this to zero to attach the skirt to the object(s) and get a brim for better adhesion."
-msgstr "ВідÑтань між плінтуÑом та об'єктом (-ами). УÑтановіть 0, щоб прикріпити Ð¿Ð»Ñ–Ð½Ñ‚ÑƒÑ Ð´Ð¾ об'єкта (-ів) Ñ– отримати край Ð´Ð»Ñ ÐºÑ€Ð°Ñ‰Ð¾Ñ— адгезії."
-
-#: src/libslic3r/PrintConfig.cpp:1688
-msgid "Skirt height"
-msgstr "ВиÑота плінтуÑу"
-
-#: src/libslic3r/PrintConfig.cpp:1689
-msgid "Height of skirt expressed in layers. Set this to a tall value to use skirt as a shield against drafts."
-msgstr "ВиÑота плінтуÑу виражена в шарах. Ð’Ñтановіть це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð½Ð° виÑоке, щоб викориÑтовувати Ð¿Ð»Ñ–Ð½Ñ‚ÑƒÑ Ñк щит проти протÑгів."
-
-#: src/libslic3r/PrintConfig.cpp:1697
-msgid "Loops (minimum)"
-msgstr "Петлі (мінімум)"
-
-#: src/libslic3r/PrintConfig.cpp:1698
-msgid "Skirt Loops"
-msgstr "Петлі плінтуÑу"
-
-#: src/libslic3r/PrintConfig.cpp:1699
-msgid "Number of loops for the skirt. If the Minimum Extrusion Length option is set, the number of loops might be greater than the one configured here. Set this to zero to disable skirt completely."
-msgstr "КількіÑть петель Ð´Ð»Ñ Ð¿Ð»Ñ–Ð½Ñ‚ÑƒÑу. Якщо вÑтановлено параметр \"Мінімальна довжина екÑтрузії\", кількіÑть петель може бути більшою, ніж налаштована тут. УÑтановіть 0, щоб повніÑтю вимкнути плінтуÑ."
-
-#: src/libslic3r/PrintConfig.cpp:1708
-msgid "Slow down if layer print time is below"
-msgstr "УповільненнÑ, Ñкщо Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ шару нижче"
-
-#: src/libslic3r/PrintConfig.cpp:1709
-msgid "If layer print time is estimated below this number of seconds, print moves speed will be scaled down to extend duration to this value."
-msgstr "Якщо Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ шару оцінюєтьÑÑ Ð½Ð¸Ð¶Ñ‡Ðµ цієї кількоÑті Ñекунд, швидкіÑть друку рухів зменшуватиметьÑÑ, щоб збільшити триваліÑть до цього значеннÑ."
-
-#: src/libslic3r/PrintConfig.cpp:1720
-msgid "Small perimeters"
-msgstr "Маленькі периметри"
-
-#: src/libslic3r/PrintConfig.cpp:1722
-msgid "This separate setting will affect the speed of perimeters having radius <= 6.5mm (usually holes). If expressed as percentage (for example: 80%) it will be calculated on the perimeters speed setting above. Set to zero for auto."
-msgstr "Цей окремий параметр впливає на швидкіÑть периметрів, що мають Ñ€Ð°Ð´Ñ–ÑƒÑ <= 6,5 мм (Ñк правило, дірки). Якщо вона виражена у відÑотках (наприклад: 80%), вона буде розрахована за наведеним вище параметром швидкоÑті. Ð’Ñтановити 0 Ð´Ð»Ñ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾Ð³Ð¾ викориÑтаннÑ."
-
-#: src/libslic3r/PrintConfig.cpp:1732
-msgid "Solid infill threshold area"
-msgstr "Порогова площа Ñуцільного наповненнÑ"
-
-#: src/libslic3r/PrintConfig.cpp:1734
-msgid "Force solid infill for regions having a smaller area than the specified threshold."
-msgstr "Ð’Ñтановити Ñуцільне Ð·Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ð´Ð»Ñ Ñ€ÐµÐ³Ñ–Ð¾Ð½Ñ–Ð², що мають площу, меншу зазначеного порогу."
-
-#: src/libslic3r/PrintConfig.cpp:1735
-msgid "mm²"
-msgstr "мм²"
-
-#: src/libslic3r/PrintConfig.cpp:1742
-msgid "Solid infill extruder"
-msgstr "ЕкÑтрудер Ñуцільних наповнень"
-
-#: src/libslic3r/PrintConfig.cpp:1744
-msgid "The extruder to use when printing solid infill."
-msgstr "ЕкÑтрудер Ð´Ð»Ñ Ð´Ñ€ÑƒÐºÑƒ Ñуцільних наповнень."
-
-#: src/libslic3r/PrintConfig.cpp:1751
-msgid "Solid infill every"
-msgstr "Суцільне Ð½Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ ÐºÐ¾Ð¶Ð½Ñ–"
-
-#: src/libslic3r/PrintConfig.cpp:1753
-msgid "This feature allows to force a solid layer every given number of layers. Zero to disable. You can set this to any value (for example 9999); Slic3r will automatically choose the maximum possible number of layers to combine according to nozzle diameter and layer height."
-msgstr "Ð¦Ñ Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ Ð´Ð¾Ð·Ð²Ð¾Ð»ÑÑ” закріпити Ñуцільні шари на задану кількіÑть шарів. 0 - щоб відключити. Ви можете вÑтановити будь-Ñке Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ (наприклад, 9999); Slic3r автоматично вибере макÑимально можливу кількіÑть шарів Ð´Ð»Ñ ÐºÐ¾Ð¼Ð±Ñ–Ð½ÑƒÐ²Ð°Ð½Ð½Ñ Ð²Ñ–Ð´Ð¿Ð¾Ð²Ñ–Ð´Ð½Ð¾ до діаметра Ñопла та виÑоти шару."
-
-#: src/libslic3r/PrintConfig.cpp:1766
-msgid "Set this to a non-zero value to set a manual extrusion width for infill for solid surfaces. If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height."
-msgstr "Ð’Ñтановіть Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð½ÐµÐ½ÑƒÐ»ÑŒÐ¾Ð²Ð¸Ð¼, щоб вÑтановити ручну ширину екÑтрузії Ð´Ð»Ñ Ð½Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ð´Ð»Ñ Ñ‚Ð²ÐµÑ€Ð´Ð¸Ñ… поверхонь. Якщо залишити 0, буде викориÑтана ширина екÑтрузії за замовчуваннÑм, в іншому випадку викориÑтовуватиметьÑÑ 1,125 Ñ… діаметр Ñопла. Якщо він виражений у відÑотках (наприклад, 90%), він буде обчиÑлюватиÑÑ Ð·Ð° виÑотою шару."
-
-#: src/libslic3r/PrintConfig.cpp:1777
-msgid "Speed for printing solid regions (top/bottom/internal horizontal shells). This can be expressed as a percentage (for example: 80%) over the default infill speed above. Set to zero for auto."
-msgstr "ШвидкіÑть друку твердих облаÑтей (Ð²ÐµÑ€Ñ…Ð½Ñ / Ð½Ð¸Ð¶Ð½Ñ / Ð²Ð½ÑƒÑ‚Ñ€Ñ–ÑˆÐ½Ñ Ð³Ð¾Ñ€Ð¸Ð·Ð¾Ð½Ñ‚Ð°Ð»ÑŒÐ½Ð° оболонка). Може бути виражено у відÑотках (наприклад: 80%) від вказаної вище швидкоÑті Ð·Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ð·Ð° замовчуваннÑм. Ð’Ñтановити 0 Ð´Ð»Ñ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾Ð³Ð¾ викориÑтаннÑ."
-
-#: src/libslic3r/PrintConfig.cpp:1789
-msgid "Number of solid layers to generate on top and bottom surfaces."
-msgstr "КількіÑть Ñуцільних шарів Ð´Ð»Ñ Ð³ÐµÐ½ÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ð½Ð° верхній Ñ– нижній поверхні."
-
-#: src/libslic3r/PrintConfig.cpp:1796
-msgid "Spiral vase"
-msgstr "Спіральна ваза"
-
-#: src/libslic3r/PrintConfig.cpp:1797
-msgid "This feature will raise Z gradually while printing a single-walled object in order to remove any visible seam. This option requires a single perimeter, no infill, no top solid layers and no support material. You can still set any number of bottom solid layers as well as skirt/brim loops. It won't work when printing more than an object."
-msgstr "Ð¦Ñ Ñ„ÑƒÐ½ÐºÑ†Ñ–Ñ Ð±ÑƒÐ´Ðµ поÑтупово підвищувати Z протÑгом друку одного-Ñтінного об'єкта Ð´Ð»Ñ ÑƒÐ½Ð¸ÐºÐ½ÐµÐ½Ð½Ñ Ð±ÑƒÐ´ÑŒ-Ñкого видимого шву. Цей параметр вимагає одношарового периметру, відÑутнє наповненнÑ, відÑутніÑть верхніх Ñуцільних шарів Ñ– відÑутніÑть матеріалу підтримки. Ви вÑе ще можете вÑтановити будь-Ñку кількіÑть нижніх Ñуцільних шарів, а також петель плінтуÑу/краю. Це не Ñпрацює при друку більше, ніж одного об'єкта."
-
-#: src/libslic3r/PrintConfig.cpp:1806
-msgid "Temperature variation"
-msgstr "Ð’Ð°Ñ€Ñ–Ð°Ñ†Ñ–Ñ Ñ‚ÐµÐ¼Ð¿ÐµÑ€Ð°Ñ‚ÑƒÑ€Ð¸"
-
-#: src/libslic3r/PrintConfig.cpp:1807
-msgid "Temperature difference to be applied when an extruder is not active. Enables a full-height \"sacrificial\" skirt on which the nozzles are periodically wiped."
-msgstr "Відмітка температури, Ñка заÑтоÑовуєтьÑÑ, коли екÑтрудер не активний. Вмикає \"жертовний\" Ð¿Ð»Ñ–Ð½Ñ‚ÑƒÑ Ð½Ð° повній виÑоті, на Ñкі періодично очищуютьÑÑ Ñопла."
-
-#: src/libslic3r/PrintConfig.cpp:1818
-msgid "This start procedure is inserted at the beginning, after bed has reached the target temperature and extruder just started heating, and before extruder has finished heating. If Slic3r detects M104 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want."
-msgstr "Ð¦Ñ Ð¿Ð¾Ñ‡Ð°Ñ‚ÐºÐ¾Ð²Ð° процедура вÑтавлÑєтьÑÑ Ð½Ð° початку, піÑÐ»Ñ Ñ‚Ð¾Ð³Ð¾, Ñк полотно доÑÑгне цільової температури, а екÑтрудер тільки починає нагріватиÑÑ, Ñ– перед тим, Ñк екÑтрудер закінчить нагріваннÑ. Якщо Slic3r виÑвлÑÑ” M104 або M190 у ваших кориÑтувацьких кодах, такі команди не будуть додаватиÑÑ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾, щоб ви могли вільно налаштовувати порÑдок команд нагріву та інших Ñпеціальних дій. Зверніть увагу, що ви можете викориÑтовувати змінні-заповнювачі Ð´Ð»Ñ Ð²ÑÑ–Ñ… параметрів Slic3r, щоб ви могли поÑтавити команду \"M109 S [first_layer_temperature]\" де завгодно."
-
-#: src/libslic3r/PrintConfig.cpp:1834
-msgid "This start procedure is inserted at the beginning, after any printer start gcode. This is used to override settings for a specific filament. If Slic3r detects M104, M109, M140 or M190 in your custom codes, such commands will not be prepended automatically so you're free to customize the order of heating commands and other custom actions. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want. If you have multiple extruders, the gcode is processed in extruder order."
-msgstr "Ð¦Ñ Ð¿Ð¾Ñ‡Ð°Ñ‚ÐºÐ¾Ð²Ð° процедура вÑтавлÑєтьÑÑ Ð½Ð° початку, піÑÐ»Ñ Ñ‚Ð¾Ð³Ð¾, Ñк будь-Ñкий принтер запуÑкає G-code. Це викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð¿ÐµÑ€ÐµÐ²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿Ð°Ñ€Ð°Ð¼ÐµÑ‚Ñ€Ñ–Ð² Ð´Ð»Ñ Ð¿ÐµÐ²Ð½Ð¾Ñ— нитки. Якщо Slic3r виÑвлÑÑ” M104, M109, M140 або M190 у ваших кориÑтувацьких кодах, такі команди не будуть автоматично додаватиÑÑ, тому ви можете налаштувати порÑдок команд нагріву та інших Ñпеціальних дій. Зверніть увагу, що ви можете викориÑтовувати змінні-заповнювачі Ð´Ð»Ñ Ð²ÑÑ–Ñ… параметрів Slic3r, щоб ви могли поÑтавити команду \"M109 S [first_layer_temperature]\" де завгодно. Якщо у Ð²Ð°Ñ Ñ” кілька екÑтрудерів, G-code оброблÑєтьÑÑ Ð² порÑдку екÑтрудерів."
-
-#: src/libslic3r/PrintConfig.cpp:1850
-msgid "Single Extruder Multi Material"
-msgstr "Одиночний екÑтрудер кількох матеріалів"
-
-#: src/libslic3r/PrintConfig.cpp:1851
-msgid "The printer multiplexes filaments into a single hot end."
-msgstr "Принтер мультиплекÑує нитки в єдиний гарÑчий кінець."
-
-#: src/libslic3r/PrintConfig.cpp:1857
-msgid "Prime all printing extruders"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1858
-msgid "If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1864
-msgid "Generate support material"
-msgstr "Створити підтримуючий матеріал"
-
-#: src/libslic3r/PrintConfig.cpp:1866
-msgid "Enable support material generation."
-msgstr "Увімкнути генерацію матеріалів підтримки."
-
-#: src/libslic3r/PrintConfig.cpp:1871
-msgid "Auto generated supports"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1873
-msgid "If checked, supports will be generated automatically based on the overhang threshold value. If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1880
-msgid "XY separation between an object and its support"
-msgstr "Розподіл XY між об'єктом та його підтримкою"
-
-#: src/libslic3r/PrintConfig.cpp:1882
-msgid "XY separation between an object and its support. If expressed as percentage (for example 50%), it will be calculated over external perimeter width."
-msgstr "Розподіл XY між об'єктом та його підтримкою. Якщо вона виражена у відÑотках (наприклад, 50%), вона буде розрахована за зовнішньою шириною периметру."
-
-#: src/libslic3r/PrintConfig.cpp:1893
-msgid "Pattern angle"
-msgstr "Кут шаблону"
-
-#: src/libslic3r/PrintConfig.cpp:1895
-msgid "Use this setting to rotate the support material pattern on the horizontal plane."
-msgstr "ВикориÑтовуйте цей параметр, щоб повернути шаблон підтримуючого матеріалу на горизонтальній площині."
-
-#: src/libslic3r/PrintConfig.cpp:1906
-msgid "Only create support if it lies on a build plate. Don't create support on a print."
-msgstr "Створити підтримку лише, Ð´Ð»Ñ Ñ‚Ð¾Ð³Ð¾, що лежить на збірній плаÑтині. Ðе Ñтворювати підтримку на друк."
-
-#: src/libslic3r/PrintConfig.cpp:1913
-msgid "Contact Z distance"
-msgstr "Контактна відÑтань по оÑÑ– Z"
-
-#: src/libslic3r/PrintConfig.cpp:1915
-msgid "The vertical distance between object and support material interface. Setting this to 0 will also prevent Slic3r from using bridge flow and speed for the first object layer."
-msgstr "Вертикальна відÑтань між об'єктом та інтерфейÑом матеріалу підтримки. Ð’ÑÑ‚Ð°Ð½Ð¾Ð²Ð»ÐµÐ½Ð½Ñ Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ 0 також захиÑтить Slic3r від викориÑÑ‚Ð°Ð½Ð½Ñ Ð¿Ð¾Ñ‚Ð¾ÐºÑƒ моÑтів та швидкоÑті Ð´Ð»Ñ Ð¿ÐµÑ€ÑˆÐ¾Ð³Ð¾ шару об'єктну."
-
-#: src/libslic3r/PrintConfig.cpp:1923
-msgid "soluble"
-msgstr "розчинний"
-
-#: src/libslic3r/PrintConfig.cpp:1924
-msgid "detachable"
-msgstr "відривний"
-
-#: src/libslic3r/PrintConfig.cpp:1929
-msgid "Enforce support for the first"
-msgstr "Забезпечити підтримку першого(их)"
-
-#: src/libslic3r/PrintConfig.cpp:1931
-msgid "Generate support material for the specified number of layers counting from bottom, regardless of whether normal support material is enabled or not and regardless of any angle threshold. This is useful for getting more adhesion of objects having a very thin or poor footprint on the build plate."
-msgstr "Генерувати допоміжний матеріал Ð´Ð»Ñ Ð·Ð°Ð·Ð½Ð°Ñ‡ÐµÐ½Ð¾Ñ— кількоÑті шарів, що підраховують знизу, незалежно від того, включено чи ні нормальний матеріал підтримки, Ñ– незалежно від будь-Ñкого порогу кута. Це кориÑно Ð´Ð»Ñ Ð¾Ñ‚Ñ€Ð¸Ð¼Ð°Ð½Ð½Ñ Ð±Ñ–Ð»ÑŒÑˆÐ¾Ñ— адгезії об'єктів, що мають дуже тонкий або поганий Ñлід на збірній плаÑтині."
-
-#: src/libslic3r/PrintConfig.cpp:1937
-msgid "Enforce support for the first n layers"
-msgstr "Забезпечити підтримку перших n шарів"
-
-#: src/libslic3r/PrintConfig.cpp:1943
-msgid "Support material/raft/skirt extruder"
-msgstr "Підтримуючий матеріал / пліт / Ð¿Ð»Ñ–Ð½Ñ‚ÑƒÑ ÐµÐºÑтрудеру"
-
-#: src/libslic3r/PrintConfig.cpp:1945
-msgid "The extruder to use when printing support material, raft and skirt (1+, 0 to use the current extruder to minimize tool changes)."
-msgstr "ЕкÑтрудер Ð´Ð»Ñ Ð´Ñ€ÑƒÐºÑƒ підтримуючого матеріалу, плоту та плінтуÑу (1+, 0 Ð´Ð»Ñ Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð°Ð½Ð½Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ð³Ð¾ екÑтрудера, щоб мінімізувати зміни інÑтрументу)."
-
-#: src/libslic3r/PrintConfig.cpp:1955
-msgid "Set this to a non-zero value to set a manual extrusion width for support material. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height."
-msgstr "Ð’Ñтановіть Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð½ÐµÐ½ÑƒÐ»ÑŒÐ¾Ð²Ð¸Ð¼, щоб вÑтановити ручну ширину екÑтрузії матеріалу Ð´Ð»Ñ Ð¿Ñ–Ð´Ñ‚Ñ€Ð¸Ð¼ÐºÐ¸. Якщо залишити 0, буде викориÑтана ширина екÑтрузії, вÑтановлена за замовчуваннÑм, інакше викориÑтовуватиметьÑÑ Ð´Ñ–Ð°Ð¼ÐµÑ‚Ñ€ Ñопла. Якщо він виражений у відÑотках (наприклад, 90%), він буде обчиÑлюватиÑÑ Ð·Ð° виÑотою шару."
-
-#: src/libslic3r/PrintConfig.cpp:1964
-msgid "Interface loops"
-msgstr "ІнтерфейÑні петлі"
-
-#: src/libslic3r/PrintConfig.cpp:1966
-msgid "Cover the top contact layer of the supports with loops. Disabled by default."
-msgstr "Закрити петлÑми верхній контактний шар підтримки. За замовчаннÑм вимкнено."
-
-#: src/libslic3r/PrintConfig.cpp:1972
-msgid "Support material/raft interface extruder"
-msgstr "ЕкÑтрудер інтерфейÑу підтримуючого матеріалу / плоту"
-
-#: src/libslic3r/PrintConfig.cpp:1974
-msgid "The extruder to use when printing support material interface (1+, 0 to use the current extruder to minimize tool changes). This affects raft too."
-msgstr "ЕкÑтрудер, що викориÑтовуєтьÑÑ Ð¿Ñ–Ð´ Ñ‡Ð°Ñ Ð´Ñ€ÑƒÐºÑƒ інтерфейÑу матеріалу підтримки (1+, 0 Ð´Ð»Ñ Ð²Ð¸ÐºÐ¾Ñ€Ð¸ÑÑ‚Ð°Ð½Ð½Ñ Ð¿Ð¾Ñ‚Ð¾Ñ‡Ð½Ð¾Ð³Ð¾ екÑтрудера, щоб звеÑти до мінімуму зміни інÑтрументу). Це також впливає на плот."
-
-#: src/libslic3r/PrintConfig.cpp:1982
-msgid "Interface layers"
-msgstr "ІнтерфейÑні шари"
-
-#: src/libslic3r/PrintConfig.cpp:1984
-msgid "Number of interface layers to insert between the object(s) and support material."
-msgstr "КількіÑть шарів інтерфейÑу Ð´Ð»Ñ Ð²Ñтавки між об'єктом(ами) та підтримуючим матеріалом."
-
-#: src/libslic3r/PrintConfig.cpp:1992
-msgid "Interface pattern spacing"
-msgstr "ВідÑтань між шаблонами інтерфейÑу"
-
-#: src/libslic3r/PrintConfig.cpp:1994
-msgid "Spacing between interface lines. Set zero to get a solid interface."
-msgstr "ВідÑтань між інтерфейÑними лініÑми. Ð’Ñтановити 0, щоб отримати надійний інтерфейÑ."
-
-#: src/libslic3r/PrintConfig.cpp:2004
-msgid "Speed for printing support material interface layers. If expressed as percentage (for example 50%) it will be calculated over support material speed."
-msgstr "ШвидкіÑть друку інтерфейÑних шарів підтримуючого матеріалу. Якщо вона виражена у відÑотках (наприклад, 50%), вона буде розрахована за швидкіÑтю матеріалу підтримки."
-
-#: src/libslic3r/PrintConfig.cpp:2013
-msgid "Pattern"
-msgstr "Шаблон"
-
-#: src/libslic3r/PrintConfig.cpp:2015
-msgid "Pattern used to generate support material."
-msgstr "Шаблон, що викориÑтовуєтьÑÑ Ð´Ð»Ñ ÑÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ Ð¼Ð°Ñ‚ÐµÑ€Ñ–Ð°Ð»Ñƒ підтримки."
-
-#: src/libslic3r/PrintConfig.cpp:2022
-msgid "Rectilinear grid"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2028
-msgid "Pattern spacing"
-msgstr "ВідÑтань між шаблонами"
-
-#: src/libslic3r/PrintConfig.cpp:2030
-msgid "Spacing between support material lines."
-msgstr "ВідÑтань між лініÑми підтримуючого матеріалу."
-
-#: src/libslic3r/PrintConfig.cpp:2040
-msgid "Speed for printing support material."
-msgstr "ШвидкіÑть друку підтримуючого матеріалу."
-
-#: src/libslic3r/PrintConfig.cpp:2047
-msgid "Synchronize with object layers"
-msgstr "Синхронізувати з шарами об'єкту"
-
-#: src/libslic3r/PrintConfig.cpp:2049
-msgid "Synchronize support layers with the object print layers. This is useful with multi-material printers, where the extruder switch is expensive."
-msgstr "Синхронізувати шари підтримки з шарами друку об'єкта. Це кориÑно викориÑтовувати з багато-матеріальними принтерами, де Ð¿ÐµÑ€ÐµÐ¼Ð¸ÐºÐ°Ð½Ð½Ñ ÐµÐºÑтрудерів -затратна процедура."
-
-#: src/libslic3r/PrintConfig.cpp:2056
-msgid "Overhang threshold"
-msgstr "Порог навиÑаннÑ"
-
-#: src/libslic3r/PrintConfig.cpp:2058
-msgid "Support material will not be generated for overhangs whose slope angle (90° = vertical) is above the given threshold. In other words, this value represent the most horizontal slope (measured from the horizontal plane) that you can print without support material. Set to zero for automatic detection (recommended)."
-msgstr "Матеріал підтримки не буде Ñформований Ð´Ð»Ñ Ð²Ð¸Ñтупів, кут нахилу (90° = вертикальний) Ñких перевищує заданий порог. Іншими Ñловами, це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¿Ñ€ÐµÐ´ÑтавлÑÑ” найбільш горизонтальний Ñхил (вимірюваний з горизонтальної площини), Ñкий ви можете надрукувати без підтримуючого матеріалу. Ð’Ñтановити 0 Ð´Ð»Ñ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾Ð³Ð¾ Ð²Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ (рекомендовано)."
-
-#: src/libslic3r/PrintConfig.cpp:2071
-msgid "With sheath around the support"
-msgstr "З оболонкою навколо підтримки"
-
-#: src/libslic3r/PrintConfig.cpp:2073
-msgid "Add a sheath (a single perimeter line) around the base support. This makes the support more reliable, but also more difficult to remove."
-msgstr "Додати оболонку (одну лінію периметра) навколо базової підтримки. Це робить підтримку більш надійною, але її важче видалити."
-
-#: src/libslic3r/PrintConfig.cpp:2081
-msgid "Extruder temperature for layers after the first one. Set this to zero to disable temperature control commands in the output."
-msgstr "Температура екÑтрудеру Ð´Ð»Ñ ÑˆÐ°Ñ€Ñ–Ð² піÑÐ»Ñ Ð¿ÐµÑ€ÑˆÐ¾Ð³Ð¾. УÑтановіть 0, щоб вимкнути команди ÐºÐµÑ€ÑƒÐ²Ð°Ð½Ð½Ñ Ñ‚ÐµÐ¼Ð¿ÐµÑ€Ð°Ñ‚ÑƒÑ€Ð¾ÑŽ на виході."
-
-#: src/libslic3r/PrintConfig.cpp:2084
-msgid "Temperature"
-msgstr "Температура"
-
-#: src/libslic3r/PrintConfig.cpp:2090
-msgid "Detect thin walls"
-msgstr "ВиÑÐ²Ð»ÐµÐ½Ð½Ñ Ñ‚Ð¾Ð½ÐºÐ¸Ñ… Ñтін"
-
-#: src/libslic3r/PrintConfig.cpp:2092
-msgid "Detect single-width walls (parts where two extrusions don't fit and we need to collapse them into a single trace)."
-msgstr "Ð’Ð¸Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð¾Ð´Ð½Ð¾ÑˆÐ°Ñ€Ð¾Ð²Ð¾Ñ— Ñтінки (чаÑтини, де два екÑтрузії не підходÑть, Ñ– нам потрібно згорнути Ñ—Ñ… у єдиний Ñлід)."
-
-#: src/libslic3r/PrintConfig.cpp:2099
-msgid "Threads"
-msgstr "Ðитки"
-
-#: src/libslic3r/PrintConfig.cpp:2100
-msgid "Threads are used to parallelize long-running tasks. Optimal threads number is slightly above the number of available cores/processors."
-msgstr "Ðитки викориÑтовуютьÑÑ Ð´Ð»Ñ Ð¿Ð°Ñ€Ð°Ð»ÐµÐ»Ñ–Ð·Ð°Ñ†Ñ–Ñ— довготривалих завдань. Оптимальна кількіÑть ниток трохи перевищує кількіÑть доÑтупних Ñдер / процеÑорів."
-
-#: src/libslic3r/PrintConfig.cpp:2112
-msgid "This custom code is inserted right before every extruder change. Note that you can use placeholder variables for all Slic3r settings as well as [previous_extruder] and [next_extruder]."
-msgstr "Цей Ñпеціальний код вÑтавлÑєтьÑÑ Ð±ÐµÐ·Ð¿Ð¾Ñередньо перед кожною зміненою екÑтрудера. Зверніть увагу, що ви можете викориÑтовувати змінні-заповнювачі Ð´Ð»Ñ Ð²ÑÑ–Ñ… параметрів Slic3r, а також [previous_extruder] Ñ– [next_extruder]."
-
-#: src/libslic3r/PrintConfig.cpp:2125
-msgid "Set this to a non-zero value to set a manual extrusion width for infill for top surfaces. You may want to use thinner extrudates to fill all narrow regions and get a smoother finish. If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. If expressed as percentage (for example 90%) it will be computed over layer height."
-msgstr "УÑтановіть ненульове значеннÑ, щоб вÑтановити ручну ширину екÑтрузії Ð´Ð»Ñ Ð½Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ Ð²ÐµÑ€Ñ…Ð½ÑŒÐ¾Ñ— поверхні. Ви можете викориÑтовувати більш тонкі екÑтрудати, щоб заповнити вÑÑ– вузькі облаÑті Ñ– отримати більш гладкий результат. Якщо залишити 0, буде викориÑтана ширина екÑтрузії, вÑтановлена за замовчуваннÑм, інакше викориÑтовуватиметьÑÑ Ð´Ñ–Ð°Ð¼ÐµÑ‚Ñ€ Ñопла. Якщо вона виражена у відÑотках (наприклад, 90%), вона буде обчиÑлюватиÑÑ Ð·Ð° виÑотою шару."
-
-#: src/libslic3r/PrintConfig.cpp:2137
-msgid "Speed for printing top solid layers (it only applies to the uppermost external layers and not to their internal solid layers). You may want to slow down this to get a nicer surface finish. This can be expressed as a percentage (for example: 80%) over the solid infill speed above. Set to zero for auto."
-msgstr "ШвидкіÑть друку верхніх Ñуцільних шарів (це ÑтоÑуєтьÑÑ Ñ‚Ñ–Ð»ÑŒÐºÐ¸ найвищих зовнішніх шарів, а не їхніх внутрішніх Ñуцільних шарів). Ви можете захотіти ÑповільненнÑ, щоб отримати більш гарну обробку поверхні. Це можна виразити відÑотком (наприклад, 80%) Ð·Ð²Ð¸Ñ‰ÐµÐ½Ð½Ñ ÑˆÐ²Ð¸Ð´ÐºÐ¾Ñті щільного Ð½Ð°Ð¿Ð¾Ð²Ð½ÐµÐ½Ð½Ñ . Ð’Ñтановити 0 Ð´Ð»Ñ Ð°Ð²Ñ‚Ð¾Ð¼Ð°Ñ‚Ð¸Ñ‡Ð½Ð¾Ð³Ð¾ обчиÑленнÑ."
-
-#: src/libslic3r/PrintConfig.cpp:2149
-msgctxt "Layers"
-msgid "Top"
-msgstr "Верхні"
-
-#: src/libslic3r/PrintConfig.cpp:2151
-msgid "Number of solid layers to generate on top surfaces."
-msgstr "КількіÑть Ñуцільних шарів, генерованих на верхніх поверхнÑÑ…."
-
-#: src/libslic3r/PrintConfig.cpp:2153
-msgid "Top solid layers"
-msgstr "Верхні Ñуцільні шари"
-
-#: src/libslic3r/PrintConfig.cpp:2159
-msgid "Speed for travel moves (jumps between distant extrusion points)."
-msgstr "ШвидкіÑть рухів переÑÑƒÐ²Ð°Ð½Ð½Ñ (Ñтрибки між далекими точками екÑтрузії)."
-
-#: src/libslic3r/PrintConfig.cpp:2168
-msgid "Use firmware retraction"
-msgstr "ВикориÑтовувати відмову прошивки"
-
-#: src/libslic3r/PrintConfig.cpp:2169
-msgid "This experimental setting uses G10 and G11 commands to have the firmware handle the retraction. This is only supported in recent Marlin."
-msgstr "Цей екÑпериментальний параметр викориÑтовує команди G10 Ñ– G11 Ð´Ð»Ñ Ð¾Ð±Ñ€Ð¾Ð±ÐºÐ¸ відмови прошивки. ОÑтаннім чаÑом це підтримуєтьÑÑ Ð»Ð¸ÑˆÐµ Marlin-ом."
-
-#: src/libslic3r/PrintConfig.cpp:2176
-msgid "Use relative E distances"
-msgstr "ВикориÑтовувати відноÑні E відÑтані"
-
-#: src/libslic3r/PrintConfig.cpp:2177
-msgid "If your firmware requires relative E values, check this, otherwise leave it unchecked. Most firmwares use absolute values."
-msgstr "Якщо ваша прошивка потребує відноÑне Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ E, зазначте це, інакше залиште його незазначеним. БільшіÑть прошивок викориÑтовують абÑолютні значеннÑ."
-
-#: src/libslic3r/PrintConfig.cpp:2184
-msgid "Use volumetric E"
-msgstr "ВикориÑтовувати об'ємний Е"
-
-#: src/libslic3r/PrintConfig.cpp:2185
-msgid "This experimental setting uses outputs the E values in cubic millimeters instead of linear millimeters. If your firmware doesn't already know filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] T0' in your start G-code in order to turn volumetric mode on and use the filament diameter associated to the filament selected in Slic3r. This is only supported in recent Marlin."
-msgstr "Цей екÑпериментальний параметр викориÑтовує виводи Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ E в кубічних міліметрах заміÑть лінійних міліметрів. Якщо ваша прошивку ще не знає діаметр ниток, ви можете вÑтановити такі команди, Ñк \"M200 D [filament_diameter_0] T0\" у вашому Ñтарті G-коду, щоб включити об'ємний режим Ñ– викориÑтовувати діаметр нитки, пов'Ñзаний з вибраною ниткою в Slic3r. ОÑтаннім чаÑом це підтримуєтьÑÑ Ð»Ð¸ÑˆÐµ Marlin-ом."
-
-#: src/libslic3r/PrintConfig.cpp:2196
-msgid "Enable variable layer height feature"
-msgstr "Увімкнути функцію шарів змінної виÑоти"
-
-#: src/libslic3r/PrintConfig.cpp:2197
-msgid "Some printers or printer setups may have difficulties printing with a variable layer height. Enabled by default."
-msgstr "ДеÑкі принтери або Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ð¿Ñ€Ð¸Ð½Ñ‚ÐµÑ€Ð° можуть мати труднощі з друкуваннÑм шарів змінної виÑоти. Увімкнено за умовчаннÑм."
-
-#: src/libslic3r/PrintConfig.cpp:2204
-msgid "Wipe while retracting"
-msgstr "Вичіщувати при відмові"
-
-#: src/libslic3r/PrintConfig.cpp:2205
-msgid "This flag will move the nozzle while retracting to minimize the possible blob on leaky extruders."
-msgstr "Цей прапорець переміÑтить Ñопло під Ñ‡Ð°Ñ Ð²Ñ–Ð´Ð¼Ð¾Ð²Ð¸, щоб мінімізувати можливіÑть ÑƒÑ‚Ð²Ð¾Ñ€ÐµÐ½Ð½Ñ ÐºÑ€Ð°Ð¿Ð»Ñ– на витікаючих екÑтрудерах."
-
-#: src/libslic3r/PrintConfig.cpp:2213
-msgid "Multi material printers may need to prime or purge extruders on tool changes. Extrude the excess material into the wipe tower."
-msgstr "Мульти-матеріальні принтери можуть потребувати заправки або Ð²Ð¸Ñ‡Ð¸Ñ‰ÐµÐ½Ð½Ñ ÐµÐºÑтрудерів при зміні інÑтрумента. ЕкÑтрудуйте надлишок матеріалу до вичищуючої вежі."
-
-#: src/libslic3r/PrintConfig.cpp:2220
-msgid "Purging volumes - load/unload volumes"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2221
-msgid "This vector saves required volumes to change from/to each tool used on the wipe tower. These values are used to simplify creation of the full purging volumes below. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2228
-msgid "Purging volumes - matrix"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2229
-msgid "This matrix describes volumes (in cubic milimetres) required to purge the new filament on the wipe tower for any given pair of tools. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2239
-msgid "Position X"
-msgstr "ÐŸÐ¾Ð·Ð¸Ñ†Ñ–Ñ X"
-
-#: src/libslic3r/PrintConfig.cpp:2240
-msgid "X coordinate of the left front corner of a wipe tower"
-msgstr "X координата лівого переднього кута вичищуючої вежі"
-
-#: src/libslic3r/PrintConfig.cpp:2247
-msgid "Position Y"
-msgstr "ÐŸÐ¾Ð·Ð¸Ñ†Ñ–Ñ Y"
-
-#: src/libslic3r/PrintConfig.cpp:2248
-msgid "Y coordinate of the left front corner of a wipe tower"
-msgstr "Y координата лівого переднього кута вичищуючої вежі"
-
-#: src/libslic3r/PrintConfig.cpp:2256
-msgid "Width of a wipe tower"
-msgstr "Ширина вичищуючої вежі"
-
-#: src/libslic3r/PrintConfig.cpp:2263
-msgid "Wipe tower rotation angle"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2264
-msgid "Wipe tower rotation angle with respect to x-axis "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2265
-msgid "degrees"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2272
-msgid "Wipe into this object's infill"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2273
-msgid "Purging after toolchange will done inside this object's infills. This lowers the amount of waste but may result in longer print time due to additional travel moves."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2281
-msgid "Wipe into this object"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2282
-msgid "Object will be used to purge the nozzle after a toolchange to save material that would otherwise end up in the wipe tower and decrease print time. Colours of the objects will be mixed as a result."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2289
-msgid "Maximal bridging distance"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2290
-msgid "Maximal distance between supports on sparse infill sections. "
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2297
-msgid "XY Size Compensation"
-msgstr "Ð—Ñ€Ñ–Ð²Ð½Ð¾Ð²Ð°Ð¶ÐµÐ½Ð½Ñ Ñ€Ð¾Ð·Ð¼Ñ–Ñ€Ñƒ за XY"
-
-#: src/libslic3r/PrintConfig.cpp:2299
-msgid "The object will be grown/shrunk in the XY plane by the configured value (negative = inwards, positive = outwards). This might be useful for fine-tuning hole sizes."
-msgstr "Об'єкт буде збільшений / зменшений у площині XY за заданим значеннÑм (негативний - внутрішній, позитивний - ззовнішній). Це може бути кориÑним Ð´Ð»Ñ Ñ‚Ð¾Ñ‡Ð½Ð¾Ð³Ð¾ Ð½Ð°Ð»Ð°ÑˆÑ‚ÑƒÐ²Ð°Ð½Ð½Ñ Ñ€Ð¾Ð·Ð¼Ñ–Ñ€Ñ–Ð² отворів."
-
-#: src/libslic3r/PrintConfig.cpp:2308
-msgid "Z offset"
-msgstr "Ð—Ð¼Ñ–Ñ‰ÐµÐ½Ð½Ñ Z"
-
-#: src/libslic3r/PrintConfig.cpp:2309
-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 "Це Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ Ð±ÑƒÐ´Ðµ додано/вилучено до/з уÑÑ–Ñ… координат Z у вихідному G-коді. Воно викориÑтовуєтьÑÑ Ð´Ð»Ñ Ð·Ñ€Ñ–Ð²Ð½Ð¾Ð²Ð°Ð¶ÐµÐ½Ð½Ñ Ð¿Ð¾Ð³Ð°Ð½Ð¾Ñ— кінцевої позиції Z: наприклад, Ñкщо ваш кінцевий нуль фактично залишає Ñопло на 0,3 мм від полотна друку, вÑтановіть його на Ð·Ð½Ð°Ñ‡ÐµÐ½Ð½Ñ -0,3 (або виправте ваш endstop)."
-
-#: src/libslic3r/PrintConfig.cpp:2319
-msgid "Bed size X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2320 src/libslic3r/PrintConfig.cpp:2327
-#: src/libslic3r/PrintConfig.cpp:2334 src/libslic3r/PrintConfig.cpp:2343
-#: src/libslic3r/PrintConfig.cpp:2351 src/libslic3r/PrintConfig.cpp:2359
-msgid "Dwarf"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2326
-msgid "Bed size Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2333
-msgid "Picture resolution X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2335 src/libslic3r/PrintConfig.cpp:2344
-msgid "px"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2342
-msgid "Picture resolution Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2350 src/libslic3r/PrintConfig.cpp:2430
-#: src/libslic3r/PrintConfig.cpp:2431
-msgid "Exposure time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2358
-msgid "Exposure time first layers"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2373
-msgid "Display width"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2374
-msgid "Width of the display"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2380
-msgid "Display height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2381
-msgid "Height of the display"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2387
-msgid "Number of pixels in"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2389
-msgid "Number of pixels in X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2396
-msgid "Number of pixels in Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2402
-msgid "Display orientation"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2403
-msgid "Set the actual LCD display orientation inside the SLA printer. Portrait mode will flip the meaning of display width and height parameters and the output images will be rotated by 90 degrees."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2410
-msgid "Landscape"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2411
-msgid "Portrait"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2415 src/libslic3r/PrintConfig.cpp:2416
-msgid "Printer scaling correction"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2422 src/libslic3r/PrintConfig.cpp:2423
-msgid "Initial layer height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439
-msgid "Initial exposure time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2446 src/libslic3r/PrintConfig.cpp:2447
-msgid "Correction for expansion when printing"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2452 src/libslic3r/PrintConfig.cpp:2453
-msgid "Correction for expansion after curing"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2458
-msgid "SLA print material notes"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2459
-msgid "You can put your notes regarding the SLA print material here."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2468 src/libslic3r/PrintConfig.cpp:2478
-msgid "Default SLA material profile"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2487
-msgid "Generate supports"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2489
-msgid "Generate supports for the models"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2494
-msgid "Support head front diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2496
-msgid "Diameter of the pointing side of the head"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2503
-msgid "Support head penetration"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2505
-msgid "How much the pinhead has to penetrate the model surface"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2512
-msgid "Support head width"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2514
-msgid "Width from the back sphere center to the front sphere center"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2521
-msgid "Support pillar diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2523
-msgid "Diameter in mm of the support pillars"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2530
-msgid "Support pillar connection mode"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2531
-msgid "Controls the bridge type between two neigboring pillars. Can be zig-zag, cross (double zig-zag) or dynamic which will automatically switch between the first two depending on the distance of the two pillars."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2540
-msgid "Zig-Zag"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2541
-msgid "Cross"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2542
-msgid "Dynamic"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2546
-msgid "Pillar widening factor"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2548
-msgid "Merging bridges or pillars into another pillars can increase the radius. Zero means no increase, one means full increase."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2557
-msgid "Support base diameter"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2559
-msgid "Diameter in mm of the pillar base"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2566
-msgid "Support base height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2568
-msgid "The height of the pillar base cone"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2575
-msgid "Critical angle"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2577
-msgid "The default angle for connecting support sticks and junctions."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2584
-msgid "Max bridge length"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2586
-msgid "The max length of a bridge"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2593
-msgid "Object elevation"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2595
-msgid "How much the supports should lift up the supported object."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2602
-msgid "Density on horizontal surfaces"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2604
-msgid "How many support points (approximately) should be placed on horizontal surface."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2605 src/libslic3r/PrintConfig.cpp:2614
-msgid "points per square dm"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2611
-msgid "Density on surfaces at 45 degrees"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2613
-msgid "How many support points (approximately) should be placed on surface sloping at 45 degrees."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2620
-msgid "Minimal support point height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2622
-msgid "No support points will be placed lower than this value from the bottom."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2629
-msgid "Use pad"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2631
-msgid "Add a pad underneath the supported model"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2636
-msgid "Pad wall thickness"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2645
-msgid "Pad wall height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2654
-msgid "Max merge distance"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2663
-msgid "Pad edge radius"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3017
-msgid "Cut model at the given Z."
-msgstr "Розрізати модель за заданим Z."
-
-#: src/libslic3r/PrintConfig.cpp:3022
-msgid "Dont arrange"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3023
-msgid "Don't arrange the objects on the build plate. The model coordinates define the absolute positions on the build plate. The option --center will be ignored."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3030
-msgid "User data directory"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3031
-msgid "Load and store settings at the given directory. This is useful for maintaining different profiles or including configurations from a network storage."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3038
-msgid "Export 3MF"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3039
-msgid "Slice the model and export slices as 3MF."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3044
-msgid "Slice"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3045
-msgid "Slice the model and export gcode."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3050
-msgid "Help"
-msgstr "Допомога"
-
-#: src/libslic3r/PrintConfig.cpp:3051
-msgid "Show this help."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3056
-msgid "Use GUI"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3057
-msgid "Forces the GUI launch instead of command line slicing (if you supply a model file, it will be loaded into the plater)"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3063
-msgid "Output Model Info"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3064
-msgid "Write information about the model to the console."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3069
-msgid "Load config file"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3070
-msgid "Load configuration from the specified file. It can be used more than once to load options from multiple files."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3075
-msgid "Do not use GUI"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3076
-msgid "Forces the command line slicing instead of gui. This takes precedence over --gui if both are present."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3081
-msgid "Output File"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3082
-msgid "The file where the output will be written (if not specified, it will be based on the input file)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3088
-msgid "Rotation angle around the Z axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3093
-msgid "Rotate around X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3094
-msgid "Rotation angle around the X axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3099
-msgid "Rotate around Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3100
-msgid "Rotation angle around the Y axis in degrees (0-360, default: 0)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3105
-msgid "Save config file"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3106
-msgid "Save configuration to the specified file."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3112
-msgid "Scaling factor (default: 1)."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3125
-msgid "Print center"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3126
-msgid "Center the print around the given center (default: 100, 100)."
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:176
-msgid "Mixed"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:396
-msgid "Height (mm)"
-msgstr "ВиÑота (мм)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:398
-msgid "Width (mm)"
-msgstr "Ширина (мм)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:400
-msgid "Speed (mm/s)"
-msgstr "ШвидкіÑть (мм/Ñ)"
-
-#: src/libslic3r/GCode/PreviewData.cpp:402
-msgid "Volumetric flow rate (mm3/s)"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:491
-msgid "Default print color"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:495
-#, c-format
-msgid "up to %.2f mm"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:499
-#, c-format
-msgid "above %.2f mm"
-msgstr ""
-
-#: src/libslic3r/GCode/PreviewData.cpp:504
-#, c-format
-msgid "%.2f - %.2f mm"
-msgstr ""
diff --git a/resources/localization/zh_CN/Slic3rPE_zh_new.po b/resources/localization/zh_CN/PrusaSlicer_zh.po
similarity index 63%
rename from resources/localization/zh_CN/Slic3rPE_zh_new.po
rename to resources/localization/zh_CN/PrusaSlicer_zh.po
index cdb0e4baa..5bd8871e4 100644
--- a/resources/localization/zh_CN/Slic3rPE_zh_new.po
+++ b/resources/localization/zh_CN/PrusaSlicer_zh.po
@@ -2,8 +2,8 @@ msgid ""
msgstr ""
"Project-Id-Version: Slic3rPE\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2019-01-17 13:39+0100\n"
-"PO-Revision-Date: 2019-01-21 12:21+0100\n"
+"POT-Creation-Date: 2019-04-09 14:34+0200\n"
+"PO-Revision-Date: 2019-04-09 16:44+0200\n"
"Last-Translator: Oleksandra Iushchenko \n"
"Language-Team: \n"
"Language: zh_CN\n"
@@ -19,11 +19,11 @@ msgstr ""
"X-Poedit-SearchPath-1: xs/xrc/slic3r/GUI\n"
"X-Poedit-SearchPath-2: xs/xrc/slic3r\n"
-#: src/slic3r/GUI/AboutDialog.cpp:33
+#: src/slic3r/GUI/AboutDialog.cpp:35
msgid "About Slic3r"
msgstr ""
-#: src/slic3r/GUI/AboutDialog.cpp:68 src/slic3r/GUI/MainFrame.cpp:51
+#: src/slic3r/GUI/AboutDialog.cpp:64 src/slic3r/GUI/MainFrame.cpp:52
msgid "Version"
msgstr ""
@@ -31,135 +31,135 @@ msgstr ""
msgid "Shape"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:50
+#: src/slic3r/GUI/BedShapeDialog.cpp:51
msgid "Rectangular"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:54
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:207 src/slic3r/GUI/Plater.cpp:125
-#: src/slic3r/GUI/Tab.cpp:2122
+#: src/slic3r/GUI/BedShapeDialog.cpp:55
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:118 src/slic3r/GUI/Plater.cpp:136
+#: src/slic3r/GUI/Tab.cpp:2185
msgid "Size"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:55
+#: src/slic3r/GUI/BedShapeDialog.cpp:56
msgid "Size in X and Y of the rectangular plate."
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:61
+#: src/slic3r/GUI/BedShapeDialog.cpp:62
msgid "Origin"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:62
+#: src/slic3r/GUI/BedShapeDialog.cpp:63
msgid ""
"Distance of the 0,0 G-code coordinate from the front left corner of the "
"rectangle."
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:66
+#: src/slic3r/GUI/BedShapeDialog.cpp:67
msgid "Circular"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:69 src/slic3r/GUI/ConfigWizard.cpp:92
-#: src/slic3r/GUI/ConfigWizard.cpp:456 src/slic3r/GUI/ConfigWizard.cpp:470
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:80
-#: src/libslic3r/PrintConfig.cpp:50 src/libslic3r/PrintConfig.cpp:58
-#: src/libslic3r/PrintConfig.cpp:180 src/libslic3r/PrintConfig.cpp:254
-#: src/libslic3r/PrintConfig.cpp:263 src/libslic3r/PrintConfig.cpp:315
-#: src/libslic3r/PrintConfig.cpp:326 src/libslic3r/PrintConfig.cpp:448
-#: src/libslic3r/PrintConfig.cpp:460 src/libslic3r/PrintConfig.cpp:480
-#: src/libslic3r/PrintConfig.cpp:679 src/libslic3r/PrintConfig.cpp:1178
-#: src/libslic3r/PrintConfig.cpp:1243 src/libslic3r/PrintConfig.cpp:1263
-#: src/libslic3r/PrintConfig.cpp:1283 src/libslic3r/PrintConfig.cpp:1365
-#: src/libslic3r/PrintConfig.cpp:1376 src/libslic3r/PrintConfig.cpp:1499
-#: src/libslic3r/PrintConfig.cpp:1508 src/libslic3r/PrintConfig.cpp:1554
-#: src/libslic3r/PrintConfig.cpp:1563 src/libslic3r/PrintConfig.cpp:1574
-#: src/libslic3r/PrintConfig.cpp:1583 src/libslic3r/PrintConfig.cpp:1592
-#: src/libslic3r/PrintConfig.cpp:1682 src/libslic3r/PrintConfig.cpp:1918
-#: src/libslic3r/PrintConfig.cpp:1995 src/libslic3r/PrintConfig.cpp:2031
-#: src/libslic3r/PrintConfig.cpp:2241 src/libslic3r/PrintConfig.cpp:2249
-#: src/libslic3r/PrintConfig.cpp:2257 src/libslic3r/PrintConfig.cpp:2291
-#: src/libslic3r/PrintConfig.cpp:2302 src/libslic3r/PrintConfig.cpp:2313
-#: src/libslic3r/PrintConfig.cpp:2321 src/libslic3r/PrintConfig.cpp:2328
-#: src/libslic3r/PrintConfig.cpp:2424 src/libslic3r/PrintConfig.cpp:2497
-#: src/libslic3r/PrintConfig.cpp:2506 src/libslic3r/PrintConfig.cpp:2515
-#: src/libslic3r/PrintConfig.cpp:2524 src/libslic3r/PrintConfig.cpp:2560
-#: src/libslic3r/PrintConfig.cpp:2569 src/libslic3r/PrintConfig.cpp:2587
-#: src/libslic3r/PrintConfig.cpp:2596 src/libslic3r/PrintConfig.cpp:2623
-#: src/libslic3r/PrintConfig.cpp:2639 src/libslic3r/PrintConfig.cpp:2648
-#: src/libslic3r/PrintConfig.cpp:2657 src/libslic3r/PrintConfig.cpp:2666
+#: src/slic3r/GUI/BedShapeDialog.cpp:70 src/slic3r/GUI/ConfigWizard.cpp:111
+#: src/slic3r/GUI/ConfigWizard.cpp:544 src/slic3r/GUI/ConfigWizard.cpp:558
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:115
+#: src/slic3r/GUI/RammingChart.cpp:81 src/slic3r/GUI/WipeTowerDialog.cpp:84
+#: src/libslic3r/PrintConfig.cpp:59 src/libslic3r/PrintConfig.cpp:66
+#: src/libslic3r/PrintConfig.cpp:75 src/libslic3r/PrintConfig.cpp:209
+#: src/libslic3r/PrintConfig.cpp:284 src/libslic3r/PrintConfig.cpp:292
+#: src/libslic3r/PrintConfig.cpp:342 src/libslic3r/PrintConfig.cpp:352
+#: src/libslic3r/PrintConfig.cpp:472 src/libslic3r/PrintConfig.cpp:483
+#: src/libslic3r/PrintConfig.cpp:501 src/libslic3r/PrintConfig.cpp:679
+#: src/libslic3r/PrintConfig.cpp:1165 src/libslic3r/PrintConfig.cpp:1226
+#: src/libslic3r/PrintConfig.cpp:1244 src/libslic3r/PrintConfig.cpp:1262
+#: src/libslic3r/PrintConfig.cpp:1314 src/libslic3r/PrintConfig.cpp:1324
+#: src/libslic3r/PrintConfig.cpp:1445 src/libslic3r/PrintConfig.cpp:1453
+#: src/libslic3r/PrintConfig.cpp:1494 src/libslic3r/PrintConfig.cpp:1502
+#: src/libslic3r/PrintConfig.cpp:1512 src/libslic3r/PrintConfig.cpp:1520
+#: src/libslic3r/PrintConfig.cpp:1528 src/libslic3r/PrintConfig.cpp:1611
+#: src/libslic3r/PrintConfig.cpp:1827 src/libslic3r/PrintConfig.cpp:1897
+#: src/libslic3r/PrintConfig.cpp:1931 src/libslic3r/PrintConfig.cpp:2123
+#: src/libslic3r/PrintConfig.cpp:2130 src/libslic3r/PrintConfig.cpp:2137
+#: src/libslic3r/PrintConfig.cpp:2167 src/libslic3r/PrintConfig.cpp:2177
+#: src/libslic3r/PrintConfig.cpp:2187 src/libslic3r/PrintConfig.cpp:2293
+#: src/libslic3r/PrintConfig.cpp:2368 src/libslic3r/PrintConfig.cpp:2377
+#: src/libslic3r/PrintConfig.cpp:2386 src/libslic3r/PrintConfig.cpp:2396
+#: src/libslic3r/PrintConfig.cpp:2440 src/libslic3r/PrintConfig.cpp:2450
+#: src/libslic3r/PrintConfig.cpp:2469 src/libslic3r/PrintConfig.cpp:2479
+#: src/libslic3r/PrintConfig.cpp:2488 src/libslic3r/PrintConfig.cpp:2506
+#: src/libslic3r/PrintConfig.cpp:2521 src/libslic3r/PrintConfig.cpp:2532
+#: src/libslic3r/PrintConfig.cpp:2545 src/libslic3r/PrintConfig.cpp:2555
msgid "mm"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:70 src/libslic3r/PrintConfig.cpp:676
+#: src/slic3r/GUI/BedShapeDialog.cpp:71 src/libslic3r/PrintConfig.cpp:676
msgid "Diameter"
msgstr "直径"
-#: src/slic3r/GUI/BedShapeDialog.cpp:71
+#: src/slic3r/GUI/BedShapeDialog.cpp:72
msgid ""
"Diameter of the print bed. It is assumed that origin (0,0) is located in the "
"center."
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:75 src/slic3r/GUI/GUI_Preview.cpp:265
+#: src/slic3r/GUI/BedShapeDialog.cpp:76 src/slic3r/GUI/GUI_Preview.cpp:239
#: src/libslic3r/GCode/PreviewData.cpp:175
msgid "Custom"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:79
+#: src/slic3r/GUI/BedShapeDialog.cpp:80
msgid "Load shape from STL..."
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:125
+#: src/slic3r/GUI/BedShapeDialog.cpp:126
msgid "Settings"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:298
+#: src/slic3r/GUI/BedShapeDialog.cpp:299
msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:315 src/slic3r/GUI/GUI_ObjectList.cpp:835
+#: src/slic3r/GUI/BedShapeDialog.cpp:316 src/slic3r/GUI/GUI_ObjectList.cpp:1252
msgid "Error! "
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:324
+#: src/slic3r/GUI/BedShapeDialog.cpp:325
msgid "The selected file contains no geometry."
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.cpp:328
+#: src/slic3r/GUI/BedShapeDialog.cpp:329
msgid ""
"The selected file contains several disjoint areas. This is not supported."
msgstr ""
-#: src/slic3r/GUI/BedShapeDialog.hpp:44 src/slic3r/GUI/ConfigWizard.cpp:419
+#: src/slic3r/GUI/BedShapeDialog.hpp:44 src/slic3r/GUI/ConfigWizard.cpp:507
msgid "Bed Shape"
msgstr ""
-#: src/slic3r/GUI/BonjourDialog.cpp:54
+#: src/slic3r/GUI/BonjourDialog.cpp:55
msgid "Network lookup"
msgstr ""
-#: src/slic3r/GUI/BonjourDialog.cpp:67
+#: src/slic3r/GUI/BonjourDialog.cpp:72
msgid "Address"
msgstr ""
-#: src/slic3r/GUI/BonjourDialog.cpp:68
+#: src/slic3r/GUI/BonjourDialog.cpp:73
msgid "Hostname"
msgstr ""
-#: src/slic3r/GUI/BonjourDialog.cpp:69
+#: src/slic3r/GUI/BonjourDialog.cpp:74
msgid "Service name"
msgstr ""
-#: src/slic3r/GUI/BonjourDialog.cpp:70
+#: src/slic3r/GUI/BonjourDialog.cpp:76
msgid "OctoPrint version"
msgstr ""
-#: src/slic3r/GUI/BonjourDialog.cpp:188
+#: src/slic3r/GUI/BonjourDialog.cpp:218
msgid "Searching for devices"
msgstr ""
-#: src/slic3r/GUI/BonjourDialog.cpp:195
+#: src/slic3r/GUI/BonjourDialog.cpp:225
msgid "Finished"
msgstr ""
@@ -177,146 +177,164 @@ msgid ""
"preset"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:16
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:17
msgid "Upgrade"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:18
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:19
msgid "Downgrade"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:20
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:21
msgid "Before roll back"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:22
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:23
msgid "User"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:25
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:26
msgid "Unknown"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:37
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:38
msgid "Active: "
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:43
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:44
msgid "slic3r version"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:44 src/slic3r/GUI/Preset.cpp:1156
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:45 src/slic3r/GUI/Preset.cpp:1250
msgid "print"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:45
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46
msgid "filaments"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:46 src/slic3r/GUI/Preset.cpp:1160
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:47 src/slic3r/GUI/Preset.cpp:1254
msgid "printer"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50 src/slic3r/GUI/Tab.cpp:838
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51 src/slic3r/GUI/Tab.cpp:872
msgid "vendor"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:50
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51
msgid "version"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:51
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:52
msgid "min slic3r version"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:53
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:54
msgid "max slic3r version"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57
msgid "model"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:56
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:57
msgid "variants"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:68
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:69
msgid "Incompatible with this Slic3r"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:71
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:72
msgid "Activate"
msgstr ""
-#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:97
+#: src/slic3r/GUI/ConfigSnapshotDialog.cpp:98
msgid "Configuration Snapshots"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:92
+#: src/slic3r/GUI/ConfigWizard.cpp:111
msgid "nozzle"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:93
-msgid "default"
+#: src/slic3r/GUI/ConfigWizard.cpp:115
+msgid "Alternate nozzles:"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:116
-msgid "Select all"
+#: src/slic3r/GUI/ConfigWizard.cpp:181
+msgid "All standard"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:117
-msgid "Select none"
+#: src/slic3r/GUI/ConfigWizard.cpp:182 src/slic3r/GUI/Tab.cpp:2909
+msgid "All"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:226
+#: src/slic3r/GUI/ConfigWizard.cpp:183 src/slic3r/GUI/Plater.cpp:414
+#: src/libslic3r/GCode/PreviewData.cpp:162
+msgid "None"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:284
#, c-format
msgid "Welcome to the Slic3r %s"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:226
+#: src/slic3r/GUI/ConfigWizard.cpp:284
msgid "Welcome"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:232 src/slic3r/GUI/GUI_App.cpp:606
+#: src/slic3r/GUI/ConfigWizard.cpp:288 src/slic3r/GUI/GUI_App.cpp:600
#, c-format
msgid "Run %s"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:234
+#: src/slic3r/GUI/ConfigWizard.cpp:290
#, c-format
msgid ""
"Hello, welcome to Slic3r Prusa Edition! This %s helps you with the initial "
"configuration; just a few settings and you will be ready to print."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:238
+#: src/slic3r/GUI/ConfigWizard.cpp:294
msgid ""
"Remove user profiles - install from scratch (a snapshot will be taken "
"beforehand)"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:263
-msgid "Other vendors"
+#: src/slic3r/GUI/ConfigWizard.cpp:325
+#, c-format
+msgid "%s Family"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:265
-msgid "Custom setup"
+#: src/slic3r/GUI/ConfigWizard.cpp:362
+msgid "Custom Printer Setup"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:289
+#: src/slic3r/GUI/ConfigWizard.cpp:362
+msgid "Custom Printer"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:364
+msgid "Define a custom printer profile"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:366
+msgid "Custom profile name:"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:390
msgid "Automatic updates"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:289
+#: src/slic3r/GUI/ConfigWizard.cpp:390
msgid "Updates"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:297 src/slic3r/GUI/Preferences.cpp:59
+#: src/slic3r/GUI/ConfigWizard.cpp:398 src/slic3r/GUI/Preferences.cpp:59
msgid "Check for application updates"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:300 src/slic3r/GUI/Preferences.cpp:61
+#: src/slic3r/GUI/ConfigWizard.cpp:401 src/slic3r/GUI/Preferences.cpp:61
msgid ""
"If enabled, Slic3r checks for new versions of Slic3r PE online. When a new "
"version becomes available a notification is displayed at the next "
@@ -324,11 +342,11 @@ msgid ""
"notification mechanisms, no automatic installation is done."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:304 src/slic3r/GUI/Preferences.cpp:67
+#: src/slic3r/GUI/ConfigWizard.cpp:405 src/slic3r/GUI/Preferences.cpp:67
msgid "Update built-in Presets automatically"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:307 src/slic3r/GUI/Preferences.cpp:69
+#: src/slic3r/GUI/ConfigWizard.cpp:408 src/slic3r/GUI/Preferences.cpp:69
msgid ""
"If enabled, Slic3r downloads updates of built-in system presets in the "
"background. These updates are downloaded into a separate temporary location. "
@@ -336,168 +354,184 @@ msgid ""
"startup."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:308
+#: src/slic3r/GUI/ConfigWizard.cpp:409
msgid ""
"Updates are never applied without user's consent and never overwrite user's "
"customized settings."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:313
+#: src/slic3r/GUI/ConfigWizard.cpp:414
msgid ""
"Additionally a backup snapshot of the whole configuration is created before "
"an update is applied."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:320
+#: src/slic3r/GUI/ConfigWizard.cpp:421
msgid "Other Vendors"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:322
+#: src/slic3r/GUI/ConfigWizard.cpp:423
msgid "Pick another vendor supported by Slic3r PE:"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:381
+#: src/slic3r/GUI/ConfigWizard.cpp:469
msgid "Firmware Type"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:381 src/slic3r/GUI/Tab.cpp:1820
+#: src/slic3r/GUI/ConfigWizard.cpp:469 src/slic3r/GUI/Tab.cpp:1870
msgid "Firmware"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:385
+#: src/slic3r/GUI/ConfigWizard.cpp:473
msgid "Choose the type of firmware used by your printer."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:419
+#: src/slic3r/GUI/ConfigWizard.cpp:507
msgid "Bed Shape and Size"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:422
+#: src/slic3r/GUI/ConfigWizard.cpp:510
msgid "Set the shape of your printer's bed."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:436
+#: src/slic3r/GUI/ConfigWizard.cpp:524
msgid "Filament and Nozzle Diameters"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:436
+#: src/slic3r/GUI/ConfigWizard.cpp:524
msgid "Print Diameters"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:452
+#: src/slic3r/GUI/ConfigWizard.cpp:540
msgid "Enter the diameter of your printer's hot end nozzle."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:455
+#: src/slic3r/GUI/ConfigWizard.cpp:543
msgid "Nozzle Diameter:"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:465
+#: src/slic3r/GUI/ConfigWizard.cpp:553
msgid "Enter the diameter of your filament."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:466
+#: src/slic3r/GUI/ConfigWizard.cpp:554
msgid ""
"Good precision is required, so use a caliper and do multiple measurements "
"along the filament, then compute the average."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:469
+#: src/slic3r/GUI/ConfigWizard.cpp:557
msgid "Filament Diameter:"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:487
+#: src/slic3r/GUI/ConfigWizard.cpp:575
msgid "Extruder and Bed Temperatures"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:487
+#: src/slic3r/GUI/ConfigWizard.cpp:575
msgid "Temperatures"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:503
+#: src/slic3r/GUI/ConfigWizard.cpp:591
msgid "Enter the temperature needed for extruding your filament."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:504
+#: src/slic3r/GUI/ConfigWizard.cpp:592
msgid "A rule of thumb is 160 to 230 °C for PLA, and 215 to 250 °C for ABS."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:507
+#: src/slic3r/GUI/ConfigWizard.cpp:595
msgid "Extrusion Temperature:"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:508 src/slic3r/GUI/ConfigWizard.cpp:522
+#: src/slic3r/GUI/ConfigWizard.cpp:596 src/slic3r/GUI/ConfigWizard.cpp:610
msgid "°C"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:517
+#: src/slic3r/GUI/ConfigWizard.cpp:605
msgid ""
"Enter the bed temperature needed for getting your filament to stick to your "
"heated bed."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:518
+#: src/slic3r/GUI/ConfigWizard.cpp:606
msgid ""
"A rule of thumb is 60 °C for PLA and 110 °C for ABS. Leave zero if you have "
"no heated bed."
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:521
+#: src/slic3r/GUI/ConfigWizard.cpp:609
msgid "Bed Temperature:"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:833
+#: src/slic3r/GUI/ConfigWizard.cpp:1001
+msgid "Select all standard printers"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1004
msgid "< &Back"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:834
+#: src/slic3r/GUI/ConfigWizard.cpp:1005
msgid "&Next >"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:835
+#: src/slic3r/GUI/ConfigWizard.cpp:1006
msgid "&Finish"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:906
+#: src/slic3r/GUI/ConfigWizard.cpp:1007 src/slic3r/GUI/FirmwareDialog.cpp:142
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:37
+#: src/slic3r/GUI/ProgressStatusBar.cpp:28
+msgid "Cancel"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1021
+msgid "Prusa FFF Technology Printers"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1024
+msgid "Prusa MSLA Technology Printers"
+msgstr ""
+
+#: src/slic3r/GUI/ConfigWizard.cpp:1111
msgid "Configuration Wizard"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:907
+#: src/slic3r/GUI/ConfigWizard.cpp:1112
msgid "Configuration &Wizard"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:909
+#: src/slic3r/GUI/ConfigWizard.cpp:1114
msgid "Configuration Assistant"
msgstr ""
-#: src/slic3r/GUI/ConfigWizard.cpp:910
+#: src/slic3r/GUI/ConfigWizard.cpp:1115
msgid "Configuration &Assistant"
msgstr ""
-#: src/slic3r/GUI/Field.cpp:109
+#: src/slic3r/GUI/Field.cpp:112
msgid "default value"
msgstr ""
-#: src/slic3r/GUI/Field.cpp:112
+#: src/slic3r/GUI/Field.cpp:115
msgid "parameter name"
msgstr ""
-#: src/slic3r/GUI/Field.cpp:140
+#: src/slic3r/GUI/Field.cpp:143
#, c-format
msgid "%s doesn't support percentage"
msgstr ""
-#: src/slic3r/GUI/Field.cpp:148 src/slic3r/GUI/Field.cpp:168
-msgid ""
-"Input value contains incorrect symbol(s).\n"
-"Use, please, only digits"
+#: src/slic3r/GUI/Field.cpp:157 src/slic3r/GUI/Field.cpp:180
+msgid "Invalid numeric input."
msgstr ""
-#: src/slic3r/GUI/Field.cpp:153
+#: src/slic3r/GUI/Field.cpp:162
msgid "Input value is out of range"
msgstr ""
-#: src/slic3r/GUI/Field.cpp:176
+#: src/slic3r/GUI/Field.cpp:188
#, c-format
msgid ""
"Do you mean %d%% instead of %d %s?\n"
@@ -505,40 +539,35 @@ msgid ""
"or NO if you are sure that %d %s is a correct value."
msgstr ""
-#: src/slic3r/GUI/Field.cpp:179
+#: src/slic3r/GUI/Field.cpp:191
msgid "Parameter validation"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:133
+#: src/slic3r/GUI/FirmwareDialog.cpp:141
msgid "Flash!"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:134 src/slic3r/GUI/GLGizmo.cpp:2270
-msgid "Cancel"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:135
+#: src/slic3r/GUI/FirmwareDialog.cpp:143
msgid "Flashing in progress. Please do not disconnect the printer!"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:245
+#: src/slic3r/GUI/FirmwareDialog.cpp:187
+msgid "Flashing failed: "
+msgstr ""
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:268
msgid "Flashing succeeded!"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:246
+#: src/slic3r/GUI/FirmwareDialog.cpp:269
msgid "Flashing failed. Please see the avrdude log below."
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:247
+#: src/slic3r/GUI/FirmwareDialog.cpp:270
msgid "Flashing cancelled."
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:279
-#, c-format
-msgid "Flashing failed: %s"
-msgstr ""
-
-#: src/slic3r/GUI/FirmwareDialog.cpp:293
+#: src/slic3r/GUI/FirmwareDialog.cpp:308
#, c-format
msgid ""
"This firmware hex file does not match the printer model.\n"
@@ -549,215 +578,322 @@ msgid ""
"Please only continue if you are sure this is the right thing to do."
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:380 src/slic3r/GUI/FirmwareDialog.cpp:414
+#: src/slic3r/GUI/FirmwareDialog.cpp:395 src/slic3r/GUI/FirmwareDialog.cpp:431
+#, c-format
msgid ""
-"Multiple Original Prusa i3 MMU 2.0 devices found. Please only connect one at "
-"a time for flashing."
+"Multiple %s devices found. Please only connect one at a time for flashing."
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:508
-msgid "The device could not have been found"
+#: src/slic3r/GUI/FirmwareDialog.cpp:412
+#, c-format
+msgid ""
+"The %s device was not found.\n"
+"If the device is connected, please press the Reset button next to the USB "
+"connector ..."
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:581
+#: src/slic3r/GUI/FirmwareDialog.cpp:525
+#, c-format
+msgid "The %s device could not have been found"
+msgstr ""
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:603
#, c-format
msgid "Error accessing port at %s: %s"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:690
+#: src/slic3r/GUI/FirmwareDialog.cpp:605
+#, c-format
+msgid "Error: %s"
+msgstr ""
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:735
msgid "Firmware flasher"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:712
+#: src/slic3r/GUI/FirmwareDialog.cpp:762
msgid "Firmware image:"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:716
+#: src/slic3r/GUI/FirmwareDialog.cpp:766
msgid "Serial port:"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:718
+#: src/slic3r/GUI/FirmwareDialog.cpp:768
msgid "Autodetected"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:719
+#: src/slic3r/GUI/FirmwareDialog.cpp:769
msgid "Rescan"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:726
+#: src/slic3r/GUI/FirmwareDialog.cpp:776
msgid "Progress:"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:729
+#: src/slic3r/GUI/FirmwareDialog.cpp:779
msgid "Status:"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:730
+#: src/slic3r/GUI/FirmwareDialog.cpp:780
msgid "Ready"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:750
-msgid "Advanced: avrdude output log"
+#: src/slic3r/GUI/FirmwareDialog.cpp:800
+msgid "Advanced: Output log"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:809
+#: src/slic3r/GUI/FirmwareDialog.cpp:811
+#: src/slic3r/GUI/PrintHostDialogs.cpp:161
+msgid "Close"
+msgstr ""
+
+#: src/slic3r/GUI/FirmwareDialog.cpp:859
msgid ""
"Are you sure you want to cancel firmware flashing?\n"
"This could leave your printer in an unusable state!"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:810
+#: src/slic3r/GUI/FirmwareDialog.cpp:860
msgid "Confirmation"
msgstr ""
-#: src/slic3r/GUI/FirmwareDialog.cpp:813
+#: src/slic3r/GUI/FirmwareDialog.cpp:863
msgid "Cancelling..."
msgstr ""
-#: src/slic3r/GUI/GLCanvas3D.cpp:4640
+#: src/slic3r/GUI/GLCanvas3D.cpp:709
msgid "Detected object outside print volume"
msgstr ""
-#: src/slic3r/GUI/GLCanvas3D.cpp:7962
+#: src/slic3r/GUI/GLCanvas3D.cpp:710
msgid "Detected toolpath outside print volume"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:751 src/slic3r/GUI/GUI_ObjectManipulation.cpp:300
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:322
-#: src/libslic3r/PrintConfig.cpp:3087
-msgid "Rotate"
-msgstr "旋转"
-
-#: src/slic3r/GUI/GLGizmo.cpp:785
-msgid "Rotation (deg)"
+#: src/slic3r/GUI/GLCanvas3D.cpp:711
+msgid "Some objects are not visible when editing supports"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:841 src/slic3r/GUI/GUI_ObjectManipulation.cpp:206
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:301
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:323
-#: src/libslic3r/PrintConfig.cpp:3111
-msgid "Scale"
-msgstr "缩放"
-
-#: src/slic3r/GUI/GLGizmo.cpp:1072
-msgid "Scale (%)"
+#: src/slic3r/GUI/GLCanvas3D.cpp:713
+msgid ""
+"Detected object outside print volume\n"
+"Resolve a clash to continue slicing/export process correctly"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:1200
-msgid "Move"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Position (mm)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1326
-msgid "Displacement (mm)"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:1430
-msgid "Place on face"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2207
-msgid "Left mouse click - add point"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2208
-msgid "Right mouse click - remove point"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2211
-msgid "Generate points automatically"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2212
-msgid "Remove all points"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2245
-msgid "SLA Support Points"
-msgstr ""
-
-#: src/slic3r/GUI/GLGizmo.cpp:2268 src/slic3r/GUI/GLGizmo.cpp:2468
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:35
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:195
msgid "Rotate lower part upwards"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2269 src/slic3r/GUI/GLGizmo.cpp:2470
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:36
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:198
msgid "Perform cut"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2276
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:43
msgid "Cut object:"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2356 src/slic3r/GUI/GLGizmo.cpp:2461
-#: src/libslic3r/PrintConfig.cpp:3016
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:88
+msgid "Cut [C]"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:188 src/libslic3r/PrintConfig.cpp:3006
msgid "Cut"
msgstr "切割"
-#: src/slic3r/GUI/GLGizmo.cpp:2466
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:193
msgid "Keep upper part"
msgstr ""
-#: src/slic3r/GUI/GLGizmo.cpp:2467
+#: src/slic3r/GUI/Gizmos/GLGizmoCut.cpp:194
msgid "Keep lower part"
msgstr ""
-#: src/slic3r/GUI/GUI.cpp:242
-msgid "Notice"
+#: src/slic3r/GUI/Gizmos/GLGizmoFlatten.cpp:32
+msgid "Place on face [F]"
msgstr ""
-#: src/slic3r/GUI/GUI.cpp:248
-msgid "Attempt to free unreferenced scalar"
+#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:51
+msgid "Move [M]"
msgstr ""
-#: src/slic3r/GUI/GUI.cpp:250 src/slic3r/GUI/WipeTowerDialog.cpp:40
-#: src/slic3r/GUI/WipeTowerDialog.cpp:322
+#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:176
+msgid "Position (mm)"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoMove.cpp:176
+msgid "Displacement (mm)"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:458
+msgid "Rotate [R]"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoRotate.cpp:491
+msgid "Rotation (deg)"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:51
+msgid "Scale [S]"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoScale.cpp:276
+msgid "Scale (%)"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:597
+msgid "Left mouse click - add point"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:598
+msgid "Right mouse click - remove point"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:599
+msgid "Shift + Left (+ drag) - select point(s)"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:606
+msgid "Head diameter: "
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:618
+msgid "Lock supports under new islands"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:622
+msgid "Remove selected points"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:626
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:679
+msgid "Remove all points"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:631
+msgid "Apply changes"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:636
+msgid "Discard changes"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:644
+msgid "Minimal points distance: "
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:655
+msgid "Support points density: "
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:669
+msgid "Auto-generate points [A]"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:675
+msgid "Manual editing [M]"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:738
+msgid "SLA Support Points [L]"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:767
+msgid "Do you want to save your manually edited support points ?\n"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:768
+msgid "Save changes?"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:897
+msgid ""
+"Autogeneration will erase all manually edited points.\n"
+"\n"
+"Are you sure you want to do it?\n"
+msgstr ""
+
+#: src/slic3r/GUI/Gizmos/GLGizmoSlaSupports.cpp:899 src/slic3r/GUI/GUI.cpp:288
+#: src/slic3r/GUI/WipeTowerDialog.cpp:44 src/slic3r/GUI/WipeTowerDialog.cpp:328
msgid "Warning"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:377
+#: src/slic3r/GUI/GUI.cpp:147 src/slic3r/GUI/Tab.cpp:2720
+msgid "It's impossible to print multi-part object(s) with SLA technology."
+msgstr ""
+
+#: src/slic3r/GUI/GUI.cpp:148
+msgid "Please check and fix your object list."
+msgstr ""
+
+#: src/slic3r/GUI/GUI.cpp:149 src/slic3r/GUI/GUI_App.cpp:679
+#: src/slic3r/GUI/Tab.cpp:2722
+msgid "Attention!"
+msgstr ""
+
+#: src/slic3r/GUI/GUI.cpp:282
+msgid "Notice"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:318
+msgid "Changing of an application language"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:326 src/slic3r/GUI/GUI_App.cpp:335
+msgid "Recreating"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:339
+msgid "Loading of a current presets"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:347
+msgid "Loading of a mode view"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:429
msgid "Choose one file (3MF):"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:389
+#: src/slic3r/GUI/GUI_App.cpp:441
msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:451
+#: src/slic3r/GUI/GUI_App.cpp:454
msgid "Array of language names and identifiers should have the same size."
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:461
+#: src/slic3r/GUI/GUI_App.cpp:464
msgid "Select the language"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:461
+#: src/slic3r/GUI/GUI_App.cpp:464
msgid "Language"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:529 src/libslic3r/PrintConfig.cpp:270
+#: src/slic3r/GUI/GUI_App.cpp:534 src/slic3r/GUI/GUI_ObjectList.cpp:1067
+#: src/libslic3r/PrintConfig.cpp:298
msgid "Default"
msgstr "默认"
-#: src/slic3r/GUI/GUI_App.cpp:609
+#: src/slic3r/GUI/GUI_App.cpp:603
msgid "&Configuration Snapshots"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:609
+#: src/slic3r/GUI/GUI_App.cpp:603
msgid "Inspect / activate configuration snapshots"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:610
+#: src/slic3r/GUI/GUI_App.cpp:604
msgid "Take Configuration &Snapshot"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:610
+#: src/slic3r/GUI/GUI_App.cpp:604
msgid "Capture a configuration snapshot"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:613
+#: src/slic3r/GUI/GUI_App.cpp:607
msgid "&Preferences"
msgstr ""
@@ -765,7 +901,7 @@ msgstr ""
msgid "Application preferences"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:616
+#: src/slic3r/GUI/GUI_App.cpp:616 src/slic3r/GUI/wxExtensions.cpp:2446
msgid "Simple"
msgstr ""
@@ -773,12 +909,14 @@ msgstr ""
msgid "Simple View Mode"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:617 src/slic3r/GUI/GUI_ObjectList.cpp:39
-#: src/slic3r/GUI/Tab.cpp:948 src/slic3r/GUI/Tab.cpp:962
-#: src/slic3r/GUI/Tab.cpp:1058 src/slic3r/GUI/Tab.cpp:1061
-#: src/slic3r/GUI/Tab.cpp:1425 src/slic3r/GUI/Tab.cpp:1840
-#: src/libslic3r/PrintConfig.cpp:156 src/libslic3r/PrintConfig.cpp:323
-#: src/libslic3r/PrintConfig.cpp:999 src/libslic3r/PrintConfig.cpp:2298
+#: src/slic3r/GUI/GUI_App.cpp:617 src/slic3r/GUI/GUI_ObjectList.cpp:73
+#: src/slic3r/GUI/Tab.cpp:977 src/slic3r/GUI/Tab.cpp:992
+#: src/slic3r/GUI/Tab.cpp:1090 src/slic3r/GUI/Tab.cpp:1093
+#: src/slic3r/GUI/Tab.cpp:1466 src/slic3r/GUI/Tab.cpp:1890
+#: src/slic3r/GUI/Tab.cpp:3347 src/slic3r/GUI/wxExtensions.cpp:2447
+#: src/libslic3r/PrintConfig.cpp:72 src/libslic3r/PrintConfig.cpp:186
+#: src/libslic3r/PrintConfig.cpp:349 src/libslic3r/PrintConfig.cpp:987
+#: src/libslic3r/PrintConfig.cpp:2173
msgid "Advanced"
msgstr "高级"
@@ -786,7 +924,7 @@ msgstr "高级"
msgid "Advanced View Mode"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:618
+#: src/slic3r/GUI/GUI_App.cpp:618 src/slic3r/GUI/wxExtensions.cpp:2448
msgid "Expert"
msgstr ""
@@ -794,572 +932,711 @@ msgstr ""
msgid "Expert View Mode"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:620
+#: src/slic3r/GUI/GUI_App.cpp:623
msgid "Mode"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:620
+#: src/slic3r/GUI/GUI_App.cpp:623
msgid "Slic3r View Mode"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:622
+#: src/slic3r/GUI/GUI_App.cpp:625
msgid "Change Application &Language"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:624
+#: src/slic3r/GUI/GUI_App.cpp:627
msgid "Flash printer &firmware"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:624
+#: src/slic3r/GUI/GUI_App.cpp:627
msgid "Upload a firmware image into an Arduino based printer"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:636
+#: src/slic3r/GUI/GUI_App.cpp:639
msgid "Taking configuration snapshot"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:636
+#: src/slic3r/GUI/GUI_App.cpp:639
msgid "Snapshot name"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:674
-msgid "Application will be restarted"
+#: src/slic3r/GUI/GUI_App.cpp:676
+msgid "Application will be restarted after language change."
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:674 src/slic3r/GUI/Tab.cpp:2606
-msgid "Attention!"
+#: src/slic3r/GUI/GUI_App.cpp:677
+msgid "3D-Scene will be cleaned."
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:691
+#: src/slic3r/GUI/GUI_App.cpp:678
+msgid "Please, check your changes before."
+msgstr ""
+
+#: src/slic3r/GUI/GUI_App.cpp:706
msgid "&Configuration"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:711
+#: src/slic3r/GUI/GUI_App.cpp:726
msgid "You have unsaved changes "
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:711
+#: src/slic3r/GUI/GUI_App.cpp:726
msgid ". Discard changes and continue anyway?"
msgstr ""
-#: src/slic3r/GUI/GUI_App.cpp:712
+#: src/slic3r/GUI/GUI_App.cpp:727
msgid "Unsaved Presets"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:31 src/libslic3r/PrintConfig.cpp:47
-#: src/libslic3r/PrintConfig.cpp:115 src/libslic3r/PrintConfig.cpp:357
-#: src/libslic3r/PrintConfig.cpp:410 src/libslic3r/PrintConfig.cpp:419
-#: src/libslic3r/PrintConfig.cpp:849 src/libslic3r/PrintConfig.cpp:1037
-#: src/libslic3r/PrintConfig.cpp:1354 src/libslic3r/PrintConfig.cpp:1426
-#: src/libslic3r/PrintConfig.cpp:1618 src/libslic3r/PrintConfig.cpp:2091
-#: src/libslic3r/PrintConfig.cpp:2150
+#: src/slic3r/GUI/GUI_ObjectList.cpp:28 src/slic3r/GUI/GUI_ObjectList.cpp:65
+#: src/libslic3r/PrintConfig.cpp:56 src/libslic3r/PrintConfig.cpp:149
+#: src/libslic3r/PrintConfig.cpp:380 src/libslic3r/PrintConfig.cpp:437
+#: src/libslic3r/PrintConfig.cpp:445 src/libslic3r/PrintConfig.cpp:841
+#: src/libslic3r/PrintConfig.cpp:1025 src/libslic3r/PrintConfig.cpp:1304
+#: src/libslic3r/PrintConfig.cpp:1370 src/libslic3r/PrintConfig.cpp:1551
+#: src/libslic3r/PrintConfig.cpp:1986 src/libslic3r/PrintConfig.cpp:2042
msgid "Layers and Perimeters"
msgstr "层和轮廓"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:32 src/slic3r/GUI/Tab.cpp:952
-#: src/slic3r/GUI/Tab.cpp:953 src/slic3r/GUI/Tab.cpp:1274
-#: src/libslic3r/PrintConfig.cpp:134 src/libslic3r/PrintConfig.cpp:366
-#: src/libslic3r/PrintConfig.cpp:730 src/libslic3r/PrintConfig.cpp:745
-#: src/libslic3r/PrintConfig.cpp:783 src/libslic3r/PrintConfig.cpp:938
-#: src/libslic3r/PrintConfig.cpp:949 src/libslic3r/PrintConfig.cpp:969
-#: src/libslic3r/PrintConfig.cpp:989 src/libslic3r/PrintConfig.cpp:1010
-#: src/libslic3r/PrintConfig.cpp:1733 src/libslic3r/PrintConfig.cpp:1752
+#: src/slic3r/GUI/GUI_ObjectList.cpp:29 src/slic3r/GUI/GUI_ObjectList.cpp:66
+#: src/slic3r/GUI/Plater.cpp:431 src/slic3r/GUI/Tab.cpp:981
+#: src/slic3r/GUI/Tab.cpp:982 src/slic3r/GUI/Tab.cpp:1311
+#: src/libslic3r/PrintConfig.cpp:166 src/libslic3r/PrintConfig.cpp:388
+#: src/libslic3r/PrintConfig.cpp:728 src/libslic3r/PrintConfig.cpp:742
+#: src/libslic3r/PrintConfig.cpp:779 src/libslic3r/PrintConfig.cpp:932
+#: src/libslic3r/PrintConfig.cpp:942 src/libslic3r/PrintConfig.cpp:960
+#: src/libslic3r/PrintConfig.cpp:978 src/libslic3r/PrintConfig.cpp:997
+#: src/libslic3r/PrintConfig.cpp:1658 src/libslic3r/PrintConfig.cpp:1675
msgid "Infill"
msgstr "å¡«å……"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_Preview.cpp:262
-#: src/slic3r/GUI/Tab.cpp:980 src/slic3r/GUI/Tab.cpp:981
-#: src/libslic3r/PrintConfig.cpp:305 src/libslic3r/PrintConfig.cpp:1484
-#: src/libslic3r/PrintConfig.cpp:1865 src/libslic3r/PrintConfig.cpp:1872
-#: src/libslic3r/PrintConfig.cpp:1881 src/libslic3r/PrintConfig.cpp:1894
-#: src/libslic3r/PrintConfig.cpp:1905 src/libslic3r/PrintConfig.cpp:1914
-#: src/libslic3r/PrintConfig.cpp:1930 src/libslic3r/PrintConfig.cpp:1953
-#: src/libslic3r/PrintConfig.cpp:1965 src/libslic3r/PrintConfig.cpp:1983
-#: src/libslic3r/PrintConfig.cpp:1993 src/libslic3r/PrintConfig.cpp:2003
-#: src/libslic3r/PrintConfig.cpp:2014 src/libslic3r/PrintConfig.cpp:2029
-#: src/libslic3r/PrintConfig.cpp:2038 src/libslic3r/PrintConfig.cpp:2039
-#: src/libslic3r/PrintConfig.cpp:2048 src/libslic3r/PrintConfig.cpp:2057
-#: src/libslic3r/PrintConfig.cpp:2072 src/libslic3r/GCode/PreviewData.cpp:172
+#: src/slic3r/GUI/GUI_ObjectList.cpp:30 src/slic3r/GUI/GUI_ObjectList.cpp:67
+#: src/slic3r/GUI/GUI_Preview.cpp:236 src/slic3r/GUI/Tab.cpp:1010
+#: src/slic3r/GUI/Tab.cpp:1011 src/libslic3r/PrintConfig.cpp:333
+#: src/libslic3r/PrintConfig.cpp:1431 src/libslic3r/PrintConfig.cpp:1779
+#: src/libslic3r/PrintConfig.cpp:1785 src/libslic3r/PrintConfig.cpp:1793
+#: src/libslic3r/PrintConfig.cpp:1805 src/libslic3r/PrintConfig.cpp:1815
+#: src/libslic3r/PrintConfig.cpp:1823 src/libslic3r/PrintConfig.cpp:1838
+#: src/libslic3r/PrintConfig.cpp:1859 src/libslic3r/PrintConfig.cpp:1870
+#: src/libslic3r/PrintConfig.cpp:1886 src/libslic3r/PrintConfig.cpp:1895
+#: src/libslic3r/PrintConfig.cpp:1904 src/libslic3r/PrintConfig.cpp:1915
+#: src/libslic3r/PrintConfig.cpp:1929 src/libslic3r/PrintConfig.cpp:1937
+#: src/libslic3r/PrintConfig.cpp:1938 src/libslic3r/PrintConfig.cpp:1947
+#: src/libslic3r/PrintConfig.cpp:1955 src/libslic3r/PrintConfig.cpp:1969
+#: src/libslic3r/GCode/PreviewData.cpp:172
msgid "Support material"
msgstr "æ”¯æ’‘ææ–™"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:34 src/slic3r/GUI/GUI_Preview.cpp:241
-#: src/slic3r/GUI/Tab.cpp:1005 src/libslic3r/PrintConfig.cpp:169
-#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:881
-#: src/libslic3r/PrintConfig.cpp:1011 src/libslic3r/PrintConfig.cpp:1416
-#: src/libslic3r/PrintConfig.cpp:1668 src/libslic3r/PrintConfig.cpp:1721
-#: src/libslic3r/PrintConfig.cpp:1776 src/libslic3r/PrintConfig.cpp:2136
-msgid "Speed"
-msgstr "速度"
-
-#: src/slic3r/GUI/GUI_ObjectList.cpp:35 src/slic3r/GUI/Tab.cpp:1038
-#: src/slic3r/GUI/Tab.cpp:1744 src/libslic3r/PrintConfig.cpp:430
-#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:1393
-#: src/libslic3r/PrintConfig.cpp:1743 src/libslic3r/PrintConfig.cpp:1944
-#: src/libslic3r/PrintConfig.cpp:1973 src/libslic3r/PrintConfig.cpp:2271
-#: src/libslic3r/PrintConfig.cpp:2280
+#: src/slic3r/GUI/GUI_ObjectList.cpp:33 src/slic3r/GUI/GUI_ObjectList.cpp:69
+#: src/slic3r/GUI/Tab.cpp:1070 src/slic3r/GUI/Tab.cpp:1794
+#: src/libslic3r/PrintConfig.cpp:455 src/libslic3r/PrintConfig.cpp:953
+#: src/libslic3r/PrintConfig.cpp:1339 src/libslic3r/PrintConfig.cpp:1667
+#: src/libslic3r/PrintConfig.cpp:1851 src/libslic3r/PrintConfig.cpp:1877
+#: src/libslic3r/PrintConfig.cpp:2149 src/libslic3r/PrintConfig.cpp:2157
msgid "Extruders"
msgstr "挤出头"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:36 src/libslic3r/PrintConfig.cpp:387
-#: src/libslic3r/PrintConfig.cpp:504 src/libslic3r/PrintConfig.cpp:836
-#: src/libslic3r/PrintConfig.cpp:970 src/libslic3r/PrintConfig.cpp:1403
-#: src/libslic3r/PrintConfig.cpp:1765 src/libslic3r/PrintConfig.cpp:1954
-#: src/libslic3r/PrintConfig.cpp:2124
+#: src/slic3r/GUI/GUI_ObjectList.cpp:39
+msgid "Pad and Support"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:68 src/slic3r/GUI/GUI_Preview.cpp:215
+#: src/slic3r/GUI/Tab.cpp:1035 src/libslic3r/PrintConfig.cpp:198
+#: src/libslic3r/PrintConfig.cpp:425 src/libslic3r/PrintConfig.cpp:870
+#: src/libslic3r/PrintConfig.cpp:998 src/libslic3r/PrintConfig.cpp:1360
+#: src/libslic3r/PrintConfig.cpp:1597 src/libslic3r/PrintConfig.cpp:1646
+#: src/libslic3r/PrintConfig.cpp:1697 src/libslic3r/PrintConfig.cpp:2028
+msgid "Speed"
+msgstr "速度"
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:70 src/libslic3r/PrintConfig.cpp:415
+#: src/libslic3r/PrintConfig.cpp:522 src/libslic3r/PrintConfig.cpp:829
+#: src/libslic3r/PrintConfig.cpp:961 src/libslic3r/PrintConfig.cpp:1348
+#: src/libslic3r/PrintConfig.cpp:1687 src/libslic3r/PrintConfig.cpp:1860
+#: src/libslic3r/PrintConfig.cpp:2017
msgid "Extrusion Width"
msgstr "挤出宽度"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:41 src/slic3r/GUI/Tab.cpp:3179
-#: src/slic3r/GUI/Tab.cpp:3180 src/libslic3r/PrintConfig.cpp:2488
-#: src/libslic3r/PrintConfig.cpp:2495 src/libslic3r/PrintConfig.cpp:2504
-#: src/libslic3r/PrintConfig.cpp:2513 src/libslic3r/PrintConfig.cpp:2522
-#: src/libslic3r/PrintConfig.cpp:2547 src/libslic3r/PrintConfig.cpp:2558
-#: src/libslic3r/PrintConfig.cpp:2567 src/libslic3r/PrintConfig.cpp:2576
-#: src/libslic3r/PrintConfig.cpp:2585 src/libslic3r/PrintConfig.cpp:2594
-#: src/libslic3r/PrintConfig.cpp:2603 src/libslic3r/PrintConfig.cpp:2612
-#: src/libslic3r/PrintConfig.cpp:2621
+#: src/slic3r/GUI/GUI_ObjectList.cpp:75 src/slic3r/GUI/Plater.cpp:410
+#: src/slic3r/GUI/Tab.cpp:3309 src/slic3r/GUI/Tab.cpp:3310
+#: src/libslic3r/PrintConfig.cpp:2359 src/libslic3r/PrintConfig.cpp:2366
+#: src/libslic3r/PrintConfig.cpp:2375 src/libslic3r/PrintConfig.cpp:2384
+#: src/libslic3r/PrintConfig.cpp:2394 src/libslic3r/PrintConfig.cpp:2420
+#: src/libslic3r/PrintConfig.cpp:2427 src/libslic3r/PrintConfig.cpp:2438
+#: src/libslic3r/PrintConfig.cpp:2448 src/libslic3r/PrintConfig.cpp:2457
+#: src/libslic3r/PrintConfig.cpp:2467 src/libslic3r/PrintConfig.cpp:2476
+#: src/libslic3r/PrintConfig.cpp:2486 src/libslic3r/PrintConfig.cpp:2496
+#: src/libslic3r/PrintConfig.cpp:2504
msgid "Supports"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:42 src/slic3r/GUI/Tab.cpp:3205
-#: src/slic3r/GUI/Tab.cpp:3206 src/libslic3r/PrintConfig.cpp:2630
-#: src/libslic3r/PrintConfig.cpp:2637 src/libslic3r/PrintConfig.cpp:2646
-#: src/libslic3r/PrintConfig.cpp:2655 src/libslic3r/PrintConfig.cpp:2664
+#: src/slic3r/GUI/GUI_ObjectList.cpp:76 src/slic3r/GUI/Tab.cpp:3337
+#: src/slic3r/GUI/Tab.cpp:3338 src/libslic3r/PrintConfig.cpp:2512
+#: src/libslic3r/PrintConfig.cpp:2519 src/libslic3r/PrintConfig.cpp:2530
+#: src/libslic3r/PrintConfig.cpp:2540 src/libslic3r/PrintConfig.cpp:2553
+#: src/libslic3r/PrintConfig.cpp:2562
msgid "Pad"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:115
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:129
+#: src/slic3r/GUI/GUI_ObjectList.cpp:173
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:45
msgid "Name"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:134
+#: src/slic3r/GUI/GUI_ObjectList.cpp:201
msgid "Right button click the icon to change the object settings"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:142
+#: src/slic3r/GUI/GUI_ObjectList.cpp:209
#, c-format
msgid "Auto-repaired (%d errors):\n"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:145
+#: src/slic3r/GUI/GUI_ObjectList.cpp:212
msgid "degenerate facets"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:146
+#: src/slic3r/GUI/GUI_ObjectList.cpp:213
msgid "edges fixed"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:147
+#: src/slic3r/GUI/GUI_ObjectList.cpp:214
msgid "facets removed"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:148
+#: src/slic3r/GUI/GUI_ObjectList.cpp:215
msgid "facets added"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:149
+#: src/slic3r/GUI/GUI_ObjectList.cpp:216
msgid "facets reversed"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:150
+#: src/slic3r/GUI/GUI_ObjectList.cpp:217
msgid "backwards edges"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:164
+#: src/slic3r/GUI/GUI_ObjectList.cpp:231
msgid "Right button click the icon to fix STL through Netfabb"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:196 src/slic3r/GUI/Tab.cpp:1389
-#: src/libslic3r/PrintConfig.cpp:429
+#: src/slic3r/GUI/GUI_ObjectList.cpp:278 src/slic3r/GUI/Tab.cpp:1430
+#: src/libslic3r/PrintConfig.cpp:454
msgid "Extruder"
msgstr "挤出头"
-#: src/slic3r/GUI/GUI_ObjectList.cpp:615
+#: src/slic3r/GUI/GUI_ObjectList.cpp:683 src/slic3r/GUI/GUI_ObjectList.cpp:963
+#: src/slic3r/GUI/GUI_ObjectList.cpp:969 src/slic3r/GUI/GUI_ObjectList.cpp:1199
+#, c-format
+msgid "Quick Add Settings (%s)"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:746
msgid "Select showing settings"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:655
+#: src/slic3r/GUI/GUI_ObjectList.cpp:874
msgid "Load"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659 src/slic3r/GUI/GUI_ObjectList.cpp:688
-#: src/slic3r/GUI/GUI_ObjectList.cpp:691
+#: src/slic3r/GUI/GUI_ObjectList.cpp:879 src/slic3r/GUI/GUI_ObjectList.cpp:911
+#: src/slic3r/GUI/GUI_ObjectList.cpp:914
msgid "Box"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
+#: src/slic3r/GUI/GUI_ObjectList.cpp:879
msgid "Cylinder"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
+#: src/slic3r/GUI/GUI_ObjectList.cpp:879
msgid "Sphere"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:659
+#: src/slic3r/GUI/GUI_ObjectList.cpp:879
msgid "Slab"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:671 src/slic3r/GUI/GUI_ObjectList.cpp:685
+#: src/slic3r/GUI/GUI_ObjectList.cpp:890 src/slic3r/GUI/GUI_ObjectList.cpp:906
msgid "Add part"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:672
+#: src/slic3r/GUI/GUI_ObjectList.cpp:891
msgid "Add modifier"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:673 src/slic3r/GUI/GUI_ObjectList.cpp:687
+#: src/slic3r/GUI/GUI_ObjectList.cpp:892 src/slic3r/GUI/GUI_ObjectList.cpp:910
msgid "Add support enforcer"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:674 src/slic3r/GUI/GUI_ObjectList.cpp:690
+#: src/slic3r/GUI/GUI_ObjectList.cpp:893 src/slic3r/GUI/GUI_ObjectList.cpp:913
msgid "Add support blocker"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:711
+#: src/slic3r/GUI/GUI_ObjectList.cpp:934
msgid "Split to parts"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:725
+#: src/slic3r/GUI/GUI_ObjectList.cpp:942
msgid "Add settings"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:739
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1009
msgid "Change type"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1009
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1016
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1153
+msgid "Set as a Separated Object"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1024
+msgid "Rename"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1034
+msgid "Fix through the Netfabb"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1041 src/slic3r/GUI/Plater.cpp:2861
+msgid "Export as STL"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1048
+msgid "Change extruder"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1073
+msgid "Select new extruder for the object/part"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1079 src/slic3r/GUI/Plater.cpp:2825
+#: src/slic3r/GUI/Plater.cpp:2843 src/slic3r/GUI/Tab.cpp:2860
+msgid "Delete"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1153
+msgid "Set as a Separated Objects"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1374
+msgid "Generic"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1516
msgid "You can't delete the last solid part from object."
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1017
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1533
msgid "You can't delete the last intance from object."
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1044 src/slic3r/GUI/Plater.cpp:1825
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1560 src/slic3r/GUI/Plater.cpp:2219
msgid ""
"The selected object couldn't be split because it contains only one part."
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1138
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1676
msgid "Group manipulation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1149
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1688
msgid "Object manipulation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1159
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1698
msgid "Object Settings to modify"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1163
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1702
msgid "Part Settings to modify"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1173
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1711
msgid "Part manipulation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1180
+#: src/slic3r/GUI/GUI_ObjectList.cpp:1717
msgid "Instance manipulation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1655
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2240
+msgid "Object or Instance"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2240
+msgid "Part"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2242
+msgid "Unsupported selection"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2243
+#, c-format
+msgid "You started your selection with %s Item."
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2244
+#, c-format
+msgid "In this mode you can select only other %s Items%s"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2247
+msgid "of a current Object"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2252
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2325 src/slic3r/GUI/Plater.cpp:117
+msgid "Info"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2366
msgid "You can't change a type of the last solid part of the object."
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1662
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2373
msgid "Select type of part"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1744 src/slic3r/GUI/Tab.cpp:3070
-#: src/slic3r/GUI/Tab.cpp:3074
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2538
+msgid "Enter new name"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2538
+msgid "Renaming"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2554
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2632 src/slic3r/GUI/Tab.cpp:3191
+#: src/slic3r/GUI/Tab.cpp:3195
msgid "The supplied name is not valid;"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectList.cpp:1745 src/slic3r/GUI/Tab.cpp:3071
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2555
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2633 src/slic3r/GUI/Tab.cpp:3192
msgid "the following characters are not allowed:"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:21
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2653
+msgid "Set extruder for selected items"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2654
+msgid "Select extruder number for selected objects and/or parts"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2667
+msgid "Select extruder number:"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectList.cpp:2668
+msgid "This extruder will be set for selected items"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:25
msgid "Object Manipulation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:132
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:47
msgid "Object name"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:204
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:252
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:115
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:160
msgid "Position"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:205
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:253
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:116
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:161
msgid "Rotation"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:254
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:117
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:201
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:221
+#: src/libslic3r/PrintConfig.cpp:3070
+msgid "Scale"
+msgstr "缩放"
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:162
msgid "Scale factors"
msgstr ""
-#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:321
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:200
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:220
+#: src/libslic3r/PrintConfig.cpp:3055
+msgid "Rotate"
+msgstr "旋转"
+
+#: src/slic3r/GUI/GUI_ObjectManipulation.cpp:219
msgid "Translate"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:235
+#: src/slic3r/GUI/GUI_ObjectSettings.cpp:58
+msgid "Additional Settings"
+msgstr ""
+
+#: src/slic3r/GUI/GUI_Preview.cpp:209
msgid "View"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/GUI_Preview.cpp:550
+#: src/slic3r/GUI/GUI_Preview.cpp:212 src/slic3r/GUI/GUI_Preview.cpp:525
#: src/libslic3r/GCode/PreviewData.cpp:394
msgid "Feature type"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:239 src/libslic3r/PrintConfig.cpp:443
+#: src/slic3r/GUI/GUI_Preview.cpp:213 src/libslic3r/PrintConfig.cpp:467
msgid "Height"
msgstr "高度"
-#: src/slic3r/GUI/GUI_Preview.cpp:240 src/libslic3r/PrintConfig.cpp:2255
+#: src/slic3r/GUI/GUI_Preview.cpp:214 src/libslic3r/PrintConfig.cpp:2135
msgid "Width"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:242
+#: src/slic3r/GUI/GUI_Preview.cpp:216
msgid "Volumetric flow rate"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:243 src/slic3r/GUI/GUI_Preview.cpp:347
-#: src/slic3r/GUI/GUI_Preview.cpp:496 src/slic3r/GUI/GUI_Preview.cpp:718
-#: src/libslic3r/GCode/PreviewData.cpp:404
+#: src/slic3r/GUI/GUI_Preview.cpp:217 src/slic3r/GUI/GUI_Preview.cpp:315
+#: src/slic3r/GUI/GUI_Preview.cpp:469 src/slic3r/GUI/GUI_Preview.cpp:525
+#: src/slic3r/GUI/GUI_Preview.cpp:701 src/libslic3r/GCode/PreviewData.cpp:404
msgid "Tool"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:244 src/slic3r/GUI/GUI_Preview.cpp:550
+#: src/slic3r/GUI/GUI_Preview.cpp:218 src/slic3r/GUI/GUI_Preview.cpp:523
#: src/libslic3r/GCode/PreviewData.cpp:406
msgid "Color Print"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:247
+#: src/slic3r/GUI/GUI_Preview.cpp:221
msgid "Show"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:250 src/slic3r/GUI/GUI_Preview.cpp:251
+#: src/slic3r/GUI/GUI_Preview.cpp:224 src/slic3r/GUI/GUI_Preview.cpp:225
msgid "Feature types"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:253 src/libslic3r/GCode/PreviewData.cpp:163
+#: src/slic3r/GUI/GUI_Preview.cpp:227 src/libslic3r/GCode/PreviewData.cpp:163
msgid "Perimeter"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:254 src/libslic3r/GCode/PreviewData.cpp:164
+#: src/slic3r/GUI/GUI_Preview.cpp:228 src/libslic3r/GCode/PreviewData.cpp:164
msgid "External perimeter"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:255 src/libslic3r/GCode/PreviewData.cpp:165
+#: src/slic3r/GUI/GUI_Preview.cpp:229 src/libslic3r/GCode/PreviewData.cpp:165
msgid "Overhang perimeter"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:256 src/libslic3r/GCode/PreviewData.cpp:166
+#: src/slic3r/GUI/GUI_Preview.cpp:230 src/libslic3r/GCode/PreviewData.cpp:166
msgid "Internal infill"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:257 src/libslic3r/PrintConfig.cpp:1764
-#: src/libslic3r/PrintConfig.cpp:1775 src/libslic3r/GCode/PreviewData.cpp:167
+#: src/slic3r/GUI/GUI_Preview.cpp:231 src/libslic3r/PrintConfig.cpp:1686
+#: src/libslic3r/PrintConfig.cpp:1696 src/libslic3r/GCode/PreviewData.cpp:167
msgid "Solid infill"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:258 src/libslic3r/PrintConfig.cpp:2123
-#: src/libslic3r/PrintConfig.cpp:2135 src/libslic3r/GCode/PreviewData.cpp:168
+#: src/slic3r/GUI/GUI_Preview.cpp:232 src/libslic3r/PrintConfig.cpp:2016
+#: src/libslic3r/PrintConfig.cpp:2027 src/libslic3r/GCode/PreviewData.cpp:168
msgid "Top solid infill"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:259 src/libslic3r/GCode/PreviewData.cpp:169
+#: src/slic3r/GUI/GUI_Preview.cpp:233 src/libslic3r/GCode/PreviewData.cpp:169
msgid "Bridge infill"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:260 src/libslic3r/PrintConfig.cpp:880
+#: src/slic3r/GUI/GUI_Preview.cpp:234 src/libslic3r/PrintConfig.cpp:869
#: src/libslic3r/GCode/PreviewData.cpp:170
msgid "Gap fill"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:261 src/slic3r/GUI/Tab.cpp:971
+#: src/slic3r/GUI/GUI_Preview.cpp:235 src/slic3r/GUI/Tab.cpp:1001
#: src/libslic3r/GCode/PreviewData.cpp:171
msgid "Skirt"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:263 src/libslic3r/PrintConfig.cpp:2002
+#: src/slic3r/GUI/GUI_Preview.cpp:237 src/libslic3r/PrintConfig.cpp:1903
#: src/libslic3r/GCode/PreviewData.cpp:173
msgid "Support material interface"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:264 src/slic3r/GUI/Tab.cpp:1049
+#: src/slic3r/GUI/GUI_Preview.cpp:238 src/slic3r/GUI/Tab.cpp:1081
#: src/libslic3r/GCode/PreviewData.cpp:174
msgid "Wipe tower"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:269 src/libslic3r/PrintConfig.cpp:2158
+#: src/slic3r/GUI/GUI_Preview.cpp:243 src/libslic3r/PrintConfig.cpp:2049
msgid "Travel"
msgstr "空程"
-#: src/slic3r/GUI/GUI_Preview.cpp:270
+#: src/slic3r/GUI/GUI_Preview.cpp:244
msgid "Retractions"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:271
+#: src/slic3r/GUI/GUI_Preview.cpp:245
msgid "Unretractions"
msgstr ""
-#: src/slic3r/GUI/GUI_Preview.cpp:272
+#: src/slic3r/GUI/GUI_Preview.cpp:246
msgid "Shells"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:12
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:13
msgid "Slic3r Prusa Edition - Keyboard Shortcuts"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:47
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:126
-msgid "Main Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:101
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:100
msgid "Open project STL/OBJ/AMF/3MF with config, delete bed"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:102
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:101
msgid "Import STL/OBJ/AMF/3MF without config, keep bed"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:103
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:102
msgid "Load Config from .ini/amf/3mf/gcode"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:104 src/slic3r/GUI/Plater.cpp:605
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:103 src/slic3r/GUI/Plater.cpp:725
+#: src/slic3r/GUI/Plater.cpp:3673 src/libslic3r/PrintConfig.cpp:2957
msgid "Export G-code"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:105
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:104
msgid "Save project (3MF)"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:106
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:105
msgid "Load Config from .ini/amf/3mf/gcode and merge"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:107
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:106
msgid "(Re)slice"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:108
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:107
msgid "Quick slice"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:109 src/slic3r/GUI/MainFrame.cpp:289
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:108 src/slic3r/GUI/MainFrame.cpp:326
msgid "Repeat last quick slice"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:110
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:109
msgid "Select Plater Tab"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:111
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:110
msgid "Quick slice and Save as"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:112
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:111
msgid "Select Print Settings Tab"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:113
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:112
msgid "Select Filament Settings Tab"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:114
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:113
msgid "Select Printer Settings Tab"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:115
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:114
msgid "Switch to 3D"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:116
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:115
msgid "Switch to Preview"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:117 src/slic3r/GUI/Preferences.cpp:10
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:116 src/slic3r/GUI/Preferences.cpp:10
msgid "Preferences"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:118
-#: src/slic3r/GUI/PrintHostDialogs.cpp:89
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:117
+#: src/slic3r/GUI/PrintHostDialogs.cpp:134
msgid "Print host upload queue"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:119
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:118
msgid "Camera view "
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:120
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:119
msgid "Add Instance to selected object "
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:121
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:120
msgid "Remove Instance from selected object"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:122
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:121
msgid "Show keyboard shortcuts list"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:123
-msgid "Switch between 3D and Preview"
-msgstr ""
-
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:124
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:122
msgid "Select multiple object/Move multiple object"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:132
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:124
+msgid "Main Shortcuts"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:130
msgid "Arrange"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:133
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:131
msgid "Select All objects"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:134
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:132
msgid "Delete selected"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:135
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:133
msgid "Delete All"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:136
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:134
msgid "Gizmo move"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:137
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:135
msgid "Gizmo scale"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:138
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:136
msgid "Gizmo rotate"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:139
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:137
msgid "Gizmo cut"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:140
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:138
msgid "Gizmo Place face on bed"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:141
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:139
msgid "Gizmo SLA support points"
msgstr ""
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:140
+#, no-c-format
+msgid ""
+"Press to snap by 5% in Gizmo scale\n"
+"or by 1mm in Gizmo move"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:141
+msgid ""
+"Press to scale or rotate selected objects\n"
+"around their own center"
+msgstr ""
+
#: src/slic3r/GUI/KBShortcutsDialog.cpp:142
msgid "Zoom to Bed"
msgstr ""
@@ -1388,919 +1665,1005 @@ msgstr ""
msgid "Plater Shortcuts"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:164
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:175
msgid "Arrow Up"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:155
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:164
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:166
msgid "Upper Layer"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:165
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:176
msgid "Arrow Down"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:156
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:165
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:167
msgid "Lower Layer"
msgstr ""
-#: src/slic3r/GUI/KBShortcutsDialog.cpp:158
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:169
msgid "Preview Shortcuts"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:53
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:175
+msgid "Move current slider thump Up"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:176
+msgid "Move current slider thump Down"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:177
+msgid "Arrow Left"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:177
+msgid "Set upper thumb to current slider thumb"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:178
+msgid "Arrow Right"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:178
+msgid "Set lower thumb to current slider thumb"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:179
+msgid "Add color change marker for current layer"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:180
+msgid "Delete color change marker for current layer"
+msgstr ""
+
+#: src/slic3r/GUI/KBShortcutsDialog.cpp:182
+msgid "Layers Slider Shortcuts"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:54
msgid ""
" - Remember to check for updates at http://github.com/prusa3d/slic3r/releases"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:130
+#: src/slic3r/GUI/MainFrame.cpp:160
msgid "Plater"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:236
-msgid "&Open"
+#: src/slic3r/GUI/MainFrame.cpp:273
+msgid "&Open Project"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:236
+#: src/slic3r/GUI/MainFrame.cpp:273
msgid "Open a project file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:238
-msgid "&Save"
+#: src/slic3r/GUI/MainFrame.cpp:275
+msgid "&Save Project"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:238
+#: src/slic3r/GUI/MainFrame.cpp:275
msgid "Save current project file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:240
-msgid "Save &as"
+#: src/slic3r/GUI/MainFrame.cpp:277
+msgid "Save Project &as"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:240
+#: src/slic3r/GUI/MainFrame.cpp:277
msgid "Save current project file as"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:246
+#: src/slic3r/GUI/MainFrame.cpp:283
msgid "Import STL/OBJ/AM&F/3MF"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:246
+#: src/slic3r/GUI/MainFrame.cpp:283
msgid "Load a model"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:249
+#: src/slic3r/GUI/MainFrame.cpp:286
msgid "Import &Config"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:249
+#: src/slic3r/GUI/MainFrame.cpp:286
msgid "Load exported configuration file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:251
+#: src/slic3r/GUI/MainFrame.cpp:288
msgid "Import Config from &project"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:251
+#: src/slic3r/GUI/MainFrame.cpp:288
msgid "Load configuration from project file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:254
+#: src/slic3r/GUI/MainFrame.cpp:291
msgid "Import Config &Bundle"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:254
+#: src/slic3r/GUI/MainFrame.cpp:291
msgid "Load presets from a bundle"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:256
+#: src/slic3r/GUI/MainFrame.cpp:293
msgid "&Import"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:259
+#: src/slic3r/GUI/MainFrame.cpp:296
msgid "Export &G-code"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:259
+#: src/slic3r/GUI/MainFrame.cpp:296
msgid "Export current plate as G-code"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:262
+#: src/slic3r/GUI/MainFrame.cpp:299
msgid "Export plate as &STL"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:262
+#: src/slic3r/GUI/MainFrame.cpp:299
msgid "Export current plate as STL"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:264
+#: src/slic3r/GUI/MainFrame.cpp:301
msgid "Export plate as &AMF"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:264
+#: src/slic3r/GUI/MainFrame.cpp:301
msgid "Export current plate as AMF"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:267
+#: src/slic3r/GUI/MainFrame.cpp:304
msgid "Export &Config"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:267
+#: src/slic3r/GUI/MainFrame.cpp:304
msgid "Export current configuration to file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:269
+#: src/slic3r/GUI/MainFrame.cpp:306
msgid "Export Config &Bundle"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:269
+#: src/slic3r/GUI/MainFrame.cpp:306
msgid "Export all presets to file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:271
+#: src/slic3r/GUI/MainFrame.cpp:308
msgid "&Export"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:277
+#: src/slic3r/GUI/MainFrame.cpp:314
msgid "Quick Slice"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:277
+#: src/slic3r/GUI/MainFrame.cpp:314
msgid "Slice a file into a G-code"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:283
+#: src/slic3r/GUI/MainFrame.cpp:320
msgid "Quick Slice and Save As"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:283
+#: src/slic3r/GUI/MainFrame.cpp:320
msgid "Slice a file into a G-code, save as"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:289
+#: src/slic3r/GUI/MainFrame.cpp:326
msgid "Repeat Last Quick Slice"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:297
+#: src/slic3r/GUI/MainFrame.cpp:334
msgid "(Re)Slice &Now"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:297
+#: src/slic3r/GUI/MainFrame.cpp:334
msgid "Start new slicing process"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:300
+#: src/slic3r/GUI/MainFrame.cpp:337
msgid "&Repair STL file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:300
+#: src/slic3r/GUI/MainFrame.cpp:337
msgid "Automatically repair an STL file"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:303
+#: src/slic3r/GUI/MainFrame.cpp:340
msgid "&Quit"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:303
+#: src/slic3r/GUI/MainFrame.cpp:340
msgid "Quit Slic3r"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:321
+#: src/slic3r/GUI/MainFrame.cpp:374
msgid "&Select all"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:321
+#: src/slic3r/GUI/MainFrame.cpp:374
msgid "Selects all objects"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:324
+#: src/slic3r/GUI/MainFrame.cpp:377
msgid "&Delete selected"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:324
+#: src/slic3r/GUI/MainFrame.cpp:377
msgid "Deletes the current selection"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:326
+#: src/slic3r/GUI/MainFrame.cpp:379
msgid "Delete &all"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:326
+#: src/slic3r/GUI/MainFrame.cpp:379
msgid "Deletes all objects"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:339
+#: src/slic3r/GUI/MainFrame.cpp:392
msgid "&Plater Tab"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:339
+#: src/slic3r/GUI/MainFrame.cpp:392
msgid "Show the plater"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:346
+#: src/slic3r/GUI/MainFrame.cpp:399
msgid "P&rint Settings Tab"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:346
+#: src/slic3r/GUI/MainFrame.cpp:399
msgid "Show the print settings"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:348
+#: src/slic3r/GUI/MainFrame.cpp:401
msgid "&Filament Settings Tab"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:348
+#: src/slic3r/GUI/MainFrame.cpp:401
msgid "Show the filament settings"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:350
+#: src/slic3r/GUI/MainFrame.cpp:403
msgid "Print&er Settings Tab"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:350
+#: src/slic3r/GUI/MainFrame.cpp:403
msgid "Show the printer settings"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:354
+#: src/slic3r/GUI/MainFrame.cpp:407
msgid "3&D"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:354
+#: src/slic3r/GUI/MainFrame.cpp:407
msgid "Show the 3D editing view"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:356
+#: src/slic3r/GUI/MainFrame.cpp:409
msgid "Pre&view"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:356
+#: src/slic3r/GUI/MainFrame.cpp:409
msgid "Show the 3D slices preview"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:377
+#: src/slic3r/GUI/MainFrame.cpp:430
msgid "Print &Host Upload Queue"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:377
+#: src/slic3r/GUI/MainFrame.cpp:430
msgid "Display the Print Host Upload Queue window"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "&Iso"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:388
-msgid "Iso View"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "&Top"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:390
-msgid "Top View"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "&Bottom"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:391
-msgid "Bottom View"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "&Front"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:392
-msgid "Front View"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "R&ear"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:393
-msgid "Rear View"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "&Left"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:394
-msgid "Left View"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "&Right"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:395
-msgid "Right View"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:409
-msgid "Prusa 3D &Drivers"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:409
-msgid "Open the Prusa3D drivers download page in your browser"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:411
-msgid "Prusa Edition &Releases"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:411
-msgid "Open the Prusa Edition releases page in your browser"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:417
-msgid "Slic3r &Website"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:417
-msgid "Open the Slic3r website in your browser"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:419
-msgid "Slic3r &Manual"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:419
-msgid "Open the Slic3r manual in your browser"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:422
-msgid "System &Info"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:422
-msgid "Show system information"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:424
-msgid "Show &Configuration Folder"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:424
-msgid "Show user configuration folder (datadir)"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:426
-msgid "Report an I&ssue"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:426
-msgid "Report an issue on the Slic3r Prusa Edition"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:428
-msgid "&About Slic3r"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:428
-msgid "Show about dialog"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "&Keyboard Shortcuts"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:431
-msgid "Show the list of the keyboard shortcuts"
+#: src/slic3r/GUI/MainFrame.cpp:439
+msgid "Iso"
msgstr ""
#: src/slic3r/GUI/MainFrame.cpp:439
-msgid "&File"
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:440
-msgid "&Edit"
+msgid "Iso View"
msgstr ""
#: src/slic3r/GUI/MainFrame.cpp:441
-msgid "&Window"
+msgid "Top"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2041
+msgctxt "Layers"
+msgid "Top"
+msgstr "顶部"
+
+#: src/slic3r/GUI/MainFrame.cpp:441
+msgid "Top View"
msgstr ""
#: src/slic3r/GUI/MainFrame.cpp:442
-msgid "&View"
+msgid "Bottom"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:148
+msgctxt "Layers"
+msgid "Bottom"
+msgstr "底部"
+
+#: src/slic3r/GUI/MainFrame.cpp:442
+msgid "Bottom View"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:443
+msgid "Front"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:443
+msgid "Front View"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:444 src/libslic3r/PrintConfig.cpp:1561
+msgid "Rear"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:444
+msgid "Rear View"
msgstr ""
#: src/slic3r/GUI/MainFrame.cpp:445
-msgid "&Help"
+msgid "Left"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:472
-msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
+#: src/slic3r/GUI/MainFrame.cpp:445
+msgid "Left View"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:486
-msgid "No previously sliced file."
+#: src/slic3r/GUI/MainFrame.cpp:446
+msgid "Right"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:487 src/slic3r/GUI/PrintHostDialogs.cpp:173
-msgid "Error"
+#: src/slic3r/GUI/MainFrame.cpp:446
+msgid "Right View"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:460
+msgid "Prusa 3D &Drivers"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:460
+msgid "Open the Prusa3D drivers download page in your browser"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:462
+msgid "Prusa Edition &Releases"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:462
+msgid "Open the Prusa Edition releases page in your browser"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:468
+msgid "Slic3r &Website"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:468
+msgid "Open the Slic3r website in your browser"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:470
+msgid "Slic3r &Manual"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:470
+msgid "Open the Slic3r manual in your browser"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:473
+msgid "System &Info"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:473
+msgid "Show system information"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:475
+msgid "Show &Configuration Folder"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:475
+msgid "Show user configuration folder (datadir)"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:477
+msgid "Report an I&ssue"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:477
+msgid "Report an issue on the Slic3r Prusa Edition"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:479
+msgid "&About Slic3r"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:479
+msgid "Show about dialog"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:482
+msgid "Keyboard Shortcuts"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:482
+msgid "Show the list of the keyboard shortcuts"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:490
+msgid "&File"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:491
+msgid "&Edit"
msgstr ""
#: src/slic3r/GUI/MainFrame.cpp:492
-msgid "Previously sliced file ("
-msgstr ""
-
-#: src/slic3r/GUI/MainFrame.cpp:492
-msgid ") not found."
+msgid "&Window"
msgstr ""
#: src/slic3r/GUI/MainFrame.cpp:493
+msgid "&View"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:496
+msgid "&Help"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:524
+msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:538
+msgid "No previously sliced file."
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:539 src/slic3r/GUI/PrintHostDialogs.cpp:219
+msgid "Error"
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:544
+msgid "Previously sliced file ("
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:544
+msgid ") not found."
+msgstr ""
+
+#: src/slic3r/GUI/MainFrame.cpp:545
msgid "File Not Found"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:531 src/slic3r/GUI/Tab.cpp:3031
+#: src/slic3r/GUI/MainFrame.cpp:580 src/slic3r/GUI/Tab.cpp:3152
msgid "Save "
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:531
+#: src/slic3r/GUI/MainFrame.cpp:580
msgid "SVG"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:531
+#: src/slic3r/GUI/MainFrame.cpp:580
msgid "G-code"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:531
+#: src/slic3r/GUI/MainFrame.cpp:580
msgid " file as:"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:548
+#: src/slic3r/GUI/MainFrame.cpp:595
msgid "Save zip file as:"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:560
+#: src/slic3r/GUI/MainFrame.cpp:607 src/slic3r/GUI/Plater.cpp:2352
+#: src/slic3r/GUI/Plater.cpp:3467 src/slic3r/GUI/Tab.cpp:1110
+#: src/slic3r/GUI/Tab.cpp:3348
msgid "Slicing"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:560
+#: src/slic3r/GUI/MainFrame.cpp:607
msgid "Processing "
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:583
+#: src/slic3r/GUI/MainFrame.cpp:630
msgid " was successfully sliced."
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:585
+#: src/slic3r/GUI/MainFrame.cpp:632
msgid "Slicing Done!"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:600
+#: src/slic3r/GUI/MainFrame.cpp:647
msgid "Select the STL file to repair:"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:614
+#: src/slic3r/GUI/MainFrame.cpp:661
msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:629
+#: src/slic3r/GUI/MainFrame.cpp:676
msgid "Your file was repaired."
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:629
+#: src/slic3r/GUI/MainFrame.cpp:676 src/libslic3r/PrintConfig.cpp:3051
msgid "Repair"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:643
+#: src/slic3r/GUI/MainFrame.cpp:690
msgid "Save configuration as:"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:663 src/slic3r/GUI/MainFrame.cpp:727
+#: src/slic3r/GUI/MainFrame.cpp:710 src/slic3r/GUI/MainFrame.cpp:774
msgid "Select configuration to load:"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:700
+#: src/slic3r/GUI/MainFrame.cpp:747
msgid "Save presets bundle as:"
msgstr ""
-#: src/slic3r/GUI/MainFrame.cpp:751
+#: src/slic3r/GUI/MainFrame.cpp:798
#, c-format
msgid "%d presets successfully imported."
msgstr ""
-#: src/slic3r/GUI/MsgDialog.cpp:66
+#: src/slic3r/GUI/MsgDialog.cpp:71
msgid "Slic3r error"
msgstr ""
-#: src/slic3r/GUI/MsgDialog.cpp:66
+#: src/slic3r/GUI/MsgDialog.cpp:71
msgid "Slic3r has encountered an error"
msgstr ""
-#: src/slic3r/GUI/MsgDialog.cpp:84
-msgid "Copy to clipboard"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:107
-msgid "Info"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:126
+#: src/slic3r/GUI/Plater.cpp:137
msgid "Volume"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:127
+#: src/slic3r/GUI/Plater.cpp:138
msgid "Facets"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:128
+#: src/slic3r/GUI/Plater.cpp:139
msgid "Materials"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:131
+#: src/slic3r/GUI/Plater.cpp:142
msgid "Manifold"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:174
+#: src/slic3r/GUI/Plater.cpp:188
msgid "Sliced Info"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:193 src/slic3r/GUI/Plater.cpp:823
+#: src/slic3r/GUI/Plater.cpp:207 src/slic3r/GUI/Plater.cpp:998
msgid "Used Filament (m)"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:194
+#: src/slic3r/GUI/Plater.cpp:208
msgid "Used Filament (mm³)"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:195
+#: src/slic3r/GUI/Plater.cpp:209
msgid "Used Filament (g)"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:196 src/slic3r/GUI/Plater.cpp:838
-#: src/libslic3r/PrintConfig.cpp:718
+#: src/slic3r/GUI/Plater.cpp:210
+msgid "Used Material (unit)"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:211 src/slic3r/GUI/Plater.cpp:1013
+#: src/libslic3r/PrintConfig.cpp:716
msgid "Cost"
msgstr "å•ä»·"
-#: src/slic3r/GUI/Plater.cpp:197 src/slic3r/GUI/Plater.cpp:852
+#: src/slic3r/GUI/Plater.cpp:212 src/slic3r/GUI/Plater.cpp:985
+#: src/slic3r/GUI/Plater.cpp:1027
msgid "Estimated printing time"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:198
+#: src/slic3r/GUI/Plater.cpp:213
msgid "Number of tool changes"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:361
-msgid "Support"
+#: src/slic3r/GUI/Plater.cpp:290
+msgid "Click to edit preset"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:364
+#: src/slic3r/GUI/Plater.cpp:413
msgid "Select what kind of support do you need"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:365 src/libslic3r/GCode/PreviewData.cpp:162
-msgid "None"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:366 src/libslic3r/PrintConfig.cpp:1904
+#: src/slic3r/GUI/Plater.cpp:415 src/libslic3r/PrintConfig.cpp:1814
+#: src/libslic3r/PrintConfig.cpp:2419
msgid "Support on build plate only"
msgstr "仅在çƒåºŠä¸Šç”Ÿæˆæ”¯æ’‘"
-#: src/slic3r/GUI/Plater.cpp:367
+#: src/slic3r/GUI/Plater.cpp:416
msgid "Everywhere"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:379 src/slic3r/GUI/Tab.cpp:977
+#: src/slic3r/GUI/Plater.cpp:438 src/slic3r/GUI/Tab.cpp:1007
msgid "Brim"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:381
+#: src/slic3r/GUI/Plater.cpp:440
msgid ""
"This flag enables the brim that will be printed around each object on the "
"first layer."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:390
+#: src/slic3r/GUI/Plater.cpp:448
msgid "Purging volumes"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:556
+#: src/slic3r/GUI/Plater.cpp:673
msgid "Print settings"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:557 src/slic3r/GUI/Tab.cpp:1380
-#: src/slic3r/GUI/Tab.cpp:1381
+#: src/slic3r/GUI/Plater.cpp:674 src/slic3r/GUI/Tab.cpp:1421
+#: src/slic3r/GUI/Tab.cpp:1422
msgid "Filament"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:558 src/slic3r/GUI/Preset.cpp:1158
+#: src/slic3r/GUI/Plater.cpp:675 src/slic3r/GUI/Preset.cpp:1252
msgid "SLA print"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:559 src/slic3r/GUI/Preset.cpp:1159
+#: src/slic3r/GUI/Plater.cpp:676 src/slic3r/GUI/Preset.cpp:1253
msgid "SLA material"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:560
+#: src/slic3r/GUI/Plater.cpp:677
msgid "Printer"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:588
+#: src/slic3r/GUI/Plater.cpp:707 src/slic3r/GUI/Plater.cpp:3674
msgid "Send to printer"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:607
+#: src/slic3r/GUI/Plater.cpp:727 src/slic3r/GUI/Plater.cpp:2352
+#: src/slic3r/GUI/Plater.cpp:3470
msgid "Slice now"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:787
+#: src/slic3r/GUI/Plater.cpp:860
+msgid "Hold Shift to Slice & Export G-code"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:931
#, c-format
msgid "%d (%d shells)"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:792
+#: src/slic3r/GUI/Plater.cpp:936
#, c-format
msgid "Auto-repaired (%d errors)"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:795
+#: src/slic3r/GUI/Plater.cpp:939
#, c-format
msgid ""
"%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d "
"facets reversed, %d backwards edges"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:805
+#: src/slic3r/GUI/Plater.cpp:949
msgid "Yes"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
+#: src/slic3r/GUI/Plater.cpp:972
+msgid "Used Material (ml)"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:975
+msgid "object(s)"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:975
+msgid "supports and pad"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:1000 src/slic3r/GUI/Plater.cpp:1015
msgid "objects"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:825 src/slic3r/GUI/Plater.cpp:840
+#: src/slic3r/GUI/Plater.cpp:1000 src/slic3r/GUI/Plater.cpp:1015
msgid "wipe tower"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:855
+#: src/slic3r/GUI/Plater.cpp:1030
msgid "normal mode"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:859
+#: src/slic3r/GUI/Plater.cpp:1034
msgid "silent mode"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1304
+#: src/slic3r/GUI/Plater.cpp:1544
msgid "Loading"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1314
+#: src/slic3r/GUI/Plater.cpp:1554
#, c-format
msgid "Processing input file %s\n"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1366
+#: src/slic3r/GUI/Plater.cpp:1612
msgid ""
"This file contains several objects positioned at multiple heights. Instead "
"of considering them as multiple objects, should I consider\n"
"this file as a single object having multiple parts?\n"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1369 src/slic3r/GUI/Plater.cpp:1411
+#: src/slic3r/GUI/Plater.cpp:1615 src/slic3r/GUI/Plater.cpp:1707
msgid "Multi-part object detected"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1388
+#: src/slic3r/GUI/Plater.cpp:1650
+msgid ""
+"This file cannot be loaded in simple mode. Do you want to switch to expert "
+"mode?\n"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:1651
+msgid "Detected advanced data"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:1684
#, c-format
msgid ""
"You can't to add the object(s) from %s because of one or some of them "
"is(are) multi-part"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1408
+#: src/slic3r/GUI/Plater.cpp:1704
msgid ""
"Multiple objects were loaded for a multi-material printer.\n"
"Instead of considering them as multiple objects, should I consider\n"
"these files to represent a single object having multiple parts?\n"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1424
+#: src/slic3r/GUI/Plater.cpp:1720
msgid "Loaded"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1492
+#: src/slic3r/GUI/Plater.cpp:1812
msgid ""
"Your object appears to be too large, so it was automatically scaled down to "
"fit your print bed."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1493
+#: src/slic3r/GUI/Plater.cpp:1813
msgid "Object too large?"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1536
-msgid "Export print config"
+#: src/slic3r/GUI/Plater.cpp:1863
+msgid "Export STL file:"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1538
+#: src/slic3r/GUI/Plater.cpp:1870
+msgid "Export AMF file:"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:1876
msgid "Save file as:"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1702
+#: src/slic3r/GUI/Plater.cpp:2042
msgid "Arranging canceled"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1705
+#: src/slic3r/GUI/Plater.cpp:2045
msgid "Arranging"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1736
+#: src/slic3r/GUI/Plater.cpp:2079
msgid "Could not arrange model objects! Some geometries may be invalid."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1740
+#: src/slic3r/GUI/Plater.cpp:2083
msgid "Arranging done."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1782
+#: src/slic3r/GUI/Plater.cpp:2124
msgid "Orientation search canceled"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1787
+#: src/slic3r/GUI/Plater.cpp:2129
msgid "Searching for optimal orientation"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1797
+#: src/slic3r/GUI/Plater.cpp:2190
msgid "Orientation found."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1818
+#: src/slic3r/GUI/Plater.cpp:2211
msgid ""
"The selected object can't be split because it contains more than one volume/"
"material."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:1945 src/slic3r/GUI/PrintHostDialogs.cpp:174
-msgid "Cancelling"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:1962
-msgid "Another export job is currently running."
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2215
-msgid "Export failed"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2219 src/slic3r/GUI/PrintHostDialogs.cpp:175
-msgid "Cancelled"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2346 src/slic3r/GUI/Tab.cpp:2736
-msgid "Delete"
+#: src/slic3r/GUI/Plater.cpp:2337
+msgid "Invalid data"
msgstr ""
#: src/slic3r/GUI/Plater.cpp:2346
-msgid "Remove the selected object"
+msgid "Ready to slice"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2349
+#: src/slic3r/GUI/Plater.cpp:2379 src/slic3r/GUI/PrintHostDialogs.cpp:220
+msgid "Cancelling"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:2396
+msgid "Another export job is currently running."
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:2656
+msgid "Export failed"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:2661 src/slic3r/GUI/PrintHostDialogs.cpp:221
+msgid "Cancelled"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:2747 src/slic3r/GUI/Plater.cpp:2759
+#: src/slic3r/GUI/Plater.cpp:2831
msgid "Increase copies"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2349
+#: src/slic3r/GUI/Plater.cpp:2825 src/slic3r/GUI/Plater.cpp:2843
+msgid "Remove the selected object"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:2831
msgid "Place one more copy of the selected object"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2351
+#: src/slic3r/GUI/Plater.cpp:2833
msgid "Decrease copies"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2351
+#: src/slic3r/GUI/Plater.cpp:2833
msgid "Remove one copy of the selected object"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2353
+#: src/slic3r/GUI/Plater.cpp:2835
msgid "Set number of copies"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2353
+#: src/slic3r/GUI/Plater.cpp:2835
msgid "Change the number of copies of the selected object"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2363
+#: src/slic3r/GUI/Plater.cpp:2858
msgid "Reload from Disk"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2363
+#: src/slic3r/GUI/Plater.cpp:2858
msgid "Reload the selected file from Disk"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export object as STL"
+#: src/slic3r/GUI/Plater.cpp:2861
+msgid "Export the selected object as STL file"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2366
-msgid "Export this single object as STL file"
-msgstr ""
-
-#: src/slic3r/GUI/Plater.cpp:2375
+#: src/slic3r/GUI/Plater.cpp:2873
msgid "Along X axis"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2375
+#: src/slic3r/GUI/Plater.cpp:2873
msgid "Mirror the selected object along the X axis"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2377
+#: src/slic3r/GUI/Plater.cpp:2875
msgid "Along Y axis"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2377
+#: src/slic3r/GUI/Plater.cpp:2875
msgid "Mirror the selected object along the Y axis"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2379
+#: src/slic3r/GUI/Plater.cpp:2877
msgid "Along Z axis"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2379
+#: src/slic3r/GUI/Plater.cpp:2877
msgid "Mirror the selected object along the Z axis"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2382
+#: src/slic3r/GUI/Plater.cpp:2880
msgid "Mirror"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2382
+#: src/slic3r/GUI/Plater.cpp:2880
msgid "Mirror the selected object"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2400
+#: src/slic3r/GUI/Plater.cpp:2898
msgid "To objects"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2400 src/slic3r/GUI/Plater.cpp:2431
+#: src/slic3r/GUI/Plater.cpp:2898 src/slic3r/GUI/Plater.cpp:2920
msgid "Split the selected object into individual objects"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2402
+#: src/slic3r/GUI/Plater.cpp:2900
msgid "To parts"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2402 src/slic3r/GUI/Plater.cpp:2451
+#: src/slic3r/GUI/Plater.cpp:2900 src/slic3r/GUI/Plater.cpp:2940
msgid "Split the selected object into individual sub-parts"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2405 src/slic3r/GUI/Plater.cpp:2431
-#: src/slic3r/GUI/Plater.cpp:2451
+#: src/slic3r/GUI/Plater.cpp:2903 src/slic3r/GUI/Plater.cpp:2920
+#: src/slic3r/GUI/Plater.cpp:2940 src/libslic3r/PrintConfig.cpp:3075
msgid "Split"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2405
+#: src/slic3r/GUI/Plater.cpp:2903
msgid "Split the selected object"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2435
+#: src/slic3r/GUI/Plater.cpp:2926
msgid "Optimize orientation"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2435
+#: src/slic3r/GUI/Plater.cpp:2926
msgid "Optimize the rotation of the object for better print results."
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2795
+#: src/slic3r/GUI/Plater.cpp:3342
msgid "Save G-code file as:"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2795
-msgid "Save Zip file as:"
+#: src/slic3r/GUI/Plater.cpp:3342
+msgid "Save SL1 file as:"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2845
+#: src/slic3r/GUI/Plater.cpp:3397
#, c-format
msgid "STL file exported to %s"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2861
+#: src/slic3r/GUI/Plater.cpp:3413
#, c-format
msgid "AMF file exported to %s"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2864
+#: src/slic3r/GUI/Plater.cpp:3416
#, c-format
msgid "Error exporting AMF file %s"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2891
+#: src/slic3r/GUI/Plater.cpp:3442
#, c-format
msgid "3MF file exported to %s"
msgstr ""
-#: src/slic3r/GUI/Plater.cpp:2894
+#: src/slic3r/GUI/Plater.cpp:3445
#, c-format
msgid "Error exporting 3MF file %s"
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:17 src/slic3r/GUI/Tab.cpp:1712
-#: src/slic3r/GUI/Tab.cpp:1911
+#: src/slic3r/GUI/Plater.cpp:3673
+msgid "Export"
+msgstr ""
+
+#: src/slic3r/GUI/Plater.cpp:3674
+msgid "Send G-code"
+msgstr ""
+
+#: src/slic3r/GUI/Preferences.cpp:17 src/slic3r/GUI/Tab.cpp:1762
+#: src/slic3r/GUI/Tab.cpp:1963
msgid "General"
msgstr ""
@@ -2354,37 +2717,51 @@ msgid ""
"even if they are marked as incompatible with the active printer"
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:90
+#: src/slic3r/GUI/Preferences.cpp:91
msgid "Use legacy OpenGL 1.1 rendering"
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:92
+#: src/slic3r/GUI/Preferences.cpp:93
msgid ""
"If you have rendering issues caused by a buggy OpenGL 2.0 driver, you may "
"try to check this checkbox. This will disable the layer height editing and "
"anti aliasing, so it is likely better to upgrade your graphics driver."
msgstr ""
-#: src/slic3r/GUI/Preferences.cpp:115
+#: src/slic3r/GUI/Preferences.cpp:101
+msgid "Use Retina resolution for the 3D scene"
+msgstr ""
+
+#: src/slic3r/GUI/Preferences.cpp:103
+msgid ""
+"If enabled, the 3D scene will be rendered in Retina resolution. If you are "
+"experiencing 3D performance problems, disabling this option may help."
+msgstr ""
+
+#: src/slic3r/GUI/Preferences.cpp:126
msgid "You need to restart Slic3r to make the changes effective."
msgstr ""
-#: src/slic3r/GUI/Preset.cpp:170
+#: src/slic3r/GUI/Preset.cpp:207
msgid "modified"
msgstr ""
-#: src/slic3r/GUI/Preset.cpp:862 src/slic3r/GUI/Preset.cpp:902
-#: src/slic3r/GUI/Preset.cpp:930 src/slic3r/GUI/Preset.cpp:962
-#: src/slic3r/GUI/PresetBundle.cpp:1459 src/slic3r/GUI/PresetBundle.cpp:1512
+#: src/slic3r/GUI/Preset.cpp:918 src/slic3r/GUI/Preset.cpp:958
+#: src/slic3r/GUI/Preset.cpp:1011 src/slic3r/GUI/Preset.cpp:1043
+#: src/slic3r/GUI/PresetBundle.cpp:1484 src/slic3r/GUI/PresetBundle.cpp:1537
msgid "System presets"
msgstr ""
-#: src/slic3r/GUI/Preset.cpp:906 src/slic3r/GUI/Preset.cpp:966
-#: src/slic3r/GUI/PresetBundle.cpp:1517
+#: src/slic3r/GUI/Preset.cpp:962 src/slic3r/GUI/Preset.cpp:1047
+#: src/slic3r/GUI/PresetBundle.cpp:1542
msgid "User presets"
msgstr ""
-#: src/slic3r/GUI/Preset.cpp:1157
+#: src/slic3r/GUI/Preset.cpp:991 src/slic3r/GUI/Tab.cpp:247
+msgid "Add a new printer"
+msgstr ""
+
+#: src/slic3r/GUI/Preset.cpp:1251
msgid "filament"
msgstr ""
@@ -2514,48 +2891,44 @@ msgstr ""
msgid "%d lines: %.2lf mm"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
+#: src/slic3r/GUI/PrintHostDialogs.cpp:32
msgid "Send G-Code to printer host"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:29
+#: src/slic3r/GUI/PrintHostDialogs.cpp:32
msgid "Upload to Printer Host with the following filename:"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:31
+#: src/slic3r/GUI/PrintHostDialogs.cpp:34
msgid "Start printing after upload"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:33
+#: src/slic3r/GUI/PrintHostDialogs.cpp:41
msgid "Use forward slashes ( / ) as a directory separator if needed."
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:111
+#: src/slic3r/GUI/PrintHostDialogs.cpp:157
msgid "Cancel selected"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:113
+#: src/slic3r/GUI/PrintHostDialogs.cpp:159
msgid "Show error message"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:115
-msgid "Close"
-msgstr ""
-
-#: src/slic3r/GUI/PrintHostDialogs.cpp:152
-#: src/slic3r/GUI/PrintHostDialogs.cpp:171
+#: src/slic3r/GUI/PrintHostDialogs.cpp:198
+#: src/slic3r/GUI/PrintHostDialogs.cpp:217
msgid "Enqueued"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:172
+#: src/slic3r/GUI/PrintHostDialogs.cpp:218
msgid "Uploading"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:176
+#: src/slic3r/GUI/PrintHostDialogs.cpp:222
msgid "Completed"
msgstr ""
-#: src/slic3r/GUI/PrintHostDialogs.cpp:214
+#: src/slic3r/GUI/PrintHostDialogs.cpp:260
msgid "Error uploading to print host:"
msgstr ""
@@ -2568,10 +2941,10 @@ msgid "Time"
msgstr ""
#: src/slic3r/GUI/RammingChart.cpp:76 src/slic3r/GUI/RammingChart.cpp:81
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78 src/libslic3r/PrintConfig.cpp:603
-#: src/libslic3r/PrintConfig.cpp:653 src/libslic3r/PrintConfig.cpp:670
-#: src/libslic3r/PrintConfig.cpp:2352 src/libslic3r/PrintConfig.cpp:2360
-#: src/libslic3r/PrintConfig.cpp:2432 src/libslic3r/PrintConfig.cpp:2440
+#: src/slic3r/GUI/WipeTowerDialog.cpp:82 src/libslic3r/PrintConfig.cpp:611
+#: src/libslic3r/PrintConfig.cpp:655 src/libslic3r/PrintConfig.cpp:670
+#: src/libslic3r/PrintConfig.cpp:2241 src/libslic3r/PrintConfig.cpp:2250
+#: src/libslic3r/PrintConfig.cpp:2308 src/libslic3r/PrintConfig.cpp:2315
msgid "s"
msgstr ""
@@ -2579,214 +2952,214 @@ msgstr ""
msgid "Volumetric speed"
msgstr ""
-#: src/slic3r/GUI/SysInfoDialog.cpp:40
+#: src/slic3r/GUI/SysInfoDialog.cpp:44
msgid "Slic3r Prusa Edition - System Information"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:49 src/libslic3r/PrintConfig.cpp:202
+#: src/slic3r/GUI/Tab.cpp:50 src/libslic3r/PrintConfig.cpp:228
msgid "Compatible printers"
msgstr "å…¼å®¹çš„æ‰“å°æœº"
-#: src/slic3r/GUI/Tab.cpp:50
+#: src/slic3r/GUI/Tab.cpp:51
msgid "Select the printers this profile is compatible with."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:55 src/libslic3r/PrintConfig.cpp:215
+#: src/slic3r/GUI/Tab.cpp:56 src/libslic3r/PrintConfig.cpp:243
msgid "Compatible print profiles"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:56
+#: src/slic3r/GUI/Tab.cpp:57
msgid "Select the print profiles this profile is compatible with."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:118
+#: src/slic3r/GUI/Tab.cpp:132
msgid "Save current "
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:119
+#: src/slic3r/GUI/Tab.cpp:133
msgid "Delete this preset"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:131
+#: src/slic3r/GUI/Tab.cpp:145
msgid ""
"Hover the cursor over buttons to find more information \n"
"or click this button."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:824
+#: src/slic3r/GUI/Tab.cpp:858
msgid "It's a default preset."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:825
+#: src/slic3r/GUI/Tab.cpp:859
msgid "It's a system preset."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:826
+#: src/slic3r/GUI/Tab.cpp:860
msgid "Current preset is inherited from "
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:831
+#: src/slic3r/GUI/Tab.cpp:865
msgid "It can't be deleted or modified. "
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:832
+#: src/slic3r/GUI/Tab.cpp:866
msgid ""
"Any modifications should be saved as a new preset inherited from this one. "
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:833
+#: src/slic3r/GUI/Tab.cpp:867
msgid "To do that please specify a new name for the preset."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:837
+#: src/slic3r/GUI/Tab.cpp:871
msgid "Additional information:"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:843
+#: src/slic3r/GUI/Tab.cpp:877
msgid "printer model"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:851
+#: src/slic3r/GUI/Tab.cpp:885
msgid "default print profile"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:854
+#: src/slic3r/GUI/Tab.cpp:888
msgid "default filament profile"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:868
+#: src/slic3r/GUI/Tab.cpp:902
msgid "default SLA material profile"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:872
+#: src/slic3r/GUI/Tab.cpp:906
msgid "default SLA print profile"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:919 src/slic3r/GUI/Tab.cpp:3174
+#: src/slic3r/GUI/Tab.cpp:948 src/slic3r/GUI/Tab.cpp:3303
msgid "Layers and perimeters"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:920 src/libslic3r/PrintConfig.cpp:46
+#: src/slic3r/GUI/Tab.cpp:949 src/libslic3r/PrintConfig.cpp:55
msgid "Layer height"
msgstr "层高"
-#: src/slic3r/GUI/Tab.cpp:924
+#: src/slic3r/GUI/Tab.cpp:953
msgid "Vertical shells"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:935
+#: src/slic3r/GUI/Tab.cpp:964
msgid "Horizontal shells"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:936 src/libslic3r/PrintConfig.cpp:1788
+#: src/slic3r/GUI/Tab.cpp:965 src/libslic3r/PrintConfig.cpp:1709
msgid "Solid layers"
msgstr "å¯é 层数"
-#: src/slic3r/GUI/Tab.cpp:941
+#: src/slic3r/GUI/Tab.cpp:970
msgid "Quality (slower slicing)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:958
+#: src/slic3r/GUI/Tab.cpp:988
msgid "Reducing printing time"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:970
+#: src/slic3r/GUI/Tab.cpp:1000
msgid "Skirt and brim"
msgstr "环边和裙边"
-#: src/slic3r/GUI/Tab.cpp:987
+#: src/slic3r/GUI/Tab.cpp:1017
msgid "Raft"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:991
+#: src/slic3r/GUI/Tab.cpp:1021
msgid "Options for support material and raft"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1006
+#: src/slic3r/GUI/Tab.cpp:1036
msgid "Speed for print moves"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1018
+#: src/slic3r/GUI/Tab.cpp:1048
msgid "Speed for non-print moves"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1021
+#: src/slic3r/GUI/Tab.cpp:1051
msgid "Modifiers"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1024
+#: src/slic3r/GUI/Tab.cpp:1054
msgid "Acceleration control (advanced)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1031
+#: src/slic3r/GUI/Tab.cpp:1061
msgid "Autospeed (advanced)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1037
+#: src/slic3r/GUI/Tab.cpp:1069
msgid "Multiple Extruders"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1045
+#: src/slic3r/GUI/Tab.cpp:1077
msgid "Ooze prevention"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1062
+#: src/slic3r/GUI/Tab.cpp:1094
msgid "Extrusion width"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1072
+#: src/slic3r/GUI/Tab.cpp:1104
msgid "Overlap"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1075
+#: src/slic3r/GUI/Tab.cpp:1107
msgid "Flow"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1078
+#: src/slic3r/GUI/Tab.cpp:1116
msgid "Other"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1085 src/slic3r/GUI/Tab.cpp:3213
+#: src/slic3r/GUI/Tab.cpp:1119 src/slic3r/GUI/Tab.cpp:3351
msgid "Output options"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1086
+#: src/slic3r/GUI/Tab.cpp:1120
msgid "Sequential printing"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1088
+#: src/slic3r/GUI/Tab.cpp:1122
msgid "Extruder clearance (mm)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1097 src/slic3r/GUI/Tab.cpp:3214
+#: src/slic3r/GUI/Tab.cpp:1131 src/slic3r/GUI/Tab.cpp:3352
msgid "Output file"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1103 src/libslic3r/PrintConfig.cpp:1438
+#: src/slic3r/GUI/Tab.cpp:1138 src/libslic3r/PrintConfig.cpp:1382
msgid "Post-processing scripts"
msgstr "åŽå¤„ç†è„šæœ¬"
-#: src/slic3r/GUI/Tab.cpp:1109 src/slic3r/GUI/Tab.cpp:1110
-#: src/slic3r/GUI/Tab.cpp:1483 src/slic3r/GUI/Tab.cpp:1484
-#: src/slic3r/GUI/Tab.cpp:1883 src/slic3r/GUI/Tab.cpp:1884
-#: src/slic3r/GUI/Tab.cpp:1964 src/slic3r/GUI/Tab.cpp:1965
-#: src/slic3r/GUI/Tab.cpp:3119 src/slic3r/GUI/Tab.cpp:3120
+#: src/slic3r/GUI/Tab.cpp:1144 src/slic3r/GUI/Tab.cpp:1145
+#: src/slic3r/GUI/Tab.cpp:1527 src/slic3r/GUI/Tab.cpp:1528
+#: src/slic3r/GUI/Tab.cpp:1935 src/slic3r/GUI/Tab.cpp:1936
+#: src/slic3r/GUI/Tab.cpp:2027 src/slic3r/GUI/Tab.cpp:2028
+#: src/slic3r/GUI/Tab.cpp:3240 src/slic3r/GUI/Tab.cpp:3241
msgid "Notes"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1116 src/slic3r/GUI/Tab.cpp:1491
-#: src/slic3r/GUI/Tab.cpp:1890 src/slic3r/GUI/Tab.cpp:1971
-#: src/slic3r/GUI/Tab.cpp:3127 src/slic3r/GUI/Tab.cpp:3219
+#: src/slic3r/GUI/Tab.cpp:1151 src/slic3r/GUI/Tab.cpp:1535
+#: src/slic3r/GUI/Tab.cpp:1942 src/slic3r/GUI/Tab.cpp:2034
+#: src/slic3r/GUI/Tab.cpp:3248 src/slic3r/GUI/Tab.cpp:3357
msgid "Dependencies"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1117 src/slic3r/GUI/Tab.cpp:1492
-#: src/slic3r/GUI/Tab.cpp:1891 src/slic3r/GUI/Tab.cpp:1972
-#: src/slic3r/GUI/Tab.cpp:3128 src/slic3r/GUI/Tab.cpp:3220
+#: src/slic3r/GUI/Tab.cpp:1152 src/slic3r/GUI/Tab.cpp:1536
+#: src/slic3r/GUI/Tab.cpp:1943 src/slic3r/GUI/Tab.cpp:2035
+#: src/slic3r/GUI/Tab.cpp:3249 src/slic3r/GUI/Tab.cpp:3358
msgid "Profile dependencies"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1161
+#: src/slic3r/GUI/Tab.cpp:1198
#, no-c-format
msgid ""
"The Spiral Vase mode requires:\n"
@@ -2799,11 +3172,11 @@ msgid ""
"Shall I adjust those settings in order to enable Spiral Vase?"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1168
+#: src/slic3r/GUI/Tab.cpp:1205
msgid "Spiral Vase"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1191
+#: src/slic3r/GUI/Tab.cpp:1228
msgid ""
"The Wipe Tower currently supports the non-soluble supports only\n"
"if they are printed with the current extruder without triggering a tool "
@@ -2814,11 +3187,11 @@ msgid ""
"Shall I adjust those settings in order to enable the Wipe Tower?"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1195 src/slic3r/GUI/Tab.cpp:1212
+#: src/slic3r/GUI/Tab.cpp:1232 src/slic3r/GUI/Tab.cpp:1249
msgid "Wipe Tower"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1209
+#: src/slic3r/GUI/Tab.cpp:1246
msgid ""
"For the Wipe Tower to work with the soluble supports, the support layers\n"
"need to be synchronized with the object layers.\n"
@@ -2826,7 +3199,7 @@ msgid ""
"Shall I synchronize support layers in order to enable the Wipe Tower?"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1227
+#: src/slic3r/GUI/Tab.cpp:1264
msgid ""
"Supports work better, if the following feature is enabled:\n"
"- Detect bridging perimeters\n"
@@ -2834,15 +3207,15 @@ msgid ""
"Shall I adjust those settings for supports?"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1230
+#: src/slic3r/GUI/Tab.cpp:1267
msgid "Support Generator"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1272
+#: src/slic3r/GUI/Tab.cpp:1309
msgid "The "
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1272
+#: src/slic3r/GUI/Tab.cpp:1309
#, no-c-format
msgid ""
" infill pattern is not supposed to work at 100% density.\n"
@@ -2850,96 +3223,96 @@ msgid ""
"Shall I switch to rectilinear fill pattern?"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1388
+#: src/slic3r/GUI/Tab.cpp:1429
msgid "Temperature "
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1394
+#: src/slic3r/GUI/Tab.cpp:1435
msgid "Bed"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1399
+#: src/slic3r/GUI/Tab.cpp:1440
msgid "Cooling"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1400 src/libslic3r/PrintConfig.cpp:1333
-#: src/libslic3r/PrintConfig.cpp:2212
+#: src/slic3r/GUI/Tab.cpp:1441 src/libslic3r/PrintConfig.cpp:1285
+#: src/libslic3r/PrintConfig.cpp:2097
msgid "Enable"
msgstr "使能"
-#: src/slic3r/GUI/Tab.cpp:1411
+#: src/slic3r/GUI/Tab.cpp:1452
msgid "Fan settings"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1412
+#: src/slic3r/GUI/Tab.cpp:1453
msgid "Fan speed"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1420
+#: src/slic3r/GUI/Tab.cpp:1461
msgid "Cooling thresholds"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1426
+#: src/slic3r/GUI/Tab.cpp:1467
msgid "Filament properties"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1430
+#: src/slic3r/GUI/Tab.cpp:1471
msgid "Print speed override"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1440
+#: src/slic3r/GUI/Tab.cpp:1481
msgid "Toolchange parameters with single extruder MM printers"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1455
+#: src/slic3r/GUI/Tab.cpp:1496
msgid "Ramming settings"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1470 src/slic3r/GUI/Tab.cpp:1846
+#: src/slic3r/GUI/Tab.cpp:1514 src/slic3r/GUI/Tab.cpp:1898
msgid "Custom G-code"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1471 src/slic3r/GUI/Tab.cpp:1847
-#: src/libslic3r/PrintConfig.cpp:1817 src/libslic3r/PrintConfig.cpp:1833
+#: src/slic3r/GUI/Tab.cpp:1515 src/slic3r/GUI/Tab.cpp:1899
+#: src/libslic3r/PrintConfig.cpp:1735 src/libslic3r/PrintConfig.cpp:1750
msgid "Start G-code"
msgstr "èµ·å§‹G代ç "
-#: src/slic3r/GUI/Tab.cpp:1477 src/slic3r/GUI/Tab.cpp:1853
-#: src/libslic3r/PrintConfig.cpp:333 src/libslic3r/PrintConfig.cpp:344
+#: src/slic3r/GUI/Tab.cpp:1521 src/slic3r/GUI/Tab.cpp:1905
+#: src/libslic3r/PrintConfig.cpp:358 src/libslic3r/PrintConfig.cpp:368
msgid "End G-code"
msgstr "结尾G代ç "
-#: src/slic3r/GUI/Tab.cpp:1588 src/slic3r/GUI/Tab.cpp:1642
+#: src/slic3r/GUI/Tab.cpp:1632 src/slic3r/GUI/Tab.cpp:1689
msgid " Browse "
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1605 src/slic3r/GUI/Tab.cpp:1788
+#: src/slic3r/GUI/Tab.cpp:1651 src/slic3r/GUI/Tab.cpp:1838
msgid "Test"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1615
+#: src/slic3r/GUI/Tab.cpp:1662
msgid "Could not get a valid Printer Host reference"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1621 src/slic3r/GUI/Tab.cpp:1801
+#: src/slic3r/GUI/Tab.cpp:1668 src/slic3r/GUI/Tab.cpp:1851
msgid "Success!"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1636
+#: src/slic3r/GUI/Tab.cpp:1683
msgid ""
"HTTPS CA file is optional. It is only needed if you use HTTPS with a self-"
"signed certificate."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1648
+#: src/slic3r/GUI/Tab.cpp:1696
msgid "Certificate files (*.crt, *.pem)|*.crt;*.pem|All files|*.*"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1649
+#: src/slic3r/GUI/Tab.cpp:1697
msgid "Open CA certificate file"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1676
+#: src/slic3r/GUI/Tab.cpp:1725
msgid ""
"HTTPS CA File:\n"
"\tOn this system, Slic3r uses HTTPS certificates from the system Certificate "
@@ -2948,250 +3321,254 @@ msgid ""
"Store / Keychain."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1713 src/slic3r/GUI/Tab.cpp:1912
+#: src/slic3r/GUI/Tab.cpp:1763 src/slic3r/GUI/Tab.cpp:1964
msgid "Size and coordinates"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1717 src/slic3r/GUI/Tab.cpp:1916
-#: src/slic3r/GUI/Tab.cpp:2792
+#: src/slic3r/GUI/Tab.cpp:1767 src/slic3r/GUI/Tab.cpp:1968
+#: src/slic3r/GUI/Tab.cpp:2911
msgid " Set "
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1740
+#: src/slic3r/GUI/Tab.cpp:1790
msgid "Capabilities"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1745
+#: src/slic3r/GUI/Tab.cpp:1795
msgid "Number of extruders of the printer."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1773
+#: src/slic3r/GUI/Tab.cpp:1823
msgid "USB/Serial connection"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1774 src/libslic3r/PrintConfig.cpp:1660
+#: src/slic3r/GUI/Tab.cpp:1824 src/libslic3r/PrintConfig.cpp:1590
msgid "Serial port"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1779
+#: src/slic3r/GUI/Tab.cpp:1829
msgid "Rescan serial ports"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1801
+#: src/slic3r/GUI/Tab.cpp:1851
msgid "Connection to printer works correctly."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1804
+#: src/slic3r/GUI/Tab.cpp:1854
msgid "Connection failed."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1817 src/slic3r/GUI/Tab.cpp:1961
+#: src/slic3r/GUI/Tab.cpp:1867 src/slic3r/GUI/Tab.cpp:2022
msgid "Print Host upload"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1859 src/libslic3r/PrintConfig.cpp:92
+#: src/slic3r/GUI/Tab.cpp:1911 src/libslic3r/PrintConfig.cpp:128
msgid "Before layer change G-code"
msgstr "层改å˜å‰çš„G代ç "
-#: src/slic3r/GUI/Tab.cpp:1865 src/libslic3r/PrintConfig.cpp:1042
+#: src/slic3r/GUI/Tab.cpp:1917 src/libslic3r/PrintConfig.cpp:1030
msgid "After layer change G-code"
msgstr "层å˜åŒ–åŽG代ç "
-#: src/slic3r/GUI/Tab.cpp:1871 src/libslic3r/PrintConfig.cpp:2111
+#: src/slic3r/GUI/Tab.cpp:1923 src/libslic3r/PrintConfig.cpp:2005
msgid "Tool change G-code"
msgstr "切æ¢å·¥å…·G代ç "
-#: src/slic3r/GUI/Tab.cpp:1877
+#: src/slic3r/GUI/Tab.cpp:1929
msgid "Between objects G-code (for sequential printing)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1938
+#: src/slic3r/GUI/Tab.cpp:1990
msgid "Display"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:1949 src/slic3r/GUI/Tab.cpp:3102
+#: src/slic3r/GUI/Tab.cpp:2001
+msgid "Tilt"
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:2002
+msgid "Tilt time"
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:2008 src/slic3r/GUI/Tab.cpp:3223
msgid "Corrections"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2011 src/slic3r/GUI/Tab.cpp:2073
-#: src/libslic3r/PrintConfig.cpp:1088 src/libslic3r/PrintConfig.cpp:1098
-#: src/libslic3r/PrintConfig.cpp:1108 src/libslic3r/PrintConfig.cpp:1121
-#: src/libslic3r/PrintConfig.cpp:1132 src/libslic3r/PrintConfig.cpp:1143
-#: src/libslic3r/PrintConfig.cpp:1154
+#: src/slic3r/GUI/Tab.cpp:2074 src/slic3r/GUI/Tab.cpp:2136
+#: src/libslic3r/PrintConfig.cpp:1076 src/libslic3r/PrintConfig.cpp:1086
+#: src/libslic3r/PrintConfig.cpp:1096 src/libslic3r/PrintConfig.cpp:1109
+#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1131
+#: src/libslic3r/PrintConfig.cpp:1142
msgid "Machine limits"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2025
+#: src/slic3r/GUI/Tab.cpp:2088
msgid "Values in this column are for Full Power mode"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2026
+#: src/slic3r/GUI/Tab.cpp:2089
msgid "Full Power"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2031
+#: src/slic3r/GUI/Tab.cpp:2094
msgid "Values in this column are for Silent mode"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2032
+#: src/slic3r/GUI/Tab.cpp:2095
msgid "Silent"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2040
+#: src/slic3r/GUI/Tab.cpp:2103
msgid "Maximum feedrates"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2045
+#: src/slic3r/GUI/Tab.cpp:2108
msgid "Maximum accelerations"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2052
+#: src/slic3r/GUI/Tab.cpp:2115
msgid "Jerk limits"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2057
+#: src/slic3r/GUI/Tab.cpp:2120
msgid "Minimum feedrates"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2095 src/slic3r/GUI/Tab.cpp:2103
+#: src/slic3r/GUI/Tab.cpp:2158 src/slic3r/GUI/Tab.cpp:2166
msgid "Single extruder MM setup"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2104
+#: src/slic3r/GUI/Tab.cpp:2167
msgid "Single extruder multimaterial parameters"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2118 src/libslic3r/GCode/PreviewData.cpp:475
+#: src/slic3r/GUI/Tab.cpp:2181 src/libslic3r/GCode/PreviewData.cpp:475
#, c-format
msgid "Extruder %d"
msgstr "挤出头 %d"
-#: src/slic3r/GUI/Tab.cpp:2125
+#: src/slic3r/GUI/Tab.cpp:2188
msgid "Layer height limits"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2130
+#: src/slic3r/GUI/Tab.cpp:2193
msgid "Position (for multi-extruder printers)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2133
+#: src/slic3r/GUI/Tab.cpp:2196
msgid "Retraction"
msgstr "回缩"
-#: src/slic3r/GUI/Tab.cpp:2136
+#: src/slic3r/GUI/Tab.cpp:2199
msgid "Only lift Z"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2149
+#: src/slic3r/GUI/Tab.cpp:2212
msgid ""
"Retraction when tool is disabled (advanced settings for multi-extruder "
"setups)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2153
+#: src/slic3r/GUI/Tab.cpp:2216
msgid "Preview"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2284
+#: src/slic3r/GUI/Tab.cpp:2352
msgid ""
"The Wipe option is not available when using the Firmware Retraction mode.\n"
"\n"
"Shall I disable it in order to enable Firmware Retraction?"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2286
+#: src/slic3r/GUI/Tab.cpp:2354
msgid "Firmware Retraction"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2565
+#: src/slic3r/GUI/Tab.cpp:2681
#, c-format
msgid "Default preset (%s)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2566
+#: src/slic3r/GUI/Tab.cpp:2682
#, c-format
msgid "Preset (%s)"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2583
+#: src/slic3r/GUI/Tab.cpp:2699
msgid "has the following unsaved changes:"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2586
+#: src/slic3r/GUI/Tab.cpp:2702
msgid "is not compatible with printer"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2587
+#: src/slic3r/GUI/Tab.cpp:2703
msgid "is not compatible with print profile"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2589
+#: src/slic3r/GUI/Tab.cpp:2705
msgid "and it has the following unsaved changes:"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2592
+#: src/slic3r/GUI/Tab.cpp:2708
msgid "Discard changes and continue anyway?"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2593
+#: src/slic3r/GUI/Tab.cpp:2709
msgid "Unsaved Changes"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2604
-msgid "It's impossible to print multi-part object(s) with SLA technology."
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2605
+#: src/slic3r/GUI/Tab.cpp:2721
msgid "Please check your object list before preset changing."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2699
+#: src/slic3r/GUI/Tab.cpp:2801
+msgid "Copy"
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:2823
msgid "The supplied name is empty. It can't be saved."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2704
+#: src/slic3r/GUI/Tab.cpp:2828
msgid "Cannot overwrite a system profile."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2708
+#: src/slic3r/GUI/Tab.cpp:2832
msgid "Cannot overwrite an external profile."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2734
+#: src/slic3r/GUI/Tab.cpp:2858
msgid "remove"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2734
+#: src/slic3r/GUI/Tab.cpp:2858
msgid "delete"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2735
+#: src/slic3r/GUI/Tab.cpp:2859
msgid "Are you sure you want to "
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2735
+#: src/slic3r/GUI/Tab.cpp:2859
msgid " the selected preset?"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2736
+#: src/slic3r/GUI/Tab.cpp:2860
msgid "Remove"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2737
+#: src/slic3r/GUI/Tab.cpp:2861
msgid " Preset"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2791
-msgid "All"
-msgstr ""
-
-#: src/slic3r/GUI/Tab.cpp:2869
+#: src/slic3r/GUI/Tab.cpp:2989
msgid ""
"LOCKED LOCK;indicates that the settings are the same as the system values "
"for the current option group"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2872
+#: src/slic3r/GUI/Tab.cpp:2992
msgid ""
"UNLOCKED LOCK;indicates that some settings were changed and are not equal to "
"the system values for the current option group.\n"
@@ -3199,13 +3576,13 @@ msgid ""
"to the system values."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2878
+#: src/slic3r/GUI/Tab.cpp:2998
msgid ""
"WHITE BULLET;for the left button: \tindicates a non-system preset,\n"
"for the right button: \tindicates that the settings hasn't been modified."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2882
+#: src/slic3r/GUI/Tab.cpp:3002
msgid ""
"BACK ARROW;indicates that the settings were changed and are not equal to the "
"last saved preset for the current option group.\n"
@@ -3213,30 +3590,30 @@ msgid ""
"to the last saved preset."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2908
+#: src/slic3r/GUI/Tab.cpp:3028
msgid ""
"LOCKED LOCK icon indicates that the settings are the same as the system "
"values for the current option group"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2910
+#: src/slic3r/GUI/Tab.cpp:3030
msgid ""
"UNLOCKED LOCK icon indicates that some settings were changed and are not "
"equal to the system values for the current option group.\n"
"Click to reset all settings for current option group to the system values."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2913
+#: src/slic3r/GUI/Tab.cpp:3033
msgid "WHITE BULLET icon indicates a non system preset."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2916
+#: src/slic3r/GUI/Tab.cpp:3036
msgid ""
"WHITE BULLET icon indicates that the settings are the same as in the last "
"saved preset for the current option group."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2918
+#: src/slic3r/GUI/Tab.cpp:3038
msgid ""
"BACK ARROW icon indicates that the settings were changed and are not equal "
"to the last saved preset for the current option group.\n"
@@ -3244,124 +3621,140 @@ msgid ""
"preset."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2924
+#: src/slic3r/GUI/Tab.cpp:3044
msgid ""
"LOCKED LOCK icon indicates that the value is the same as the system value."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2925
+#: src/slic3r/GUI/Tab.cpp:3045
msgid ""
"UNLOCKED LOCK icon indicates that the value was changed and is not equal to "
"the system value.\n"
"Click to reset current value to the system value."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2931
+#: src/slic3r/GUI/Tab.cpp:3051
msgid ""
"WHITE BULLET icon indicates that the value is the same as in the last saved "
"preset."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:2932
+#: src/slic3r/GUI/Tab.cpp:3052
msgid ""
"BACK ARROW icon indicates that the value was changed and is not equal to the "
"last saved preset.\n"
"Click to reset current value to the last saved preset."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3031
+#: src/slic3r/GUI/Tab.cpp:3152
msgid " as:"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3075
+#: src/slic3r/GUI/Tab.cpp:3196
msgid "the following postfix are not allowed:"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3079
+#: src/slic3r/GUI/Tab.cpp:3200
msgid "The supplied name is not available."
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3092
+#: src/slic3r/GUI/Tab.cpp:3213
msgid "Material"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3094 src/slic3r/GUI/Tab.cpp:3176
+#: src/slic3r/GUI/Tab.cpp:3215 src/slic3r/GUI/Tab.cpp:3305
msgid "Layers"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3098
+#: src/slic3r/GUI/Tab.cpp:3219
msgid "Exposure"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3183
+#: src/slic3r/GUI/Tab.cpp:3313
msgid "Support head"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3188
+#: src/slic3r/GUI/Tab.cpp:3318
msgid "Support pillar"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3196
+#: src/slic3r/GUI/Tab.cpp:3328
msgid "Connection of the support sticks and junctions"
msgstr ""
-#: src/slic3r/GUI/Tab.cpp:3200
+#: src/slic3r/GUI/Tab.cpp:3333
msgid "Automatic generation"
msgstr ""
-#: src/slic3r/GUI/Tab.hpp:293 src/slic3r/GUI/Tab.hpp:381
+#: src/slic3r/GUI/Tab.cpp:3395
+msgid "Head penetration should not be greater than the head width."
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:3396
+msgid "Invalid Head penetration"
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:3408
+msgid "Pinhead diameter should be smaller than the pillar diameter."
+msgstr ""
+
+#: src/slic3r/GUI/Tab.cpp:3409
+msgid "Invalid pinhead diameter"
+msgstr ""
+
+#: src/slic3r/GUI/Tab.hpp:307 src/slic3r/GUI/Tab.hpp:395
msgid "Print Settings"
msgstr ""
-#: src/slic3r/GUI/Tab.hpp:311
+#: src/slic3r/GUI/Tab.hpp:325
msgid "Filament Settings"
msgstr ""
-#: src/slic3r/GUI/Tab.hpp:344
+#: src/slic3r/GUI/Tab.hpp:358
msgid "Printer Settings"
msgstr ""
-#: src/slic3r/GUI/Tab.hpp:367
+#: src/slic3r/GUI/Tab.hpp:381
msgid "Material Settings"
msgstr ""
-#: src/slic3r/GUI/Tab.hpp:393
+#: src/slic3r/GUI/Tab.hpp:407
msgid "Save preset"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
+#: src/slic3r/GUI/UpdateDialogs.cpp:29
msgid "Update available"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:28
+#: src/slic3r/GUI/UpdateDialogs.cpp:29
msgid "New version of Slic3r PE is available"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:35
+#: src/slic3r/GUI/UpdateDialogs.cpp:36
msgid "To download, follow the link below."
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:42
+#: src/slic3r/GUI/UpdateDialogs.cpp:44
msgid "Current version:"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:44
+#: src/slic3r/GUI/UpdateDialogs.cpp:46
msgid "New version:"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:52
+#: src/slic3r/GUI/UpdateDialogs.cpp:54
msgid "Don't notify about new releases any more"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:70 src/slic3r/GUI/UpdateDialogs.cpp:162
+#: src/slic3r/GUI/UpdateDialogs.cpp:72 src/slic3r/GUI/UpdateDialogs.cpp:164
msgid "Configuration update"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:70
+#: src/slic3r/GUI/UpdateDialogs.cpp:72
msgid "Configuration update is available"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:73
+#: src/slic3r/GUI/UpdateDialogs.cpp:75
msgid ""
"Would you like to install it?\n"
"\n"
@@ -3371,15 +3764,15 @@ msgid ""
"Updated configuration bundles:"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
+#: src/slic3r/GUI/UpdateDialogs.cpp:111
msgid "Slic3r incompatibility"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:109
+#: src/slic3r/GUI/UpdateDialogs.cpp:111
msgid "Slic3r configuration is incompatible"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:112
+#: src/slic3r/GUI/UpdateDialogs.cpp:114
msgid ""
"This version of Slic3r PE is not compatible with currently installed "
"configuration bundles.\n"
@@ -3391,24 +3784,24 @@ msgid ""
"existing configuration before installing files compatible with this Slic3r.\n"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:121
+#: src/slic3r/GUI/UpdateDialogs.cpp:123
#, c-format
msgid "This Slic3r PE version: %s"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:126
+#: src/slic3r/GUI/UpdateDialogs.cpp:128
msgid "Incompatible bundles:"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:142
+#: src/slic3r/GUI/UpdateDialogs.cpp:144
msgid "Exit Slic3r"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:145
+#: src/slic3r/GUI/UpdateDialogs.cpp:147
msgid "Re-configure"
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:166
+#: src/slic3r/GUI/UpdateDialogs.cpp:168
#, c-format
msgid ""
"Slic3r PE now uses an updated configuration structure.\n"
@@ -3424,15 +3817,15 @@ msgid ""
"choose whether to enable automatic preset updates."
msgstr ""
-#: src/slic3r/GUI/UpdateDialogs.cpp:182
+#: src/slic3r/GUI/UpdateDialogs.cpp:184
msgid "For more information please visit our wiki page:"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:10
+#: src/slic3r/GUI/WipeTowerDialog.cpp:14
msgid "Ramming customization"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:36
+#: src/slic3r/GUI/WipeTowerDialog.cpp:40
msgid ""
"Ramming denotes the rapid extrusion just before a tool change in a single-"
"extruder MM printer. Its purpose is to properly shape the end of the "
@@ -3445,63 +3838,63 @@ msgid ""
"jams, extruder wheel grinding into filament etc."
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:78
+#: src/slic3r/GUI/WipeTowerDialog.cpp:82
msgid "Total ramming time"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:80
+#: src/slic3r/GUI/WipeTowerDialog.cpp:84
msgid "Total rammed volume"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:84
+#: src/slic3r/GUI/WipeTowerDialog.cpp:88
msgid "Ramming line width"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:86
+#: src/slic3r/GUI/WipeTowerDialog.cpp:90
msgid "Ramming line spacing"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:138
+#: src/slic3r/GUI/WipeTowerDialog.cpp:141
msgid "Wipe tower - Purging volume adjustment"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:219
+#: src/slic3r/GUI/WipeTowerDialog.cpp:225
msgid ""
"Here you can adjust required purging volume (mm³) for any given pair of "
"tools."
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:220
+#: src/slic3r/GUI/WipeTowerDialog.cpp:226
msgid "Extruder changed to"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:228
+#: src/slic3r/GUI/WipeTowerDialog.cpp:234
msgid "unloaded"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:229
+#: src/slic3r/GUI/WipeTowerDialog.cpp:235
msgid "loaded"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:234
+#: src/slic3r/GUI/WipeTowerDialog.cpp:240
msgid "Tool #"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:241
+#: src/slic3r/GUI/WipeTowerDialog.cpp:247
msgid ""
"Total purging volume is calculated by summing two values below, depending on "
"which tools are loaded/unloaded."
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:242
+#: src/slic3r/GUI/WipeTowerDialog.cpp:248
msgid "Volume to purge (mm³) when the filament is being"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:256
+#: src/slic3r/GUI/WipeTowerDialog.cpp:262
msgid "From"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:321
+#: src/slic3r/GUI/WipeTowerDialog.cpp:327
msgid ""
"Switching to simple settings will discard changes done in the advanced "
"mode!\n"
@@ -3509,57 +3902,87 @@ msgid ""
"Do you want to proceed?"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
+#: src/slic3r/GUI/WipeTowerDialog.cpp:339
msgid "Show simplified settings"
msgstr ""
-#: src/slic3r/GUI/WipeTowerDialog.cpp:333
+#: src/slic3r/GUI/WipeTowerDialog.cpp:339
msgid "Show advanced settings"
msgstr ""
-#: src/slic3r/Utils/OctoPrint.cpp:65
+#: src/slic3r/GUI/wxExtensions.cpp:2398
+#, c-format
+msgid "Switch to the %s mode"
+msgstr ""
+
+#: src/slic3r/GUI/wxExtensions.cpp:2399
+#, c-format
+msgid "Current mode is %s"
+msgstr ""
+
+#: src/slic3r/Utils/Duet.cpp:51
+msgid "Connection to Duet works correctly."
+msgstr ""
+
+#: src/slic3r/Utils/Duet.cpp:56
+msgid "Could not connect to Duet"
+msgstr ""
+
+#: src/slic3r/Utils/Duet.cpp:84 src/slic3r/Utils/Duet.cpp:154
+msgid "Unknown error occured"
+msgstr ""
+
+#: src/slic3r/Utils/Duet.cpp:148
+msgid "Wrong password"
+msgstr ""
+
+#: src/slic3r/Utils/Duet.cpp:151
+msgid "Could not get resources to create a new connection"
+msgstr ""
+
+#: src/slic3r/Utils/OctoPrint.cpp:69
#, c-format
msgid "Mismatched type of print host: %s"
msgstr ""
-#: src/slic3r/Utils/OctoPrint.cpp:80
+#: src/slic3r/Utils/OctoPrint.cpp:84
msgid "Connection to OctoPrint works correctly."
msgstr ""
-#: src/slic3r/Utils/OctoPrint.cpp:86
+#: src/slic3r/Utils/OctoPrint.cpp:90
msgid "Could not connect to OctoPrint"
msgstr ""
-#: src/slic3r/Utils/OctoPrint.cpp:86
+#: src/slic3r/Utils/OctoPrint.cpp:90
msgid "Note: OctoPrint version at least 1.1.0 is required."
msgstr ""
-#: src/slic3r/Utils/OctoPrint.cpp:181
+#: src/slic3r/Utils/OctoPrint.cpp:195
msgid "Connection to Prusa SLA works correctly."
msgstr ""
-#: src/slic3r/Utils/OctoPrint.cpp:186
+#: src/slic3r/Utils/OctoPrint.cpp:200
msgid "Could not connect to Prusa SLA"
msgstr ""
-#: src/slic3r/Utils/PresetUpdater.cpp:571
+#: src/slic3r/Utils/PresetUpdater.cpp:583
#, c-format
msgid "requires min. %s and max. %s"
msgstr ""
-#: src/slic3r/Utils/PresetUpdater.cpp:576
+#: src/slic3r/Utils/PresetUpdater.cpp:588
#, c-format
msgid "requires min. %s"
msgstr ""
-#: src/slic3r/Utils/PresetUpdater.cpp:578
+#: src/slic3r/Utils/PresetUpdater.cpp:590
#, c-format
msgid "requires max. %s"
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:219
-#: src/slic3r/Utils/FixModelByWin10.cpp:349
-msgid "Exporting the source model"
+#: src/slic3r/Utils/FixModelByWin10.cpp:359
+msgid "Exporting source model"
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:235
@@ -3567,7 +3990,7 @@ msgid "Failed loading the input model."
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:242
-msgid "Repairing the model by the Netfabb service"
+msgid "Repairing model by the Netfabb service"
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:248
@@ -3575,8 +3998,8 @@ msgid "Mesh repair failed."
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:251
-#: src/slic3r/Utils/FixModelByWin10.cpp:367
-msgid "Loading the repaired model"
+#: src/slic3r/Utils/FixModelByWin10.cpp:378
+msgid "Loading repaired model"
msgstr ""
#: src/slic3r/Utils/FixModelByWin10.cpp:263
@@ -3585,124 +4008,308 @@ msgstr ""
msgid "Saving mesh into the 3MF container failed."
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:334
+#: src/slic3r/Utils/FixModelByWin10.cpp:340
msgid "Model fixing"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:335
+#: src/slic3r/Utils/FixModelByWin10.cpp:341
msgid "Exporting model..."
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:357
+#: src/slic3r/Utils/FixModelByWin10.cpp:368
msgid "Export of a temporary 3mf file failed"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:372
+#: src/slic3r/Utils/FixModelByWin10.cpp:383
msgid "Import of the repaired 3mf file failed"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:375
+#: src/slic3r/Utils/FixModelByWin10.cpp:385
+msgid "Repaired 3MF file does not contain any object"
+msgstr ""
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:387
+msgid "Repaired 3MF file contains more than one object"
+msgstr ""
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:389
+msgid "Repaired 3MF file does not contain any volume"
+msgstr ""
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:391
+msgid "Repaired 3MF file contains more than one volume"
+msgstr ""
+
+#: src/slic3r/Utils/FixModelByWin10.cpp:400
msgid "Model repair finished"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:379
+#: src/slic3r/Utils/FixModelByWin10.cpp:406
msgid "Model repair canceled"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
+#: src/slic3r/Utils/FixModelByWin10.cpp:423
msgid "Model repaired successfully"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:396
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
+#: src/slic3r/Utils/FixModelByWin10.cpp:423
+#: src/slic3r/Utils/FixModelByWin10.cpp:426
msgid "Model Repair by the Netfabb service"
msgstr ""
-#: src/slic3r/Utils/FixModelByWin10.cpp:399
+#: src/slic3r/Utils/FixModelByWin10.cpp:426
msgid "Model repair failed: \n"
msgstr ""
-#: src/libslic3r/Print.cpp:1175
+#: src/libslic3r/Zipper.cpp:35
+msgid "undefined error"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:37
+msgid "too many files"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:39
+msgid "file too large"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:41
+msgid "unsupported method"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:43
+msgid "unsupported encryption"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:45
+msgid "unsupported feature"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:47
+msgid "failed finding central directory"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:49
+msgid "not a ZIP archive"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:51
+msgid "invalid header or archive is corrupted"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:53
+msgid "unsupported multidisk archive"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:55
+msgid "decompression failed or archive is corrupted"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:57
+msgid "compression failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:59
+msgid "unexpected decompressed size"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:61
+msgid "CRC-32 check failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:63
+msgid "unsupported central directory size"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:65
+msgid "allocation failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:67
+msgid "file open failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:69
+msgid "file create failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:71
+msgid "file write failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:73
+msgid "file read failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:75
+msgid "file close failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:77
+msgid "file seek failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:79
+msgid "file stat failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:81
+msgid "invalid parameter"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:83
+msgid "invalid filename"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:85
+msgid "buffer too small"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:87
+msgid "internal error"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:89
+msgid "file not found"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:91
+msgid "archive is too large"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:93
+msgid "validation failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:95
+msgid "write calledback failed"
+msgstr ""
+
+#: src/libslic3r/Zipper.cpp:105
+msgid "Error with zip archive"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2153
+msgid "Starting"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2154
+msgid "Filtering"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2155
+msgid "Generate pinheads"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2156
+msgid "Classification"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2157
+msgid "Routing to ground"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2158
+msgid "Routing supports to model surface"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2159
+msgid "Cascading pillars"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2160
+msgid "Processing small holes"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2161
+msgid "Done"
+msgstr ""
+
+#: src/libslic3r/SLA/SLASupportTree.cpp:2162
+msgid "Abort"
+msgstr ""
+
+#: src/libslic3r/Print.cpp:1136
msgid "All objects are outside of the print volume."
msgstr ""
-#: src/libslic3r/Print.cpp:1201
+#: src/libslic3r/Print.cpp:1165
msgid "Some objects are too close; your extruder will collide with them."
msgstr ""
-#: src/libslic3r/Print.cpp:1216
+#: src/libslic3r/Print.cpp:1180
msgid ""
"Some objects are too tall and cannot be printed without extruder collisions."
msgstr ""
-#: src/libslic3r/Print.cpp:1226
+#: src/libslic3r/Print.cpp:1190
msgid "The Spiral Vase option can only be used when printing a single object."
msgstr ""
-#: src/libslic3r/Print.cpp:1228
+#: src/libslic3r/Print.cpp:1192
msgid ""
"The Spiral Vase option can only be used when printing single material "
"objects."
msgstr ""
-#: src/libslic3r/Print.cpp:1234
+#: src/libslic3r/Print.cpp:1198
msgid ""
"All extruders must have the same diameter for single extruder multimaterial "
"printer."
msgstr ""
-#: src/libslic3r/Print.cpp:1239
+#: src/libslic3r/Print.cpp:1203
msgid ""
"The Wipe Tower is currently only supported for the Marlin, RepRap/Sprinter "
"and Repetier G-code flavors."
msgstr ""
-#: src/libslic3r/Print.cpp:1241
+#: src/libslic3r/Print.cpp:1205
msgid ""
"The Wipe Tower is currently only supported with the relative extruder "
"addressing (use_relative_e_distances=1)."
msgstr ""
-#: src/libslic3r/Print.cpp:1253
+#: src/libslic3r/Print.cpp:1226
msgid ""
"The Wipe Tower is only supported for multiple objects if they have equal "
"layer heigths"
msgstr ""
-#: src/libslic3r/Print.cpp:1255
+#: src/libslic3r/Print.cpp:1228
msgid ""
"The Wipe Tower is only supported for multiple objects if they are printed "
"over an equal number of raft layers"
msgstr ""
-#: src/libslic3r/Print.cpp:1257
+#: src/libslic3r/Print.cpp:1230
msgid ""
"The Wipe Tower is only supported for multiple objects if they are printed "
"with the same support_material_contact_distance"
msgstr ""
-#: src/libslic3r/Print.cpp:1259
+#: src/libslic3r/Print.cpp:1232
msgid ""
"The Wipe Tower is only supported for multiple objects if they are sliced "
"equally."
msgstr ""
-#: src/libslic3r/Print.cpp:1281
+#: src/libslic3r/Print.cpp:1261
msgid ""
"The Wipe tower is only supported if all objects have the same layer height "
"profile"
msgstr ""
-#: src/libslic3r/Print.cpp:1290
+#: src/libslic3r/Print.cpp:1271
msgid "The supplied settings will cause an empty print."
msgstr ""
-#: src/libslic3r/Print.cpp:1307
+#: src/libslic3r/Print.cpp:1288
msgid ""
"One or more object were assigned an extruder that the printer does not have."
msgstr ""
-#: src/libslic3r/Print.cpp:1316
+#: src/libslic3r/Print.cpp:1297
msgid ""
"Printing with multiple extruders of differing nozzle diameters. If support "
"is to be printed with the current extruder (support_material_extruder == 0 "
@@ -3710,13 +4317,13 @@ msgid ""
"same diameter."
msgstr ""
-#: src/libslic3r/Print.cpp:1324
+#: src/libslic3r/Print.cpp:1305
msgid ""
"For the Wipe Tower to work with the soluble supports, the support layers "
"need to be synchronized with the object layers."
msgstr ""
-#: src/libslic3r/Print.cpp:1328
+#: src/libslic3r/Print.cpp:1309
msgid ""
"The Wipe Tower currently supports the non-soluble supports only if they are "
"printed with the current extruder without triggering a tool change. (both "
@@ -3724,27 +4331,82 @@ msgid ""
"set to 0)."
msgstr ""
-#: src/libslic3r/Print.cpp:1335
+#: src/libslic3r/Print.cpp:1316
msgid "first_layer_height"
msgstr ""
-#: src/libslic3r/Print.cpp:1350
+#: src/libslic3r/Print.cpp:1331
msgid "First layer height can't be greater than nozzle diameter"
msgstr ""
-#: src/libslic3r/Print.cpp:1354
+#: src/libslic3r/Print.cpp:1335
msgid "Layer height can't be greater than nozzle diameter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:32 src/libslic3r/PrintConfig.cpp:33
+#: src/libslic3r/SLAPrint.cpp:55
+msgid "Slicing model"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:56 src/libslic3r/SLAPrint.cpp:801
+msgid "Generating support points"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:57
+msgid "Generating support tree"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:58
+msgid "Generating pad"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:59
+msgid "Slicing supports"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:71
+msgid "Merging slices and calculating statistics"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:72
+msgid "Rasterizing layers"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:605
+msgid ""
+"Cannot proceed without support points! Add support points or disable support "
+"generation."
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:617
+msgid "Elevation is too low for object."
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:699
+msgid "Slicing had to be stopped due to an internal error."
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:849 src/libslic3r/SLAPrint.cpp:859
+#: src/libslic3r/SLAPrint.cpp:907
+msgid "Visualizing supports"
+msgstr ""
+
+#: src/libslic3r/SLAPrint.cpp:1449
+msgid "Slicing done"
+msgstr ""
+
+#: src/libslic3r/PrintBase.cpp:65
+msgid "Failed processing of the output_filename_format template."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:42 src/libslic3r/PrintConfig.cpp:43
msgid "Printer technology"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:41
+#: src/libslic3r/PrintConfig.cpp:50
msgid "Bed shape"
msgstr "机床形状"
-#: src/libslic3r/PrintConfig.cpp:48
+#: src/libslic3r/PrintConfig.cpp:57
msgid ""
"This setting controls the height (and thus the total number) of the slices/"
"layers. Thinner layers give better accuracy but take more time to print."
@@ -3752,21 +4414,52 @@ msgstr ""
"è¯¥å‚æ•°æŽ§åˆ¶åˆ‡ç‰‡çš„é«˜åº¦ï¼ˆå› æ¤ä¹ŸæŽ§åˆ¶æ€»å±‚数)。较薄的切片å¯ä»¥ä½¿ç²¾åº¦æ›´é«˜ï¼Œä½†èŠ±è´¹çš„"
"æ‰“å°æ—¶é—´ä¹Ÿæ›´é•¿ã€‚"
-#: src/libslic3r/PrintConfig.cpp:56
+#: src/libslic3r/PrintConfig.cpp:64
msgid "Max print height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:57
+#: src/libslic3r/PrintConfig.cpp:65
msgid ""
"Set this to the maximum height that can be reached by your extruder while "
"printing."
msgstr ""
+#: src/libslic3r/PrintConfig.cpp:71
+msgid "Slice gap closing radius"
+msgstr ""
+
#: src/libslic3r/PrintConfig.cpp:73
+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 ""
+
+#: src/libslic3r/PrintConfig.cpp:81
+msgid "Hostname, IP or URL"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:82
+msgid ""
+"Slic3r can upload G-code files to a printer host. This field should contain "
+"the hostname, IP address or URL of the printer host instance."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:88
+msgid "API Key / Password"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:89
+msgid ""
+"Slic3r can upload G-code files to a printer host. This field should contain "
+"the API Key or the password required for authentication."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:111
msgid "Avoid crossing perimeters"
msgstr "é¿å…跨越轮廓"
-#: src/libslic3r/PrintConfig.cpp:74
+#: src/libslic3r/PrintConfig.cpp:112
msgid ""
"Optimize travel moves in order to minimize the crossing of perimeters. This "
"is mostly useful with Bowden extruders which suffer from oozing. This "
@@ -3775,21 +4468,21 @@ msgstr ""
"为了尽é‡å‡å°‘跨越轮廓,优化空程的移动方å¼ã€‚è¿™éžå¸¸é€‚ç”¨äºŽå—æ¸—æ¼é—®é¢˜å½±å“çš„é²ç™»æŒ¤"
"出头。æ¤åŠŸèƒ½ä¼šå‡æ…¢æ‰“å°é€Ÿåº¦å’Œ G 代ç 生æˆé€Ÿåº¦ã€‚"
-#: src/libslic3r/PrintConfig.cpp:82 src/libslic3r/PrintConfig.cpp:2080
+#: src/libslic3r/PrintConfig.cpp:119 src/libslic3r/PrintConfig.cpp:1976
msgid "Other layers"
msgstr "其它层"
-#: src/libslic3r/PrintConfig.cpp:83
+#: src/libslic3r/PrintConfig.cpp:120
msgid ""
"Bed temperature for layers after the first one. Set this to zero to disable "
"bed temperature control commands in the output."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:86
+#: src/libslic3r/PrintConfig.cpp:122
msgid "Bed temperature"
msgstr "机床温度"
-#: src/libslic3r/PrintConfig.cpp:93
+#: src/libslic3r/PrintConfig.cpp:129
msgid ""
"This custom code is inserted at every layer change, right before the Z move. "
"Note that you can use placeholder variables for all Slic3r settings as well "
@@ -3798,11 +4491,11 @@ msgstr ""
"这段自定义代ç 在层改å˜ï¼Œå³Zè½´ç§»åŠ¨å‰æ’入。注æ„除了å¯ä»¥ä½¿ç”¨[layer_num]å’Œ"
"[layer_z],也å¯ä»¥ä½¿ç”¨å ä½ç¬¦å˜é‡æ›¿ä»£æ‰€æœ‰çš„slic3r设置。"
-#: src/libslic3r/PrintConfig.cpp:104
+#: src/libslic3r/PrintConfig.cpp:139
msgid "Between objects G-code"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:105
+#: src/libslic3r/PrintConfig.cpp:140
msgid ""
"This code is inserted between objects when using sequential printing. By "
"default extruder and bed temperature are reset using non-wait command; "
@@ -3812,73 +4505,69 @@ msgid ""
"S[first_layer_temperature]\" command wherever you want."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:114
-msgctxt "Layers"
-msgid "Bottom"
-msgstr "底部"
-
-#: src/libslic3r/PrintConfig.cpp:116
+#: src/libslic3r/PrintConfig.cpp:150
msgid "Number of solid layers to generate on bottom surfaces."
msgstr "底部表é¢ç”Ÿæˆçš„å¯é 层数。"
-#: src/libslic3r/PrintConfig.cpp:118
+#: src/libslic3r/PrintConfig.cpp:151
msgid "Bottom solid layers"
msgstr "底部å¯é 层"
-#: src/libslic3r/PrintConfig.cpp:123
+#: src/libslic3r/PrintConfig.cpp:156
msgid "Bridge"
msgstr "æ¡¥"
-#: src/libslic3r/PrintConfig.cpp:124
+#: src/libslic3r/PrintConfig.cpp:157
msgid ""
"This is the acceleration your printer will use for bridges. Set zero to "
"disable acceleration control for bridges."
msgstr "æ¤é¡¹ä¸ºæ‰“å°æœºåœ¨æ‰“å°æ¡¥æ—¶çš„åŠ é€Ÿåº¦ã€‚è®¾ä¸º0å¯ä»¥ç¦ç”¨æ‰“å°æ¡¥çš„åŠ é€Ÿåº¦æŽ§åˆ¶ã€‚"
-#: src/libslic3r/PrintConfig.cpp:126 src/libslic3r/PrintConfig.cpp:274
-#: src/libslic3r/PrintConfig.cpp:819 src/libslic3r/PrintConfig.cpp:941
-#: src/libslic3r/PrintConfig.cpp:1100 src/libslic3r/PrintConfig.cpp:1145
-#: src/libslic3r/PrintConfig.cpp:1156 src/libslic3r/PrintConfig.cpp:1386
+#: src/libslic3r/PrintConfig.cpp:159 src/libslic3r/PrintConfig.cpp:302
+#: src/libslic3r/PrintConfig.cpp:814 src/libslic3r/PrintConfig.cpp:935
+#: src/libslic3r/PrintConfig.cpp:1088 src/libslic3r/PrintConfig.cpp:1133
+#: src/libslic3r/PrintConfig.cpp:1144 src/libslic3r/PrintConfig.cpp:1333
msgid "mm/s²"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:133
+#: src/libslic3r/PrintConfig.cpp:165
msgid "Bridging angle"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:135
+#: src/libslic3r/PrintConfig.cpp:167
msgid ""
"Bridging angle override. If left to zero, the bridging angle will be "
"calculated automatically. Otherwise the provided angle will be used for all "
"bridges. Use 180° for zero angle."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:138 src/libslic3r/PrintConfig.cpp:734
-#: src/libslic3r/PrintConfig.cpp:1637 src/libslic3r/PrintConfig.cpp:1648
-#: src/libslic3r/PrintConfig.cpp:1896 src/libslic3r/PrintConfig.cpp:2063
-#: src/libslic3r/PrintConfig.cpp:2578
+#: src/libslic3r/PrintConfig.cpp:170 src/libslic3r/PrintConfig.cpp:732
+#: src/libslic3r/PrintConfig.cpp:1569 src/libslic3r/PrintConfig.cpp:1579
+#: src/libslic3r/PrintConfig.cpp:1807 src/libslic3r/PrintConfig.cpp:1961
+#: src/libslic3r/PrintConfig.cpp:2459
msgid "°"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:145
+#: src/libslic3r/PrintConfig.cpp:176
msgid "Bridges fan speed"
msgstr "桥风扇速度"
-#: src/libslic3r/PrintConfig.cpp:146
+#: src/libslic3r/PrintConfig.cpp:177
msgid "This fan speed is enforced during all bridges and overhangs."
msgstr "æ¤é¡¹ä¸ºåœ¨æ‰“å°æ‰€æœ‰æ¡¥å’Œæ‚¬åž‚éƒ¨ä½æ—¶çš„风扇速度。"
-#: src/libslic3r/PrintConfig.cpp:147 src/libslic3r/PrintConfig.cpp:747
-#: src/libslic3r/PrintConfig.cpp:1165 src/libslic3r/PrintConfig.cpp:1232
-#: src/libslic3r/PrintConfig.cpp:1517
+#: src/libslic3r/PrintConfig.cpp:178 src/libslic3r/PrintConfig.cpp:744
+#: src/libslic3r/PrintConfig.cpp:1153 src/libslic3r/PrintConfig.cpp:1216
+#: src/libslic3r/PrintConfig.cpp:1461 src/libslic3r/PrintConfig.cpp:2258
+#: src/libslic3r/PrintConfig.cpp:2498
msgid "%"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:155
+#: src/libslic3r/PrintConfig.cpp:185
msgid "Bridge flow ratio"
msgstr "æ¡¥æµé‡æ¯”"
-#: src/libslic3r/PrintConfig.cpp:157
+#: src/libslic3r/PrintConfig.cpp:187
msgid ""
"This factor affects the amount of plastic for bridging. You can decrease it "
"slightly to pull the extrudates and prevent sagging, although default "
@@ -3888,83 +4577,83 @@ msgstr ""
"æ¤å› ç´ å½±å“æ¡¥æŽ¥éƒ¨ä½çš„塑料用é‡ã€‚å¯ä»¥ç•¥å¾®å‡å°‘该值以回撤挤出物é¿å…滴垂。但默认设"
"置通常æ¥è¯´å·²ç»å¯ä»¥æ»¡è¶³ä½¿ç”¨ï¼Œåœ¨ä¿®æ”¹å‰éœ€é€šè¿‡å†·å´ï¼ˆä½¿ç”¨é£Žæ‰‡ï¼‰è¿›è¡Œæµ‹è¯•。"
-#: src/libslic3r/PrintConfig.cpp:168
+#: src/libslic3r/PrintConfig.cpp:197
msgid "Bridges"
msgstr "桥接处"
-#: src/libslic3r/PrintConfig.cpp:170
+#: src/libslic3r/PrintConfig.cpp:199
msgid "Speed for printing bridges."
msgstr "æ‰“å°æ¡¥æŽ¥å¤„的速度。"
-#: src/libslic3r/PrintConfig.cpp:171 src/libslic3r/PrintConfig.cpp:564
-#: src/libslic3r/PrintConfig.cpp:573 src/libslic3r/PrintConfig.cpp:583
-#: src/libslic3r/PrintConfig.cpp:592 src/libslic3r/PrintConfig.cpp:623
-#: src/libslic3r/PrintConfig.cpp:644 src/libslic3r/PrintConfig.cpp:884
-#: src/libslic3r/PrintConfig.cpp:1013 src/libslic3r/PrintConfig.cpp:1090
-#: src/libslic3r/PrintConfig.cpp:1110 src/libslic3r/PrintConfig.cpp:1123
-#: src/libslic3r/PrintConfig.cpp:1134 src/libslic3r/PrintConfig.cpp:1189
-#: src/libslic3r/PrintConfig.cpp:1252 src/libslic3r/PrintConfig.cpp:1418
-#: src/libslic3r/PrintConfig.cpp:1601 src/libslic3r/PrintConfig.cpp:1611
-#: src/libslic3r/PrintConfig.cpp:2041 src/libslic3r/PrintConfig.cpp:2160
+#: src/libslic3r/PrintConfig.cpp:200 src/libslic3r/PrintConfig.cpp:576
+#: src/libslic3r/PrintConfig.cpp:584 src/libslic3r/PrintConfig.cpp:593
+#: src/libslic3r/PrintConfig.cpp:601 src/libslic3r/PrintConfig.cpp:628
+#: src/libslic3r/PrintConfig.cpp:647 src/libslic3r/PrintConfig.cpp:873
+#: src/libslic3r/PrintConfig.cpp:1000 src/libslic3r/PrintConfig.cpp:1078
+#: src/libslic3r/PrintConfig.cpp:1098 src/libslic3r/PrintConfig.cpp:1111
+#: src/libslic3r/PrintConfig.cpp:1122 src/libslic3r/PrintConfig.cpp:1175
+#: src/libslic3r/PrintConfig.cpp:1234 src/libslic3r/PrintConfig.cpp:1362
+#: src/libslic3r/PrintConfig.cpp:1536 src/libslic3r/PrintConfig.cpp:1545
+#: src/libslic3r/PrintConfig.cpp:1940 src/libslic3r/PrintConfig.cpp:2051
msgid "mm/s"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:178
+#: src/libslic3r/PrintConfig.cpp:207
msgid "Brim width"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:179
+#: src/libslic3r/PrintConfig.cpp:208
msgid ""
"Horizontal width of the brim that will be printed around each object on the "
"first layer."
msgstr "第一层æ¯ä¸ªç‰©ä½“周围打å°çš„裙边水平宽度。"
-#: src/libslic3r/PrintConfig.cpp:187
+#: src/libslic3r/PrintConfig.cpp:215
msgid "Clip multi-part objects"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:188
+#: src/libslic3r/PrintConfig.cpp:216
msgid ""
"When printing multi-material objects, this settings will make slic3r to clip "
"the overlapping object parts one by the other (2nd part will be clipped by "
"the 1st, 3rd part will be clipped by the 1st and 2nd etc)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:196
+#: src/libslic3r/PrintConfig.cpp:223
msgid "Colorprint height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:197
+#: src/libslic3r/PrintConfig.cpp:224
msgid "Heights at which a filament change is to occur. "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:207
+#: src/libslic3r/PrintConfig.cpp:234
msgid "Compatible printers condition"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:208
+#: src/libslic3r/PrintConfig.cpp:235
msgid ""
"A boolean expression using the configuration values of an active printer "
"profile. If this expression evaluates to true, this profile is considered "
"compatible with the active printer profile."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:220
+#: src/libslic3r/PrintConfig.cpp:249
msgid "Compatible print profiles condition"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:221
+#: src/libslic3r/PrintConfig.cpp:250
msgid ""
"A boolean expression using the configuration values of an active print "
"profile. If this expression evaluates to true, this profile is considered "
"compatible with the active print profile."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:235
+#: src/libslic3r/PrintConfig.cpp:267
msgid "Complete individual objects"
msgstr "打å°å®Œæˆå•个物体"
-#: src/libslic3r/PrintConfig.cpp:236
+#: src/libslic3r/PrintConfig.cpp:268
msgid ""
"When printing multiple objects or copies, this feature will complete each "
"object before moving onto next one (and starting it from its bottom layer). "
@@ -3975,33 +4664,33 @@ msgstr ""
"(从底层开始)。æ¤é€‰é¡¹åˆ©äºŽé¿å…æ‰“æ¯æŽ‰ç‰©ä½“ã€‚Slic3r应该给出è¦ç¤ºï¼Œé¿å…挤出头碰"
"撞,但请å°å¿ƒã€‚"
-#: src/libslic3r/PrintConfig.cpp:245
+#: src/libslic3r/PrintConfig.cpp:276
msgid "Enable auto cooling"
msgstr "自动冷å´ä½¿èƒ½"
-#: src/libslic3r/PrintConfig.cpp:246
+#: src/libslic3r/PrintConfig.cpp:277
msgid ""
"This flag enables the automatic cooling logic that adjusts print speed and "
"fan speed according to layer printing time."
msgstr "该选项å¯åŠ¨è‡ªåŠ¨å†·å´ï¼Œä½¿å¾—坿 ¹æ®å±‚æ‰“å°æ—¶é—´è°ƒæ•´æ‰“å°é€Ÿåº¦å’Œé£Žæ‰‡é€Ÿåº¦ã€‚"
-#: src/libslic3r/PrintConfig.cpp:252
+#: src/libslic3r/PrintConfig.cpp:282
msgid "Cooling tube position"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:253
+#: src/libslic3r/PrintConfig.cpp:283
msgid "Distance of the center-point of the cooling tube from the extruder tip "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:261
+#: src/libslic3r/PrintConfig.cpp:290
msgid "Cooling tube length"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:262
+#: src/libslic3r/PrintConfig.cpp:291
msgid "Length of the cooling tube to limit space for cooling moves inside it "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:271
+#: src/libslic3r/PrintConfig.cpp:299
msgid ""
"This is the acceleration your printer will be reset to after the role-"
"specific acceleration values are used (perimeter/infill). Set zero to "
@@ -4010,81 +4699,81 @@ msgstr ""
"è¯¥å€¼ä¸ºæ‰“å°æœºåœ¨ä½¿ç”¨äº†ç‰¹å®šçš„åŠ é€Ÿåº¦å€¼ï¼ˆå¦‚è½®å»“/填充)åŽå°†é‡ç½®çš„åŠ é€Ÿåº¦å€¼ã€‚è®¾ä¸º0以"
"防æ¢é‡ç½®åŠ é€Ÿåº¦ã€‚"
-#: src/libslic3r/PrintConfig.cpp:281
+#: src/libslic3r/PrintConfig.cpp:308
msgid "Default filament profile"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:282
+#: src/libslic3r/PrintConfig.cpp:309
msgid ""
"Default filament profile associated with the current printer profile. On "
"selection of the current printer profile, this filament profile will be "
"activated."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:287
+#: src/libslic3r/PrintConfig.cpp:315
msgid "Default print profile"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:288 src/libslic3r/PrintConfig.cpp:2469
-#: src/libslic3r/PrintConfig.cpp:2479
+#: src/libslic3r/PrintConfig.cpp:316 src/libslic3r/PrintConfig.cpp:2337
+#: src/libslic3r/PrintConfig.cpp:2348
msgid ""
"Default print profile associated with the current printer profile. On "
"selection of the current printer profile, this print profile will be "
"activated."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:293
+#: src/libslic3r/PrintConfig.cpp:322
msgid "Disable fan for the first"
msgstr "å‰å‡ 层ç¦ç”¨é£Žæ‰‡"
-#: src/libslic3r/PrintConfig.cpp:294
+#: src/libslic3r/PrintConfig.cpp:323
msgid ""
"You can set this to a positive value to disable fan at all during the first "
"layers, so that it does not make adhesion worse."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:296 src/libslic3r/PrintConfig.cpp:952
-#: src/libslic3r/PrintConfig.cpp:1487 src/libslic3r/PrintConfig.cpp:1691
-#: src/libslic3r/PrintConfig.cpp:1757 src/libslic3r/PrintConfig.cpp:1935
-#: src/libslic3r/PrintConfig.cpp:1985
+#: src/libslic3r/PrintConfig.cpp:325 src/libslic3r/PrintConfig.cpp:945
+#: src/libslic3r/PrintConfig.cpp:1434 src/libslic3r/PrintConfig.cpp:1619
+#: src/libslic3r/PrintConfig.cpp:1680 src/libslic3r/PrintConfig.cpp:1843
+#: src/libslic3r/PrintConfig.cpp:1888
msgid "layers"
msgstr "层"
-#: src/libslic3r/PrintConfig.cpp:304
+#: src/libslic3r/PrintConfig.cpp:332
msgid "Don't support bridges"
msgstr "䏿”¯æŒæ¡¥æŽ¥"
-#: src/libslic3r/PrintConfig.cpp:306
+#: src/libslic3r/PrintConfig.cpp:334
msgid ""
"Experimental option for preventing support material from being generated "
"under bridged areas."
msgstr "è¯•éªŒé¡¹ï¼Œåœ¨æ¡¥æŽ¥å¤„ç¦æ¢ç”Ÿæˆæ”¯æ’‘ææ–™ã€‚"
-#: src/libslic3r/PrintConfig.cpp:313
+#: src/libslic3r/PrintConfig.cpp:340
msgid "Distance between copies"
msgstr "å¤åˆ¶ç‰©ä½“之间的è·ç¦»"
-#: src/libslic3r/PrintConfig.cpp:314
+#: src/libslic3r/PrintConfig.cpp:341
msgid "Distance used for the auto-arrange feature of the plater."
msgstr "自动分布时所使用的è·ç¦»ã€‚"
-#: src/libslic3r/PrintConfig.cpp:322
+#: src/libslic3r/PrintConfig.cpp:348
msgid "Elephant foot compensation"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:324
+#: src/libslic3r/PrintConfig.cpp:350
msgid ""
"The first layer will be shrunk in the XY plane by the configured value to "
"compensate for the 1st layer squish aka an Elephant Foot effect."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:334
+#: src/libslic3r/PrintConfig.cpp:359
msgid ""
"This end procedure is inserted at the end of the output file. Note that you "
"can use placeholder variables for all Slic3r settings."
msgstr "该部分将æ’入到输出文件的结尾。注æ„å¯å¯¹æ‰€æœ‰çš„Slic3r傿•°ä½¿ç”¨å ä½ç¬¦å˜é‡ã€‚"
-#: src/libslic3r/PrintConfig.cpp:345
+#: src/libslic3r/PrintConfig.cpp:369
msgid ""
"This end procedure is inserted at the end of the output file, before the "
"printer end gcode. Note that you can use placeholder variables for all "
@@ -4094,53 +4783,63 @@ msgstr ""
"该部分将被æ’å…¥è¾“å‡ºæ–‡ä»¶çš„ç»“å°¾ï¼Œä½†åœ¨æ‰“å°æœºç»“å°¾G代ç 之å‰ã€‚注æ„å¯ä»¥å¯¹æ‰€æœ‰Slic3rå‚"
"数使用å ä½ç¬¦å˜é‡ä»£æ›¿ã€‚如果有多个打å°å¤´ï¼ŒG代ç 将按打å°å¤´çš„é¡ºåºæ¥å¤„ç†ã€‚"
-#: src/libslic3r/PrintConfig.cpp:356
+#: src/libslic3r/PrintConfig.cpp:379
msgid "Ensure vertical shell thickness"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:358
+#: src/libslic3r/PrintConfig.cpp:381
msgid ""
"Add solid infill near sloping surfaces to guarantee the vertical shell "
"thickness (top+bottom solid layers)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:365
-msgid "Top/bottom fill pattern"
-msgstr "顶部/åº•éƒ¨å¡«å……æ ·å¼"
+#: src/libslic3r/PrintConfig.cpp:387
+msgid "Top fill pattern"
+msgstr ""
-#: src/libslic3r/PrintConfig.cpp:367
+#: src/libslic3r/PrintConfig.cpp:389
msgid ""
-"Fill pattern for top/bottom infill. This only affects the external visible "
-"layer, and not its adjacent solid shells."
-msgstr "对顶部/底部内部填充的类型。这将影å“外围å¯è§å±‚,ä¸å½±å“其相邻的å¯é 层。"
+"Fill pattern for top infill. This only affects the top visible layer, and "
+"not its adjacent solid shells."
+msgstr ""
-#: src/libslic3r/PrintConfig.cpp:376 src/libslic3r/PrintConfig.cpp:800
-#: src/libslic3r/PrintConfig.cpp:2021
+#: src/libslic3r/PrintConfig.cpp:397 src/libslic3r/PrintConfig.cpp:795
+#: src/libslic3r/PrintConfig.cpp:1921
msgid "Rectilinear"
msgstr "折线å¼"
-#: src/libslic3r/PrintConfig.cpp:377 src/libslic3r/PrintConfig.cpp:806
+#: src/libslic3r/PrintConfig.cpp:398 src/libslic3r/PrintConfig.cpp:801
msgid "Concentric"
msgstr "åŒè½´å¼"
-#: src/libslic3r/PrintConfig.cpp:378 src/libslic3r/PrintConfig.cpp:810
+#: src/libslic3r/PrintConfig.cpp:399 src/libslic3r/PrintConfig.cpp:805
msgid "Hilbert Curve"
msgstr "希尔伯特曲线å¼"
-#: src/libslic3r/PrintConfig.cpp:379 src/libslic3r/PrintConfig.cpp:811
+#: src/libslic3r/PrintConfig.cpp:400 src/libslic3r/PrintConfig.cpp:806
msgid "Archimedean Chords"
msgstr "阿基米德和铉å¼"
# Not so sure about how to put "Octagram Spiral" in Chinese. Or maybe "Octagram螺旋“ is good.
-#: src/libslic3r/PrintConfig.cpp:380 src/libslic3r/PrintConfig.cpp:812
+#: src/libslic3r/PrintConfig.cpp:401 src/libslic3r/PrintConfig.cpp:807
msgid "Octagram Spiral"
msgstr "八角星螺旋å¼"
-#: src/libslic3r/PrintConfig.cpp:386 src/libslic3r/PrintConfig.cpp:397
+#: src/libslic3r/PrintConfig.cpp:408
+msgid "Bottom fill pattern"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:409
+msgid ""
+"Fill pattern for bottom infill. This only affects the bottom external "
+"visible layer, and not its adjacent solid shells."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:414 src/libslic3r/PrintConfig.cpp:424
msgid "External perimeters"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:388
+#: src/libslic3r/PrintConfig.cpp:416
msgid ""
"Set this to a non-zero value to set a manual extrusion width for external "
"perimeters. If left zero, default extrusion width will be used if set, "
@@ -4148,41 +4847,41 @@ msgid ""
"(for example 200%), it will be computed over layer height."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:391 src/libslic3r/PrintConfig.cpp:841
-#: src/libslic3r/PrintConfig.cpp:975 src/libslic3r/PrintConfig.cpp:1408
-#: src/libslic3r/PrintConfig.cpp:1769 src/libslic3r/PrintConfig.cpp:1958
-#: src/libslic3r/PrintConfig.cpp:2129
+#: src/libslic3r/PrintConfig.cpp:419 src/libslic3r/PrintConfig.cpp:834
+#: src/libslic3r/PrintConfig.cpp:966 src/libslic3r/PrintConfig.cpp:1353
+#: src/libslic3r/PrintConfig.cpp:1691 src/libslic3r/PrintConfig.cpp:1864
+#: src/libslic3r/PrintConfig.cpp:2022
msgid "mm or % (leave 0 for default)"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:399
+#: src/libslic3r/PrintConfig.cpp:426
msgid ""
"This separate setting will affect the speed of external perimeters (the "
"visible ones). If expressed as percentage (for example: 80%) it will be "
"calculated on the perimeters speed setting above. Set to zero for auto."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:402 src/libslic3r/PrintConfig.cpp:864
-#: src/libslic3r/PrintConfig.cpp:1725 src/libslic3r/PrintConfig.cpp:1780
-#: src/libslic3r/PrintConfig.cpp:2006 src/libslic3r/PrintConfig.cpp:2142
+#: src/libslic3r/PrintConfig.cpp:429 src/libslic3r/PrintConfig.cpp:855
+#: src/libslic3r/PrintConfig.cpp:1650 src/libslic3r/PrintConfig.cpp:1701
+#: src/libslic3r/PrintConfig.cpp:1907 src/libslic3r/PrintConfig.cpp:2034
msgid "mm/s or %"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:409
+#: src/libslic3r/PrintConfig.cpp:436
msgid "External perimeters first"
msgstr "先打å°å¤–围轮廓"
-#: src/libslic3r/PrintConfig.cpp:411
+#: src/libslic3r/PrintConfig.cpp:438
msgid ""
"Print contour perimeters from the outermost one to the innermost one instead "
"of the default inverse order."
msgstr "ä»Žæœ€å¤–å›´è½®å»“å‘æœ€å†…部的轮廓打å°ï¼Œè€Œä¸æ˜¯åæ–¹å‘。"
-#: src/libslic3r/PrintConfig.cpp:418
+#: src/libslic3r/PrintConfig.cpp:444
msgid "Extra perimeters if needed"
msgstr "如果需è¦çš„è¯ï¼Œæ‰“å°å¤–围轮廓"
-#: src/libslic3r/PrintConfig.cpp:420
+#: src/libslic3r/PrintConfig.cpp:446
#, no-c-format
msgid ""
"Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r "
@@ -4190,14 +4889,14 @@ msgid ""
"is supported."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:431
+#: src/libslic3r/PrintConfig.cpp:456
msgid ""
"The extruder to use (unless more specific extruder settings are specified). "
"This value overrides perimeter and infill extruders, but not the support "
"extruders."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:444
+#: src/libslic3r/PrintConfig.cpp:468
msgid ""
"Set this to the vertical distance between your nozzle tip and (usually) the "
"X carriage rods. In other words, this is the height of the clearance "
@@ -4207,11 +4906,11 @@ msgstr ""
"设置为喷嘴尖端和(通常)Xæž¶æ†ä¹‹é—´çš„垂直è·ç¦»ã€‚æ¢å¥è¯è¯´ï¼Œè¿™æ˜¯åœ¨ä½ 的挤出机周围的"
"ç©ºéš™æ°”ç¼¸çš„é«˜åº¦ï¼Œå®ƒä»£è¡¨äº†æŒ¤å‡ºå¤´åœ¨ä¸Žå…¶ä»–å°æ‰“å°ç‰©ä½“碰撞å‰ç§‘达到的最大深度。"
-#: src/libslic3r/PrintConfig.cpp:455
+#: src/libslic3r/PrintConfig.cpp:478
msgid "Radius"
msgstr "åŠå¾„"
-#: src/libslic3r/PrintConfig.cpp:456
+#: src/libslic3r/PrintConfig.cpp:479
msgid ""
"Set this to the clearance radius around your extruder. If the extruder is "
"not centered, choose the largest value for safety. This setting is used to "
@@ -4220,19 +4919,19 @@ msgstr ""
"设置为挤出头周围的空隙åŠå¾„。如果挤出头未置ä¸ï¼Œå®‰å…¨èµ·è§è¯·é€‰æ‹©æœ€å¤§å€¼ã€‚è¯¥å‚æ•°ç”¨"
"于检查碰撞,并在界é¢ä¸æ˜¾ç¤ºå›¾å½¢é¢„览。"
-#: src/libslic3r/PrintConfig.cpp:467
+#: src/libslic3r/PrintConfig.cpp:489
msgid "Extruder Color"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:468 src/libslic3r/PrintConfig.cpp:535
+#: src/libslic3r/PrintConfig.cpp:490 src/libslic3r/PrintConfig.cpp:550
msgid "This is only used in the Slic3r interface as a visual help."
msgstr "ä»…æä¾›Slic3r界é¢çš„视觉帮助。"
-#: src/libslic3r/PrintConfig.cpp:475
+#: src/libslic3r/PrintConfig.cpp:496
msgid "Extruder offset"
msgstr "挤出头åç½®"
-#: src/libslic3r/PrintConfig.cpp:476
+#: src/libslic3r/PrintConfig.cpp:497
msgid ""
"If your firmware doesn't handle the extruder displacement you need the G-"
"code to take it into account. This option lets you specify the displacement "
@@ -4243,22 +4942,22 @@ msgstr ""
"化æ¯ä¸ªæŒ¤å‡ºå¤´ç›¸å¯¹ç¬¬ä¸€ä¸ªæŒ¤å‡ºå¤´çš„ä½ç§»é‡ã€‚一般为æ£åæ ‡ï¼ˆå®ƒä»¬å°†ä»ŽXYåæ ‡ç›¸å‡å¾—"
"到)。"
-#: src/libslic3r/PrintConfig.cpp:486
+#: src/libslic3r/PrintConfig.cpp:506
msgid "Extrusion axis"
msgstr "挤出轴"
-#: src/libslic3r/PrintConfig.cpp:487
+#: src/libslic3r/PrintConfig.cpp:507
msgid ""
"Use this option to set the axis letter associated to your printer's extruder "
"(usually E but some printers use A)."
msgstr ""
"ä½¿ç”¨è¯¥é¡¹è®¾ç½®ä½ çš„æ‰“å°æœºæŒ¤å‡ºå¤´çš„è½´æ‰€ç”¨å—æ¯ï¼ˆä¸€èˆ¬ä¸ºEï¼Œä½†æœ‰çš„æ‰“å°æœºä½¿ç”¨A)。"
-#: src/libslic3r/PrintConfig.cpp:493
+#: src/libslic3r/PrintConfig.cpp:512
msgid "Extrusion multiplier"
msgstr "æŒ¤å‡ºå€æ•°"
-#: src/libslic3r/PrintConfig.cpp:494
+#: src/libslic3r/PrintConfig.cpp:513
msgid ""
"This factor changes the amount of flow proportionally. You may need to tweak "
"this setting to get nice surface finish and correct single wall widths. "
@@ -4269,11 +4968,11 @@ msgstr ""
"的宽度。通常值范围在0.9到1.1ä¹‹é—´ã€‚å¦‚æžœä½ è§‰å¾—æœ‰å¿…è¦æ›´æ”¹å¹…åº¦æ›´å¤§ï¼Œæ£€æŸ¥ä¸æ–™ç›´å¾„"
"å’Œä½ çš„å›ºä»¶Eæ¥éª¤ã€‚"
-#: src/libslic3r/PrintConfig.cpp:503
+#: src/libslic3r/PrintConfig.cpp:521
msgid "Default extrusion width"
msgstr "默认挤出宽度"
-#: src/libslic3r/PrintConfig.cpp:505
+#: src/libslic3r/PrintConfig.cpp:523
msgid ""
"Set this to a non-zero value to allow a manual extrusion width. If left to "
"zero, Slic3r derives extrusion widths from the nozzle diameter (see the "
@@ -4282,15 +4981,15 @@ msgid ""
"height."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:509
+#: src/libslic3r/PrintConfig.cpp:527
msgid "mm or % (leave 0 for auto)"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:515
+#: src/libslic3r/PrintConfig.cpp:532
msgid "Keep fan always on"
msgstr "ä¿æŒé£Žæ‰‡æ€»æ˜¯æ‰“å¼€"
-#: src/libslic3r/PrintConfig.cpp:516
+#: src/libslic3r/PrintConfig.cpp:533
msgid ""
"If this is enabled, fan will never be disabled and will be kept running at "
"least at its minimum speed. Useful for PLA, harmful for ABS."
@@ -4298,11 +4997,11 @@ msgstr ""
"勾选æ¤é¡¹ï¼Œé£Žæ‰‡å°†ä¸ä¼šè¢«å…³é—,在整个打å°è¿‡ç¨‹ä¸å°†æŒç»ä»¥ä¸ä½ŽäºŽæœ€ä½Žé€Ÿå¼€å¯ã€‚对于PLA"
"ææ–™æœ‰ç”¨ï¼Œå¯¹ABSææ–™ä¸é€‚用。"
-#: src/libslic3r/PrintConfig.cpp:522
+#: src/libslic3r/PrintConfig.cpp:538
msgid "Enable fan if layer print time is below"
msgstr "å¦‚æžœæ‰“å°æ—¶é—´ä½ŽäºŽè¯¥å€¼ï¼Œåˆ™æ°”动风扇"
-#: src/libslic3r/PrintConfig.cpp:523
+#: src/libslic3r/PrintConfig.cpp:539
msgid ""
"If layer print time is estimated below this number of seconds, fan will be "
"enabled and its speed will be calculated by interpolating the minimum and "
@@ -4311,27 +5010,27 @@ msgstr ""
"å¦‚æžœä¼°ç®—çš„æ‰“å°æ—¶é—´ä½ŽäºŽè¯¥æ•°å€¼ï¼ˆå•ä½ä¸ºç§’),风扇将å¯ç”¨ï¼Œè€Œä¸”é€Ÿåº¦å€¼æ ¹æ®æ’补最å°"
"速度值和最大速度值æ¥è®¡ç®—。"
-#: src/libslic3r/PrintConfig.cpp:525 src/libslic3r/PrintConfig.cpp:1711
+#: src/libslic3r/PrintConfig.cpp:541 src/libslic3r/PrintConfig.cpp:1637
msgid "approximate seconds"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:534
+#: src/libslic3r/PrintConfig.cpp:549
msgid "Color"
msgstr "颜色"
-#: src/libslic3r/PrintConfig.cpp:541
+#: src/libslic3r/PrintConfig.cpp:555
msgid "Filament notes"
msgstr "䏿–™å¤‡æ³¨"
-#: src/libslic3r/PrintConfig.cpp:542
+#: src/libslic3r/PrintConfig.cpp:556
msgid "You can put your notes regarding the filament here."
msgstr "å…³äºŽææ–™çš„å¤‡æ³¨å¯æ”¾è¿™é‡Œã€‚"
-#: src/libslic3r/PrintConfig.cpp:551 src/libslic3r/PrintConfig.cpp:1196
+#: src/libslic3r/PrintConfig.cpp:564 src/libslic3r/PrintConfig.cpp:1181
msgid "Max volumetric speed"
msgstr "最大体积速度"
-#: src/libslic3r/PrintConfig.cpp:552
+#: src/libslic3r/PrintConfig.cpp:565
msgid ""
"Maximum volumetric speed allowed for this filament. Limits the maximum "
"volumetric speed of a print to the minimum of print and filament volumetric "
@@ -4340,79 +5039,79 @@ msgstr ""
"è¯¥ææ–™æ‰€å…许的最大体积速度。把最大体积速度é™å®šä¸ºæ‰“å°é€Ÿåº¦å’Œææ–™ä½“积速度的最å°"
"值。设为0åˆ™æ— é™åˆ¶ã€‚"
-#: src/libslic3r/PrintConfig.cpp:555 src/libslic3r/PrintConfig.cpp:1199
+#: src/libslic3r/PrintConfig.cpp:568 src/libslic3r/PrintConfig.cpp:1184
msgid "mm³/s"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:562
+#: src/libslic3r/PrintConfig.cpp:574
msgid "Loading speed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:563
+#: src/libslic3r/PrintConfig.cpp:575
msgid "Speed used for loading the filament on the wipe tower. "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:571
+#: src/libslic3r/PrintConfig.cpp:582
msgid "Loading speed at the start"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:572
+#: src/libslic3r/PrintConfig.cpp:583
msgid "Speed used at the very beginning of loading phase. "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:580
+#: src/libslic3r/PrintConfig.cpp:590
msgid "Unloading speed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:581
+#: src/libslic3r/PrintConfig.cpp:591
msgid ""
"Speed used for unloading the filament on the wipe tower (does not affect "
"initial part of unloading just after ramming). "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:590
+#: src/libslic3r/PrintConfig.cpp:599
msgid "Unloading speed at the start"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:591
+#: src/libslic3r/PrintConfig.cpp:600
msgid ""
"Speed used for unloading the tip of the filament immediately after ramming. "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:599
+#: src/libslic3r/PrintConfig.cpp:607
msgid "Delay after unloading"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:600
+#: src/libslic3r/PrintConfig.cpp:608
msgid ""
"Time to wait after the filament is unloaded. May help to get reliable "
"toolchanges with flexible materials that may need more time to shrink to "
"original dimensions. "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:610
+#: src/libslic3r/PrintConfig.cpp:617
msgid "Number of cooling moves"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:611
+#: src/libslic3r/PrintConfig.cpp:618
msgid ""
"Filament is cooled by being moved back and forth in the cooling tubes. "
"Specify desired number of these moves "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:620
+#: src/libslic3r/PrintConfig.cpp:626
msgid "Speed of the first cooling move"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:621
+#: src/libslic3r/PrintConfig.cpp:627
msgid "Cooling moves are gradually accelerating beginning at this speed. "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:629
+#: src/libslic3r/PrintConfig.cpp:634
msgid "Minimal purge on wipe tower"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:630
+#: src/libslic3r/PrintConfig.cpp:635
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 "
@@ -4421,44 +5120,44 @@ msgid ""
"to produce successive infill or sacrificial object extrusions reliably."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:635
+#: src/libslic3r/PrintConfig.cpp:639
msgid "mm³"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:641
+#: src/libslic3r/PrintConfig.cpp:645
msgid "Speed of the last cooling move"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:642
+#: src/libslic3r/PrintConfig.cpp:646
msgid "Cooling moves are gradually accelerating towards this speed. "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:650
+#: src/libslic3r/PrintConfig.cpp:653
msgid "Filament load time"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:651
+#: src/libslic3r/PrintConfig.cpp:654
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 ""
-#: src/libslic3r/PrintConfig.cpp:659
+#: src/libslic3r/PrintConfig.cpp:661
msgid "Ramming parameters"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:660
+#: src/libslic3r/PrintConfig.cpp:662
msgid ""
"This string is edited by RammingDialog and contains ramming specific "
"parameters "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:667
+#: src/libslic3r/PrintConfig.cpp:668
msgid "Filament unload time"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:668
+#: src/libslic3r/PrintConfig.cpp:669
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 "
@@ -4474,11 +5173,11 @@ msgstr ""
"åœ¨è¿™é‡Œè¾“å…¥ä½ çš„ææ–™ç›´å¾„。需è¦è¾ƒé«˜ç²¾åº¦ï¼Œæ‰€ä»¥è¯·ä½¿ç”¨å¡å°ºï¼Œæ²¿ç€ææ–™é•¿ä¸åšå¤šæ¬¡æµ‹"
"é‡ï¼Œè®¡ç®—å¹³å‡å€¼ã€‚"
-#: src/libslic3r/PrintConfig.cpp:685
+#: src/libslic3r/PrintConfig.cpp:684
msgid "Density"
msgstr "密度"
-#: src/libslic3r/PrintConfig.cpp:686
+#: src/libslic3r/PrintConfig.cpp:685
msgid ""
"Enter your filament density here. This is only for statistical information. "
"A decent way is to weigh a known length of filament and compute the ratio of "
@@ -4488,42 +5187,42 @@ msgstr ""
"åœ¨è¿™é‡Œè¾“å…¥ä½ çš„ä¸æ–™å¯†åº¦ã€‚æ¤ä»…为统计信æ¯ã€‚一个ä¸é”™çš„æ–¹æ³•是测é‡ä¸€æ®µå·²çŸ¥é•¿åº¦ä¸æ–™"
"çš„é‡é‡ï¼Œç„¶åŽè®¡ç®—体积。更好的方法å¼ç›´æŽ¥é€šè¿‡ä½ç§»è®¡ç®—体积。"
-#: src/libslic3r/PrintConfig.cpp:689
+#: src/libslic3r/PrintConfig.cpp:688
msgid "g/cm³"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:695
+#: src/libslic3r/PrintConfig.cpp:693
msgid "Filament type"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:696
+#: src/libslic3r/PrintConfig.cpp:694
msgid "The filament material type for use in custom G-codes."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:712
+#: src/libslic3r/PrintConfig.cpp:710
msgid "Soluble material"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:713
+#: src/libslic3r/PrintConfig.cpp:711
msgid "Soluble material is most likely used for a soluble support."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:719
+#: src/libslic3r/PrintConfig.cpp:717
msgid ""
"Enter your filament cost per kg here. This is only for statistical "
"information."
msgstr "åœ¨è¿™é‡Œè¾“å…¥ä¸æ–™æ¯å…¬æ–¤çš„ä»·æ ¼ã€‚ä»…ç”¨äºŽç»Ÿè®¡ä¿¡æ¯ã€‚"
# Set this to be the local currency symbol.
-#: src/libslic3r/PrintConfig.cpp:720
+#: src/libslic3r/PrintConfig.cpp:718
msgid "money/kg"
msgstr "Â¥/kg"
-#: src/libslic3r/PrintConfig.cpp:729
+#: src/libslic3r/PrintConfig.cpp:727
msgid "Fill angle"
msgstr "填充角度"
-#: src/libslic3r/PrintConfig.cpp:731
+#: src/libslic3r/PrintConfig.cpp:729
msgid ""
"Default base angle for infill orientation. Cross-hatching will be applied to "
"this. Bridges will be infilled using the best direction Slic3r can detect, "
@@ -4532,72 +5231,72 @@ msgstr ""
"填充的默认基础方å‘角。交å‰å¼•线适用于æ¤ã€‚桥接处将使用Slic3ræ‰€ä¾¦æµ‹çš„æœ€å¥½æ–¹å‘æ¥"
"填充,所以æ¤å‚æ•°ä¸å½±å“它们。"
-#: src/libslic3r/PrintConfig.cpp:744
+#: src/libslic3r/PrintConfig.cpp:741
msgid "Fill density"
msgstr "填充密度"
-#: src/libslic3r/PrintConfig.cpp:746
+#: src/libslic3r/PrintConfig.cpp:743
msgid "Density of internal infill, expressed in the range 0% - 100%."
msgstr "内部填充的密度,以0% - 100% 表示。"
-#: src/libslic3r/PrintConfig.cpp:782
+#: src/libslic3r/PrintConfig.cpp:778
msgid "Fill pattern"
msgstr "å¡«å……æ ·å¼"
-#: src/libslic3r/PrintConfig.cpp:784
+#: src/libslic3r/PrintConfig.cpp:780
msgid "Fill pattern for general low-density infill."
msgstr "ä¸€èˆ¬ä½Žå¯†åº¦å¡«å……çš„å¡«å……æ ·å¼ã€‚"
-#: src/libslic3r/PrintConfig.cpp:801
+#: src/libslic3r/PrintConfig.cpp:796
msgid "Grid"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:802
+#: src/libslic3r/PrintConfig.cpp:797
msgid "Triangles"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:803
+#: src/libslic3r/PrintConfig.cpp:798
msgid "Stars"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:804
+#: src/libslic3r/PrintConfig.cpp:799
msgid "Cubic"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:805
+#: src/libslic3r/PrintConfig.cpp:800
msgid "Line"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:807 src/libslic3r/PrintConfig.cpp:2023
+#: src/libslic3r/PrintConfig.cpp:802 src/libslic3r/PrintConfig.cpp:1923
msgid "Honeycomb"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:808
+#: src/libslic3r/PrintConfig.cpp:803
msgid "3D Honeycomb"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:809
+#: src/libslic3r/PrintConfig.cpp:804
msgid "Gyroid"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:816 src/libslic3r/PrintConfig.cpp:826
-#: src/libslic3r/PrintConfig.cpp:835 src/libslic3r/PrintConfig.cpp:871
+#: src/libslic3r/PrintConfig.cpp:811 src/libslic3r/PrintConfig.cpp:820
+#: src/libslic3r/PrintConfig.cpp:828 src/libslic3r/PrintConfig.cpp:861
msgid "First layer"
msgstr "首层"
-#: src/libslic3r/PrintConfig.cpp:817
+#: src/libslic3r/PrintConfig.cpp:812
msgid ""
"This is the acceleration your printer will use for first layer. Set zero to "
"disable acceleration control for first layer."
msgstr "æ¤é¡¹ä¸ºæ‰“å°æœºå¯¹é¦–å±‚ä½¿ç”¨çš„åŠ é€Ÿåº¦ã€‚è®¾ä¸º0则对首层ç¦ç”¨åŠ é€ŸæŽ§åˆ¶ã€‚"
-#: src/libslic3r/PrintConfig.cpp:827
+#: src/libslic3r/PrintConfig.cpp:821
msgid ""
"Heated build plate temperature for the first layer. Set this to zero to "
"disable bed temperature control commands in the output."
msgstr "é¦–å±‚çš„åŠ çƒæ¿æ¸©åº¦ã€‚设为0,å¯åœ¨è¾“出ä¸ç¦ç”¨æœºåºŠæ¸©åº¦æŽ§åˆ¶æŒ‡ä»¤ã€‚"
-#: src/libslic3r/PrintConfig.cpp:837
+#: src/libslic3r/PrintConfig.cpp:830
msgid ""
"Set this to a non-zero value to set a manual extrusion width for first "
"layer. You can use this to force fatter extrudates for better adhesion. If "
@@ -4605,11 +5304,11 @@ msgid ""
"layer height. If set to zero, it will use the default extrusion width."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:848
+#: src/libslic3r/PrintConfig.cpp:840
msgid "First layer height"
msgstr "首层高度"
-#: src/libslic3r/PrintConfig.cpp:850
+#: src/libslic3r/PrintConfig.cpp:842
msgid ""
"When printing with very low layer heights, you might still want to print a "
"thicker bottom layer to improve adhesion and tolerance for non perfect build "
@@ -4619,16 +5318,16 @@ msgstr ""
"当以éžå¸¸ä½Žçš„å±‚é«˜æ‰“å°æ—¶ï¼Œå¯¹äºŽä¸å¤ªç†æƒ³çš„çƒåºŠæ¥è¯´å¯èƒ½éœ€è¦æ‰“å°è¾ƒåŽšçš„åº•å±‚æ¥æé«˜ç²˜"
"附效果。该值å¯è¢«è¡¨ç¤ºä¸ºä¸€ä¸ªç»å¯¹å€¼ï¼Œæˆ–者一个相对于默认层高的百分数(如150%)。"
-#: src/libslic3r/PrintConfig.cpp:854 src/libslic3r/PrintConfig.cpp:1003
-#: src/libslic3r/PrintConfig.cpp:1884
+#: src/libslic3r/PrintConfig.cpp:846 src/libslic3r/PrintConfig.cpp:991
+#: src/libslic3r/PrintConfig.cpp:1796
msgid "mm or %"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:860
+#: src/libslic3r/PrintConfig.cpp:851
msgid "First layer speed"
msgstr "首层速度"
-#: src/libslic3r/PrintConfig.cpp:861
+#: src/libslic3r/PrintConfig.cpp:852
msgid ""
"If expressed as absolute value in mm/s, this speed will be applied to all "
"the print moves of the first layer, regardless of their type. If expressed "
@@ -4637,7 +5336,7 @@ msgstr ""
"如果表示为mm/s的数值,该值将被用于首层的打å°åŠ¨ä½œï¼Œæ— å…³åŠ¨ä½œçš„ç±»åž‹ã€‚å¦‚æžœè¡¨ç¤ºä¸º"
"百分数(如40%),则以默认速度值为基准。"
-#: src/libslic3r/PrintConfig.cpp:872
+#: src/libslic3r/PrintConfig.cpp:862
msgid ""
"Extruder temperature for first layer. If you want to control temperature "
"manually during print, set this to zero to disable temperature control "
@@ -4646,18 +5345,18 @@ msgstr ""
"首层挤出头温度。如果è¦åœ¨æ‰“å°è¿‡ç¨‹ä¸æ‰‹åŠ¨æŽ§åˆ¶æ¸©åº¦ï¼Œå°†è¯¥é¡¹è®¾ä¸º0æ¥ç¦æ¢è¾“出文件ä¸çš„"
"控制命令。"
-#: src/libslic3r/PrintConfig.cpp:882
+#: src/libslic3r/PrintConfig.cpp:871
msgid ""
"Speed for filling small gaps using short zigzag moves. Keep this reasonably "
"low to avoid too much shaking and resonance issues. Set zero to disable gaps "
"filling."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:890
+#: src/libslic3r/PrintConfig.cpp:879
msgid "Verbose G-code"
msgstr "详细的G代ç "
-#: src/libslic3r/PrintConfig.cpp:891
+#: src/libslic3r/PrintConfig.cpp:880
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 "
@@ -4666,11 +5365,11 @@ msgstr ""
"å¯åŠ¨è¯¥é¡¹å¯èŽ·å¾—å¸¦æ³¨é‡Šçš„Gä»£ç æ–‡ä»¶ï¼Œæ¯ä¸€è¡Œéƒ½æœ‰å¯¹åº”的解释性文å—。如果从SD塿‰“å°ï¼Œ"
"文件冗余部分å¯èƒ½å‡ç¼“ä½ çš„å›ºä»¶è¿è¡Œé€Ÿåº¦ã€‚"
-#: src/libslic3r/PrintConfig.cpp:899
+#: src/libslic3r/PrintConfig.cpp:887
msgid "G-code flavor"
msgstr "G代ç é£Žæ ¼"
-#: src/libslic3r/PrintConfig.cpp:900
+#: src/libslic3r/PrintConfig.cpp:888
msgid ""
"Some G/M-code commands, including temperature control and others, are not "
"universal. Set this option to your printer's firmware to get a compatible "
@@ -4680,32 +5379,32 @@ msgstr ""
"一些 G/M 代ç 的指令,包括温度控制和其他,但ä¸é€šç”¨ã€‚å°†æ¤é¡¹è®¾ä¸ºæ‰“å°æœºçš„固件æ¥èŽ·"
"å–å…¼å®¹æ€§çš„è¾“å‡ºã€‚â€œæ— æŒ¤å‡ºâ€é€‰é¡¹ä½¿å¾—Slic3rä¸è¾“出任何挤出值。"
-#: src/libslic3r/PrintConfig.cpp:924
+#: src/libslic3r/PrintConfig.cpp:911
msgid "No extrusion"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:929
+#: src/libslic3r/PrintConfig.cpp:924
msgid "High extruder current on filament swap"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:930
+#: src/libslic3r/PrintConfig.cpp:925
msgid ""
"It may be beneficial to increase the extruder motor current during the "
"filament exchange sequence to allow for rapid ramming feed rates and to "
"overcome resistance when loading a filament with an ugly shaped tip."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:939
+#: src/libslic3r/PrintConfig.cpp:933
msgid ""
"This is the acceleration your printer will use for infill. Set zero to "
"disable acceleration control for infill."
msgstr "æ‰“å°æœºå¡«å……åŠ é€Ÿåº¦ã€‚è®¾ä¸º0å¯ç¦ç”¨å¡«å……åŠ é€ŸæŽ§åˆ¶ã€‚"
-#: src/libslic3r/PrintConfig.cpp:948
+#: src/libslic3r/PrintConfig.cpp:941
msgid "Combine infill every"
msgstr "æ¯å‡ 层è”åˆå¡«å……"
-#: src/libslic3r/PrintConfig.cpp:950
+#: src/libslic3r/PrintConfig.cpp:943
msgid ""
"This feature allows to combine infill and speed up your print by extruding "
"thicker infill layers while preserving thin perimeters, thus accuracy."
@@ -4713,19 +5412,19 @@ msgstr ""
"该功能å¯é€šè¿‡æŒ¤å‡ºæ›´åŽšçš„å¡«å……å±‚æ¥å®žçްè”åˆå¡«å……ï¼Œå¹¶åŠ é€Ÿæ‰“å°ï¼ŒåŒæ—¶ä¿ç•™äº†è–„å£ï¼Œä¹Ÿå°±"
"ä¿è¯äº†ç²¾åº¦ã€‚"
-#: src/libslic3r/PrintConfig.cpp:954
+#: src/libslic3r/PrintConfig.cpp:946
msgid "Combine infill every n layers"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:960
+#: src/libslic3r/PrintConfig.cpp:952
msgid "Infill extruder"
msgstr "填充挤出头"
-#: src/libslic3r/PrintConfig.cpp:962
+#: src/libslic3r/PrintConfig.cpp:954
msgid "The extruder to use when printing infill."
msgstr "打å°å¡«å……时使用的挤出头。"
-#: src/libslic3r/PrintConfig.cpp:971
+#: src/libslic3r/PrintConfig.cpp:962
msgid ""
"Set this to a non-zero value to set a manual extrusion width for infill. If "
"left zero, default extrusion width will be used if set, otherwise 1.125 x "
@@ -4734,21 +5433,21 @@ msgid ""
"example 90%) it will be computed over layer height."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:981
+#: src/libslic3r/PrintConfig.cpp:971
msgid "Infill before perimeters"
msgstr "å…ˆå¡«å……åŽæ‰“å°è½®å»“"
-#: src/libslic3r/PrintConfig.cpp:982
+#: src/libslic3r/PrintConfig.cpp:972
msgid ""
"This option will switch the print order of perimeters and infill, making the "
"latter first."
msgstr "该选项将打å°è½®å»“和填充的方å¼å¯¹è°ƒï¼Œä½¿åŽè€…æå‰ã€‚"
-#: src/libslic3r/PrintConfig.cpp:988
+#: src/libslic3r/PrintConfig.cpp:977
msgid "Only infill where needed"
msgstr "ä»…åœ¨éœ€è¦æ—¶å¡«å……"
-#: src/libslic3r/PrintConfig.cpp:990
+#: src/libslic3r/PrintConfig.cpp:979
msgid ""
"This option will limit infill to the areas actually needed for supporting "
"ceilings (it will act as internal support material). If enabled, slows down "
@@ -4757,11 +5456,11 @@ msgstr ""
"该选项将把填充é™å®šç”¨äºŽæ”¯æ’‘天花æ¿ï¼ˆå°†å……å½“å†…éƒ¨æ”¯æ’‘ææ–™çš„作用)。如果å¯ç”¨ï¼Œç”±äºŽ"
"多个包å«çš„选项将使G代ç 生æˆé€Ÿåº¦å˜æ…¢ã€‚"
-#: src/libslic3r/PrintConfig.cpp:998
+#: src/libslic3r/PrintConfig.cpp:986
msgid "Infill/perimeters overlap"
msgstr "å¡«å……/轮廓é‡å "
-#: src/libslic3r/PrintConfig.cpp:1000
+#: src/libslic3r/PrintConfig.cpp:988
msgid ""
"This setting applies an additional overlap between infill and perimeters for "
"better bonding. Theoretically this shouldn't be needed, but backlash might "
@@ -4771,23 +5470,23 @@ msgstr ""
"使得填充和轮廓间有é¢å¤–çš„é‡å 部分,便于结åˆã€‚ç†è®ºä¸Šå¹¶ä¸éœ€è¦ï¼Œä½†åç§»å¯èƒ½ä¼šå¯¼è‡´"
"间隙。如果表示为百分数(如15%),则以轮廓挤出宽度为基准。"
-#: src/libslic3r/PrintConfig.cpp:1012
+#: src/libslic3r/PrintConfig.cpp:999
msgid "Speed for printing the internal fill. Set to zero for auto."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1020
+#: src/libslic3r/PrintConfig.cpp:1007
msgid "Inherits profile"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1021
+#: src/libslic3r/PrintConfig.cpp:1008
msgid "Name of the profile, from which this profile inherits."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1032
+#: src/libslic3r/PrintConfig.cpp:1021
msgid "Interface shells"
msgstr "表é¢å¤–壳"
-#: src/libslic3r/PrintConfig.cpp:1033
+#: src/libslic3r/PrintConfig.cpp:1022
msgid ""
"Force the generation of solid shells between adjacent materials/volumes. "
"Useful for multi-extruder prints with translucent materials or manual "
@@ -4796,7 +5495,7 @@ msgstr ""
"åœ¨ç›¸é‚»çš„ææ–™/包围体之间强制生æˆå¯é 外壳层。适用于使用åŠé€æ˜Žææ–™æˆ–æ‰‹å·¥å¯æº¶æ€§æ”¯"
"æ’‘ææ–™çš„多挤出头打å°ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1043
+#: src/libslic3r/PrintConfig.cpp:1031
msgid ""
"This custom code is inserted at every layer change, right after the Z move "
"and before the extruder moves to the first layer point. Note that you can "
@@ -4806,11 +5505,11 @@ msgstr ""
"这段G代ç 在æ¯ä¸€å±‚å˜åŒ–åŽï¼Œå³Z轴移动åŽï¼ŒæŒ¤å‡ºå¤´ç§»åŠ¨åˆ°ç¬¬ä¸€å±‚çš„ç‚¹ä¹‹å‰æ’入。注æ„除"
"了使用如[layer_num]å’Œ[layer_z],也å¯ä»¥ä½¿ç”¨å ä½ç¬¦å˜é‡æ¥ä»£æ›¿Slic3rçš„å‚æ•°ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1054
+#: src/libslic3r/PrintConfig.cpp:1042
msgid "Supports remaining times"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1055
+#: src/libslic3r/PrintConfig.cpp:1043
msgid ""
"Emit M73 P[percent printed] R[remaining time in minutes] at 1 minute "
"intervals into the G-code to let the firmware show accurate remaining time. "
@@ -4818,63 +5517,63 @@ msgid ""
"firmware supports M73 Qxx Sxx for the silent mode."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1063
+#: src/libslic3r/PrintConfig.cpp:1051
msgid "Supports silent mode"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1064
+#: src/libslic3r/PrintConfig.cpp:1052
msgid "Set silent mode for the G-code flavor"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1087
+#: src/libslic3r/PrintConfig.cpp:1075
msgid "Maximum feedrate %1%"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1089
+#: src/libslic3r/PrintConfig.cpp:1077
msgid "Maximum feedrate of the %1% axis"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1097
+#: src/libslic3r/PrintConfig.cpp:1085
msgid "Maximum acceleration %1%"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1099
+#: src/libslic3r/PrintConfig.cpp:1087
msgid "Maximum acceleration of the %1% axis"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1107
+#: src/libslic3r/PrintConfig.cpp:1095
msgid "Maximum jerk %1%"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1109
+#: src/libslic3r/PrintConfig.cpp:1097
msgid "Maximum jerk of the %1% axis"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1120 src/libslic3r/PrintConfig.cpp:1122
+#: src/libslic3r/PrintConfig.cpp:1108 src/libslic3r/PrintConfig.cpp:1110
msgid "Minimum feedrate when extruding"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1131 src/libslic3r/PrintConfig.cpp:1133
+#: src/libslic3r/PrintConfig.cpp:1119 src/libslic3r/PrintConfig.cpp:1121
msgid "Minimum travel feedrate"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1142 src/libslic3r/PrintConfig.cpp:1144
+#: src/libslic3r/PrintConfig.cpp:1130 src/libslic3r/PrintConfig.cpp:1132
msgid "Maximum acceleration when extruding"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1153 src/libslic3r/PrintConfig.cpp:1155
+#: src/libslic3r/PrintConfig.cpp:1141 src/libslic3r/PrintConfig.cpp:1143
msgid "Maximum acceleration when retracting"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1163 src/libslic3r/PrintConfig.cpp:1173
+#: src/libslic3r/PrintConfig.cpp:1151 src/libslic3r/PrintConfig.cpp:1160
msgid "Max"
msgstr "最大值"
-#: src/libslic3r/PrintConfig.cpp:1164
+#: src/libslic3r/PrintConfig.cpp:1152
msgid "This setting represents the maximum speed of your fan."
msgstr "该值表示风扇的最大速度。"
-#: src/libslic3r/PrintConfig.cpp:1174
+#: src/libslic3r/PrintConfig.cpp:1161
#, no-c-format
msgid ""
"This is the highest printable layer height for this extruder, used to cap "
@@ -4883,11 +5582,11 @@ msgid ""
"adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1185
+#: src/libslic3r/PrintConfig.cpp:1171
msgid "Max print speed"
msgstr "最大打å°é€Ÿåº¦"
-#: src/libslic3r/PrintConfig.cpp:1186
+#: src/libslic3r/PrintConfig.cpp:1172
msgid ""
"When setting other speed settings to 0 Slic3r will autocalculate the optimal "
"speed in order to keep constant extruder pressure. This experimental setting "
@@ -4896,17 +5595,17 @@ msgstr ""
"å½“å°†å…¶ä»–é€Ÿåº¦å‚æ•°è®¾ä¸º0时,Slic3r会自动计算最优速度以ä¿è¯æŒ¤å‡ºå¤´åŽ‹åŠ›ç¨³å®šã€‚è¯¥è¯•éªŒ"
"傿•°ç”¨äºŽè®¾ç½®æ‰€å…许的最大打å°é€Ÿåº¦ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1197
+#: src/libslic3r/PrintConfig.cpp:1182
msgid ""
"This experimental setting is used to set the maximum volumetric speed your "
"extruder supports."
msgstr "è¯¥å®žéªŒå‚æ•°ç”¨äºŽè®¾ç½®ä½ 的挤出头所支æŒçš„æœ€å¤§ä½“积速度。"
-#: src/libslic3r/PrintConfig.cpp:1206
+#: src/libslic3r/PrintConfig.cpp:1191
msgid "Max volumetric slope positive"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1207 src/libslic3r/PrintConfig.cpp:1219
+#: src/libslic3r/PrintConfig.cpp:1192 src/libslic3r/PrintConfig.cpp:1203
msgid ""
"This experimental setting is used to limit the speed of change in extrusion "
"rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate "
@@ -4914,42 +5613,42 @@ msgid ""
"s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1211 src/libslic3r/PrintConfig.cpp:1223
+#: src/libslic3r/PrintConfig.cpp:1196 src/libslic3r/PrintConfig.cpp:1207
msgid "mm³/s²"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1218
+#: src/libslic3r/PrintConfig.cpp:1202
msgid "Max volumetric slope negative"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1230 src/libslic3r/PrintConfig.cpp:1240
+#: src/libslic3r/PrintConfig.cpp:1214 src/libslic3r/PrintConfig.cpp:1223
msgid "Min"
msgstr "最å°å€¼"
-#: src/libslic3r/PrintConfig.cpp:1231
+#: src/libslic3r/PrintConfig.cpp:1215
msgid "This setting represents the minimum PWM your fan needs to work."
msgstr "è¯¥å‚æ•°è¡¨ç¤ºä½ 的风扇工作的最å°PWM。"
-#: src/libslic3r/PrintConfig.cpp:1241
+#: src/libslic3r/PrintConfig.cpp:1224
msgid ""
"This is the lowest printable layer height for this extruder and limits the "
"resolution for variable layer height. Typical values are between 0.05 mm and "
"0.1 mm."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1250
+#: src/libslic3r/PrintConfig.cpp:1232
msgid "Min print speed"
msgstr "æœ€å°æ‰“å°é€Ÿåº¦"
-#: src/libslic3r/PrintConfig.cpp:1251
+#: src/libslic3r/PrintConfig.cpp:1233
msgid "Slic3r will not scale speed down below this speed."
msgstr "Slic3rçš„æœ€å°æ‰“å°é€Ÿåº¦ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1259
+#: src/libslic3r/PrintConfig.cpp:1240
msgid "Minimal filament extrusion length"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1260
+#: src/libslic3r/PrintConfig.cpp:1241
msgid ""
"Generate no less than the number of skirt loops required to consume the "
"specified amount of filament on the bottom layer. For multi-extruder "
@@ -4958,78 +5657,58 @@ msgstr ""
"åœ¨åº•å±‚ä¸Šæ¶ˆè€—æŒ‡å®šææ–™é‡ç”ŸæˆçŽ¯è¾¹ã€‚å¯¹äºŽå¤šæŒ¤å‡ºå¤´çš„æœºå™¨ï¼Œè¯¥æœ€å°å€¼é€‚用于æ¯ä¸ªæŒ¤å‡º"
"头。"
-#: src/libslic3r/PrintConfig.cpp:1270
+#: src/libslic3r/PrintConfig.cpp:1250
msgid "Configuration notes"
msgstr "é…置备注"
-#: src/libslic3r/PrintConfig.cpp:1271
+#: src/libslic3r/PrintConfig.cpp:1251
msgid ""
"You can put here your personal notes. This text will be added to the G-code "
"header comments."
msgstr ""
"ä½ å¯ä»¥åœ¨è¿™é‡Œè¾“å…¥ä½ çš„ä¸ªäººå¤‡æ³¨ã€‚è¯¥æ®µæ–‡å—å†…å®¹å°†è¢«æ·»åŠ åˆ°Gä»£ç æ–‡ä»¶å¼€å¤´çš„æ³¨é‡Šé‡Œã€‚"
-#: src/libslic3r/PrintConfig.cpp:1281
+#: src/libslic3r/PrintConfig.cpp:1260
msgid "Nozzle diameter"
msgstr "喷嘴直径"
-#: src/libslic3r/PrintConfig.cpp:1282
+#: src/libslic3r/PrintConfig.cpp:1261
msgid ""
"This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)"
msgstr "è¿™æ˜¯ä½ çš„æŒ¤å‡ºå¤´å–·å˜´çš„ç›´å¾„(:0.5,0.35ç‰ã€‚)"
-#: src/libslic3r/PrintConfig.cpp:1288
+#: src/libslic3r/PrintConfig.cpp:1266
msgid "Host Type"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1289
+#: src/libslic3r/PrintConfig.cpp:1267
msgid ""
"Slic3r can upload G-code files to a printer host. This field must contain "
"the kind of the host."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1301
-msgid "API Key / Password"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1302
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the API Key or the password required for authentication."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1317
-msgid "Hostname, IP or URL"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1318
-msgid ""
-"Slic3r can upload G-code files to a printer host. This field should contain "
-"the hostname, IP address or URL of the printer host instance."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1325
+#: src/libslic3r/PrintConfig.cpp:1278
msgid "Only retract when crossing perimeters"
msgstr "仅在越过轮廓时回缩"
-#: src/libslic3r/PrintConfig.cpp:1326
+#: src/libslic3r/PrintConfig.cpp:1279
msgid ""
"Disables retraction when the travel path does not exceed the upper layer's "
"perimeters (and thus any ooze will be probably invisible)."
msgstr "当空程ä¸è¶…过上层轮廓时ç¦ç”¨å›žæ’¤ï¼ˆè¿™æ ·æ»´åž‚现象å¯èƒ½ä¼šçœ‹ä¸è§ï¼‰ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1334
+#: src/libslic3r/PrintConfig.cpp:1286
msgid ""
"This option will drop the temperature of the inactive extruders to prevent "
"oozing. It will enable a tall skirt automatically and move extruders outside "
"such skirt when changing temperatures."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1342
+#: src/libslic3r/PrintConfig.cpp:1293
msgid "Output filename format"
msgstr "输出文件åç§°æ ¼å¼"
-#: src/libslic3r/PrintConfig.cpp:1343
+#: src/libslic3r/PrintConfig.cpp:1294
msgid ""
"You can use all configuration options as variables inside this template. For "
"example: [layer_height], [fill_density] etc. You can also use [timestamp], "
@@ -5040,11 +5719,11 @@ msgstr ""
"[timestamp], [year], [month], [day], [hour], [minute], [second], [version], "
"[input_filename], [input_filename_base]。"
-#: src/libslic3r/PrintConfig.cpp:1353
+#: src/libslic3r/PrintConfig.cpp:1303
msgid "Detect bridging perimeters"
msgstr "侦测桥接轮廓"
-#: src/libslic3r/PrintConfig.cpp:1355
+#: src/libslic3r/PrintConfig.cpp:1305
msgid ""
"Experimental option to adjust flow for overhangs (bridge flow will be used), "
"to apply bridge speed to them and enable fan."
@@ -5052,21 +5731,21 @@ msgstr ""
"试验选项,用于调整悬空部ä½çš„æµé‡ï¼ˆä½¿ç”¨æ¡¥æŽ¥æµé‡ï¼‰ï¼Œå°†æ¡¥æŽ¥é€Ÿåº¦ç”¨äºŽå®ƒä»¬å¹¶å¯ç”¨é£Ž"
"扇。"
-#: src/libslic3r/PrintConfig.cpp:1362
+#: src/libslic3r/PrintConfig.cpp:1311
msgid "Filament parking position"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1363
+#: src/libslic3r/PrintConfig.cpp:1312
msgid ""
"Distance of the extruder tip from the position where the filament is parked "
"when unloaded. This should match the value in printer firmware. "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1372
+#: src/libslic3r/PrintConfig.cpp:1320
msgid "Extra loading distance"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1373
+#: src/libslic3r/PrintConfig.cpp:1321
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 "
@@ -5074,12 +5753,12 @@ msgid ""
"than unloading. "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1382 src/libslic3r/PrintConfig.cpp:1402
-#: src/libslic3r/PrintConfig.cpp:1415 src/libslic3r/PrintConfig.cpp:1425
+#: src/libslic3r/PrintConfig.cpp:1329 src/libslic3r/PrintConfig.cpp:1347
+#: src/libslic3r/PrintConfig.cpp:1359 src/libslic3r/PrintConfig.cpp:1369
msgid "Perimeters"
msgstr "轮廓"
-#: src/libslic3r/PrintConfig.cpp:1383
+#: src/libslic3r/PrintConfig.cpp:1330
msgid ""
"This is the acceleration your printer will use for perimeters. A high value "
"like 9000 usually gives good results if your hardware is up to the job. Set "
@@ -5088,16 +5767,16 @@ msgstr ""
"æ‰“å°æœºå°†ç”¨äºŽæ‰“å°è½®å»“çš„åŠ é€Ÿåº¦ã€‚å¦‚æžœä½ çš„ç¡¬ä»¶æ€§èƒ½è¶³å¤Ÿï¼Œä¸€ä¸ª9000è¿™æ ·çš„é«˜æ•°å€¼é€šå¸¸"
"ä¼šç»™å‡ºå¾ˆå¥½çš„æ‰“å°æ•ˆæžœã€‚设为0å°†ç¦ç”¨è½®å»“åŠ é€Ÿåº¦æŽ§åˆ¶ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1392
+#: src/libslic3r/PrintConfig.cpp:1338
msgid "Perimeter extruder"
msgstr "轮廓挤出头"
-#: src/libslic3r/PrintConfig.cpp:1394
+#: src/libslic3r/PrintConfig.cpp:1340
msgid ""
"The extruder to use when printing perimeters and brim. First extruder is 1."
msgstr "打å°è½®å»“和裙边所使用的挤出头。第一个挤出头是1。"
-#: src/libslic3r/PrintConfig.cpp:1404
+#: src/libslic3r/PrintConfig.cpp:1349
msgid ""
"Set this to a non-zero value to set a manual extrusion width for perimeters. "
"You may want to use thinner extrudates to get more accurate surfaces. If "
@@ -5106,12 +5785,12 @@ msgid ""
"it will be computed over layer height."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1417
+#: src/libslic3r/PrintConfig.cpp:1361
msgid ""
"Speed for perimeters (contours, aka vertical shells). Set to zero for auto."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1427
+#: src/libslic3r/PrintConfig.cpp:1371
msgid ""
"This option sets the number of perimeters to generate for each layer. Note "
"that Slic3r may increase this number automatically when it detects sloping "
@@ -5121,11 +5800,11 @@ msgstr ""
"该选项设置æ¯ä¸€å±‚生æˆçš„轮廓个数。注æ„,如果â€é¢å¤–轮廓“选项被å¯åŠ¨ï¼ŒSlic3r在侦测"
"到斜å¡è¡¨é¢æ—¶å¯èƒ½ä¼šè‡ªåŠ¨å¢žåŠ è¯¥æ•°å€¼ï¼Œå› ä¸ºè¾ƒå¤šçš„è½®å»“æœ‰åˆ©äºŽæ–œå¡è¡¨é¢çš„æ‰“å°ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1431
+#: src/libslic3r/PrintConfig.cpp:1375
msgid "(minimum)"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1439
+#: src/libslic3r/PrintConfig.cpp:1383
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. "
@@ -5134,55 +5813,55 @@ msgid ""
"environment variables."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1452
+#: src/libslic3r/PrintConfig.cpp:1395
msgid "Printer type"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1453
+#: src/libslic3r/PrintConfig.cpp:1396
msgid "Type of the printer."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1457
+#: src/libslic3r/PrintConfig.cpp:1401
msgid "Printer notes"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1458
+#: src/libslic3r/PrintConfig.cpp:1402
msgid "You can put your notes regarding the printer here."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1467
+#: src/libslic3r/PrintConfig.cpp:1410
msgid "Printer vendor"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1468
+#: src/libslic3r/PrintConfig.cpp:1411
msgid "Name of the printer vendor."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1472
+#: src/libslic3r/PrintConfig.cpp:1416
msgid "Printer variant"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1473
+#: src/libslic3r/PrintConfig.cpp:1417
msgid ""
"Name of the printer variant. For example, the printer variants may be "
"differentiated by a nozzle diameter."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1483
+#: src/libslic3r/PrintConfig.cpp:1430
msgid "Raft layers"
msgstr "çæ¿å±‚"
-#: src/libslic3r/PrintConfig.cpp:1485
+#: src/libslic3r/PrintConfig.cpp:1432
msgid ""
"The object will be raised by this number of layers, and support material "
"will be generated under it."
msgstr "ç‰©ä½“å°†è¢«è¯¥æ•°ç›®çš„å±‚æ•°æŠ¬èµ·ï¼Œè€Œæ”¯æ’‘ææ–™å°†åœ¨å…¶ä¸‹æ–¹ç”Ÿæˆã€‚"
-#: src/libslic3r/PrintConfig.cpp:1494
+#: src/libslic3r/PrintConfig.cpp:1440
msgid "Resolution"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1495
+#: src/libslic3r/PrintConfig.cpp:1441
msgid ""
"Minimum detail resolution, used to simplify the input file for speeding up "
"the slicing job and reducing memory usage. High-resolution models often "
@@ -5192,42 +5871,42 @@ msgstr ""
"最å°ç»†èŠ‚åˆ†è¾¨çŽ‡ï¼Œç”¨æ¥ç®€åŒ–è¾“å…¥æ–‡ä»¶ï¼ŒåŠ é€Ÿåˆ‡ç‰‡ï¼Œå‡å°‘内å˜å ç”¨ã€‚æ‰“å°æœºé€šå¸¸å¾ˆé𾿏²æŸ“"
"出高精度模型的细节。设为0则ç¦ç”¨ä»»ä½•简化,完全ä¾ç…§è¾“入文件的精度。"
-#: src/libslic3r/PrintConfig.cpp:1506
+#: src/libslic3r/PrintConfig.cpp:1451
msgid "Minimum travel after retraction"
msgstr "å›žç¼©åŽæœ€å°ç©ºç¨‹"
-#: src/libslic3r/PrintConfig.cpp:1507
+#: src/libslic3r/PrintConfig.cpp:1452
msgid ""
"Retraction is not triggered when travel moves are shorter than this length."
msgstr "当空程çŸäºŽæ¤é•¿åº¦æ—¶ä¸ä¼šè§¦å‘回缩。"
-#: src/libslic3r/PrintConfig.cpp:1514
+#: src/libslic3r/PrintConfig.cpp:1458
msgid "Retract amount before wipe"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1515
+#: src/libslic3r/PrintConfig.cpp:1459
msgid ""
"With bowden extruders, it may be wise to do some amount of quick retract "
"before doing the wipe movement."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1523
+#: src/libslic3r/PrintConfig.cpp:1466
msgid "Retract on layer change"
msgstr "层å˜åŒ–时回缩"
-#: src/libslic3r/PrintConfig.cpp:1524
+#: src/libslic3r/PrintConfig.cpp:1467
msgid "This flag enforces a retraction whenever a Z move is done."
msgstr "该项强制在Zè½´ç§»åŠ¨å®Œæˆæ—¶å›žç¼©ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1530 src/libslic3r/PrintConfig.cpp:1539
+#: src/libslic3r/PrintConfig.cpp:1472 src/libslic3r/PrintConfig.cpp:1480
msgid "Length"
msgstr "长度"
-#: src/libslic3r/PrintConfig.cpp:1531
+#: src/libslic3r/PrintConfig.cpp:1473
msgid "Retraction Length"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1532
+#: src/libslic3r/PrintConfig.cpp:1474
msgid ""
"When retraction is triggered, filament is pulled back by the specified "
"amount (the length is measured on raw filament, before it enters the "
@@ -5236,15 +5915,15 @@ msgstr ""
"当触å‘å›žç¼©æ—¶ï¼Œä¸æ–™ä»¥æŒ‡å®šå€¼å¾€å›žæ”¶ç¼©ï¼ˆé•¿åº¦ä»¥åœ¨è¿›å…¥æŒ¤å‡ºå¤´ä¹‹å‰çš„åŽŸå§‹ææ–™ä¸ºåŸºç¡€è¿›"
"行计算)。"
-#: src/libslic3r/PrintConfig.cpp:1534 src/libslic3r/PrintConfig.cpp:1544
+#: src/libslic3r/PrintConfig.cpp:1476 src/libslic3r/PrintConfig.cpp:1485
msgid "mm (zero to disable)"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1540
+#: src/libslic3r/PrintConfig.cpp:1481
msgid "Retraction Length (Toolchange)"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1541
+#: src/libslic3r/PrintConfig.cpp:1482
msgid ""
"When retraction is triggered before changing tool, filament is pulled back "
"by the specified amount (the length is measured on raw filament, before it "
@@ -5253,11 +5932,11 @@ msgstr ""
"当在改å˜å·¥å…·å‰è§¦å‘å›žç¼©æ—¶ï¼Œä¸æ–™ä»¥æŒ‡å®šå€¼å›žç¼©ï¼ˆé•¿åº¦ä»¥è¿›å…¥æŒ¤å‡ºå¤´å‰çš„åŽŸå§‹ææ–™ä¸ºåŸº"
"础测é‡ï¼‰ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1550
+#: src/libslic3r/PrintConfig.cpp:1490
msgid "Lift Z"
msgstr "抬高Z"
-#: src/libslic3r/PrintConfig.cpp:1551
+#: src/libslic3r/PrintConfig.cpp:1491
msgid ""
"If you set this to a positive value, Z is quickly raised every time a "
"retraction is triggered. When using multiple extruders, only the setting for "
@@ -5266,15 +5945,15 @@ msgstr ""
"如果设为æ£å€¼ï¼Œæ¯å½“å›žç¼©è§¦å‘æ—¶Z轴会快速抬å‡ã€‚当使用多个挤出头时,仅会考虑第一个"
"æŒ¤å‡ºå¤´çš„è¯¥å‚æ•°ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1559
+#: src/libslic3r/PrintConfig.cpp:1498
msgid "Above Z"
msgstr "在Z上方"
-#: src/libslic3r/PrintConfig.cpp:1560
+#: src/libslic3r/PrintConfig.cpp:1499
msgid "Only lift Z above"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1561
+#: src/libslic3r/PrintConfig.cpp:1500
msgid ""
"If you set this to a positive value, Z lift will only take place above the "
"specified absolute Z. You can tune this setting for skipping lift on the "
@@ -5283,15 +5962,15 @@ msgstr ""
"如果设为æ£å€¼ï¼Œä»…在指定的ç»å¯¹Z值上方æ‰ä¼šæŠ¬é«˜Z。å¯ä»¥è°ƒæ•´è¯¥å‚数,用于跳过在å‰å‡ "
"层时跳过Z抬高的æ¥éª¤ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1569
+#: src/libslic3r/PrintConfig.cpp:1507
msgid "Below Z"
msgstr "Z下方"
-#: src/libslic3r/PrintConfig.cpp:1570
+#: src/libslic3r/PrintConfig.cpp:1508
msgid "Only lift Z below"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1571
+#: src/libslic3r/PrintConfig.cpp:1509
msgid ""
"If you set this to a positive value, Z lift will only take place below the "
"specified absolute Z. You can tune this setting for limiting lift to the "
@@ -5300,131 +5979,127 @@ msgstr ""
"如果设为æ£å€¼ï¼Œä»…在指定的ç»å¯¹Z值选房å¯ä»¥è°ƒæ•´è¯¥å‚数,用于将抬高Z的动作é™åˆ¶åœ¨å‰"
"å‡ å±‚æ—¶ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1580 src/libslic3r/PrintConfig.cpp:1589
+#: src/libslic3r/PrintConfig.cpp:1517 src/libslic3r/PrintConfig.cpp:1525
msgid "Extra length on restart"
msgstr "é‡å¯æ—¶é¢å¤–长度"
-#: src/libslic3r/PrintConfig.cpp:1581
+#: src/libslic3r/PrintConfig.cpp:1518
msgid ""
"When the retraction is compensated after the travel move, the extruder will "
"push this additional amount of filament. This setting is rarely needed."
msgstr ""
"当在空程åŽå›žç¼©è¢«è¡¥å¿æ—¶ï¼ŒæŒ¤å‡ºå¤´ä¼šåŸºç¡€é¢å¤–的指定é‡ä¸æ–™ã€‚è¯¥å‚æ•°ä¸€èˆ¬ä¸éœ€è®¾ç½®ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1590
+#: src/libslic3r/PrintConfig.cpp:1526
msgid ""
"When the retraction is compensated after changing tool, the extruder will "
"push this additional amount of filament."
msgstr "当在切æ¢å·¥å…·åŽå›žç¼©è¢«è¡¥å¿æ—¶ï¼ŒæŒ¤å‡ºå¤´ä¼šåŸºç¡€é¢å¤–的指定é‡ä¸æ–™ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1598 src/libslic3r/PrintConfig.cpp:1599
+#: src/libslic3r/PrintConfig.cpp:1533 src/libslic3r/PrintConfig.cpp:1534
msgid "Retraction Speed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1600
+#: src/libslic3r/PrintConfig.cpp:1535
msgid "The speed for retractions (it only applies to the extruder motor)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1607 src/libslic3r/PrintConfig.cpp:1608
+#: src/libslic3r/PrintConfig.cpp:1541 src/libslic3r/PrintConfig.cpp:1542
msgid "Deretraction Speed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1609
+#: src/libslic3r/PrintConfig.cpp:1543
msgid ""
"The speed for loading of a filament into extruder after retraction (it only "
"applies to the extruder motor). If left to zero, the retraction speed is "
"used."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1617
+#: src/libslic3r/PrintConfig.cpp:1550
msgid "Seam position"
msgstr "接åˆä½ç½®"
-#: src/libslic3r/PrintConfig.cpp:1619
+#: src/libslic3r/PrintConfig.cpp:1552
msgid "Position of perimeters starting points."
msgstr "轮廓开始点的ä½ç½®ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1626
+#: src/libslic3r/PrintConfig.cpp:1558
msgid "Random"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1627
+#: src/libslic3r/PrintConfig.cpp:1559
msgid "Nearest"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1628
+#: src/libslic3r/PrintConfig.cpp:1560
msgid "Aligned"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1629
-msgid "Rear"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:1636
+#: src/libslic3r/PrintConfig.cpp:1568
msgid "Direction"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1638
+#: src/libslic3r/PrintConfig.cpp:1570
msgid "Preferred direction of the seam"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1639
+#: src/libslic3r/PrintConfig.cpp:1571
msgid "Seam preferred direction"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1647
+#: src/libslic3r/PrintConfig.cpp:1578
msgid "Jitter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1649
+#: src/libslic3r/PrintConfig.cpp:1580
msgid "Seam preferred direction jitter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1650
+#: src/libslic3r/PrintConfig.cpp:1581
msgid "Preferred direction of the seam - jitter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1661
+#: src/libslic3r/PrintConfig.cpp:1591
msgid "USB/serial port for printer connection."
msgstr "ç”¨äºŽæ‰“å°æœºè¿žæŽ¥çš„USB/串å£ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1669
+#: src/libslic3r/PrintConfig.cpp:1598
msgid "Serial port speed"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1670
+#: src/libslic3r/PrintConfig.cpp:1599
msgid "Speed (baud) of USB/serial port for printer connection."
msgstr "ç”¨äºŽæ‰“å°æœºè¿žæŽ¥çš„USB/串å£é€Ÿåº¦ï¼ˆæ³¢ç‰¹çŽ‡ï¼‰ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1679
+#: src/libslic3r/PrintConfig.cpp:1608
msgid "Distance from object"
msgstr "离物体的è·ç¦»"
-#: src/libslic3r/PrintConfig.cpp:1680
+#: src/libslic3r/PrintConfig.cpp:1609
msgid ""
"Distance between skirt and object(s). Set this to zero to attach the skirt "
"to the object(s) and get a brim for better adhesion."
msgstr "环边与物体间的è·ç¦»ã€‚设为0,则使环边紧贴物体,å¯èŽ·å¾—è£™è¾¹åˆ©äºŽç²˜é™„ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1688
+#: src/libslic3r/PrintConfig.cpp:1616
msgid "Skirt height"
msgstr "环边高度"
-#: src/libslic3r/PrintConfig.cpp:1689
+#: src/libslic3r/PrintConfig.cpp:1617
msgid ""
"Height of skirt expressed in layers. Set this to a tall value to use skirt "
"as a shield against drafts."
msgstr "图层ä¸è¡¨ç¤ºçš„环边高度。设为一个较高值,å¯å°†çŽ¯è¾¹ç”¨ä½œã€‚"
-#: src/libslic3r/PrintConfig.cpp:1697
+#: src/libslic3r/PrintConfig.cpp:1624
msgid "Loops (minimum)"
msgstr "圈数(最å°)"
-#: src/libslic3r/PrintConfig.cpp:1698
+#: src/libslic3r/PrintConfig.cpp:1625
msgid "Skirt Loops"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1699
+#: src/libslic3r/PrintConfig.cpp:1626
msgid ""
"Number of loops for the skirt. If the Minimum Extrusion Length option is "
"set, the number of loops might be greater than the one configured here. Set "
@@ -5433,11 +6108,11 @@ msgstr ""
"çŽ¯è¾¹çš„åœˆæ•°ã€‚å¦‚æžœè®¾ç½®äº†æœ€å°æŒ¤å‡ºé•¿åº¦ï¼Œé‚£ä¹ˆåœˆæ•°å¿…须比这里设置的值è¦å¤§ã€‚设为0则完"
"å…¨ç¦ç”¨çŽ¯è¾¹ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1708
+#: src/libslic3r/PrintConfig.cpp:1634
msgid "Slow down if layer print time is below"
msgstr "å¦‚æžœå›¾å±‚æ‰“å°æ—¶é—´ä½ŽäºŽè¯¥å€¼åˆ™å‡é€Ÿ"
-#: src/libslic3r/PrintConfig.cpp:1709
+#: src/libslic3r/PrintConfig.cpp:1635
msgid ""
"If layer print time is estimated below this number of seconds, print moves "
"speed will be scaled down to extend duration to this value."
@@ -5445,44 +6120,44 @@ msgstr ""
"å¦‚æžœé¢„è®¡æ‰“å°æ—¶é—´ä½ŽäºŽè¯¥å€¼ï¼ˆå•ä½ä¸ºç§’),则打å°é€Ÿåº¦å°†é™ä½Žä»¥ä½¿æ‰“å°æ—¶é—´å»¶é•¿åˆ°è¯¥"
"值。"
-#: src/libslic3r/PrintConfig.cpp:1720
+#: src/libslic3r/PrintConfig.cpp:1645
msgid "Small perimeters"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1722
+#: src/libslic3r/PrintConfig.cpp:1647
msgid ""
"This separate setting will affect the speed of perimeters having radius <= "
"6.5mm (usually holes). If expressed as percentage (for example: 80%) it will "
"be calculated on the perimeters speed setting above. Set to zero for auto."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1732
+#: src/libslic3r/PrintConfig.cpp:1657
msgid "Solid infill threshold area"
msgstr "å¯é 填充阈值区域"
-#: src/libslic3r/PrintConfig.cpp:1734
+#: src/libslic3r/PrintConfig.cpp:1659
msgid ""
"Force solid infill for regions having a smaller area than the specified "
"threshold."
msgstr "对于比指定阈值å°çš„区域强制进行å¯é 填充。"
-#: src/libslic3r/PrintConfig.cpp:1735
+#: src/libslic3r/PrintConfig.cpp:1660
msgid "mm²"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1742
+#: src/libslic3r/PrintConfig.cpp:1666
msgid "Solid infill extruder"
msgstr "å¯é 填充挤出头"
-#: src/libslic3r/PrintConfig.cpp:1744
+#: src/libslic3r/PrintConfig.cpp:1668
msgid "The extruder to use when printing solid infill."
msgstr "当打å°å¯é 填充时使用的挤出头。"
-#: src/libslic3r/PrintConfig.cpp:1751
+#: src/libslic3r/PrintConfig.cpp:1674
msgid "Solid infill every"
msgstr "æ¯å‡ 层å¯é å¡«å……"
-#: src/libslic3r/PrintConfig.cpp:1753
+#: src/libslic3r/PrintConfig.cpp:1676
msgid ""
"This feature allows to force a solid layer every given number of layers. "
"Zero to disable. You can set this to any value (for example 9999); Slic3r "
@@ -5492,7 +6167,7 @@ msgstr ""
"è¯¥åŠŸèƒ½ä½¿å¾—æ¯æŒ‡å®šæ•°ç›®å±‚强制进行一次å¯é 填充。设为0ç¦ç”¨è¯¥åŠŸèƒ½ã€‚å¯ä»¥è®¾ä¸ºä»»æ„值"
"(如9999);Slic3rä¼šæ ¹æ®å–·å˜´ç›´å¾„和层高æ¥è‡ªåŠ¨é€‰æ‹©å›¾å±‚çš„æœ€å¤§å¯èƒ½ä¸ªæ•°ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1766
+#: src/libslic3r/PrintConfig.cpp:1688
msgid ""
"Set this to a non-zero value to set a manual extrusion width for infill for "
"solid surfaces. If left zero, default extrusion width will be used if set, "
@@ -5500,22 +6175,22 @@ msgid ""
"(for example 90%) it will be computed over layer height."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1777
+#: src/libslic3r/PrintConfig.cpp:1698
msgid ""
"Speed for printing solid regions (top/bottom/internal horizontal shells). "
"This can be expressed as a percentage (for example: 80%) over the default "
"infill speed above. Set to zero for auto."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1789
+#: src/libslic3r/PrintConfig.cpp:1710
msgid "Number of solid layers to generate on top and bottom surfaces."
msgstr "在顶部和底部表é¢ç”Ÿæˆçš„å¯é 层数。"
-#: src/libslic3r/PrintConfig.cpp:1796
+#: src/libslic3r/PrintConfig.cpp:1716
msgid "Spiral vase"
msgstr "螺旋å¼å®¹å™¨"
-#: src/libslic3r/PrintConfig.cpp:1797
+#: src/libslic3r/PrintConfig.cpp:1717
msgid ""
"This feature will raise Z gradually while printing a single-walled object in "
"order to remove any visible seam. This option requires a single perimeter, "
@@ -5527,18 +6202,18 @@ msgstr ""
"å»“ï¼Œæ— å¡«å……ï¼Œæ— é¡¶éƒ¨å¯é å±‚ï¼Œæ— æ”¯æ’‘ã€‚ä»å¯ä»¥è®¾ç½®çŽ¯è¾¹ã€è£™è¾¹åœˆæ•°ï¼Œå’Œåº•部å¯é 层。但"
"在打å°å¤šä¸ªç‰©ä½“æ—¶ä¸é€‚用。"
-#: src/libslic3r/PrintConfig.cpp:1806
+#: src/libslic3r/PrintConfig.cpp:1725
msgid "Temperature variation"
msgstr "温度å˜åŒ–"
-#: src/libslic3r/PrintConfig.cpp:1807
+#: src/libslic3r/PrintConfig.cpp:1726
msgid ""
"Temperature difference to be applied when an extruder is not active. Enables "
"a full-height \"sacrificial\" skirt on which the nozzles are periodically "
"wiped."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1818
+#: src/libslic3r/PrintConfig.cpp:1736
msgid ""
"This start procedure is inserted at the beginning, after bed has reached the "
"target temperature and extruder just started heating, and before extruder "
@@ -5549,7 +6224,7 @@ msgid ""
"\"M109 S[first_layer_temperature]\" command wherever you want."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1834
+#: src/libslic3r/PrintConfig.cpp:1751
msgid ""
"This start procedure is inserted at the beginning, after any printer start "
"gcode. This is used to override settings for a specific filament. If Slic3r "
@@ -5568,74 +6243,74 @@ msgstr ""
"个“M109 S[ first_layer_temperature ]â€å‘½ä»¤æ”¾åœ¨ä»»æ„å¤„ã€‚å¦‚æžœä½ æœ‰å¤šä¸ªæŒ¤å‡ºå¤´ï¼ŒG代"
"ç 将按挤出头顺åºå¤„ç†ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1850
+#: src/libslic3r/PrintConfig.cpp:1766
msgid "Single Extruder Multi Material"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1851
+#: src/libslic3r/PrintConfig.cpp:1767
msgid "The printer multiplexes filaments into a single hot end."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1857
+#: src/libslic3r/PrintConfig.cpp:1772
msgid "Prime all printing extruders"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1858
+#: src/libslic3r/PrintConfig.cpp:1773
msgid ""
"If enabled, all printing extruders will be primed at the front edge of the "
"print bed at the start of the print."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1864
+#: src/libslic3r/PrintConfig.cpp:1778
msgid "Generate support material"
msgstr "ç”Ÿæˆæ”¯æ’‘ææ–™"
-#: src/libslic3r/PrintConfig.cpp:1866
+#: src/libslic3r/PrintConfig.cpp:1780
msgid "Enable support material generation."
msgstr "å¯ç”¨æ”¯æ’‘ææ–™ç”ŸæˆåŠŸèƒ½ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1871
+#: src/libslic3r/PrintConfig.cpp:1784
msgid "Auto generated supports"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1873
+#: src/libslic3r/PrintConfig.cpp:1786
msgid ""
"If checked, supports will be generated automatically based on the overhang "
"threshold value. If unchecked, supports will be generated inside the "
"\"Support Enforcer\" volumes only."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1880
+#: src/libslic3r/PrintConfig.cpp:1792
msgid "XY separation between an object and its support"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1882
+#: src/libslic3r/PrintConfig.cpp:1794
msgid ""
"XY separation between an object and its support. If expressed as percentage "
"(for example 50%), it will be calculated over external perimeter width."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1893
+#: src/libslic3r/PrintConfig.cpp:1804
msgid "Pattern angle"
msgstr "æ ·å¼è§’度"
-#: src/libslic3r/PrintConfig.cpp:1895
+#: src/libslic3r/PrintConfig.cpp:1806
msgid ""
"Use this setting to rotate the support material pattern on the horizontal "
"plane."
msgstr "ä½¿ç”¨è¯¥å‚æ•°å¯¹æ”¯æ’‘ææ–™çš„æ ·å在水平é¢ä¸Šè¿›è¡Œæ—‹è½¬ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1906
+#: src/libslic3r/PrintConfig.cpp:1816 src/libslic3r/PrintConfig.cpp:2421
msgid ""
"Only create support if it lies on a build plate. Don't create support on a "
"print."
msgstr "仅在çƒåºŠä¸Šç”Ÿæˆæ”¯æ’‘,ä¸åœ¨æ‰“å°å‡ºæ¥çš„物体上生æˆã€‚"
-#: src/libslic3r/PrintConfig.cpp:1913
+#: src/libslic3r/PrintConfig.cpp:1822
msgid "Contact Z distance"
msgstr "接触Z值"
-#: src/libslic3r/PrintConfig.cpp:1915
+#: src/libslic3r/PrintConfig.cpp:1824
msgid ""
"The vertical distance between object and support material interface. Setting "
"this to 0 will also prevent Slic3r from using bridge flow and speed for the "
@@ -5643,19 +6318,19 @@ msgid ""
msgstr ""
"ç‰©ä½“å’Œæ”¯æ’‘ææ–™å¹³é¢ä¹‹é—´çš„垂直è·ç¦»ã€‚设为0,则表é¢ä¸Šç¬¬ä¸€å±‚ä¸ä¼šè¢«å½“åšæ¡¥æ¥å¤„ç†ã€‚"
-#: src/libslic3r/PrintConfig.cpp:1923
+#: src/libslic3r/PrintConfig.cpp:1831
msgid "soluble"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1924
+#: src/libslic3r/PrintConfig.cpp:1832
msgid "detachable"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1929
+#: src/libslic3r/PrintConfig.cpp:1837
msgid "Enforce support for the first"
msgstr "å‰å‡ 层增强支撑"
-#: src/libslic3r/PrintConfig.cpp:1931
+#: src/libslic3r/PrintConfig.cpp:1839
msgid ""
"Generate support material for the specified number of layers counting from "
"bottom, regardless of whether normal support material is enabled or not and "
@@ -5665,21 +6340,21 @@ msgstr ""
"ä»Žåº•éƒ¨å¼€å§‹ï¼Œå¯¹æŒ‡å®šæ•°ç›®çš„å›¾å±‚ç”Ÿæˆæ”¯æ’‘ææ–™ï¼Œæ— 论æ£å¸¸çš„æ”¯æ’‘ææ–™æ˜¯å¦å¯ç”¨ï¼Œä¹Ÿä¸ç®¡"
"任何角度阈值。适用于在çƒåºŠä¸Šè„šå¤ªç»†ã€ç«™ä¸ä½çš„物件,便于更好的粘附。"
-#: src/libslic3r/PrintConfig.cpp:1937
+#: src/libslic3r/PrintConfig.cpp:1844
msgid "Enforce support for the first n layers"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1943
+#: src/libslic3r/PrintConfig.cpp:1850
msgid "Support material/raft/skirt extruder"
msgstr "æ”¯æ’‘ææ–™/ç/环边挤出头"
-#: src/libslic3r/PrintConfig.cpp:1945
+#: src/libslic3r/PrintConfig.cpp:1852
msgid ""
"The extruder to use when printing support material, raft and skirt (1+, 0 to "
"use the current extruder to minimize tool changes)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1955
+#: src/libslic3r/PrintConfig.cpp:1861
msgid ""
"Set this to a non-zero value to set a manual extrusion width for support "
"material. If left zero, default extrusion width will be used if set, "
@@ -5687,44 +6362,44 @@ msgid ""
"example 90%) it will be computed over layer height."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1964
+#: src/libslic3r/PrintConfig.cpp:1869
msgid "Interface loops"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1966
+#: src/libslic3r/PrintConfig.cpp:1871
msgid ""
"Cover the top contact layer of the supports with loops. Disabled by default."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1972
+#: src/libslic3r/PrintConfig.cpp:1876
msgid "Support material/raft interface extruder"
msgstr "æ”¯æ’‘ææ–™/çè¡¨é¢æŒ¤å‡ºå¤´"
-#: src/libslic3r/PrintConfig.cpp:1974
+#: src/libslic3r/PrintConfig.cpp:1878
msgid ""
"The extruder to use when printing support material interface (1+, 0 to use "
"the current extruder to minimize tool changes). This affects raft too."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:1982
+#: src/libslic3r/PrintConfig.cpp:1885
msgid "Interface layers"
msgstr "表é¢å±‚æ•°"
-#: src/libslic3r/PrintConfig.cpp:1984
+#: src/libslic3r/PrintConfig.cpp:1887
msgid ""
"Number of interface layers to insert between the object(s) and support "
"material."
msgstr "åœ¨ç‰©ä½“å’Œæ”¯æ’‘ææ–™ä¸é—´æ’入的表é¢å±‚数。"
-#: src/libslic3r/PrintConfig.cpp:1992
+#: src/libslic3r/PrintConfig.cpp:1894
msgid "Interface pattern spacing"
msgstr "è¡¨é¢æ ·å¼é—´éš”"
-#: src/libslic3r/PrintConfig.cpp:1994
+#: src/libslic3r/PrintConfig.cpp:1896
msgid "Spacing between interface lines. Set zero to get a solid interface."
msgstr "表é¢ç›´çº¿é—´çš„间隔。设为0获得å¯é 表é¢ã€‚"
-#: src/libslic3r/PrintConfig.cpp:2004
+#: src/libslic3r/PrintConfig.cpp:1905
msgid ""
"Speed for printing support material interface layers. If expressed as "
"percentage (for example 50%) it will be calculated over support material "
@@ -5733,45 +6408,45 @@ msgstr ""
"æ‰“å°æ”¯æ’‘ææ–™è¡¨é¢å±‚的速度。若表示为百分数(如50%ï¼‰ï¼Œåˆ™ä»¥æ”¯æ’‘ææ–™é€Ÿåº¦ä¸ºåŸºå‡†è®¡"
"算。"
-#: src/libslic3r/PrintConfig.cpp:2013
+#: src/libslic3r/PrintConfig.cpp:1914
msgid "Pattern"
msgstr "æ ·å¼"
-#: src/libslic3r/PrintConfig.cpp:2015
+#: src/libslic3r/PrintConfig.cpp:1916
msgid "Pattern used to generate support material."
msgstr "ç”Ÿæˆæ”¯æ’‘ææ–™çš„æ ·å¼ã€‚"
-#: src/libslic3r/PrintConfig.cpp:2022
+#: src/libslic3r/PrintConfig.cpp:1922
msgid "Rectilinear grid"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2028
+#: src/libslic3r/PrintConfig.cpp:1928
msgid "Pattern spacing"
msgstr "æ ·å¼é—´éš”"
-#: src/libslic3r/PrintConfig.cpp:2030
+#: src/libslic3r/PrintConfig.cpp:1930
msgid "Spacing between support material lines."
msgstr "æ”¯æ’‘ææ–™ç›´çº¿é—´çš„间隙。"
-#: src/libslic3r/PrintConfig.cpp:2040
+#: src/libslic3r/PrintConfig.cpp:1939
msgid "Speed for printing support material."
msgstr "æ‰“å°æ”¯æ’‘ææ–™çš„速度。"
-#: src/libslic3r/PrintConfig.cpp:2047
+#: src/libslic3r/PrintConfig.cpp:1946
msgid "Synchronize with object layers"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2049
+#: src/libslic3r/PrintConfig.cpp:1948
msgid ""
"Synchronize support layers with the object print layers. This is useful with "
"multi-material printers, where the extruder switch is expensive."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2056
+#: src/libslic3r/PrintConfig.cpp:1954
msgid "Overhang threshold"
msgstr "悬空阈值"
-#: src/libslic3r/PrintConfig.cpp:2058
+#: src/libslic3r/PrintConfig.cpp:1956
msgid ""
"Support material will not be generated for overhangs whose slope angle (90° "
"= vertical) is above the given threshold. In other words, this value "
@@ -5780,31 +6455,31 @@ msgid ""
"detection (recommended)."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2071
+#: src/libslic3r/PrintConfig.cpp:1968
msgid "With sheath around the support"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2073
+#: src/libslic3r/PrintConfig.cpp:1970
msgid ""
"Add a sheath (a single perimeter line) around the base support. This makes "
"the support more reliable, but also more difficult to remove."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2081
+#: src/libslic3r/PrintConfig.cpp:1977
msgid ""
"Extruder temperature for layers after the first one. Set this to zero to "
"disable temperature control commands in the output."
msgstr "第一层之åŽçš„æŒ¤å‡ºå¤´æ¸©åº¦ã€‚设为0以在输出文件ä¸ç¦ç”¨æ¸©åº¦æŽ§åˆ¶æŒ‡ä»¤ã€‚"
-#: src/libslic3r/PrintConfig.cpp:2084
+#: src/libslic3r/PrintConfig.cpp:1979
msgid "Temperature"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2090
+#: src/libslic3r/PrintConfig.cpp:1985
msgid "Detect thin walls"
msgstr "检测薄å£"
-#: src/libslic3r/PrintConfig.cpp:2092
+#: src/libslic3r/PrintConfig.cpp:1987
msgid ""
"Detect single-width walls (parts where two extrusions don't fit and we need "
"to collapse them into a single trace)."
@@ -5812,17 +6487,17 @@ msgstr ""
"检测å•一厚度的薄å£ï¼ˆä¸¤ä¸ªæŒ¤å‡ºé‡ä¸å»åˆï¼Œä»¥è‡³äºŽéœ€è¦æŠŠå®ƒä»¬åŽ‹ç¼©æˆä¸€æ¡è½¨è¿¹çš„地"
"方)。"
-#: src/libslic3r/PrintConfig.cpp:2099
+#: src/libslic3r/PrintConfig.cpp:1993
msgid "Threads"
msgstr "线程"
-#: src/libslic3r/PrintConfig.cpp:2100
+#: src/libslic3r/PrintConfig.cpp:1994
msgid ""
"Threads are used to parallelize long-running tasks. Optimal threads number "
"is slightly above the number of available cores/processors."
msgstr "线程用于并行处ç†é•¿æ—¶é—´ä»»åŠ¡ã€‚æœ€ä¼˜çš„çº¿ç¨‹æ•°åº”æ¯”å¯ç”¨æ ¸/处ç†å™¨çš„æ•°ç›®ç•¥å¤šã€‚"
-#: src/libslic3r/PrintConfig.cpp:2112
+#: src/libslic3r/PrintConfig.cpp:2006
msgid ""
"This custom code is inserted right before every extruder change. Note that "
"you can use placeholder variables for all Slic3r settings as well as "
@@ -5831,7 +6506,7 @@ msgstr ""
"该段自定义代ç åœ¨æ¯æ¬¡æŒ¤å‡ºå¤´åˆ‡æ¢å‰æ’入。注æ„å¯ä»¥ä½¿ç”¨å ä½ç¬¦å˜é‡ä»£æ›¿Slic3r的所有"
"傿•°ï¼Œå¦‚ [previous_extruder] å’Œ [next_extruder]。"
-#: src/libslic3r/PrintConfig.cpp:2125
+#: src/libslic3r/PrintConfig.cpp:2018
msgid ""
"Set this to a non-zero value to set a manual extrusion width for infill for "
"top surfaces. You may want to use thinner extrudates to fill all narrow "
@@ -5840,7 +6515,7 @@ msgid ""
"percentage (for example 90%) it will be computed over layer height."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2137
+#: src/libslic3r/PrintConfig.cpp:2029
msgid ""
"Speed for printing top solid layers (it only applies to the uppermost "
"external layers and not to their internal solid layers). You may want to "
@@ -5849,49 +6524,44 @@ msgid ""
"for auto."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2149
-msgctxt "Layers"
-msgid "Top"
-msgstr "顶部"
-
-#: src/libslic3r/PrintConfig.cpp:2151
+#: src/libslic3r/PrintConfig.cpp:2043
msgid "Number of solid layers to generate on top surfaces."
msgstr "在顶部表é¢ä¸Šç”Ÿæˆçš„å¯é 层数。"
-#: src/libslic3r/PrintConfig.cpp:2153
+#: src/libslic3r/PrintConfig.cpp:2044
msgid "Top solid layers"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2159
+#: src/libslic3r/PrintConfig.cpp:2050
msgid "Speed for travel moves (jumps between distant extrusion points)."
msgstr "空程移动的速度(从一个挤出点结æŸè°ƒåˆ°å¦ä¸€ä¸ªæŒ¤å‡ºç‚¹å¼€å§‹ï¼‰ã€‚"
-#: src/libslic3r/PrintConfig.cpp:2168
+#: src/libslic3r/PrintConfig.cpp:2058
msgid "Use firmware retraction"
msgstr "使用固件回缩"
-#: src/libslic3r/PrintConfig.cpp:2169
+#: src/libslic3r/PrintConfig.cpp:2059
msgid ""
"This experimental setting uses G10 and G11 commands to have the firmware "
"handle the retraction. This is only supported in recent Marlin."
msgstr ""
"è¯¥è¯•éªŒå‚æ•°ä½¿ç”¨G10å’ŒG11指令æ¥ä½¿å›ºä»¶å¤„ç†å›žç¼©ã€‚仅在最新的Marlin䏿”¯æŒè¯¥åŠŸèƒ½ã€‚"
-#: src/libslic3r/PrintConfig.cpp:2176
+#: src/libslic3r/PrintConfig.cpp:2065
msgid "Use relative E distances"
msgstr "使用相对Eè·ç¦»"
-#: src/libslic3r/PrintConfig.cpp:2177
+#: src/libslic3r/PrintConfig.cpp:2066
msgid ""
"If your firmware requires relative E values, check this, otherwise leave it "
"unchecked. Most firmwares use absolute values."
msgstr "如果固件需è¦ç›¸å¯¹E值,勾选æ¤é¡¹ï¼Œå¦åˆ™ä¸è¦å‹¾é€‰ã€‚大部分固件使用ç»å¯¹å€¼ã€‚"
-#: src/libslic3r/PrintConfig.cpp:2184
+#: src/libslic3r/PrintConfig.cpp:2072
msgid "Use volumetric E"
msgstr "使用体积E"
-#: src/libslic3r/PrintConfig.cpp:2185
+#: src/libslic3r/PrintConfig.cpp:2073
msgid ""
"This experimental setting uses outputs the E values in cubic millimeters "
"instead of linear millimeters. If your firmware doesn't already know "
@@ -5904,120 +6574,120 @@ msgstr ""
"èµ·å§‹G代ç ä¸è¾“入如'M200 D[filament_diameter_0] T0' 以开å¯ä½“积模å¼ï¼Œå¹¶ä½¿ç”¨åœ¨"
"Slic3rä¸å·²é€‰çš„䏿–™ç›´å¾„。仅在最新Marlin䏿”¯æŒè¯¥åŠŸèƒ½ã€‚"
-#: src/libslic3r/PrintConfig.cpp:2196
+#: src/libslic3r/PrintConfig.cpp:2083
msgid "Enable variable layer height feature"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2197
+#: src/libslic3r/PrintConfig.cpp:2084
msgid ""
"Some printers or printer setups may have difficulties printing with a "
"variable layer height. Enabled by default."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2204
+#: src/libslic3r/PrintConfig.cpp:2090
msgid "Wipe while retracting"
msgstr "回缩时擦æ‹"
-#: src/libslic3r/PrintConfig.cpp:2205
+#: src/libslic3r/PrintConfig.cpp:2091
msgid ""
"This flag will move the nozzle while retracting to minimize the possible "
"blob on leaky extruders."
msgstr "在回缩时移动喷嘴以é¿å…挤出头滴æ¼ã€‚"
-#: src/libslic3r/PrintConfig.cpp:2213
+#: src/libslic3r/PrintConfig.cpp:2098
msgid ""
"Multi material printers may need to prime or purge extruders on tool "
"changes. Extrude the excess material into the wipe tower."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2220
+#: src/libslic3r/PrintConfig.cpp:2104
msgid "Purging volumes - load/unload volumes"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2221
+#: src/libslic3r/PrintConfig.cpp:2105
msgid ""
"This vector saves required volumes to change from/to each tool used on the "
"wipe tower. These values are used to simplify creation of the full purging "
"volumes below. "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2228
+#: src/libslic3r/PrintConfig.cpp:2111
msgid "Purging volumes - matrix"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2229
+#: src/libslic3r/PrintConfig.cpp:2112
msgid ""
"This matrix describes volumes (in cubic milimetres) required to purge the "
"new filament on the wipe tower for any given pair of tools. "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2239
+#: src/libslic3r/PrintConfig.cpp:2121
msgid "Position X"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2240
+#: src/libslic3r/PrintConfig.cpp:2122
msgid "X coordinate of the left front corner of a wipe tower"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2247
+#: src/libslic3r/PrintConfig.cpp:2128
msgid "Position Y"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2248
+#: src/libslic3r/PrintConfig.cpp:2129
msgid "Y coordinate of the left front corner of a wipe tower"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2256
+#: src/libslic3r/PrintConfig.cpp:2136
msgid "Width of a wipe tower"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2263
+#: src/libslic3r/PrintConfig.cpp:2142
msgid "Wipe tower rotation angle"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2264
+#: src/libslic3r/PrintConfig.cpp:2143
msgid "Wipe tower rotation angle with respect to x-axis "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2265
+#: src/libslic3r/PrintConfig.cpp:2144 src/libslic3r/PrintConfig.cpp:2565
msgid "degrees"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2272
+#: src/libslic3r/PrintConfig.cpp:2150
msgid "Wipe into this object's infill"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2273
+#: src/libslic3r/PrintConfig.cpp:2151
msgid ""
"Purging after toolchange will done inside this object's infills. This lowers "
"the amount of waste but may result in longer print time due to additional "
"travel moves."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2281
+#: src/libslic3r/PrintConfig.cpp:2158
msgid "Wipe into this object"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2282
+#: src/libslic3r/PrintConfig.cpp:2159
msgid ""
"Object will be used to purge the nozzle after a toolchange to save material "
"that would otherwise end up in the wipe tower and decrease print time. "
"Colours of the objects will be mixed as a result."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2289
+#: src/libslic3r/PrintConfig.cpp:2165
msgid "Maximal bridging distance"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2290
+#: src/libslic3r/PrintConfig.cpp:2166
msgid "Maximal distance between supports on sparse infill sections. "
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2297
+#: src/libslic3r/PrintConfig.cpp:2172
msgid "XY Size Compensation"
msgstr "XY尺寸补å¿"
-#: src/libslic3r/PrintConfig.cpp:2299
+#: src/libslic3r/PrintConfig.cpp:2174
msgid ""
"The object will be grown/shrunk in the XY plane by the configured value "
"(negative = inwards, positive = outwards). This might be useful for fine-"
@@ -6025,11 +6695,11 @@ msgid ""
msgstr ""
"该物体将以指定值(负=往内,æ£=往外)å˜å¤§/æ”¶ç¼©ã€‚å¯¹äºŽç²¾ç¡®è°ƒèŠ‚å”æ´žå°ºå¯¸å¯èƒ½æœ‰ç”¨ã€‚"
-#: src/libslic3r/PrintConfig.cpp:2308
+#: src/libslic3r/PrintConfig.cpp:2182
msgid "Z offset"
msgstr "Zè¡¥å¿"
-#: src/libslic3r/PrintConfig.cpp:2309
+#: src/libslic3r/PrintConfig.cpp:2183
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 "
@@ -6040,425 +6710,578 @@ msgstr ""
"æ¿ä½ç½®è¿›è¡Œè¡¥å¿ï¼Œå¦‚æžœä½ çš„ç»ˆç‚¹æŒ¡æ¿ä¸ºé›¶æ—¶ï¼Œå–·å˜´ç¦»æ‰“å°çƒåºŠè¿˜æœ‰0.3毫米,将该值设"
"为-0.3ï¼ˆæˆ–è€…è°ƒæ•´ä½ çš„ç»ˆç‚¹æŒ¡æ¿ï¼‰ã€‚"
-#: src/libslic3r/PrintConfig.cpp:2319
-msgid "Bed size X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2320 src/libslic3r/PrintConfig.cpp:2327
-#: src/libslic3r/PrintConfig.cpp:2334 src/libslic3r/PrintConfig.cpp:2343
-#: src/libslic3r/PrintConfig.cpp:2351 src/libslic3r/PrintConfig.cpp:2359
-msgid "Dwarf"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2326
-msgid "Bed size Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2333
-msgid "Picture resolution X"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2335 src/libslic3r/PrintConfig.cpp:2344
-msgid "px"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2342
-msgid "Picture resolution Y"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2350 src/libslic3r/PrintConfig.cpp:2430
-#: src/libslic3r/PrintConfig.cpp:2431
-msgid "Exposure time"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2358
-msgid "Exposure time first layers"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2373
+#: src/libslic3r/PrintConfig.cpp:2200
msgid "Display width"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2374
+#: src/libslic3r/PrintConfig.cpp:2201
msgid "Width of the display"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2380
+#: src/libslic3r/PrintConfig.cpp:2206
msgid "Display height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2381
+#: src/libslic3r/PrintConfig.cpp:2207
msgid "Height of the display"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2387
+#: src/libslic3r/PrintConfig.cpp:2212
msgid "Number of pixels in"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2389
+#: src/libslic3r/PrintConfig.cpp:2214
msgid "Number of pixels in X"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2396
+#: src/libslic3r/PrintConfig.cpp:2220
msgid "Number of pixels in Y"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2402
+#: src/libslic3r/PrintConfig.cpp:2225
msgid "Display orientation"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2403
+#: src/libslic3r/PrintConfig.cpp:2226
msgid ""
"Set the actual LCD display orientation inside the SLA printer. Portrait mode "
"will flip the meaning of display width and height parameters and the output "
"images will be rotated by 90 degrees."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2410
+#: src/libslic3r/PrintConfig.cpp:2232
msgid "Landscape"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2411
+#: src/libslic3r/PrintConfig.cpp:2233
msgid "Portrait"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2415 src/libslic3r/PrintConfig.cpp:2416
+#: src/libslic3r/PrintConfig.cpp:2238
+msgid "Fast"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2239
+msgid "Fast tilt"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2240
+msgid "Time of the fast tilt"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2247
+msgid "Slow"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2248
+msgid "Slow tilt"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2249
+msgid "Time of the slow tilt"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2256
+msgid "Area fill"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2257
+msgid ""
+"The percentage of the bed area. \n"
+"If the print area exceeds the specified value, \n"
+"then a slow tilt will be used, otherwise - a fast tilt"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2264 src/libslic3r/PrintConfig.cpp:2265
+#: src/libslic3r/PrintConfig.cpp:2266
msgid "Printer scaling correction"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2422 src/libslic3r/PrintConfig.cpp:2423
+#: src/libslic3r/PrintConfig.cpp:2272 src/libslic3r/PrintConfig.cpp:2273
+msgid "Printer absolute correction"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2274
+msgid ""
+"Will inflate or deflate the sliced 2D polygons according to the sign of the "
+"correction."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2280 src/libslic3r/PrintConfig.cpp:2281
+msgid "Printer gamma correction"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2282
+msgid "This will apply a gamm correction to the rasterized 2D polygons."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2291 src/libslic3r/PrintConfig.cpp:2292
msgid "Initial layer height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2438 src/libslic3r/PrintConfig.cpp:2439
+#: src/libslic3r/PrintConfig.cpp:2298
+msgid "Faded layers"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2299
+msgid ""
+"Number of the layers needed for the exposure time fade from initial exposure "
+"time to the exposure time"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2306 src/libslic3r/PrintConfig.cpp:2307
+msgid "Exposure time"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2313 src/libslic3r/PrintConfig.cpp:2314
msgid "Initial exposure time"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2446 src/libslic3r/PrintConfig.cpp:2447
-msgid "Correction for expansion when printing"
+#: src/libslic3r/PrintConfig.cpp:2320 src/libslic3r/PrintConfig.cpp:2321
+msgid "Correction for expansion"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2452 src/libslic3r/PrintConfig.cpp:2453
-msgid "Correction for expansion after curing"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2458
+#: src/libslic3r/PrintConfig.cpp:2327
msgid "SLA print material notes"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2459
+#: src/libslic3r/PrintConfig.cpp:2328
msgid "You can put your notes regarding the SLA print material here."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2468 src/libslic3r/PrintConfig.cpp:2478
+#: src/libslic3r/PrintConfig.cpp:2336 src/libslic3r/PrintConfig.cpp:2347
msgid "Default SLA material profile"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2487
+#: src/libslic3r/PrintConfig.cpp:2358
msgid "Generate supports"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2489
+#: src/libslic3r/PrintConfig.cpp:2360
msgid "Generate supports for the models"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2494
+#: src/libslic3r/PrintConfig.cpp:2365
msgid "Support head front diameter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2496
+#: src/libslic3r/PrintConfig.cpp:2367
msgid "Diameter of the pointing side of the head"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2503
+#: src/libslic3r/PrintConfig.cpp:2374
msgid "Support head penetration"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2505
+#: src/libslic3r/PrintConfig.cpp:2376
msgid "How much the pinhead has to penetrate the model surface"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2512
+#: src/libslic3r/PrintConfig.cpp:2383
msgid "Support head width"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2514
+#: src/libslic3r/PrintConfig.cpp:2385
msgid "Width from the back sphere center to the front sphere center"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2521
+#: src/libslic3r/PrintConfig.cpp:2393
msgid "Support pillar diameter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2523
+#: src/libslic3r/PrintConfig.cpp:2395
msgid "Diameter in mm of the support pillars"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2530
+#: src/libslic3r/PrintConfig.cpp:2403
msgid "Support pillar connection mode"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2531
+#: src/libslic3r/PrintConfig.cpp:2404
msgid ""
"Controls the bridge type between two neigboring pillars. Can be zig-zag, "
"cross (double zig-zag) or dynamic which will automatically switch between "
"the first two depending on the distance of the two pillars."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2540
+#: src/libslic3r/PrintConfig.cpp:2412
msgid "Zig-Zag"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2541
+#: src/libslic3r/PrintConfig.cpp:2413
msgid "Cross"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2542
+#: src/libslic3r/PrintConfig.cpp:2414
msgid "Dynamic"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2546
+#: src/libslic3r/PrintConfig.cpp:2426
msgid "Pillar widening factor"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2548
+#: src/libslic3r/PrintConfig.cpp:2428
msgid ""
"Merging bridges or pillars into another pillars can increase the radius. "
"Zero means no increase, one means full increase."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2557
+#: src/libslic3r/PrintConfig.cpp:2437
msgid "Support base diameter"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2559
+#: src/libslic3r/PrintConfig.cpp:2439
msgid "Diameter in mm of the pillar base"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2566
+#: src/libslic3r/PrintConfig.cpp:2447
msgid "Support base height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2568
+#: src/libslic3r/PrintConfig.cpp:2449
msgid "The height of the pillar base cone"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2575
+#: src/libslic3r/PrintConfig.cpp:2456
msgid "Critical angle"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2577
+#: src/libslic3r/PrintConfig.cpp:2458
msgid "The default angle for connecting support sticks and junctions."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2584
+#: src/libslic3r/PrintConfig.cpp:2466
msgid "Max bridge length"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2586
+#: src/libslic3r/PrintConfig.cpp:2468
msgid "The max length of a bridge"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2593
+#: src/libslic3r/PrintConfig.cpp:2475
+msgid "Max pillar linking distance"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2477
+msgid ""
+"The max distance of two pillars to get linked with each other. A zero value "
+"will prohibit pillar cascading."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2485
msgid "Object elevation"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2595
+#: src/libslic3r/PrintConfig.cpp:2487
msgid "How much the supports should lift up the supported object."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2602
-msgid "Density on horizontal surfaces"
+#: src/libslic3r/PrintConfig.cpp:2495
+msgid "Support points density"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2604
-msgid ""
-"How many support points (approximately) should be placed on horizontal "
-"surface."
+#: src/libslic3r/PrintConfig.cpp:2497
+msgid "This is a relative measure of support points density."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2605 src/libslic3r/PrintConfig.cpp:2614
-msgid "points per square dm"
+#: src/libslic3r/PrintConfig.cpp:2503
+msgid "Minimal distance of the support points"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2611
-msgid "Density on surfaces at 45 degrees"
+#: src/libslic3r/PrintConfig.cpp:2505
+msgid "No support points will be placed closer than this threshold."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2613
-msgid ""
-"How many support points (approximately) should be placed on surface sloping "
-"at 45 degrees."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2620
-msgid "Minimal support point height"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2622
-msgid "No support points will be placed lower than this value from the bottom."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:2629
+#: src/libslic3r/PrintConfig.cpp:2511
msgid "Use pad"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2631
+#: src/libslic3r/PrintConfig.cpp:2513
msgid "Add a pad underneath the supported model"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2636
+#: src/libslic3r/PrintConfig.cpp:2518
msgid "Pad wall thickness"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2645
+#: src/libslic3r/PrintConfig.cpp:2520
+msgid "The thickness of the pad and its optional cavity walls."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2528
msgid "Pad wall height"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2654
+#: src/libslic3r/PrintConfig.cpp:2529
+msgid "Defines the cavity depth. Set to zero to disable the cavity."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2539
msgid "Max merge distance"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:2663
+#: src/libslic3r/PrintConfig.cpp:2541
+msgid ""
+"Some objects can get along with a few smaller pads instead of a single big "
+"one. This parameter defines how far the center of two smaller pads should "
+"be. If theyare closer, they will get merged into one pad."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2552
msgid "Pad edge radius"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3017
+#: src/libslic3r/PrintConfig.cpp:2561
+msgid "Pad wall slope"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2563
+msgid ""
+"The slope of the pad wall relative to the bed plane. 90 degrees means "
+"straight walls."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2924
+msgid "Export SVG"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2925
+msgid "Export the model(s) as OBJ."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2936
+msgid "Export SLA"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2937
+msgid "Slice the model and export SLA printing layers as PNG."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2942
+msgid "Export 3MF"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2943
+msgid "Export the model(s) as 3MF."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2947
+msgid "Export AMF"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2948
+msgid "Export the model(s) as AMF."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2952
+msgid "Export STL"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2953
+msgid "Export the model(s) as STL."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2958
+msgid "Slice the model and export toolpaths as G-code."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2963
+msgid "Slice"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2964
+msgid ""
+"Slice the model as FFF or SLA based on the printer_technology configuration "
+"value."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2969
+msgid "Help"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2970
+msgid "Show this help."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2975
+msgid "Help (FFF options)"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2976
+msgid "Show the full list of print/G-code configuration options."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2980
+msgid "Help (SLA options)"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2981
+msgid "Show the full list of SLA print configuration options."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:2985
+msgid "Output Model Info"
+msgstr "输出模型信æ¯"
+
+#: src/libslic3r/PrintConfig.cpp:2986
+msgid "Write information about the model to the console."
+msgstr "给控制å°å†™å…¥æ¨¡åž‹çš„ä¿¡æ¯ã€‚"
+
+#: src/libslic3r/PrintConfig.cpp:2990
+msgid "Save config file"
+msgstr "ä¿å˜é…置文件"
+
+#: src/libslic3r/PrintConfig.cpp:2991
+msgid "Save configuration to the specified file."
+msgstr "å°†é…ç½®å‚æ•°ä¿å˜åˆ°æŒ‡å®šæ–‡ä»¶ã€‚"
+
+#: src/libslic3r/PrintConfig.cpp:3001
+msgid "Align XY"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3002
+msgid "Align the model to the given point."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3007
msgid "Cut model at the given Z."
msgstr "在给定Z处切割模型。"
-#: src/libslic3r/PrintConfig.cpp:3022
-msgid "Dont arrange"
+#: src/libslic3r/PrintConfig.cpp:3028
+msgid "Center"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3023
+#: src/libslic3r/PrintConfig.cpp:3029
+msgid "Center the print around the given center."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3033
+msgid "Don't arrange"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3034
msgid ""
-"Don't arrange the objects on the build plate. The model coordinates define "
-"the absolute positions on the build plate. The option --center will be "
-"ignored."
+"Do not rearrange the given models before merging and keep their original XY "
+"coordinates."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3030
-msgid "User data directory"
+#: src/libslic3r/PrintConfig.cpp:3037
+msgid "Duplicate"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3031
+#: src/libslic3r/PrintConfig.cpp:3038
+msgid "Multiply copies by this factor."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3042
+msgid "Duplicate by grid"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3043
+msgid "Multiply copies by creating a grid."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3046
+msgid "Merge"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3047
+msgid ""
+"Arrange the supplied models in a plate and merge them in a single model in "
+"order to perform actions once."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3052
+msgid ""
+"Try to repair any non-manifold meshes (this option is implicitly added "
+"whenever we need to slice the model to perform the requested action)."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3056
+msgid "Rotation angle around the Z axis in degrees."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3060
+msgid "Rotate around X"
+msgstr "绕X轴旋转"
+
+#: src/libslic3r/PrintConfig.cpp:3061
+msgid "Rotation angle around the X axis in degrees."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3065
+msgid "Rotate around Y"
+msgstr "绕Y轴旋转"
+
+#: src/libslic3r/PrintConfig.cpp:3066
+msgid "Rotation angle around the Y axis in degrees."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3071
+msgid "Scaling factor or percentage."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3076
+msgid ""
+"Detect unconnected parts in the given model(s) and split them into separate "
+"objects."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3079
+msgid "Scale to Fit"
+msgstr "缩放到åˆé€‚大å°"
+
+#: src/libslic3r/PrintConfig.cpp:3080
+msgid "Scale to fit the given volume."
+msgstr "缩放到适åˆäºŽç»™å®šä½“积。"
+
+#: src/libslic3r/PrintConfig.cpp:3089
+msgid "Ignore non-existent config files"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3090
+msgid "Do not fail if a file supplied to --load does not exist."
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3093
+msgid "Load config file"
+msgstr "åŠ è½½é…置文件"
+
+#: src/libslic3r/PrintConfig.cpp:3094
+msgid ""
+"Load configuration from the specified file. It can be used more than once to "
+"load options from multiple files."
+msgstr "ä»ŽæŒ‡å®šæ–‡ä»¶åŠ è½½é…置。å¯å¤šæ¬¡ä½¿ç”¨ä»¥ä»Žå¤šä¸ªæ–‡ä»¶ä¸åŠ è½½å‚æ•°ã€‚"
+
+#: src/libslic3r/PrintConfig.cpp:3097
+msgid "Output File"
+msgstr "输出文件"
+
+#: src/libslic3r/PrintConfig.cpp:3098
+msgid ""
+"The file where the output will be written (if not specified, it will be "
+"based on the input file)."
+msgstr "è¾“å‡ºçš„æ–‡ä»¶ï¼ˆå¦‚æžœæœªæŒ‡å®šï¼Œåˆ™å°†ä¾æ®è¾“入文件)。"
+
+#: src/libslic3r/PrintConfig.cpp:3108
+msgid "Data directory"
+msgstr ""
+
+#: src/libslic3r/PrintConfig.cpp:3109
msgid ""
"Load and store settings at the given directory. This is useful for "
"maintaining different profiles or including configurations from a network "
"storage."
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3038
-msgid "Export 3MF"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3039
-msgid "Slice the model and export slices as 3MF."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3044
-msgid "Slice"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3045
-msgid "Slice the model and export gcode."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3050
-msgid "Help"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3051
-msgid "Show this help."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3056
-msgid "Use GUI"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3057
-msgid ""
-"Forces the GUI launch instead of command line slicing (if you supply a model "
-"file, it will be loaded into the plater)"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3063
-msgid "Output Model Info"
-msgstr "输出模型信æ¯"
-
-#: src/libslic3r/PrintConfig.cpp:3064
-msgid "Write information about the model to the console."
-msgstr "给控制å°å†™å…¥æ¨¡åž‹çš„ä¿¡æ¯ã€‚"
-
-#: src/libslic3r/PrintConfig.cpp:3069
-msgid "Load config file"
-msgstr "åŠ è½½é…置文件"
-
-#: src/libslic3r/PrintConfig.cpp:3070
-msgid ""
-"Load configuration from the specified file. It can be used more than once to "
-"load options from multiple files."
-msgstr "ä»ŽæŒ‡å®šæ–‡ä»¶åŠ è½½é…置。å¯å¤šæ¬¡ä½¿ç”¨ä»¥ä»Žå¤šä¸ªæ–‡ä»¶ä¸åŠ è½½å‚æ•°ã€‚"
-
-#: src/libslic3r/PrintConfig.cpp:3075
-msgid "Do not use GUI"
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3076
-msgid ""
-"Forces the command line slicing instead of gui. This takes precedence over --"
-"gui if both are present."
-msgstr ""
-
-#: src/libslic3r/PrintConfig.cpp:3081
-msgid "Output File"
-msgstr "输出文件"
-
-#: src/libslic3r/PrintConfig.cpp:3082
-msgid ""
-"The file where the output will be written (if not specified, it will be "
-"based on the input file)."
-msgstr "è¾“å‡ºçš„æ–‡ä»¶ï¼ˆå¦‚æžœæœªæŒ‡å®šï¼Œåˆ™å°†ä¾æ®è¾“入文件)。"
-
-#: src/libslic3r/PrintConfig.cpp:3088
-msgid "Rotation angle around the Z axis in degrees (0-360, default: 0)."
-msgstr "绕Z轴旋转角度(0-360,默认:0)。"
-
-#: src/libslic3r/PrintConfig.cpp:3093
-msgid "Rotate around X"
-msgstr "绕X轴旋转"
-
-#: src/libslic3r/PrintConfig.cpp:3094
-msgid "Rotation angle around the X axis in degrees (0-360, default: 0)."
-msgstr "绕X轴旋转角度(0-360,默认:0)。"
-
-#: src/libslic3r/PrintConfig.cpp:3099
-msgid "Rotate around Y"
-msgstr "绕Y轴旋转"
-
-#: src/libslic3r/PrintConfig.cpp:3100
-msgid "Rotation angle around the Y axis in degrees (0-360, default: 0)."
-msgstr "绕Y轴旋转角度(0-360,默认:0)。"
-
-#: src/libslic3r/PrintConfig.cpp:3105
-msgid "Save config file"
-msgstr "ä¿å˜é…置文件"
-
-#: src/libslic3r/PrintConfig.cpp:3106
-msgid "Save configuration to the specified file."
-msgstr "å°†é…ç½®å‚æ•°ä¿å˜åˆ°æŒ‡å®šæ–‡ä»¶ã€‚"
-
#: src/libslic3r/PrintConfig.cpp:3112
-msgid "Scaling factor (default: 1)."
-msgstr "缩放比例(默认:1)。"
-
-#: src/libslic3r/PrintConfig.cpp:3125
-msgid "Print center"
+msgid "Logging level"
msgstr ""
-#: src/libslic3r/PrintConfig.cpp:3126
-msgid "Center the print around the given center (default: 100, 100)."
+#: src/libslic3r/PrintConfig.cpp:3113
+msgid ""
+"Messages with severity lower or eqal to the loglevel will be printed out. 0:"
+"trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal"
msgstr ""
#: src/libslic3r/GCode/PreviewData.cpp:176
@@ -6500,6 +7323,27 @@ msgstr ""
msgid "%.2f - %.2f mm"
msgstr ""
+#~ msgid "Top/bottom fill pattern"
+#~ msgstr "顶部/åº•éƒ¨å¡«å……æ ·å¼"
+
+#~ msgid ""
+#~ "Fill pattern for top/bottom infill. This only affects the external "
+#~ "visible layer, and not its adjacent solid shells."
+#~ msgstr ""
+#~ "对顶部/底部内部填充的类型。这将影å“外围å¯è§å±‚,ä¸å½±å“其相邻的å¯é 层。"
+
+#~ msgid "Rotation angle around the Z axis in degrees (0-360, default: 0)."
+#~ msgstr "绕Z轴旋转角度(0-360,默认:0)。"
+
+#~ msgid "Rotation angle around the X axis in degrees (0-360, default: 0)."
+#~ msgstr "绕X轴旋转角度(0-360,默认:0)。"
+
+#~ msgid "Rotation angle around the Y axis in degrees (0-360, default: 0)."
+#~ msgstr "绕Y轴旋转角度(0-360,默认:0)。"
+
+#~ msgid "Scaling factor (default: 1)."
+#~ msgstr "缩放比例(默认:1)。"
+
#~ msgid "Minimum extrusion length"
#~ msgstr "最大挤出长度"
@@ -6886,9 +7730,3 @@ msgstr ""
#~ msgid "Slice the model and export slices as SVG."
#~ msgstr "切割模型并以SVGæ ¼å¼å¯¼å‡ºåˆ‡ç‰‡ç»“果。"
-
-#~ msgid "Scale to Fit"
-#~ msgstr "缩放到åˆé€‚大å°"
-
-#~ msgid "Scale to fit the given volume."
-#~ msgstr "缩放到适åˆäºŽç»™å®šä½“积。"
diff --git a/resources/localization/zh_CN/Slic3rPE.mo b/resources/localization/zh_CN/Slic3rPE.mo
deleted file mode 100644
index 7d298da02..000000000
Binary files a/resources/localization/zh_CN/Slic3rPE.mo and /dev/null differ
diff --git a/resources/localization/zh_CN/Slic3rPE_zh.po b/resources/localization/zh_CN/Slic3rPE_zh.po
deleted file mode 100644
index b48ca4b0b..000000000
--- a/resources/localization/zh_CN/Slic3rPE_zh.po
+++ /dev/null
@@ -1,4468 +0,0 @@
-msgid ""
-msgstr ""
-"Project-Id-Version: Slic3rPE\n"
-"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2018-02-28 13:53+0100\n"
-"PO-Revision-Date: 2018-02-28 14:17+0100\n"
-"Last-Translator: Oleksandra Iushchenko \n"
-"Language-Team: \n"
-"MIME-Version: 1.0\n"
-"Content-Type: text/plain; charset=UTF-8\n"
-"Content-Transfer-Encoding: 8bit\n"
-"X-Generator: Poedit 2.0.6\n"
-"X-Poedit-Basepath: ..\n"
-"Plural-Forms: nplurals=1; plural=0;\n"
-"X-Poedit-SourceCharset: UTF-8\n"
-"X-Poedit-KeywordsList: L\n"
-"Language: zh_CN\n"
-"X-Poedit-SearchPath-0: xs/src/libslic3r\n"
-"X-Poedit-SearchPath-1: xs/xrc/slic3r/GUI\n"
-"X-Poedit-SearchPath-2: xs/xrc/slic3r\n"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:39
-msgid "Shape"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:46
-msgid "Rectangular"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:50
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1191
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:408
-msgid "Size"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:51
-msgid "Size in X and Y of the rectangular plate."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:57
-msgid "Origin"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:58
-msgid ""
-"Distance of the 0,0 G-code coordinate from the front left corner of the "
-"rectangle."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:62
-msgid "Circular"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:65
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:129
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:200
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:211
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:325
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:336
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:355
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:434
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:781
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:801
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:860
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:878
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:896
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1044
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1052
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1094
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1103
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1113
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1121
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1129
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1215
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1421
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1491
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1527
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1704
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1711
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1718
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1727
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1737
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1747
-msgid "mm"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:66
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:431
-msgid "Diameter"
-msgstr "直径"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:67
-msgid ""
-"Diameter of the print bed. It is assumed that origin (0,0) is located in the "
-"center."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:71
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:150
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:92
-msgid "Custom"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:75
-msgid "Load shape from STL..."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:120
-msgid "Settings"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:298
-msgid "Choose a file to import bed shape from (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:315
-msgid "Error! "
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:324
-msgid "The selected file contains no geometry."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.cpp:328
-msgid ""
-"The selected file contains several disjoint areas. This is not supported."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\BedShapeDialog.hpp:42
-msgid "Bed Shape"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:224
-msgid "Array of language names and identifiers should have the same size."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:235
-msgid "Select the language"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:235
-msgid "Language"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:300
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:170
-msgid "Default"
-msgstr "默认"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:325
-msgid "Change Application Language"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:332
-msgid "Application will be restarted"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:332
-msgid "Attention!"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:339
-msgid "&Localization"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:488
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:470
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1300
-msgid "Error"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:493
-msgid "Notice"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:498
-msgid "GLUquadricObjPtr | Attempt to free unreferenced scalar"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\GUI.cpp:500
-msgid "Warning"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:50
-msgid "Save current "
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:51
-msgid "Delete this preset"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:313
-msgid "Layers and perimeters"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:314
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:777
-msgid "Layer height"
-msgstr "层高"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:318
-msgid "Vertical shells"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:329
-msgid "Horizontal shells"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:330
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1314
-msgid "Solid layers"
-msgstr "å¯é 层数"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:335
-msgid "Quality (slower slicing)"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:342
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:356
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:449
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:452
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:831
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1113
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:107
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:208
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:736
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1733
-msgid "Advanced"
-msgstr "高级"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:346
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:347
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:664
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:87
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:247
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:488
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:502
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:540
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:681
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:691
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:709
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:727
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:746
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1263
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1280
-msgid "Infill"
-msgstr "å¡«å……"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:352
-msgid "Reducing printing time"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:364
-msgid "Skirt and brim"
-msgstr "环边和裙边"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:365
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:146
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:88
-msgid "Skirt"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:371
-msgid "Brim"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:374
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:375
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:191
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1030
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1380
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1387
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1399
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1409
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1417
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1432
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1453
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1464
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1480
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1489
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1498
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1509
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1525
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1533
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1534
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1543
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1551
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1565
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:147
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:89
-msgid "Support material"
-msgstr "æ”¯æ’‘ææ–™"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:380
-msgid "Raft"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:384
-msgid "Options for support material and raft"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:398
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:118
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:278
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:635
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:747
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:979
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1201
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1251
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1302
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1625
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:71
-msgid "Speed"
-msgstr "速度"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:399
-msgid "Speed for print moves"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:411
-msgid "Speed for non-print moves"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:414
-msgid "Modifiers"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:417
-msgid "Acceleration control (advanced)"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:424
-msgid "Autospeed (advanced)"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:430
-msgid "Multiple Extruders"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:431
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:966
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:308
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:702
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:958
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1272
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1445
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1471
-msgid "Extruders"
-msgstr "挤出头"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:438
-msgid "Ooze prevention"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:442
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:149
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:91
-msgid "Wipe tower"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:453
-msgid "Extrusion width"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:463
-msgid "Overlap"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:466
-msgid "Flow"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:469
-msgid "Other"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:476
-msgid "Output options"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:477
-msgid "Sequential printing"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:479
-msgid "Extruder clearance (mm)"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:488
-msgid "Output file"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:494
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1001
-msgid "Post-processing scripts"
-msgstr "åŽå¤„ç†è„šæœ¬"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:500
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:501
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:859
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:860
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1156
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1157
-msgid "Notes"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:507
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:867
-msgid "Dependencies"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:508
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:868
-msgid "Profile dependencies"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:509
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:869
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1668
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:143
-msgid "Compatible printers"
-msgstr "å…¼å®¹çš„æ‰“å°æœº"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:533
-#, no-c-format
-msgid ""
-"The Spiral Vase mode requires:\n"
-"- one perimeter\n"
-"- no top solid layers\n"
-"- 0% fill density\n"
-"- no support material\n"
-"- no ensure_vertical_shell_thickness\n"
-"\n"
-"Shall I adjust those settings in order to enable Spiral Vase?"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:540
-msgid "Spiral Vase"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:560
-msgid ""
-"The Wipe Tower currently supports only:\n"
-"- first layer height 0.2mm\n"
-"- layer height from 0.15mm to 0.35mm\n"
-"\n"
-"Shall I adjust those settings in order to enable the Wipe Tower?"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:564
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:585
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:602
-msgid "Wipe Tower"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:581
-msgid ""
-"The Wipe Tower currently supports the non-soluble supports only\n"
-"if they are printed with the current extruder without triggering a tool "
-"change.\n"
-"(both support_material_extruder and support_material_interface_extruder need "
-"to be set to 0).\n"
-"\n"
-"Shall I adjust those settings in order to enable the Wipe Tower?"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:599
-msgid ""
-"For the Wipe Tower to work with the soluble supports, the support layers\n"
-"need to be synchronized with the object layers.\n"
-"\n"
-"Shall I synchronize support layers in order to enable the Wipe Tower?"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:617
-msgid ""
-"Supports work better, if the following feature is enabled:\n"
-"- Detect bridging perimeters\n"
-"\n"
-"Shall I adjust those settings for supports?"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:620
-msgid "Support Generator"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:662
-msgid "The "
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:662
-#, no-c-format
-msgid ""
-" infill pattern is not supposed to work at 100% density.\n"
-"\n"
-"Shall I switch to rectilinear fill pattern?"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:786
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:787
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:368
-msgid "Filament"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:794
-msgid "Temperature "
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:795
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1234
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:307
-msgid "Extruder"
-msgstr "挤出头"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:800
-msgid "Bed"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:805
-msgid "Cooling"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:806
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:922
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1695
-msgid "Enable"
-msgstr "使能"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:817
-msgid "Fan settings"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:818
-msgid "Fan speed"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:826
-msgid "Cooling thresholds"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:832
-msgid "Filament properties"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:836
-msgid "Print speed override"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:846
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1119
-msgid "Custom G-code"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:847
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1120
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1342
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1357
-msgid "Start G-code"
-msgstr "èµ·å§‹G代ç "
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:853
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1126
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:217
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:227
-msgid "End G-code"
-msgstr "结尾G代ç "
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:937
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:11
-msgid "General"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:938
-msgid "Size and coordinates"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:940
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:34
-msgid "Bed shape"
-msgstr "机床形状"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:942
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1637
-msgid " Set "
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:962
-msgid "Capabilities"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:967
-msgid "Number of extruders of the printer."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:989
-msgid "USB/Serial connection"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:990
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1193
-msgid "Serial port"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:995
-msgid "Rescan serial ports"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1004
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1072
-msgid "Test"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1017
-msgid "Connection to printer works correctly."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1017
-msgid "Success!"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1020
-msgid "Connection failed."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1032
-msgid "OctoPrint upload"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1035
-msgid " Browse "
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1110
-msgid "Firmware"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1132
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:48
-msgid "Before layer change G-code"
-msgstr "层改å˜å‰çš„G代ç "
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1138
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:766
-msgid "After layer change G-code"
-msgstr "层å˜åŒ–åŽG代ç "
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1144
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1602
-msgid "Tool change G-code"
-msgstr "切æ¢å·¥å…·G代ç "
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1150
-msgid "Between objects G-code (for sequential printing)"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1187
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:400
-#, c-format
-msgid "Extruder %d"
-msgstr "挤出头 %d"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1194
-msgid "Layer height limits"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1199
-msgid "Position (for multi-extruder printers)"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1202
-msgid "Retraction"
-msgstr "回缩"
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1205
-msgid "Only lift Z"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1218
-msgid ""
-"Retraction when tool is disabled (advanced settings for multi-extruder "
-"setups)"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1222
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:150
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2125
-msgid "Preview"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1312
-msgid ""
-"The Wipe option is not available when using the Firmware Retraction mode.\n"
-"\n"
-"Shall I disable it in order to enable Firmware Retraction?"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1314
-msgid "Firmware Retraction"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1469
-msgid "Default "
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1469
-msgid " preset"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1470
-msgid " preset\n"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1488
-msgid ""
-"\n"
-"\n"
-"is not compatible with printer\n"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1488
-msgid ""
-"\n"
-"\n"
-"and it has the following unsaved changes:"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1489
-msgid ""
-"\n"
-"\n"
-"has the following unsaved changes:"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1491
-msgid ""
-"\n"
-"\n"
-"Discard changes and continue anyway?"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1492
-msgid "Unsaved Changes"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1560
-msgid "The supplied name is empty. It can't be saved."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1580
-msgid "remove"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1580
-msgid "delete"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1581
-msgid "Are you sure you want to "
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1581
-msgid " the selected preset?"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1582
-msgid "Remove"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1582
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:178
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:196
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2021
-msgid "Delete"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1583
-msgid " Preset"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1636
-msgid "All"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1667
-msgid "Select the printers this profile is compatible with."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1751
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:514
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1645
-msgid "Save "
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1751
-msgid " as:"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1785
-msgid ""
-"The supplied name is not valid; the following characters are not allowed:"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.cpp:1788
-msgid "The supplied name is not available."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.hpp:182
-msgid "Print Settings"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.hpp:202
-msgid "Filament Settings"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.hpp:228
-msgid "Printer Settings"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Tab.hpp:248
-msgid "Save preset"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Field.cpp:42
-msgid "default"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:26
-#, c-format
-msgid ""
-"If estimated layer time is below ~%ds, fan will run at %d%% and print speed "
-"will be reduced so that no less than %ds are spent on that layer (however, "
-"speed will never be reduced below %dmm/s)."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:30
-#, c-format
-msgid ""
-"\n"
-"If estimated layer time is greater, but still below ~%ds, fan will run at a "
-"proportionally decreasing speed between %d%% and %d%%."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:34
-msgid ""
-"\n"
-"During the other layers, fan "
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:36
-msgid "Fan "
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:41
-#, c-format
-msgid "will always run at %d%% "
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:44
-#, c-format
-msgid "except for the first %d layers"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:48
-msgid "except for the first layer"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:50
-msgid "will be turned off."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:151
-msgid "external perimeters"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:160
-msgid "perimeters"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:169
-msgid "infill"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:179
-msgid "solid infill"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:187
-msgid "top solid infill"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:198
-msgid "support"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:208
-msgid "support interface"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:214
-msgid "First layer volumetric"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:214
-msgid "Bridging volumetric"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:214
-msgid "Volumetric"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:215
-msgid " flow rate is maximized "
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:218
-msgid "by the print profile maximum"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:219
-msgid "when printing "
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:220
-msgid " with a volumetric rate "
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:224
-#, c-format
-msgid "%3.2f mm³/s"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:226
-#, c-format
-msgid " at filament speed %3.2f mm/s."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:245
-msgid ""
-"Recommended object thin wall thickness: Not available due to invalid layer "
-"height."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:262
-#, c-format
-msgid "Recommended object thin wall thickness for layer height %.2f and "
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\PresetHints.cpp:269
-#, c-format
-msgid "%d lines: %.2lf mm"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.hpp:17
-msgid "Preferences"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:27
-msgid "Remember output directory"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:29
-msgid ""
-"If this is enabled, Slic3r will prompt the last output directory instead of "
-"the one containing the input files."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:35
-msgid "Auto-center parts"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:37
-msgid ""
-"If this is enabled, Slic3r will auto-center objects around the print bed "
-"center."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:43
-msgid "Background processing"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:45
-msgid ""
-"If this is enabled, Slic3r will pre-process objects as soon as they're "
-"loaded in order to save time when exporting G-code."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:51
-msgid "Disable USB/serial connection"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:53
-msgid ""
-"Disable communication with the printer over a serial / USB cable. This "
-"simplifies the user interface in case the printer is never attached to the "
-"computer."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:59
-msgid "Suppress \" - default - \" presets"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:61
-msgid ""
-"Suppress \" - default - \" presets in the Print / Filament / Printer "
-"selections once there are any other valid presets available."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:67
-msgid "Show incompatible print and filament presets"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:69
-msgid ""
-"When checked, the print and filament presets are shown in the preset editor "
-"even if they are marked as incompatible with the active printer"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:75
-msgid "Use legacy OpenGL 1.1 rendering"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:77
-msgid ""
-"If you have rendering issues caused by a buggy OpenGL 2.0 driver, you may "
-"try to check this checkbox. This will disable the layer height editing and "
-"anti aliasing, so it is likely better to upgrade your graphics driver."
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\slic3r\GUI\Preferences.cpp:101
-msgid "You need to restart Slic3r to make the changes effective."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:26
-msgid "Avoid crossing perimeters"
-msgstr "é¿å…跨越轮廓"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:27
-msgid ""
-"Optimize travel moves in order to minimize the crossing of perimeters. This "
-"is mostly useful with Bowden extruders which suffer from oozing. This "
-"feature slows down both the print and the G-code generation."
-msgstr ""
-"为了尽é‡å‡å°‘跨越轮廓,优化空程的移动方å¼ã€‚è¿™éžå¸¸é€‚ç”¨äºŽå—æ¸—æ¼é—®é¢˜å½±å“çš„é²ç™»æŒ¤"
-"出头。æ¤åŠŸèƒ½ä¼šå‡æ…¢æ‰“å°é€Ÿåº¦å’Œ G 代ç 生æˆé€Ÿåº¦ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:38
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1572
-msgid "Other layers"
-msgstr "其它层"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:39
-msgid ""
-"Bed temperature for layers after the first one. Set this to zero to disable "
-"bed temperature control commands in the output."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:42
-msgid "Bed temperature"
-msgstr "机床温度"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:49
-msgid ""
-"This custom code is inserted at every layer change, right before the Z move. "
-"Note that you can use placeholder variables for all Slic3r settings as well "
-"as [layer_num] and [layer_z]."
-msgstr ""
-"这段自定义代ç 在层改å˜ï¼Œå³Zè½´ç§»åŠ¨å‰æ’入。注æ„除了å¯ä»¥ä½¿ç”¨[layer_num]å’Œ"
-"[layer_z],也å¯ä»¥ä½¿ç”¨å ä½ç¬¦å˜é‡æ›¿ä»£æ‰€æœ‰çš„slic3r设置。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:59
-msgid "Between objects G-code"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:60
-msgid ""
-"This code is inserted between objects when using sequential printing. By "
-"default extruder and bed temperature are reset using non-wait command; "
-"however if M104, M109, M140 or M190 are detected in this custom code, Slic3r "
-"will not add temperature commands. Note that you can use placeholder "
-"variables for all Slic3r settings, so you can put a \"M109 "
-"S[first_layer_temperature]\" command wherever you want."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:68
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:370
-msgid "Bottom"
-msgstr "底部"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:69
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:239
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:290
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:298
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:604
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:762
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:778
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:941
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:989
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1152
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1583
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1639
-msgid "Layers and Perimeters"
-msgstr "层和轮廓"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:70
-msgid "Number of solid layers to generate on bottom surfaces."
-msgstr "底部表é¢ç”Ÿæˆçš„å¯é 层数。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:72
-msgid "Bottom solid layers"
-msgstr "底部å¯é 层"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:77
-msgid "Bridge"
-msgstr "æ¡¥"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:78
-msgid ""
-"This is the acceleration your printer will use for bridges. Set zero to "
-"disable acceleration control for bridges."
-msgstr "æ¤é¡¹ä¸ºæ‰“å°æœºåœ¨æ‰“å°æ¡¥æ—¶çš„åŠ é€Ÿåº¦ã€‚è®¾ä¸º0å¯ä»¥ç¦ç”¨æ‰“å°æ¡¥çš„åŠ é€Ÿåº¦æŽ§åˆ¶ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:80
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:174
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:576
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:684
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:952
-msgid "mm/s²"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:86
-msgid "Bridging angle"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:88
-msgid ""
-"Bridging angle override. If left to zero, the bridging angle will be "
-"calculated automatically. Otherwise the provided angle will be used for all "
-"bridges. Use 180° for zero angle."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:91
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:492
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1170
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1181
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1401
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1557
-msgid "°"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:97
-msgid "Bridges fan speed"
-msgstr "桥风扇速度"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:98
-msgid "This fan speed is enforced during all bridges and overhangs."
-msgstr "æ¤é¡¹ä¸ºåœ¨æ‰“å°æ‰€æœ‰æ¡¥å’Œæ‚¬åž‚éƒ¨ä½æ—¶çš„风扇速度。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:99
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:504
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:789
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:850
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1060
-msgid "%"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:106
-msgid "Bridge flow ratio"
-msgstr "æ¡¥æµé‡æ¯”"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:108
-msgid ""
-"This factor affects the amount of plastic for bridging. You can decrease it "
-"slightly to pull the extrudates and prevent sagging, although default "
-"settings are usually good and you should experiment with cooling (use a fan) "
-"before tweaking this."
-msgstr ""
-"æ¤å› ç´ å½±å“æ¡¥æŽ¥éƒ¨ä½çš„塑料用é‡ã€‚å¯ä»¥ç•¥å¾®å‡å°‘该值以回撤挤出物é¿å…滴垂。但默认设"
-"置通常æ¥è¯´å·²ç»å¯ä»¥æ»¡è¶³ä½¿ç”¨ï¼Œåœ¨ä¿®æ”¹å‰éœ€é€šè¿‡å†·å´ï¼ˆä½¿ç”¨é£Žæ‰‡ï¼‰è¿›è¡Œæµ‹è¯•。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:117
-msgid "Bridges"
-msgstr "桥接处"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:119
-msgid "Speed for printing bridges."
-msgstr "æ‰“å°æ¡¥æŽ¥å¤„的速度。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:120
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:638
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:749
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:811
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:868
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:981
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1137
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1146
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1536
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1649
-msgid "mm/s"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:127
-msgid "Brim width"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:128
-msgid ""
-"Horizontal width of the brim that will be printed around each object on the "
-"first layer."
-msgstr "第一层æ¯ä¸ªç‰©ä½“周围打å°çš„裙边水平宽度。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:135
-msgid "Clip multi-part objects"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:136
-msgid ""
-"When printing multi-material objects, this settings will make slic3r to clip "
-"the overlapping object parts one by the other (2nd part will be clipped by "
-"the 1st, 3rd part will be clipped by the 1st and 2nd etc)."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:147
-msgid "Compatible printers condition"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:148
-msgid ""
-"A boolean expression using the configuration values of an active printer "
-"profile. If this expression evaluates to true, this profile is considered "
-"compatible with the active printer profile."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:154
-msgid "Complete individual objects"
-msgstr "打å°å®Œæˆå•个物体"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:155
-msgid ""
-"When printing multiple objects or copies, this feature will complete each "
-"object before moving onto next one (and starting it from its bottom layer). "
-"This feature is useful to avoid the risk of ruined prints. Slic3r should "
-"warn and prevent you from extruder collisions, but beware."
-msgstr ""
-"勾选æ¤é¡¹è¡¨ç¤ºå½“打å°å¤šä¸ªç‰©ä½“或å¤åˆ¶ä½“时,先打å°å®Œä¸€æ•´ä¸ªç‰©ä½“å†ç»§ç»æ‰“å°åŽç»ç‰©ä½“"
-"(从底层开始)。æ¤é€‰é¡¹åˆ©äºŽé¿å…æ‰“æ¯æŽ‰ç‰©ä½“ã€‚Slic3r应该给出è¦ç¤ºï¼Œé¿å…挤出头碰"
-"撞,但请å°å¿ƒã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:163
-msgid "Enable auto cooling"
-msgstr "自动冷å´ä½¿èƒ½"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:164
-msgid ""
-"This flag enables the automatic cooling logic that adjusts print speed and "
-"fan speed according to layer printing time."
-msgstr "该选项å¯åŠ¨è‡ªåŠ¨å†·å´ï¼Œä½¿å¾—坿 ¹æ®å±‚æ‰“å°æ—¶é—´è°ƒæ•´æ‰“å°é€Ÿåº¦å’Œé£Žæ‰‡é€Ÿåº¦ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:171
-msgid ""
-"This is the acceleration your printer will be reset to after the role-"
-"specific acceleration values are used (perimeter/infill). Set zero to "
-"prevent resetting acceleration at all."
-msgstr ""
-"è¯¥å€¼ä¸ºæ‰“å°æœºåœ¨ä½¿ç”¨äº†ç‰¹å®šçš„åŠ é€Ÿåº¦å€¼ï¼ˆå¦‚è½®å»“/填充)åŽå°†é‡ç½®çš„åŠ é€Ÿåº¦å€¼ã€‚è®¾ä¸º0以"
-"防æ¢é‡ç½®åŠ é€Ÿåº¦ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:180
-msgid "Disable fan for the first"
-msgstr "å‰å‡ 层ç¦ç”¨é£Žæ‰‡"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:181
-msgid ""
-"You can set this to a positive value to disable fan at all during the first "
-"layers, so that it does not make adhesion worse."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:183
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:694
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1033
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1224
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1285
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1437
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1482
-msgid "layers"
-msgstr "层"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:190
-msgid "Don't support bridges"
-msgstr "䏿”¯æŒæ¡¥æŽ¥"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:192
-msgid ""
-"Experimental option for preventing support material from being generated "
-"under bridged areas."
-msgstr "è¯•éªŒé¡¹ï¼Œåœ¨æ¡¥æŽ¥å¤„ç¦æ¢ç”Ÿæˆæ”¯æ’‘ææ–™ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:198
-msgid "Distance between copies"
-msgstr "å¤åˆ¶ç‰©ä½“之间的è·ç¦»"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:199
-msgid "Distance used for the auto-arrange feature of the plater."
-msgstr "自动分布时所使用的è·ç¦»ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:207
-msgid "Elephant foot compensation"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:209
-msgid ""
-"The first layer will be shrunk in the XY plane by the configured value to "
-"compensate for the 1st layer squish aka an Elephant Foot effect."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:218
-msgid ""
-"This end procedure is inserted at the end of the output file. Note that you "
-"can use placeholder variables for all Slic3r settings."
-msgstr "该部分将æ’入到输出文件的结尾。注æ„å¯å¯¹æ‰€æœ‰çš„Slic3r傿•°ä½¿ç”¨å ä½ç¬¦å˜é‡ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:228
-msgid ""
-"This end procedure is inserted at the end of the output file, before the "
-"printer end gcode. Note that you can use placeholder variables for all "
-"Slic3r settings. If you have multiple extruders, the gcode is processed in "
-"extruder order."
-msgstr ""
-"该部分将被æ’å…¥è¾“å‡ºæ–‡ä»¶çš„ç»“å°¾ï¼Œä½†åœ¨æ‰“å°æœºç»“å°¾G代ç 之å‰ã€‚注æ„å¯ä»¥å¯¹æ‰€æœ‰Slic3rå‚"
-"数使用å ä½ç¬¦å˜é‡ä»£æ›¿ã€‚如果有多个打å°å¤´ï¼ŒG代ç 将按打å°å¤´çš„é¡ºåºæ¥å¤„ç†ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:238
-msgid "Ensure vertical shell thickness"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:240
-msgid ""
-"Add solid infill near sloping surfaces to guarantee the vertical shell "
-"thickness (top+bottom solid layers)."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:246
-msgid "Top/bottom fill pattern"
-msgstr "顶部/åº•éƒ¨å¡«å……æ ·å¼"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:248
-msgid ""
-"Fill pattern for top/bottom infill. This only affects the external visible "
-"layer, and not its adjacent solid shells."
-msgstr "对顶部/底部内部填充的类型。这将影å“外围å¯è§å±‚,ä¸å½±å“其相邻的å¯é 层。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:267
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:277
-msgid "External perimeters"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:268
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:377
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:592
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:710
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:967
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1292
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1454
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1614
-msgid "Extrusion Width"
-msgstr "挤出宽度"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:269
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for external "
-"perimeters. If left zero, default extrusion width will be used if set, "
-"otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
-"(for example 200%), it will be computed over layer height."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:272
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:597
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:715
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:972
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1296
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1458
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1619
-msgid "mm or % (leave 0 for default)"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:279
-msgid ""
-"This separate setting will affect the speed of external perimeters (the "
-"visible ones). If expressed as percentage (for example: 80%) it will be "
-"calculated on the perimeters speed setting above. Set to zero for auto."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:282
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:619
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1255
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1306
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1501
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1631
-msgid "mm/s or %"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:289
-msgid "External perimeters first"
-msgstr "先打å°å¤–围轮廓"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:291
-msgid ""
-"Print contour perimeters from the outermost one to the innermost one instead "
-"of the default inverse order."
-msgstr "ä»Žæœ€å¤–å›´è½®å»“å‘æœ€å†…部的轮廓打å°ï¼Œè€Œä¸æ˜¯åæ–¹å‘。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:297
-msgid "Extra perimeters if needed"
-msgstr "如果需è¦çš„è¯ï¼Œæ‰“å°å¤–围轮廓"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:299
-#, no-c-format
-msgid ""
-"Add more perimeters when needed for avoiding gaps in sloping walls. Slic3r "
-"keeps adding perimeters, until more than 70% of the loop immediately above "
-"is supported."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:309
-msgid ""
-"The extruder to use (unless more specific extruder settings are specified). "
-"This value overrides perimeter and infill extruders, but not the support "
-"extruders."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:320
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:69
-msgid "Height"
-msgstr "高度"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:321
-msgid ""
-"Set this to the vertical distance between your nozzle tip and (usually) the "
-"X carriage rods. In other words, this is the height of the clearance "
-"cylinder around your extruder, and it represents the maximum depth the "
-"extruder can peek before colliding with other printed objects."
-msgstr ""
-"设置为喷嘴尖端和(通常)Xæž¶æ†ä¹‹é—´çš„垂直è·ç¦»ã€‚æ¢å¥è¯è¯´ï¼Œè¿™æ˜¯åœ¨ä½ 的挤出机周围的"
-"ç©ºéš™æ°”ç¼¸çš„é«˜åº¦ï¼Œå®ƒä»£è¡¨äº†æŒ¤å‡ºå¤´åœ¨ä¸Žå…¶ä»–å°æ‰“å°ç‰©ä½“碰撞å‰ç§‘达到的最大深度。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:331
-msgid "Radius"
-msgstr "åŠå¾„"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:332
-msgid ""
-"Set this to the clearance radius around your extruder. If the extruder is "
-"not centered, choose the largest value for safety. This setting is used to "
-"check for collisions and to display the graphical preview in the plater."
-msgstr ""
-"设置为挤出头周围的空隙åŠå¾„。如果挤出头未置ä¸ï¼Œå®‰å…¨èµ·è§è¯·é€‰æ‹©æœ€å¤§å€¼ã€‚è¯¥å‚æ•°ç”¨"
-"于检查碰撞,并在界é¢ä¸æ˜¾ç¤ºå›¾å½¢é¢„览。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:342
-msgid "Extruder Color"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:343
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:406
-msgid "This is only used in the Slic3r interface as a visual help."
-msgstr "ä»…æä¾›Slic3r界é¢çš„视觉帮助。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:350
-msgid "Extruder offset"
-msgstr "挤出头åç½®"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:351
-msgid ""
-"If your firmware doesn't handle the extruder displacement you need the G-"
-"code to take it into account. This option lets you specify the displacement "
-"of each extruder with respect to the first one. It expects positive "
-"coordinates (they will be subtracted from the XY coordinate)."
-msgstr ""
-"å¦‚æžœä½ çš„å›ºä»¶ä¸èƒ½å¤„ç†æŒ¤å‡ºå¤´çš„ä½ç§»é‡ï¼Œéœ€è¦ä½¿ç”¨G代ç 将其考虑进去。该选项å¯è®©ä½ 细"
-"化æ¯ä¸ªæŒ¤å‡ºå¤´ç›¸å¯¹ç¬¬ä¸€ä¸ªæŒ¤å‡ºå¤´çš„ä½ç§»é‡ã€‚一般为æ£åæ ‡ï¼ˆå®ƒä»¬å°†ä»ŽXYåæ ‡ç›¸å‡å¾—"
-"到)。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:360
-msgid "Extrusion axis"
-msgstr "挤出轴"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:361
-msgid ""
-"Use this option to set the axis letter associated to your printer's extruder "
-"(usually E but some printers use A)."
-msgstr ""
-"ä½¿ç”¨è¯¥é¡¹è®¾ç½®ä½ çš„æ‰“å°æœºæŒ¤å‡ºå¤´çš„è½´æ‰€ç”¨å—æ¯ï¼ˆä¸€èˆ¬ä¸ºEï¼Œä½†æœ‰çš„æ‰“å°æœºä½¿ç”¨A)。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:367
-msgid "Extrusion multiplier"
-msgstr "æŒ¤å‡ºå€æ•°"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:368
-msgid ""
-"This factor changes the amount of flow proportionally. You may need to tweak "
-"this setting to get nice surface finish and correct single wall widths. "
-"Usual values are between 0.9 and 1.1. If you think you need to change this "
-"more, check filament diameter and your firmware E steps."
-msgstr ""
-"è¯¥é€‰é¡¹æŒ‰æ¯”ä¾‹æ”¹å˜æµé‡ã€‚ä½ å¯èƒ½éœ€è¦è°ƒæ•´è¯¥è®¾ç½®æ¥èŽ·å–æ›´å¥½çš„表é¢å°¾å¤„ç†ï¼Œæ›´æ£å•层墙"
-"的宽度。通常值范围在0.9到1.1ä¹‹é—´ã€‚å¦‚æžœä½ è§‰å¾—æœ‰å¿…è¦æ›´æ”¹å¹…åº¦æ›´å¤§ï¼Œæ£€æŸ¥ä¸æ–™ç›´å¾„"
-"å’Œä½ çš„å›ºä»¶Eæ¥éª¤ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:376
-msgid "Default extrusion width"
-msgstr "默认挤出宽度"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:378
-msgid ""
-"Set this to a non-zero value to allow a manual extrusion width. If left to "
-"zero, Slic3r derives extrusion widths from the nozzle diameter (see the "
-"tooltips for perimeter extrusion width, infill extrusion width etc). If "
-"expressed as percentage (for example: 230%), it will be computed over layer "
-"height."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:382
-msgid "mm or % (leave 0 for auto)"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:387
-msgid "Keep fan always on"
-msgstr "ä¿æŒé£Žæ‰‡æ€»æ˜¯æ‰“å¼€"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:388
-msgid ""
-"If this is enabled, fan will never be disabled and will be kept running at "
-"least at its minimum speed. Useful for PLA, harmful for ABS."
-msgstr ""
-"勾选æ¤é¡¹ï¼Œé£Žæ‰‡å°†ä¸ä¼šè¢«å…³é—,在整个打å°è¿‡ç¨‹ä¸å°†æŒç»ä»¥ä¸ä½ŽäºŽæœ€ä½Žé€Ÿå¼€å¯ã€‚对于PLA"
-"ææ–™æœ‰ç”¨ï¼Œå¯¹ABSææ–™ä¸é€‚用。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:394
-msgid "Enable fan if layer print time is below"
-msgstr "å¦‚æžœæ‰“å°æ—¶é—´ä½ŽäºŽè¯¥å€¼ï¼Œåˆ™æ°”动风扇"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:395
-msgid ""
-"If layer print time is estimated below this number of seconds, fan will be "
-"enabled and its speed will be calculated by interpolating the minimum and "
-"maximum speeds."
-msgstr ""
-"å¦‚æžœä¼°ç®—çš„æ‰“å°æ—¶é—´ä½ŽäºŽè¯¥æ•°å€¼ï¼ˆå•ä½ä¸ºç§’),风扇将å¯ç”¨ï¼Œè€Œä¸”é€Ÿåº¦å€¼æ ¹æ®æ’补最å°"
-"速度值和最大速度值æ¥è®¡ç®—。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:397
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1242
-msgid "approximate seconds"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:405
-msgid "Color"
-msgstr "颜色"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:412
-msgid "Filament notes"
-msgstr "䏿–™å¤‡æ³¨"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:413
-msgid "You can put your notes regarding the filament here."
-msgstr "å…³äºŽææ–™çš„å¤‡æ³¨å¯æ”¾è¿™é‡Œã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:421
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:817
-msgid "Max volumetric speed"
-msgstr "最大体积速度"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:422
-msgid ""
-"Maximum volumetric speed allowed for this filament. Limits the maximum "
-"volumetric speed of a print to the minimum of print and filament volumetric "
-"speed. Set to zero for no limit."
-msgstr ""
-"è¯¥ææ–™æ‰€å…许的最大体积速度。把最大体积速度é™å®šä¸ºæ‰“å°é€Ÿåº¦å’Œææ–™ä½“积速度的最å°"
-"值。设为0åˆ™æ— é™åˆ¶ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:425
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:820
-msgid "mm³/s"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:432
-msgid ""
-"Enter your filament diameter here. Good precision is required, so use a "
-"caliper and do multiple measurements along the filament, then compute the "
-"average."
-msgstr ""
-"åœ¨è¿™é‡Œè¾“å…¥ä½ çš„ææ–™ç›´å¾„。需è¦è¾ƒé«˜ç²¾åº¦ï¼Œæ‰€ä»¥è¯·ä½¿ç”¨å¡å°ºï¼Œæ²¿ç€ææ–™é•¿ä¸åšå¤šæ¬¡æµ‹"
-"é‡ï¼Œè®¡ç®—å¹³å‡å€¼ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:440
-msgid "Density"
-msgstr "密度"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:441
-msgid ""
-"Enter your filament density here. This is only for statistical information. "
-"A decent way is to weigh a known length of filament and compute the ratio of "
-"the length to volume. Better is to calculate the volume directly through "
-"displacement."
-msgstr ""
-"åœ¨è¿™é‡Œè¾“å…¥ä½ çš„ä¸æ–™å¯†åº¦ã€‚æ¤ä»…为统计信æ¯ã€‚一个ä¸é”™çš„æ–¹æ³•是测é‡ä¸€æ®µå·²çŸ¥é•¿åº¦ä¸æ–™"
-"çš„é‡é‡ï¼Œç„¶åŽè®¡ç®—体积。更好的方法å¼ç›´æŽ¥é€šè¿‡ä½ç§»è®¡ç®—体积。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:444
-msgid "g/cm³"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:450
-msgid "Filament type"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:451
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1002
-msgid ""
-"If you want to process the output G-code through custom scripts, just list "
-"their absolute paths here. Separate multiple scripts with a semicolon. "
-"Scripts will be passed the absolute path to the G-code file as the first "
-"argument, and they can access the Slic3r config settings by reading "
-"environment variables."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:470
-msgid "Soluble material"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:471
-msgid "Soluble material is most likely used for a soluble support."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:476
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:450
-msgid "Cost"
-msgstr "å•ä»·"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:477
-msgid ""
-"Enter your filament cost per kg here. This is only for statistical "
-"information."
-msgstr "åœ¨è¿™é‡Œè¾“å…¥ä¸æ–™æ¯å…¬æ–¤çš„ä»·æ ¼ã€‚ä»…ç”¨äºŽç»Ÿè®¡ä¿¡æ¯ã€‚"
-
-# Set this to be the local currency symbol.
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:478
-msgid "money/kg"
-msgstr "Â¥/kg"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:487
-msgid "Fill angle"
-msgstr "填充角度"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:489
-msgid ""
-"Default base angle for infill orientation. Cross-hatching will be applied to "
-"this. Bridges will be infilled using the best direction Slic3r can detect, "
-"so this setting does not affect them."
-msgstr ""
-"填充的默认基础方å‘角。交å‰å¼•线适用于æ¤ã€‚桥接处将使用Slic3ræ‰€ä¾¦æµ‹çš„æœ€å¥½æ–¹å‘æ¥"
-"填充,所以æ¤å‚æ•°ä¸å½±å“它们。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:501
-msgid "Fill density"
-msgstr "填充密度"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:503
-#, no-c-format
-msgid "Density of internal infill, expressed in the range 0% - 100%."
-msgstr "内部填充的密度,以0% - 100% 表示。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:539
-msgid "Fill pattern"
-msgstr "å¡«å……æ ·å¼"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:541
-msgid "Fill pattern for general low-density infill."
-msgstr "ä¸€èˆ¬ä½Žå¯†åº¦å¡«å……çš„å¡«å……æ ·å¼ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:573
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:582
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:591
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:625
-msgid "First layer"
-msgstr "首层"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:574
-msgid ""
-"This is the acceleration your printer will use for first layer. Set zero to "
-"disable acceleration control for first layer."
-msgstr "æ¤é¡¹ä¸ºæ‰“å°æœºå¯¹é¦–å±‚ä½¿ç”¨çš„åŠ é€Ÿåº¦ã€‚è®¾ä¸º0则对首层ç¦ç”¨åŠ é€ŸæŽ§åˆ¶ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:583
-msgid ""
-"Heated build plate temperature for the first layer. Set this to zero to "
-"disable bed temperature control commands in the output."
-msgstr "é¦–å±‚çš„åŠ çƒæ¿æ¸©åº¦ã€‚设为0,å¯åœ¨è¾“出ä¸ç¦ç”¨æœºåºŠæ¸©åº¦æŽ§åˆ¶æŒ‡ä»¤ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:593
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for first "
-"layer. You can use this to force fatter extrudates for better adhesion. If "
-"expressed as percentage (for example 120%) it will be computed over first "
-"layer height. If set to zero, it will use the default extrusion width."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:603
-msgid "First layer height"
-msgstr "首层高度"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:605
-msgid ""
-"When printing with very low layer heights, you might still want to print a "
-"thicker bottom layer to improve adhesion and tolerance for non perfect build "
-"plates. This can be expressed as an absolute value or as a percentage (for "
-"example: 150%) over the default layer height."
-msgstr ""
-"当以éžå¸¸ä½Žçš„å±‚é«˜æ‰“å°æ—¶ï¼Œå¯¹äºŽä¸å¤ªç†æƒ³çš„çƒåºŠæ¥è¯´å¯èƒ½éœ€è¦æ‰“å°è¾ƒåŽšçš„åº•å±‚æ¥æé«˜ç²˜"
-"附效果。该值å¯è¢«è¡¨ç¤ºä¸ºä¸€ä¸ªç»å¯¹å€¼ï¼Œæˆ–者一个相对于默认层高的百分数(如150%)。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:609
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:740
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1390
-msgid "mm or %"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:615
-msgid "First layer speed"
-msgstr "首层速度"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:616
-msgid ""
-"If expressed as absolute value in mm/s, this speed will be applied to all "
-"the print moves of the first layer, regardless of their type. If expressed "
-"as a percentage (for example: 40%) it will scale the default speeds."
-msgstr ""
-"如果表示为mm/s的数值,该值将被用于首层的打å°åŠ¨ä½œï¼Œæ— å…³åŠ¨ä½œçš„ç±»åž‹ã€‚å¦‚æžœè¡¨ç¤ºä¸º"
-"百分数(如40%),则以默认速度值为基准。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:626
-msgid ""
-"Extruder temperature for first layer. If you want to control temperature "
-"manually during print, set this to zero to disable temperature control "
-"commands in the output file."
-msgstr ""
-"首层挤出头温度。如果è¦åœ¨æ‰“å°è¿‡ç¨‹ä¸æ‰‹åŠ¨æŽ§åˆ¶æ¸©åº¦ï¼Œå°†è¯¥é¡¹è®¾ä¸º0æ¥ç¦æ¢è¾“出文件ä¸çš„"
-"控制命令。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:634
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:145
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:87
-msgid "Gap fill"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:636
-msgid ""
-"Speed for filling small gaps using short zigzag moves. Keep this reasonably "
-"low to avoid too much shaking and resonance issues. Set zero to disable gaps "
-"filling."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:644
-msgid "Verbose G-code"
-msgstr "详细的G代ç "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:645
-msgid ""
-"Enable this to get a commented G-code file, with each line explained by a "
-"descriptive text. If you print from SD card, the additional weight of the "
-"file could make your firmware slow down."
-msgstr ""
-"å¯åŠ¨è¯¥é¡¹å¯èŽ·å¾—å¸¦æ³¨é‡Šçš„Gä»£ç æ–‡ä»¶ï¼Œæ¯ä¸€è¡Œéƒ½æœ‰å¯¹åº”的解释性文å—。如果从SD塿‰“å°ï¼Œ"
-"文件冗余部分å¯èƒ½å‡ç¼“ä½ çš„å›ºä»¶è¿è¡Œé€Ÿåº¦ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:652
-msgid "G-code flavor"
-msgstr "G代ç é£Žæ ¼"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:653
-msgid ""
-"Some G/M-code commands, including temperature control and others, are not "
-"universal. Set this option to your printer's firmware to get a compatible "
-"output. The \"No extrusion\" flavor prevents Slic3r from exporting any "
-"extrusion value at all."
-msgstr ""
-"一些 G/M 代ç 的指令,包括温度控制和其他,但ä¸é€šç”¨ã€‚å°†æ¤é¡¹è®¾ä¸ºæ‰“å°æœºçš„固件æ¥èŽ·"
-"å–å…¼å®¹æ€§çš„è¾“å‡ºã€‚â€œæ— æŒ¤å‡ºâ€é€‰é¡¹ä½¿å¾—Slic3rä¸è¾“出任何挤出值。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:682
-msgid ""
-"This is the acceleration your printer will use for infill. Set zero to "
-"disable acceleration control for infill."
-msgstr "æ‰“å°æœºå¡«å……åŠ é€Ÿåº¦ã€‚è®¾ä¸º0å¯ç¦ç”¨å¡«å……åŠ é€ŸæŽ§åˆ¶ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:690
-msgid "Combine infill every"
-msgstr "æ¯å‡ 层è”åˆå¡«å……"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:692
-msgid ""
-"This feature allows to combine infill and speed up your print by extruding "
-"thicker infill layers while preserving thin perimeters, thus accuracy."
-msgstr ""
-"该功能å¯é€šè¿‡æŒ¤å‡ºæ›´åŽšçš„å¡«å……å±‚æ¥å®žçްè”åˆå¡«å……ï¼Œå¹¶åŠ é€Ÿæ‰“å°ï¼ŒåŒæ—¶ä¿ç•™äº†è–„å£ï¼Œä¹Ÿå°±"
-"ä¿è¯äº†ç²¾åº¦ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:696
-msgid "Combine infill every n layers"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:701
-msgid "Infill extruder"
-msgstr "填充挤出头"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:703
-msgid "The extruder to use when printing infill."
-msgstr "打å°å¡«å……时使用的挤出头。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:711
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill. If "
-"left zero, default extrusion width will be used if set, otherwise 1.125 x "
-"nozzle diameter will be used. You may want to use fatter extrudates to speed "
-"up the infill and make your parts stronger. If expressed as percentage (for "
-"example 90%) it will be computed over layer height."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:720
-msgid "Infill before perimeters"
-msgstr "å…ˆå¡«å……åŽæ‰“å°è½®å»“"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:721
-msgid ""
-"This option will switch the print order of perimeters and infill, making the "
-"latter first."
-msgstr "该选项将打å°è½®å»“和填充的方å¼å¯¹è°ƒï¼Œä½¿åŽè€…æå‰ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:726
-msgid "Only infill where needed"
-msgstr "ä»…åœ¨éœ€è¦æ—¶å¡«å……"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:728
-msgid ""
-"This option will limit infill to the areas actually needed for supporting "
-"ceilings (it will act as internal support material). If enabled, slows down "
-"the G-code generation due to the multiple checks involved."
-msgstr ""
-"该选项将把填充é™å®šç”¨äºŽæ”¯æ’‘天花æ¿ï¼ˆå°†å……å½“å†…éƒ¨æ”¯æ’‘ææ–™çš„作用)。如果å¯ç”¨ï¼Œç”±äºŽ"
-"多个包å«çš„选项将使G代ç 生æˆé€Ÿåº¦å˜æ…¢ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:735
-msgid "Infill/perimeters overlap"
-msgstr "å¡«å……/轮廓é‡å "
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:737
-msgid ""
-"This setting applies an additional overlap between infill and perimeters for "
-"better bonding. Theoretically this shouldn't be needed, but backlash might "
-"cause gaps. If expressed as percentage (example: 15%) it is calculated over "
-"perimeter extrusion width."
-msgstr ""
-"使得填充和轮廓间有é¢å¤–çš„é‡å 部分,便于结åˆã€‚ç†è®ºä¸Šå¹¶ä¸éœ€è¦ï¼Œä½†åç§»å¯èƒ½ä¼šå¯¼è‡´"
-"间隙。如果表示为百分数(如15%),则以轮廓挤出宽度为基准。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:748
-msgid "Speed for printing the internal fill. Set to zero for auto."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:757
-msgid "Interface shells"
-msgstr "表é¢å¤–壳"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:758
-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 ""
-"åœ¨ç›¸é‚»çš„ææ–™/包围体之间强制生æˆå¯é 外壳层。适用于使用åŠé€æ˜Žææ–™æˆ–æ‰‹å·¥å¯æº¶æ€§æ”¯"
-"æ’‘ææ–™çš„多挤出头打å°ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:767
-msgid ""
-"This custom code is inserted at every layer change, right after the Z move "
-"and before the extruder moves to the first layer point. Note that you can "
-"use placeholder variables for all Slic3r settings as well as [layer_num] and "
-"[layer_z]."
-msgstr ""
-"这段G代ç 在æ¯ä¸€å±‚å˜åŒ–åŽï¼Œå³Z轴移动åŽï¼ŒæŒ¤å‡ºå¤´ç§»åŠ¨åˆ°ç¬¬ä¸€å±‚çš„ç‚¹ä¹‹å‰æ’入。注æ„除"
-"了使用如[layer_num]å’Œ[layer_z],也å¯ä»¥ä½¿ç”¨å ä½ç¬¦å˜é‡æ¥ä»£æ›¿Slic3rçš„å‚æ•°ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:779
-msgid ""
-"This setting controls the height (and thus the total number) of the slices/"
-"layers. Thinner layers give better accuracy but take more time to print."
-msgstr ""
-"è¯¥å‚æ•°æŽ§åˆ¶åˆ‡ç‰‡çš„é«˜åº¦ï¼ˆå› æ¤ä¹ŸæŽ§åˆ¶æ€»å±‚数)。较薄的切片å¯ä»¥ä½¿ç²¾åº¦æ›´é«˜ï¼Œä½†èŠ±è´¹çš„"
-"æ‰“å°æ—¶é—´ä¹Ÿæ›´é•¿ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:787
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:796
-msgid "Max"
-msgstr "最大值"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:788
-msgid "This setting represents the maximum speed of your fan."
-msgstr "该值表示风扇的最大速度。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:797
-#, no-c-format
-msgid ""
-"This is the highest printable layer height for this extruder, used to cap "
-"the variable layer height and support layer height. Maximum recommended "
-"layer height is 75% of the extrusion width to achieve reasonable inter-layer "
-"adhesion. If set to 0, layer height is limited to 75% of the nozzle diameter."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:807
-msgid "Max print speed"
-msgstr "最大打å°é€Ÿåº¦"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:808
-msgid ""
-"When setting other speed settings to 0 Slic3r will autocalculate the optimal "
-"speed in order to keep constant extruder pressure. This experimental setting "
-"is used to set the highest print speed you want to allow."
-msgstr ""
-"å½“å°†å…¶ä»–é€Ÿåº¦å‚æ•°è®¾ä¸º0时,Slic3r会自动计算最优速度以ä¿è¯æŒ¤å‡ºå¤´åŽ‹åŠ›ç¨³å®šã€‚è¯¥è¯•éªŒ"
-"傿•°ç”¨äºŽè®¾ç½®æ‰€å…许的最大打å°é€Ÿåº¦ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:818
-msgid ""
-"This experimental setting is used to set the maximum volumetric speed your "
-"extruder supports."
-msgstr "è¯¥å®žéªŒå‚æ•°ç”¨äºŽè®¾ç½®ä½ 的挤出头所支æŒçš„æœ€å¤§ä½“积速度。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:826
-msgid "Max volumetric slope positive"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:827
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:838
-msgid ""
-"This experimental setting is used to limit the speed of change in extrusion "
-"rate. A value of 1.8 mm³/s² ensures, that a change from the extrusion rate "
-"of 1.8 mm³/s (0.45mm extrusion width, 0.2mm extrusion height, feedrate 20 mm/"
-"s) to 5.4 mm³/s (feedrate 60 mm/s) will take at least 2 seconds."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:831
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:842
-msgid "mm³/s²"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:837
-msgid "Max volumetric slope negative"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:848
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:857
-msgid "Min"
-msgstr "最å°å€¼"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:849
-msgid "This setting represents the minimum PWM your fan needs to work."
-msgstr "è¯¥å‚æ•°è¡¨ç¤ºä½ 的风扇工作的最å°PWM。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:858
-msgid ""
-"This is the lowest printable layer height for this extruder and limits the "
-"resolution for variable layer height. Typical values are between 0.05 mm and "
-"0.1 mm."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:866
-msgid "Min print speed"
-msgstr "æœ€å°æ‰“å°é€Ÿåº¦"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:867
-msgid "Slic3r will not scale speed down below this speed."
-msgstr "Slic3rçš„æœ€å°æ‰“å°é€Ÿåº¦ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:874
-msgid "Minimum extrusion length"
-msgstr "最大挤出长度"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:875
-msgid ""
-"Generate no less than the number of skirt loops required to consume the "
-"specified amount of filament on the bottom layer. For multi-extruder "
-"machines, this minimum applies to each extruder."
-msgstr ""
-"åœ¨åº•å±‚ä¸Šæ¶ˆè€—æŒ‡å®šææ–™é‡ç”ŸæˆçŽ¯è¾¹ã€‚å¯¹äºŽå¤šæŒ¤å‡ºå¤´çš„æœºå™¨ï¼Œè¯¥æœ€å°å€¼é€‚用于æ¯ä¸ªæŒ¤å‡º"
-"头。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:884
-msgid "Configuration notes"
-msgstr "é…置备注"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:885
-msgid ""
-"You can put here your personal notes. This text will be added to the G-code "
-"header comments."
-msgstr ""
-"ä½ å¯ä»¥åœ¨è¿™é‡Œè¾“å…¥ä½ çš„ä¸ªäººå¤‡æ³¨ã€‚è¯¥æ®µæ–‡å—å†…å®¹å°†è¢«æ·»åŠ åˆ°Gä»£ç æ–‡ä»¶å¼€å¤´çš„æ³¨é‡Šé‡Œã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:894
-msgid "Nozzle diameter"
-msgstr "喷嘴直径"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:895
-msgid ""
-"This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)"
-msgstr "è¿™æ˜¯ä½ çš„æŒ¤å‡ºå¤´å–·å˜´çš„ç›´å¾„(:0.5,0.35ç‰ã€‚)"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:901
-msgid "API Key"
-msgstr "API密钥"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:902
-msgid ""
-"Slic3r can upload G-code files to OctoPrint. This field should contain the "
-"API Key required for authentication."
-msgstr ""
-"Slic3rå¯ä»¥æŠŠGä»£ç æ–‡ä»¶ä¸Šä¼ 至Octoprint。æ¤å—段应包å«API密钥,用于身份验è¯ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:908
-msgid "Host or IP"
-msgstr "ä¸»æœºåæˆ–IP"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:909
-msgid ""
-"Slic3r can upload G-code files to OctoPrint. This field should contain the "
-"hostname or IP address of the OctoPrint instance."
-msgstr ""
-"Slic3rå¯ä»¥æŠŠGä»£ç æ–‡ä»¶ä¸Šä¼ 至Octoprint。æ¤å—段应包å«OctoPrint实例的主机å称或IP"
-"地å€ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:915
-msgid "Only retract when crossing perimeters"
-msgstr "仅在越过轮廓时回缩"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:916
-msgid ""
-"Disables retraction when the travel path does not exceed the upper layer's "
-"perimeters (and thus any ooze will be probably invisible)."
-msgstr "当空程ä¸è¶…过上层轮廓时ç¦ç”¨å›žæ’¤ï¼ˆè¿™æ ·æ»´åž‚现象å¯èƒ½ä¼šçœ‹ä¸è§ï¼‰ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:923
-msgid ""
-"This option will drop the temperature of the inactive extruders to prevent "
-"oozing. It will enable a tall skirt automatically and move extruders outside "
-"such skirt when changing temperatures."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:930
-msgid "Output filename format"
-msgstr "输出文件åç§°æ ¼å¼"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:931
-msgid ""
-"You can use all configuration options as variables inside this template. For "
-"example: [layer_height], [fill_density] etc. You can also use [timestamp], "
-"[year], [month], [day], [hour], [minute], [second], [version], "
-"[input_filename], [input_filename_base]."
-msgstr ""
-"å¯ä»¥ä½¿ç”¨æ‰€æœ‰çš„é…置选项。如: [layer_height], [fill_density] ç‰ã€‚ä½ ä¹Ÿå¯ä»¥ä½¿ç”¨ "
-"[timestamp], [year], [month], [day], [hour], [minute], [second], [version], "
-"[input_filename], [input_filename_base]。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:940
-msgid "Detect bridging perimeters"
-msgstr "侦测桥接轮廓"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:942
-msgid ""
-"Experimental option to adjust flow for overhangs (bridge flow will be used), "
-"to apply bridge speed to them and enable fan."
-msgstr ""
-"试验选项,用于调整悬空部ä½çš„æµé‡ï¼ˆä½¿ç”¨æ¡¥æŽ¥æµé‡ï¼‰ï¼Œå°†æ¡¥æŽ¥é€Ÿåº¦ç”¨äºŽå®ƒä»¬å¹¶å¯ç”¨é£Ž"
-"扇。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:948
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:966
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:978
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:988
-msgid "Perimeters"
-msgstr "轮廓"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:949
-msgid ""
-"This is the acceleration your printer will use for perimeters. A high value "
-"like 9000 usually gives good results if your hardware is up to the job. Set "
-"zero to disable acceleration control for perimeters."
-msgstr ""
-"æ‰“å°æœºå°†ç”¨äºŽæ‰“å°è½®å»“çš„åŠ é€Ÿåº¦ã€‚å¦‚æžœä½ çš„ç¡¬ä»¶æ€§èƒ½è¶³å¤Ÿï¼Œä¸€ä¸ª9000è¿™æ ·çš„é«˜æ•°å€¼é€šå¸¸"
-"ä¼šç»™å‡ºå¾ˆå¥½çš„æ‰“å°æ•ˆæžœã€‚设为0å°†ç¦ç”¨è½®å»“åŠ é€Ÿåº¦æŽ§åˆ¶ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:957
-msgid "Perimeter extruder"
-msgstr "轮廓挤出头"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:959
-msgid ""
-"The extruder to use when printing perimeters and brim. First extruder is 1."
-msgstr "打å°è½®å»“和裙边所使用的挤出头。第一个挤出头是1。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:968
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for perimeters. "
-"You may want to use thinner extrudates to get more accurate surfaces. If "
-"left zero, default extrusion width will be used if set, otherwise 1.125 x "
-"nozzle diameter will be used. If expressed as percentage (for example 200%) "
-"it will be computed over layer height."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:980
-msgid ""
-"Speed for perimeters (contours, aka vertical shells). Set to zero for auto."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:990
-msgid ""
-"This option sets the number of perimeters to generate for each layer. Note "
-"that Slic3r may increase this number automatically when it detects sloping "
-"surfaces which benefit from a higher number of perimeters if the Extra "
-"Perimeters option is enabled."
-msgstr ""
-"该选项设置æ¯ä¸€å±‚生æˆçš„轮廓个数。注æ„,如果â€é¢å¤–轮廓“选项被å¯åŠ¨ï¼ŒSlic3r在侦测"
-"到斜å¡è¡¨é¢æ—¶å¯èƒ½ä¼šè‡ªåŠ¨å¢žåŠ è¯¥æ•°å€¼ï¼Œå› ä¸ºè¾ƒå¤šçš„è½®å»“æœ‰åˆ©äºŽæ–œå¡è¡¨é¢çš„æ‰“å°ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:994
-msgid "(minimum)"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1014
-msgid "Printer notes"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1015
-msgid "You can put your notes regarding the printer here."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1029
-msgid "Raft layers"
-msgstr "çæ¿å±‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1031
-msgid ""
-"The object will be raised by this number of layers, and support material "
-"will be generated under it."
-msgstr "ç‰©ä½“å°†è¢«è¯¥æ•°ç›®çš„å±‚æ•°æŠ¬èµ·ï¼Œè€Œæ”¯æ’‘ææ–™å°†åœ¨å…¶ä¸‹æ–¹ç”Ÿæˆã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1039
-msgid "Resolution"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1040
-msgid ""
-"Minimum detail resolution, used to simplify the input file for speeding up "
-"the slicing job and reducing memory usage. High-resolution models often "
-"carry more detail than printers can render. Set to zero to disable any "
-"simplification and use full resolution from input."
-msgstr ""
-"最å°ç»†èŠ‚åˆ†è¾¨çŽ‡ï¼Œç”¨æ¥ç®€åŒ–è¾“å…¥æ–‡ä»¶ï¼ŒåŠ é€Ÿåˆ‡ç‰‡ï¼Œå‡å°‘内å˜å ç”¨ã€‚æ‰“å°æœºé€šå¸¸å¾ˆé𾿏²æŸ“"
-"出高精度模型的细节。设为0则ç¦ç”¨ä»»ä½•简化,完全ä¾ç…§è¾“入文件的精度。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1050
-msgid "Minimum travel after retraction"
-msgstr "å›žç¼©åŽæœ€å°ç©ºç¨‹"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1051
-msgid ""
-"Retraction is not triggered when travel moves are shorter than this length."
-msgstr "当空程çŸäºŽæ¤é•¿åº¦æ—¶ä¸ä¼šè§¦å‘回缩。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1057
-msgid "Retract amount before wipe"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1058
-msgid ""
-"With bowden extruders, it may be wise to do some amount of quick retract "
-"before doing the wipe movement."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1065
-msgid "Retract on layer change"
-msgstr "层å˜åŒ–时回缩"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1066
-msgid "This flag enforces a retraction whenever a Z move is done."
-msgstr "该项强制在Zè½´ç§»åŠ¨å®Œæˆæ—¶å›žç¼©ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1071
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1080
-msgid "Length"
-msgstr "长度"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1072
-msgid "Retraction Length"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1073
-msgid ""
-"When retraction is triggered, filament is pulled back by the specified "
-"amount (the length is measured on raw filament, before it enters the "
-"extruder)."
-msgstr ""
-"当触å‘å›žç¼©æ—¶ï¼Œä¸æ–™ä»¥æŒ‡å®šå€¼å¾€å›žæ”¶ç¼©ï¼ˆé•¿åº¦ä»¥åœ¨è¿›å…¥æŒ¤å‡ºå¤´ä¹‹å‰çš„åŽŸå§‹ææ–™ä¸ºåŸºç¡€è¿›"
-"行计算)。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1075
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1085
-msgid "mm (zero to disable)"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1081
-msgid "Retraction Length (Toolchange)"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1082
-msgid ""
-"When retraction is triggered before changing tool, filament is pulled back "
-"by the specified amount (the length is measured on raw filament, before it "
-"enters the extruder)."
-msgstr ""
-"当在改å˜å·¥å…·å‰è§¦å‘å›žç¼©æ—¶ï¼Œä¸æ–™ä»¥æŒ‡å®šå€¼å›žç¼©ï¼ˆé•¿åº¦ä»¥è¿›å…¥æŒ¤å‡ºå¤´å‰çš„åŽŸå§‹ææ–™ä¸ºåŸº"
-"础测é‡ï¼‰ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1090
-msgid "Lift Z"
-msgstr "抬高Z"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1091
-msgid ""
-"If you set this to a positive value, Z is quickly raised every time a "
-"retraction is triggered. When using multiple extruders, only the setting for "
-"the first extruder will be considered."
-msgstr ""
-"如果设为æ£å€¼ï¼Œæ¯å½“å›žç¼©è§¦å‘æ—¶Z轴会快速抬å‡ã€‚当使用多个挤出头时,仅会考虑第一个"
-"æŒ¤å‡ºå¤´çš„è¯¥å‚æ•°ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1099
-msgid "Above Z"
-msgstr "在Z上方"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1100
-msgid "Only lift Z above"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1101
-msgid ""
-"If you set this to a positive value, Z lift will only take place above the "
-"specified absolute Z. You can tune this setting for skipping lift on the "
-"first layers."
-msgstr ""
-"如果设为æ£å€¼ï¼Œä»…在指定的ç»å¯¹Z值上方æ‰ä¼šæŠ¬é«˜Z。å¯ä»¥è°ƒæ•´è¯¥å‚数,用于跳过在å‰å‡ "
-"层时跳过Z抬高的æ¥éª¤ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1108
-msgid "Below Z"
-msgstr "Z下方"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1109
-msgid "Only lift Z below"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1110
-msgid ""
-"If you set this to a positive value, Z lift will only take place below the "
-"specified absolute Z. You can tune this setting for limiting lift to the "
-"first layers."
-msgstr ""
-"如果设为æ£å€¼ï¼Œä»…在指定的ç»å¯¹Z值选房å¯ä»¥è°ƒæ•´è¯¥å‚数,用于将抬高Z的动作é™åˆ¶åœ¨å‰"
-"å‡ å±‚æ—¶ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1118
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1126
-msgid "Extra length on restart"
-msgstr "é‡å¯æ—¶é¢å¤–长度"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1119
-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 ""
-"当在空程åŽå›žç¼©è¢«è¡¥å¿æ—¶ï¼ŒæŒ¤å‡ºå¤´ä¼šåŸºç¡€é¢å¤–的指定é‡ä¸æ–™ã€‚è¯¥å‚æ•°ä¸€èˆ¬ä¸éœ€è®¾ç½®ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1127
-msgid ""
-"When the retraction is compensated after changing tool, the extruder will "
-"push this additional amount of filament."
-msgstr "当在切æ¢å·¥å…·åŽå›žç¼©è¢«è¡¥å¿æ—¶ï¼ŒæŒ¤å‡ºå¤´ä¼šåŸºç¡€é¢å¤–的指定é‡ä¸æ–™ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1134
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1135
-msgid "Retraction Speed"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1136
-msgid "The speed for retractions (it only applies to the extruder motor)."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1142
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1143
-msgid "Deretraction Speed"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1144
-msgid ""
-"The speed for loading of a filament into extruder after retraction (it only "
-"applies to the extruder motor). If left to zero, the retraction speed is "
-"used."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1151
-msgid "Seam position"
-msgstr "接åˆä½ç½®"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1153
-msgid "Position of perimeters starting points."
-msgstr "轮廓开始点的ä½ç½®ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1169
-msgid "Direction"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1171
-msgid "Preferred direction of the seam"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1172
-msgid "Seam preferred direction"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1180
-msgid "Jitter"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1182
-msgid "Seam preferred direction jitter"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1183
-msgid "Preferred direction of the seam - jitter"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1194
-msgid "USB/serial port for printer connection."
-msgstr "ç”¨äºŽæ‰“å°æœºè¿žæŽ¥çš„USB/串å£ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1202
-msgid "Serial port speed"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1203
-msgid "Speed (baud) of USB/serial port for printer connection."
-msgstr "ç”¨äºŽæ‰“å°æœºè¿žæŽ¥çš„USB/串å£é€Ÿåº¦ï¼ˆæ³¢ç‰¹çŽ‡ï¼‰ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1212
-msgid "Distance from object"
-msgstr "离物体的è·ç¦»"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1213
-msgid ""
-"Distance between skirt and object(s). Set this to zero to attach the skirt "
-"to the object(s) and get a brim for better adhesion."
-msgstr "环边与物体间的è·ç¦»ã€‚设为0,则使环边紧贴物体,å¯èŽ·å¾—è£™è¾¹åˆ©äºŽç²˜é™„ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1221
-msgid "Skirt height"
-msgstr "环边高度"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1222
-msgid ""
-"Height of skirt expressed in layers. Set this to a tall value to use skirt "
-"as a shield against drafts."
-msgstr "图层ä¸è¡¨ç¤ºçš„环边高度。设为一个较高值,å¯å°†çŽ¯è¾¹ç”¨ä½œã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1229
-msgid "Loops (minimum)"
-msgstr "圈数(最å°)"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1230
-msgid "Skirt Loops"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1231
-msgid ""
-"Number of loops for the skirt. If the Minimum Extrusion Length option is "
-"set, the number of loops might be greater than the one configured here. Set "
-"this to zero to disable skirt completely."
-msgstr ""
-"çŽ¯è¾¹çš„åœˆæ•°ã€‚å¦‚æžœè®¾ç½®äº†æœ€å°æŒ¤å‡ºé•¿åº¦ï¼Œé‚£ä¹ˆåœˆæ•°å¿…须比这里设置的值è¦å¤§ã€‚设为0则完"
-"å…¨ç¦ç”¨çŽ¯è¾¹ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1239
-msgid "Slow down if layer print time is below"
-msgstr "å¦‚æžœå›¾å±‚æ‰“å°æ—¶é—´ä½ŽäºŽè¯¥å€¼åˆ™å‡é€Ÿ"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1240
-msgid ""
-"If layer print time is estimated below this number of seconds, print moves "
-"speed will be scaled down to extend duration to this value."
-msgstr ""
-"å¦‚æžœé¢„è®¡æ‰“å°æ—¶é—´ä½ŽäºŽè¯¥å€¼ï¼ˆå•ä½ä¸ºç§’),则打å°é€Ÿåº¦å°†é™ä½Žä»¥ä½¿æ‰“å°æ—¶é—´å»¶é•¿åˆ°è¯¥"
-"值。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1250
-msgid "Small perimeters"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1252
-msgid ""
-"This separate setting will affect the speed of perimeters having radius <= "
-"6.5mm (usually holes). If expressed as percentage (for example: 80%) it will "
-"be calculated on the perimeters speed setting above. Set to zero for auto."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1262
-msgid "Solid infill threshold area"
-msgstr "å¯é 填充阈值区域"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1264
-msgid ""
-"Force solid infill for regions having a smaller area than the specified "
-"threshold."
-msgstr "对于比指定阈值å°çš„区域强制进行å¯é 填充。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1265
-msgid "mm²"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1271
-msgid "Solid infill extruder"
-msgstr "å¯é 填充挤出头"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1273
-msgid "The extruder to use when printing solid infill."
-msgstr "当打å°å¯é 填充时使用的挤出头。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1279
-msgid "Solid infill every"
-msgstr "æ¯å‡ 层å¯é å¡«å……"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1281
-msgid ""
-"This feature allows to force a solid layer every given number of layers. "
-"Zero to disable. You can set this to any value (for example 9999); Slic3r "
-"will automatically choose the maximum possible number of layers to combine "
-"according to nozzle diameter and layer height."
-msgstr ""
-"è¯¥åŠŸèƒ½ä½¿å¾—æ¯æŒ‡å®šæ•°ç›®å±‚强制进行一次å¯é 填充。设为0ç¦ç”¨è¯¥åŠŸèƒ½ã€‚å¯ä»¥è®¾ä¸ºä»»æ„值"
-"(如9999);Slic3rä¼šæ ¹æ®å–·å˜´ç›´å¾„和层高æ¥è‡ªåŠ¨é€‰æ‹©å›¾å±‚çš„æœ€å¤§å¯èƒ½ä¸ªæ•°ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1291
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1301
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:142
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:84
-msgid "Solid infill"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1293
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill for "
-"solid surfaces. If left zero, default extrusion width will be used if set, "
-"otherwise 1.125 x nozzle diameter will be used. If expressed as percentage "
-"(for example 90%) it will be computed over layer height."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1303
-msgid ""
-"Speed for printing solid regions (top/bottom/internal horizontal shells). "
-"This can be expressed as a percentage (for example: 80%) over the default "
-"infill speed above. Set to zero for auto."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1315
-msgid "Number of solid layers to generate on top and bottom surfaces."
-msgstr "在顶部和底部表é¢ç”Ÿæˆçš„å¯é 层数。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1322
-msgid "Spiral vase"
-msgstr "螺旋å¼å®¹å™¨"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1323
-msgid ""
-"This feature will raise Z gradually while printing a single-walled object in "
-"order to remove any visible seam. This option requires a single perimeter, "
-"no infill, no top solid layers and no support material. You can still set "
-"any number of bottom solid layers as well as skirt/brim loops. It won't work "
-"when printing more than an object."
-msgstr ""
-"该功能使得在打å°å•å£ç‰©ä½“æ—¶ä¼šé€æ¸æŠ¬å‡Z,以便移除å¯è§çš„ç¼åˆç‚¹ã€‚è¯¥é€‰é¡¹è¦æ±‚å•è½®"
-"å»“ï¼Œæ— å¡«å……ï¼Œæ— é¡¶éƒ¨å¯é å±‚ï¼Œæ— æ”¯æ’‘ã€‚ä»å¯ä»¥è®¾ç½®çŽ¯è¾¹ã€è£™è¾¹åœˆæ•°ï¼Œå’Œåº•部å¯é 层。但"
-"在打å°å¤šä¸ªç‰©ä½“æ—¶ä¸é€‚用。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1332
-msgid "Temperature variation"
-msgstr "温度å˜åŒ–"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1333
-msgid ""
-"Temperature difference to be applied when an extruder is not active. Enables "
-"a full-height \"sacrificial\" skirt on which the nozzles are periodically "
-"wiped."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1343
-msgid ""
-"This start procedure is inserted at the beginning, after bed has reached the "
-"target temperature and extruder just started heating, and before extruder "
-"has finished heating. If Slic3r detects M104 or M190 in your custom codes, "
-"such commands will not be prepended automatically so you're free to "
-"customize the order of heating commands and other custom actions. Note that "
-"you can use placeholder variables for all Slic3r settings, so you can put a "
-"\"M109 S[first_layer_temperature]\" command wherever you want."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1358
-msgid ""
-"This start procedure is inserted at the beginning, after any printer start "
-"gcode. This is used to override settings for a specific filament. If Slic3r "
-"detects M104, M109, M140 or M190 in your custom codes, such commands will "
-"not be prepended automatically so you're free to customize the order of "
-"heating commands and other custom actions. Note that you can use placeholder "
-"variables for all Slic3r settings, so you can put a \"M109 "
-"S[first_layer_temperature]\" command wherever you want. If you have multiple "
-"extruders, the gcode is processed in extruder order."
-msgstr ""
-"è¯¥æ®µä»£ç æ”¾åœ¨G代ç å¼€å¤´ï¼Œåœ¨æ‰€æœ‰æ‰“å°æœºèµ·å§‹G代ç åŽæ’å…¥ã€‚ç”¨äºŽè¦†ç›–æŒ‡å®šææ–™çš„傿•°ã€‚"
-"è¯¥æ®µä»£ç æ”¾åœ¨G代ç 开头,在çƒåºŠè¾¾åˆ°ç›®æ ‡æ¸©åº¦ã€æŒ¤å‡ºå¤´å¼€å§‹åŠ çƒåŽï¼ŒæŒ¤å‡ºå¤´å®ŒæˆåŠ çƒå‰"
-"æ’入。如果其ä¸ä¸åŒ…嫿œ‰M104, M109, M140 或 M190,这段指令就会在Slic3r自动放置"
-"çš„M指令之åŽï¼›å¦åˆ™Slic3rå°†ä¸ä¼šè‡ªåŠ¨ç”ŸæˆMæŒ‡ä»¤ï¼Œè¿™æ ·ä½ å¯ä»¥è‡ªç”±å®šä¹‰åŠ çƒå‘½ä»¤å’Œå…¶ä»–"
-"自定义动作的顺åºã€‚注æ„å¯ä»¥ä½¿ç”¨å ä½ç¬¦å˜é‡æ›¿ä»£æ‰€æœ‰Slic3r傿•°ï¼Œæ‰€ä»¥ä½ å¯ä»¥æŠŠä¸€"
-"个“M109 S[ first_layer_temperature ]â€å‘½ä»¤æ”¾åœ¨ä»»æ„å¤„ã€‚å¦‚æžœä½ æœ‰å¤šä¸ªæŒ¤å‡ºå¤´ï¼ŒG代"
-"ç 将按挤出头顺åºå¤„ç†ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1373
-msgid "Single Extruder Multi Material"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1374
-msgid "The printer multiplexes filaments into a single hot end."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1379
-msgid "Generate support material"
-msgstr "ç”Ÿæˆæ”¯æ’‘ææ–™"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1381
-msgid "Enable support material generation."
-msgstr "å¯ç”¨æ”¯æ’‘ææ–™ç”ŸæˆåŠŸèƒ½ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1386
-msgid "XY separation between an object and its support"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1388
-msgid ""
-"XY separation between an object and its support. If expressed as percentage "
-"(for example 50%), it will be calculated over external perimeter width."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1398
-msgid "Pattern angle"
-msgstr "æ ·å¼è§’度"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1400
-msgid ""
-"Use this setting to rotate the support material pattern on the horizontal "
-"plane."
-msgstr "ä½¿ç”¨è¯¥å‚æ•°å¯¹æ”¯æ’‘ææ–™çš„æ ·å在水平é¢ä¸Šè¿›è¡Œæ—‹è½¬ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1408
-msgid "Support on build plate only"
-msgstr "仅在çƒåºŠä¸Šç”Ÿæˆæ”¯æ’‘"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1410
-msgid ""
-"Only create support if it lies on a build plate. Don't create support on a "
-"print."
-msgstr "仅在çƒåºŠä¸Šç”Ÿæˆæ”¯æ’‘,ä¸åœ¨æ‰“å°å‡ºæ¥çš„物体上生æˆã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1416
-msgid "Contact Z distance"
-msgstr "接触Z值"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1418
-msgid ""
-"The vertical distance between object and support material interface. Setting "
-"this to 0 will also prevent Slic3r from using bridge flow and speed for the "
-"first object layer."
-msgstr ""
-"ç‰©ä½“å’Œæ”¯æ’‘ææ–™å¹³é¢ä¹‹é—´çš„垂直è·ç¦»ã€‚设为0,则表é¢ä¸Šç¬¬ä¸€å±‚ä¸ä¼šè¢«å½“åšæ¡¥æ¥å¤„ç†ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1431
-msgid "Enforce support for the first"
-msgstr "å‰å‡ 层增强支撑"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1433
-msgid ""
-"Generate support material for the specified number of layers counting from "
-"bottom, regardless of whether normal support material is enabled or not and "
-"regardless of any angle threshold. This is useful for getting more adhesion "
-"of objects having a very thin or poor footprint on the build plate."
-msgstr ""
-"ä»Žåº•éƒ¨å¼€å§‹ï¼Œå¯¹æŒ‡å®šæ•°ç›®çš„å›¾å±‚ç”Ÿæˆæ”¯æ’‘ææ–™ï¼Œæ— 论æ£å¸¸çš„æ”¯æ’‘ææ–™æ˜¯å¦å¯ç”¨ï¼Œä¹Ÿä¸ç®¡"
-"任何角度阈值。适用于在çƒåºŠä¸Šè„šå¤ªç»†ã€ç«™ä¸ä½çš„物件,便于更好的粘附。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1439
-msgid "Enforce support for the first n layers"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1444
-msgid "Support material/raft/skirt extruder"
-msgstr "æ”¯æ’‘ææ–™/ç/环边挤出头"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1446
-msgid ""
-"The extruder to use when printing support material, raft and skirt (1+, 0 to "
-"use the current extruder to minimize tool changes)."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1455
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for support "
-"material. If left zero, default extrusion width will be used if set, "
-"otherwise nozzle diameter will be used. If expressed as percentage (for "
-"example 90%) it will be computed over layer height."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1463
-msgid "Interface loops"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1465
-msgid ""
-"Cover the top contact layer of the supports with loops. Disabled by default."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1470
-msgid "Support material/raft interface extruder"
-msgstr "æ”¯æ’‘ææ–™/çè¡¨é¢æŒ¤å‡ºå¤´"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1472
-msgid ""
-"The extruder to use when printing support material interface (1+, 0 to use "
-"the current extruder to minimize tool changes). This affects raft too."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1479
-msgid "Interface layers"
-msgstr "表é¢å±‚æ•°"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1481
-msgid ""
-"Number of interface layers to insert between the object(s) and support "
-"material."
-msgstr "åœ¨ç‰©ä½“å’Œæ”¯æ’‘ææ–™ä¸é—´æ’入的表é¢å±‚数。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1488
-msgid "Interface pattern spacing"
-msgstr "è¡¨é¢æ ·å¼é—´éš”"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1490
-msgid "Spacing between interface lines. Set zero to get a solid interface."
-msgstr "表é¢ç›´çº¿é—´çš„间隔。设为0获得å¯é 表é¢ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1497
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:148
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:90
-msgid "Support material interface"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1499
-msgid ""
-"Speed for printing support material interface layers. If expressed as "
-"percentage (for example 50%) it will be calculated over support material "
-"speed."
-msgstr ""
-"æ‰“å°æ”¯æ’‘ææ–™è¡¨é¢å±‚的速度。若表示为百分数(如50%ï¼‰ï¼Œåˆ™ä»¥æ”¯æ’‘ææ–™é€Ÿåº¦ä¸ºåŸºå‡†è®¡"
-"算。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1508
-msgid "Pattern"
-msgstr "æ ·å¼"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1510
-msgid "Pattern used to generate support material."
-msgstr "ç”Ÿæˆæ”¯æ’‘ææ–™çš„æ ·å¼ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1524
-msgid "Pattern spacing"
-msgstr "æ ·å¼é—´éš”"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1526
-msgid "Spacing between support material lines."
-msgstr "æ”¯æ’‘ææ–™ç›´çº¿é—´çš„间隙。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1535
-msgid "Speed for printing support material."
-msgstr "æ‰“å°æ”¯æ’‘ææ–™çš„速度。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1542
-msgid "Synchronize with object layers"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1544
-msgid ""
-"Synchronize support layers with the object print layers. This is useful with "
-"multi-material printers, where the extruder switch is expensive."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1550
-msgid "Overhang threshold"
-msgstr "悬空阈值"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1552
-msgid ""
-"Support material will not be generated for overhangs whose slope angle (90° "
-"= vertical) is above the given threshold. In other words, this value "
-"represent the most horizontal slope (measured from the horizontal plane) "
-"that you can print without support material. Set to zero for automatic "
-"detection (recommended)."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1564
-msgid "With sheath around the support"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1566
-msgid ""
-"Add a sheath (a single perimeter line) around the base support. This makes "
-"the support more reliable, but also more difficult to remove."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1573
-msgid ""
-"Extruder temperature for layers after the first one. Set this to zero to "
-"disable temperature control commands in the output."
-msgstr "第一层之åŽçš„æŒ¤å‡ºå¤´æ¸©åº¦ã€‚设为0以在输出文件ä¸ç¦ç”¨æ¸©åº¦æŽ§åˆ¶æŒ‡ä»¤ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1576
-msgid "Temperature"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1582
-msgid "Detect thin walls"
-msgstr "检测薄å£"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1584
-msgid ""
-"Detect single-width walls (parts where two extrusions don't fit and we need "
-"to collapse them into a single trace)."
-msgstr ""
-"检测å•一厚度的薄å£ï¼ˆä¸¤ä¸ªæŒ¤å‡ºé‡ä¸å»åˆï¼Œä»¥è‡³äºŽéœ€è¦æŠŠå®ƒä»¬åŽ‹ç¼©æˆä¸€æ¡è½¨è¿¹çš„地"
-"方)。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1590
-msgid "Threads"
-msgstr "线程"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1591
-msgid ""
-"Threads are used to parallelize long-running tasks. Optimal threads number "
-"is slightly above the number of available cores/processors."
-msgstr "线程用于并行处ç†é•¿æ—¶é—´ä»»åŠ¡ã€‚æœ€ä¼˜çš„çº¿ç¨‹æ•°åº”æ¯”å¯ç”¨æ ¸/处ç†å™¨çš„æ•°ç›®ç•¥å¤šã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1603
-msgid ""
-"This custom code is inserted right before every extruder change. Note that "
-"you can use placeholder variables for all Slic3r settings as well as "
-"[previous_extruder] and [next_extruder]."
-msgstr ""
-"该段自定义代ç åœ¨æ¯æ¬¡æŒ¤å‡ºå¤´åˆ‡æ¢å‰æ’入。注æ„å¯ä»¥ä½¿ç”¨å ä½ç¬¦å˜é‡ä»£æ›¿Slic3r的所有"
-"傿•°ï¼Œå¦‚ [previous_extruder] å’Œ [next_extruder]。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1613
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1624
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:143
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:85
-msgid "Top solid infill"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1615
-msgid ""
-"Set this to a non-zero value to set a manual extrusion width for infill for "
-"top surfaces. You may want to use thinner extrudates to fill all narrow "
-"regions and get a smoother finish. If left zero, default extrusion width "
-"will be used if set, otherwise nozzle diameter will be used. If expressed as "
-"percentage (for example 90%) it will be computed over layer height."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1626
-msgid ""
-"Speed for printing top solid layers (it only applies to the uppermost "
-"external layers and not to their internal solid layers). You may want to "
-"slow down this to get a nicer surface finish. This can be expressed as a "
-"percentage (for example: 80%) over the solid infill speed above. Set to zero "
-"for auto."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1638
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:369
-msgid "Top"
-msgstr "顶部"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1640
-msgid "Number of solid layers to generate on top surfaces."
-msgstr "在顶部表é¢ä¸Šç”Ÿæˆçš„å¯é 层数。"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1642
-msgid "Top solid layers"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1647
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:95
-msgid "Travel"
-msgstr "空程"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1648
-msgid "Speed for travel moves (jumps between distant extrusion points)."
-msgstr "空程移动的速度(从一个挤出点结æŸè°ƒåˆ°å¦ä¸€ä¸ªæŒ¤å‡ºç‚¹å¼€å§‹ï¼‰ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1656
-msgid "Use firmware retraction"
-msgstr "使用固件回缩"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1657
-msgid ""
-"This experimental setting uses G10 and G11 commands to have the firmware "
-"handle the retraction. This is only supported in recent Marlin."
-msgstr ""
-"è¯¥è¯•éªŒå‚æ•°ä½¿ç”¨G10å’ŒG11指令æ¥ä½¿å›ºä»¶å¤„ç†å›žç¼©ã€‚仅在最新的Marlin䏿”¯æŒè¯¥åŠŸèƒ½ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1663
-msgid "Use relative E distances"
-msgstr "使用相对Eè·ç¦»"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1664
-msgid ""
-"If your firmware requires relative E values, check this, otherwise leave it "
-"unchecked. Most firmwares use absolute values."
-msgstr "如果固件需è¦ç›¸å¯¹E值,勾选æ¤é¡¹ï¼Œå¦åˆ™ä¸è¦å‹¾é€‰ã€‚大部分固件使用ç»å¯¹å€¼ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1670
-msgid "Use volumetric E"
-msgstr "使用体积E"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1671
-msgid ""
-"This experimental setting uses outputs the E values in cubic millimeters "
-"instead of linear millimeters. If your firmware doesn't already know "
-"filament diameter(s), you can put commands like 'M200 D[filament_diameter_0] "
-"T0' in your start G-code in order to turn volumetric mode on and use the "
-"filament diameter associated to the filament selected in Slic3r. This is "
-"only supported in recent Marlin."
-msgstr ""
-"è¯¥è¯•éªŒå‚æ•°åœ¨E值ä¸ä½¿ç”¨ç«‹æ–¹ç±³ä¸ºå•ä½ï¼Œè€Œéžæ¯«ç±³ã€‚如果固件ä¸çŸ¥é“䏿–™ç›´å¾„ï¼Œä½ å¯ä»¥åœ¨"
-"èµ·å§‹G代ç ä¸è¾“入如'M200 D[filament_diameter_0] T0' 以开å¯ä½“积模å¼ï¼Œå¹¶ä½¿ç”¨åœ¨"
-"Slic3rä¸å·²é€‰çš„䏿–™ç›´å¾„。仅在最新Marlin䏿”¯æŒè¯¥åŠŸèƒ½ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1681
-msgid "Enable variable layer height feature"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1682
-msgid ""
-"Some printers or printer setups may have difficulties printing with a "
-"variable layer height. Enabled by default."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1688
-msgid "Wipe while retracting"
-msgstr "回缩时擦æ‹"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1689
-msgid ""
-"This flag will move the nozzle while retracting to minimize the possible "
-"blob on leaky extruders."
-msgstr "在回缩时移动喷嘴以é¿å…挤出头滴æ¼ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1696
-msgid ""
-"Multi material printers may need to prime or purge extruders on tool "
-"changes. Extrude the excess material into the wipe tower."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1702
-msgid "Position X"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1703
-msgid "X coordinate of the left front corner of a wipe tower"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1709
-msgid "Position Y"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1710
-msgid "Y coordinate of the left front corner of a wipe tower"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1716
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:70
-msgid "Width"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1717
-msgid "Width of a wipe tower"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1723
-msgid "Per color change depth"
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1724
-msgid ""
-"Depth of a wipe color per color change. For N colors, there will be maximum "
-"(N-1) tool switches performed, therefore the total depth of the wipe tower "
-"will be (N-1) times this value."
-msgstr ""
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1732
-msgid "XY Size Compensation"
-msgstr "XY尺寸补å¿"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1734
-msgid ""
-"The object will be grown/shrunk in the XY plane by the configured value "
-"(negative = inwards, positive = outwards). This might be useful for fine-"
-"tuning hole sizes."
-msgstr ""
-"该物体将以指定值(负=往内,æ£=往外)å˜å¤§/æ”¶ç¼©ã€‚å¯¹äºŽç²¾ç¡®è°ƒèŠ‚å”æ´žå°ºå¯¸å¯èƒ½æœ‰ç”¨ã€‚"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1742
-msgid "Z offset"
-msgstr "Zè¡¥å¿"
-
-#: C:\src\Slic3r\xs\src\libslic3r\PrintConfig.cpp:1743
-msgid ""
-"This value will be added (or subtracted) from all the Z coordinates in the "
-"output G-code. It is used to compensate for bad Z endstop position: for "
-"example, if your endstop zero actually leaves the nozzle 0.3mm far from the "
-"print bed, set this to -0.3 (or fix your endstop)."
-msgstr ""
-"在输出G代ç ä¸ï¼Œæ‰€æœ‰Zåæ ‡å°†åœ¨åŽŸåŸºç¡€ä¸Šå¢žå¤§ï¼ˆæˆ–å‡å°‘)该数值。用æ¥å¯¹ç³Ÿç³•çš„Z终点挡"
-"æ¿ä½ç½®è¿›è¡Œè¡¥å¿ï¼Œå¦‚æžœä½ çš„ç»ˆç‚¹æŒ¡æ¿ä¸ºé›¶æ—¶ï¼Œå–·å˜´ç¦»æ‰“å°çƒåºŠè¿˜æœ‰0.3毫米,将该值设"
-"为-0.3ï¼ˆæˆ–è€…è°ƒæ•´ä½ çš„ç»ˆç‚¹æŒ¡æ¿ï¼‰ã€‚"
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:137
-msgid "None"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:138
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:80
-msgid "Perimeter"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:139
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:81
-msgid "External perimeter"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:140
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:82
-msgid "Overhang perimeter"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:141
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:83
-msgid "Internal infill"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:144
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:86
-msgid "Bridge infill"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:151
-msgid "Mixed"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:330
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:68
-msgid "Feature type"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:332
-msgid "Height (mm)"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:334
-msgid "Width (mm)"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:336
-msgid "Speed (mm/s)"
-msgstr ""
-
-#: c:\src\Slic3r\xs\src\libslic3r\GCode\PreviewData.cpp:338
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:72
-msgid "Tool"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI.pm:286
-msgid "Choose one or more files (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:66
-msgid "Version "
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:66
-msgid ""
-" - Remember to check for updates at http://github.com/supermerill/slic3r/releases"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:118
-msgid "Plater"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:120
-msgid "Controller"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:192
-msgid "No Bonjour device found"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:192
-msgid "Device Browser"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:211
-msgid "Connection to OctoPrint works correctly."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:214
-msgid "I wasn't able to connect to OctoPrint ("
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:215
-msgid "). Check hostname and OctoPrint version (at least 1.1.0 is required)."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:251
-msgid "Open STL/OBJ/AMF…\tCtrl+O"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:251
-msgid "Open a model"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:254
-msgid "&Load Config…\tCtrl+L"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:254
-msgid "Load exported configuration file"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:257
-msgid "&Export Config…\tCtrl+E"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:257
-msgid "Export current configuration to file"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:260
-msgid "&Load Config Bundle…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:260
-msgid "Load presets from a bundle"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:263
-msgid "&Export Config Bundle…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:263
-msgid "Export all presets to file"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:268
-msgid "Q&uick Slice…\tCtrl+U"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:268
-msgid "Slice a file into a G-code"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:274
-msgid "Quick Slice and Save &As…\tCtrl+Alt+U"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:274
-msgid "Slice a file into a G-code, save as"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:280
-msgid "&Repeat Last Quick Slice\tCtrl+Shift+U"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:280
-msgid "Repeat last quick slice"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:287
-msgid "Slice to SV&G…\tCtrl+G"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:287
-msgid "Slice file to a multi-layer SVG"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:291
-msgid "(&Re)Slice Now\tCtrl+S"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:291
-msgid "Start new slicing process"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:294
-msgid "Repair STL file…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:294
-msgid "Automatically repair an STL file"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:299
-msgid "Preferences…\tCtrl+,"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:299
-msgid "Application preferences"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:304
-msgid "&Quit"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:304
-msgid "Quit Slic3r"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:314
-msgid "Export G-code..."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:314
-msgid "Export current plate as G-code"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:317
-msgid "Export plate as STL..."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:317
-msgid "Export current plate as STL"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:320
-msgid "Export plate as AMF..."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:320
-msgid "Export current plate as AMF"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:323
-msgid "Export plate as 3MF..."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:323
-msgid "Export current plate as 3MF"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:336
-msgid "Select &Plater Tab\tCtrl+1"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:336
-msgid "Show the plater"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:342
-msgid "Select &Controller Tab\tCtrl+T"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:342
-msgid "Show the printer controller"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:350
-msgid "Select P&rint Settings Tab\tCtrl+2"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:350
-msgid "Show the print settings"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:353
-msgid "Select &Filament Settings Tab\tCtrl+3"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:353
-msgid "Show the filament settings"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:356
-msgid "Select Print&er Settings Tab\tCtrl+4"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:356
-msgid "Show the printer settings"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:368
-msgid "Iso"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:368
-msgid "Iso View"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:369
-msgid "Top View"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:370
-msgid "Bottom View"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:371
-msgid "Front"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:371
-msgid "Front View"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:372
-msgid "Rear"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:372
-msgid "Rear View"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:373
-msgid "Left"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:373
-msgid "Left View"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:374
-msgid "Right"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:374
-msgid "Right View"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:380
-msgid "&Configuration "
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:380
-msgid "Run Configuration "
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:385
-msgid "Prusa 3D Drivers"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:385
-msgid "Open the Prusa3D drivers download page in your browser"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:388
-msgid "Slic3r++ Releases"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:388
-msgid "Open the Slic3r++ releases page in your browser"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:395
-msgid "Slic3r &Website"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:395
-msgid "Open the Slic3r website in your browser"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:398
-msgid "Slic3r &Manual"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:398
-msgid "Open the Slic3r manual in your browser"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:402
-msgid "System Info"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:402
-msgid "Show system information"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:405
-msgid "Report an Issue"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:405
-msgid "Report an issue on the Slic3r Slic3r++"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:408
-msgid "&About Slic3r"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:408
-msgid "Show about dialog"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:418
-msgid "&File"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:419
-msgid "&Plater"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:420
-msgid "&Object"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:421
-msgid "&Window"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:422
-msgid "&View"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:426
-msgid "&Help"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:457
-msgid "Choose a file to slice (STL/OBJ/AMF/3MF/PRUSA):"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:469
-msgid "No previously sliced file."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:474
-msgid "Previously sliced file ("
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:474
-msgid ") not found."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:475
-msgid "File Not Found"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:514
-msgid "SVG"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:514
-msgid "G-code"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:514
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1645
-msgid " file as:"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:528
-msgid "Slicing…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:528
-msgid "Processing "
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:548
-msgid " was successfully sliced."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:550
-msgid "Slicing Done!"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:566
-msgid "Select the STL file to repair:"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:580
-msgid "Save OBJ file (less prone to coordinate errors than STL) as:"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:594
-msgid "Your file was repaired."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:594
-msgid "Repair"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:605
-msgid "Save configuration as:"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:623
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:667
-msgid "Select configuration to load:"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:646
-msgid "Save presets bundle as:"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:687
-#, perl-format
-msgid "%d presets successfully imported."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:749
-msgid "You have unsaved changes "
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:749
-msgid ". Discard changes and continue anyway?"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\MainFrame.pm:750
-msgid "Unsaved Presets"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:104
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2124
-msgid "3D"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:138
-msgid "2D"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:157
-msgid "Layers"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:177
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:195
-msgid "Add…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:179
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:197
-msgid "Delete All"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:180
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:198
-msgid "Arrange"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:182
-msgid "More"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:183
-msgid "Fewer"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:185
-msgid "45° ccw"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:186
-msgid "45° cw"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:187
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:203
-msgid "Scale…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:188
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:204
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2099
-msgid "Split"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:189
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:205
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2102
-msgid "Cut…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:191
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:206
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2106
-msgid "Settings…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:192
-msgid "Layer Editing"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:207
-msgid "Layer editing"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:220
-msgid "Name"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:221
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:900
-msgid "Copies"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:222
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1056
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1061
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2068
-msgid "Scale"
-msgstr "缩放"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:236
-msgid "Export G-code…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:237
-msgid "Slice now"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:238
-msgid "Print…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:239
-msgid "Send to printer"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:240
-msgid "Export STL…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:367
-msgid "Print settings"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:369
-msgid "Printer"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:398
-msgid "Info"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:409
-msgid "Volume"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:410
-msgid "Facets"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:411
-msgid "Materials"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:412
-msgid "Manifold"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:438
-msgid "Sliced Info"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:447
-msgid "Used Filament (m)"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:448
-msgid "Used Filament (mm³)"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:449
-msgid "Used Filament (g)"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:451
-msgid "Estimated printing time"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:629
-msgid "Loading…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:629
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:643
-msgid "Processing input file\n"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:663
-msgid ""
-"This file contains several objects positioned at multiple heights. Instead "
-"of considering them as multiple objects, should I consider\n"
-"this file as a single object having multiple parts?\n"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:666
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:683
-msgid "Multi-part object detected"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:680
-msgid ""
-"Multiple objects were loaded for a multi-material printer.\n"
-"Instead of considering them as multiple objects, should I consider\n"
-"these files to represent a single object having multiple parts?\n"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:692
-msgid "Loaded "
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:744
-msgid ""
-"Your object appears to be too large, so it was automatically scaled down to "
-"fit your print bed."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:745
-msgid "Object too large?"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:900
-msgid "Enter the number of copies of the selected object:"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:927
-msgid ""
-"\n"
-"Non-positive value."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:928
-msgid ""
-"\n"
-"Not a numeric value."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:929
-msgid "Slic3r Error"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
-msgid "Enter the rotation angle:"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
-msgid "Rotate around "
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:950
-msgid "Invalid rotation angle entered"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1030
-#, perl-format
-msgid "Enter the new size for the selected object (print bed: %smm):"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1031
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
-msgid "Scale along "
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1031
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1056
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1061
-msgid "Invalid scaling value entered"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1035
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1061
-#, no-perl-format
-msgid "Enter the scale % for the selected object:"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1056
-msgid "Enter the new max size for the selected object:"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1112
-msgid ""
-"The selected object can't be split because it contains more than one volume/"
-"material."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1121
-msgid ""
-"The selected object couldn't be split because it contains only one part."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1286
-msgid "Slicing cancelled"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1300
-msgid "Another export job is currently running."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1445
-msgid "File added to print queue"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1448
-msgid "Sending G-code file to the OctoPrint server..."
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1451
-msgid "G-code file exported to "
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1454
-msgid "Export failed"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1524
-msgid "G-code file successfully uploaded to the OctoPrint server"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1526
-msgid "Error while uploading to the OctoPrint server: "
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1539
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1581
-msgid "STL file exported to "
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1592
-msgid "AMF file exported to "
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1596
-msgid "Error exporting AMF file "
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1608
-msgid "3MF file exported to "
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1612
-msgid "Error exporting 3MF file "
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1958
-#, perl-format
-msgid "%d (%d shells)"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1960
-#, perl-format
-msgid "Auto-repaired (%d errors)"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1965
-#, perl-format
-msgid ""
-"%d degenerate facets, %d edges fixed, %d facets removed, %d facets added, %d "
-"facets reversed, %d backwards edges"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:1970
-msgid "Yes"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2021
-msgid "Remove the selected object"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2024
-msgid "Increase copies"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2024
-msgid "Place one more copy of the selected object"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2027
-msgid "Decrease copies"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2027
-msgid "Remove one copy of the selected object"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2030
-msgid "Set number of copies…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2030
-msgid "Change the number of copies of the selected object"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2034
-msgid "Rotate 45° clockwise"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2034
-msgid "Rotate the selected object by 45° clockwise"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2037
-msgid "Rotate 45° counter-clockwise"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2037
-msgid "Rotate the selected object by 45° counter-clockwise"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2042
-msgid "Rotate"
-msgstr "旋转"
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2042
-msgid "Rotate the selected object by an arbitrary angle"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2044
-msgid "Around X axis…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2044
-msgid "Rotate the selected object by an arbitrary angle around X axis"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2047
-msgid "Around Y axis…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2047
-msgid "Rotate the selected object by an arbitrary angle around Y axis"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2050
-msgid "Around Z axis…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2050
-msgid "Rotate the selected object by an arbitrary angle around Z axis"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2055
-msgid "Mirror"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2055
-msgid "Mirror the selected object"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2057
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2073
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2089
-msgid "Along X axis…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2057
-msgid "Mirror the selected object along the X axis"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2060
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2076
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2092
-msgid "Along Y axis…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2060
-msgid "Mirror the selected object along the Y axis"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2063
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2079
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2095
-msgid "Along Z axis…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2063
-msgid "Mirror the selected object along the Z axis"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2068
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2084
-msgid "Scale the selected object along a single axis"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2070
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2086
-msgid "Uniformly…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2070
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2086
-msgid "Scale the selected object along the XYZ axes"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2073
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2089
-msgid "Scale the selected object along the X axis"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2076
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2092
-msgid "Scale the selected object along the Y axis"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2079
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2095
-msgid "Scale the selected object along the Z axis"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2084
-msgid "Scale to size"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2099
-msgid "Split the selected object into individual parts"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2102
-msgid "Open the 3D cutting tool"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2106
-msgid "Open the object editor dialog"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2110
-msgid "Reload from Disk"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2110
-msgid "Reload the selected file from Disk"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2113
-msgid "Export object as STL…"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater.pm:2113
-msgid "Export this single object as STL file"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\2D.pm:131
-msgid "What do you want to print today? â„¢"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\2D.pm:132
-msgid "Drag your objects here"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:63
-msgid "1 Layer"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:65
-msgid "View"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:75
-msgid "Show"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:78
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:79
-msgid "Feature types"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:96
-msgid "Retractions"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:97
-msgid "Unretractions"
-msgstr ""
-
-#: c:\src\Slic3r\lib\Slic3r\GUI\Plater\3DPreview.pm:98
-msgid "Shells"
-msgstr ""
-
-#~ msgid "Rectilinear"
-#~ msgstr "折线å¼"
-
-#~ msgid "Concentric"
-#~ msgstr "åŒè½´å¼"
-
-#~ msgid "Hilbert Curve"
-#~ msgstr "希尔伯特曲线å¼"
-
-#~ msgid "Archimedean Chords"
-#~ msgstr "阿基米德和铉å¼"
-
-# Not so sure about how to put "Octagram Spiral" in Chinese. Or maybe "Octagram螺旋“ is good.
-#~ msgid "Octagram Spiral"
-#~ msgstr "八角星螺旋å¼"
-
-#~ msgid "Has heated bed"
-#~ msgstr "有çƒåºŠ"
-
-#~ msgid ""
-#~ "Unselecting this will suppress automatic generation of bed heating gcode."
-#~ msgstr "ä¸å‹¾é€‰æ¤é¡¹å°†ä¸è‡ªåŠ¨ç”ŸæˆæœºåºŠåŠ çƒçš„G代ç 。"
-
-#~ msgid "Bed temperature for layers after the first one."
-#~ msgstr "第一层之åŽçš„æœºåºŠæ¸©åº¦ã€‚"
-
-#~ msgid "Bottom infill pattern"
-#~ msgstr "åº•éƒ¨å¡«å……æ ·å¼"
-
-#~ msgid ""
-#~ "Infill pattern for bottom layers. This only affects the external visible "
-#~ "layer, and not its adjacent solid shells."
-#~ msgstr "åº•å±‚çš„å¡«å……æ ·å¼ã€‚æ¤é¡¹ä»…å½±å“外部å¯è§å±‚,ä¸å½±å“其相邻的å¯é 层。"
-
-#~ msgid "Speed > Acceleration"
-#~ msgstr "速度 > åŠ é€Ÿåº¦"
-
-#~ msgid "Brim connections width"
-#~ msgstr "裙边连接宽度"
-
-#~ msgid ""
-#~ "If set to a positive value, straight connections will be built on the "
-#~ "first layer between adjacent objects."
-#~ msgstr "如果设为æ£å€¼ï¼Œç¬¬ä¸€å±‚相邻的物体间将建立直接连接。"
-
-#~ msgid "Exterior brim width"
-#~ msgstr "外围裙边宽度"
-
-#~ msgid ""
-#~ "This disables the fan completely for the first N layers to aid in the "
-#~ "adhesion of media to the bed. (default 3)"
-#~ msgstr "æ¤é¡¹åœ¨æ‰“å°å‰N层时完全ç¦ç”¨é£Žæ‰‡ï¼Œä»¥å¸®åŠ©ææ–™æ›´å¥½åœ°é»åˆçƒåºŠã€‚(默认3)"
-
-#~ msgid "↳ external"
-#~ msgstr "↳外部的"
-
-#~ msgid "External perimeters extrusion width"
-#~ msgstr "外围轮廓挤出宽度"
-
-#~ msgid ""
-#~ "Set this to a non-zero value to set a manual extrusion width for external "
-#~ "perimeters. If auto is chosen, a value will be used that maximizes "
-#~ "accuracy of the external visible surfaces. If expressed as percentage "
-#~ "(for example 200%) it will be computed over layer height."
-#~ msgstr ""
-#~ "该值若éž0,æ„为外围轮廓的手动挤出宽度。如果选择自动,将使用一个使得外围å¯"
-#~ "è§å±‚精度最高的值。如果表示为百分数(如200%),则该值以层高为基准。"
-
-#~ msgid "External perimeters speed"
-#~ msgstr "外围轮廓速度"
-
-#~ msgid ""
-#~ "This separate setting will affect the speed of external perimeters (the "
-#~ "visible ones). If expressed as percentage (for example: 80%) it will be "
-#~ "calculated on the perimeters speed setting above."
-#~ msgstr ""
-#~ "è¯¥å‚æ•°å°†å½±å“外围å¯è§å±‚的打å°é€Ÿåº¦ã€‚如果表示为百分数(如80%),数值将以上é¢"
-#~ "è®¾ç½®çš„å¤–å›´é€Ÿåº¦å‚æ•°ä¸ºåŸºå‡†ã€‚"
-
-#~ msgid "Add more perimeters when needed for avoiding gaps in sloping walls."
-#~ msgstr "为é¿å…在打å°å€¾æ–œçš„外墙ä¸äº§ç”Ÿé—´éš™ï¼Œæœ‰å¿…è¦æ—¶å¢žåŠ æ›´å¤šçš„è½®å»“ã€‚"
-
-#~ msgid ""
-#~ "The extruder to use (unless more specific extruder settings are "
-#~ "specified)."
-#~ msgstr "ä½¿ç”¨çš„æŒ¤å‡ºå¤´ï¼ˆé™¤éžæŒ‡æ˜Žäº†æ›´å¤šè¯¦ç»†çš„æŒ¤å‡ºå¤´å‚数)。"
-
-#~ msgid ""
-#~ "Set this to a non-zero value to set a manual extrusion width. If "
-#~ "expressed as percentage (for example: 230%) it will be computed over "
-#~ "layer height."
-#~ msgstr ""
-#~ "该值若为éž0,则代表手动挤出宽度。如果设为百分数(如230%),则值是以层高为"
-#~ "基准。"
-
-#~ msgid "Fill gaps"
-#~ msgstr "å¡«å……é—´éš™"
-
-#~ msgid ""
-#~ "If this is enabled, gaps will be filled with single passes. Enable this "
-#~ "for better quality, disable it for shorter printing times."
-#~ msgstr ""
-#~ "如果勾选该项,间隙将被å•通é“填充。å¯ç”¨è¯¥é¡¹å¯ä¼˜åŒ–打å°è´¨é‡ï¼Œç¦ç”¨åˆ™å¯ä»¥èŠ‚çœæ—¶"
-#~ "间。"
-
-#~ msgid ""
-#~ "Set this to a non-zero value to set a manual extrusion width for first "
-#~ "layer. You can use this to force fatter extrudates for better adhesion. "
-#~ "If expressed as percentage (for example 120%) it will be computed over "
-#~ "first layer height."
-#~ msgstr ""
-#~ "若为éž0,则表示首层手动挤出宽度。å¯ç”¨äºŽå¼ºåˆ¶æ›´å®½çš„æŒ¤å‡ºé‡ä¾¿äºŽé»ç€ã€‚如果表示"
-#~ "为百分数(如120%),则该值是相对于首层高度。"
-
-#~ msgid "↳ gaps"
-#~ msgstr "↳ 间隙"
-
-#~ msgid ""
-#~ "Speed for filling gaps. Since these are usually single lines you might "
-#~ "want to use a low speed for better sticking. If expressed as percentage "
-#~ "(for example: 80%) it will be calculated on the infill speed setting "
-#~ "above."
-#~ msgstr ""
-#~ "填充间隙的速度。由于这些通常是独立的直线,所以尽é‡ä½¿ç”¨ä½Žé€Ÿæ¥ä¿è¯é»ç€ã€‚如果"
-#~ "表示为百分数(如80%),则以上é¢è®¾ç½®çš„填充速度为基准。"
-
-#~ msgid "Use native G-code arcs"
-#~ msgstr "使用本地的G代ç 弧线"
-
-#~ msgid ""
-#~ "This experimental feature tries to detect arcs from segments and "
-#~ "generates G2/G3 arc commands instead of multiple straight G1 commands."
-#~ msgstr ""
-#~ "这个试验性能å°è¯•从段ä¸ä¾¦æµ‹å‡ºå¼§çº¿ï¼Œç”Ÿæˆ G2/G3 å¼§çº¿æŒ‡ä»¤ï¼Œè€Œä¸æ˜¯ç”Ÿæˆå¤šä¸ªG1ç›´"
-#~ "线指令。"
-
-#~ msgid ""
-#~ "Set this to a non-zero value to set a manual extrusion width for infill. "
-#~ "You may want to use fatter extrudates to speed up the infill and make "
-#~ "your parts stronger. If expressed as percentage (for example 90%) it will "
-#~ "be computed over layer height."
-#~ msgstr ""
-#~ "该值若为éž0,则表示填充的手动挤出宽度。å¯ä½¿ç”¨è¾ƒå®½çš„æŒ¤å‡ºæ¥åŠ é€Ÿå¡«å……å¹¶ä½¿éƒ¨ä»¶"
-#~ "牢固。如果表示为百分数(如90%),则该值以层高为基准。"
-
-#~ msgid "Speed for printing the internal fill."
-#~ msgstr "打å°å†…部填充的速度。"
-
-#~ msgid "Interior brim width"
-#~ msgstr "内部裙边宽度"
-
-#~ msgid ""
-#~ "Horizontal width of the brim that will be printed inside object holes on "
-#~ "the first layer."
-#~ msgstr "第一层打å°äºŽç‰©ä»¶å”洞内部的裙边宽度。"
-
-#~ msgid ""
-#~ "During multi-extruder prints, this option will drop the temperature of "
-#~ "the inactive extruders to prevent oozing. It will enable a tall skirt "
-#~ "automatically and move extruders outside such skirt when changing "
-#~ "temperatures."
-#~ msgstr ""
-#~ "在多挤出头的打å°è¿‡ç¨‹ä¸ï¼Œè¯¥é€‰é¡¹å°†é™ä½Žéžæ´»è·ƒæŒ¤å‡ºå¤´çš„æ¸©åº¦ä»¥é¿å…滴垂现象。å¯åЍ"
-#~ "å®ƒå°†è‡ªåŠ¨ä½¿èƒ½ä¸€ä¸ªé«˜çŽ¯è¾¹ï¼Œå¹¶åœ¨æ”¹å˜æ¸©åº¦æ—¶å°†æŒ¤å‡ºå¤´ç§»é™¤è¯¥çŽ¯è¾¹ã€‚"
-
-#~ msgid "Overridable options"
-#~ msgstr "å¯è¦†ç›–的选项"
-
-#~ msgid ""
-#~ "Set this to a non-zero value to set a manual extrusion width for "
-#~ "perimeters. You may want to use thinner extrudates to get more accurate "
-#~ "surfaces. If expressed as percentage (for example 200%) it will be "
-#~ "computed over layer height."
-#~ msgstr ""
-#~ "该值若éž0,则表示轮廓的手动基础宽度。å¯ä»¥ä½¿ç”¨æ›´ç»†çš„æŒ¤å‡ºå®½åº¦æ¥èŽ·å¾—æ›´ç²¾ç¡®çš„"
-#~ "表é¢ã€‚如果表示为百分数(如200%),则该值以层高为基准。"
-
-#~ msgid "Speed for perimeters (contours, aka vertical shells)."
-#~ msgstr "轮廓的打å°é€Ÿåº¦ï¼ˆè½®å»“,åˆå垂直外壳)。"
-
-#~ msgid ""
-#~ "If you want to process the output G-code through custom scripts, just "
-#~ "list their absolute paths here. Separate multiple scripts on individual "
-#~ "lines. Scripts will be passed the absolute path to the G-code file as the "
-#~ "first argument, and they can access the Slic3r config settings by reading "
-#~ "environment variables."
-#~ msgstr ""
-#~ "å¦‚æžœä½ æƒ³è¦é€šè¿‡è‡ªå®šä¹‰è„šæœ¬æ¥å¤„ç†è¾“出G代ç ,在这里列出它们的ç»å¯¹è·¯å¾„å³å¯ã€‚å°†"
-#~ "多个脚本分行输入。脚本的ç»å¯¹è·¯å¾„å°†è¢«ä»¥ç¬¬ä¸€ä¸ªå‚æ•°ä¼ 递给Gä»£ç æ–‡ä»¶ï¼Œè€Œä¸”它们"
-#~ "å¯ä»¥é€šè¿‡è¯»å–环境å˜é‡æ¥èŽ·å–Slic3rçš„é…ç½®å‚æ•°ã€‚"
-
-#~ msgid "Pressure advance"
-#~ msgstr "压力高级设置"
-
-#~ msgid ""
-#~ "When set to a non-zero value, this experimental option enables pressure "
-#~ "regulation. It's the K constant for the advance algorithm that pushes "
-#~ "more or less filament upon speed changes. It's useful for Bowden-tube "
-#~ "extruders. Reasonable values are in range 0-10."
-#~ msgstr ""
-#~ "若为éž0,该试验选项å¯ç”¨åŽ‹åŠ›è°ƒèŠ‚ã€‚è¯¥å€¼ä¸ºä¸€ä¸ªé«˜çº§ç®—æ³•çš„Kå¸¸æ•°ã€‚è¿™ä¸ªç®—æ³•æ ¹æ®é€Ÿ"
-#~ "度å˜åŒ–æ¥æ”¹å˜æŽ¨åЍ䏿–™å¤šå°‘。适用于é²ç™»ç®¡æŒ¤å‡ºå¤´ã€‚åˆç†çš„值范围是0-10."
-
-#~ msgid "Raft offset"
-#~ msgstr "çåç½®"
-
-#~ msgid "Horizontal margin between object base layer and raft contour."
-#~ msgstr "物体基层和ç轮廓之间的水平è·ç¦»ã€‚"
-
-#~ msgid "Resolution (deprecated)"
-#~ msgstr "精度(ä¸èµžæˆ)"
-
-#~ msgid ""
-#~ "The speed for retractions (it only applies to the extruder motor). If you "
-#~ "use the Firmware Retraction option, please note this value still affects "
-#~ "the auto-speed pressure regulator."
-#~ msgstr ""
-#~ "回缩速度(仅适用于挤出头电机)。如果试用了固件回缩选项,请注æ„该值ä»å½±å“自"
-#~ "动速度电压调节器。"
-
-#~ msgid "↳ small"
-#~ msgstr "↳ å°"
-
-#~ msgid ""
-#~ "This separate setting will affect the speed of perimeters having radius "
-#~ "<= 6.5mm (usually holes). If expressed as percentage (for example: 80%) "
-#~ "it will be calculated on the perimeters speed setting above."
-#~ msgstr ""
-#~ "è¯¥å‚æ•°å½±å“åŠå¾„ <= 6.5mmï¼ˆé€šå¸¸æ˜¯å”æ´žï¼‰çš„轮廓打å°é€Ÿåº¦ã€‚如果表示为百分比(如"
-#~ "80%),则以上é¢è®¾ç½®çš„轮廓速度为基准计算。"
-
-#~ msgid "↳ solid"
-#~ msgstr "↳ å¯é çš„"
-
-#~ msgid ""
-#~ "Set this to a non-zero value to set a manual extrusion width for infill "
-#~ "for solid surfaces. If expressed as percentage (for example 90%) it will "
-#~ "be computed over layer height."
-#~ msgstr ""
-#~ "设为éž0值,则表示å¯é 表é¢å¡«å……的手动挤出宽度。若表示为百分数(如90%),将以"
-#~ "层高为基准计算。"
-
-#~ msgid ""
-#~ "Speed for printing solid regions (top/bottom/internal horizontal shells). "
-#~ "This can be expressed as a percentage (for example: 80%) over the default "
-#~ "infill speed above."
-#~ msgstr ""
-#~ "打å°å¯é 区域的速度(顶部的/底部的/内部水平外壳)。以百分数(如80%)表示,"
-#~ "则以上述的默认填充速度为基准计算。"
-
-#~ msgid ""
-#~ "Temperature difference to be applied when an extruder is not active. "
-#~ "Enables a full-height \"sacrificial\" skirt on which the nozzles are "
-#~ "periodically wiped."
-#~ msgstr ""
-#~ "å½“æŒ¤å‡ºå¤´å¤„äºŽéžæ´»è·ƒçŠ¶æ€æ—¶ç”¨åˆ°çš„æ¸©åº¦å·®ã€‚å¯ç”¨ä¸€ä¸ªå…¨é«˜åº¦çš„环边,纯用于定期给喷"
-#~ "嘴擦æ‹ã€‚"
-
-#~ msgid ""
-#~ "This start procedure is inserted at the beginning, after bed has reached "
-#~ "the target temperature and extruder just started heating, and before "
-#~ "extruder has finished heating. If Slic3r detects M104, M109, M140 or M190 "
-#~ "in your custom codes, such commands will not be prepended automatically "
-#~ "so you're free to customize the order of heating commands and other "
-#~ "custom actions. Note that you can use placeholder variables for all "
-#~ "Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" "
-#~ "command wherever you want."
-#~ msgstr ""
-#~ "è¯¥æ®µä»£ç æ”¾åœ¨G代ç 开头,在çƒåºŠè¾¾åˆ°ç›®æ ‡æ¸©åº¦ã€æŒ¤å‡ºå¤´å¼€å§‹åŠ çƒåŽï¼ŒæŒ¤å‡ºå¤´å®ŒæˆåŠ "
-#~ "çƒå‰æ’入。如果其ä¸ä¸åŒ…嫿œ‰M104, M109, M140 或 M190,这段指令就会在Slic3r自"
-#~ "动放置的M指令之åŽï¼›å¦åˆ™Slic3rå°†ä¸ä¼šè‡ªåŠ¨ç”ŸæˆMæŒ‡ä»¤ï¼Œè¿™æ ·ä½ å¯ä»¥è‡ªç”±å®šä¹‰åŠ çƒå‘½"
-#~ "令和其他自定义动作的顺åºã€‚注æ„å¯ä»¥ä½¿ç”¨å ä½ç¬¦å˜é‡æ›¿ä»£æ‰€æœ‰Slic3r傿•°ï¼Œæ‰€ä»¥ä½ "
-#~ "å¯ä»¥æŠŠä¸€ä¸ªâ€œM109 S[ first_layer_temperature ]â€å‘½ä»¤æ”¾åœ¨ä»»æ„处。"
-
-#~ msgid "The extruder to use when printing support material, raft and skirt."
-#~ msgstr "æ‰“å°æ”¯æ’‘ææ–™ã€ç和环边时使用的挤出头。"
-
-#~ msgid ""
-#~ "Set this to a non-zero value to set a manual extrusion width for support "
-#~ "material. If expressed as percentage (for example 90%) it will be "
-#~ "computed over layer height."
-#~ msgstr ""
-#~ "设为éž0å€¼ï¼Œè¡¨ç¤ºå¯¹æ”¯æ’‘ææ–™çš„æ‰‹åŠ¨æŒ¤å‡ºå®½åº¦ã€‚å¦‚æžœè¡¨ç¤ºä¸ºç™¾åˆ†æ•°ï¼ˆå¦‚90%),则以层"
-#~ "高为基准计算。"
-
-#~ msgid ""
-#~ "The extruder to use when printing support material interface. This "
-#~ "affects raft too."
-#~ msgstr "æ‰“å°æ”¯æ’‘ææ–™è¡¨é¢æ—¶ä½¿ç”¨çš„æŒ¤å‡ºå¤´ã€‚也影å“ç。"
-
-#~ msgid "↳ interface"
-#~ msgstr "↳ 表é¢"
-
-#~ msgid "Interface Speed"
-#~ msgstr "表é¢é€Ÿåº¦"
-
-#~ msgid "Support material interface speed"
-#~ msgstr "æ”¯æ’‘ææ–™è¡¨é¢é€Ÿåº¦"
-
-# "% o“ format mistake?
-#~ msgid ""
-#~ "Support material will not be generated for overhangs whose slope angle "
-#~ "(90° = vertical) is above the given threshold. In other words, this value "
-#~ "represent the most horizontal slope (measured from the horizontal plane) "
-#~ "that you can print without support material. Set to a percentage to "
-#~ "automatically detect based on some % of overhanging perimeter width "
-#~ "instead (recommended)."
-#~ msgstr ""
-#~ "对于倾斜度(90° = 垂直)高于指定阈值的悬空部ä½ï¼Œä¸ç”Ÿæˆç›¸åº”çš„æ”¯æ’‘ææ–™ã€‚æ¢å¥"
-#~ "è¯è¯´ï¼Œè¯¥å€¼è¡¨ç¤ºä¸ç”¨æ”¯æ’‘ææ–™æ‰€èƒ½æ‰“å°çš„æœ€æ°´å¹³çš„角度。设为百分数,则以悬空轮廓"
-#~ "宽度的 % o自动计算(推è)。"
-
-#~ msgid "↳ top solid"
-#~ msgstr "↳ 顶部å¯é 层"
-
-#~ msgid ""
-#~ "Set this to a non-zero value to set a manual extrusion width for infill "
-#~ "for top surfaces. You may want to use thinner extrudates to fill all "
-#~ "narrow regions and get a smoother finish. If expressed as percentage (for "
-#~ "example 90%) it will be computed over layer height."
-#~ msgstr ""
-#~ "设为éž0值,表示顶层表é¢å¡«å……的手动挤出宽度。å¯ä»¥ä½¿ç”¨è¾ƒç»†çš„æŒ¤å‡ºå®½åº¦æ¥å¯¹æ‰€æœ‰"
-#~ "çš„ç‹é•¿åŒºåŸŸè¿›è¡Œå¡«å……并获得较光滑的尾部。如果表示为百分数(如90%),则以层高"
-#~ "为基准计算。"
-
-#~ msgid ""
-#~ "Infill pattern for top layers. This only affects the external visible "
-#~ "layer, and not its adjacent solid shells."
-#~ msgstr "é¡¶å±‚å¡«å……æ ·å¼ã€‚ä»…å½±å“外部å¯è§å±‚,ä¸å½±å“其相邻å¯é 层。"
-
-#~ msgid ""
-#~ "Speed for printing top solid layers (it only applies to the uppermost "
-#~ "external layers and not to their internal solid layers). You may want to "
-#~ "slow down this to get a nicer surface finish. This can be expressed as a "
-#~ "percentage (for example: 80%) over the solid infill speed above."
-#~ msgstr ""
-#~ "打å°é¡¶éƒ¨å¯é 层的速度(仅适用于最外部的顶层,而éžå®ƒä»¬çš„内部å¯é 填充层)。å¯"
-#~ "é™ä½Žè¯¥é€Ÿåº¦å€¼ä»¥èŽ·å¾—è¾ƒå¥½çš„è¡¨é¢å°¾å¤„ç†ã€‚若表示为百分数(如80%),则以å¯é å¡«å……"
-#~ "速度为基准计算。"
-
-#~ msgid "Vibration limit (deprecated)"
-#~ msgstr "振动é™åˆ¶(赞æˆ)"
-
-#~ msgid ""
-#~ "This experimental option will slow down those moves hitting the "
-#~ "configured frequency limit. The purpose of limiting vibrations is to "
-#~ "avoid mechanical resonance. Set zero to disable."
-#~ msgstr ""
-#~ "该试验选项将å‡ç¼“达到指定频率值的打å°åŠ¨ä½œã€‚ç›®çš„ä¸ºé¿å…机械共振。设为0以ç¦"
-#~ "用。"
-
-#~ msgid "Z full steps/mm"
-#~ msgstr "Zå…¨éƒ¨æ¥æ•°/毫米"
-
-#~ msgid ""
-#~ "Set this to the number of *full* steps (not microsteps) needed for moving "
-#~ "the Z axis by 1mm; you can calculate this by dividing the number of "
-#~ "microsteps configured in your firmware by the microstepping amount (8, "
-#~ "16, 32). Slic3r will round your configured layer height to the nearest "
-#~ "multiple of that value in order to ensure the best accuracy. This is most "
-#~ "useful for machines with imperial leadscrews or belt-driven Z or for "
-#~ "unusual layer heights with metric leadscrews. Set to zero to disable this "
-#~ "experimental feature."
-#~ msgstr ""
-#~ "将该值设为移动Zè½´1毫米所需的*全部*æ¥æ•°ï¼ˆè€Œä¸æ˜¯ç»†åˆ†ï¼‰ï¼›å¯ä»¥è¿™æ ·è®¡ç®—:把固件"
-#~ "ä¸å·²é…置的细分数除以å€å¢žç³»æ•°ï¼ˆ8,16,32)。Sli3rä¼šæŠŠä½ è®¾ç½®çš„å±‚é«˜å››èˆäº”入到"
-#~ "è¯¥å€¼çš„æœ€è¿‘å€æ•°ä»¥ç¡®ä¿ç²¾åº¦ã€‚æ¤é¡¹è®¾ç½®å¯¹äºŽä½¿ç”¨è‹±åˆ¶ä¸æ ã€çš®å¸¦ä¼ 动Z轴的机器,或"
-#~ "è€…æœºå™¨ä½¿ç”¨å…¬åˆ¶ä¸æ 且层高值特别时比较适用。设为0以ç¦ç”¨è¯¥åŠŸèƒ½ã€‚"
-
-#~ msgid "Cut"
-#~ msgstr "切割"
-
-#~ msgid "Cut model at the given Z."
-#~ msgstr "在给定Z处切割模型。"
-
-#~ msgid "Cut model in the XY plane into tiles of the specified max size."
-#~ msgstr "å°†XYé¢çš„æ¨¡åž‹åˆ‡å‰²æˆæŒ‡å®šæœ€å¤§å°ºå¯¸çš„å°å—。"
-
-#~ msgid "Cut model at the given X."
-#~ msgstr "在指定X处切割模型。"
-
-#~ msgid "Cut model at the given Y."
-#~ msgstr "在指定Y处切割模型。"
-
-#~ msgid "Export SVG"
-#~ msgstr "导出SVG"
-
-#~ msgid "Export the model as OBJ."
-#~ msgstr "将模型以OBJæ ¼å¼å¯¼å‡ºã€‚"
-
-#~ msgid "Export POV"
-#~ msgstr "导出POV"
-
-# POV-Ray?
-#~ msgid "Export the model as POV-Ray definition."
-#~ msgstr ""
-#~ "将模型以POV-Ray定义导出。(å‚è§å¼€æºå°„线æè¿¹è½¯ä»¶ï¼šhttp://www.povray."
-#~ "org/)。"
-
-#~ msgid "Slice the model and export slices as SVG."
-#~ msgstr "切割模型并以SVGæ ¼å¼å¯¼å‡ºåˆ‡ç‰‡ç»“果。"
-
-#~ msgid "Output Model Info"
-#~ msgstr "输出模型信æ¯"
-
-#~ msgid "Write information about the model to the console."
-#~ msgstr "给控制å°å†™å…¥æ¨¡åž‹çš„ä¿¡æ¯ã€‚"
-
-#~ msgid "Load config file"
-#~ msgstr "åŠ è½½é…置文件"
-
-#~ msgid ""
-#~ "Load configuration from the specified file. It can be used more than once "
-#~ "to load options from multiple files."
-#~ msgstr "ä»ŽæŒ‡å®šæ–‡ä»¶åŠ è½½é…置。å¯å¤šæ¬¡ä½¿ç”¨ä»¥ä»Žå¤šä¸ªæ–‡ä»¶ä¸åŠ è½½å‚æ•°ã€‚"
-
-#~ msgid "Output File"
-#~ msgstr "输出文件"
-
-#~ msgid ""
-#~ "The file where the output will be written (if not specified, it will be "
-#~ "based on the input file)."
-#~ msgstr "è¾“å‡ºçš„æ–‡ä»¶ï¼ˆå¦‚æžœæœªæŒ‡å®šï¼Œåˆ™å°†ä¾æ®è¾“入文件)。"
-
-#~ msgid "Rotation angle around the Z axis in degrees (0-360, default: 0)."
-#~ msgstr "绕Z轴旋转角度(0-360,默认:0)。"
-
-#~ msgid "Rotate around X"
-#~ msgstr "绕X轴旋转"
-
-#~ msgid "Rotation angle around the X axis in degrees (0-360, default: 0)."
-#~ msgstr "绕X轴旋转角度(0-360,默认:0)。"
-
-#~ msgid "Rotate around Y"
-#~ msgstr "绕Y轴旋转"
-
-#~ msgid "Rotation angle around the Y axis in degrees (0-360, default: 0)."
-#~ msgstr "绕Y轴旋转角度(0-360,默认:0)。"
-
-#~ msgid "Save config file"
-#~ msgstr "ä¿å˜é…置文件"
-
-#~ msgid "Save configuration to the specified file."
-#~ msgstr "å°†é…ç½®å‚æ•°ä¿å˜åˆ°æŒ‡å®šæ–‡ä»¶ã€‚"
-
-#~ msgid "Scaling factor (default: 1)."
-#~ msgstr "缩放比例(默认:1)。"
-
-#~ msgid "Scale to Fit"
-#~ msgstr "缩放到åˆé€‚大å°"
-
-#~ msgid "Scale to fit the given volume."
-#~ msgstr "缩放到适åˆäºŽç»™å®šä½“积。"
diff --git a/resources/profiles/PrusaResearch.idx b/resources/profiles/PrusaResearch.idx
index a6f9deb28..f9849ad54 100644
--- a/resources/profiles/PrusaResearch.idx
+++ b/resources/profiles/PrusaResearch.idx
@@ -1,4 +1,9 @@
min_slic3r_version = 1.42.0-alpha6
+0.8.0-rc Updated for the PrusaSlicer 2.0.0-rc release
+0.8.0-beta4 Updated SLA profiles
+0.8.0-beta3 Updated SLA profiles
+0.8.0-beta2 Updated SLA profiles
+0.8.0-beta1 Updated SLA profiles
0.8.0-beta Updated SLA profiles
0.8.0-alpha9 Updated SLA and FFF profiles
0.8.0-alpha8 Updated SLA profiles
@@ -10,6 +15,7 @@ min_slic3r_version = 1.42.0-alpha
0.4.0-alpha3 Update of SLA profiles
0.4.0-alpha2 First SLA profiles
min_slic3r_version = 1.41.3-alpha
+0.4.5 Enabled remaining time support for MK2/S/MMU1
0.4.4 Changelog: https://github.com/prusa3d/Slic3r-settings/blob/master/live/PrusaResearch/changelog.txt
0.4.3 Changelog: https://github.com/prusa3d/Slic3r-settings/blob/master/live/PrusaResearch/changelog.txt
0.4.2 Changelog: https://github.com/prusa3d/Slic3r-settings/blob/master/live/PrusaResearch/changelog.txt
diff --git a/resources/profiles/PrusaResearch.ini b/resources/profiles/PrusaResearch.ini
index 2d455ffb6..24d592469 100644
--- a/resources/profiles/PrusaResearch.ini
+++ b/resources/profiles/PrusaResearch.ini
@@ -8,9 +8,10 @@ full_name = Prusa {technology} Technology Printers
# Configuration version of this file. Config file will only be installed, if the config_version differs.
# This means, the server may force the Slic3r configuration to be downgraded.
-config_version = 0.8.0-beta
+config_version = 0.8.0-rc
# Where to get the updates from?
config_update_url = https://raw.githubusercontent.com/prusa3d/Slic3r-settings/master/live/PrusaResearch/
+changelog_url = http://files.prusa3d.com/?latest=slicer-profiles&lng=%1%
# The printer models will be shown by the Configuration Wizard in this order,
# also the first model installed & the first nozzle installed will be activated after install.
@@ -32,13 +33,13 @@ family = MK3
[printer_model:MK3SMMU2S]
name = Original Prusa i3 MK3S MMU2S
-variants = 0.4
+variants = 0.4; 0.25; 0.6
technology = FFF
family = MK3
[printer_model:MK3MMU2]
name = Original Prusa i3 MK3 MMU2
-variants = 0.4
+variants = 0.4; 0.25; 0.6
technology = FFF
family = MK3
@@ -56,13 +57,13 @@ family = MK2.5
[printer_model:MK2.5SMMU2S]
name = Original Prusa i3 MK2.5S MMU2S
-variants = 0.4
+variants = 0.4; 0.25; 0.6
technology = FFF
family = MK2.5
[printer_model:MK2.5MMU2]
name = Original Prusa i3 MK2.5 MMU2
-variants = 0.4
+variants = 0.4; 0.25; 0.6
technology = FFF
family = MK2.5
@@ -1312,7 +1313,7 @@ temperature = 220
inherits = *PET*
filament_cost = 27.82
filament_density = 1.27
-filament_notes = "List of manufacturers tested with standard PET print settings:\n\nE3D Edge\nFillamentum CPE GH100\nPlasty Mladec PETG"
+filament_notes = "List of manufacturers tested with standard PET print settings:\n\nE3D Edge\nPlasty Mladec PETG"
compatible_printers_condition = nozzle_diameter[0]!=0.6 and ! (printer_notes=~/.*PRINTER_VENDOR_PRUSA3D.*/ and printer_notes=~/.*PRINTER_MODEL_MK(2.5|3).*/ and single_extruder_multi_material)
[filament:Prusament PETG]
@@ -1327,7 +1328,7 @@ compatible_printers_condition = nozzle_diameter[0]!=0.6 and ! (printer_notes=~/.
inherits = *PET06*
filament_cost = 27.82
filament_density = 1.27
-filament_notes = "List of manufacturers tested with standard PET print settings:\n\nE3D Edge\nFillamentum CPE GH100\nPlasty Mladec PETG"
+filament_notes = "List of manufacturers tested with standard PET print settings:\n\nE3D Edge\nPlasty Mladec PETG"
[filament:Prusament PETG 0.6 nozzle]
inherits = *PET06*
@@ -1551,6 +1552,7 @@ pad_max_merge_distance = 50
pad_wall_height = 0
pad_wall_thickness = 1
pad_wall_slope = 90
+slice_closing_radius = 0.005
support_base_diameter = 3
support_base_height = 1
support_critical_angle = 45
@@ -1592,8 +1594,7 @@ compatible_prints_condition = layer_height == 0.05
exposure_time = 12
initial_exposure_time = 45
initial_layer_height = 0.05
-material_correction_curing = 1,1,1
-material_correction_printing = 1,1,1
+material_correction = 1,1,1
material_notes =
[sla_material:*common 0.025*]
@@ -1624,15 +1625,10 @@ inherits = *common 0.025*
exposure_time = 8
initial_exposure_time = 45
-[sla_material:Jamg He PJHC-30 Orange 0.025]
+[sla_material:Prusa Orange Solid 0.025]
inherits = *common 0.025*
exposure_time = 5
-initial_exposure_time = 35
-
-[sla_material:SL1 Orange solid 0.025]
-inherits = *common 0.025*
-exposure_time = 5
-initial_exposure_time = 35
+initial_exposure_time = 30
########### Materials 0.05
@@ -1676,30 +1672,25 @@ inherits = *common 0.05*
exposure_time = 10
initial_exposure_time = 60
-[sla_material:Jamg He PJHC-00 Yellow 0.05]
-inherits = *common 0.05*
-exposure_time = 7
-initial_exposure_time = 45
-
-[sla_material:Jamg He PJHC-19 Skin 0.05]
+[sla_material:Prusa Skin Solid 0.05]
inherits = *common 0.05*
exposure_time = 6
-initial_exposure_time = 45
+initial_exposure_time = 30
-[sla_material:Jamg He PJHC-30 Orange 0.05]
+[sla_material:Prusa Orange Solid 0.05]
inherits = *common 0.05*
exposure_time = 7.5
-initial_exposure_time = 45
+initial_exposure_time = 30
-[sla_material:Jamg He PJHC-60 Gray 0.05]
+[sla_material:Prusa Gray Solid 0.05]
inherits = *common 0.05*
exposure_time = 6
-initial_exposure_time = 45
+initial_exposure_time = 30
-[sla_material:Jamg He PJHC-70 Black 0.05]
+[sla_material:Prusa Black Solid 0.05]
inherits = *common 0.05*
exposure_time = 6
-initial_exposure_time = 45
+initial_exposure_time = 30
[sla_material:Monocure 3D Black Rapid Resin 0.05]
inherits = *common 0.05*
@@ -1756,129 +1747,109 @@ inherits = *common 0.05*
exposure_time = 9
initial_exposure_time = 40
-[sla_material:Jamg He LOC-19 Super Low Odor Skin 0.05]
-inherits = *common 0.05*
-exposure_time = 7.5
-initial_exposure_time = 40
+## [sla_material:Prusa Skin Super Low Odor 0.05]
+## inherits = *common 0.05*
+## exposure_time = 7.5
+## initial_exposure_time = 30
-[sla_material:Jamg He LOC-20 Super Low Odor White 0.05]
-inherits = *common 0.05*
-exposure_time = 6.5
-initial_exposure_time = 40
+## [sla_material:Prusa White Super Low Odor 0.05]
+## inherits = *common 0.05*
+## exposure_time = 6.5
+## initial_exposure_time = 30
-[sla_material:Jamg He LOC-60 Super Low Odor Grey 0.05]
-inherits = *common 0.05*
-exposure_time = 6.5
-initial_exposure_time = 40
+## [sla_material:Prusa Grey Super Low Odor 0.05]
+## inherits = *common 0.05*
+## exposure_time = 6.5
+## initial_exposure_time = 30
[sla_material:Harz Labs Model Resin Cherry 0.05]
inherits = *common 0.05*
exposure_time = 8
initial_exposure_time = 45
-[sla_material:Jamg He CRX-70C High Tenacity Black 0.05]
-inherits = *common 0.05*
-exposure_time = 7
-initial_exposure_time = 40
+## [sla_material:Prusa Black High Tenacity 0.05]
+## inherits = *common 0.05*
+## exposure_time = 7
+## initial_exposure_time = 30
-[sla_material:Jamg He MC-2000 Casting Green 0.05]
+[sla_material:Prusa Green Casting 0.05]
inherits = *common 0.05*
exposure_time = 13
-initial_exposure_time = 40
+initial_exposure_time = 30
-[sla_material:Jamg He PJHC-00 Solid Yellow 0.05]
+## [sla_material:Prusa Yellow Solid 0.05]
+## inherits = *common 0.05*
+## exposure_time = 7
+## initial_exposure_time = 30
+
+[sla_material:Prusa White Solid 0.05]
inherits = *common 0.05*
exposure_time = 7
-initial_exposure_time = 40
+initial_exposure_time = 30
-[sla_material:Jamg He PJHC-20 White 0.05]
+## [sla_material:Prusa Green Transparent 0.05]
+## inherits = *common 0.05*
+## exposure_time = 8
+## initial_exposure_time = 30
+
+[sla_material:Prusa Red Transparent 0.05]
inherits = *common 0.05*
exposure_time = 7
-initial_exposure_time = 45
+initial_exposure_time = 30
-[sla_material:Jamg He PJHC-80 Transparent Green 0.05]
+[sla_material:Prusa Maroon Solid 0.05]
inherits = *common 0.05*
-exposure_time = 8
-initial_exposure_time = 45
+exposure_time = 9
+initial_exposure_time = 30
-[sla_material:Jamg He PJHC-80 Transparent Red 0.05]
+[sla_material:Prusa Pink Solid 0.05]
inherits = *common 0.05*
exposure_time = 7
-initial_exposure_time = 45
+initial_exposure_time = 30
-[sla_material:Jamg He PJHC-81 Solid Maroon 0.05]
-inherits = *common 0.05*
-exposure_time = 9
-initial_exposure_time = 45
+## [sla_material:Prusa Yellow Flexible 0.05]
+## inherits = *common 0.05*
+## exposure_time = 9
+## initial_exposure_time = 30
-[sla_material:Jamg He PJHC-90 Solid Pink 0.05]
-inherits = *common 0.05*
-exposure_time = 7
-initial_exposure_time = 40
+## [sla_material:Prusa Clear Flexible 0.05]
+## inherits = *common 0.05*
+## exposure_time = 9
+## initial_exposure_time = 30
-[sla_material:Jamg He RJHC-00 Yellow Flexible 0.05]
-inherits = *common 0.05*
-exposure_time = 9
-initial_exposure_time = 40
+## [sla_material:Prusa White Flexible 0.05]
+## inherits = *common 0.05*
+## exposure_time = 9
+## initial_exposure_time = 30
-[sla_material:Jamg He RJHC-10 Clear Flexible 0.05]
-inherits = *common 0.05*
-exposure_time = 9
-initial_exposure_time = 40
+## [sla_material:Prusa Blue Flexible 0.05]
+## inherits = *common 0.05*
+## exposure_time = 9
+## initial_exposure_time = 30
-[sla_material:Jamg He RJHC-20 White Flexible 0.05]
-inherits = *common 0.05*
-exposure_time = 9
-initial_exposure_time = 40
+## [sla_material:Prusa Black Flexible 0.05]
+## inherits = *common 0.05*
+## exposure_time = 9
+## initial_exposure_time = 30
-[sla_material:Jamg He RJHC-50 Blue Flexible 0.05]
-inherits = *common 0.05*
-exposure_time = 9
-initial_exposure_time = 40
-
-[sla_material:Jamg He RJHC-70 Black Flexible 0.05]
-inherits = *common 0.05*
-exposure_time = 9
-initial_exposure_time = 40
-
-[sla_material:Jamg He RJHC-81 Red Flexible 0.05]
-inherits = *common 0.05*
-exposure_time = 9
-initial_exposure_time = 40
-
-[sla_material:SL1 Orange solid 0.05]
-inherits = *common 0.05*
-exposure_time = 7.5
-initial_exposure_time = 45
-
-[sla_material:SL1 Red transparent 0.05]
-inherits = *common 0.05*
-exposure_time = 7.5
-initial_exposure_time = 45
+## [sla_material:Prusa Red Flexible 0.05]
+## inherits = *common 0.05*
+## exposure_time = 9
+## initial_exposure_time = 30
########### Materials 0.035
-[sla_material:Jamg He PJHC-30 Orange 0.035]
+[sla_material:Prusa Orange Solid 0.035]
inherits = *common 0.035*
exposure_time = 6
-initial_exposure_time = 35
-
-[sla_material:SL1 Orange solid 0.035]
-inherits = *common 0.035*
-exposure_time = 6
-initial_exposure_time = 35
+initial_exposure_time = 30
########### Materials 0.1
-[sla_material:Jamg He PJHC-30 Orange 0.1]
+[sla_material:Prusa Orange Solid 0.1]
inherits = *common 0.1*
exposure_time = 10
-initial_exposure_time = 45
-
-[sla_material:SL1 Orange solid 0.1]
-inherits = *common 0.1*
-exposure_time = 10
-initial_exposure_time = 45
+initial_exposure_time = 30
[printer:*common*]
printer_technology = FFF
@@ -1886,12 +1857,12 @@ bed_shape = 0x0,250x0,250x210,0x210
before_layer_gcode = ;BEFORE_LAYER_CHANGE\nG92 E0.0\n;[layer_z]\n\n
between_objects_gcode =
deretract_speed = 0
-end_gcode = G4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nG1 X0 Y200; home X axis\nM84 ; disable motors
+end_gcode = G4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nG1 X0 Y200 F3000 ; home X axis\nM84 ; disable motors
extruder_colour = #FFFF00
extruder_offset = 0x0
gcode_flavor = marlin
silent_mode = 0
-remaining_times = 0
+remaining_times = 1
machine_max_acceleration_e = 10000
machine_max_acceleration_extruding = 2000
machine_max_acceleration_retracting = 1500
@@ -1931,7 +1902,7 @@ retract_speed = 35
serial_port =
serial_speed = 250000
single_extruder_multi_material = 0
-start_gcode = M115 U3.1.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM204 S[machine_max_acceleration_extruding] T[machine_max_acceleration_retracting] ; MK2 firmware only supports the old M204 format\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
+start_gcode = M115 U3.1.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM204 S[machine_max_acceleration_extruding] T[machine_max_acceleration_retracting] ; MK2 firmware only supports the old M204 format\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
toolchange_gcode =
use_firmware_retraction = 0
use_relative_e_distances = 1
@@ -1968,7 +1939,7 @@ printer_model = MK2SMM
inherits = *multimaterial*
end_gcode = G1 E-4 F2100.00000\nG91\nG1 Z1 F7200.000\nG90\nG1 X245 Y1\nG1 X240 E4\nG1 F4000\nG1 X190 E2.7 \nG1 F4600\nG1 X110 E2.8\nG1 F5200\nG1 X40 E3 \nG1 E-15.0000 F5000\nG1 E-50.0000 F5400\nG1 E-15.0000 F3000\nG1 E-12.0000 F2000\nG1 F1600\nG1 X0 Y1 E3.0000\nG1 X50 Y1 E-5.0000\nG1 F2000\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-5.0000\nG1 F2400\nG1 X0 Y1 E5.0000\nG1 X50 Y1 E-3.0000\nG4 S0\nM107 ; turn off fan\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nG28 X0 ; home X axis\nM84 ; disable motors\n\n
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_MK2\nPRINTER_HAS_BOWDEN
-start_gcode = M115 U3.1.0 ; tell printer latest fw version\nM204 S[machine_max_acceleration_extruding] T[machine_max_acceleration_retracting] ; MK2 firmware only supports the old M204 format\n; Start G-Code sequence START\nT?\nM104 S[first_layer_temperature]\nM140 S[first_layer_bed_temperature]\nM109 S[first_layer_temperature]\nM190 S[first_layer_bed_temperature]\nG21 ; set units to millimeters\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG28 W\nG80\nG92 E0.0\nM203 E100\nM92 E140\nG1 Z0.250 F7200.000\nG1 X50.0 E80.0 F1000.0\nG1 X160.0 E20.0 F1000.0\nG1 Z0.200 F7200.000\nG1 X220.0 E13 F1000.0\nG1 X240.0 E0 F1000.0\nG92 E0.0
+start_gcode = M115 U3.1.0 ; tell printer latest fw version\nM204 S[machine_max_acceleration_extruding] T[machine_max_acceleration_retracting] ; MK2 firmware only supports the old M204 format\n; Start G-Code sequence START\nT?\nM104 S[first_layer_temperature]\nM140 S[first_layer_bed_temperature]\nM109 S[first_layer_temperature]\nM190 S[first_layer_bed_temperature]\nG21 ; set units to millimeters\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG28 W\nG80\nG92 E0.0\nM203 E100\nM92 E140\nG1 Z0.250 F7200.000\nG1 X50.0 E80.0 F1000.0\nG1 X160.0 E20.0 F1000.0\nG1 Z0.200 F7200.000\nG1 X220.0 E13 F1000.0\nG1 X240.0 E0 F1000.0\nG92 E0.0
default_print_profile = 0.15mm OPTIMAL
[printer:*mm-multi*]
@@ -1978,7 +1949,7 @@ end_gcode = {if not has_wipe_tower}\n; Pull the filament into the cooling tubes.
extruder_colour = #FFAA55;#E37BA0;#4ECDD3;#FB7259
nozzle_diameter = 0.4,0.4,0.4,0.4
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_MK2\nPRINTER_HAS_BOWDEN
-start_gcode = M115 U3.1.0 ; tell printer latest fw version\nM204 S[machine_max_acceleration_extruding] T[machine_max_acceleration_retracting] ; MK2 firmware only supports the old M204 format\n; Start G-Code sequence START\nT[initial_tool]\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG21 ; set units to millimeters\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG28 W\nG80\nG92 E0.0\nM203 E100 ; set max feedrate\nM92 E140 ; E-steps per filament milimeter\n{if not has_single_extruder_multi_material_priming}\nG1 Z0.250 F7200.000\nG1 X50.0 E80.0 F1000.0\nG1 X160.0 E20.0 F1000.0\nG1 Z0.200 F7200.000\nG1 X220.0 E13 F1000.0\nG1 X240.0 E0 F1000.0\n{endif}\nG92 E0.0
+start_gcode = M115 U3.1.0 ; tell printer latest fw version\nM204 S[machine_max_acceleration_extruding] T[machine_max_acceleration_retracting] ; MK2 firmware only supports the old M204 format\n; Start G-Code sequence START\nT[initial_tool]\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG21 ; set units to millimeters\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG28 W\nG80\nG92 E0.0\nM203 E100 ; set max feedrate\nM92 E140 ; E-steps per filament milimeter\n{if not has_single_extruder_multi_material_priming}\nG1 Z0.250 F7200.000\nG1 X50.0 E80.0 F1000.0\nG1 X160.0 E20.0 F1000.0\nG1 Z0.200 F7200.000\nG1 X220.0 E13 F1000.0\nG1 X240.0 E0 F1000.0\n{endif}\nG92 E0.0
default_print_profile = 0.15mm OPTIMAL
# XXXXXXXXXXXXXXXXX
@@ -2046,19 +2017,19 @@ min_layer_height = 0.1
inherits = Original Prusa i3 MK2S
printer_model = MK2.5
remaining_times = 1
-start_gcode = M115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
[printer:Original Prusa i3 MK2.5 0.25 nozzle]
inherits = Original Prusa i3 MK2S 0.25 nozzle
printer_model = MK2.5
remaining_times = 1
-start_gcode = M115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
[printer:Original Prusa i3 MK2.5 0.6 nozzle]
inherits = Original Prusa i3 MK2S 0.6 nozzle
printer_model = MK2.5
remaining_times = 1
-start_gcode = M115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
[printer:Original Prusa i3 MK2.5 MMU2 Single]
inherits = Original Prusa i3 MK2.5; *mm2*
@@ -2087,8 +2058,16 @@ machine_min_travel_rate = 0
default_print_profile = 0.15mm OPTIMAL MK2.5
default_filament_profile = Prusament PLA
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_MK2.5\n
-start_gcode = M107\nM115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nTx\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\n\nG21 ; set units to millimeters\n\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nTc\n; purge line\nG1 X55.0 E8.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F2200.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG92 E0.0\n
-end_gcode = G1 X0 Y210 F7200\nG1 E2 F5000\nG1 E2 F5500\nG1 E2 F6000\nG1 E-15.0000 F5800\nG1 E-20.0000 F5500\nG1 E10.0000 F3000\nG1 E-10.0000 F3100\nG1 E10.0000 F3150\nG1 E-10.0000 F3250\nG1 E10.0000 F3300\n\nM702 C\n\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200; home X axis\nM84 ; disable motors
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\n; select extruder\nTx\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\n\nG21 ; set units to millimeters\n\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; load to nozzle\nTc\n; purge line\nG1 X55.0 E8.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F2200.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\nG92 E0.0\n
+end_gcode = G1 X0 Y210 F7200\nG1 E2 F5000\nG1 E2 F5500\nG1 E2 F6000\nG1 E-15.0000 F5800\nG1 E-20.0000 F5500\nG1 E10.0000 F3000\nG1 E-10.0000 F3100\nG1 E10.0000 F3150\nG1 E-10.0000 F3250\nG1 E10.0000 F3300\n\nM702 C\n\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200 F3000 ; home X axis\nM84 ; disable motors
+
+[printer:Original Prusa i3 MK2.5 MMU2 Single 0.6 nozzle]
+inherits = Original Prusa i3 MK2.5S MMU2S Single 0.6 nozzle
+printer_model = MK2.5MMU2
+
+[printer:Original Prusa i3 MK2.5 MMU2 Single 0.25 nozzle]
+inherits = Original Prusa i3 MK2.5S MMU2S Single 0.25 nozzle
+printer_model = MK2.5MMU2
[printer:Original Prusa i3 MK2.5 MMU2]
inherits = Original Prusa i3 MK2.5; *mm2*
@@ -2121,23 +2100,23 @@ single_extruder_multi_material = 1
# to be defined explicitely.
nozzle_diameter = 0.4,0.4,0.4,0.4,0.4
extruder_colour = #FF8000;#DB5182;#00FFFF;#FF4F4F;#9FFF9F
-start_gcode = M107\nM115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG21 ; set units to millimeters\n\n; Send the filament type to the MMU2.0 unit.\n; E stands for extruder number, F stands for filament type (0: default; 1:flex; 2: PVA)\nM403 E0 F{"" + ((filament_type[0]=="FLEX") ? 1 : ((filament_type[0]=="PVA") ? 2 : 0))}\nM403 E1 F{"" + ((filament_type[1]=="FLEX") ? 1 : ((filament_type[1]=="PVA") ? 2 : 0))}\nM403 E2 F{"" + ((filament_type[2]=="FLEX") ? 1 : ((filament_type[2]=="PVA") ? 2 : 0))}\nM403 E3 F{"" + ((filament_type[3]=="FLEX") ? 1 : ((filament_type[3]=="PVA") ? 2 : 0))}\nM403 E4 F{"" + ((filament_type[4]=="FLEX") ? 1 : ((filament_type[4]=="PVA") ? 2 : 0))}\n\n{if not has_single_extruder_multi_material_priming}\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nT[initial_tool]\n; initial load\nG1 X55.0 E32.0 F1073.0\nG1 X5.0 E32.0 F1800.0\nG1 X55.0 E8.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F2200.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\nG92 E0.0\n{endif}\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG92 E0.0\n
-end_gcode = {if has_wipe_tower}\nG1 E-15.0000 F3000\n{else}\nG1 X0 Y210 F7200\nG1 E2 F5000\nG1 E2 F5500\nG1 E2 F6000\nG1 E-15.0000 F5800\nG1 E-20.0000 F5500\nG1 E10.0000 F3000\nG1 E-10.0000 F3100\nG1 E10.0000 F3150\nG1 E-10.0000 F3250\nG1 E10.0000 F3300\n{endif}\n\n; Unload filament\nM702 C\n\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\n; Lift print head a bit\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nG1 X0 Y200; home X axis\nM84 ; disable motors\n
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG21 ; set units to millimeters\n\n; Send the filament type to the MMU2.0 unit.\n; E stands for extruder number, F stands for filament type (0: default; 1:flex; 2: PVA)\nM403 E0 F{"" + ((filament_type[0]=="FLEX") ? 1 : ((filament_type[0]=="PVA") ? 2 : 0))}\nM403 E1 F{"" + ((filament_type[1]=="FLEX") ? 1 : ((filament_type[1]=="PVA") ? 2 : 0))}\nM403 E2 F{"" + ((filament_type[2]=="FLEX") ? 1 : ((filament_type[2]=="PVA") ? 2 : 0))}\nM403 E3 F{"" + ((filament_type[3]=="FLEX") ? 1 : ((filament_type[3]=="PVA") ? 2 : 0))}\nM403 E4 F{"" + ((filament_type[4]=="FLEX") ? 1 : ((filament_type[4]=="PVA") ? 2 : 0))}\n\n{if not has_single_extruder_multi_material_priming}\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nT[initial_tool]\n; initial load\nG1 X55.0 E32.0 F1073.0\nG1 X5.0 E32.0 F1800.0\nG1 X55.0 E8.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F2200.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\nG92 E0.0\n{endif}\nG92 E0.0\n
+end_gcode = {if has_wipe_tower}\nG1 E-15.0000 F3000\n{else}\nG1 X0 Y210 F7200\nG1 E2 F5000\nG1 E2 F5500\nG1 E2 F6000\nG1 E-15.0000 F5800\nG1 E-20.0000 F5500\nG1 E10.0000 F3000\nG1 E-10.0000 F3100\nG1 E10.0000 F3150\nG1 E-10.0000 F3250\nG1 E10.0000 F3300\n{endif}\n\n; Unload filament\nM702 C\n\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\n; Lift print head a bit\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nG1 X0 Y200 F3000 ; home X axis\nM84 ; disable motors\n
[printer:Original Prusa i3 MK2.5S]
inherits = Original Prusa i3 MK2.5
printer_model = MK2.5S
-start_gcode = M115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
[printer:Original Prusa i3 MK2.5S 0.25 nozzle]
inherits = Original Prusa i3 MK2.5 0.25 nozzle
printer_model = MK2.5S
-start_gcode = M115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
[printer:Original Prusa i3 MK2.5S 0.6 nozzle]
inherits = Original Prusa i3 MK2.5 0.6 nozzle
printer_model = MK2.5S
-start_gcode = M115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0
[printer:Original Prusa i3 MK2.5S MMU2S Single]
inherits = Original Prusa i3 MK2.5; *mm2s*
@@ -2166,8 +2145,27 @@ machine_min_travel_rate = 0
default_print_profile = 0.15mm OPTIMAL MK2.5
default_filament_profile = Prusament PLA
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_MK2.5\n
-start_gcode = M107\nM115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nTx\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\n\nG21 ; set units to millimeters\n\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nTc\n; purge line\nG1 X55.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F2200.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG92 E0.0\n
-end_gcode = G1 X0 Y210 F7200\nG1 E2 F5000\nG1 E2 F5500\nG1 E2 F6000\nG1 E-15.0000 F5800\nG1 E-20.0000 F5500\nG1 E10.0000 F3000\nG1 E-10.0000 F3100\nG1 E10.0000 F3150\nG1 E-10.0000 F3250\nG1 E10.0000 F3300\n\nM702 C\n\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200; home X axis\nM84 ; disable motors
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nTx\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\n\nG21 ; set units to millimeters\n\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nTc\n; purge line\nG1 X55.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F2200.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\nG92 E0.0\n
+end_gcode = G1 X0 Y210 F7200\nG1 E2 F5000\nG1 E2 F5500\nG1 E2 F6000\nG1 E-15.0000 F5800\nG1 E-20.0000 F5500\nG1 E10.0000 F3000\nG1 E-10.0000 F3100\nG1 E10.0000 F3150\nG1 E-10.0000 F3250\nG1 E10.0000 F3300\n\nM702 C\n\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200 F3000 ; home X axis\nM84 ; disable motors
+
+[printer:Original Prusa i3 MK2.5S MMU2S Single 0.6 nozzle]
+inherits = Original Prusa i3 MK2.5S MMU2S Single
+printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_MK2\n
+max_layer_height = 0.35
+min_layer_height = 0.1
+nozzle_diameter = 0.6
+printer_variant = 0.6
+default_print_profile = 0.20mm NORMAL 0.6 nozzle
+
+[printer:Original Prusa i3 MK2.5S MMU2S Single 0.25 nozzle]
+inherits = Original Prusa i3 MK2.5S MMU2S Single
+printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_MK2\n
+max_layer_height = 0.15
+min_layer_height = 0.05
+nozzle_diameter = 0.25
+printer_variant = 0.25
+default_print_profile = 0.10mm DETAIL 0.25 nozzle
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nTx\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\n\nG21 ; set units to millimeters\n\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nTc\n; purge line\nG1 X55.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F1400.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\nG92 E0.0\n
[printer:Original Prusa i3 MK2.5S MMU2S]
inherits = Original Prusa i3 MK2.5; *mm2s*
@@ -2200,8 +2198,8 @@ single_extruder_multi_material = 1
# to be defined explicitely.
nozzle_diameter = 0.4,0.4,0.4,0.4,0.4
extruder_colour = #FF8000;#DB5182;#00FFFF;#FF4F4F;#9FFF9F
-start_gcode = M107\nM115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG21 ; set units to millimeters\n\n; Send the filament type to the MMU2.0 unit.\n; E stands for extruder number, F stands for filament type (0: default; 1:flex; 2: PVA)\nM403 E0 F{"" + ((filament_type[0]=="FLEX") ? 1 : ((filament_type[0]=="PVA") ? 2 : 0))}\nM403 E1 F{"" + ((filament_type[1]=="FLEX") ? 1 : ((filament_type[1]=="PVA") ? 2 : 0))}\nM403 E2 F{"" + ((filament_type[2]=="FLEX") ? 1 : ((filament_type[2]=="PVA") ? 2 : 0))}\nM403 E3 F{"" + ((filament_type[3]=="FLEX") ? 1 : ((filament_type[3]=="PVA") ? 2 : 0))}\nM403 E4 F{"" + ((filament_type[4]=="FLEX") ? 1 : ((filament_type[4]=="PVA") ? 2 : 0))}\n\n{if not has_single_extruder_multi_material_priming}\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nT[initial_tool]\n; initial load\nG1 X55.0 E29.0 F1073.0\nG1 X5.0 E29.0 F1800.0\nG1 X55.0 E8.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F2200.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\nG92 E0.0\n{endif}\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG92 E0.0\n
-end_gcode = {if has_wipe_tower}\nG1 E-15.0000 F3000\n{else}\nG1 X0 Y210 F7200\nG1 E2 F5000\nG1 E2 F5500\nG1 E2 F6000\nG1 E-15.0000 F5800\nG1 E-20.0000 F5500\nG1 E10.0000 F3000\nG1 E-10.0000 F3100\nG1 E10.0000 F3150\nG1 E-10.0000 F3250\nG1 E10.0000 F3300\n{endif}\n\n; Unload filament\nM702 C\n\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\n; Lift print head a bit\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nG1 X0 Y200; home X axis\nM84 ; disable motors\n
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG21 ; set units to millimeters\n\n; Send the filament type to the MMU2.0 unit.\n; E stands for extruder number, F stands for filament type (0: default; 1:flex; 2: PVA)\nM403 E0 F{"" + ((filament_type[0]=="FLEX") ? 1 : ((filament_type[0]=="PVA") ? 2 : 0))}\nM403 E1 F{"" + ((filament_type[1]=="FLEX") ? 1 : ((filament_type[1]=="PVA") ? 2 : 0))}\nM403 E2 F{"" + ((filament_type[2]=="FLEX") ? 1 : ((filament_type[2]=="PVA") ? 2 : 0))}\nM403 E3 F{"" + ((filament_type[3]=="FLEX") ? 1 : ((filament_type[3]=="PVA") ? 2 : 0))}\nM403 E4 F{"" + ((filament_type[4]=="FLEX") ? 1 : ((filament_type[4]=="PVA") ? 2 : 0))}\n\n{if not has_single_extruder_multi_material_priming}\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nT[initial_tool]\n; initial load\nG1 X55.0 E29.0 F1073.0\nG1 X5.0 E29.0 F1800.0\nG1 X55.0 E8.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F2200.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\nG92 E0.0\n{endif}\nG92 E0.0\n
+end_gcode = {if has_wipe_tower}\nG1 E-15.0000 F3000\n{else}\nG1 X0 Y210 F7200\nG1 E2 F5000\nG1 E2 F5500\nG1 E2 F6000\nG1 E-15.0000 F5800\nG1 E-20.0000 F5500\nG1 E10.0000 F3000\nG1 E-10.0000 F3100\nG1 E10.0000 F3150\nG1 E-10.0000 F3250\nG1 E10.0000 F3300\n{endif}\n\n; Unload filament\nM702 C\n\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\n; Lift print head a bit\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nG1 X0 Y200 F3000 ; home X axis\nM84 ; disable motors\n
# XXXXXXXXXXXXXXXXX
@@ -2210,7 +2208,7 @@ end_gcode = {if has_wipe_tower}\nG1 E-15.0000 F3000\n{else}\nG1 X0 Y210 F7200\nG
[printer:Original Prusa i3 MK3]
inherits = *common*
-end_gcode = G4 ; wait\nM221 S100\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nG1 X0 Y200; home X axis\nM84 ; disable motors
+end_gcode = G4 ; wait\nM221 S100\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nG1 X0 Y200 F3000 ; home X axis\nM84 ; disable motors
machine_max_acceleration_e = 5000,5000
machine_max_acceleration_extruding = 1250,1250
machine_max_acceleration_retracting = 1250,1250
@@ -2232,7 +2230,7 @@ remaining_times = 1
printer_notes = Don't remove the following keywords! These keywords are used in the "compatible printer" condition of the print and filament profiles to link the particular print and filament profiles to this printer profile.\nPRINTER_VENDOR_PRUSA3D\nPRINTER_MODEL_MK3\n
retract_lift_below = 209
max_print_height = 210
-start_gcode = M115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height<0.075}100{else}95{endif}
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height<0.075}100{else}95{endif}
printer_model = MK3
default_print_profile = 0.15mm QUALITY MK3
@@ -2242,7 +2240,7 @@ nozzle_diameter = 0.25
max_layer_height = 0.15
min_layer_height = 0.05
printer_variant = 0.25
-start_gcode = M115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E8.0 F700.0 ; intro line\nG1 X100.0 E12.5 F700.0 ; intro line\nG92 E0.0\nM221 S{if layer_height<0.075}100{else}95{endif}
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E8.0 F700.0 ; intro line\nG1 X100.0 E12.5 F700.0 ; intro line\nG92 E0.0\nM221 S{if layer_height<0.075}100{else}95{endif}
default_print_profile = 0.10mm DETAIL 0.25 nozzle MK3
[printer:Original Prusa i3 MK3 0.6 nozzle]
@@ -2256,17 +2254,17 @@ default_print_profile = 0.30mm QUALITY 0.6 nozzle MK3
[printer:Original Prusa i3 MK3S]
inherits = Original Prusa i3 MK3
printer_model = MK3S
-start_gcode = M115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height<0.075}100{else}95{endif}
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height<0.075}100{else}95{endif}
[printer:Original Prusa i3 MK3S 0.25 nozzle]
inherits = Original Prusa i3 MK3 0.25 nozzle
printer_model = MK3S
-start_gcode = M115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E8.0 F700.0 ; intro line\nG1 X100.0 E12.5 F700.0 ; intro line\nG92 E0.0\nM221 S{if layer_height<0.075}100{else}95{endif}
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E8.0 F700.0 ; intro line\nG1 X100.0 E12.5 F700.0 ; intro line\nG92 E0.0\nM221 S{if layer_height<0.075}100{else}95{endif}
[printer:Original Prusa i3 MK3S 0.6 nozzle]
inherits = Original Prusa i3 MK3 0.6 nozzle
printer_model = MK3S
-start_gcode = M115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height<0.075}100{else}95{endif}
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG1 Y-3.0 F1000.0 ; go outside print area\nG92 E0.0\nG1 X60.0 E9.0 F1000.0 ; intro line\nG1 X100.0 E12.5 F1000.0 ; intro line\nG92 E0.0\nM221 S{if layer_height<0.075}100{else}95{endif}
[printer:*mm2*]
inherits = Original Prusa i3 MK3
@@ -2296,8 +2294,27 @@ default_filament_profile = Prusament PLA MMU2
inherits = *mm2*
single_extruder_multi_material = 0
default_filament_profile = Prusament PLA
-start_gcode = M107\nM115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nTx\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\n\nG21 ; set units to millimeters\n\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nTc\n; purge line\nG1 X55.0 E8.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F2200.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\n\nM221 S{if layer_height<0.075}100{else}95{endif}\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG92 E0.0\n
-end_gcode = G1 X0 Y210 F7200\nG1 E2 F5000\nG1 E2 F5500\nG1 E2 F6000\nG1 E-15.0000 F5800\nG1 E-20.0000 F5500\nG1 E10.0000 F3000\nG1 E-10.0000 F3100\nG1 E10.0000 F3150\nG1 E-10.0000 F3250\nG1 E10.0000 F3300\n\nM702 C\n\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200; home X axis\nM84 ; disable motors
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nTx\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\n\nG21 ; set units to millimeters\n\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nTc\n; purge line\nG1 X55.0 E8.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F2200.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\n\nM221 S{if layer_height<0.075}100{else}95{endif}\nG92 E0.0\n
+end_gcode = G1 X0 Y210 F7200\nG1 E2 F5000\nG1 E2 F5500\nG1 E2 F6000\nG1 E-15.0000 F5800\nG1 E-20.0000 F5500\nG1 E10.0000 F3000\nG1 E-10.0000 F3100\nG1 E10.0000 F3150\nG1 E-10.0000 F3250\nG1 E10.0000 F3300\n\nM702 C\n\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200 F3000 ; home X axis\nM84 ; disable motors
+
+[printer:Original Prusa i3 MK3 MMU2 Single 0.6 nozzle]
+inherits = Original Prusa i3 MK3 MMU2 Single
+single_extruder_multi_material = 0
+nozzle_diameter = 0.6
+max_layer_height = 0.40
+min_layer_height = 0.15
+printer_variant = 0.6
+default_print_profile = 0.30mm QUALITY 0.6 nozzle MK3
+
+[printer:Original Prusa i3 MK3 MMU2 Single 0.25 nozzle]
+inherits = Original Prusa i3 MK3 MMU2 Single
+single_extruder_multi_material = 0
+nozzle_diameter = 0.25
+max_layer_height = 0.15
+min_layer_height = 0.05
+printer_variant = 0.25
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nTx\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\n\nG21 ; set units to millimeters\n\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nTc\n; purge line\nG1 X55.0 E8.0 F1000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F1400.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\n\nM221 S{if layer_height<0.075}100{else}95{endif}\nG92 E0.0\n
+default_print_profile = 0.10mm DETAIL 0.25 nozzle MK3
[printer:Original Prusa i3 MK3 MMU2]
inherits = *mm2*
@@ -2307,31 +2324,60 @@ inherits = *mm2*
machine_max_acceleration_e = 8000,8000
nozzle_diameter = 0.4,0.4,0.4,0.4,0.4
extruder_colour = #FF8000;#DB5182;#00FFFF;#FF4F4F;#9FFF9F
-start_gcode = M107\nM115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG21 ; set units to millimeters\n\n; Send the filament type to the MMU2.0 unit.\n; E stands for extruder number, F stands for filament type (0: default; 1:flex; 2: PVA)\nM403 E0 F{"" + ((filament_type[0]=="FLEX") ? 1 : ((filament_type[0]=="PVA") ? 2 : 0))}\nM403 E1 F{"" + ((filament_type[1]=="FLEX") ? 1 : ((filament_type[1]=="PVA") ? 2 : 0))}\nM403 E2 F{"" + ((filament_type[2]=="FLEX") ? 1 : ((filament_type[2]=="PVA") ? 2 : 0))}\nM403 E3 F{"" + ((filament_type[3]=="FLEX") ? 1 : ((filament_type[3]=="PVA") ? 2 : 0))}\nM403 E4 F{"" + ((filament_type[4]=="FLEX") ? 1 : ((filament_type[4]=="PVA") ? 2 : 0))}\n\n{if not has_single_extruder_multi_material_priming}\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nT[initial_tool]\n; initial load\nG1 X55.0 E32.0 F1073.0\nG1 X5.0 E32.0 F1800.0\nG1 X55.0 E8.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F2200.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\nG92 E0.0\n{endif}\n\nM221 S{if layer_height<0.075}100{else}95{endif}\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG92 E0.0\n
-end_gcode = {if has_wipe_tower}\nG1 E-15.0000 F3000\n{else}\nG1 X0 Y210 F7200\nG1 E2 F5000\nG1 E2 F5500\nG1 E2 F6000\nG1 E-15.0000 F5800\nG1 E-20.0000 F5500\nG1 E10.0000 F3000\nG1 E-10.0000 F3100\nG1 E10.0000 F3150\nG1 E-10.0000 F3250\nG1 E10.0000 F3300\n{endif}\n\n; Unload filament\nM702 C\n\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\n; Lift print head a bit\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nG1 X0 Y200; home X axis\nM84 ; disable motors\n
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG21 ; set units to millimeters\n\n; Send the filament type to the MMU2.0 unit.\n; E stands for extruder number, F stands for filament type (0: default; 1:flex; 2: PVA)\nM403 E0 F{"" + ((filament_type[0]=="FLEX") ? 1 : ((filament_type[0]=="PVA") ? 2 : 0))}\nM403 E1 F{"" + ((filament_type[1]=="FLEX") ? 1 : ((filament_type[1]=="PVA") ? 2 : 0))}\nM403 E2 F{"" + ((filament_type[2]=="FLEX") ? 1 : ((filament_type[2]=="PVA") ? 2 : 0))}\nM403 E3 F{"" + ((filament_type[3]=="FLEX") ? 1 : ((filament_type[3]=="PVA") ? 2 : 0))}\nM403 E4 F{"" + ((filament_type[4]=="FLEX") ? 1 : ((filament_type[4]=="PVA") ? 2 : 0))}\n\n{if not has_single_extruder_multi_material_priming}\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nT[initial_tool]\n; initial load\nG1 X55.0 E32.0 F1073.0\nG1 X5.0 E32.0 F1800.0\nG1 X55.0 E8.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F2200.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\nG92 E0.0\n{endif}\n\nM221 S{if layer_height<0.075}100{else}95{endif}\nG92 E0.0\n
+end_gcode = {if has_wipe_tower}\nG1 E-15.0000 F3000\n{else}\nG1 X0 Y210 F7200\nG1 E2 F5000\nG1 E2 F5500\nG1 E2 F6000\nG1 E-15.0000 F5800\nG1 E-20.0000 F5500\nG1 E10.0000 F3000\nG1 E-10.0000 F3100\nG1 E10.0000 F3150\nG1 E-10.0000 F3250\nG1 E10.0000 F3300\n{endif}\n\n; Unload filament\nM702 C\n\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\n; Lift print head a bit\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nG1 X0 Y200 F3000 ; home X axis\nM84 ; disable motors\n
[printer:Original Prusa i3 MK3S MMU2S Single]
inherits = *mm2s*
single_extruder_multi_material = 0
default_filament_profile = Prusament PLA
-start_gcode = M107\nM115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nTx\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\n\nG21 ; set units to millimeters\n\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nTc\n; purge line\nG1 X55.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F2200.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\n\nM221 S{if layer_height<0.075}100{else}95{endif}\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG92 E0.0\n
-end_gcode = G1 X0 Y210 F7200\nG1 E2 F5000\nG1 E2 F5500\nG1 E2 F6000\nG1 E-15.0000 F5800\nG1 E-20.0000 F5500\nG1 E10.0000 F3000\nG1 E-10.0000 F3100\nG1 E10.0000 F3150\nG1 E-10.0000 F3250\nG1 E10.0000 F3300\n\nM702 C\n\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200; home X axis\nM84 ; disable motors
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nTx\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\n\nG21 ; set units to millimeters\n\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nTc\n; purge line\nG1 X55.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F2200.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\n\nM221 S{if layer_height<0.075}100{else}95{endif}\nG92 E0.0\n
+end_gcode = G1 X0 Y210 F7200\nG1 E2 F5000\nG1 E2 F5500\nG1 E2 F6000\nG1 E-15.0000 F5800\nG1 E-20.0000 F5500\nG1 E10.0000 F3000\nG1 E-10.0000 F3100\nG1 E10.0000 F3150\nG1 E-10.0000 F3250\nG1 E10.0000 F3300\n\nM702 C\n\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\nG1 X0 Y200 F3000 ; home X axis\nM84 ; disable motors
+
+[printer:Original Prusa i3 MK3S MMU2S Single 0.6 nozzle]
+inherits = Original Prusa i3 MK3S MMU2S Single
+single_extruder_multi_material = 0
+nozzle_diameter = 0.6
+max_layer_height = 0.40
+min_layer_height = 0.15
+printer_variant = 0.6
+default_print_profile = 0.30mm QUALITY 0.6 nozzle MK3
+
+[printer:Original Prusa i3 MK3S MMU2S Single 0.25 nozzle]
+inherits = Original Prusa i3 MK3S MMU2S Single
+single_extruder_multi_material = 0
+nozzle_diameter = 0.25
+max_layer_height = 0.15
+min_layer_height = 0.05
+printer_variant = 0.25
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nTx\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\n\nG21 ; set units to millimeters\n\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nTc\n; purge line\nG1 X55.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F1400.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\n\nM221 S{if layer_height<0.075}100{else}95{endif}\nG92 E0.0\n
+default_print_profile = 0.10mm DETAIL 0.25 nozzle MK3
[printer:Original Prusa i3 MK3S MMU2S]
inherits = *mm2s*
machine_max_acceleration_e = 8000,8000
nozzle_diameter = 0.4,0.4,0.4,0.4,0.4
extruder_colour = #FF8000;#DB5182;#00FFFF;#FF4F4F;#9FFF9F
-start_gcode = M107\nM115 U3.6.0 ; tell printer latest fw version\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG21 ; set units to millimeters\n\n; Send the filament type to the MMU2.0 unit.\n; E stands for extruder number, F stands for filament type (0: default; 1:flex; 2: PVA)\nM403 E0 F{"" + ((filament_type[0]=="FLEX") ? 1 : ((filament_type[0]=="PVA") ? 2 : 0))}\nM403 E1 F{"" + ((filament_type[1]=="FLEX") ? 1 : ((filament_type[1]=="PVA") ? 2 : 0))}\nM403 E2 F{"" + ((filament_type[2]=="FLEX") ? 1 : ((filament_type[2]=="PVA") ? 2 : 0))}\nM403 E3 F{"" + ((filament_type[3]=="FLEX") ? 1 : ((filament_type[3]=="PVA") ? 2 : 0))}\nM403 E4 F{"" + ((filament_type[4]=="FLEX") ? 1 : ((filament_type[4]=="PVA") ? 2 : 0))}\n\n{if not has_single_extruder_multi_material_priming}\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nT[initial_tool]\n; initial load\nG1 X55.0 E29.0 F1073.0\nG1 X5.0 E29.0 F1800.0\nG1 X55.0 E8.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F2200.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\nG92 E0.0\n{endif}\n\nM221 S{if layer_height<0.075}100{else}95{endif}\nG90 ; use absolute coordinates\nM83 ; use relative distances for extrusion\nG92 E0.0\n
-end_gcode = {if has_wipe_tower}\nG1 E-15.0000 F3000\n{else}\nG1 X0 Y210 F7200\nG1 E2 F5000\nG1 E2 F5500\nG1 E2 F6000\nG1 E-15.0000 F5800\nG1 E-20.0000 F5500\nG1 E10.0000 F3000\nG1 E-10.0000 F3100\nG1 E10.0000 F3150\nG1 E-10.0000 F3250\nG1 E10.0000 F3300\n{endif}\n\n; Unload filament\nM702 C\n\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\n; Lift print head a bit\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nG1 X0 Y200; home X axis\nM84 ; disable motors\n
+start_gcode = M115 U3.6.0 ; tell printer latest fw version\nG90 ; use absolute coordinates\nM83 ; extruder relative mode\nM104 S[first_layer_temperature] ; set extruder temp\nM140 S[first_layer_bed_temperature] ; set bed temp\nM190 S[first_layer_bed_temperature] ; wait for bed temp\nM109 S[first_layer_temperature] ; wait for extruder temp\nG28 W ; home all without mesh bed level\nG80 ; mesh bed leveling\nG21 ; set units to millimeters\n\n; Send the filament type to the MMU2.0 unit.\n; E stands for extruder number, F stands for filament type (0: default; 1:flex; 2: PVA)\nM403 E0 F{"" + ((filament_type[0]=="FLEX") ? 1 : ((filament_type[0]=="PVA") ? 2 : 0))}\nM403 E1 F{"" + ((filament_type[1]=="FLEX") ? 1 : ((filament_type[1]=="PVA") ? 2 : 0))}\nM403 E2 F{"" + ((filament_type[2]=="FLEX") ? 1 : ((filament_type[2]=="PVA") ? 2 : 0))}\nM403 E3 F{"" + ((filament_type[3]=="FLEX") ? 1 : ((filament_type[3]=="PVA") ? 2 : 0))}\nM403 E4 F{"" + ((filament_type[4]=="FLEX") ? 1 : ((filament_type[4]=="PVA") ? 2 : 0))}\n\n{if not has_single_extruder_multi_material_priming}\n;go outside print area\nG1 Y-3.0 F1000.0\nG1 Z0.4 F1000.0\n; select extruder\nT[initial_tool]\n; initial load\nG1 X55.0 E29.0 F1073.0\nG1 X5.0 E29.0 F1800.0\nG1 X55.0 E8.0 F2000.0\nG1 Z0.3 F1000.0\nG92 E0.0\nG1 X240.0 E25.0 F2200.0\nG1 Y-2.0 F1000.0\nG1 X55.0 E25 F1400.0\nG1 Z0.20 F1000.0\nG1 X5.0 E4.0 F1000.0\nG92 E0.0\n{endif}\n\nM221 S{if layer_height<0.075}100{else}95{endif}\nG92 E0.0\n
+end_gcode = {if has_wipe_tower}\nG1 E-15.0000 F3000\n{else}\nG1 X0 Y210 F7200\nG1 E2 F5000\nG1 E2 F5500\nG1 E2 F6000\nG1 E-15.0000 F5800\nG1 E-20.0000 F5500\nG1 E10.0000 F3000\nG1 E-10.0000 F3100\nG1 E10.0000 F3150\nG1 E-10.0000 F3250\nG1 E10.0000 F3300\n{endif}\n\n; Unload filament\nM702 C\n\nG4 ; wait\nM104 S0 ; turn off temperature\nM140 S0 ; turn off heatbed\nM107 ; turn off fan\n; Lift print head a bit\n{if layer_z < max_print_height}G1 Z{z_offset+min(layer_z+30, max_print_height)}{endif} ; Move print head up\nG1 X0 Y200 F3000 ; home X axis\nM84 ; disable motors\n
+
+# 0.6 nozzle MMU printer profile - only for single mode for now
+
+# [printer:Original Prusa i3 MK3S MMU2S 0.6 nozzle]
+# inherits = Original Prusa i3 MK3S MMU2S
+# nozzle_diameter = 0.6,0.6,0.6,0.6,0.6
+# max_layer_height = 0.40
+# min_layer_height = 0.15
+# printer_variant = 0.6
+# default_print_profile = 0.30mm QUALITY 0.6 nozzle MK3
[printer:Original Prusa SL1]
printer_technology = SLA
printer_model = SL1
printer_variant = default
-default_sla_material_profile = Jamg He PJHC-30 Orange 0.05
+default_sla_material_profile = Prusa Orange Solid 0.05
default_sla_print_profile = 0.05 Normal
-bed_shape = 0.98x1.02,119.98x1.02,119.98x68.02,0.98x68.02
+bed_shape = 0.98x1.02,119.98x1.02,119.98x67.02,0.98x67.02
display_height = 68.04
display_orientation = portrait
display_pixels_x = 2560
diff --git a/resources/shaders/gouraud.fs b/resources/shaders/gouraud.fs
index f6116eec7..09003f407 100644
--- a/resources/shaders/gouraud.fs
+++ b/resources/shaders/gouraud.fs
@@ -2,24 +2,21 @@
const vec3 ZERO = vec3(0.0, 0.0, 0.0);
+varying vec3 clipping_planes_dots;
+
// x = tainted, y = specular;
varying vec2 intensity;
varying vec3 delta_box_min;
varying vec3 delta_box_max;
-varying float world_z;
-
uniform vec4 uniform_color;
-// x = min z, y = max z;
-uniform vec2 z_range;
void main()
{
- if ((world_z < z_range.x) || (z_range.y < world_z))
+ if (any(lessThan(clipping_planes_dots, ZERO)))
discard;
-
// if the fragment is outside the print volume -> use darker color
vec3 color = (any(lessThan(delta_box_min, ZERO)) || any(greaterThan(delta_box_max, ZERO))) ? mix(uniform_color.rgb, ZERO, 0.3333) : uniform_color.rgb;
gl_FragColor = vec4(vec3(intensity.y, intensity.y, intensity.y) + color * intensity.x, uniform_color.a);
diff --git a/resources/shaders/gouraud.vs b/resources/shaders/gouraud.vs
index 84ae51391..cc54c1c44 100644
--- a/resources/shaders/gouraud.vs
+++ b/resources/shaders/gouraud.vs
@@ -28,13 +28,18 @@ struct PrintBoxDetection
uniform PrintBoxDetection print_box;
+// Clipping plane, x = min z, y = max z. Used by the FFF and SLA previews to clip with a top / bottom plane.
+uniform vec2 z_range;
+// Clipping plane - general orientation. Used by the SLA gizmo.
+uniform vec4 clipping_plane;
+
// x = tainted, y = specular;
varying vec2 intensity;
varying vec3 delta_box_min;
varying vec3 delta_box_max;
-varying float world_z;
+varying vec3 clipping_planes_dots;
void main()
{
@@ -66,8 +71,11 @@ void main()
{
delta_box_min = ZERO;
delta_box_max = ZERO;
- }
+ }
gl_Position = ftransform();
- world_z = vec3(print_box.volume_world_matrix * gl_Vertex).z;
-}
+ // Point in homogenous coordinates.
+ vec4 world_pos = print_box.volume_world_matrix * gl_Vertex;
+ // Fill in the scalars for fragment shader clipping. Fragments with any of these components lower than zero are discarded.
+ clipping_planes_dots = vec3(dot(world_pos, clipping_plane), world_pos.z - z_range.x, z_range.y - world_pos.z);
+}
diff --git a/sandboxes/slabasebed/slabasebed.cpp b/sandboxes/slabasebed/slabasebed.cpp
index 323741609..0c34eb9f5 100644
--- a/sandboxes/slabasebed/slabasebed.cpp
+++ b/sandboxes/slabasebed/slabasebed.cpp
@@ -4,6 +4,7 @@
#include
#include
+#include
#include
#include
#include
@@ -14,7 +15,9 @@ const std::string USAGE_STR = {
namespace Slic3r { namespace sla {
-Contour3D convert(const Polygons& triangles, coord_t z, bool dir);
+Contour3D create_base_pool(const ExPolygons &ground_layer,
+ const PoolConfig& cfg = PoolConfig());
+
Contour3D walls(const Polygon& floor_plate, const Polygon& ceiling,
double floor_z_mm, double ceiling_z_mm,
double offset_difference_mm, ThrowOnCancel thr);
@@ -47,31 +50,38 @@ int main(const int argc, const char *argv[]) {
if(ground_slice.empty()) return EXIT_FAILURE;
- ExPolygon bottom_plate = ground_slice.front();
- ExPolygon top_plate = bottom_plate;
- sla::offset(top_plate, coord_t(3.0/SCALING_FACTOR));
- sla::offset(bottom_plate, coord_t(1.0/SCALING_FACTOR));
+// ExPolygon bottom_plate = ground_slice.front();
+// ExPolygon top_plate = bottom_plate;
+// sla::offset(top_plate, coord_t(3.0/SCALING_FACTOR));
+// sla::offset(bottom_plate, coord_t(1.0/SCALING_FACTOR));
bench.start();
- Polygons top_plate_triangles, bottom_plate_triangles;
- top_plate.triangulate_p2t(&top_plate_triangles);
- bottom_plate.triangulate_p2t(&bottom_plate_triangles);
-
- auto top_plate_mesh = sla::convert(top_plate_triangles, coord_t(3.0/SCALING_FACTOR), false);
- auto bottom_plate_mesh = sla::convert(bottom_plate_triangles, 0, true);
-
- mesh.merge(bottom_plate_mesh);
- mesh.merge(top_plate_mesh);
-
- sla::Contour3D w = sla::walls(bottom_plate.contour, top_plate.contour, 0, 3, 2.0, [](){});
-
- mesh.merge(w);
-// sla::create_base_pool(ground_slice, basepool);
+// TriangleMesh pool;
+ sla::PoolConfig cfg;
+ cfg.min_wall_height_mm = 0;
+ cfg.edge_radius_mm = 0.2;
+ mesh = sla::create_base_pool(ground_slice, cfg);
+
+// mesh.merge(triangulate_expolygon_3d(top_plate, 3.0, false));
+// mesh.merge(triangulate_expolygon_3d(bottom_plate, 0.0, true));
+// mesh = sla::walls(bottom_plate.contour, top_plate.contour, 0, 3, 2.0, [](){});
+
bench.stop();
cout << "Base pool creation time: " << std::setprecision(10)
<< bench.getElapsedSec() << " seconds." << endl;
+
+// auto point = []()
+ for(auto& trind : mesh.indices) {
+ Vec3d p0 = mesh.points[size_t(trind[0])];
+ Vec3d p1 = mesh.points[size_t(trind[1])];
+ Vec3d p2 = mesh.points[size_t(trind[2])];
+ Vec3d p01 = p1 - p0;
+ Vec3d p02 = p2 - p0;
+ auto a = p01.cross(p02).norm() / 2.0;
+ if(std::abs(a) < 1e-6) std::cout << "degenerate triangle" << std::endl;
+ }
// basepool.write_ascii("out.stl");
diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
index 36e8d22fc..6a36bd752 100644
--- a/src/CMakeLists.txt
+++ b/src/CMakeLists.txt
@@ -12,7 +12,6 @@ add_subdirectory(poly2tri)
add_subdirectory(qhull)
add_subdirectory(Shiny)
add_subdirectory(semver)
-add_subdirectory(imgui)
add_subdirectory(test)
# Adding libnest2d project for bin packing...
@@ -22,33 +21,11 @@ add_subdirectory(libnest2d)
include_directories(${LIBDIR}/qhull/src)
#message(STATUS ${LIBDIR}/qhull/src)
-# ##############################################################################
-# Configure rasterizer target
-# ##############################################################################
-
-find_package(PNG QUIET)
-
-option(RASTERIZER_FORCE_BUILTIN_LIBPNG "Force the usage of builting libpng instead of the system version." OFF)
-
-if(PNG_FOUND AND NOT RASTERIZER_FORCE_BUILTIN_LIBPNG)
- message(STATUS "Using system libpng.")
-else()
- set(ZLIB_LIBRARY "")
- message(WARNING "Using builtin libpng. This can cause crashes on some platforms.")
- set(SKIP_INSTALL_ALL 1) # Prevent png+zlib from creating install targets
- add_subdirectory(png/zlib)
- set(ZLIB_INCLUDE_DIR ${PROJECT_SOURCE_DIR}/png/zlib ${CMAKE_CURRENT_BINARY_DIR}/png/zlib)
- include_directories(${ZLIB_INCLUDE_DIR})
- add_subdirectory(png/libpng)
- set_target_properties(zlibstatic PROPERTIES POSITION_INDEPENDENT_CODE ON)
- set_target_properties(png_static PROPERTIES POSITION_INDEPENDENT_CODE ON)
- set(PNG_LIBRARIES png_static zlibstatic)
- set(PNG_INCLUDE_DIRS ${ZLIB_INCLUDE_DIR} ${PROJECT_SOURCE_DIR}/png/libpng ${CMAKE_CURRENT_BINARY_DIR}/png/libpng)
-endif()
-
add_subdirectory(libslic3r)
if (SLIC3R_GUI)
+ add_subdirectory(imgui)
+
if(WIN32)
message(STATUS "WXWIN environment set to: $ENV{WXWIN}")
elseif(UNIX)
@@ -66,6 +43,7 @@ if (SLIC3R_GUI)
find_package(wxWidgets 3.0 REQUIRED COMPONENTS base core adv html gl)
else ()
find_package(wxWidgets 3.1 QUIET COMPONENTS base core adv html gl)
+
if (NOT wxWidgets_FOUND)
message(FATAL_ERROR "\nCould not find wxWidgets 3.1.\n"
"Hint: On Linux you can set -DSLIC3R_WX_STABLE=1 to use wxWidgets 3.0\n")
@@ -80,27 +58,25 @@ if (SLIC3R_GUI)
endif()
include(${wxWidgets_USE_FILE})
+
+ add_subdirectory(slic3r)
endif()
-add_subdirectory(slic3r)
# Create a slic3r executable
# Process mainfests for various platforms.
-configure_file(${CMAKE_CURRENT_SOURCE_DIR}/platform/msw/slic3r.rc.in ${CMAKE_CURRENT_BINARY_DIR}/slic3r.rc @ONLY)
-configure_file(${CMAKE_CURRENT_SOURCE_DIR}/platform/msw/slic3r.manifest.in ${CMAKE_CURRENT_BINARY_DIR}/slic3r.manifest @ONLY)
+configure_file(${CMAKE_CURRENT_SOURCE_DIR}/platform/msw/PrusaSlicer.rc.in ${CMAKE_CURRENT_BINARY_DIR}/slic3r.rc @ONLY)
+configure_file(${CMAKE_CURRENT_SOURCE_DIR}/platform/msw/PrusaSlicer.manifest.in ${CMAKE_CURRENT_BINARY_DIR}/slic3r.manifest @ONLY)
configure_file(${CMAKE_CURRENT_SOURCE_DIR}/platform/osx/Info.plist.in ${CMAKE_CURRENT_BINARY_DIR}/Info.plist @ONLY)
if (MSVC)
- add_library(slic3r SHARED slic3r.cpp slic3r.hpp)
+ add_library(slic3r SHARED PrusaSlicer.cpp PrusaSlicer.hpp)
else ()
- add_executable(slic3r slic3r.cpp slic3r.hpp)
+ add_executable(slic3r PrusaSlicer.cpp PrusaSlicer.hpp)
endif ()
-add_library(slic3r_lib STATIC slic3r.cpp slic3r.hpp)
+add_library(slic3r_lib STATIC PrusaSlicer.cpp PrusaSlicer.hpp)
if (NOT MSVC)
- if(SLIC3R_GUI)
- set_target_properties(slic3r PROPERTIES OUTPUT_NAME "slic3r-gui")
- else()
- set_target_properties(slic3r PROPERTIES OUTPUT_NAME "slic3r-console")
- endif()
+ # Binary name on unix like systems (OSX, Linux)
+ set_target_properties(slic3r PROPERTIES OUTPUT_NAME "slic3r++")
endif ()
target_link_libraries(slic3r libslic3r)
@@ -115,7 +91,8 @@ elseif (MSVC)
# Manifest is provided through slic3r.rc, don't generate your own.
set(CMAKE_EXE_LINKER_FLAGS "${CMAKE_EXE_LINKER_FLAGS} /MANIFEST:NO")
else ()
- target_link_libraries(slic3r ${CMAKE_DL_LIBS} -lstdc++)
+ # Boost on Raspberry-Pi does not link to pthreads explicitely.
+ target_link_libraries(slic3r ${CMAKE_DL_LIBS} -lstdc++ Threads::Threads)
target_link_libraries(slic3r_lib ${CMAKE_DL_LIBS} -lstdc++)
endif ()
@@ -124,10 +101,14 @@ if (SLIC3R_GUI)
target_link_libraries(slic3r libslic3r_gui ${wxWidgets_LIBRARIES})
target_link_libraries(slic3r_lib libslic3r_gui ${wxWidgets_LIBRARIES})
- # Configure libcurl & OpenSSL
+ # Configure libcurl and its dependencies OpenSSL & zlib
find_package(CURL REQUIRED)
+ if (NOT MSVC)
+ # Required by libcurl
+ find_package(ZLIB REQUIRED)
+ endif()
target_include_directories(slic3r PRIVATE ${CURL_INCLUDE_DIRS})
- target_link_libraries(slic3r CURL::libcurl)
+ target_link_libraries(slic3r ${CURL_LIBRARIES} ${ZLIB_LIBRARIES})
target_include_directories(slic3r_lib PRIVATE ${CURL_INCLUDE_DIRS})
target_link_libraries(slic3r_lib CURL::libcurl)
if (SLIC3R_STATIC)
@@ -151,6 +132,8 @@ if (SLIC3R_GUI)
endif()
if (MSVC)
+ # Generate debug symbols even in release mode.
+ #target_link_options(slic3r PUBLIC "$<$:/DEBUG>")
target_link_libraries(slic3r user32.lib Setupapi.lib OpenGL32.Lib GlU32.Lib)
target_link_libraries(slic3r_lib user32.lib Setupapi.lib OpenGL32.Lib GlU32.Lib)
elseif (MINGW)
@@ -168,15 +151,19 @@ endif ()
# On Windows, a shim application is required to produce a console / non console version of the Slic3r application.
# Also the shim may load the Mesa software OpenGL renderer if the default renderer does not support OpenGL 2.0 and higher.
if (MSVC)
- add_executable(slic3r_app_gui WIN32 slic3r_app_msvc.cpp ${CMAKE_CURRENT_BINARY_DIR}/slic3r.rc)
+ add_executable(slic3r_app_gui WIN32 PrusaSlicer_app_msvc.cpp ${CMAKE_CURRENT_BINARY_DIR}/slic3r.rc)
+ # Generate debug symbols even in release mode.
+ #target_link_options(slic3r_app_gui PUBLIC "$<$:/DEBUG>")
target_compile_definitions(slic3r_app_gui PRIVATE -DSLIC3R_WRAPPER_NOCONSOLE)
add_dependencies(slic3r_app_gui slic3r)
- set_target_properties(slic3r_app_gui PROPERTIES OUTPUT_NAME "slic3r")
+ set_target_properties(slic3r_app_gui PROPERTIES OUTPUT_NAME "slic3r++")
- add_executable(slic3r_app_console slic3r_app_msvc.cpp ${CMAKE_CURRENT_BINARY_DIR}/slic3r.rc)
+ add_executable(slic3r_app_console PrusaSlicer_app_msvc.cpp ${CMAKE_CURRENT_BINARY_DIR}/slic3r.rc)
+ # Generate debug symbols even in release mode.
+ #target_link_options(slic3r_app_console PUBLIC "$<$:/DEBUG>")
target_compile_definitions(slic3r_app_console PRIVATE -DSLIC3R_WRAPPER_CONSOLE)
add_dependencies(slic3r_app_console slic3r)
- set_target_properties(slic3r_app_console PROPERTIES OUTPUT_NAME "slic3r-console")
+ set_target_properties(slic3r_app_console PROPERTIES OUTPUT_NAME "slic3r++_console")
endif ()
@@ -205,7 +192,7 @@ if (MSVC)
)
endif ()
elseif (XCODE)
- #Â Because of Debug/Release/etc. configurations (similar to MSVC) the slic3r binary is located in an extra level
+ # Because of Debug/Release/etc. configurations (similar to MSVC) the slic3r binary is located in an extra level
add_custom_command(TARGET slic3r POST_BUILD
COMMAND ln -sf "${SLIC3R_RESOURCES_DIR}" "${CMAKE_CURRENT_BINARY_DIR}/resources"
COMMENT "Symlinking the resources directory into the build tree"
diff --git a/src/slic3r.cpp b/src/PrusaSlicer.cpp
similarity index 95%
rename from src/slic3r.cpp
rename to src/PrusaSlicer.cpp
index 7b37ba56c..90253cf38 100644
--- a/src/slic3r.cpp
+++ b/src/PrusaSlicer.cpp
@@ -6,10 +6,12 @@
#define NOMINMAX
#include
#include
- // Let the NVIDIA and AMD know we want to use their graphics card
- // on a dual graphics card system.
- __declspec(dllexport) DWORD NvOptimusEnablement = 0x00000001;
- __declspec(dllexport) int AmdPowerXpressRequestHighPerformance = 1;
+ #ifdef SLIC3R_GUI
+ // Let the NVIDIA and AMD know we want to use their graphics card
+ // on a dual graphics card system.
+ __declspec(dllexport) DWORD NvOptimusEnablement = 0x00000001;
+ __declspec(dllexport) int AmdPowerXpressRequestHighPerformance = 1;
+ #endif /* SLIC3R_GUI */
#endif /* WIN32 */
#include
@@ -37,9 +39,12 @@
#include "libslic3r/Format/OBJ.hpp"
#include "libslic3r/Utils.hpp"
-#include "slic3r.hpp"
-#include "slic3r/GUI/GUI.hpp"
-#include "slic3r/GUI/GUI_App.hpp"
+#include "PrusaSlicer.hpp"
+
+#ifdef SLIC3R_GUI
+ #include "slic3r/GUI/GUI.hpp"
+ #include "slic3r/GUI/GUI_App.hpp"
+#endif /* SLIC3R_GUI */
using namespace Slic3r;
@@ -361,6 +366,14 @@ int CLI::run(int argc, char **argv)
std::string outfile = m_config.opt_string("output");
Print fff_print;
SLAPrint sla_print;
+
+ sla_print.set_status_callback(
+ [](const PrintBase::SlicingStatus& s)
+ {
+ if(s.percent >= 0) // FIXME: is this sufficient?
+ printf("%3d%s %s\n", s.percent, "% =>", s.text.c_str());
+ });
+
PrintBase *print = (printer_technology == ptFFF) ? static_cast(&fff_print) : static_cast(&sla_print);
if (! m_config.opt_bool("dont_arrange")) {
//FIXME make the min_object_distance configurable.
@@ -389,9 +402,9 @@ int CLI::run(int argc, char **argv)
outfile_final = fff_print.print_statistics().finalize_output_path(outfile);
} else {
outfile = sla_print.output_filepath(outfile);
- //FIXME Tamas, please port it to miniz
- // sla_print.export_raster(outfile);
- outfile_final = sla_print.print_statistics().finalize_output_path(outfile);
+ // We need to finalize the filename beforehand because the export function sets the filename inside the zip metadata
+ outfile_final = sla_print.print_statistics().finalize_output_path(outfile);
+ sla_print.export_raster(outfile_final);
}
if (outfile != outfile_final && Slic3r::rename_file(outfile, outfile_final) != 0) {
boost::nowide::cerr << "Renaming file " << outfile << " to " << outfile_final << " failed" << std::endl;
@@ -440,7 +453,7 @@ int CLI::run(int argc, char **argv)
}
if (start_gui) {
-#if 1
+#ifdef SLIC3R_GUI
// #ifdef USE_WX
GUI::GUI_App *gui = new GUI::GUI_App();
// gui->autosave = m_config.opt_string("autosave");
@@ -469,12 +482,12 @@ int CLI::run(int argc, char **argv)
gui->mainframe->load_config(m_extra_config);
});
return wxEntry(argc, argv);
-#else
+#else /* SLIC3R_GUI */
// No GUI support. Just print out a help.
this->print_help(false);
// If started without a parameter, consider it to be OK, otherwise report an error code (no action etc).
return (argc == 0) ? 0 : 1;
-#endif
+#endif /* SLIC3R_GUI */
}
return 0;
@@ -555,8 +568,14 @@ bool CLI::setup(int argc, char **argv)
void CLI::print_help(bool include_print_options, PrinterTechnology printer_technology) const
{
boost::nowide::cout
- << "Slic3r++ " << SLIC3R_BUILD << std::endl
- << "https://github.com/prusa3d/Slic3r" << std::endl << std::endl
+ << SLIC3R_BUILD_ID << " " << "based on Slic3r"
+#ifdef SLIC3R_GUI
+ << " (with GUI support)"
+#else /* SLIC3R_GUI */
+ << " (without GUI support)"
+#endif /* SLIC3R_GUI */
+ << std::endl
+ << "https://github.com/supermerill/slic3r" << std::endl << std::endl
<< "Usage: slic3r [ ACTIONS ] [ TRANSFORM ] [ OPTIONS ] [ file.stl ... ]" << std::endl
<< std::endl
<< "Actions:" << std::endl;
@@ -609,7 +628,7 @@ std::string CLI::output_filepath(const Model &model, IO::ExportFormat format) co
{
std::string ext;
switch (format) {
- case IO::AMF: ext = ".amf"; break;
+ case IO::AMF: ext = ".zip.amf"; break;
case IO::OBJ: ext = ".obj"; break;
case IO::STL: ext = ".stl"; break;
case IO::TMF: ext = ".3mf"; break;
diff --git a/src/slic3r.hpp b/src/PrusaSlicer.hpp
similarity index 100%
rename from src/slic3r.hpp
rename to src/PrusaSlicer.hpp
diff --git a/src/slic3r_app_msvc.cpp b/src/PrusaSlicer_app_msvc.cpp
similarity index 86%
rename from src/slic3r_app_msvc.cpp
rename to src/PrusaSlicer_app_msvc.cpp
index 48c166406..c100f8fd9 100644
--- a/src/slic3r_app_msvc.cpp
+++ b/src/PrusaSlicer_app_msvc.cpp
@@ -6,14 +6,20 @@
#include
#include
#include
-// Let the NVIDIA and AMD know we want to use their graphics card
-// on a dual graphics card system.
-__declspec(dllexport) DWORD NvOptimusEnablement = 0x00000001;
-__declspec(dllexport) int AmdPowerXpressRequestHighPerformance = 1;
+
+#ifdef SLIC3R_GUI
+ // Let the NVIDIA and AMD know we want to use their graphics card
+ // on a dual graphics card system.
+ __declspec(dllexport) DWORD NvOptimusEnablement = 0x00000001;
+ __declspec(dllexport) int AmdPowerXpressRequestHighPerformance = 1;
+#endif /* SLIC3R_GUI */
#include
#include
-#include
+
+#ifdef SLIC3R_GUI
+ #include
+#endif /* SLIC3R_GUI */
#include
#include
@@ -23,6 +29,7 @@ __declspec(dllexport) int AmdPowerXpressRequestHighPerformance = 1;
#include
+#ifdef SLIC3R_GUI
class OpenGLVersionCheck
{
public:
@@ -188,6 +195,7 @@ protected:
};
bool OpenGLVersionCheck::message_pump_exit = false;
+#endif /* SLIC3R_GUI */
extern "C" {
typedef int (__stdcall *Slic3rMainFunc)(int argc, wchar_t **argv);
@@ -206,13 +214,33 @@ int wmain(int argc, wchar_t **argv)
std::vector argv_extended;
argv_extended.emplace_back(argv[0]);
+
+#ifdef SLIC3R_GUI
// Here one may push some additional parameters based on the wrapper type.
- for (int i = 1; i < argc; ++ i)
+ bool force_mesa = false;
+#endif /* SLIC3R_GUI */
+ for (int i = 1; i < argc; ++ i) {
+#ifdef SLIC3R_GUI
+ if (wcscmp(argv[i], L"--sw-renderer") == 0)
+ force_mesa = true;
+ else if (wcscmp(argv[i], L"--no-sw-renderer") == 0)
+ force_mesa = false;
+#endif /* SLIC3R_GUI */
argv_extended.emplace_back(argv[i]);
+ }
argv_extended.emplace_back(nullptr);
+#ifdef SLIC3R_GUI
OpenGLVersionCheck opengl_version_check;
- bool load_mesa = ! opengl_version_check.load_opengl_dll() || ! opengl_version_check.is_version_greater_or_equal_to(2, 0);
+ bool load_mesa =
+ // Forced from the command line.
+ force_mesa ||
+ // Running over a rempote desktop, and the RemoteFX is not enabled, therefore Windows will only provide SW OpenGL 1.1 context.
+ // In that case, use Mesa.
+ ::GetSystemMetrics(SM_REMOTESESSION) ||
+ // Try to load the default OpenGL driver and test its context version.
+ ! opengl_version_check.load_opengl_dll() || ! opengl_version_check.is_version_greater_or_equal_to(2, 0);
+#endif /* SLIC3R_GUI */
wchar_t path_to_exe[MAX_PATH + 1] = { 0 };
::GetModuleFileNameW(nullptr, path_to_exe, MAX_PATH);
@@ -223,6 +251,7 @@ int wmain(int argc, wchar_t **argv)
_wsplitpath(path_to_exe, drive, dir, fname, ext);
_wmakepath(path_to_exe, drive, dir, nullptr, nullptr);
+#ifdef SLIC3R_GUI
// https://wiki.qt.io/Cross_compiling_Mesa_for_Windows
// http://download.qt.io/development_releases/prebuilt/llvmpipe/windows/
if (load_mesa) {
@@ -237,6 +266,8 @@ int wmain(int argc, wchar_t **argv)
} else
printf("MESA OpenGL library was loaded sucessfully\n");
}
+#endif /* SLIC3R_GUI */
+
wchar_t path_to_slic3r[MAX_PATH + 1] = { 0 };
wcscpy(path_to_slic3r, path_to_exe);
@@ -262,5 +293,5 @@ int wmain(int argc, wchar_t **argv)
return -1;
}
// argc minus the trailing nullptr of the argv
- return slic3r_main(argv_extended.size() - 1, argv_extended.data());
+ return slic3r_main((int)argv_extended.size() - 1, argv_extended.data());
}
diff --git a/src/admesh/connect.cpp b/src/admesh/connect.cpp
index 5fc992b63..fb3213219 100644
--- a/src/admesh/connect.cpp
+++ b/src/admesh/connect.cpp
@@ -39,8 +39,7 @@ static void stl_record_neighbors(stl_file *stl,
stl_hash_edge *edge_a, stl_hash_edge *edge_b);
static void stl_initialize_facet_check_exact(stl_file *stl);
static void stl_initialize_facet_check_nearby(stl_file *stl);
-static void stl_load_edge_exact(stl_file *stl, stl_hash_edge *edge,
- stl_vertex *a, stl_vertex *b);
+static void stl_load_edge_exact(stl_file *stl, stl_hash_edge *edge, const stl_vertex *a, const stl_vertex *b);
static int stl_load_edge_nearby(stl_file *stl, stl_hash_edge *edge,
stl_vertex *a, stl_vertex *b, float tolerance);
static void insert_hash_edge(stl_file *stl, stl_hash_edge edge,
@@ -60,41 +59,40 @@ extern int stl_check_normal_vector(stl_file *stl,
int facet_num, int normal_fix_flag);
static void stl_update_connects_remove_1(stl_file *stl, int facet_num);
-
-void
-stl_check_facets_exact(stl_file *stl) {
- /* This function builds the neighbors list. No modifications are made
- * to any of the facets. The edges are said to match only if all six
- * floats of the first edge matches all six floats of the second edge.
- */
-
- stl_hash_edge edge;
- stl_facet facet;
- int i;
- int j;
-
- if (stl->error) return;
+// This function builds the neighbors list. No modifications are made
+// to any of the facets. The edges are said to match only if all six
+// floats of the first edge matches all six floats of the second edge.
+void stl_check_facets_exact(stl_file *stl)
+{
+ if (stl->error)
+ return;
stl->stats.connected_edges = 0;
stl->stats.connected_facets_1_edge = 0;
stl->stats.connected_facets_2_edge = 0;
stl->stats.connected_facets_3_edge = 0;
- stl_initialize_facet_check_exact(stl);
+ // If any two of the three vertices are found to be exactally the same, call them degenerate and remove the facet.
+ // Do it before the next step, as the next step stores references to the face indices in the hash tables and removing a facet
+ // will break the references.
+ for (int i = 0; i < stl->stats.number_of_facets;) {
+ stl_facet &facet = stl->facet_start[i];
+ if (facet.vertex[0] == facet.vertex[1] || facet.vertex[1] == facet.vertex[2] || facet.vertex[0] == facet.vertex[2]) {
+ // Remove the degenerate facet.
+ facet = stl->facet_start[--stl->stats.number_of_facets];
+ stl->stats.facets_removed += 1;
+ stl->stats.degenerate_facets += 1;
+ } else
+ ++ i;
+ }
- for(i = 0; i < stl->stats.number_of_facets; i++) {
- facet = stl->facet_start[i];
- // If any two of the three vertices are found to be exactally the same, call them degenerate and remove the facet.
- if (facet.vertex[0] == facet.vertex[1] ||
- facet.vertex[1] == facet.vertex[2] ||
- facet.vertex[0] == facet.vertex[2]) {
- stl->stats.degenerate_facets += 1;
- stl_remove_facet(stl, i);
- -- i;
- continue;
- }
- for(j = 0; j < 3; j++) {
- edge.facet_number = i;
+ // Connect neighbor edges.
+ stl_initialize_facet_check_exact(stl);
+ for (int i = 0; i < stl->stats.number_of_facets; i++) {
+ const stl_facet &facet = stl->facet_start[i];
+ for (int j = 0; j < 3; j++) {
+ stl_hash_edge edge;
+ edge.facet_number = i;
edge.which_edge = j;
stl_load_edge_exact(stl, &edge, &facet.vertex[j], &facet.vertex[(j + 1) % 3]);
insert_hash_edge(stl, edge, stl_record_neighbors);
@@ -109,9 +107,7 @@ stl_check_facets_exact(stl_file *stl) {
#endif
}
-static void
-stl_load_edge_exact(stl_file *stl, stl_hash_edge *edge,
- stl_vertex *a, stl_vertex *b) {
+static void stl_load_edge_exact(stl_file *stl, stl_hash_edge *edge, const stl_vertex *a, const stl_vertex *b) {
if (stl->error) return;
@@ -333,7 +329,9 @@ static void stl_free_edges(stl_file *stl)
}
}
free(stl->heads);
+ stl->heads = nullptr;
free(stl->tail);
+ stl->tail = nullptr;
}
static void stl_initialize_facet_check_nearby(stl_file *stl)
diff --git a/src/admesh/normals.cpp b/src/admesh/normals.cpp
index a8faa44bd..ecf08b59c 100644
--- a/src/admesh/normals.cpp
+++ b/src/admesh/normals.cpp
@@ -108,6 +108,9 @@ stl_fix_normal_directions(stl_file *stl) {
if (stl->error) return;
+ // this may happen for malformed models, see: https://github.com/prusa3d/PrusaSlicer/issues/2209
+ if (stl->stats.number_of_facets == 0) return;
+
/* Initialize linked list. */
head = (struct stl_normal*)malloc(sizeof(struct stl_normal));
if(head == NULL) perror("stl_fix_normal_directions");
diff --git a/src/admesh/stl.h b/src/admesh/stl.h
index afff3deac..f867e197b 100644
--- a/src/admesh/stl.h
+++ b/src/admesh/stl.h
@@ -43,11 +43,21 @@ typedef Eigen::Matrix stl_normal;
static_assert(sizeof(stl_vertex) == 12, "size of stl_vertex incorrect");
static_assert(sizeof(stl_normal) == 12, "size of stl_normal incorrect");
-typedef struct {
+struct stl_facet {
stl_normal normal;
stl_vertex vertex[3];
char extra[2];
-} stl_facet;
+
+ stl_facet rotated(const Eigen::Quaternion &rot) {
+ stl_facet out;
+ out.normal = rot * this->normal;
+ out.vertex[0] = rot * this->vertex[0];
+ out.vertex[1] = rot * this->vertex[1];
+ out.vertex[2] = rot * this->vertex[2];
+ return out;
+ }
+};
+
#define SIZEOF_STL_FACET 50
static_assert(offsetof(stl_facet, normal) == 0, "stl_facet.normal has correct offset");
@@ -127,7 +137,6 @@ typedef struct {
typedef struct {
FILE *fp;
stl_facet *facet_start;
- stl_edge *edge_start;
stl_hash_edge **heads;
stl_hash_edge *tail;
int M;
@@ -142,7 +151,6 @@ typedef struct {
extern void stl_open(stl_file *stl, const char *file);
extern void stl_close(stl_file *stl);
extern void stl_stats_out(stl_file *stl, FILE *file, char *input_file);
-extern void stl_print_edges(stl_file *stl, FILE *file);
extern void stl_print_neighbors(stl_file *stl, char *file);
extern void stl_put_little_int(FILE *fp, int value_in);
extern void stl_put_little_float(FILE *fp, float value_in);
@@ -172,8 +180,67 @@ extern void stl_rotate_z(stl_file *stl, float angle);
extern void stl_mirror_xy(stl_file *stl);
extern void stl_mirror_yz(stl_file *stl);
extern void stl_mirror_xz(stl_file *stl);
-extern void stl_transform(stl_file *stl, float *trafo3x4);
-extern void stl_transform(stl_file *stl, const Eigen::Transform& t);
+
+extern void stl_get_size(stl_file *stl);
+
+template
+extern void stl_transform(stl_file *stl, T *trafo3x4)
+{
+ if (stl->error)
+ return;
+
+ for (uint32_t i_face = 0; i_face < stl->stats.number_of_facets; ++ i_face) {
+ stl_facet &face = stl->facet_start[i_face];
+ for (int i_vertex = 0; i_vertex < 3; ++ i_vertex) {
+ stl_vertex &v_dst = face.vertex[i_vertex];
+ stl_vertex v_src = v_dst;
+ v_dst(0) = T(trafo3x4[0] * v_src(0) + trafo3x4[1] * v_src(1) + trafo3x4[2] * v_src(2) + trafo3x4[3]);
+ v_dst(1) = T(trafo3x4[4] * v_src(0) + trafo3x4[5] * v_src(1) + trafo3x4[6] * v_src(2) + trafo3x4[7]);
+ v_dst(2) = T(trafo3x4[8] * v_src(0) + trafo3x4[9] * v_src(1) + trafo3x4[10] * v_src(2) + trafo3x4[11]);
+ }
+ stl_vertex &v_dst = face.normal;
+ stl_vertex v_src = v_dst;
+ v_dst(0) = T(trafo3x4[0] * v_src(0) + trafo3x4[1] * v_src(1) + trafo3x4[2] * v_src(2));
+ v_dst(1) = T(trafo3x4[4] * v_src(0) + trafo3x4[5] * v_src(1) + trafo3x4[6] * v_src(2));
+ v_dst(2) = T(trafo3x4[8] * v_src(0) + trafo3x4[9] * v_src(1) + trafo3x4[10] * v_src(2));
+ }
+
+ stl_get_size(stl);
+}
+
+template
+inline void stl_transform(stl_file *stl, const Eigen::Transform& t)
+{
+ if (stl->error)
+ return;
+
+ const Eigen::Matrix r = t.matrix().template block<3, 3>(0, 0);
+ for (size_t i = 0; i < stl->stats.number_of_facets; ++i) {
+ stl_facet &f = stl->facet_start[i];
+ for (size_t j = 0; j < 3; ++j)
+ f.vertex[j] = (t * f.vertex[j].template cast()).template cast().eval();
+ f.normal = (r * f.normal.template cast()).template cast().eval();
+ }
+
+ stl_get_size(stl);
+}
+
+template
+inline void stl_transform(stl_file *stl, const Eigen::Matrix& m)
+{
+ if (stl->error)
+ return;
+
+ for (size_t i = 0; i < stl->stats.number_of_facets; ++i) {
+ stl_facet &f = stl->facet_start[i];
+ for (size_t j = 0; j < 3; ++j)
+ f.vertex[j] = (m * f.vertex[j].template cast()).template cast().eval();
+ f.normal = (m * f.normal.template cast()).template cast().eval();
+ }
+
+ stl_get_size(stl);
+}
+
extern void stl_open_merge(stl_file *stl, char *file);
extern void stl_invalidate_shared_vertices(stl_file *stl);
extern void stl_generate_shared_vertices(stl_file *stl);
@@ -206,7 +273,6 @@ extern void stl_read(stl_file *stl, int first_facet, bool first);
extern void stl_facet_stats(stl_file *stl, stl_facet facet, bool &first);
extern void stl_reallocate(stl_file *stl);
extern void stl_add_facet(stl_file *stl, stl_facet *new_facet);
-extern void stl_get_size(stl_file *stl);
extern void stl_clear_error(stl_file *stl);
extern int stl_get_error(stl_file *stl);
diff --git a/src/admesh/stl_io.cpp b/src/admesh/stl_io.cpp
index 71e434cbc..85f66785b 100644
--- a/src/admesh/stl_io.cpp
+++ b/src/admesh/stl_io.cpp
@@ -33,24 +33,6 @@
#define SEEK_END 2
#endif
-void
-stl_print_edges(stl_file *stl, FILE *file) {
- int i;
- int edges_allocated;
-
- if (stl->error) return;
-
- edges_allocated = stl->stats.number_of_facets * 3;
- for(i = 0; i < edges_allocated; i++) {
- fprintf(file, "%d, %f, %f, %f, %f, %f, %f\n",
- stl->edge_start[i].facet_number,
- stl->edge_start[i].p1(0), stl->edge_start[i].p1(1),
- stl->edge_start[i].p1(2), stl->edge_start[i].p2(0),
- stl->edge_start[i].p2(1), stl->edge_start[i].p2(2));
- }
-}
-
-
void
stl_stats_out(stl_file *stl, FILE *file, char *input_file) {
if (stl->error) return;
diff --git a/src/admesh/stlinit.cpp b/src/admesh/stlinit.cpp
index e2939b8af..911f4f5e8 100644
--- a/src/admesh/stlinit.cpp
+++ b/src/admesh/stlinit.cpp
@@ -41,10 +41,12 @@ stl_open(stl_file *stl, const char *file) {
stl_count_facets(stl, file);
stl_allocate(stl);
stl_read(stl, 0, true);
- if (!stl->error) fclose(stl->fp);
+ if (stl->fp != nullptr) {
+ fclose(stl->fp);
+ stl->fp = nullptr;
+ }
}
-
void
stl_initialize(stl_file *stl) {
memset(stl, 0, sizeof(stl_file));
@@ -118,7 +120,7 @@ stl_count_facets(stl_file *stl, const char *file) {
}
/* Read the int following the header. This should contain # of facets */
- bool header_num_faces_read = fread(&header_num_facets, sizeof(uint32_t), 1, stl->fp);
+ bool header_num_faces_read = fread(&header_num_facets, sizeof(uint32_t), 1, stl->fp) != 0;
#ifndef BOOST_LITTLE_ENDIAN
// Convert from little endian to big endian.
stl_internal_reverse_quads((char*)&header_num_facets, 4);
@@ -257,7 +259,6 @@ stl_reallocate(stl_file *stl) {
time running this for the stl and therefore we should reset our max and min stats. */
void stl_read(stl_file *stl, int first_facet, bool first) {
stl_facet facet;
- int i;
if (stl->error) return;
@@ -268,7 +269,7 @@ void stl_read(stl_file *stl, int first_facet, bool first) {
}
char normal_buf[3][32];
- for(i = first_facet; i < stl->stats.number_of_facets; i++) {
+ for(uint32_t i = first_facet; i < stl->stats.number_of_facets; i++) {
if(stl->stats.type == binary)
/* Read a single facet from a binary .STL file */
{
@@ -366,17 +367,19 @@ void stl_facet_stats(stl_file *stl, stl_facet facet, bool &first)
}
}
-void
-stl_close(stl_file *stl) {
- if (stl->error) return;
+void stl_close(stl_file *stl)
+{
+ assert(stl->fp == nullptr);
+ assert(stl->heads == nullptr);
+ assert(stl->tail == nullptr);
- if(stl->neighbors_start != NULL)
- free(stl->neighbors_start);
- if(stl->facet_start != NULL)
- free(stl->facet_start);
- if(stl->v_indices != NULL)
- free(stl->v_indices);
- if(stl->v_shared != NULL)
- free(stl->v_shared);
+ if (stl->facet_start != NULL)
+ free(stl->facet_start);
+ if (stl->neighbors_start != NULL)
+ free(stl->neighbors_start);
+ if (stl->v_indices != NULL)
+ free(stl->v_indices);
+ if (stl->v_shared != NULL)
+ free(stl->v_shared);
+ memset(stl, 0, sizeof(stl_file));
}
-
diff --git a/src/admesh/util.cpp b/src/admesh/util.cpp
index 7cb69bccd..305a58e22 100644
--- a/src/admesh/util.cpp
+++ b/src/admesh/util.cpp
@@ -137,65 +137,6 @@ static void calculate_normals(stl_file *stl)
}
}
-void stl_transform(stl_file *stl, float *trafo3x4) {
- int i_face, i_vertex;
- if (stl->error)
- return;
- for (i_face = 0; i_face < stl->stats.number_of_facets; ++ i_face) {
- stl_vertex *vertices = stl->facet_start[i_face].vertex;
- for (i_vertex = 0; i_vertex < 3; ++ i_vertex) {
- stl_vertex &v_dst = vertices[i_vertex];
- stl_vertex v_src = v_dst;
- v_dst(0) = trafo3x4[0] * v_src(0) + trafo3x4[1] * v_src(1) + trafo3x4[2] * v_src(2) + trafo3x4[3];
- v_dst(1) = trafo3x4[4] * v_src(0) + trafo3x4[5] * v_src(1) + trafo3x4[6] * v_src(2) + trafo3x4[7];
- v_dst(2) = trafo3x4[8] * v_src(0) + trafo3x4[9] * v_src(1) + trafo3x4[10] * v_src(2) + trafo3x4[11];
- }
- }
- stl_get_size(stl);
- calculate_normals(stl);
-}
-
-void stl_transform(stl_file *stl, const Eigen::Transform& t)
-{
- if (stl->error)
- return;
-
- unsigned int vertices_count = 3 * (unsigned int)stl->stats.number_of_facets;
- if (vertices_count == 0)
- return;
-
- Eigen::MatrixXf src_vertices(3, vertices_count);
- stl_facet* facet_ptr = stl->facet_start;
- unsigned int v_id = 0;
- while (facet_ptr < stl->facet_start + stl->stats.number_of_facets)
- {
- for (int i = 0; i < 3; ++i)
- {
- ::memcpy((void*)src_vertices.col(v_id).data(), (const void*)&facet_ptr->vertex[i], 3 * sizeof(float));
- ++v_id;
- }
- facet_ptr += 1;
- }
-
- Eigen::MatrixXf dst_vertices(3, vertices_count);
- dst_vertices = t.cast() * src_vertices.colwise().homogeneous();
-
- facet_ptr = stl->facet_start;
- v_id = 0;
- while (facet_ptr < stl->facet_start + stl->stats.number_of_facets)
- {
- for (int i = 0; i < 3; ++i)
- {
- ::memcpy((void*)&facet_ptr->vertex[i], (const void*)dst_vertices.col(v_id).data(), 3 * sizeof(float));
- ++v_id;
- }
- facet_ptr += 1;
- }
-
- stl_get_size(stl);
- calculate_normals(stl);
-}
-
void
stl_rotate_x(stl_file *stl, float angle) {
int i;
diff --git a/src/avrdude/ac_cfg.h b/src/avrdude/ac_cfg.h
index 41d648bf1..1dd40de41 100644
--- a/src/avrdude/ac_cfg.h
+++ b/src/avrdude/ac_cfg.h
@@ -172,7 +172,7 @@
#define PACKAGE "avrdude-slic3r"
/* Define to the address where bug reports for this package should be sent. */
-#define PACKAGE_BUGREPORT "https://github.com/prusa3d/Slic3r/issues"
+#define PACKAGE_BUGREPORT "https://github.com/supermerill/Slic3r/issues"
/* Define to the full name of this package. */
#define PACKAGE_NAME "avrdude-slic3r"
@@ -184,7 +184,7 @@
#define PACKAGE_TARNAME "avrdude-slic3r"
/* Define to the home page for this package. */
-#define PACKAGE_URL "https://github.com/prusa3d/Slic3r"
+#define PACKAGE_URL "https://github.com/supermerill/Slic3r"
/* Define to the version of this package. */
#define PACKAGE_VERSION "6.3-20160220"
diff --git a/src/libnest2d/include/libnest2d/backends/clipper/CMakeLists.txt b/src/libnest2d/include/libnest2d/backends/clipper/CMakeLists.txt
index 995afcc76..462d1dd06 100644
--- a/src/libnest2d/include/libnest2d/backends/clipper/CMakeLists.txt
+++ b/src/libnest2d/include/libnest2d/backends/clipper/CMakeLists.txt
@@ -64,6 +64,7 @@ endif()
target_include_directories(ClipperBackend INTERFACE ${Boost_INCLUDE_DIRS} )
target_sources(ClipperBackend INTERFACE
${CMAKE_CURRENT_SOURCE_DIR}/geometries.hpp
+ ${CMAKE_CURRENT_SOURCE_DIR}/clipper_polygon.hpp
${SRC_DIR}/libnest2d/utils/boost_alg.hpp )
target_compile_definitions(ClipperBackend INTERFACE LIBNEST2D_BACKEND_CLIPPER)
diff --git a/src/libnest2d/include/libnest2d/backends/clipper/clipper_polygon.hpp b/src/libnest2d/include/libnest2d/backends/clipper/clipper_polygon.hpp
new file mode 100644
index 000000000..e9fbfbd18
--- /dev/null
+++ b/src/libnest2d/include/libnest2d/backends/clipper/clipper_polygon.hpp
@@ -0,0 +1,72 @@
+#ifndef CLIPPER_POLYGON_HPP
+#define CLIPPER_POLYGON_HPP
+
+#include
+
+namespace ClipperLib {
+
+struct Polygon {
+ Path Contour;
+ Paths Holes;
+
+ inline Polygon() = default;
+
+ inline explicit Polygon(const Path& cont): Contour(cont) {}
+ inline explicit Polygon(const Paths& holes):
+ Holes(holes) {}
+ inline Polygon(const Path& cont, const Paths& holes):
+ Contour(cont), Holes(holes) {}
+
+ inline explicit Polygon(Path&& cont): Contour(std::move(cont)) {}
+ inline explicit Polygon(Paths&& holes): Holes(std::move(holes)) {}
+ inline Polygon(Path&& cont, Paths&& holes):
+ Contour(std::move(cont)), Holes(std::move(holes)) {}
+};
+
+inline IntPoint& operator +=(IntPoint& p, const IntPoint& pa ) {
+ // This could be done with SIMD
+ p.X += pa.X;
+ p.Y += pa.Y;
+ return p;
+}
+
+inline IntPoint operator+(const IntPoint& p1, const IntPoint& p2) {
+ IntPoint ret = p1;
+ ret += p2;
+ return ret;
+}
+
+inline IntPoint& operator -=(IntPoint& p, const IntPoint& pa ) {
+ p.X -= pa.X;
+ p.Y -= pa.Y;
+ return p;
+}
+
+inline IntPoint operator -(IntPoint& p ) {
+ IntPoint ret = p;
+ ret.X = -ret.X;
+ ret.Y = -ret.Y;
+ return ret;
+}
+
+inline IntPoint operator-(const IntPoint& p1, const IntPoint& p2) {
+ IntPoint ret = p1;
+ ret -= p2;
+ return ret;
+}
+
+inline IntPoint& operator *=(IntPoint& p, const IntPoint& pa ) {
+ p.X *= pa.X;
+ p.Y *= pa.Y;
+ return p;
+}
+
+inline IntPoint operator*(const IntPoint& p1, const IntPoint& p2) {
+ IntPoint ret = p1;
+ ret *= p2;
+ return ret;
+}
+
+}
+
+#endif // CLIPPER_POLYGON_HPP
diff --git a/src/libnest2d/include/libnest2d/backends/clipper/geometries.hpp b/src/libnest2d/include/libnest2d/backends/clipper/geometries.hpp
index 9f881e7e0..232668f61 100644
--- a/src/libnest2d/include/libnest2d/backends/clipper/geometries.hpp
+++ b/src/libnest2d/include/libnest2d/backends/clipper/geometries.hpp
@@ -10,84 +10,15 @@
#include
#include
-#include
-
-namespace ClipperLib {
-using PointImpl = IntPoint;
-using PathImpl = Path;
-using HoleStore = std::vector;
-
-struct PolygonImpl {
- PathImpl Contour;
- HoleStore Holes;
-
- inline PolygonImpl() = default;
-
- inline explicit PolygonImpl(const PathImpl& cont): Contour(cont) {}
- inline explicit PolygonImpl(const HoleStore& holes):
- Holes(holes) {}
- inline PolygonImpl(const Path& cont, const HoleStore& holes):
- Contour(cont), Holes(holes) {}
-
- inline explicit PolygonImpl(PathImpl&& cont): Contour(std::move(cont)) {}
- inline explicit PolygonImpl(HoleStore&& holes): Holes(std::move(holes)) {}
- inline PolygonImpl(Path&& cont, HoleStore&& holes):
- Contour(std::move(cont)), Holes(std::move(holes)) {}
-};
-
-inline PointImpl& operator +=(PointImpl& p, const PointImpl& pa ) {
- // This could be done with SIMD
- p.X += pa.X;
- p.Y += pa.Y;
- return p;
-}
-
-inline PointImpl operator+(const PointImpl& p1, const PointImpl& p2) {
- PointImpl ret = p1;
- ret += p2;
- return ret;
-}
-
-inline PointImpl& operator -=(PointImpl& p, const PointImpl& pa ) {
- p.X -= pa.X;
- p.Y -= pa.Y;
- return p;
-}
-
-inline PointImpl operator -(PointImpl& p ) {
- PointImpl ret = p;
- ret.X = -ret.X;
- ret.Y = -ret.Y;
- return ret;
-}
-
-inline PointImpl operator-(const PointImpl& p1, const PointImpl& p2) {
- PointImpl ret = p1;
- ret -= p2;
- return ret;
-}
-
-inline PointImpl& operator *=(PointImpl& p, const PointImpl& pa ) {
- p.X *= pa.X;
- p.Y *= pa.Y;
- return p;
-}
-
-inline PointImpl operator*(const PointImpl& p1, const PointImpl& p2) {
- PointImpl ret = p1;
- ret *= p2;
- return ret;
-}
-
-}
+#include "clipper_polygon.hpp"
namespace libnest2d {
// Aliases for convinience
-using ClipperLib::PointImpl;
-using ClipperLib::PathImpl;
-using ClipperLib::PolygonImpl;
-using ClipperLib::HoleStore;
+using PointImpl = ClipperLib::IntPoint;
+using PathImpl = ClipperLib::Path;
+using HoleStore = ClipperLib::Paths;
+using PolygonImpl = ClipperLib::Polygon;
// Type of coordinate units used by Clipper
template<> struct CoordType {
@@ -158,33 +89,24 @@ template<> inline TCoord& y(PointImpl& p)
#define DISABLE_BOOST_AREA
namespace _smartarea {
+
template
inline double area(const PolygonImpl& /*sh*/) {
return std::nan("");
}
template<>
-inline double area(const PolygonImpl& sh) {
- double a = 0;
-
- std::for_each(sh.Holes.begin(), sh.Holes.end(), [&a](const PathImpl& h)
- {
- a -= ClipperLib::Area(h);
+inline double area(const PolygonImpl& sh) {
+ return std::accumulate(sh.Holes.begin(), sh.Holes.end(),
+ ClipperLib::Area(sh.Contour),
+ [](double a, const ClipperLib::Path& pt){
+ return a + ClipperLib::Area(pt);
});
-
- return -ClipperLib::Area(sh.Contour) + a;
}
template<>
-inline double area(const PolygonImpl& sh) {
- double a = 0;
-
- std::for_each(sh.Holes.begin(), sh.Holes.end(), [&a](const PathImpl& h)
- {
- a += ClipperLib::Area(h);
- });
-
- return ClipperLib::Area(sh.Contour) + a;
+inline double area(const PolygonImpl& sh) {
+ return -area(sh);
}
}
@@ -228,9 +150,10 @@ template<> inline void offset(PolygonImpl& sh, TCoord distance)
// but throwing would be an overkill. Instead, we should warn the
// caller about the inability to create correct geometries
if(!found_the_contour) {
- sh.Contour = r;
+ sh.Contour = std::move(r);
ClipperLib::ReversePath(sh.Contour);
- sh.Contour.push_back(sh.Contour.front());
+ auto front_p = sh.Contour.front();
+ sh.Contour.emplace_back(std::move(front_p));
found_the_contour = true;
} else {
dout() << "Warning: offsetting result is invalid!";
@@ -240,9 +163,10 @@ template<> inline void offset(PolygonImpl& sh, TCoord distance)
// TODO If there are multiple contours we can't be sure which hole
// belongs to the first contour. (But in this case the situation is
// bad enough to let it go...)
- sh.Holes.push_back(r);
+ sh.Holes.emplace_back(std::move(r));
ClipperLib::ReversePath(sh.Holes.back());
- sh.Holes.back().push_back(sh.Holes.back().front());
+ auto front_p = sh.Holes.back().front();
+ sh.Holes.back().emplace_back(std::move(front_p));
}
}
}
@@ -390,34 +314,53 @@ inline void rotate(PolygonImpl& sh, const Radians& rads)
} // namespace shapelike
#define DISABLE_BOOST_NFP_MERGE
-inline std::vector _merge(ClipperLib::Clipper& clipper) {
+inline std::vector clipper_execute(
+ ClipperLib::Clipper& clipper,
+ ClipperLib::ClipType clipType,
+ ClipperLib::PolyFillType subjFillType = ClipperLib::pftEvenOdd,
+ ClipperLib::PolyFillType clipFillType = ClipperLib::pftEvenOdd)
+{
shapelike::Shapes retv;
ClipperLib::PolyTree result;
- clipper.Execute(ClipperLib::ctUnion, result, ClipperLib::pftNegative);
+ clipper.Execute(clipType, result, subjFillType, clipFillType);
+
retv.reserve(static_cast(result.Total()));
std::function processHole;
auto processPoly = [&retv, &processHole](ClipperLib::PolyNode *pptr) {
- PolygonImpl poly(pptr->Contour);
- poly.Contour.push_back(poly.Contour.front());
+ PolygonImpl poly;
+ poly.Contour.swap(pptr->Contour);
+
+ assert(!pptr->IsHole());
+
+ if(pptr->IsOpen()) {
+ auto front_p = poly.Contour.front();
+ poly.Contour.emplace_back(front_p);
+ }
+
for(auto h : pptr->Childs) { processHole(h, poly); }
retv.push_back(poly);
};
processHole = [&processPoly](ClipperLib::PolyNode *pptr, PolygonImpl& poly)
{
- poly.Holes.push_back(pptr->Contour);
- poly.Holes.back().push_back(poly.Holes.back().front());
+ poly.Holes.emplace_back(std::move(pptr->Contour));
+
+ assert(pptr->IsHole());
+
+ if(pptr->IsOpen()) {
+ auto front_p = poly.Holes.back().front();
+ poly.Holes.back().emplace_back(front_p);
+ }
+
for(auto c : pptr->Childs) processPoly(c);
};
auto traverse = [&processPoly] (ClipperLib::PolyNode *node)
{
- for(auto ch : node->Childs) {
- processPoly(ch);
- }
+ for(auto ch : node->Childs) processPoly(ch);
};
traverse(&result);
@@ -438,14 +381,13 @@ merge(const std::vector& shapes)
for(auto& path : shapes) {
valid &= clipper.AddPath(path.Contour, ClipperLib::ptSubject, closed);
- for(auto& hole : path.Holes) {
- valid &= clipper.AddPath(hole, ClipperLib::ptSubject, closed);
- }
+ for(auto& h : path.Holes)
+ valid &= clipper.AddPath(h, ClipperLib::ptSubject, closed);
}
if(!valid) throw GeometryException(GeomErr::MERGE);
- return _merge(clipper);
+ return clipper_execute(clipper, ClipperLib::ctUnion, ClipperLib::pftNegative);
}
}
diff --git a/src/libnest2d/include/libnest2d/libnest2d.hpp b/src/libnest2d/include/libnest2d/libnest2d.hpp
index 49baa65f2..c7b252e5d 100644
--- a/src/libnest2d/include/libnest2d/libnest2d.hpp
+++ b/src/libnest2d/include/libnest2d/libnest2d.hpp
@@ -966,7 +966,7 @@ private:
for(size_t i = 0; i < pckgrp.size(); i++) {
auto items = pckgrp[i];
- pg.push_back({});
+ pg.emplace_back();
pg[i].reserve(items.size());
for(Item& itemA : items) {
diff --git a/src/libnest2d/include/libnest2d/placers/nfpplacer.hpp b/src/libnest2d/include/libnest2d/placers/nfpplacer.hpp
index 6fb717a7a..91affe978 100644
--- a/src/libnest2d/include/libnest2d/placers/nfpplacer.hpp
+++ b/src/libnest2d/include/libnest2d/placers/nfpplacer.hpp
@@ -261,7 +261,7 @@ template class EdgeCache {
while(next != endit) {
contour_.emap.emplace_back(*(first++), *(next++));
contour_.full_distance += contour_.emap.back().length();
- contour_.distances.push_back(contour_.full_distance);
+ contour_.distances.emplace_back(contour_.full_distance);
}
}
@@ -276,10 +276,10 @@ template class EdgeCache {
while(next != endit) {
hc.emap.emplace_back(*(first++), *(next++));
hc.full_distance += hc.emap.back().length();
- hc.distances.push_back(hc.full_distance);
+ hc.distances.emplace_back(hc.full_distance);
}
- holes_.push_back(hc);
+ holes_.emplace_back(std::move(hc));
}
}
diff --git a/src/libnest2d/include/libnest2d/placers/placer_boilerplate.hpp b/src/libnest2d/include/libnest2d/placers/placer_boilerplate.hpp
index 309a5007d..abcd86183 100644
--- a/src/libnest2d/include/libnest2d/placers/placer_boilerplate.hpp
+++ b/src/libnest2d/include/libnest2d/placers/placer_boilerplate.hpp
@@ -63,7 +63,7 @@ public:
bool pack(Item& item, const Range& rem = Range()) {
auto&& r = static_cast(this)->trypack(item, rem);
if(r) {
- items_.push_back(*(r.item_ptr_));
+ items_.emplace_back(*(r.item_ptr_));
farea_valid_ = false;
}
return r;
@@ -78,7 +78,7 @@ public:
if(r) {
r.item_ptr_->translation(r.move_);
r.item_ptr_->rotation(r.rot_);
- items_.push_back(*(r.item_ptr_));
+ items_.emplace_back(*(r.item_ptr_));
farea_valid_ = false;
}
}
diff --git a/src/libnest2d/include/libnest2d/selections/djd_heuristic.hpp b/src/libnest2d/include/libnest2d/selections/djd_heuristic.hpp
index b03534dc4..25007e580 100644
--- a/src/libnest2d/include/libnest2d/selections/djd_heuristic.hpp
+++ b/src/libnest2d/include/libnest2d/selections/djd_heuristic.hpp
@@ -667,7 +667,7 @@ public:
addBin();
ItemList& not_packed = not_packeds[b];
for(unsigned idx = b; idx < store_.size(); idx+=bincount_guess) {
- not_packed.push_back(store_[idx]);
+ not_packed.emplace_back(store_[idx]);
}
}
diff --git a/src/libnest2d/include/libnest2d/utils/boost_alg.hpp b/src/libnest2d/include/libnest2d/utils/boost_alg.hpp
index a6988ca00..baf1c6a10 100644
--- a/src/libnest2d/include/libnest2d/utils/boost_alg.hpp
+++ b/src/libnest2d/include/libnest2d/utils/boost_alg.hpp
@@ -463,7 +463,7 @@ template<> inline std::string serialize(
auto& v = *it;
hf.emplace_back(getX(v)*scale, getY(v)*scale);
};
- holes.push_back(hf);
+ holes.emplace_back(std::move(hf));
}
Polygonf poly;
diff --git a/src/libnest2d/tests/printer_parts.h b/src/libnest2d/tests/printer_parts.h
index b9a4eb8fa..1e65826bd 100644
--- a/src/libnest2d/tests/printer_parts.h
+++ b/src/libnest2d/tests/printer_parts.h
@@ -2,36 +2,10 @@
#define PRINTER_PARTS_H
#include
-#include
-
-#ifndef CLIPPER_BACKEND_HPP
-namespace ClipperLib {
-using PointImpl = IntPoint;
-using PathImpl = Path;
-using HoleStore = std::vector;
-
-struct PolygonImpl {
- PathImpl Contour;
- HoleStore Holes;
-
- inline PolygonImpl() {}
-
- inline explicit PolygonImpl(const PathImpl& cont): Contour(cont) {}
- inline explicit PolygonImpl(const HoleStore& holes):
- Holes(holes) {}
- inline PolygonImpl(const Path& cont, const HoleStore& holes):
- Contour(cont), Holes(holes) {}
-
- inline explicit PolygonImpl(PathImpl&& cont): Contour(std::move(cont)) {}
- inline explicit PolygonImpl(HoleStore&& holes): Holes(std::move(holes)) {}
- inline PolygonImpl(Path&& cont, HoleStore&& holes):
- Contour(std::move(cont)), Holes(std::move(holes)) {}
-};
-}
-#endif
+#include
using TestData = std::vector;
-using TestDataEx = std::vector;
+using TestDataEx = std::vector;
extern const TestData PRINTER_PART_POLYGONS;
extern const TestData STEGOSAUR_POLYGONS;
diff --git a/src/libslic3r/CMakeLists.txt b/src/libslic3r/CMakeLists.txt
index 7c248b095..b3e8f3500 100644
--- a/src/libslic3r/CMakeLists.txt
+++ b/src/libslic3r/CMakeLists.txt
@@ -165,6 +165,8 @@ add_library(libslic3r STATIC
utils.cpp
Utils.hpp
MTUtils.hpp
+ Zipper.hpp
+ Zipper.cpp
SLA/SLABoilerPlate.hpp
SLA/SLABasePool.hpp
SLA/SLABasePool.cpp
@@ -181,8 +183,8 @@ if (SLIC3R_PCH AND NOT SLIC3R_SYNTAXONLY)
add_precompiled_header(libslic3r pchheader.hpp FORCEINCLUDE)
endif ()
-target_compile_definitions(libslic3r PUBLIC -DUSE_TBB ${PNG_DEFINITIONS})
-target_include_directories(libslic3r PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} ${LIBNEST2D_INCLUDES} ${PNG_INCLUDE_DIRS} PUBLIC ${CMAKE_CURRENT_BINARY_DIR})
+target_compile_definitions(libslic3r PUBLIC -DUSE_TBB)
+target_include_directories(libslic3r PRIVATE ${CMAKE_CURRENT_SOURCE_DIR} ${LIBNEST2D_INCLUDES} PUBLIC ${CMAKE_CURRENT_BINARY_DIR})
target_link_libraries(libslic3r
libnest2d
admesh
@@ -191,8 +193,6 @@ target_link_libraries(libslic3r
clipper
nowide
${EXPAT_LIBRARIES}
- ${GLEW_LIBRARIES}
- ${PNG_LIBRARIES}
glu-libtess
polypartition
poly2tri
diff --git a/src/libslic3r/ClipperUtils.cpp b/src/libslic3r/ClipperUtils.cpp
index 9c685b0c3..649d52c0d 100644
--- a/src/libslic3r/ClipperUtils.cpp
+++ b/src/libslic3r/ClipperUtils.cpp
@@ -120,7 +120,7 @@ Slic3r::Polygon ClipperPath_to_Slic3rPolygon(const ClipperLib::Path &input)
{
Polygon retval;
for (ClipperLib::Path::const_iterator pit = input.begin(); pit != input.end(); ++pit)
- retval.points.push_back(Point( (*pit).X, (*pit).Y ));
+ retval.points.emplace_back(pit->X, pit->Y);
return retval;
}
@@ -128,7 +128,7 @@ Slic3r::Polyline ClipperPath_to_Slic3rPolyline(const ClipperLib::Path &input)
{
Polyline retval;
for (ClipperLib::Path::const_iterator pit = input.begin(); pit != input.end(); ++pit)
- retval.points.push_back(Point( (*pit).X, (*pit).Y ));
+ retval.points.emplace_back(pit->X, pit->Y);
return retval;
}
@@ -137,7 +137,7 @@ Slic3r::Polygons ClipperPaths_to_Slic3rPolygons(const ClipperLib::Paths &input)
Slic3r::Polygons retval;
retval.reserve(input.size());
for (ClipperLib::Paths::const_iterator it = input.begin(); it != input.end(); ++it)
- retval.push_back(ClipperPath_to_Slic3rPolygon(*it));
+ retval.emplace_back(ClipperPath_to_Slic3rPolygon(*it));
return retval;
}
@@ -146,7 +146,7 @@ Slic3r::Polylines ClipperPaths_to_Slic3rPolylines(const ClipperLib::Paths &input
Slic3r::Polylines retval;
retval.reserve(input.size());
for (ClipperLib::Paths::const_iterator it = input.begin(); it != input.end(); ++it)
- retval.push_back(ClipperPath_to_Slic3rPolyline(*it));
+ retval.emplace_back(ClipperPath_to_Slic3rPolyline(*it));
return retval;
}
@@ -171,7 +171,7 @@ Slic3rMultiPoint_to_ClipperPath(const MultiPoint &input)
{
ClipperLib::Path retval;
for (Points::const_iterator pit = input.points.begin(); pit != input.points.end(); ++pit)
- retval.push_back(ClipperLib::IntPoint( (*pit)(0), (*pit)(1) ));
+ retval.emplace_back((*pit)(0), (*pit)(1));
return retval;
}
@@ -181,7 +181,7 @@ Slic3rMultiPoint_to_ClipperPath_reversed(const Slic3r::MultiPoint &input)
ClipperLib::Path output;
output.reserve(input.points.size());
for (Slic3r::Points::const_reverse_iterator pit = input.points.rbegin(); pit != input.points.rend(); ++pit)
- output.push_back(ClipperLib::IntPoint( (*pit)(0), (*pit)(1) ));
+ output.emplace_back((*pit)(0), (*pit)(1));
return output;
}
@@ -189,7 +189,7 @@ ClipperLib::Paths Slic3rMultiPoints_to_ClipperPaths(const Polygons &input)
{
ClipperLib::Paths retval;
for (Polygons::const_iterator it = input.begin(); it != input.end(); ++it)
- retval.push_back(Slic3rMultiPoint_to_ClipperPath(*it));
+ retval.emplace_back(Slic3rMultiPoint_to_ClipperPath(*it));
return retval;
}
@@ -197,7 +197,7 @@ ClipperLib::Paths Slic3rMultiPoints_to_ClipperPaths(const Polylines &input)
{
ClipperLib::Paths retval;
for (Polylines::const_iterator it = input.begin(); it != input.end(); ++it)
- retval.push_back(Slic3rMultiPoint_to_ClipperPath(*it));
+ retval.emplace_back(Slic3rMultiPoint_to_ClipperPath(*it));
return retval;
}
@@ -226,7 +226,7 @@ ClipperLib::Paths _offset(ClipperLib::Paths &&input, ClipperLib::EndType endType
ClipperLib::Paths _offset(ClipperLib::Path &&input, ClipperLib::EndType endType, const double delta, ClipperLib::JoinType joinType, double miterLimit)
{
ClipperLib::Paths paths;
- paths.push_back(std::move(input));
+ paths.emplace_back(std::move(input));
return _offset(std::move(paths), endType, delta, joinType, miterLimit);
}
@@ -585,7 +585,7 @@ Polylines _clipper_pl(ClipperLib::ClipType clipType, const Polygons &subject, co
Polylines polylines;
polylines.reserve(subject.size());
for (Polygons::const_iterator polygon = subject.begin(); polygon != subject.end(); ++polygon)
- polylines.push_back(*polygon); // implicit call to split_at_first_point()
+ polylines.emplace_back(polygon->operator Polyline()); // implicit call to split_at_first_point()
// perform clipping
Polylines retval = _clipper_pl(clipType, polylines, clip, safety_offset_);
@@ -643,7 +643,7 @@ _clipper_ln(ClipperLib::ClipType clipType, const Lines &subject, const Polygons
// convert Polylines to Lines
Lines retval;
for (Polylines::const_iterator polyline = polylines.begin(); polyline != polylines.end(); ++polyline)
- retval.push_back(*polyline);
+ retval.emplace_back(polyline->operator Line());
return retval;
}
@@ -673,7 +673,7 @@ void traverse_pt(ClipperLib::PolyNodes &nodes, Polygons* retval)
ordering_points.reserve(nodes.size());
for (ClipperLib::PolyNodes::const_iterator it = nodes.begin(); it != nodes.end(); ++it) {
Point p((*it)->Contour.front().X, (*it)->Contour.front().Y);
- ordering_points.push_back(p);
+ ordering_points.emplace_back(p);
}
// perform the ordering
@@ -684,7 +684,7 @@ void traverse_pt(ClipperLib::PolyNodes &nodes, Polygons* retval)
for (ClipperLib::PolyNodes::iterator it = ordered_nodes.begin(); it != ordered_nodes.end(); ++it) {
// traverse the next depth
traverse_pt((*it)->Childs, retval);
- retval->push_back(ClipperPath_to_Slic3rPolygon((*it)->Contour));
+ retval->emplace_back(ClipperPath_to_Slic3rPolygon((*it)->Contour));
if ((*it)->IsHole()) retval->back().reverse(); // ccw
}
}
@@ -791,8 +791,8 @@ Polygons top_level_islands(const Slic3r::Polygons &polygons)
Polygons out;
out.reserve(polytree.ChildCount());
for (int i = 0; i < polytree.ChildCount(); ++i)
- out.push_back(ClipperPath_to_Slic3rPolygon(polytree.Childs[i]->Contour));
+ out.emplace_back(ClipperPath_to_Slic3rPolygon(polytree.Childs[i]->Contour));
return out;
}
-}
\ No newline at end of file
+}
diff --git a/src/libslic3r/ClipperUtils.hpp b/src/libslic3r/ClipperUtils.hpp
index cf06f1b5f..4c8742279 100644
--- a/src/libslic3r/ClipperUtils.hpp
+++ b/src/libslic3r/ClipperUtils.hpp
@@ -28,8 +28,8 @@ namespace Slic3r {
//-----------------------------------------------------------
// legacy code from Clipper documentation
-void AddOuterPolyNodeToExPolygons(ClipperLib::PolyNode& polynode, Slic3r::ExPolygons& expolygons);
-void PolyTreeToExPolygons(ClipperLib::PolyTree& polytree, Slic3r::ExPolygons& expolygons);
+void AddOuterPolyNodeToExPolygons(ClipperLib::PolyNode& polynode, Slic3r::ExPolygons *expolygons);
+Slic3r::ExPolygons PolyTreeToExPolygons(ClipperLib::PolyTree& polytree);
//-----------------------------------------------------------
ClipperLib::Path Slic3rMultiPoint_to_ClipperPath(const Slic3r::MultiPoint &input);
@@ -236,4 +236,4 @@ Polygons top_level_islands(const Slic3r::Polygons &polygons);
}
-#endif
\ No newline at end of file
+#endif
diff --git a/src/libslic3r/Config.cpp b/src/libslic3r/Config.cpp
index 968bcd474..94aa57533 100644
--- a/src/libslic3r/Config.cpp
+++ b/src/libslic3r/Config.cpp
@@ -280,7 +280,7 @@ std::ostream& ConfigDef::print_cli_help(std::ostream& out, bool show_defaults, s
// right: option description
std::string descr = def.tooltip;
- if (show_defaults && def.default_value != nullptr && def.type != coBool
+ if (show_defaults && def.default_value && def.type != coBool
&& (def.type != coString || !def.default_value->serialize().empty())) {
descr += " (";
if (!def.sidetext.empty()) {
@@ -653,7 +653,7 @@ ConfigOption* DynamicConfig::optptr(const t_config_option_key &opt_key, bool cre
// Let the parent decide what to do if the opt_key is not defined by this->def().
return nullptr;
ConfigOption *opt = nullptr;
- if (optdef->default_value != nullptr) {
+ if (optdef->default_value) {
opt = (optdef->default_value->type() == coEnum) ?
// Special case: For a DynamicConfig, convert a templated enum to a generic enum.
new ConfigOptionEnumGeneric(optdef->enum_keys_map, optdef->default_value->getInt()) :
@@ -809,8 +809,8 @@ void StaticConfig::set_defaults()
for (const std::string &key : this->keys()) {
const ConfigOptionDef *def = defs->get(key);
ConfigOption *opt = this->option(key);
- if (def != nullptr && opt != nullptr && def->default_value != nullptr)
- opt->set(def->default_value);
+ if (def != nullptr && opt != nullptr && def->default_value)
+ opt->set(def->default_value.get());
}
}
}
diff --git a/src/libslic3r/Config.hpp b/src/libslic3r/Config.hpp
index 3505b7ef4..5835a7b07 100644
--- a/src/libslic3r/Config.hpp
+++ b/src/libslic3r/Config.hpp
@@ -12,6 +12,7 @@
#include
#include
#include "libslic3r.h"
+#include "clonable_ptr.hpp"
#include "Point.hpp"
#include
@@ -1031,7 +1032,10 @@ public:
// What type? bool, int, string etc.
ConfigOptionType type = coNone;
// Default value of this option. The default value object is owned by ConfigDef, it is released in its destructor.
- const ConfigOption *default_value = nullptr;
+ Slic3r::clonable_ptr default_value;
+ void set_default_value(const ConfigOption* ptr) { this->default_value = Slic3r::clonable_ptr(ptr); }
+ template
+ const T* get_default_value() const { return static_cast(this->default_value.get()); }
// Usually empty.
// Special values - "i_enum_open", "f_enum_open" to provide combo box for int or float selection,
@@ -1120,12 +1124,6 @@ typedef std::map t_optiondef_map;
class ConfigDef
{
public:
- ~ConfigDef() {
- for (std::pair &def : this->options)
- delete def.second.default_value;
- this->options.clear();
- }
-
t_optiondef_map options;
bool has(const t_config_option_key &opt_key) const { return this->options.count(opt_key) > 0; }
diff --git a/src/libslic3r/GCode.cpp b/src/libslic3r/GCode.cpp
index 72e8616e5..f733dee21 100644
--- a/src/libslic3r/GCode.cpp
+++ b/src/libslic3r/GCode.cpp
@@ -173,7 +173,7 @@ std::string WipeTowerIntegration::append_tcr(GCode &gcodegen, const WipeTower::T
// Toolchangeresult.gcode assumes the wipe tower corner is at the origin
// We want to rotate and shift all extrusions (gcode postprocessing) and starting and ending position
- float alpha = m_wipe_tower_rotation/180.f * M_PI;
+ float alpha = m_wipe_tower_rotation/180.f * float(M_PI);
WipeTower::xy start_pos = tcr.start_pos;
WipeTower::xy end_pos = tcr.end_pos;
start_pos.rotate(alpha);
@@ -184,7 +184,7 @@ std::string WipeTowerIntegration::append_tcr(GCode &gcodegen, const WipeTower::T
// Disable linear advance for the wipe tower operations.
- gcode += "M900 K0\n";
+ gcode += (gcodegen.config().gcode_flavor == gcfRepRap ? std::string("M572 D0 S0\n") : std::string("M900 K0\n"));
// Move over the wipe tower.
// Retract for a tool change, using the toolchange retract value and setting the priming extra length.
gcode += gcodegen.retract(true);
@@ -201,12 +201,13 @@ std::string WipeTowerIntegration::append_tcr(GCode &gcodegen, const WipeTower::T
// Let the m_writer know the current extruder_id, but ignore the generated G-code.
if (new_extruder_id >= 0 && gcodegen.writer().need_toolchange(new_extruder_id))
gcodegen.writer().toolchange(new_extruder_id);
+ gcodegen.placeholder_parser().set("current_extruder", new_extruder_id);
+
// Always append the filament start G-code even if the extruder did not switch,
// because the wipe tower resets the linear advance and we want it to be re-enabled.
const std::string &start_filament_gcode = gcodegen.config().start_filament_gcode.get_at(new_extruder_id);
if (! start_filament_gcode.empty()) {
// Process the start_filament_gcode for the active filament only.
- gcodegen.placeholder_parser().set("current_extruder", new_extruder_id);
DynamicConfig config;
config.set_key_value("filament_extruder_id", new ConfigOptionInt(new_extruder_id));
gcode += gcodegen.placeholder_parser_process("start_filament_gcode", start_filament_gcode, new_extruder_id, &config);
@@ -289,7 +290,7 @@ std::string WipeTowerIntegration::prime(GCode &gcodegen)
if (&m_priming != nullptr && ! m_priming.extrusions.empty()) {
// Disable linear advance for the wipe tower operations.
- gcode += "M900 K0\n";
+ gcode += (gcodegen.config().gcode_flavor == gcfRepRap ? std::string("M572 D0 S0\n") : std::string("M900 K0\n"));
// Let the tool change be executed by the wipe tower class.
// Inform the G-code writer about the changes done behind its back.
gcode += m_priming.gcode;
@@ -519,43 +520,43 @@ void GCode::_do_export(Print &print, FILE *file)
// this->print_machine_envelope(file, print);
// shall be adjusted as well to produce a G-code block compatible with the particular firmware flavor.
if (print.config().gcode_flavor.value == gcfMarlin) {
- m_normal_time_estimator.set_max_acceleration(print.config().machine_max_acceleration_extruding.values[0]);
- m_normal_time_estimator.set_retract_acceleration(print.config().machine_max_acceleration_retracting.values[0]);
- m_normal_time_estimator.set_minimum_feedrate(print.config().machine_min_extruding_rate.values[0]);
- m_normal_time_estimator.set_minimum_travel_feedrate(print.config().machine_min_travel_rate.values[0]);
- m_normal_time_estimator.set_axis_max_acceleration(GCodeTimeEstimator::X, print.config().machine_max_acceleration_x.values[0]);
- m_normal_time_estimator.set_axis_max_acceleration(GCodeTimeEstimator::Y, print.config().machine_max_acceleration_y.values[0]);
- m_normal_time_estimator.set_axis_max_acceleration(GCodeTimeEstimator::Z, print.config().machine_max_acceleration_z.values[0]);
- m_normal_time_estimator.set_axis_max_acceleration(GCodeTimeEstimator::E, print.config().machine_max_acceleration_e.values[0]);
- m_normal_time_estimator.set_axis_max_feedrate(GCodeTimeEstimator::X, print.config().machine_max_feedrate_x.values[0]);
- m_normal_time_estimator.set_axis_max_feedrate(GCodeTimeEstimator::Y, print.config().machine_max_feedrate_y.values[0]);
- m_normal_time_estimator.set_axis_max_feedrate(GCodeTimeEstimator::Z, print.config().machine_max_feedrate_z.values[0]);
- m_normal_time_estimator.set_axis_max_feedrate(GCodeTimeEstimator::E, print.config().machine_max_feedrate_e.values[0]);
- m_normal_time_estimator.set_axis_max_jerk(GCodeTimeEstimator::X, print.config().machine_max_jerk_x.values[0]);
- m_normal_time_estimator.set_axis_max_jerk(GCodeTimeEstimator::Y, print.config().machine_max_jerk_y.values[0]);
- m_normal_time_estimator.set_axis_max_jerk(GCodeTimeEstimator::Z, print.config().machine_max_jerk_z.values[0]);
- m_normal_time_estimator.set_axis_max_jerk(GCodeTimeEstimator::E, print.config().machine_max_jerk_e.values[0]);
+ m_normal_time_estimator.set_max_acceleration((float)print.config().machine_max_acceleration_extruding.values[0]);
+ m_normal_time_estimator.set_retract_acceleration((float)print.config().machine_max_acceleration_retracting.values[0]);
+ m_normal_time_estimator.set_minimum_feedrate((float)print.config().machine_min_extruding_rate.values[0]);
+ m_normal_time_estimator.set_minimum_travel_feedrate((float)print.config().machine_min_travel_rate.values[0]);
+ m_normal_time_estimator.set_axis_max_acceleration(GCodeTimeEstimator::X, (float)print.config().machine_max_acceleration_x.values[0]);
+ m_normal_time_estimator.set_axis_max_acceleration(GCodeTimeEstimator::Y, (float)print.config().machine_max_acceleration_y.values[0]);
+ m_normal_time_estimator.set_axis_max_acceleration(GCodeTimeEstimator::Z, (float)print.config().machine_max_acceleration_z.values[0]);
+ m_normal_time_estimator.set_axis_max_acceleration(GCodeTimeEstimator::E, (float)print.config().machine_max_acceleration_e.values[0]);
+ m_normal_time_estimator.set_axis_max_feedrate(GCodeTimeEstimator::X, (float)print.config().machine_max_feedrate_x.values[0]);
+ m_normal_time_estimator.set_axis_max_feedrate(GCodeTimeEstimator::Y, (float)print.config().machine_max_feedrate_y.values[0]);
+ m_normal_time_estimator.set_axis_max_feedrate(GCodeTimeEstimator::Z, (float)print.config().machine_max_feedrate_z.values[0]);
+ m_normal_time_estimator.set_axis_max_feedrate(GCodeTimeEstimator::E, (float)print.config().machine_max_feedrate_e.values[0]);
+ m_normal_time_estimator.set_axis_max_jerk(GCodeTimeEstimator::X, (float)print.config().machine_max_jerk_x.values[0]);
+ m_normal_time_estimator.set_axis_max_jerk(GCodeTimeEstimator::Y, (float)print.config().machine_max_jerk_y.values[0]);
+ m_normal_time_estimator.set_axis_max_jerk(GCodeTimeEstimator::Z, (float)print.config().machine_max_jerk_z.values[0]);
+ m_normal_time_estimator.set_axis_max_jerk(GCodeTimeEstimator::E, (float)print.config().machine_max_jerk_e.values[0]);
if (m_silent_time_estimator_enabled && print.config().machine_max_acceleration_extruding.values.size() > 1)
{
m_silent_time_estimator.reset();
m_silent_time_estimator.set_dialect(print.config().gcode_flavor);
- m_silent_time_estimator.set_max_acceleration(print.config().machine_max_acceleration_extruding.values[1]);
- m_silent_time_estimator.set_retract_acceleration(print.config().machine_max_acceleration_retracting.values[1]);
- m_silent_time_estimator.set_minimum_feedrate(print.config().machine_min_extruding_rate.values[1]);
- m_silent_time_estimator.set_minimum_travel_feedrate(print.config().machine_min_travel_rate.values[1]);
- m_silent_time_estimator.set_axis_max_acceleration(GCodeTimeEstimator::X, print.config().machine_max_acceleration_x.values[1]);
- m_silent_time_estimator.set_axis_max_acceleration(GCodeTimeEstimator::Y, print.config().machine_max_acceleration_y.values[1]);
- m_silent_time_estimator.set_axis_max_acceleration(GCodeTimeEstimator::Z, print.config().machine_max_acceleration_z.values[1]);
- m_silent_time_estimator.set_axis_max_acceleration(GCodeTimeEstimator::E, print.config().machine_max_acceleration_e.values[1]);
- m_silent_time_estimator.set_axis_max_feedrate(GCodeTimeEstimator::X, print.config().machine_max_feedrate_x.values[1]);
- m_silent_time_estimator.set_axis_max_feedrate(GCodeTimeEstimator::Y, print.config().machine_max_feedrate_y.values[1]);
- m_silent_time_estimator.set_axis_max_feedrate(GCodeTimeEstimator::Z, print.config().machine_max_feedrate_z.values[1]);
- m_silent_time_estimator.set_axis_max_feedrate(GCodeTimeEstimator::E, print.config().machine_max_feedrate_e.values[1]);
- m_silent_time_estimator.set_axis_max_jerk(GCodeTimeEstimator::X, print.config().machine_max_jerk_x.values[1]);
- m_silent_time_estimator.set_axis_max_jerk(GCodeTimeEstimator::Y, print.config().machine_max_jerk_y.values[1]);
- m_silent_time_estimator.set_axis_max_jerk(GCodeTimeEstimator::Z, print.config().machine_max_jerk_z.values[1]);
- m_silent_time_estimator.set_axis_max_jerk(GCodeTimeEstimator::E, print.config().machine_max_jerk_e.values[1]);
+ m_silent_time_estimator.set_max_acceleration((float)print.config().machine_max_acceleration_extruding.values[1]);
+ m_silent_time_estimator.set_retract_acceleration((float)print.config().machine_max_acceleration_retracting.values[1]);
+ m_silent_time_estimator.set_minimum_feedrate((float)print.config().machine_min_extruding_rate.values[1]);
+ m_silent_time_estimator.set_minimum_travel_feedrate((float)print.config().machine_min_travel_rate.values[1]);
+ m_silent_time_estimator.set_axis_max_acceleration(GCodeTimeEstimator::X, (float)print.config().machine_max_acceleration_x.values[1]);
+ m_silent_time_estimator.set_axis_max_acceleration(GCodeTimeEstimator::Y, (float)print.config().machine_max_acceleration_y.values[1]);
+ m_silent_time_estimator.set_axis_max_acceleration(GCodeTimeEstimator::Z, (float)print.config().machine_max_acceleration_z.values[1]);
+ m_silent_time_estimator.set_axis_max_acceleration(GCodeTimeEstimator::E, (float)print.config().machine_max_acceleration_e.values[1]);
+ m_silent_time_estimator.set_axis_max_feedrate(GCodeTimeEstimator::X, (float)print.config().machine_max_feedrate_x.values[1]);
+ m_silent_time_estimator.set_axis_max_feedrate(GCodeTimeEstimator::Y, (float)print.config().machine_max_feedrate_y.values[1]);
+ m_silent_time_estimator.set_axis_max_feedrate(GCodeTimeEstimator::Z, (float)print.config().machine_max_feedrate_z.values[1]);
+ m_silent_time_estimator.set_axis_max_feedrate(GCodeTimeEstimator::E, (float)print.config().machine_max_feedrate_e.values[1]);
+ m_silent_time_estimator.set_axis_max_jerk(GCodeTimeEstimator::X, (float)print.config().machine_max_jerk_x.values[1]);
+ m_silent_time_estimator.set_axis_max_jerk(GCodeTimeEstimator::Y, (float)print.config().machine_max_jerk_y.values[1]);
+ m_silent_time_estimator.set_axis_max_jerk(GCodeTimeEstimator::Z, (float)print.config().machine_max_jerk_z.values[1]);
+ m_silent_time_estimator.set_axis_max_jerk(GCodeTimeEstimator::E, (float)print.config().machine_max_jerk_e.values[1]);
if (print.config().single_extruder_multi_material) {
// As of now the fields are shown at the UI dialog in the same combo box as the ramming values, so they
// are considered to be active for the single extruder multi-material printers only.
@@ -1051,6 +1052,15 @@ void GCode::_do_export(Print &print, FILE *file)
}
_write(file, m_writer.update_progress(m_layer_count, m_layer_count, true)); // 100%
_write(file, m_writer.postamble());
+
+ // adds tags for time estimators
+ if (print.config().remaining_times.value)
+ {
+ _writeln(file, GCodeTimeEstimator::Normal_Last_M73_Output_Placeholder_Tag);
+ if (m_silent_time_estimator_enabled)
+ _writeln(file, GCodeTimeEstimator::Silent_Last_M73_Output_Placeholder_Tag);
+ }
+
print.throw_if_canceled();
// calculates estimated printing time
@@ -1062,26 +1072,54 @@ void GCode::_do_export(Print &print, FILE *file)
print.m_print_statistics.clear();
print.m_print_statistics.estimated_normal_print_time = m_normal_time_estimator.get_time_dhms();
print.m_print_statistics.estimated_silent_print_time = m_silent_time_estimator_enabled ? m_silent_time_estimator.get_time_dhms() : "N/A";
- for (const Extruder &extruder : m_writer.extruders()) {
- double used_filament = extruder.used_filament() + (has_wipe_tower ? print.wipe_tower_data().used_filament[extruder.id()] : 0.f);
- double extruded_volume = extruder.extruded_volume() + (has_wipe_tower ? print.wipe_tower_data().used_filament[extruder.id()] * 2.4052f : 0.f); // assumes 1.75mm filament diameter
- double filament_weight = extruded_volume * extruder.filament_density() * 0.001;
- double filament_cost = filament_weight * extruder.filament_cost() * 0.001;
- print.m_print_statistics.filament_stats.insert(std::pair(extruder.id(), (float)used_filament));
- _write_format(file, "; filament used = %.1lfmm (%.1lfcm3)\n", used_filament, extruded_volume * 0.001);
- if (filament_weight > 0.) {
- print.m_print_statistics.total_weight = print.m_print_statistics.total_weight + filament_weight;
- _write_format(file, "; filament used = %.1lf\n", filament_weight);
- if (filament_cost > 0.) {
- print.m_print_statistics.total_cost = print.m_print_statistics.total_cost + filament_cost;
- _write_format(file, "; filament cost = %.1lf\n", filament_cost);
+ std::vector extruders = m_writer.extruders();
+ if (! extruders.empty()) {
+ std::pair out_filament_used_mm ("; filament used [mm] = ", 0);
+ std::pair out_filament_used_cm3("; filament used [cm3] = ", 0);
+ std::pair out_filament_used_g ("; filament used [g] = ", 0);
+ std::pair out_filament_cost ("; filament cost = ", 0);
+ for (const Extruder &extruder : extruders) {
+ double used_filament = extruder.used_filament() + (has_wipe_tower ? print.wipe_tower_data().used_filament[extruder.id()] : 0.f);
+ double extruded_volume = extruder.extruded_volume() + (has_wipe_tower ? print.wipe_tower_data().used_filament[extruder.id()] * 2.4052f : 0.f); // assumes 1.75mm filament diameter
+ double filament_weight = extruded_volume * extruder.filament_density() * 0.001;
+ double filament_cost = filament_weight * extruder.filament_cost() * 0.001;
+ auto append = [&extruder, &extruders](std::pair &dst, const char *tmpl, double value) {
+ while (dst.second < extruder.id()) {
+ // Fill in the non-printing extruders with zeros.
+ dst.first += (dst.second > 0) ? ", 0" : "0";
+ ++ dst.second;
+ }
+ if (dst.second > 0)
+ dst.first += ", ";
+ char buf[64];
+ sprintf(buf, tmpl, value);
+ dst.first += buf;
+ ++ dst.second;
+ };
+ print.m_print_statistics.filament_stats.insert(std::pair(extruder.id(), (float)used_filament));
+ append(out_filament_used_mm, "%.1lf", used_filament);
+ append(out_filament_used_cm3, "%.1lf", extruded_volume * 0.001);
+ if (filament_weight > 0.) {
+ print.m_print_statistics.total_weight = print.m_print_statistics.total_weight + filament_weight;
+ append(out_filament_used_g, "%.1lf", filament_weight);
+ if (filament_cost > 0.) {
+ print.m_print_statistics.total_cost = print.m_print_statistics.total_cost + filament_cost;
+ append(out_filament_cost, "%.1lf", filament_cost);
+ }
}
+ print.m_print_statistics.total_used_filament += used_filament;
+ print.m_print_statistics.total_extruded_volume += extruded_volume;
+ print.m_print_statistics.total_wipe_tower_filament += has_wipe_tower ? used_filament - extruder.used_filament() : 0.;
+ print.m_print_statistics.total_wipe_tower_cost += has_wipe_tower ? (extruded_volume - extruder.extruded_volume())* extruder.filament_density() * 0.001 * extruder.filament_cost() * 0.001 : 0.;
}
- print.m_print_statistics.total_used_filament += used_filament;
- print.m_print_statistics.total_extruded_volume += extruded_volume;
- print.m_print_statistics.total_wipe_tower_filament += has_wipe_tower ? used_filament - extruder.used_filament() : 0.;
- print.m_print_statistics.total_wipe_tower_cost += has_wipe_tower ? (extruded_volume - extruder.extruded_volume())* extruder.filament_density() * 0.001 * extruder.filament_cost() * 0.001 : 0.;
+ _writeln(file, out_filament_used_mm.first);
+ _writeln(file, out_filament_used_cm3.first);
+ if (out_filament_used_g.second)
+ _writeln(file, out_filament_used_g.first);
+ if (out_filament_cost.second)
+ _writeln(file, out_filament_cost.first);
}
+ _write_format(file, "; total filament used [g] = %.1lf\n", print.m_print_statistics.total_weight);
_write_format(file, "; total filament cost = %.1lf\n", print.m_print_statistics.total_cost);
_write_format(file, "; estimated printing time (normal mode) = %s\n", m_normal_time_estimator.get_time_dhms().c_str());
if (m_silent_time_estimator_enabled)
@@ -1536,7 +1574,7 @@ void GCode::process_layer(
std::max(region.config().perimeter_extruder.value - 1, 0);
// Let's recover vector of extruder overrides:
- const ExtruderPerCopy* entity_overrides = const_cast(layer_tools).wiping_extrusions().get_extruder_overrides(fill, correct_extruder_id, layer_to_print.object()->copies().size());
+ const ExtruderPerCopy* entity_overrides = const_cast(layer_tools).wiping_extrusions().get_extruder_overrides(fill, correct_extruder_id, (int)layer_to_print.object()->copies().size());
// Now we must add this extrusion into the by_extruder map, once for each extruder that will print it:
for (unsigned int extruder : layer_tools.extruders)
@@ -2584,9 +2622,12 @@ std::string GCode::_extrude(const ExtrusionPath &path, const std::string &descri
return gcode;
}
-std::string GCode::_before_extrude(const ExtrusionPath &path, const std::string &description, double speed) {
+std::string GCode::_before_extrude(const ExtrusionPath &path, const std::string &description_in, double speed) {
std::string gcode;
-
+ std::string description{ description_in };
+ if (is_bridge(path.role()))
+ description += " (bridge)";
+
// go to first point of extrusion path
if (!m_last_pos_defined || m_last_pos != path.first_point()) {
gcode += this->travel_to(
diff --git a/src/libslic3r/GCode/Analyzer.cpp b/src/libslic3r/GCode/Analyzer.cpp
index 1be26c722..53c2934dc 100644
--- a/src/libslic3r/GCode/Analyzer.cpp
+++ b/src/libslic3r/GCode/Analyzer.cpp
@@ -776,6 +776,9 @@ void GCodeAnalyzer::_calc_gcode_preview_extrusion_layers(GCodePreviewData& previ
preview_data.ranges.width.update_from(width_range);
preview_data.ranges.feedrate.update_from(feedrate_range);
preview_data.ranges.volumetric_rate.update_from(volumetric_rate_range);
+
+ // we need to sort the layers by their z as they can be shuffled in case of sequential prints
+ std::sort(preview_data.extrusion.layers.begin(), preview_data.extrusion.layers.end(), [](const GCodePreviewData::Extrusion::Layer& l1, const GCodePreviewData::Extrusion::Layer& l2)->bool { return l1.z < l2.z; });
}
void GCodeAnalyzer::_calc_gcode_preview_travel(GCodePreviewData& preview_data, std::function cancel_callback)
@@ -855,6 +858,11 @@ void GCodeAnalyzer::_calc_gcode_preview_travel(GCodePreviewData& preview_data, s
preview_data.ranges.height.update_from(height_range);
preview_data.ranges.width.update_from(width_range);
preview_data.ranges.feedrate.update_from(feedrate_range);
+
+ // we need to sort the polylines by their min z as they can be shuffled in case of sequential prints
+ std::sort(preview_data.travel.polylines.begin(), preview_data.travel.polylines.end(),
+ [](const GCodePreviewData::Travel::Polyline& p1, const GCodePreviewData::Travel::Polyline& p2)->bool
+ { return unscale(p1.polyline.bounding_box().min(2)) < unscale(p2.polyline.bounding_box().min(2)); });
}
void GCodeAnalyzer::_calc_gcode_preview_retractions(GCodePreviewData& preview_data, std::function cancel_callback)
@@ -877,6 +885,11 @@ void GCodeAnalyzer::_calc_gcode_preview_retractions(GCodePreviewData& preview_da
Vec3crd position(scale_(move.start_position.x()), scale_(move.start_position.y()), scale_(move.start_position.z()));
preview_data.retraction.positions.emplace_back(position, move.data.width, move.data.height);
}
+
+ // we need to sort the positions by their z as they can be shuffled in case of sequential prints
+ std::sort(preview_data.retraction.positions.begin(), preview_data.retraction.positions.end(),
+ [](const GCodePreviewData::Retraction::Position& p1, const GCodePreviewData::Retraction::Position& p2)->bool
+ { return unscale(p1.position(2)) < unscale(p2.position(2)); });
}
void GCodeAnalyzer::_calc_gcode_preview_unretractions(GCodePreviewData& preview_data, std::function cancel_callback)
@@ -899,6 +912,11 @@ void GCodeAnalyzer::_calc_gcode_preview_unretractions(GCodePreviewData& preview_
Vec3crd position(scale_(move.start_position.x()), scale_(move.start_position.y()), scale_(move.start_position.z()));
preview_data.unretraction.positions.emplace_back(position, move.data.width, move.data.height);
}
+
+ // we need to sort the positions by their z as they can be shuffled in case of sequential prints
+ std::sort(preview_data.unretraction.positions.begin(), preview_data.unretraction.positions.end(),
+ [](const GCodePreviewData::Retraction::Position& p1, const GCodePreviewData::Retraction::Position& p2)->bool
+ { return unscale(p1.position(2)) < unscale(p2.position(2)); });
}
// Return an estimate of the memory consumed by the time estimator.
diff --git a/src/libslic3r/GCode/PostProcessor.cpp b/src/libslic3r/GCode/PostProcessor.cpp
index df4acc1bf..25982959b 100644
--- a/src/libslic3r/GCode/PostProcessor.cpp
+++ b/src/libslic3r/GCode/PostProcessor.cpp
@@ -4,6 +4,7 @@
#include
#include
#include
+#include
#ifdef WIN32
@@ -11,6 +12,7 @@
#define WIN32_LEAN_AND_MEAN
#define NOMINMAX
#include
+#include
// https://blogs.msdn.microsoft.com/twistylittlepassagesallalike/2011/04/23/everyone-quotes-command-line-arguments-the-wrong-way/
// This routine appends the given argument to a command line such that CommandLineToArgvW will return the argument string unchanged.
diff --git a/src/libslic3r/GCode/WipeTowerPrusaMM.cpp b/src/libslic3r/GCode/WipeTowerPrusaMM.cpp
index 6f9b488a3..85f6a4a87 100644
--- a/src/libslic3r/GCode/WipeTowerPrusaMM.cpp
+++ b/src/libslic3r/GCode/WipeTowerPrusaMM.cpp
@@ -40,7 +40,7 @@ namespace PrusaMultiMaterial {
class Writer
{
public:
- Writer(float layer_height, float line_width) :
+ Writer(float layer_height, float line_width, GCodeFlavor flavor) :
m_current_pos(std::numeric_limits::max(), std::numeric_limits::max()),
m_current_z(0.f),
m_current_feedrate(0.f),
@@ -48,7 +48,8 @@ public:
m_extrusion_flow(0.f),
m_preview_suppressed(false),
m_elapsed_time(0.f),
- m_default_analyzer_line_width(line_width)
+ m_default_analyzer_line_width(line_width),
+ m_gcode_flavor(flavor)
{
// adds tag for analyzer:
char buf[64];
@@ -333,7 +334,10 @@ public:
Writer& set_extruder_trimpot(int current)
{
char buf[128];
- sprintf(buf, "M907 E%d\n", current);
+ if (m_gcode_flavor == gcfRepRap)
+ sprintf(buf, "M906 E%d\n", current);
+ else
+ sprintf(buf, "M907 E%d\n", current);
m_gcode += buf;
return *this;
};
@@ -407,6 +411,7 @@ private:
int current_temp = -1;
const float m_default_analyzer_line_width;
float m_used_filament_length = 0.f;
+ GCodeFlavor m_gcode_flavor;
std::string set_format_X(float x)
{
@@ -540,7 +545,7 @@ WipeTower::ToolChangeResult WipeTowerPrusaMM::prime(
const float prime_section_width = std::min(240.f / tools.size(), 60.f);
box_coordinates cleaning_box(xy(5.f, 0.01f + m_perimeter_width/2.f), prime_section_width, 100.f);
- PrusaMultiMaterial::Writer writer(m_layer_height, m_perimeter_width);
+ PrusaMultiMaterial::Writer writer(m_layer_height, m_perimeter_width, m_gcode_flavor);
writer.set_extrusion_flow(m_extrusion_flow)
.set_z(m_z_pos)
.set_initial_tool(m_current_tool)
@@ -642,7 +647,7 @@ WipeTower::ToolChangeResult WipeTowerPrusaMM::tool_change(unsigned int tool, boo
(tool != (unsigned int)(-1) ? /*m_layer_info->depth*/wipe_area+m_depth_traversed-0.5*m_perimeter_width
: m_wipe_tower_depth-m_perimeter_width));
- PrusaMultiMaterial::Writer writer(m_layer_height, m_perimeter_width);
+ PrusaMultiMaterial::Writer writer(m_layer_height, m_perimeter_width, m_gcode_flavor);
writer.set_extrusion_flow(m_extrusion_flow)
.set_z(m_z_pos)
.set_initial_tool(m_current_tool)
@@ -661,7 +666,7 @@ WipeTower::ToolChangeResult WipeTowerPrusaMM::tool_change(unsigned int tool, boo
// Increase the extruder driver current to allow fast ramming.
if (m_set_extruder_trimpot)
- writer.set_extruder_trimpot(550);
+ writer.set_extruder_trimpot(750);
// Ram the hot material out of the melt zone, retract the filament into the cooling tubes and let it cool.
if (tool != (unsigned int)-1){ // This is not the last change.
@@ -723,9 +728,7 @@ WipeTower::ToolChangeResult WipeTowerPrusaMM::toolchange_Brim(bool sideOnly, flo
m_wipe_tower_width,
m_wipe_tower_depth);
- //use first layer width parameter
-
- PrusaMultiMaterial::Writer writer(m_layer_height, m_brim_width);
+ PrusaMultiMaterial::Writer writer(m_layer_height, m_brim_width, m_gcode_flavor);
writer.set_extrusion_flow(m_extrusion_flow * 1.1f)
.set_z(m_z_pos) // Let the writer know the current Z position as a base for Z-hop.
.set_initial_tool(m_current_tool)
@@ -1056,7 +1059,7 @@ WipeTower::ToolChangeResult WipeTowerPrusaMM::finish_layer()
// Otherwise the caller would likely travel to the wipe tower in vain.
assert(! this->layer_finished());
- PrusaMultiMaterial::Writer writer(m_layer_height, m_perimeter_width);
+ PrusaMultiMaterial::Writer writer(m_layer_height, m_perimeter_width, m_gcode_flavor);
writer.set_extrusion_flow(m_extrusion_flow)
.set_z(m_z_pos)
.set_initial_tool(m_current_tool)
diff --git a/src/libslic3r/GCode/WipeTowerPrusaMM.hpp b/src/libslic3r/GCode/WipeTowerPrusaMM.hpp
index d9de2229b..b6bc5af47 100644
--- a/src/libslic3r/GCode/WipeTowerPrusaMM.hpp
+++ b/src/libslic3r/GCode/WipeTowerPrusaMM.hpp
@@ -9,6 +9,7 @@
#include "PrintConfig.hpp"
#include "WipeTower.hpp"
+#include "PrintConfig.hpp"
namespace Slic3r
@@ -55,8 +56,7 @@ public:
// y -- y coordinates of wipe tower in mm ( left bottom corner )
// width -- width of wipe tower in mm ( default 60 mm - leave as it is )
// wipe_area -- space available for one toolchange in mm
- WipeTowerPrusaMM(PrintConfig &config,
- const std::vector>& wiping_matrix, unsigned int initial_tool, float first_layer_width) :
+ WipeTowerPrusaMM(PrintConfig &config, const std::vector>& wiping_matrix, unsigned int initial_tool, float first_layer_width) :
m_wipe_tower_pos(float(config.wipe_tower_x.value), float(config.wipe_tower_y.value)),
m_wipe_tower_width(float(config.wipe_tower_width.value)),
m_wipe_tower_rotation_angle(float(config.wipe_tower_rotation_angle.value)),
@@ -69,6 +69,7 @@ public:
m_extra_loading_move(float(config.extra_loading_move.value)),
m_bridging(float(config.wipe_tower_bridging)),
m_set_extruder_trimpot(config.high_current_on_filament_swap.value),
+ m_gcode_flavor(config.gcode_flavor),
m_current_tool(initial_tool),
wipe_volumes(wiping_matrix),
m_brim_width(first_layer_width),
@@ -206,7 +207,7 @@ private:
const bool m_peters_wipe_tower = false; // sparse wipe tower inspired by Peter's post processor - not finished yet
- const float Filament_Area = M_PI * 1.75f * 1.75f / 4.f; // filament area in mm^2
+ const float Filament_Area = float(M_PI * 1.75f * 1.75f / 4.f); // filament area in mm^2
const float Width_To_Nozzle_Ratio = 1.25f; // desired line width (oval) in multiples of nozzle diameter - may not be actually neccessary to adjust
const float WT_EPSILON = 1e-3f;
@@ -233,11 +234,11 @@ private:
bool m_set_extruder_trimpot = false;
bool m_retain_speed_override = true;
bool m_adhesion = true;
+ GCodeFlavor m_gcode_flavor;
- float m_perimeter_width = 0.4 * Width_To_Nozzle_Ratio; // Width of an extrusion line, also a perimeter spacing for 100% infill.
+ float m_perimeter_width = 0.4f * Width_To_Nozzle_Ratio; // Width of an extrusion line, also a perimeter spacing for 100% infill.
float m_brim_width = 0.4 * Width_To_Nozzle_Ratio * Width_To_Nozzle_Ratio; // Width of an extrusion line, also a perimeter spacing for 100% infill.
- float m_extrusion_flow = 0.038; //0.029f;// Extrusion flow is derived from m_perimeter_width, layer height and filament diameter.
-
+ float m_extrusion_flow = 0.038f; //0.029f;// Extrusion flow is derived from m_perimeter_width, layer height and filament diameter.
struct FilamentParameters {
material_type material = PLA;
@@ -280,12 +281,12 @@ private:
{
if ( layer_height < 0 )
return m_extrusion_flow;
- return layer_height * ( m_perimeter_width - layer_height * (1-M_PI/4.f)) / Filament_Area;
+ return layer_height * ( m_perimeter_width - layer_height * (1.f-float(M_PI)/4.f)) / Filament_Area;
}
// Calculates length of extrusion line to extrude given volume
float volume_to_length(float volume, float line_width, float layer_height) const {
- return std::max(0., volume / (layer_height * (line_width - layer_height * (1. - M_PI / 4.))));
+ return std::max(0.f, volume / (layer_height * (line_width - layer_height * (1.f - float(M_PI) / 4.f))));
}
// Calculates depth for all layers and propagates them downwards
diff --git a/src/libslic3r/GCodeTimeEstimator.cpp b/src/libslic3r/GCodeTimeEstimator.cpp
index 461b4cd35..60d7a4cdf 100644
--- a/src/libslic3r/GCodeTimeEstimator.cpp
+++ b/src/libslic3r/GCodeTimeEstimator.cpp
@@ -38,7 +38,6 @@ static const std::string MOVE_TYPE_STR[Slic3r::GCodeTimeEstimator::Block::Num_Ty
#endif // ENABLE_MOVE_STATS
namespace Slic3r {
-
void GCodeTimeEstimator::Feedrates::reset()
{
feedrate = 0.0f;
@@ -171,6 +170,8 @@ namespace Slic3r {
const std::string GCodeTimeEstimator::Normal_First_M73_Output_Placeholder_Tag = "; NORMAL_FIRST_M73_OUTPUT_PLACEHOLDER";
const std::string GCodeTimeEstimator::Silent_First_M73_Output_Placeholder_Tag = "; SILENT_FIRST_M73_OUTPUT_PLACEHOLDER";
+ const std::string GCodeTimeEstimator::Normal_Last_M73_Output_Placeholder_Tag = "; NORMAL_LAST_M73_OUTPUT_PLACEHOLDER";
+ const std::string GCodeTimeEstimator::Silent_Last_M73_Output_Placeholder_Tag = "; SILENT_LAST_M73_OUTPUT_PLACEHOLDER";
GCodeTimeEstimator::GCodeTimeEstimator(EMode mode)
: _mode(mode)
@@ -306,9 +307,17 @@ namespace Slic3r {
sprintf(time_line, time_mask.c_str(), "0", _get_time_minutes(_time).c_str());
gcode_line = time_line;
}
+ // replaces placeholders for final line M73 with the real lines
+ else if (((_mode == Normal) && (gcode_line == Normal_Last_M73_Output_Placeholder_Tag)) ||
+ ((_mode == Silent) && (gcode_line == Silent_Last_M73_Output_Placeholder_Tag)))
+ {
+ sprintf(time_line, time_mask.c_str(), "100", "0");
+ gcode_line = time_line;
+ }
else
gcode_line += "\n";
+
// add remaining time lines where needed
_parser.parse_line(gcode_line,
[this, &it_line_id, &g1_lines_count, &last_recorded_time, &time_line, &gcode_line, time_mask, interval](GCodeReader& reader, const GCodeReader::GCodeLine& line)
@@ -685,6 +694,8 @@ namespace Slic3r {
set_axis_position(X, 0.0f);
set_axis_position(Y, 0.0f);
set_axis_position(Z, 0.0f);
+ if (get_e_local_positioning_type() == Absolute)
+ set_axis_position(E, 0.0f);
set_additional_time(0.0f);
@@ -705,7 +716,6 @@ namespace Slic3r {
_blocks.clear();
}
-
void GCodeTimeEstimator::_calculate_time()
{
PROFILE_FUNC();
diff --git a/src/libslic3r/GCodeTimeEstimator.hpp b/src/libslic3r/GCodeTimeEstimator.hpp
index ef91d5ff1..1fbc1c14b 100644
--- a/src/libslic3r/GCodeTimeEstimator.hpp
+++ b/src/libslic3r/GCodeTimeEstimator.hpp
@@ -19,6 +19,8 @@ namespace Slic3r {
public:
static const std::string Normal_First_M73_Output_Placeholder_Tag;
static const std::string Silent_First_M73_Output_Placeholder_Tag;
+ static const std::string Normal_Last_M73_Output_Placeholder_Tag;
+ static const std::string Silent_Last_M73_Output_Placeholder_Tag;
enum EMode : unsigned char
{
diff --git a/src/libslic3r/Geometry.cpp b/src/libslic3r/Geometry.cpp
index 80c40ca9d..1db8c2b70 100644
--- a/src/libslic3r/Geometry.cpp
+++ b/src/libslic3r/Geometry.cpp
@@ -1188,6 +1188,29 @@ Transformation Transformation::operator * (const Transformation& other) const
return Transformation(get_matrix() * other.get_matrix());
}
+Eigen::Quaterniond rotation_xyz_diff(const Vec3d &rot_xyz_from, const Vec3d &rot_xyz_to)
+{
+ return
+ // From the current coordinate system to world.
+ Eigen::AngleAxisd(rot_xyz_to(2), Vec3d::UnitZ()) * Eigen::AngleAxisd(rot_xyz_to(1), Vec3d::UnitY()) * Eigen::AngleAxisd(rot_xyz_to(0), Vec3d::UnitX()) *
+ // From world to the initial coordinate system.
+ Eigen::AngleAxisd(-rot_xyz_from(0), Vec3d::UnitX()) * Eigen::AngleAxisd(-rot_xyz_from(1), Vec3d::UnitY()) * Eigen::AngleAxisd(-rot_xyz_from(2), Vec3d::UnitZ());
+}
+
+// This should only be called if it is known, that the two rotations only differ in rotation around the Z axis.
+double rotation_diff_z(const Vec3d &rot_xyz_from, const Vec3d &rot_xyz_to)
+{
+ Eigen::AngleAxisd angle_axis(rotation_xyz_diff(rot_xyz_from, rot_xyz_to));
+ Vec3d axis = angle_axis.axis();
+ double angle = angle_axis.angle();
+#ifndef NDEBUG
+ if (std::abs(angle) > 1e-8) {
+ assert(std::abs(axis.x()) < 1e-8);
+ assert(std::abs(axis.y()) < 1e-8);
+ }
+#endif /* NDEBUG */
+ return (axis.z() < 0) ? -angle : angle;
+}
//-------------- for tests ----------------------//
Point
diff --git a/src/libslic3r/Geometry.hpp b/src/libslic3r/Geometry.hpp
index 72489d618..79cdc7a84 100644
--- a/src/libslic3r/Geometry.hpp
+++ b/src/libslic3r/Geometry.hpp
@@ -226,6 +226,7 @@ public:
const Vec3d& get_mirror() const { return m_mirror; }
double get_mirror(Axis axis) const { return m_mirror(axis); }
+ bool is_left_handed() const { return m_mirror.x() * m_mirror.y() * m_mirror.z() < 0.; }
void set_mirror(const Vec3d& mirror);
void set_mirror(Axis axis, double mirror);
@@ -241,6 +242,28 @@ public:
Transformation operator * (const Transformation& other) const;
};
+// Rotation when going from the first coordinate system with rotation rot_xyz_from applied
+// to a coordinate system with rot_xyz_to applied.
+extern Eigen::Quaterniond rotation_xyz_diff(const Vec3d &rot_xyz_from, const Vec3d &rot_xyz_to);
+// Rotation by Z to align rot_xyz_from to rot_xyz_to.
+// This should only be called if it is known, that the two rotations only differ in rotation around the Z axis.
+extern double rotation_diff_z(const Vec3d &rot_xyz_from, const Vec3d &rot_xyz_to);
+
+// Is the angle close to a multiple of 90 degrees?
+inline bool is_rotation_ninety_degrees(double a)
+{
+ a = fmod(std::abs(a), 0.5 * M_PI);
+ if (a > 0.25 * PI)
+ a = 0.5 * PI - a;
+ return a < 0.001;
+}
+
+// Is the angle close to a multiple of 90 degrees?
+inline bool is_rotation_ninety_degrees(const Vec3d &rotation)
+{
+ return is_rotation_ninety_degrees(rotation.x()) && is_rotation_ninety_degrees(rotation.y()) && is_rotation_ninety_degrees(rotation.z());
+}
+
//------------for tests------------//
/// Find the center of the circle corresponding to the vector of Points as an arc.
diff --git a/src/libslic3r/LayerRegion.cpp b/src/libslic3r/LayerRegion.cpp
index 6b55f3234..370b01f1d 100644
--- a/src/libslic3r/LayerRegion.cpp
+++ b/src/libslic3r/LayerRegion.cpp
@@ -286,13 +286,18 @@ void LayerRegion::process_external_surfaces(const Layer* lower_layer)
#ifdef SLIC3R_DEBUG
printf("Processing bridge at layer " PRINTF_ZU ":\n", this->layer()->id());
#endif
- if (bd.detect_angle(Geometry::deg2rad(this->region()->config().bridge_angle.value))) {
+ double custom_angle = Geometry::deg2rad(this->region()->config().bridge_angle.value);
+ if (bd.detect_angle(custom_angle)) {
bridges[idx_last].bridge_angle = bd.angle;
if (this->layer()->object()->config().support_material) {
polygons_append(this->bridged, intersection(bd.coverage(), to_polygons(initial)));
this->unsupported_bridge_edges.append(bd.unsupported_edges());
}
- }
+ } else if (custom_angle > 0) {
+ // Bridge was not detected (likely it is only supported at one side). Still it is a surface filled in
+ // using a bridging flow, therefore it makes sense to respect the custom bridging direction.
+ bridges[idx_last].bridge_angle = custom_angle;
+ }
// without safety offset, artifacts are generated (GH #2494)
surfaces_append(bottom, union_ex(grown, true), bridges[idx_last]);
}
diff --git a/src/libslic3r/MTUtils.hpp b/src/libslic3r/MTUtils.hpp
index 1f6ca1a23..7e91ace32 100644
--- a/src/libslic3r/MTUtils.hpp
+++ b/src/libslic3r/MTUtils.hpp
@@ -56,8 +56,18 @@ public:
}
};
-template
+/// An std compatible random access iterator which uses indices to the source
+/// vector thus resistant to invalidation caused by relocations. It also "knows"
+/// its container. No comparison is neccesary to the container "end()" iterator.
+/// The template can be instantiated with a different value type than that of
+/// the container's but the types must be compatible. E.g. a base class of the
+/// contained objects is compatible.
+///
+/// For a constant iterator, one can instantiate this template with a value
+/// type preceded with 'const'.
+template
class IndexBasedIterator {
static const size_t NONE = size_t(-1);
@@ -110,6 +120,8 @@ public:
operator difference_type() { return difference_type(m_idx); }
+ /// Tesing the end of the container... this is not possible with std
+ /// iterators.
inline bool is_end() const { return m_idx >= m_index_ref.get().size();}
inline Value & operator*() const {
@@ -122,6 +134,7 @@ public:
return &m_index_ref.get().operator[](m_idx);
}
+ /// If both iterators point past the container, they are equal...
inline bool operator ==(const IndexBasedIterator& other) {
size_t e = m_index_ref.get().size();
return m_idx == other.m_idx || (m_idx >= e && other.m_idx >= e);
@@ -148,17 +161,23 @@ public:
}
};
+/// A very simple range concept implementation with iterator-like objects.
template class Range {
It from, to;
public:
+
+ // The class is ready for range based for loops.
It begin() const { return from; }
It end() const { return to; }
+
+ // The iterator type can be obtained this way.
using Type = It;
Range() = default;
Range(It &&b, It &&e):
from(std::forward(b)), to(std::forward(e)) {}
+ // Some useful container-like methods...
inline size_t size() const { return end() - begin(); }
inline bool empty() const { return size() == 0; }
};
diff --git a/src/libslic3r/MedialAxis.cpp b/src/libslic3r/MedialAxis.cpp
index 4620e8881..f9b4c1954 100644
--- a/src/libslic3r/MedialAxis.cpp
+++ b/src/libslic3r/MedialAxis.cpp
@@ -1329,6 +1329,10 @@ void
MedialAxis::simplify_polygon_frontier()
{
//simplify the boundary between us and the bounds.
+ ExPolygon simplified_poly = this->surface;
+ simplified_poly.contour.remove_colinear_points(SCALED_EPSILON);
+ for (Polygon &hole : simplified_poly.holes)
+ hole.remove_colinear_points(SCALED_EPSILON);
//it will remove every point in the surface contour that aren't on the bounds contour
this->expolygon = this->surface;
this->expolygon.contour.remove_collinear_points(SCALED_EPSILON);
diff --git a/src/libslic3r/Model.cpp b/src/libslic3r/Model.cpp
index 0528236f4..f43724538 100644
--- a/src/libslic3r/Model.cpp
+++ b/src/libslic3r/Model.cpp
@@ -24,6 +24,19 @@ unsigned int Model::s_auto_extruder_id = 1;
size_t ModelBase::s_last_id = 0;
+// Unique object / instance ID for the wipe tower.
+ModelID wipe_tower_object_id()
+{
+ static ModelBase mine;
+ return mine.id();
+}
+
+ModelID wipe_tower_instance_id()
+{
+ static ModelBase mine;
+ return mine.id();
+}
+
Model& Model::assign_copy(const Model &rhs)
{
this->copy_id(rhs);
@@ -61,7 +74,7 @@ Model& Model::assign_copy(Model &&rhs)
this->objects = std::move(rhs.objects);
for (ModelObject *model_object : this->objects)
model_object->set_model(this);
- rhs.objects.clear();
+ rhs.objects.clear();
return *this;
}
@@ -556,19 +569,9 @@ std::string Model::propose_export_file_name_and_path() const
for (const ModelObject *model_object : this->objects)
for (ModelInstance *model_instance : model_object->instances)
if (model_instance->is_printable()) {
- input_file = model_object->input_file;
- if (! model_object->name.empty()) {
- if (input_file.empty())
- // model_object->input_file was empty, just use model_object->name
- input_file = model_object->name;
- else {
- // Replace file name in input_file with model_object->name, but keep the path and file extension.
- input_file = (boost::filesystem::path(model_object->name).parent_path().empty()) ?
- (boost::filesystem::path(input_file).parent_path() / model_object->name).make_preferred().string() :
- model_object->name;
- }
- }
- if (! input_file.empty())
+ input_file = model_object->get_export_filename();
+
+ if (!input_file.empty())
goto end;
// Other instances will produce the same name, skip them.
break;
@@ -603,6 +606,8 @@ ModelObject& ModelObject::assign_copy(const ModelObject &rhs)
this->origin_translation = rhs.origin_translation;
m_bounding_box = rhs.m_bounding_box;
m_bounding_box_valid = rhs.m_bounding_box_valid;
+ m_raw_bounding_box = rhs.m_raw_bounding_box;
+ m_raw_bounding_box_valid = rhs.m_raw_bounding_box_valid;
m_raw_mesh_bounding_box = rhs.m_raw_mesh_bounding_box;
m_raw_mesh_bounding_box_valid = rhs.m_raw_mesh_bounding_box_valid;
@@ -637,6 +642,8 @@ ModelObject& ModelObject::assign_copy(ModelObject &&rhs)
this->origin_translation = std::move(rhs.origin_translation);
m_bounding_box = std::move(rhs.m_bounding_box);
m_bounding_box_valid = std::move(rhs.m_bounding_box_valid);
+ m_raw_bounding_box = rhs.m_raw_bounding_box;
+ m_raw_bounding_box_valid = rhs.m_raw_bounding_box_valid;
m_raw_mesh_bounding_box = rhs.m_raw_mesh_bounding_box;
m_raw_mesh_bounding_box_valid = rhs.m_raw_mesh_bounding_box_valid;
@@ -651,7 +658,7 @@ ModelObject& ModelObject::assign_copy(ModelObject &&rhs)
for (ModelInstance *model_instance : this->instances)
model_instance->set_model_object(this);
- return *this;
+ return *this;
}
void ModelObject::assign_new_unique_ids_recursive()
@@ -873,7 +880,7 @@ TriangleMesh ModelObject::full_raw_mesh() const
return mesh;
}
-BoundingBoxf3 ModelObject::raw_mesh_bounding_box() const
+const BoundingBoxf3& ModelObject::raw_mesh_bounding_box() const
{
if (! m_raw_mesh_bounding_box_valid) {
m_raw_mesh_bounding_box_valid = true;
@@ -894,33 +901,36 @@ BoundingBoxf3 ModelObject::full_raw_mesh_bounding_box() const
}
// A transformed snug bounding box around the non-modifier object volumes, without the translation applied.
-// This bounding box is only used for the actual slicing.
-BoundingBoxf3 ModelObject::raw_bounding_box() const
+// This bounding box is only used for the actual slicing and for layer editing UI to calculate the layers.
+const BoundingBoxf3& ModelObject::raw_bounding_box() const
{
- BoundingBoxf3 bb;
-#if ENABLE_GENERIC_SUBPARTS_PLACEMENT
- if (this->instances.empty())
- throw std::invalid_argument("Can't call raw_bounding_box() with no instances");
+ if (! m_raw_bounding_box_valid) {
+ m_raw_bounding_box_valid = true;
+ m_raw_bounding_box.reset();
+ #if ENABLE_GENERIC_SUBPARTS_PLACEMENT
+ if (this->instances.empty())
+ throw std::invalid_argument("Can't call raw_bounding_box() with no instances");
- const Transform3d& inst_matrix = this->instances.front()->get_transformation().get_matrix(true);
-#endif // ENABLE_GENERIC_SUBPARTS_PLACEMENT
- for (const ModelVolume *v : this->volumes)
- if (v->is_model_part()) {
-#if !ENABLE_GENERIC_SUBPARTS_PLACEMENT
- if (this->instances.empty())
- throw std::invalid_argument("Can't call raw_bounding_box() with no instances");
-#endif // !ENABLE_GENERIC_SUBPARTS_PLACEMENT
+ const Transform3d& inst_matrix = this->instances.front()->get_transformation().get_matrix(true);
+ #endif // ENABLE_GENERIC_SUBPARTS_PLACEMENT
+ for (const ModelVolume *v : this->volumes)
+ if (v->is_model_part()) {
+ #if !ENABLE_GENERIC_SUBPARTS_PLACEMENT
+ if (this->instances.empty())
+ throw std::invalid_argument("Can't call raw_bounding_box() with no instances");
+ #endif // !ENABLE_GENERIC_SUBPARTS_PLACEMENT
- TriangleMesh vol_mesh(v->mesh);
-#if ENABLE_GENERIC_SUBPARTS_PLACEMENT
- vol_mesh.transform(inst_matrix * v->get_matrix());
- bb.merge(vol_mesh.bounding_box());
-#else
- vol_mesh.transform(v->get_matrix());
- bb.merge(this->instances.front()->transform_mesh_bounding_box(vol_mesh, true));
-#endif // ENABLE_GENERIC_SUBPARTS_PLACEMENT
- }
- return bb;
+ #if ENABLE_GENERIC_SUBPARTS_PLACEMENT
+ m_raw_bounding_box.merge(v->mesh.transformed_bounding_box(inst_matrix * v->get_matrix()));
+ #else
+ // unmaintaned
+ assert(false);
+ // vol_mesh.transform(v->get_matrix());
+ // m_raw_bounding_box_valid.merge(this->instances.front()->transform_mesh_bounding_box(vol_mesh, true));
+ #endif // ENABLE_GENERIC_SUBPARTS_PLACEMENT
+ }
+ }
+ return m_raw_bounding_box;
}
// This returns an accurate snug bounding box of the transformed object instance, without the translation applied.
@@ -934,13 +944,13 @@ BoundingBoxf3 ModelObject::instance_bounding_box(size_t instance_idx, bool dont_
{
if (v->is_model_part())
{
- TriangleMesh mesh(v->mesh);
#if ENABLE_GENERIC_SUBPARTS_PLACEMENT
- mesh.transform(inst_matrix * v->get_matrix());
- bb.merge(mesh.bounding_box());
+ bb.merge(v->mesh.transformed_bounding_box(inst_matrix * v->get_matrix()));
#else
- mesh.transform(v->get_matrix());
- bb.merge(this->instances[instance_idx]->transform_mesh_bounding_box(mesh, dont_translate));
+ // not maintained
+ assert(false);
+ //mesh.transform(v->get_matrix());
+ //bb.merge(this->instances[instance_idx]->transform_mesh_bounding_box(mesh, dont_translate));
#endif // ENABLE_GENERIC_SUBPARTS_PLACEMENT
}
}
@@ -950,7 +960,7 @@ BoundingBoxf3 ModelObject::instance_bounding_box(size_t instance_idx, bool dont_
// Calculate 2D convex hull of of a projection of the transformed printable volumes into the XY plane.
// This method is cheap in that it does not make any unnecessary copy of the volume meshes.
// This method is used by the auto arrange function.
-Polygon ModelObject::convex_hull_2d(const Transform3d &trafo_instance)
+Polygon ModelObject::convex_hull_2d(const Transform3d &trafo_instance) const
{
Points pts;
for (const ModelVolume *v : this->volumes)
@@ -974,8 +984,8 @@ Polygon ModelObject::convex_hull_2d(const Transform3d &trafo_instance)
}
}
}
- std::sort(pts.begin(), pts.end(), [](const Point& a, const Point& b) { return a(0) < b(0) || (a(0) == b(0) && a(1) < b(1)); });
- pts.erase(std::unique(pts.begin(), pts.end(), [](const Point& a, const Point& b) { return a(0) == b(0) && a(1) == b(1); }), pts.end());
+ std::sort(pts.begin(), pts.end(), [](const Point& a, const Point& b) { return a(0) < b(0) || (a(0) == b(0) && a(1) < b(1)); });
+ pts.erase(std::unique(pts.begin(), pts.end(), [](const Point& a, const Point& b) { return a(0) == b(0) && a(1) == b(1); }), pts.end());
Polygon hull;
int n = (int)pts.size();
@@ -1191,10 +1201,12 @@ ModelObjectPtrs ModelObject::cut(size_t instance, coordf_t z, bool keep_upper, b
else {
TriangleMesh upper_mesh, lower_mesh;
- // Transform the mesh by the combined transformation matrix
- volume->mesh.transform(instance_matrix * volume_matrix);
+ // Transform the mesh by the combined transformation matrix.
+ // Flip the triangles in case the composite transformation is left handed.
+ volume->mesh.transform(instance_matrix * volume_matrix, true);
// Perform cut
+ volume->mesh.require_shared_vertices(); // TriangleMeshSlicer needs this
TriangleMeshSlicer tms(&volume->mesh);
tms.cut(float(z), &upper_mesh, &lower_mesh);
@@ -1295,11 +1307,11 @@ void ModelObject::split(ModelObjectPtrs* new_objects)
// XXX: this seems to be the only real usage of m_model, maybe refactor this so that it's not needed?
ModelObject* new_object = m_model->add_object();
- new_object->name = this->name;
- new_object->config = this->config;
- new_object->instances.reserve(this->instances.size());
- for (const ModelInstance *model_instance : this->instances)
- new_object->add_instance(*model_instance);
+ new_object->name = this->name;
+ new_object->config = this->config;
+ new_object->instances.reserve(this->instances.size());
+ for (const ModelInstance *model_instance : this->instances)
+ new_object->add_instance(*model_instance);
ModelVolume* new_vol = new_object->add_volume(*volume, std::move(*mesh));
#if !ENABLE_VOLUMES_CENTERING_FIXES
new_vol->center_geometry();
@@ -1325,6 +1337,58 @@ void ModelObject::repair()
v->mesh.repair();
}
+// Support for non-uniform scaling of instances. If an instance is rotated by angles, which are not multiples of ninety degrees,
+// then the scaling in world coordinate system is not representable by the Geometry::Transformation structure.
+// This situation is solved by baking in the instance transformation into the mesh vertices.
+// Rotation and mirroring is being baked in. In case the instance scaling was non-uniform, it is baked in as well.
+void ModelObject::bake_xy_rotation_into_meshes(size_t instance_idx)
+{
+ assert(instance_idx < this->instances.size());
+
+ const Geometry::Transformation reference_trafo = this->instances[instance_idx]->get_transformation();
+ if (Geometry::is_rotation_ninety_degrees(reference_trafo.get_rotation()))
+ // nothing to do, scaling in the world coordinate space is possible in the representation of Geometry::Transformation.
+ return;
+
+ bool left_handed = reference_trafo.is_left_handed();
+ bool has_mirrorring = ! reference_trafo.get_mirror().isApprox(Vec3d(1., 1., 1.));
+ bool uniform_scaling = std::abs(reference_trafo.get_scaling_factor().x() - reference_trafo.get_scaling_factor().y()) < EPSILON &&
+ std::abs(reference_trafo.get_scaling_factor().x() - reference_trafo.get_scaling_factor().z()) < EPSILON;
+ double new_scaling_factor = uniform_scaling ? reference_trafo.get_scaling_factor().x() : 1.;
+
+ // Adjust the instances.
+ for (size_t i = 0; i < this->instances.size(); ++ i) {
+ ModelInstance &model_instance = *this->instances[i];
+ model_instance.set_rotation(Vec3d(0., 0., Geometry::rotation_diff_z(reference_trafo.get_rotation(), model_instance.get_rotation())));
+ model_instance.set_scaling_factor(Vec3d(new_scaling_factor, new_scaling_factor, new_scaling_factor));
+ model_instance.set_mirror(Vec3d(1., 1., 1.));
+ }
+
+ // Adjust the meshes.
+ // Transformation to be applied to the meshes.
+ Eigen::Matrix3d mesh_trafo_3x3 = reference_trafo.get_matrix(true, false, uniform_scaling, ! has_mirrorring).matrix().block<3, 3>(0, 0);
+ Transform3d volume_offset_correction = this->instances[instance_idx]->get_transformation().get_matrix().inverse() * reference_trafo.get_matrix();
+ for (ModelVolume *model_volume : this->volumes) {
+ const Geometry::Transformation volume_trafo = model_volume->get_transformation();
+ bool volume_left_handed = volume_trafo.is_left_handed();
+ bool volume_has_mirrorring = ! volume_trafo.get_mirror().isApprox(Vec3d(1., 1., 1.));
+ bool volume_uniform_scaling = std::abs(volume_trafo.get_scaling_factor().x() - volume_trafo.get_scaling_factor().y()) < EPSILON &&
+ std::abs(volume_trafo.get_scaling_factor().x() - volume_trafo.get_scaling_factor().z()) < EPSILON;
+ double volume_new_scaling_factor = volume_uniform_scaling ? volume_trafo.get_scaling_factor().x() : 1.;
+ // Transform the mesh.
+ Matrix3d volume_trafo_3x3 = volume_trafo.get_matrix(true, false, volume_uniform_scaling, !volume_has_mirrorring).matrix().block<3, 3>(0, 0);
+ model_volume->transform_mesh(mesh_trafo_3x3 * volume_trafo_3x3, left_handed != volume_left_handed);
+ // Reset the rotation, scaling and mirroring.
+ model_volume->set_rotation(Vec3d(0., 0., 0.));
+ model_volume->set_scaling_factor(Vec3d(volume_new_scaling_factor, volume_new_scaling_factor, volume_new_scaling_factor));
+ model_volume->set_mirror(Vec3d(1., 1., 1.));
+ // Move the reference point of the volume to compensate for the change of the instance trafo.
+ model_volume->set_offset(volume_offset_correction * volume_trafo.get_offset());
+ }
+
+ this->invalidate_bounding_box();
+}
+
double ModelObject::get_min_z() const
{
if (instances.empty())
@@ -1436,6 +1500,71 @@ void ModelObject::print_info() const
cout << "volume = " << mesh.volume() << endl;
}
+std::string ModelObject::get_export_filename() const
+{
+ std::string ret = input_file;
+
+ if (!name.empty())
+ {
+ if (ret.empty())
+ // input_file was empty, just use name
+ ret = name;
+ else
+ {
+ // Replace file name in input_file with name, but keep the path and file extension.
+ ret = (boost::filesystem::path(name).parent_path().empty()) ?
+ (boost::filesystem::path(ret).parent_path() / name).make_preferred().string() : name;
+ }
+ }
+
+ return ret;
+}
+
+stl_stats ModelObject::get_object_stl_stats() const
+{
+ if (this->volumes.size() == 1)
+ return this->volumes[0]->mesh.stl.stats;
+
+ stl_stats full_stats;
+ memset(&full_stats, 0, sizeof(stl_stats));
+
+ // fill full_stats from all objet's meshes
+ for (ModelVolume* volume : this->volumes)
+ {
+ if (volume->id() == this->volumes[0]->id())
+ continue;
+
+ const stl_stats& stats = volume->mesh.stl.stats;
+
+ // initialize full_stats (for repaired errors)
+ full_stats.degenerate_facets += stats.degenerate_facets;
+ full_stats.edges_fixed += stats.edges_fixed;
+ full_stats.facets_removed += stats.facets_removed;
+ full_stats.facets_added += stats.facets_added;
+ full_stats.facets_reversed += stats.facets_reversed;
+ full_stats.backwards_edges += stats.backwards_edges;
+
+ // another used satistics value
+ if (volume->is_model_part()) {
+ full_stats.volume += stats.volume;
+ full_stats.number_of_parts += stats.number_of_parts;
+ }
+ }
+
+ return full_stats;
+}
+
+int ModelObject::get_mesh_errors_count(const int vol_idx /*= -1*/) const
+{
+ if (vol_idx >= 0)
+ return this->volumes[vol_idx]->get_mesh_errors_count();
+
+ const stl_stats& stats = get_object_stl_stats();
+
+ return stats.degenerate_facets + stats.edges_fixed + stats.facets_removed +
+ stats.facets_added + stats.facets_reversed + stats.backwards_edges;
+}
+
void ModelVolume::set_material_id(t_model_material_id material_id)
{
m_material_id = material_id;
@@ -1471,9 +1600,9 @@ int ModelVolume::extruder_id() const
bool ModelVolume::is_splittable() const
{
- // the call mesh.has_multiple_patches() is expensive, so cache the value to calculate it only once
+ // the call mesh.is_splittable() is expensive, so cache the value to calculate it only once
if (m_is_splittable == -1)
- m_is_splittable = (int)mesh.has_multiple_patches();
+ m_is_splittable = (int)mesh.is_splittable();
return m_is_splittable == 1;
}
@@ -1501,6 +1630,14 @@ void ModelVolume::calculate_convex_hull()
m_convex_hull = mesh.convex_hull_3d();
}
+int ModelVolume::get_mesh_errors_count() const
+{
+ const stl_stats& stats = this->mesh.stl.stats;
+
+ return stats.degenerate_facets + stats.edges_fixed + stats.facets_removed +
+ stats.facets_added + stats.facets_reversed + stats.backwards_edges;
+}
+
const TriangleMesh& ModelVolume::get_convex_hull() const
{
return m_convex_hull;
@@ -1613,6 +1750,7 @@ void ModelVolume::rotate(double angle, Axis axis)
case X: { rotate(angle, Vec3d::UnitX()); break; }
case Y: { rotate(angle, Vec3d::UnitY()); break; }
case Z: { rotate(angle, Vec3d::UnitZ()); break; }
+ default: break;
}
}
@@ -1629,6 +1767,7 @@ void ModelVolume::mirror(Axis axis)
case X: { mirror(0) *= -1.0; break; }
case Y: { mirror(1) *= -1.0; break; }
case Z: { mirror(2) *= -1.0; break; }
+ default: break;
}
set_mirror(mirror);
}
@@ -1639,6 +1778,22 @@ void ModelVolume::scale_geometry(const Vec3d& versor)
m_convex_hull.scale(versor);
}
+void ModelVolume::transform_mesh(const Transform3d &mesh_trafo, bool fix_left_handed)
+{
+ this->mesh.transform(mesh_trafo, fix_left_handed);
+ this->m_convex_hull.transform(mesh_trafo, fix_left_handed);
+ // Let the rest of the application know that the geometry changed, so the meshes have to be reloaded.
+ this->set_new_unique_id();
+}
+
+void ModelVolume::transform_mesh(const Matrix3d &matrix, bool fix_left_handed)
+{
+ this->mesh.transform(matrix, fix_left_handed);
+ this->m_convex_hull.transform(matrix, fix_left_handed);
+ // Let the rest of the application know that the geometry changed, so the meshes have to be reloaded.
+ this->set_new_unique_id();
+}
+
void ModelInstance::transform_mesh(TriangleMesh* mesh, bool dont_translate) const
{
mesh->transform(get_matrix(dont_translate));
@@ -1715,7 +1870,6 @@ bool model_object_list_extended(const Model &model_old, const Model &model_new)
bool model_volume_list_changed(const ModelObject &model_object_old, const ModelObject &model_object_new, const ModelVolumeType type)
{
- bool modifiers_differ = false;
size_t i_old, i_new;
for (i_old = 0, i_new = 0; i_old < model_object_old.volumes.size() && i_new < model_object_new.volumes.size();) {
const ModelVolume &mv_old = *model_object_old.volumes[i_old];
diff --git a/src/libslic3r/Model.hpp b/src/libslic3r/Model.hpp
index f05939276..307588960 100644
--- a/src/libslic3r/Model.hpp
+++ b/src/libslic3r/Model.hpp
@@ -54,6 +54,10 @@ struct ModelID
size_t id;
};
+// Unique object / instance ID for the wipe tower.
+extern ModelID wipe_tower_object_id();
+extern ModelID wipe_tower_instance_id();
+
// Base for Model, ModelObject, ModelVolume, ModelInstance or ModelMaterial to provide a unique ID
// to synchronize the front end (UI) with the back end (BackgroundSlicingProcess / Print / PrintObject).
// Achtung! The s_last_id counter is not thread safe, so it is expected, that the ModelBase derived instances
@@ -85,6 +89,9 @@ private:
static inline ModelID generate_new_id() { return ModelID(++ s_last_id); }
static size_t s_last_id;
+
+ friend ModelID wipe_tower_object_id();
+ friend ModelID wipe_tower_instance_id();
};
#define MODELBASE_DERIVED_COPY_MOVE_CLONE(TYPE) \
@@ -212,7 +219,7 @@ public:
// This bounding box is approximate and not snug.
// This bounding box is being cached.
const BoundingBoxf3& bounding_box() const;
- void invalidate_bounding_box() { m_bounding_box_valid = false; m_raw_mesh_bounding_box_valid = false; }
+ void invalidate_bounding_box() { m_bounding_box_valid = false; m_raw_bounding_box_valid = false; m_raw_mesh_bounding_box_valid = false; }
// A mesh containing all transformed instances of this object.
TriangleMesh mesh() const;
@@ -223,18 +230,18 @@ public:
TriangleMesh full_raw_mesh() const;
// A transformed snug bounding box around the non-modifier object volumes, without the translation applied.
// This bounding box is only used for the actual slicing.
- BoundingBoxf3 raw_bounding_box() const;
+ const BoundingBoxf3& raw_bounding_box() const;
// A snug bounding box around the transformed non-modifier object volumes.
BoundingBoxf3 instance_bounding_box(size_t instance_idx, bool dont_translate = false) const;
// A snug bounding box of non-transformed (non-rotated, non-scaled, non-translated) sum of non-modifier object volumes.
- BoundingBoxf3 raw_mesh_bounding_box() const;
+ const BoundingBoxf3& raw_mesh_bounding_box() const;
// A snug bounding box of non-transformed (non-rotated, non-scaled, non-translated) sum of all object volumes.
BoundingBoxf3 full_raw_mesh_bounding_box() const;
// Calculate 2D convex hull of of a projection of the transformed printable volumes into the XY plane.
// This method is cheap in that it does not make any unnecessary copy of the volume meshes.
// This method is used by the auto arrange function.
- Polygon convex_hull_2d(const Transform3d &trafo_instance);
+ Polygon convex_hull_2d(const Transform3d &trafo_instance) const;
#if ENABLE_VOLUMES_CENTERING_FIXES
void center_around_origin(bool include_modifiers = true);
@@ -265,6 +272,11 @@ public:
ModelObjectPtrs cut(size_t instance, coordf_t z, bool keep_upper = true, bool keep_lower = true, bool rotate_lower = false); // Note: z is in world coordinates
void split(ModelObjectPtrs* new_objects);
void repair();
+ // Support for non-uniform scaling of instances. If an instance is rotated by angles, which are not multiples of ninety degrees,
+ // then the scaling in world coordinate system is not representable by the Geometry::Transformation structure.
+ // This situation is solved by baking in the instance transformation into the mesh vertices.
+ // Rotation and mirroring is being baked in. In case the instance scaling was non-uniform, it is baked in as well.
+ void bake_xy_rotation_into_meshes(size_t instance_idx);
double get_min_z() const;
double get_instance_min_z(size_t instance_idx) const;
@@ -275,6 +287,13 @@ public:
// Print object statistics to console.
void print_info() const;
+ std::string get_export_filename() const;
+
+ // Get full stl statistics for all object's meshes
+ stl_stats get_object_stl_stats() const;
+ // Get count of errors in the mesh( or all object's meshes, if volume index isn't defined)
+ int get_mesh_errors_count(const int vol_idx = -1) const;
+
protected:
friend class Print;
friend class SLAPrint;
@@ -283,7 +302,7 @@ protected:
private:
ModelObject(Model *model) : m_model(model), origin_translation(Vec3d::Zero()),
- m_bounding_box_valid(false), m_raw_mesh_bounding_box_valid(false) {}
+ m_bounding_box_valid(false), m_raw_bounding_box_valid(false), m_raw_mesh_bounding_box_valid(false) {}
~ModelObject();
/* To be able to return an object from own copy / clone methods. Hopefully the compiler will do the "Copy elision" */
@@ -302,6 +321,8 @@ private:
// Bounding box, cached.
mutable BoundingBoxf3 m_bounding_box;
mutable bool m_bounding_box_valid;
+ mutable BoundingBoxf3 m_raw_bounding_box;
+ mutable bool m_raw_bounding_box_valid;
mutable BoundingBoxf3 m_raw_mesh_bounding_box;
mutable bool m_raw_mesh_bounding_box_valid;
};
@@ -366,6 +387,8 @@ public:
void calculate_convex_hull();
const TriangleMesh& get_convex_hull() const;
+ // Get count of errors in the mesh
+ int get_mesh_errors_count() const;
// Helpers for loading / storing into AMF / 3MF files.
static ModelVolumeType type_from_string(const std::string &s);
@@ -394,6 +417,7 @@ public:
const Vec3d& get_mirror() const { return m_transformation.get_mirror(); }
double get_mirror(Axis axis) const { return m_transformation.get_mirror(axis); }
+ bool is_left_handed() const { return m_transformation.is_left_handed(); }
void set_mirror(const Vec3d& mirror) { m_transformation.set_mirror(mirror); }
void set_mirror(Axis axis, double mirror) { m_transformation.set_mirror(axis, mirror); }
@@ -409,6 +433,8 @@ protected:
explicit ModelVolume(const ModelVolume &rhs) = default;
void set_model_object(ModelObject *model_object) { object = model_object; }
+ void transform_mesh(const Transform3d& t, bool fix_left_handed);
+ void transform_mesh(const Matrix3d& m, bool fix_left_handed);
private:
// Parent object owning this ModelVolume.
@@ -498,6 +524,7 @@ public:
const Vec3d& get_mirror() const { return m_transformation.get_mirror(); }
double get_mirror(Axis axis) const { return m_transformation.get_mirror(axis); }
+ bool is_left_handed() const { return m_transformation.is_left_handed(); }
void set_mirror(const Vec3d& mirror) { m_transformation.set_mirror(mirror); }
void set_mirror(Axis axis, double mirror) { m_transformation.set_mirror(axis, mirror); }
diff --git a/src/libslic3r/ModelArrange.cpp b/src/libslic3r/ModelArrange.cpp
index 4942e35b6..bf334bf46 100644
--- a/src/libslic3r/ModelArrange.cpp
+++ b/src/libslic3r/ModelArrange.cpp
@@ -1,5 +1,6 @@
#include "ModelArrange.hpp"
#include "Model.hpp"
+#include "Geometry.hpp"
#include "SVG.hpp"
#include
@@ -538,7 +539,7 @@ public:
// 2D shape from top view.
using ShapeData2D = std::vector>;
-ShapeData2D projectModelFromTop(const Slic3r::Model &model) {
+ShapeData2D projectModelFromTop(const Slic3r::Model &model, const WipeTowerInfo& wti) {
ShapeData2D ret;
// Count all the items on the bin (all the object's instances)
@@ -551,7 +552,7 @@ ShapeData2D projectModelFromTop(const Slic3r::Model &model) {
ret.reserve(s);
for(ModelObject* objptr : model.objects) {
- if(objptr) {
+ if (! objptr->instances.empty()) {
// TODO export the exact 2D projection. Cannot do it as libnest2d
// does not support concave shapes (yet).
@@ -565,35 +566,62 @@ ShapeData2D projectModelFromTop(const Slic3r::Model &model) {
rotation.z() = 0.;
Transform3d trafo_instance = Geometry::assemble_transform(Vec3d::Zero(), rotation, finst->get_scaling_factor(), finst->get_mirror());
Polygon p = objptr->convex_hull_2d(trafo_instance);
- assert(! p.points.empty());
- p.reverse();
- assert(! p.is_counter_clockwise());
+ assert(! p.points.empty());
+
+ // this may happen for malformed models, see: https://github.com/prusa3d/PrusaSlicer/issues/2209
+ if (p.points.empty())
+ continue;
+
+ p.reverse();
+ assert(!p.is_counter_clockwise());
p.append(p.first_point());
clpath = Slic3rMultiPoint_to_ClipperPath(p);
}
+ Vec3d rotation0 = objptr->instances.front()->get_rotation();
+ rotation0(2) = 0.;
for(ModelInstance* objinst : objptr->instances) {
- if(objinst) {
- ClipperLib::PolygonImpl pn;
- pn.Contour = clpath;
+ ClipperLib::Polygon pn;
+ pn.Contour = clpath;
- // Efficient conversion to item.
- Item item(std::move(pn));
+ // Efficient conversion to item.
+ Item item(std::move(pn));
- // Invalid geometries would throw exceptions when arranging
- if(item.vertexCount() > 3) {
- item.rotation(objinst->get_rotation(Z));
- item.translation({
- ClipperLib::cInt(objinst->get_offset(X)/SCALING_FACTOR),
- ClipperLib::cInt(objinst->get_offset(Y)/SCALING_FACTOR)
- });
- ret.emplace_back(objinst, item);
- }
+ // Invalid geometries would throw exceptions when arranging
+ if(item.vertexCount() > 3) {
+ item.rotation(float(Geometry::rotation_diff_z(rotation0, objinst->get_rotation()))),
+ item.translation({
+ ClipperLib::cInt(objinst->get_offset(X)/SCALING_FACTOR),
+ ClipperLib::cInt(objinst->get_offset(Y)/SCALING_FACTOR)
+ });
+ ret.emplace_back(objinst, item);
}
}
}
}
+ // The wipe tower is a separate case (in case there is one), let's duplicate the code
+ if (wti.is_wipe_tower) {
+ Points pts;
+ pts.emplace_back(coord_t(scale_(0.)), coord_t(scale_(0.)));
+ pts.emplace_back(coord_t(scale_(wti.bb_size(0))), coord_t(scale_(0.)));
+ pts.emplace_back(coord_t(scale_(wti.bb_size(0))), coord_t(scale_(wti.bb_size(1))));
+ pts.emplace_back(coord_t(scale_(-0.)), coord_t(scale_(wti.bb_size(1))));
+ pts.emplace_back(coord_t(scale_(-0.)), coord_t(scale_(0.)));
+ Polygon p(std::move(pts));
+ ClipperLib::Path clpath = Slic3rMultiPoint_to_ClipperPath(p);
+ ClipperLib::Polygon pn;
+ pn.Contour = clpath;
+ // Efficient conversion to item.
+ Item item(std::move(pn));
+ item.rotation(wti.rotation),
+ item.translation({
+ ClipperLib::cInt(wti.pos(0)/SCALING_FACTOR),
+ ClipperLib::cInt(wti.pos(1)/SCALING_FACTOR)
+ });
+ ret.emplace_back(nullptr, item);
+ }
+
return ret;
}
@@ -602,7 +630,8 @@ ShapeData2D projectModelFromTop(const Slic3r::Model &model) {
void applyResult(
IndexedPackGroup::value_type& group,
Coord batch_offset,
- ShapeData2D& shapemap)
+ ShapeData2D& shapemap,
+ WipeTowerInfo& wti)
{
for(auto& r : group) {
auto idx = r.first; // get the original item index
@@ -611,18 +640,25 @@ void applyResult(
// Get the model instance from the shapemap using the index
ModelInstance *inst_ptr = shapemap[idx].first;
- // Get the transformation data from the item object and scale it
- // appropriately
- auto off = item.translation();
- Radians rot = item.rotation();
+ // Get the transformation data from the item object and scale it
+ // appropriately
+ auto off = item.translation();
+ Radians rot = item.rotation();
- Vec3d foff(off.X*SCALING_FACTOR + batch_offset,
- off.Y*SCALING_FACTOR,
- inst_ptr->get_offset()(Z));
+ Vec3d foff(off.X*SCALING_FACTOR + batch_offset,
+ off.Y*SCALING_FACTOR,
+ inst_ptr ? inst_ptr->get_offset()(Z) : 0.);
- // write the transformation data into the model instance
- inst_ptr->set_rotation(Z, rot);
- inst_ptr->set_offset(foff);
+ if (inst_ptr) {
+ // write the transformation data into the model instance
+ inst_ptr->set_rotation(Z, rot);
+ inst_ptr->set_offset(foff);
+ }
+ else { // this is the wipe tower - we will modify the struct with the info
+ // and leave it up to the called to actually move the wipe tower
+ wti.pos = Vec2d(foff(0), foff(1));
+ wti.rotation = rot;
+ }
}
}
@@ -708,6 +744,7 @@ BedShapeHint bedShape(const Polyline &bed) {
// The final client function to arrange the Model. A progress indicator and
// a stop predicate can be also be passed to control the process.
bool arrange(Model &model, // The model with the geometries
+ WipeTowerInfo& wti, // Wipe tower info
coord_t min_obj_distance, // Has to be in scaled (clipper) measure
const Polyline &bed, // The bed geometry.
BedShapeHint bedhint, // Hint about the bed geometry type.
@@ -720,7 +757,7 @@ bool arrange(Model &model, // The model with the geometries
bool ret = true;
// Get the 2D projected shapes with their 3D model instance pointers
- auto shapemap = arr::projectModelFromTop(model);
+ auto shapemap = arr::projectModelFromTop(model, wti);
// Copy the references for the shapes only as the arranger expects a
// sequence of objects convertible to Item or ClipperPolygon
@@ -790,7 +827,7 @@ bool arrange(Model &model, // The model with the geometries
if(result.empty() || stopcondition()) return false;
if(first_bin_only) {
- applyResult(result.front(), 0, shapemap);
+ applyResult(result.front(), 0, shapemap, wti);
} else {
const auto STRIDE_PADDING = 1.2;
@@ -800,7 +837,7 @@ bool arrange(Model &model, // The model with the geometries
Coord batch_offset = 0;
for(auto& group : result) {
- applyResult(group, batch_offset, shapemap);
+ applyResult(group, batch_offset, shapemap, wti);
// Only the first pack group can be placed onto the print bed. The
// other objects which could not fit will be placed next to the
@@ -817,10 +854,11 @@ bool arrange(Model &model, // The model with the geometries
void find_new_position(const Model &model,
ModelInstancePtrs toadd,
coord_t min_obj_distance,
- const Polyline &bed)
+ const Polyline &bed,
+ WipeTowerInfo& wti)
{
// Get the 2D projected shapes with their 3D model instance pointers
- auto shapemap = arr::projectModelFromTop(model);
+ auto shapemap = arr::projectModelFromTop(model, wti);
// Copy the references for the shapes only as the arranger expects a
// sequence of objects convertible to Item or ClipperPolygon
diff --git a/src/libslic3r/ModelArrange.hpp b/src/libslic3r/ModelArrange.hpp
index d76769081..b61443da0 100644
--- a/src/libslic3r/ModelArrange.hpp
+++ b/src/libslic3r/ModelArrange.hpp
@@ -40,6 +40,13 @@ struct BedShapeHint {
BedShapeHint bedShape(const Polyline& bed);
+struct WipeTowerInfo {
+ bool is_wipe_tower = false;
+ Vec2d pos;
+ Vec2d bb_size;
+ double rotation;
+};
+
/**
* \brief Arranges the model objects on the screen.
*
@@ -66,7 +73,9 @@ BedShapeHint bedShape(const Polyline& bed);
* packed. The unsigned argument is the number of items remaining to pack.
* \param stopcondition A predicate returning true if abort is needed.
*/
-bool arrange(Model &model, coord_t min_obj_distance,
+bool arrange(Model &model,
+ WipeTowerInfo& wipe_tower_info,
+ coord_t min_obj_distance,
const Slic3r::Polyline& bed,
BedShapeHint bedhint,
bool first_bin_only,
@@ -78,7 +87,8 @@ bool arrange(Model &model, coord_t min_obj_distance,
void find_new_position(const Model& model,
ModelInstancePtrs instances_to_add,
coord_t min_obj_distance,
- const Slic3r::Polyline& bed);
+ const Slic3r::Polyline& bed,
+ WipeTowerInfo& wti);
} // arr
} // Slic3r
diff --git a/src/libslic3r/Point.hpp b/src/libslic3r/Point.hpp
index 2df30a61e..a411c6271 100644
--- a/src/libslic3r/Point.hpp
+++ b/src/libslic3r/Point.hpp
@@ -40,6 +40,11 @@ typedef std::vector Points3;
typedef std::vector Pointfs;
typedef std::vector Pointf3s;
+typedef Eigen::Matrix Matrix2f;
+typedef Eigen::Matrix Matrix2d;
+typedef Eigen::Matrix Matrix3f;
+typedef Eigen::Matrix Matrix3d;
+
typedef Eigen::Transform Transform2f;
typedef Eigen::Transform Transform2d;
typedef Eigen::Transform Transform3f;
diff --git a/src/libslic3r/Print.cpp b/src/libslic3r/Print.cpp
index 2a6fa7fce..dc91b1eca 100644
--- a/src/libslic3r/Print.cpp
+++ b/src/libslic3r/Print.cpp
@@ -10,7 +10,7 @@
#include "GCode/WipeTowerPrusaMM.hpp"
#include "Utils.hpp"
-#include "PrintExport.hpp"
+//#include "PrintExport.hpp"
#include
@@ -132,7 +132,6 @@ bool Print::invalidate_state_by_config_options(const std::vectormodel_object()->raw_mesh();
- ModelInstance * finst = object->model_object()->instances.front();
- // Object instances should carry the same scaling and
- // x, y rotation that is why we use the first instance.
- // The next line will apply only the full mirroring and scaling
- rmesh.transform(finst->get_matrix(true, true, false, false));
- rmesh.rotate_x(float(finst->get_rotation()(X)));
- rmesh.rotate_y(float(finst->get_rotation()(Y)));
-
- // TODO export the exact 2D projection. Cannot do it as libnest2d
- // does not support concave shapes (yet).
- auto p = rmesh.convex_hull();
-
- p.make_clockwise();
- p.append(p.first_point());
- clpath = Slic3rMultiPoint_to_ClipperPath(p);
- }
-
- std::vector convex_hull_items;
- for (ModelInstance* objinst : object->model_object()->instances) {
- if (objinst) {
- ClipperLib::PolygonImpl pn;
- pn.Contour = clpath;
- // Efficient conversion to item.
- libnest2d::Item item(std::move(pn));
- // Invalid geometries would throw exceptions when arranging
- if (item.vertexCount() > 3) {
- item.rotation(objinst->get_rotation(Z));
- item.translation({
- ClipperLib::cInt(objinst->get_offset(X) / SCALING_FACTOR),
- ClipperLib::cInt(objinst->get_offset(Y) / SCALING_FACTOR)
- });
- convex_hull_items.push_back(item);
- }
- }
- }
- Polygons convex_hull;
- for (libnest2d::Item &item : convex_hull_items){
- //conversion to Polygons
- ClipperLib::PolygonImpl var = item;
- ClipperLib::Path cont = var.Contour;
- convex_hull.push_back(ClipperPath_to_Slic3rPolygon(cont));
- }
-
- // Now we check that no instance of convex_hull intersects any of the previously checked object instances.
- for (Polygon p : convex_hull){
+ for (const PrintObject *print_object : m_objects) {
+ assert(! print_object->model_object()->instances.empty());
+ assert(! print_object->copies().empty());
+ // Get convex hull of all meshes assigned to this print object.
+ ModelInstance *model_instance0 = print_object->model_object()->instances.front();
+ Vec3d rotation = model_instance0->get_rotation();
+ rotation.z() = 0.;
+ // Calculate the convex hull of a printable object centered around X=0,Y=0.
// Grow convex hull with the clearance margin.
- p = offset(p, scale_(m_config.min_object_distance() / 2), jtRound, scale_(0.1)).front();
- if (!intersection(convex_hulls_other, p).empty()){
+ // FIXME: Arrangement has different parameters for offsetting (jtMiter, limit 2)
+ // which causes that the warning will be showed after arrangement with the
+ // appropriate object distance. Even if I set this to jtMiter the warning still shows up.
+ Polygon convex_hull0 = offset(
+ print_object->model_object()->convex_hull_2d(
+ Geometry::assemble_transform(Vec3d::Zero(), rotation, model_instance0->get_scaling_factor(), model_instance0->get_mirror())),
+ scale_(m_config.extruder_clearance_radius.value) / 2., jtRound, scale_(0.1)).front();
+ // Now we check that no instance of convex_hull intersects any of the previously checked object instances.
+ for (const Point © : print_object->m_copies) {
+ Polygon convex_hull = convex_hull0;
+ convex_hull.translate(copy);
+ if (! intersection(convex_hulls_other, convex_hull).empty())
return L("Some objects are too close; your extruder will collide with them.");
- }
- polygons_append(convex_hulls_other, p);
+ polygons_append(convex_hulls_other, convex_hull);
}
}
}
@@ -1266,7 +1229,7 @@ std::string Print::validate() const
const SlicingParameters &slicing_params = object->slicing_parameters();
if (std::abs(slicing_params.first_print_layer_height - slicing_params0.first_print_layer_height) > EPSILON ||
std::abs(slicing_params.layer_height - slicing_params0.layer_height ) > EPSILON)
- return L("The Wipe Tower is only supported for multiple objects if they have equal layer heigths");
+ return L("The Wipe Tower is only supported for multiple objects if they have equal layer heights");
if (slicing_params.raft_layers() != slicing_params0.raft_layers())
return L("The Wipe Tower is only supported for multiple objects if they are printed over an equal number of raft layers");
if (object->config().support_material_contact_distance_type != m_objects.front()->config().support_material_contact_distance_type
@@ -1358,7 +1321,7 @@ std::string Print::validate() const
}
// validate first_layer_height
- double first_layer_height = object->config().get_abs_value(L("first_layer_height"));
+ double first_layer_height = object->config().get_abs_value("first_layer_height");
double first_layer_min_nozzle_diameter;
if (object->config().raft_layers > 0) {
// if we have raft layers, only support material extruder is used on first layer
@@ -1521,7 +1484,7 @@ void Print::process()
BOOST_LOG_TRIVIAL(info) << "Staring the slicing process." << log_memory_info();
for (PrintObject *obj : m_objects)
obj->make_perimeters();
- this->set_status(70, "Infilling layers");
+ this->set_status(70, L("Infilling layers"));
for (PrintObject *obj : m_objects)
obj->infill();
for (PrintObject *obj : m_objects)
@@ -1529,7 +1492,7 @@ void Print::process()
if (this->set_started(psSkirt)) {
m_skirt.clear();
if (this->has_skirt()) {
- this->set_status(88, "Generating skirt");
+ this->set_status(88, L("Generating skirt"));
if (config().complete_objects){
for (PrintObject *obj : m_objects){
//create a skirt "pattern" (one per object)
@@ -1548,7 +1511,7 @@ void Print::process()
if (this->set_started(psBrim)) {
m_brim.clear();
if (m_config.brim_width > 0) {
- this->set_status(88, "Generating brim");
+ this->set_status(88, L("Generating brim"));
if (config().complete_objects){
for (PrintObject *obj : m_objects){
//create a brim "pattern" (one per object)
@@ -1574,7 +1537,7 @@ void Print::process()
if (this->set_started(psWipeTower)) {
m_wipe_tower_data.clear();
if (this->has_wipe_tower()) {
- //this->set_status(95, "Generating wipe tower");
+ //this->set_status(95, L("Generating wipe tower"));
this->_make_wipe_tower();
}
this->set_done(psWipeTower);
@@ -1591,12 +1554,14 @@ std::string Print::export_gcode(const std::string &path_template, GCodePreviewDa
// output everything to a G-code file
// The following call may die if the output_filename_format template substitution fails.
std::string path = this->output_filepath(path_template);
- std::string message = "Exporting G-code";
+ std::string message;
if (! path.empty() && preview_data == nullptr) {
// Only show the path if preview_data is not set -> running from command line.
+ message = L("Exporting G-code");
message += " to ";
message += path;
- }
+ } else
+ message = L("Generating G-code");
this->set_status(90, message);
// The following line may die for multiple reasons.
@@ -1955,7 +1920,7 @@ void Print::_make_wipe_tower()
// Check whether there are any layers in m_tool_ordering, which are marked with has_wipe_tower,
// they print neither object, nor support. These layers are above the raft and below the object, and they
// shall be added to the support layers to be printed.
- // see https://github.com/prusa3d/Slic3r/issues/607
+ // see https://github.com/prusa3d/PrusaSlicer/issues/607
{
size_t idx_begin = size_t(-1);
size_t idx_end = m_wipe_tower_data.tool_ordering.layer_tools().size();
diff --git a/src/libslic3r/Print.hpp b/src/libslic3r/Print.hpp
index 8a1822f89..b06957cd4 100644
--- a/src/libslic3r/Print.hpp
+++ b/src/libslic3r/Print.hpp
@@ -132,7 +132,7 @@ 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);
+ static SlicingParameters slicing_parameters(const DynamicPrintConfig &full_config, const ModelObject &model_object, float object_max_z);
// returns 0-based indices of extruders used to print the object (without brim, support and other helper extrusions)
std::vector object_extruders() const;
diff --git a/src/libslic3r/PrintConfig.cpp b/src/libslic3r/PrintConfig.cpp
index f7f3ec366..1afe84985 100644
--- a/src/libslic3r/PrintConfig.cpp
+++ b/src/libslic3r/PrintConfig.cpp
@@ -14,7 +14,8 @@ namespace Slic3r {
//! macro used to mark string used at localization,
//! return same string
-#define L(s) Slic3r::I18N::translate(s)
+#define L(s) (s)
+#define _(s) Slic3r::I18N::translate(s)
static void assign_printer_technology_to_unknown(t_optiondef_map &options, PrinterTechnology printer_technology)
{
@@ -45,12 +46,12 @@ void PrintConfigDef::init_common_params()
def->enum_keys_map = &ConfigOptionEnum::get_enum_values();
def->enum_values.push_back("FFF");
def->enum_values.push_back("SLA");
- def->default_value = new ConfigOptionEnum(ptFFF);
+ def->set_default_value(new ConfigOptionEnum(ptFFF));
def = this->add("bed_shape", coPoints);
def->label = L("Bed shape");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionPoints{ Vec2d(0, 0), Vec2d(200, 0), Vec2d(200, 200), Vec2d(0, 200) };
+ def->set_default_value(new ConfigOptionPoints{ Vec2d(0, 0), Vec2d(200, 0), Vec2d(200, 200), Vec2d(0, 200) });
def = this->add("layer_height", coFloat);
def->label = L("Base Layer height");
@@ -60,14 +61,14 @@ void PrintConfigDef::init_common_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(0.3);
+ def->set_default_value(new ConfigOptionFloat(0.3));
def = this->add("max_print_height", coFloat);
def->label = L("Max print height");
def->tooltip = L("Set this to the maximum height that can be reached by your extruder while printing.");
def->sidetext = L("mm");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(200.0);
+ def->set_default_value(new ConfigOptionFloat(200.0));
def = this->add("slice_closing_radius", coFloat);
def->label = L("Slice gap closing radius");
@@ -77,28 +78,28 @@ void PrintConfigDef::init_common_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(0.049);
+ def->set_default_value(new ConfigOptionFloat(0.049));
def = this->add("print_host", coString);
def->label = L("Hostname, IP or URL");
def->tooltip = L("Slic3r can upload G-code files to a printer host. This field should contain "
"the hostname, IP address or URL of the printer host instance.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
def = this->add("printhost_apikey", coString);
def->label = L("API Key / Password");
def->tooltip = L("Slic3r can upload G-code files to a printer host. This field should contain "
"the API Key or the password required for authentication.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
def = this->add("printhost_cafile", coString);
- def->label = "HTTPS CA File";
- def->tooltip = "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.";
+ def->label = L("HTTPS CA File");
+ def->tooltip = L("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.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
}
void PrintConfigDef::init_fff_params()
@@ -115,7 +116,7 @@ void PrintConfigDef::init_fff_params()
"This is mostly useful with Bowden extruders which suffer from oozing. "
"This feature slows down both the print and the G-code generation.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("bed_temperature", coInts);
def->label = L("Other layers");
@@ -125,7 +126,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("°C");
def->min = 0;
def->max = 300;
- def->default_value = new ConfigOptionInts { 0 };
+ def->set_default_value(new ConfigOptionInts { 0 });
def = this->add("before_layer_gcode", coString);
def->label = L("Before layer change G-code");
@@ -134,25 +135,26 @@ void PrintConfigDef::init_fff_params()
"as [layer_num] and [layer_z].");
def->multiline = true;
def->full_width = true;
- def->height = 50;
+ def->height = 5;
def->mode = comExpert;
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
def = this->add("between_objects_gcode", coString);
def->label = L("Between objects G-code");
def->tooltip = L("This code is inserted between objects when using sequential printing. By default extruder and bed temperature are reset using non-wait command; however if M104, M109, M140 or M190 are detected in this custom code, Slic3r will not add temperature commands. Note that you can use placeholder variables for all Slic3r settings, so you can put a \"M109 S[first_layer_temperature]\" command wherever you want.");
def->multiline = true;
def->full_width = true;
- def->height = 120;
+ def->height = 12;
def->mode = comExpert;
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
def = this->add("bottom_solid_layers", coInt);
+ //TRN To be shown in Print Settings "Bottom solid layers"
def->label = L("Bottom");
def->category = L("Layers and Perimeters");
def->tooltip = L("Number of solid layers to generate on bottom surfaces.");
def->full_label = L("Bottom solid layers"); def->min = 0;
- def->default_value = new ConfigOptionInt(3);
+ def->set_default_value(new ConfigOptionInt(3));
def = this->add("bridge_acceleration", coFloat);
def->label = L("Bridge");
@@ -162,7 +164,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm/s²");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("bridge_angle", coFloat);
def->label = L("Bridging");
@@ -174,7 +176,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("°");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(0.);
+ def->set_default_value(new ConfigOptionFloat(0.));
def = this->add("bridge_fan_speed", coInts);
def->label = L("Bridges fan speed");
@@ -183,7 +185,7 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->max = 100;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionInts { 100 };
+ def->set_default_value(new ConfigOptionInts { 100 });
def = this->add("top_fan_speed", coInts);
def->label = L("Top fan speed");
@@ -192,7 +194,7 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->max = 100;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionInts{ 100 };
+ def->set_default_value(new ConfigOptionInts{ 100 });
def = this->add("bridge_flow_ratio", coFloat);
def->label = L("Bridge");
@@ -205,7 +207,7 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->max = 2;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(1);
+ def->set_default_value(new ConfigOptionFloat(1));
def = this->add("over_bridge_flow_ratio", coFloat);
def->label = L("Above the bridges");
@@ -216,7 +218,7 @@ void PrintConfigDef::init_fff_params()
" You can increase it slightly to pull the top layer at the correct height. Recommended maximum: 1.2.");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(1);
+ def->set_default_value(new ConfigOptionFloat(1));
def = this->add("bridge_speed", coFloat);
def->label = L("Bridges");
@@ -227,7 +229,7 @@ void PrintConfigDef::init_fff_params()
def->aliases = { "bridge_feed_rate" };
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(60);
+ def->set_default_value(new ConfigOptionFloat(60));
def = this->add("brim_width", coFloat);
def->label = L("Brim width");
@@ -235,13 +237,13 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comSimple;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("brim_ears", coBool);
def->label = L(" ");
def->full_label = L("Brim ears");
def->tooltip = L("Only draw brim over the sharp edges of the model.");
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("brim_ears_max_angle", coFloat);
def->label = L("max angle");
@@ -249,7 +251,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("°");
def->min = 0;
def->max = 180;
- def->default_value = new ConfigOptionFloat(125);
+ def->set_default_value(new ConfigOptionFloat(125));
def = this->add("chamber_temperature", coInts);
def->label = L("Chamber");
@@ -259,25 +261,25 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->max = 300;
def->mode = comExpert;
- def->default_value = new ConfigOptionInts{ 0 };
+ def->set_default_value(new ConfigOptionInts{ 0 });
def = this->add("clip_multipart_objects", coBool);
def->label = L("Clip multi-part objects");
- def->tooltip = L("When printing multi-material objects, this settings will make slic3r "
+ def->tooltip = L("When printing multi-material objects, this settings will make Slic3r "
"to clip the overlapping object parts one by the other "
"(2nd part will be clipped by the 1st, 3rd part will be clipped by the 1st and 2nd etc).");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("colorprint_heights", coFloats);
def->label = L("Colorprint height");
def->tooltip = L("Heights at which a filament change is to occur. ");
- def->default_value = new ConfigOptionFloats { };
+ def->set_default_value(new ConfigOptionFloats { });
def = this->add("compatible_printers", coStrings);
def->label = L("Compatible printers");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionStrings();
+ def->set_default_value(new ConfigOptionStrings());
def->cli = ConfigOptionDef::nocli;
def = this->add("compatible_printers_condition", coString);
@@ -286,13 +288,13 @@ void PrintConfigDef::init_fff_params()
"If this expression evaluates to true, this profile is considered compatible "
"with the active printer profile.");
def->mode = comExpert;
- def->default_value = new ConfigOptionString();
+ def->set_default_value(new ConfigOptionString());
def->cli = ConfigOptionDef::nocli;
def = this->add("compatible_prints", coStrings);
def->label = L("Compatible print profiles");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionStrings();
+ def->set_default_value(new ConfigOptionStrings());
def->cli = ConfigOptionDef::nocli;
def = this->add("compatible_prints_condition", coString);
@@ -301,16 +303,16 @@ void PrintConfigDef::init_fff_params()
"If this expression evaluates to true, this profile is considered compatible "
"with the active print profile.");
def->mode = comExpert;
- def->default_value = new ConfigOptionString();
+ def->set_default_value(new ConfigOptionString());
def->cli = ConfigOptionDef::nocli;
// The following value is to be stored into the project file (AMF, 3MF, Config ...)
// and it contains a sum of "compatible_printers_condition" values over the print and filament profiles.
def = this->add("compatible_printers_condition_cummulative", coStrings);
- def->default_value = new ConfigOptionStrings();
+ def->set_default_value(new ConfigOptionStrings());
def->cli = ConfigOptionDef::nocli;
def = this->add("compatible_prints_condition_cummulative", coStrings);
- def->default_value = new ConfigOptionStrings();
+ def->set_default_value(new ConfigOptionStrings());
def->cli = ConfigOptionDef::nocli;
def = this->add("complete_objects", coBool);
@@ -320,30 +322,30 @@ void PrintConfigDef::init_fff_params()
"This feature is useful to avoid the risk of ruined prints. "
"Slic3r should warn and prevent you from extruder collisions, but beware.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("cooling", coBools);
def->label = L("Enable auto cooling");
def->tooltip = L("This flag enables the automatic cooling logic that adjusts print speed "
"and fan speed according to layer printing time.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBools { true };
+ def->set_default_value(new ConfigOptionBools { true });
def = this->add("cooling_tube_retraction", coFloat);
def->label = L("Cooling tube position");
- def->tooltip = L("Distance of the center-point of the cooling tube from the extruder tip ");
+ def->tooltip = L("Distance of the center-point of the cooling tube from the extruder tip.");
def->sidetext = L("mm");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(91.5f);
+ def->set_default_value(new ConfigOptionFloat(91.5f));
def = this->add("cooling_tube_length", coFloat);
def->label = L("Cooling tube length");
- def->tooltip = L("Length of the cooling tube to limit space for cooling moves inside it ");
+ def->tooltip = L("Length of the cooling tube to limit space for cooling moves inside it.");
def->sidetext = L("mm");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(5.f);
+ def->set_default_value(new ConfigOptionFloat(5.f));
def = this->add("default_acceleration", coFloat);
def->label = L("Default");
@@ -354,20 +356,20 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm/s²");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("default_filament_profile", coStrings);
def->label = L("Default filament profile");
def->tooltip = L("Default filament profile associated with the current printer profile. "
"On selection of the current printer profile, this filament profile will be activated.");
- def->default_value = new ConfigOptionStrings();
+ def->set_default_value(new ConfigOptionStrings());
def->cli = ConfigOptionDef::nocli;
def = this->add("default_print_profile", coString);
def->label = L("Default print profile");
def->tooltip = L("Default print profile associated with the current printer profile. "
"On selection of the current printer profile, this print profile will be activated.");
- def->default_value = new ConfigOptionString();
+ def->set_default_value(new ConfigOptionString());
def->cli = ConfigOptionDef::nocli;
def = this->add("disable_fan_first_layers", coInts);
@@ -378,7 +380,7 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->max = 1000;
def->mode = comExpert;
- def->default_value = new ConfigOptionInts { 3 };
+ def->set_default_value(new ConfigOptionInts { 3 });
def = this->add("dont_support_bridges", coBool);
def->label = L("Don't support bridges");
@@ -386,7 +388,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Experimental option for preventing support material from being generated "
"under bridged areas.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBool(true);
+ def->set_default_value(new ConfigOptionBool(true));
def = this->add("duplicate_distance", coFloat);
def->label = L("Distance between copies");
@@ -394,7 +396,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->aliases = { "multiply_distance" };
def->min = 0;
- def->default_value = new ConfigOptionFloat(6);
+ def->set_default_value(new ConfigOptionFloat(6));
def = this->add("elefant_foot_compensation", coFloat);
def->label = L("First layer");
@@ -404,7 +406,7 @@ void PrintConfigDef::init_fff_params()
"to compensate for the 1st layer squish aka an Elephant Foot effect. (should be negative = inwards)");
def->sidetext = L("mm");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("end_gcode", coString);
def->label = L("End G-code");
@@ -412,9 +414,9 @@ void PrintConfigDef::init_fff_params()
"Note that you can use placeholder variables for all Slic3r settings.");
def->multiline = true;
def->full_width = true;
- def->height = 120;
+ def->height = 12;
def->mode = comExpert;
- def->default_value = new ConfigOptionString("M104 S0 ; turn off temperature\nG28 X0 ; home X axis\nM84 ; disable motors\n");
+ def->set_default_value(new ConfigOptionString("M104 S0 ; turn off temperature\nG28 X0 ; home X axis\nM84 ; disable motors\n"));
def = this->add("end_filament_gcode", coStrings);
def->label = L("End G-code");
@@ -426,7 +428,7 @@ void PrintConfigDef::init_fff_params()
def->full_width = true;
def->height = 120;
def->mode = comExpert;
- def->default_value = new ConfigOptionStrings { "; Filament-specific end gcode \n;END gcode for filament\n" };
+ def->set_default_value(new ConfigOptionStrings { "; Filament-specific end gcode \n;END gcode for filament\n" });
def = this->add("ensure_vertical_shell_thickness", coBool);
def->label = L("Ensure vertical shell thickness");
@@ -434,7 +436,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Add solid infill near sloping surfaces to guarantee the vertical shell thickness "
"(top+bottom solid layers).");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("top_fill_pattern", coEnum);
def->label = L("Top");
@@ -463,7 +465,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back(L("Octagram Spiral"));
def->enum_labels.push_back(L("Sawtooth"));
def->enum_labels.push_back(L("Ironing"));
- def->default_value = new ConfigOptionEnum(ipRectilinear);
+ def->set_default_value(new ConfigOptionEnum(ipRectilinear));
def = this->add("bottom_fill_pattern", coEnum);
def->label = L("Bottom");
@@ -489,7 +491,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back(L("Octagram Spiral"));
def->enum_labels.push_back(L("Ironing"));
def->mode = comAdvanced;
- def->default_value = new ConfigOptionEnum(ipRectilinear);
+ def->set_default_value(new ConfigOptionEnum(ipRectilinear));
def = this->add("solid_fill_pattern", coEnum);
def->label = L("Solid pattern");
@@ -514,7 +516,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back(L("Archimedean Chords"));
def->enum_labels.push_back(L("Octagram Spiral"));
def->mode = comExpert;
- def->default_value = new ConfigOptionEnum(ipRectilinearWGapFill);
+ def->set_default_value(new ConfigOptionEnum(ipRectilinearWGapFill));
def = this->add("enforce_full_fill_volume", coBool);
def->label = L("Enforce 100% fill volume");
@@ -524,7 +526,7 @@ void PrintConfigDef::init_fff_params()
"but it can go as high as +50% for infill in very small areas where rectilinear doesn't have good coverage). It has the advantage "
"to remove the over-extrusion seen in thin infill areas, from the overlap ratio");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(true);
+ def->set_default_value(new ConfigOptionBool(true));
def = this->add("external_infill_margin", coFloatOrPercent);
def->label = L("Default");
@@ -534,7 +536,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloatOrPercent(150, true);
+ def->set_default_value(new ConfigOptionFloatOrPercent(150, true));
def = this->add("bridged_infill_margin", coFloatOrPercent);
def->label = L("Bridged");
@@ -544,7 +546,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloatOrPercent(200, true);
+ def->set_default_value(new ConfigOptionFloatOrPercent(200, true));
def = this->add("external_perimeter_extrusion_width", coFloatOrPercent);
def->label = L("External perimeters");
@@ -553,9 +555,9 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Set this to a non-zero value to set a manual extrusion width for external perimeters. "
"If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. "
"If expressed as percentage (for example 112.5%), it will be computed over nozzle diameter.");
- def->sidetext = L("mm or % (leave 0 for default)");
+ def->sidetext = L("mm or %");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloatOrPercent(0, false);
+ def->set_default_value(new ConfigOptionFloatOrPercent(0, false));
def = this->add("external_perimeter_speed", coFloatOrPercent);
def->label = L("External");
@@ -568,7 +570,7 @@ void PrintConfigDef::init_fff_params()
def->ratio_over = "perimeter_speed";
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloatOrPercent(50, true);
+ def->set_default_value(new ConfigOptionFloatOrPercent(50, true));
def = this->add("external_perimeters_first", coBool);
def->label = L("External perimeters first");
@@ -576,7 +578,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Print contour perimeters from the outermost one to the innermost one "
"instead of the default inverse order.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("perimeter_loop", coBool);
def->label = L(" ");
@@ -585,7 +587,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Join the perimeters to create only one continuous extrusion without any z-hop."
" Long inside travel (from external to holes) are not extruded to give some space to the infill.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("perimeter_loop_seam", coEnum);
def->label = L("Seam position");
@@ -598,7 +600,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back(L("Nearest"));
def->enum_labels.push_back(L("Rear"));
def->mode = comAdvanced;
- def->default_value = new ConfigOptionEnum(spRear);
+ def->set_default_value(new ConfigOptionEnum(spRear));
def = this->add("extra_perimeters", coBool);
def->label = L("Extra perimeters if needed");
@@ -608,13 +610,13 @@ void PrintConfigDef::init_fff_params()
"is supported, and keep adding periemter until all overhangs are filled."
"\n!! this is a very slow algorithm !!");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBool(true);
+ def->set_default_value(new ConfigOptionBool(true));
def = this->add("only_one_perimeter_top", coBool);
def->label = "Only one perimeter on Top surfaces";
def->category = "Layers and Perimeters";
def->tooltip = "Use only one perimeter on flat top surface, to let more space to the top infill pattern.";
- def->default_value = new ConfigOptionBool(true);
+ def->set_default_value(new ConfigOptionBool(true));
def = this->add("extruder", coInt);
@@ -645,7 +647,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(20);
+ def->set_default_value(new ConfigOptionFloat(20));
def = this->add("extruder_clearance_radius", coFloat);
def->label = L("Radius");
@@ -657,7 +659,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(20);
+ def->set_default_value(new ConfigOptionFloat(20));
def = this->add("extruder_colour", coStrings);
def->label = L("Extruder Color");
@@ -665,7 +667,7 @@ void PrintConfigDef::init_fff_params()
def->gui_type = "color";
// Empty string means no color assigned yet.
def->mode = comAdvanced;
- def->default_value = new ConfigOptionStrings { "" };
+ def->set_default_value(new ConfigOptionStrings{ "" });
def = this->add("extruder_offset", coPoints);
def->label = L("Extruder offset");
@@ -675,13 +677,13 @@ void PrintConfigDef::init_fff_params()
"from the XY coordinate).");
def->sidetext = L("mm");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionPoints { Vec2d(0,0) };
+ def->set_default_value(new ConfigOptionPoints { Vec2d(0,0) });
def = this->add("extrusion_axis", coString);
def->label = L("Extrusion axis");
def->tooltip = L("Use this option to set the axis letter associated to your printer's extruder "
"(usually E but some printers use A).");
- def->default_value = new ConfigOptionString("E");
+ def->set_default_value(new ConfigOptionString("E"));
def = this->add("extrusion_multiplier", coFloats);
def->label = L("Extrusion multiplier");
@@ -690,7 +692,7 @@ void PrintConfigDef::init_fff_params()
"Usual values are between 0.9 and 1.1. If you think you need to change this more, "
"check filament diameter and your firmware E steps.");
def->mode = comSimple;
- def->default_value = new ConfigOptionFloats { 1. };
+ def->set_default_value(new ConfigOptionFloats { 1. });
def = this->add("extrusion_width", coFloatOrPercent);
def->label = L("Default extrusion width");
@@ -699,27 +701,27 @@ void PrintConfigDef::init_fff_params()
"If left to zero, Slic3r derives extrusion widths from the nozzle diameter "
"(see the tooltips for perimeter extrusion width, infill extrusion width etc). "
"If expressed as percentage (for example: 105%), it will be computed over nozzle diameter.");
- def->sidetext = L("mm or % (leave 0 for auto)");
+ def->sidetext = L("mm or %");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloatOrPercent(0, false);
+ def->set_default_value(new ConfigOptionFloatOrPercent(0, false));
def = this->add("fan_always_on", coBools);
def->label = L("Keep fan always on");
def->tooltip = L("If this is enabled, fan will never be disabled and will be kept running at least "
"at its minimum speed. Useful for PLA, harmful for ABS.");
def->mode = comSimple;
- def->default_value = new ConfigOptionBools { false };
+ def->set_default_value(new ConfigOptionBools{ false });
def = this->add("fan_below_layer_time", coInts);
def->label = L("Enable fan if layer print time is below");
def->tooltip = L("If layer print time is estimated below this number of seconds, fan will be enabled "
"and its speed will be calculated by interpolating the minimum and maximum speeds.");
def->sidetext = L("approximate seconds");
- def->width = 60;
+ def->width = 6;
def->min = 0;
def->max = 1000;
def->mode = comExpert;
- def->default_value = new ConfigOptionInts { 60 };
+ def->set_default_value(new ConfigOptionInts { 60 });
def = this->add("filament_colour", coStrings);
def->label = L("Color");
@@ -727,16 +729,16 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("This is only used in the Slic3r interface as a visual help.");
def->gui_type = "color";
def->mode = comAdvanced;
- def->default_value = new ConfigOptionStrings { "#29B2B2" };
+ def->set_default_value(new ConfigOptionStrings{ "#29B2B2" });
def = this->add("filament_notes", coStrings);
def->label = L("Filament notes");
def->tooltip = L("You can put your notes regarding the filament here.");
def->multiline = true;
def->full_width = true;
- def->height = 130;
+ def->height = 13;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionStrings { "" };
+ def->set_default_value(new ConfigOptionStrings { "" });
def = this->add("filament_max_volumetric_speed", coFloats);
def->label = L("Max volumetric speed");
@@ -746,7 +748,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm³/s");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloats { 0. };
+ def->set_default_value(new ConfigOptionFloats { 0. });
def = this->add("filament_max_wipe_tower_speed", coFloats);
def->label = L("Max speed on the wipe tower");
@@ -755,7 +757,7 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->max = 200;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloats { 0 };
+ def->set_default_value(new ConfigOptionFloats { 0 });
def = this->add("filament_loading_speed", coFloats);
def->label = L("Loading speed");
@@ -763,7 +765,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm/s");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloats { 28. };
+ def->set_default_value(new ConfigOptionFloats { 28. });
def = this->add("filament_loading_speed_start", coFloats);
def->label = L("Loading speed at the start");
@@ -771,7 +773,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm/s");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloats { 3. };
+ def->set_default_value(new ConfigOptionFloats { 3. });
def = this->add("filament_unloading_speed", coFloats);
def->label = L("Unloading speed");
@@ -780,7 +782,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm/s");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloats { 90. };
+ def->set_default_value(new ConfigOptionFloats { 90. });
def = this->add("filament_unloading_speed_start", coFloats);
def->label = L("Unloading speed at the start");
@@ -788,7 +790,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm/s");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloats { 100. };
+ def->set_default_value(new ConfigOptionFloats { 100. });
def = this->add("filament_toolchange_delay", coFloats);
def->label = L("Delay after unloading");
@@ -798,16 +800,16 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("s");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloats { 0. };
+ def->set_default_value(new ConfigOptionFloats { 0. });
def = this->add("filament_cooling_moves", coInts);
def->label = L("Number of cooling moves");
def->tooltip = L("Filament is cooled by being moved back and forth in the "
- "cooling tubes. Specify desired number of these moves ");
+ "cooling tubes. Specify desired number of these moves.");
def->max = 0;
def->max = 20;
def->mode = comExpert;
- def->default_value = new ConfigOptionInts { 4 };
+ def->set_default_value(new ConfigOptionInts { 4 });
def = this->add("filament_cooling_initial_speed", coFloats);
def->label = L("Speed of the first cooling move");
@@ -815,7 +817,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm/s");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloats { 2.2f };
+ def->set_default_value(new ConfigOptionFloats { 2.2f });
def = this->add("filament_minimal_purge_on_wipe_tower", coFloats);
def->label = L("Minimal purge on wipe tower");
@@ -826,7 +828,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm³");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloats { 15.f };
+ def->set_default_value(new ConfigOptionFloats { 15.f });
def = this->add("filament_cooling_final_speed", coFloats);
def->label = L("Speed of the last cooling move");
@@ -834,7 +836,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm/s");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloats { 3.4f };
+ def->set_default_value(new ConfigOptionFloats { 3.4f });
def = this->add("filament_load_time", coFloats);
def->label = L("Filament load time");
@@ -842,14 +844,14 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("s");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloats { 0.0f };
+ def->set_default_value(new ConfigOptionFloats { 0.0f });
def = this->add("filament_ramming_parameters", coStrings);
def->label = L("Ramming parameters");
- def->tooltip = L("This string is edited by RammingDialog and contains ramming specific parameters ");
+ def->tooltip = L("This string is edited by RammingDialog and contains ramming specific parameters.");
def->mode = comExpert;
- def->default_value = new ConfigOptionStrings { "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0|"
- " 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6" };
+ def->set_default_value(new ConfigOptionStrings { "120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0|"
+ " 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6" });
def = this->add("filament_unload_time", coFloats);
def->label = L("Filament unload time");
@@ -857,7 +859,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("s");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloats { 0.0f };
+ def->set_default_value(new ConfigOptionFloats { 0.0f });
def = this->add("filament_diameter", coFloats);
def->label = L("Diameter");
@@ -866,7 +868,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloats { 3. };
+ def->set_default_value(new ConfigOptionFloats{ 1.75 });
def = this->add("filament_density", coFloats);
def->label = L("Density");
@@ -876,7 +878,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("g/cm³");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloats { 0. };
+ def->set_default_value(new ConfigOptionFloats{ 0. });
def = this->add("filament_type", coStrings);
def->label = L("Filament type");
@@ -903,23 +905,23 @@ void PrintConfigDef::init_fff_params()
def->enum_values.push_back("other8");
def->enum_values.push_back("other9");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionStrings { "PLA" };
+ def->set_default_value(new ConfigOptionStrings { "PLA" });
def = this->add("filament_soluble", coBools);
def->label = L("Soluble material");
def->tooltip = L("Soluble material is most likely used for a soluble support.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBools { false };
+ def->set_default_value(new ConfigOptionBools { false });
def = this->add("filament_cost", coFloats);
def->label = L("Cost");
def->tooltip = L("Enter your filament cost per kg here. This is only for statistical information.");
def->sidetext = L("money/kg");
def->min = 0;
- def->default_value = new ConfigOptionFloats { 0. };
+ def->set_default_value(new ConfigOptionFloats { 0. });
def = this->add("filament_settings_id", coStrings);
- def->default_value = new ConfigOptionStrings { "" };
+ def->set_default_value(new ConfigOptionStrings { "" });
def->cli = ConfigOptionDef::nocli;
def = this->add("fill_angle", coFloat);
@@ -933,7 +935,7 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->max = 360;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(45);
+ def->set_default_value(new ConfigOptionFloat(45));
def = this->add("fill_density", coPercent);
def->gui_type = "f_enum_open";
@@ -973,6 +975,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back("80%");
def->enum_labels.push_back("90%");
def->enum_labels.push_back("100%");
+ def->set_default_value(new ConfigOptionPercent(20);
*/
def->enum_values.push_back("0");
def->enum_values.push_back("4");
@@ -1000,7 +1003,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back("55");
def->enum_labels.push_back("75");
def->enum_labels.push_back("100");
- def->default_value = new ConfigOptionPercent(18);
+ def->set_default_value(new ConfigOptionPercent(18));
def = this->add("fill_pattern", coEnum);
def->label = L("Pattern");
@@ -1036,7 +1039,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back(L("Archimedean Chords"));
def->enum_labels.push_back(L("Octagram Spiral"));
def->enum_labels.push_back(L("Scattered Rectilinear"));
- def->default_value = new ConfigOptionEnum(ipStars);
+ def->set_default_value( new ConfigOptionEnum(ipStars));
def = this->add("first_layer_acceleration", coFloat);
def->label = L("First layer");
@@ -1046,7 +1049,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm/s²");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("first_layer_bed_temperature", coInts);
def->label = L("First layer");
@@ -1056,7 +1059,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("°C");
def->max = 0;
def->max = 300;
- def->default_value = new ConfigOptionInts { 0 };
+ def->set_default_value(new ConfigOptionInts { 0 });
def = this->add("first_layer_extrusion_width", coFloatOrPercent);
def->label = L("First layer");
@@ -1067,10 +1070,10 @@ void PrintConfigDef::init_fff_params()
"as percentage (for example 140%) it will be computed over the nozzle diameter "
"of the nozzle used for the type of extrusion. "
"If set to zero, it will use the default extrusion width.");
- def->sidetext = L("mm or % (leave 0 for default)");
+ def->sidetext = L("mm or %");
def->ratio_over = "first_layer_height";
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloatOrPercent(140, true);
+ def->set_default_value(new ConfigOptionFloatOrPercent(140, true));
def = this->add("first_layer_height", coFloatOrPercent);
def->label = L("First layer height");
@@ -1082,7 +1085,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm or %");
def->ratio_over = "layer_height";
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloatOrPercent(0.35, false);
+ def->set_default_value(new ConfigOptionFloatOrPercent(0.35, false));
def = this->add("first_layer_speed", coFloatOrPercent);
def->label = L("Default");
@@ -1094,7 +1097,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm/s or %");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloatOrPercent(30, false);
+ def->set_default_value(new ConfigOptionFloatOrPercent(30, false));
def = this->add("first_layer_infill_speed", coFloatOrPercent);
def->label = L("Infill");
@@ -1106,7 +1109,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm/s or %");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloatOrPercent(30, false);
+ def->set_default_value(new ConfigOptionFloatOrPercent(30, false));
def = this->add("first_layer_temperature", coInts);
def->label = L("First layer");
@@ -1116,7 +1119,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("°C");
def->min = 0;
def->max = max_temp;
- def->default_value = new ConfigOptionInts{ 200 };
+ def->set_default_value(new ConfigOptionInts { 200 });
def = this->add("gap_fill", coBool);
def->label = L("Gap fill");
@@ -1124,7 +1127,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Enable gap fill algorithm. It will extrude small lines between perimeters "
"when there is not enough space for another perimeter or an infill.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(true);
+ def->set_default_value(new ConfigOptionBool(true));
def = this->add("gap_fill_speed", coFloat);
def->label = L("Gap fill");
@@ -1135,7 +1138,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm/s");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(20);
+ def->set_default_value(new ConfigOptionFloat(20));
def = this->add("gcode_comments", coBool);
def->label = L("Verbose G-code");
@@ -1143,7 +1146,7 @@ void PrintConfigDef::init_fff_params()
"If you print from SD card, the additional weight of the file could make your firmware "
"slow down.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(0);
+ def->set_default_value(new ConfigOptionBool(0));
def = this->add("gcode_flavor", coEnum);
def->label = L("G-code flavor");
@@ -1172,16 +1175,16 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back("Smoothie");
def->enum_labels.push_back(L("No extrusion"));
def->mode = comAdvanced;
- def->default_value = new ConfigOptionEnum(gcfRepRap);
+ def->set_default_value(new ConfigOptionEnum(gcfRepRap));
def = this->add("gcode_label_objects", coBool);
- def->label = "Label objects";
- def->tooltip = "Enable this to add comments into the G-Code labeling print moves with what object they belong to,"
+ def->label = L("Label objects");
+ def->tooltip = L("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.";
+ "Single Extruder Multi Material setup and Wipe into Object / Wipe into Infill.");
def->aliases = { "label_printed_objects" };
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBool(1);
+ def->set_default_value(new ConfigOptionBool(1));
def = this->add("high_current_on_filament_swap", coBool);
def->label = L("High extruder current on filament swap");
@@ -1189,7 +1192,7 @@ void PrintConfigDef::init_fff_params()
" sequence to allow for rapid ramming feed rates and to overcome resistance when loading"
" a filament with an ugly shaped tip.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(0);
+ def->set_default_value(new ConfigOptionBool(0));
def = this->add("infill_acceleration", coFloat);
def->label = L("Infill");
@@ -1199,7 +1202,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm/s²");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("infill_every_layers", coInt);
def->label = L("Combine infill every");
@@ -1210,7 +1213,7 @@ void PrintConfigDef::init_fff_params()
def->full_label = L("Combine infill every n layers");
def->min = 1;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionInt(1);
+ def->set_default_value(new ConfigOptionInt(1));
def = this->add("infill_dense", coBool);
def->label = ("");
@@ -1219,14 +1222,14 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Enables the creation of a support layer under the first solid layer. This allows you to use a lower infill ratio without compromising the top quality."
" The dense infill is laid out with a 50% infill density.");
def->mode = comSimple;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("infill_not_connected", coBool);
def->label = ("Do not connect infill lines to each other");
def->category = L("Infill");
def->tooltip = L("If checked, the infill algorithm will try to not connect the lines near the infill. Can be useful for art or with high infill/perimeter overlap.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("infill_dense_algo", coEnum);
def->label = L("Algorithm");
@@ -1242,7 +1245,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back(L("Automatic, only for small areas"));
def->enum_labels.push_back(L("Anchored"));
def->mode = comAdvanced;
- def->default_value = new ConfigOptionEnum(dfaAutomatic);
+ def->set_default_value(new ConfigOptionEnum(dfaAutomatic));
def = this->add("infill_extruder", coInt);
def->label = L("Infill extruder");
@@ -1250,7 +1253,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("The extruder to use when printing infill.");
def->min = 1;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionInt(1);
+ def->set_default_value(new ConfigOptionInt(1));
def = this->add("infill_extrusion_width", coFloatOrPercent);
def->label = L("Infill");
@@ -1259,16 +1262,16 @@ void PrintConfigDef::init_fff_params()
"If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. "
"You may want to use fatter extrudates to speed up the infill and make your parts stronger. "
"If expressed as percentage (for example 110%) it will be computed over nozzle diameter.");
- def->sidetext = L("mm or % (leave 0 for default)");
+ def->sidetext = L("mm or %");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloatOrPercent(0, false);
+ def->set_default_value(new ConfigOptionFloatOrPercent(0, false));
def = this->add("infill_first", coBool);
def->label = L("Infill before perimeters");
def->category = L("Infill");
def->tooltip = L("This option will switch the print order of perimeters and infill, making the latter first.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("infill_only_where_needed", coBool);
def->label = L("Only infill where needed");
@@ -1277,7 +1280,7 @@ void PrintConfigDef::init_fff_params()
"(it will act as internal support material). If enabled, slows down the G-code generation "
"due to the multiple checks involved.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("infill_overlap", coFloatOrPercent);
def->label = L("Infill/perimeters overlap");
@@ -1288,7 +1291,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm or %");
def->ratio_over = "perimeter_extrusion_width";
def->mode = comExpert;
- def->default_value = new ConfigOptionFloatOrPercent(25, true);
+ def->set_default_value(new ConfigOptionFloatOrPercent(25, true));
def = this->add("infill_speed", coFloat);
def->label = L("Sparse");
@@ -1299,20 +1302,20 @@ void PrintConfigDef::init_fff_params()
def->aliases = { "print_feed_rate", "infill_feed_rate" };
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(80);
+ def->set_default_value(new ConfigOptionFloat(80));
def = this->add("inherits", coString);
def->label = L("Inherits profile");
def->tooltip = L("Name of the profile, from which this profile inherits.");
def->full_width = true;
- def->height = 50;
- def->default_value = new ConfigOptionString();
+ def->height = 5;
+ def->set_default_value(new ConfigOptionString());
def->cli = ConfigOptionDef::nocli;
// The following value is to be stored into the project file (AMF, 3MF, Config ...)
// and it contains a sum of "inherits" values over the print and filament profiles.
def = this->add("inherits_cummulative", coStrings);
- def->default_value = new ConfigOptionStrings();
+ def->set_default_value(new ConfigOptionStrings());
def->cli = ConfigOptionDef::nocli;
def = this->add("interface_shells", coBool);
@@ -1322,7 +1325,7 @@ void PrintConfigDef::init_fff_params()
"support material.");
def->category = L("Layers and Perimeters");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("layer_gcode", coString);
def->label = L("After layer change G-code");
@@ -1332,16 +1335,16 @@ void PrintConfigDef::init_fff_params()
def->cli = "after-layer-gcode|layer-gcode";
def->multiline = true;
def->full_width = true;
- def->height = 50;
+ def->height = 5;
def->mode = comExpert;
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
def = this->add("exact_last_layer_height", coBool);
def->label = L("Exact last layer height");
def->category = L("Layers and Perimeters");
def->tooltip = L("This setting controls the height of last object layers to put the last layer at the exact highest height possible. Experimental.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("remaining_times", coBool);
def->label = L("Supports remaining times");
@@ -1351,14 +1354,14 @@ void PrintConfigDef::init_fff_params()
" As of now only the Prusa i3 MK3 firmware recognizes M73."
" Also the i3 MK3 firmware supports M73 Qxx Sxx for the silent mode.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("silent_mode", coBool);
- def->label = L("Supports silent mode");
+ def->label = L("Supports stealth mode");
def->category = L("Firmware");
- def->tooltip = L("Set silent mode for the G-code flavor");
+ def->tooltip = L("The firmware supports stealth mode");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBool(true);
+ def->set_default_value(new ConfigOptionBool(true));
def = this->add("fan_speedup_time", coFloat);
def->label = L("fan startup delay");
@@ -1367,7 +1370,7 @@ void PrintConfigDef::init_fff_params()
" It assume infinite acceleration for this time estimation, and only takes into account G1 and G0 moves. Use 0 to deactivate, negative to remove the 'D' option.");
def->sidetext = L("s");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
const int machine_limits_opt_width = 70;
{
@@ -1388,34 +1391,58 @@ void PrintConfigDef::init_fff_params()
std::string axis_upper = boost::to_upper_copy(axis.name);
// Add the machine feedrate limits for XYZE axes. (M203)
def = this->add("machine_max_feedrate_" + axis.name, coFloats);
- def->full_label = (boost::format(L("Maximum feedrate %1%")) % axis_upper).str();
+ def->full_label = (boost::format("Maximum feedrate %1%") % axis_upper).str();
+ L("Maximum feedrate X");
+ L("Maximum feedrate Y");
+ L("Maximum feedrate Z");
+ L("Maximum feedrate E");
def->category = L("Machine limits");
- def->tooltip = (boost::format(L("Maximum feedrate of the %1% axis")) % axis_upper).str();
+ def->tooltip = (boost::format("Maximum feedrate of the %1% axis") % axis_upper).str();
+ L("Maximum feedrate of the X axis");
+ L("Maximum feedrate of the Y axis");
+ L("Maximum feedrate of the Z axis");
+ L("Maximum feedrate of the E axis");
def->sidetext = L("mm/s");
def->min = 0;
def->width = machine_limits_opt_width;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloats(axis.max_feedrate);
+ def->set_default_value(new ConfigOptionFloats(axis.max_feedrate));
// Add the machine acceleration limits for XYZE axes (M201)
def = this->add("machine_max_acceleration_" + axis.name, coFloats);
- def->full_label = (boost::format(L("Maximum acceleration %1%")) % axis_upper).str();
+ def->full_label = (boost::format("Maximum acceleration %1%") % axis_upper).str();
+ L("Maximum acceleration X");
+ L("Maximum acceleration Y");
+ L("Maximum acceleration Z");
+ L("Maximum acceleration E");
def->category = L("Machine limits");
- def->tooltip = (boost::format(L("Maximum acceleration of the %1% axis")) % axis_upper).str();
+ def->tooltip = (boost::format("Maximum acceleration of the %1% axis") % axis_upper).str();
+ L("Maximum acceleration of the X axis");
+ L("Maximum acceleration of the Y axis");
+ L("Maximum acceleration of the Z axis");
+ L("Maximum acceleration of the E axis");
def->sidetext = L("mm/s²");
def->min = 0;
def->width = machine_limits_opt_width;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloats(axis.max_acceleration);
+ def->set_default_value(new ConfigOptionFloats(axis.max_acceleration));
// Add the machine jerk limits for XYZE axes (M205)
def = this->add("machine_max_jerk_" + axis.name, coFloats);
- def->full_label = (boost::format(L("Maximum jerk %1%")) % axis_upper).str();
+ def->full_label = (boost::format("Maximum jerk %1%") % axis_upper).str();
+ L("Maximum jerk X");
+ L("Maximum jerk Y");
+ L("Maximum jerk Z");
+ L("Maximum jerk E");
def->category = L("Machine limits");
- def->tooltip = (boost::format(L("Maximum jerk of the %1% axis")) % axis_upper).str();
+ def->tooltip = (boost::format("Maximum jerk of the %1% axis") % axis_upper).str();
+ L("Maximum jerk of the X axis");
+ L("Maximum jerk of the Y axis");
+ L("Maximum jerk of the Z axis");
+ L("Maximum jerk of the E axis");
def->sidetext = L("mm/s");
def->min = 0;
def->width = machine_limits_opt_width;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloats(axis.max_jerk);
+ def->set_default_value(new ConfigOptionFloats(axis.max_jerk));
}
}
@@ -1423,45 +1450,45 @@ void PrintConfigDef::init_fff_params()
def = this->add("machine_min_extruding_rate", coFloats);
def->full_label = L("Minimum feedrate when extruding");
def->category = L("Machine limits");
- def->tooltip = L("Minimum feedrate when extruding") + " (M205 S)";
+ def->tooltip = L("Minimum feedrate when extruding (M205 S)");
def->sidetext = L("mm/s");
def->min = 0;
def->width = machine_limits_opt_width;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloats{ 0., 0. };
+ def->set_default_value(new ConfigOptionFloats{ 0., 0. });
// M205 T... [mm/sec]
def = this->add("machine_min_travel_rate", coFloats);
def->full_label = L("Minimum travel feedrate");
def->category = L("Machine limits");
- def->tooltip = L("Minimum travel feedrate") + " (M205 T)";
+ def->tooltip = L("Minimum travel feedrate (M205 T)");
def->sidetext = L("mm/s");
def->min = 0;
def->width = machine_limits_opt_width;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloats{ 0., 0. };
+ def->set_default_value(new ConfigOptionFloats{ 0., 0. });
// M204 S... [mm/sec^2]
def = this->add("machine_max_acceleration_extruding", coFloats);
def->full_label = L("Maximum acceleration when extruding");
def->category = L("Machine limits");
- def->tooltip = L("Maximum acceleration when extruding") + " (M204 S)";
+ def->tooltip = L("Maximum acceleration when extruding (M204 S)");
def->sidetext = L("mm/s²");
def->min = 0;
def->width = machine_limits_opt_width;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloats{ 1500., 1250. };
+ def->set_default_value(new ConfigOptionFloats{ 1500., 1250. });
// M204 T... [mm/sec^2]
def = this->add("machine_max_acceleration_retracting", coFloats);
def->full_label = L("Maximum acceleration when retracting");
def->category = L("Machine limits");
- def->tooltip = L("Maximum acceleration when retracting") + " (M204 T)";
+ def->tooltip = L("Maximum acceleration when retracting (M204 T)");
def->sidetext = L("mm/s²");
def->min = 0;
def->width = machine_limits_opt_width;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloats{ 1500., 1250. };
+ def->set_default_value(new ConfigOptionFloats{ 1500., 1250. });
def = this->add("max_fan_speed", coInts);
def->label = L("Max");
@@ -1471,7 +1498,7 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->max = 100;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionInts { 100 };
+ def->set_default_value(new ConfigOptionInts { 100 });
def = this->add("max_layer_height", coFloats);
def->label = L("Max");
@@ -1483,7 +1510,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comSimple;
- def->default_value = new ConfigOptionFloats { 0. };
+ def->set_default_value(new ConfigOptionFloats { 0. });
def = this->add("max_print_speed", coFloat);
def->label = L("Max print speed");
@@ -1493,7 +1520,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm/s");
def->min = 1;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(80);
+ def->set_default_value(new ConfigOptionFloat(80));
def = this->add("max_volumetric_speed", coFloat);
def->label = L("Max volumetric speed");
@@ -1502,7 +1529,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm³/s");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
#ifdef HAS_PRESSURE_EQUALIZER
def = this->add("max_volumetric_extrusion_rate_slope_positive", coFloat);
@@ -1514,7 +1541,8 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm³/s²");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("max_volumetric_extrusion_rate_slope_negative", coFloat);
def->label = L("Max volumetric slope negative");
@@ -1525,7 +1553,8 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm³/s²");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
#endif /* HAS_PRESSURE_EQUALIZER */
def = this->add("min_fan_speed", coInts);
@@ -1536,7 +1565,7 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->max = 100;
def->mode = comSimple;
- def->default_value = new ConfigOptionInts { 35 };
+ def->set_default_value(new ConfigOptionInts { 35 });
def = this->add("min_layer_height", coFloats);
def->label = L("Min");
@@ -1546,7 +1575,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comSimple;
- def->default_value = new ConfigOptionFloats { 0.07 };
+ def->set_default_value(new ConfigOptionFloats { 0.07 });
def = this->add("min_print_speed", coFloats);
def->label = L("Min print speed");
@@ -1554,7 +1583,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm/s");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloats { 10. };
+ def->set_default_value(new ConfigOptionFloats { 10. });
def = this->add("min_skirt_length", coFloat);
def->label = L("Minimal filament extrusion length");
@@ -1564,7 +1593,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("notes", coString);
def->label = L("Configuration notes");
@@ -1572,16 +1601,16 @@ void PrintConfigDef::init_fff_params()
"header comments.");
def->multiline = true;
def->full_width = true;
- def->height = 130;
+ def->height = 13;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
def = this->add("nozzle_diameter", coFloats);
def->label = L("Nozzle diameter");
def->tooltip = L("This is the diameter of your extruder nozzle (for example: 0.5, 0.35 etc.)");
def->sidetext = L("mm");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloats { 0.5 };
+ def->set_default_value(new ConfigOptionFloats{ 0.4 });
def = this->add("host_type", coEnum);
def->label = L("Host Type");
@@ -1593,35 +1622,35 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back("OctoPrint");
def->enum_labels.push_back("Duet");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionEnum(htOctoPrint);
+ def->set_default_value(new ConfigOptionEnum(htOctoPrint));
def = this->add("printhost_apikey", coString);
def->label = L("API Key / Password");
def->tooltip = L("Slic3r can upload G-code files to a printer host. This field should contain "
"the API Key or the password required for authentication.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
def = this->add("printhost_cafile", coString);
def->label = L("HTTPS CA File");
def->tooltip = "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.";
def->mode = comAdvanced;
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
def = this->add("print_host", coString);
def->label = L("Hostname, IP or URL");
def->tooltip = L("Slic3r can upload G-code files to a printer host. This field should contain "
"the hostname, IP address or URL of the printer host instance.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
def = this->add("only_retract_when_crossing_perimeters", coBool);
def->label = L("Only retract when crossing perimeters");
def->tooltip = L("Disables retraction when the travel path does not exceed the upper layer's perimeters "
"(and thus any ooze will be probably invisible).");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(true);
+ def->set_default_value(new ConfigOptionBool(true));
def = this->add("ooze_prevention", coBool);
def->label = L("Enable");
@@ -1629,7 +1658,7 @@ void PrintConfigDef::init_fff_params()
"It will enable a tall skirt automatically and move extruders outside such "
"skirt when changing temperatures.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("output_filename_format", coString);
def->label = L("Output filename format");
@@ -1639,7 +1668,7 @@ void PrintConfigDef::init_fff_params()
"[input_filename_base].");
def->full_width = true;
def->mode = comExpert;
- def->default_value = new ConfigOptionString("[input_filename_base]");
+ def->set_default_value(new ConfigOptionString("[input_filename_base]"));
def = this->add("overhangs", coBool);
def->label = L("Detect bridging perimeters");
@@ -1647,7 +1676,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Experimental option to adjust flow for overhangs (bridge flow will be used), "
"to apply bridge speed to them and enable fan.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBool(true);
+ def->set_default_value(new ConfigOptionBool(true));
def = this->add("no_perimeter_unsupported_algo", coEnum);
def->label = L("No perimeters on bridge areas");
@@ -1669,7 +1698,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back(L("Keep bridges and overhangs"));
def->enum_labels.push_back(L("Fill the voids with bridges"));
def->mode = comAdvanced;
- def->default_value = new ConfigOptionEnum(npuaNone);
+ def->set_default_value(new ConfigOptionEnum(npuaNone));
def = this->add("parking_pos_retraction", coFloat);
def->label = L("Filament parking position");
@@ -1678,7 +1707,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(92.f);
+ def->set_default_value(new ConfigOptionFloat(92.f));
def = this->add("extra_loading_move", coFloat);
def->label = L("Extra loading distance");
@@ -1687,7 +1716,7 @@ void PrintConfigDef::init_fff_params()
" if negative, the loading move is shorter than unloading. ");
def->sidetext = L("mm");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(-2.f);
+ def->set_default_value(new ConfigOptionFloat(-2.f));
def = this->add("perimeter_acceleration", coFloat);
def->label = L("Perimeters");
@@ -1697,7 +1726,7 @@ void PrintConfigDef::init_fff_params()
"Set zero to disable acceleration control for perimeters.");
def->sidetext = L("mm/s²");
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("perimeter_extruder", coInt);
def->label = L("Perimeter extruder");
@@ -1706,7 +1735,7 @@ void PrintConfigDef::init_fff_params()
def->aliases = { "perimeters_extruder" };
def->min = 1;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionInt(1);
+ def->set_default_value(new ConfigOptionInt(1));
def = this->add("perimeter_extrusion_width", coFloatOrPercent);
def->label = L("Perimeters");
@@ -1716,10 +1745,10 @@ void PrintConfigDef::init_fff_params()
"You may want to use thinner extrudates to get more accurate surfaces. "
"If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. "
"If expressed as percentage (for example 105%) it will be computed over nozzle diameter.");
- def->sidetext = L("mm or % (leave 0 for default)");
+ def->sidetext = L("mm or %");
def->aliases = { "perimeters_extrusion_width" };
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloatOrPercent(0, false);
+ def->set_default_value(new ConfigOptionFloatOrPercent(0, false));
def = this->add("perimeter_speed", coFloat);
def->label = L("Default");
@@ -1730,7 +1759,7 @@ void PrintConfigDef::init_fff_params()
def->aliases = { "perimeter_feed_rate" };
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(60);
+ def->set_default_value(new ConfigOptionFloat(60));
def = this->add("perimeters", coInt);
def->label = L("Perimeters");
@@ -1744,7 +1773,7 @@ void PrintConfigDef::init_fff_params()
def->aliases = { "perimeter_offsets" };
def->min = 0;
def->max = 10000;
- def->default_value = new ConfigOptionInt(3);
+ def->set_default_value(new ConfigOptionInt(3));
def = this->add("post_process", coStrings);
def->label = L("Post-processing scripts");
@@ -1755,14 +1784,14 @@ void PrintConfigDef::init_fff_params()
def->gui_flags = "serialized";
def->multiline = true;
def->full_width = true;
- def->height = 60;
+ def->height = 6;
def->mode = comExpert;
- def->default_value = new ConfigOptionStrings();
+ def->set_default_value(new ConfigOptionStrings());
def = this->add("printer_model", coString);
def->label = L("Printer type");
def->tooltip = L("Type of the printer.");
- def->default_value = new ConfigOptionString();
+ def->set_default_value(new ConfigOptionString());
def->cli = ConfigOptionDef::nocli;
def = this->add("printer_notes", coString);
@@ -1770,28 +1799,28 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("You can put your notes regarding the printer here.");
def->multiline = true;
def->full_width = true;
- def->height = 130;
+ def->height = 13;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
def = this->add("printer_vendor", coString);
def->label = L("Printer vendor");
def->tooltip = L("Name of the printer vendor.");
- def->default_value = new ConfigOptionString();
+ def->set_default_value(new ConfigOptionString());
def->cli = ConfigOptionDef::nocli;
def = this->add("printer_variant", coString);
def->label = L("Printer variant");
def->tooltip = L("Name of the printer variant. For example, the printer variants may be differentiated by a nozzle diameter.");
- def->default_value = new ConfigOptionString();
+ def->set_default_value(new ConfigOptionString());
def->cli = ConfigOptionDef::nocli;
def = this->add("print_settings_id", coString);
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
def->cli = ConfigOptionDef::nocli;
def = this->add("printer_settings_id", coString);
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
def->cli = ConfigOptionDef::nocli;
def = this->add("support_material_solid_first_layer", coBool);
@@ -1799,7 +1828,7 @@ void PrintConfigDef::init_fff_params()
def->category = L("Support material");
def->tooltip = L("Use a solid layer instead of a raft for the layer that touch the build plate.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("raft_layers", coInt);
def->label = L("Raft layers");
@@ -1809,7 +1838,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("layers");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionInt(0);
+ def->set_default_value(new ConfigOptionInt(0));
def = this->add("resolution", coFloat);
def->label = L("Resolution");
@@ -1821,14 +1850,14 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("retract_before_travel", coFloats);
def->label = L("Minimum travel after retraction");
def->tooltip = L("Retraction is not triggered when travel moves are shorter than this length.");
def->sidetext = L("mm");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloats { 2. };
+ def->set_default_value(new ConfigOptionFloats { 2. });
def = this->add("retract_before_wipe", coPercents);
def->label = L("Retract amount before wipe");
@@ -1836,13 +1865,13 @@ void PrintConfigDef::init_fff_params()
"before doing the wipe movement.");
def->sidetext = L("%");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionPercents { 0. };
+ def->set_default_value(new ConfigOptionPercents { 0. });
def = this->add("retract_layer_change", coBools);
def->label = L("Retract on layer change");
def->tooltip = L("This flag enforces a retraction whenever a Z move is done.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBools { false };
+ def->set_default_value(new ConfigOptionBools { false });
def = this->add("retract_length", coFloats);
def->label = L("Length");
@@ -1851,7 +1880,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("When retraction is triggered, filament is pulled back by the specified amount "
"(the length is measured on raw filament, before it enters the extruder).");
def->sidetext = L("mm (zero to disable)");
- def->default_value = new ConfigOptionFloats { 2. };
+ def->set_default_value(new ConfigOptionFloats { 2. });
def = this->add("retract_length_toolchange", coFloats);
def->label = L("Length");
@@ -1862,7 +1891,7 @@ void PrintConfigDef::init_fff_params()
"the extruder).");
def->sidetext = L("mm (zero to disable)");
def->mode = comExpert;
- def->default_value = new ConfigOptionFloats { 10. };
+ def->set_default_value(new ConfigOptionFloats { 10. });
def = this->add("retract_lift", coFloats);
def->label = L("Lift Z");
@@ -1870,7 +1899,7 @@ void PrintConfigDef::init_fff_params()
"is triggered. When using multiple extruders, only the setting for the first extruder "
"will be considered.");
def->sidetext = L("mm");
- def->default_value = new ConfigOptionFloats { 0. };
+ def->set_default_value(new ConfigOptionFloats { 0. });
def = this->add("retract_lift_above", coFloats);
def->label = L("Above Z");
@@ -1880,7 +1909,7 @@ void PrintConfigDef::init_fff_params()
"absolute Z. You can tune this setting for skipping lift on the first layers.");
def->sidetext = L("mm");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloats { 0. };
+ def->set_default_value(new ConfigOptionFloats { 0. });
def = this->add("retract_lift_below", coFloats);
def->label = L("Below Z");
@@ -1891,7 +1920,7 @@ void PrintConfigDef::init_fff_params()
"to the first layers.");
def->sidetext = L("mm");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloats { 0. };
+ def->set_default_value(new ConfigOptionFloats { 0. });
def = this->add("retract_lift_not_last_layer", coBools);
def->label = L("Not on top");
@@ -1899,7 +1928,7 @@ void PrintConfigDef::init_fff_params()
def->category = L("Support material");
def->tooltip = L("Select this option to not use the z-lift on a top surface.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBools { false };
+ def->set_default_value(new ConfigOptionBools { false });
def = this->add("retract_restart_extra", coFloats);
def->label = L("Extra length on restart");
@@ -1907,7 +1936,7 @@ void PrintConfigDef::init_fff_params()
"this additional amount of filament. This setting is rarely needed.");
def->sidetext = L("mm");
def->mode = comExpert;
- def->default_value = new ConfigOptionFloats { 0. };
+ def->set_default_value(new ConfigOptionFloats { 0. });
def = this->add("retract_restart_extra_toolchange", coFloats);
def->label = L("Extra length on restart");
@@ -1916,7 +1945,7 @@ void PrintConfigDef::init_fff_params()
"this additional amount of filament.");
def->sidetext = L("mm");
def->mode = comExpert;
- def->default_value = new ConfigOptionFloats { 0. };
+ def->set_default_value(new ConfigOptionFloats { 0. });
def = this->add("retract_speed", coFloats);
def->label = L("Retraction Speed");
@@ -1924,7 +1953,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("The speed for retractions (it only applies to the extruder motor).");
def->sidetext = L("mm/s");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloats { 40. };
+ def->set_default_value(new ConfigOptionFloats { 40. });
def = this->add("deretract_speed", coFloats);
def->label = L("Deretraction Speed");
@@ -1933,7 +1962,7 @@ void PrintConfigDef::init_fff_params()
"(it only applies to the extruder motor). If left to zero, the retraction speed is used.");
def->sidetext = L("mm/s");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloats { 0. };
+ def->set_default_value(new ConfigOptionFloats { 0. });
def = this->add("seam_position", coEnum);
def->label = L("Seam position");
@@ -1951,7 +1980,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back(L("Rear"));
def->enum_labels.push_back(L("Hidden"));
def->mode = comSimple;
- def->default_value = new ConfigOptionEnum(spHidden);
+ def->set_default_value(new ConfigOptionEnum(spHidden));
def = this->add("seam_travel", coBool);
def->label = L("Travel move reduced");
@@ -1959,7 +1988,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Add a big cost to travel paths when possible (when going into a loop), so it will prefer a less optimal seam posistion if it's nearer.");
def->cli = "seam-travel!";
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
#if 0
def = this->add("seam_preferred_direction", coFloat);
@@ -1970,7 +1999,8 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Seam preferred direction");
def->min = 0;
def->max = 360;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("seam_preferred_direction_jitter", coFloat);
// def->gui_type = "slider";
@@ -1980,7 +2010,8 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Preferred direction of the seam - jitter");
def->min = 0;
def->max = 360;
- def->default_value = new ConfigOptionFloat(30);
+ def->set_default_value(new ConfigOptionFloat(30);
+ def->set_default_value(new ConfigOptionFloat(30));
#endif
def = this->add("serial_port", coString);
@@ -1988,8 +2019,8 @@ void PrintConfigDef::init_fff_params()
def->label = "";
def->full_label = L("Serial port");
def->tooltip = L("USB/serial port for printer connection.");
- def->width = 200;
- def->default_value = new ConfigOptionString("");
+ def->width = 20;
+ def->set_default_value(new ConfigOptionString(""));
def = this->add("serial_speed", coInt);
def->gui_type = "i_enum_open";
@@ -2001,7 +2032,7 @@ void PrintConfigDef::init_fff_params()
def->enum_values.push_back("115200");
def->enum_values.push_back("250000");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionInt(250000);
+ def->set_default_value(new ConfigOptionInt(250000));
def = this->add("skirt_distance", coFloat);
def->label = L("Distance from object");
@@ -2010,7 +2041,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(6);
+ def->set_default_value(new ConfigOptionFloat(6));
def = this->add("skirt_height", coInt);
def->label = L("Skirt height");
@@ -2018,7 +2049,7 @@ void PrintConfigDef::init_fff_params()
"as a shield against drafts.");
def->sidetext = L("layers");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionInt(1);
+ def->set_default_value(new ConfigOptionInt(1));
def = this->add("skirts", coInt);
def->label = L("Loops (minimum)");
@@ -2028,18 +2059,18 @@ void PrintConfigDef::init_fff_params()
"to disable skirt completely.");
def->min = 0;
def->mode = comSimple;
- def->default_value = new ConfigOptionInt(1);
+ def->set_default_value(new ConfigOptionInt(1));
def = this->add("slowdown_below_layer_time", coInts);
def->label = L("Slow down if layer print time is below");
def->tooltip = L("If layer print time is estimated below this number of seconds, print moves "
"speed will be scaled down to extend duration to this value.");
def->sidetext = L("approximate seconds");
- def->width = 60;
+ def->width = 6;
def->min = 0;
def->max = 1000;
def->mode = comExpert;
- def->default_value = new ConfigOptionInts { 5 };
+ def->set_default_value(new ConfigOptionInts { 5 });
def = this->add("small_perimeter_speed", coFloatOrPercent);
def->label = L("Small");
@@ -2052,7 +2083,7 @@ void PrintConfigDef::init_fff_params()
def->ratio_over = "perimeter_speed";
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloatOrPercent(15, false);
+ def->set_default_value(new ConfigOptionFloatOrPercent(15, false));
def = this->add("curve_smoothing_angle", coFloat);
def->label = L("Min angle");
@@ -2066,7 +2097,7 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->max = 180;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("curve_smoothing_precision", coFloat);
def->label = L("Precision");
@@ -2081,7 +2112,7 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->cli = "curve-smoothing-precision=f";
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("solid_infill_below_area", coFloat);
def->label = L("Solid infill threshold area");
@@ -2090,7 +2121,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm²");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(70);
+ def->set_default_value(new ConfigOptionFloat(70));
def = this->add("solid_infill_extruder", coInt);
def->label = L("Solid infill extruder");
@@ -2098,7 +2129,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("The extruder to use when printing solid infill.");
def->min = 1;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionInt(1);
+ def->set_default_value(new ConfigOptionInt(1));
def = this->add("solid_infill_every_layers", coInt);
def->label = L("Solid infill every");
@@ -2110,7 +2141,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("layers");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionInt(0);
+ def->set_default_value(new ConfigOptionInt(0));
def = this->add("solid_infill_extrusion_width", coFloatOrPercent);
def->label = L("Solid infill");
@@ -2119,9 +2150,9 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Set this to a non-zero value to set a manual extrusion width for infill for solid surfaces. "
"If left zero, default extrusion width will be used if set, otherwise 1.125 x nozzle diameter will be used. "
"If expressed as percentage (for example 110%) it will be computed over nozzle diameter.");
- def->sidetext = L("mm or % (leave 0 for default)");
+ def->sidetext = L("mm or %");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloatOrPercent(0, false);
+ def->set_default_value(new ConfigOptionFloatOrPercent(0, false));
def = this->add("solid_infill_speed", coFloatOrPercent);
def->label = L("Solid");
@@ -2135,7 +2166,7 @@ void PrintConfigDef::init_fff_params()
def->aliases = { "solid_infill_feed_rate" };
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloatOrPercent(20, false);
+ def->set_default_value(new ConfigOptionFloatOrPercent(20, false));
def = this->add("solid_layers", coInt);
def->label = L("Solid layers");
@@ -2151,7 +2182,7 @@ void PrintConfigDef::init_fff_params()
"no infill, no top solid layers and no support material. You can still set "
"any number of bottom solid layers as well as skirt/brim loops. "
"It won't work when printing more than an object.");
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("standby_temperature_delta", coInt);
def->label = L("Temperature variation");
@@ -2161,7 +2192,7 @@ void PrintConfigDef::init_fff_params()
def->min = -max_temp;
def->max = max_temp;
def->mode = comExpert;
- def->default_value = new ConfigOptionInt(-5);
+ def->set_default_value(new ConfigOptionInt(-5));
def = this->add("start_gcode", coString);
def->label = L("Start G-code");
@@ -2174,9 +2205,9 @@ void PrintConfigDef::init_fff_params()
"a \"M109 S[first_layer_temperature]\" command wherever you want.");
def->multiline = true;
def->full_width = true;
- def->height = 120;
+ def->height = 12;
def->mode = comExpert;
- def->default_value = new ConfigOptionString("G28 ; home all axes\nG1 Z5 F5000 ; lift nozzle\n");
+ def->set_default_value(new ConfigOptionString("G28 ; home all axes\nG1 Z5 F5000 ; lift nozzle\n"));
def = this->add("start_filament_gcode", coStrings);
def->label = L("Start G-code");
@@ -2191,9 +2222,9 @@ void PrintConfigDef::init_fff_params()
"in extruder order.");
def->multiline = true;
def->full_width = true;
- def->height = 120;
+ def->height = 12;
def->mode = comExpert;
- def->default_value = new ConfigOptionStrings { "; Filament gcode\n" };
+ def->set_default_value(new ConfigOptionStrings { "; Filament gcode\n" });
def = this->add("model_precision", coFloat);
@@ -2206,25 +2237,25 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(0.0001);
+ def->set_default_value(new ConfigOptionFloat(0.0001));
def = this->add("single_extruder_multi_material", coBool);
def->label = L("Single Extruder Multi Material");
def->tooltip = L("The printer multiplexes filaments into a single hot end.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("single_extruder_multi_material_priming", coBool);
def->label = L("Prime all printing extruders");
def->tooltip = L("If enabled, all printing extruders will be primed at the front edge of the print bed at the start of the print.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBool(true);
+ def->set_default_value(new ConfigOptionBool(true));
def = this->add("support_material", coBool);
def->label = L("Generate support material");
def->category = L("Support material");
def->tooltip = L("Enable support material generation.");
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("support_material_auto", coBool);
def->label = L("Auto generated supports");
@@ -2232,7 +2263,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("If checked, supports will be generated automatically based on the overhang threshold value."\
" If unchecked, supports will be generated inside the \"Support Enforcer\" volumes only.");
def->mode = comSimple;
- def->default_value = new ConfigOptionBool(true);
+ def->set_default_value(new ConfigOptionBool(true));
def = this->add("support_material_xy_spacing", coFloatOrPercent);
def->label = L("XY separation between an object and its support");
@@ -2244,7 +2275,7 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->mode = comAdvanced;
// Default is half the external perimeter width.
- def->default_value = new ConfigOptionFloatOrPercent(50, true);
+ def->set_default_value(new ConfigOptionFloatOrPercent(50, true));
def = this->add("support_material_angle", coFloat);
def->label = L("Pattern angle");
@@ -2255,14 +2286,14 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->max = 359;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("support_material_buildplate_only", coBool);
def->label = L("Support on build plate only");
def->category = L("Support material");
def->tooltip = L("Only create support if it lies on a build plate. Don't create support on a print.");
def->mode = comSimple;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("support_material_contact_distance_type", coEnum);
def->label = L("Type");
@@ -2280,7 +2311,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back("From plane");
def->enum_labels.push_back("None");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionEnum(zdPlane);
+ def->set_default_value(new ConfigOptionEnum(zdPlane));
def = this->add("support_material_contact_distance_top", coFloatOrPercent);
def->label = L("Top");
@@ -2289,27 +2320,27 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("The vertical distance between support material interface and the object"
"(when the object is printed on top of the support). "
"Setting this to 0 will also prevent Slic3r from using bridge flow and speed "
- "for the first object layer. Can be a % of the extruder size used for the interface layers.");
+ "for the first object layer. Can be a % of the extruding width used for the interface layers.");
def->sidetext = L("mm");
def->enum_labels.push_back((boost::format("0.2 (%1%)") % L("detachable")).str());
// def->min = 0;
def->enum_values.push_back("0");
def->enum_values.push_back("0.2");
- def->enum_labels.push_back((boost::format("0 (%1%)") % L("soluble")).str());
- def->enum_labels.push_back((boost::format("0.2 (%1%)") % L("detachable")).str());
+ def->enum_labels.push_back(L("0 (soluble)"));
+ def->enum_labels.push_back(L("0.2 (detachable)"));
def->mode = comAdvanced;
def->aliases = { "support_material_contact_distance" };
- def->default_value = new ConfigOptionFloatOrPercent(100,true);
+ def->set_default_value(new ConfigOptionFloatOrPercent(0.2, false));
def = this->add("support_material_contact_distance_bottom", coFloatOrPercent);
def->label = L("Bottom");
def->full_label = ("Contact distance under the bottom of supports");
def->category = L("Support material");
def->tooltip = L("The vertical distance between object and support material interface"
- "(when the support is printed on top of the object). Can be a % of the extruder size used for the interface layers.");
+ "(when the support is printed on top of the object). Can be a % of the extruding width used for the interface layers.");
def->sidetext = L("mm");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloatOrPercent(100,true);
+ def->set_default_value(new ConfigOptionFloatOrPercent(0.2,false));
def = this->add("support_material_enforce_layers", coInt);
def->label = L("Enforce support for the first");
@@ -2322,7 +2353,7 @@ void PrintConfigDef::init_fff_params()
def->full_label = L("Enforce support for the first n layers");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionInt(0);
+ def->set_default_value(new ConfigOptionInt(0));
def = this->add("support_material_extruder", coInt);
def->label = L("Support material/raft/skirt extruder");
@@ -2331,7 +2362,7 @@ void PrintConfigDef::init_fff_params()
"(1+, 0 to use the current extruder to minimize tool changes).");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionInt(1);
+ def->set_default_value(new ConfigOptionInt(1));
def = this->add("support_material_extrusion_width", coFloatOrPercent);
def->label = L("Support material");
@@ -2340,16 +2371,16 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Set this to a non-zero value to set a manual extrusion width for support material. "
"If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. "
"If expressed as percentage (for example 110%) it will be computed over nozzle diameter.");
- def->sidetext = L("mm or % (leave 0 for default)");
+ def->sidetext = L("mm or %");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloatOrPercent(0, false);
+ def->set_default_value(new ConfigOptionFloatOrPercent(0, false));
def = this->add("support_material_interface_contact_loops", coBool);
def->label = L("Interface loops");
def->category = L("Support material");
def->tooltip = L("Cover the top contact layer of the supports with loops. Disabled by default.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("support_material_interface_extruder", coInt);
def->label = L("Support material/raft interface extruder");
@@ -2358,7 +2389,7 @@ void PrintConfigDef::init_fff_params()
"(1+, 0 to use the current extruder to minimize tool changes). This affects raft too.");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionInt(1);
+ def->set_default_value(new ConfigOptionInt(1));
def = this->add("support_material_interface_layers", coInt);
def->label = L("Interface layers");
@@ -2367,7 +2398,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("layers");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionInt(3);
+ def->set_default_value(new ConfigOptionInt(3));
def = this->add("support_material_interface_spacing", coFloat);
def->label = L("Interface pattern spacing");
@@ -2376,7 +2407,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("support_material_interface_speed", coFloatOrPercent);
def->label = L("Interface");
@@ -2388,7 +2419,7 @@ void PrintConfigDef::init_fff_params()
def->ratio_over = "support_material_speed";
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloatOrPercent(100, true);
+ def->set_default_value(new ConfigOptionFloatOrPercent(100, true));
def = this->add("support_material_pattern", coEnum);
def->label = L("Pattern");
@@ -2403,7 +2434,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back(L("Rectilinear grid"));
def->enum_labels.push_back(L("Honeycomb"));
def->mode = comAdvanced;
- def->default_value = new ConfigOptionEnum(smpRectilinear);
+ def->set_default_value(new ConfigOptionEnum(smpRectilinear));
def = this->add("support_material_interface_pattern", coEnum);
def->label = L("Pattern");
@@ -2424,7 +2455,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back(L("Sawtooth"));
def->enum_labels.push_back(L("Ironing"));
def->mode = comAdvanced;
- def->default_value = new ConfigOptionEnum(ipRectilinear);
+ def->set_default_value(new ConfigOptionEnum(ipRectilinear));
def = this->add("support_material_spacing", coFloat);
def->label = L("Pattern spacing");
@@ -2433,7 +2464,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(2.5);
+ def->set_default_value(new ConfigOptionFloat(2.5));
def = this->add("support_material_speed", coFloat);
def->label = L("Default");
@@ -2443,7 +2474,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("mm/s");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(60);
+ def->set_default_value(new ConfigOptionFloat(60));
def = this->add("support_material_synchronize_layers", coBool);
def->label = L("Synchronize with object layers");
@@ -2451,7 +2482,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Synchronize support layers with the object print layers. This is useful "
"with multi-material printers, where the extruder switch is expensive.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("support_material_threshold", coInt);
def->label = L("Overhang threshold");
@@ -2465,7 +2496,7 @@ void PrintConfigDef::init_fff_params()
def->min = 0;
def->max = 90;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionInt(0);
+ def->set_default_value(new ConfigOptionInt(0));
def = this->add("support_material_with_sheath", coBool);
def->label = L("With sheath around the support");
@@ -2473,7 +2504,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Add a sheath (a single perimeter line) around the base support. This makes "
"the support more reliable, but also more difficult to remove.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(true);
+ def->set_default_value(new ConfigOptionBool(true));
def = this->add("temperature", coInts);
def->label = L("Other layers");
@@ -2484,7 +2515,7 @@ void PrintConfigDef::init_fff_params()
def->sidetext = L("°C");
def->min = 0;
def->max = max_temp;
- def->default_value = new ConfigOptionInts { 200 };
+ def->set_default_value(new ConfigOptionInts { 200 });
def = this->add("thin_walls", coBool);
def->label = L("");
@@ -2494,7 +2525,7 @@ void PrintConfigDef::init_fff_params()
"to collapse them into a single trace). If unchecked, slic3r may try to fit perimeters "
"where it's not possible, creating some overlap leading to over-extrusion.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBool(true);
+ def->set_default_value(new ConfigOptionBool(true));
def = this->add("thin_walls_min_width", coFloatOrPercent);
def->label = L("min width");
@@ -2505,7 +2536,7 @@ void PrintConfigDef::init_fff_params()
" The default behavior of slic3r and slic3rPE is with a 33% value. Put 100% to avoid any sort of over-extrusion.");
def->mode = comExpert;
def->min = 0;
- def->default_value = new ConfigOptionFloatOrPercent(33, true);
+ def->set_default_value(new ConfigOptionFloatOrPercent(33, true));
def = this->add("thin_walls_overlap", coFloatOrPercent);
def->label = L("overlap");
@@ -2514,7 +2545,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Overlap between the thin wall and the perimeters. Can be a % of the external perimeter width (default 50%)");
def->mode = comExpert;
def->min = 0;
- def->default_value = new ConfigOptionFloatOrPercent(50, true);
+ def->set_default_value(new ConfigOptionFloatOrPercent(50, true));
def = this->add("threads", coInt);
def->label = L("Threads");
@@ -2524,7 +2555,7 @@ void PrintConfigDef::init_fff_params()
def->min = 1;
{
int threads = (unsigned int)boost::thread::hardware_concurrency();
- def->default_value = new ConfigOptionInt(threads > 0 ? threads : 2);
+ def->set_default_value(new ConfigOptionInt(threads > 0 ? threads : 2));
def->cli == ConfigOptionDef::nocli;
}
@@ -2535,9 +2566,9 @@ void PrintConfigDef::init_fff_params()
"as [previous_extruder] and [next_extruder].");
def->multiline = true;
def->full_width = true;
- def->height = 50;
+ def->height = 5;
def->mode = comExpert;
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
def = this->add("top_infill_extrusion_width", coFloatOrPercent);
def->label = L("Top solid infill");
@@ -2546,9 +2577,9 @@ void PrintConfigDef::init_fff_params()
"You may want to use thinner extrudates to fill all narrow regions and get a smoother finish. "
"If left zero, default extrusion width will be used if set, otherwise nozzle diameter will be used. "
"If expressed as percentage (for example 110%) it will be computed over nozzle diameter.");
- def->sidetext = L("mm or % (leave 0 for default)");
+ def->sidetext = L("mm or %");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloatOrPercent(0, false);
+ def->set_default_value(new ConfigOptionFloatOrPercent(0, false));
def = this->add("top_solid_infill_speed", coFloatOrPercent);
def->label = L("Top solid");
@@ -2563,16 +2594,17 @@ void PrintConfigDef::init_fff_params()
def->ratio_over = "solid_infill_speed";
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloatOrPercent(15, false);
+ def->set_default_value(new ConfigOptionFloatOrPercent(15, false));
def = this->add("top_solid_layers", coInt);
+ //TRN To be shown in Print Settings "Top solid layers"
def->label = L("Top");
def->full_label = L("Top layers");
def->category = L("Layers and Perimeters");
def->tooltip = L("Number of solid layers to generate on top surfaces.");
def->full_label = L("Top solid layers");
def->min = 0;
- def->default_value = new ConfigOptionInt(3);
+ def->set_default_value(new ConfigOptionInt(3));
def = this->add("travel_speed", coFloat);
def->label = L("Travel");
@@ -2582,21 +2614,21 @@ void PrintConfigDef::init_fff_params()
def->aliases = { "travel_feed_rate" };
def->min = 1;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(130);
+ def->set_default_value(new ConfigOptionFloat(130));
def = this->add("use_firmware_retraction", coBool);
def->label = L("Use firmware retraction");
def->tooltip = L("This experimental setting uses G10 and G11 commands to have the firmware "
"handle the retraction. This is only supported in recent Marlin.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("use_relative_e_distances", coBool);
def->label = L("Use relative E distances");
def->tooltip = L("If your firmware requires relative E values, check this, "
"otherwise leave it unchecked. Most firmwares use absolute values.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("use_volumetric_e", coBool);
def->label = L("Use volumetric E");
@@ -2607,21 +2639,21 @@ void PrintConfigDef::init_fff_params()
"diameter associated to the filament selected in Slic3r. This is only supported "
"in recent Marlin.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("variable_layer_height", coBool);
def->label = L("Enable variable layer height feature");
def->tooltip = L("Some printers or printer setups may have difficulties printing "
"with a variable layer height. Enabled by default.");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(true);
+ def->set_default_value(new ConfigOptionBool(true));
def = this->add("wipe", coBools);
def->label = L("Wipe while retracting");
def->tooltip = L("This flag will move the nozzle while retracting to minimize the possible blob "
"on leaky extruders.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBools { false };
+ def->set_default_value(new ConfigOptionBools { false });
def = this->add("wipe_tower", coBool);
def->label = L("Enable");
@@ -2629,38 +2661,38 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Multi material printers may need to prime or purge extruders on tool changes. "
"Extrude the excess material into the wipe tower.");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("wiping_volumes_extruders", coFloats);
def->label = L("Purging volumes - load/unload volumes");
def->tooltip = L("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. ");
- def->default_value = new ConfigOptionFloats { 70.f, 70.f, 70.f, 70.f, 70.f, 70.f, 70.f, 70.f, 70.f, 70.f };
+ def->set_default_value(new ConfigOptionFloats { 70.f, 70.f, 70.f, 70.f, 70.f, 70.f, 70.f, 70.f, 70.f, 70.f });
def = this->add("wiping_volumes_matrix", coFloats);
def->label = L("Purging volumes - matrix");
def->tooltip = L("This matrix describes volumes (in cubic milimetres) required to purge the"
" new filament on the wipe tower for any given pair of tools. ");
- def->default_value = new ConfigOptionFloats { 0.f, 140.f, 140.f, 140.f, 140.f,
+ def->set_default_value(new ConfigOptionFloats { 0.f, 140.f, 140.f, 140.f, 140.f,
140.f, 0.f, 140.f, 140.f, 140.f,
140.f, 140.f, 0.f, 140.f, 140.f,
140.f, 140.f, 140.f, 0.f, 140.f,
- 140.f, 140.f, 140.f, 140.f, 0.f };
+ 140.f, 140.f, 140.f, 140.f, 0.f });
def = this->add("wipe_advanced", coBool);
def->label = L("Enable advanced wiping volume");
def->tooltip = L("Allow slic3r to compute the purge volume via smart computations. Use the pigment% of each filament and following parameters");
def->mode = comExpert;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("wipe_advanced_nozzle_melted_volume", coFloat);
def->label = L("Nozzle volume");
def->tooltip = L("The volume of melted plastic inside your nozlle. Used by 'advanced wiping'.");
def->sidetext = L("mm3");
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(120);
+ def->set_default_value(new ConfigOptionFloat(120));
def = this->add("filament_wipe_advanced_pigment", coFloats);
def->label = L("Pigment percentage");
@@ -2668,7 +2700,7 @@ void PrintConfigDef::init_fff_params()
def->mode = comExpert;
def->min = 0;
def->max = 1;
- def->default_value = new ConfigOptionFloats{ 0.5 };
+ def->set_default_value(new ConfigOptionFloats{ 0.5 });
def = this->add("wipe_advanced_multiplier", coFloat);
def->label = L("Multiplier");
@@ -2676,7 +2708,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("The volume multiplier used to compute the final volume to extrude by the algorithm.");
def->sidetext = L("mm3");
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(60);
+ def->set_default_value(new ConfigOptionFloat(60));
def = this->add("wipe_advanced_algo", coEnum);
@@ -2694,7 +2726,7 @@ void PrintConfigDef::init_fff_params()
def->enum_labels.push_back(L("Quadratric"));
def->enum_labels.push_back(L("Hyperbola"));
def->mode = comExpert;
- def->default_value = new ConfigOptionEnum(waLinear);
+ def->set_default_value(new ConfigOptionEnum(waLinear));
def = this->add("wipe_tower_x", coFloat);
def->label = L("X");
@@ -2702,7 +2734,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("X coordinate of the left front corner of a wipe tower");
def->sidetext = L("mm");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(180.);
+ def->set_default_value(new ConfigOptionFloat(180.));
def = this->add("wipe_tower_y", coFloat);
def->label = L("Y");
@@ -2710,7 +2742,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Y coordinate of the left front corner of a wipe tower");
def->sidetext = L("mm");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(140.);
+ def->set_default_value(new ConfigOptionFloat(140.));
def = this->add("wipe_tower_width", coFloat);
def->label = L("Width");
@@ -2718,14 +2750,14 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Width of a wipe tower");
def->sidetext = L("mm");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(60.);
+ def->set_default_value(new ConfigOptionFloat(60.));
def = this->add("wipe_tower_rotation_angle", coFloat);
def->label = L("Wipe tower rotation angle");
- def->tooltip = L("Wipe tower rotation angle with respect to x-axis ");
- def->sidetext = L("degrees");
+ def->tooltip = L("Wipe tower rotation angle with respect to x-axis.");
+ def->sidetext = L("°");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(0.);
+ def->set_default_value(new ConfigOptionFloat(0.));
def = this->add("wipe_into_infill", coBool);
def->category = L("Extruders");
@@ -2733,7 +2765,7 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Purging after toolchange will done inside this object's infills. "
"This lowers the amount of waste but may result in longer print time "
" due to additional travel moves.");
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("wipe_into_objects", coBool);
def->category = L("Extruders");
@@ -2741,14 +2773,14 @@ void PrintConfigDef::init_fff_params()
def->tooltip = L("Object will be used to purge the nozzle after a toolchange to save material "
"that would otherwise end up in the wipe tower and decrease print time. "
"Colours of the objects will be mixed as a result.");
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("wipe_tower_bridging", coFloat);
def->label = L("Maximal bridging distance");
def->tooltip = L("Maximal distance between supports on sparse infill sections. ");
def->sidetext = L("mm");
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(10.);
+ def->set_default_value(new ConfigOptionFloat(10.));
def = this->add("xy_size_compensation", coFloat);
def->label = L("All layers");
@@ -2759,7 +2791,7 @@ void PrintConfigDef::init_fff_params()
"for fine-tuning sizes.");
def->sidetext = L("mm");
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("hole_size_compensation", coFloat);
def->label = L("Holes");
@@ -2770,7 +2802,7 @@ void PrintConfigDef::init_fff_params()
" This might be useful for fine-tuning hole sizes.");
def->sidetext = L("mm");
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("z_offset", coFloat);
def->label = L("Z offset");
@@ -2780,7 +2812,7 @@ void PrintConfigDef::init_fff_params()
"from the print bed, set this to -0.3 (or fix your endstop).");
def->sidetext = L("mm");
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
}
void PrintConfigDef::init_sla_params()
@@ -2794,26 +2826,26 @@ void PrintConfigDef::init_sla_params()
def->label = L("Display width");
def->tooltip = L("Width of the display");
def->min = 1;
- def->default_value = new ConfigOptionFloat(120.);
+ def->set_default_value(new ConfigOptionFloat(120.));
def = this->add("display_height", coFloat);
def->label = L("Display height");
def->tooltip = L("Height of the display");
def->min = 1;
- def->default_value = new ConfigOptionFloat(68.);
+ def->set_default_value(new ConfigOptionFloat(68.));
def = this->add("display_pixels_x", coInt);
def->full_label = L("Number of pixels in");
def->label = ("X");
def->tooltip = L("Number of pixels in X");
def->min = 100;
- def->default_value = new ConfigOptionInt(2560);
+ def->set_default_value(new ConfigOptionInt(2560));
def = this->add("display_pixels_y", coInt);
def->label = ("Y");
def->tooltip = L("Number of pixels in Y");
def->min = 100;
- def->default_value = new ConfigOptionInt(1440);
+ def->set_default_value(new ConfigOptionInt(1440));
def = this->add("display_orientation", coEnum);
def->label = L("Display orientation");
@@ -2826,7 +2858,7 @@ void PrintConfigDef::init_sla_params()
def->enum_labels.push_back(L("Landscape"));
def->enum_labels.push_back(L("Portrait"));
def->mode = comExpert;
- def->default_value = new ConfigOptionEnum(sladoPortrait);
+ def->set_default_value(new ConfigOptionEnum(sladoPortrait));
def = this->add("fast_tilt_time", coFloat);
def->label = L("Fast");
@@ -2835,7 +2867,7 @@ void PrintConfigDef::init_sla_params()
def->sidetext = L("s");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(5.);
+ def->set_default_value(new ConfigOptionFloat(5.));
def = this->add("slow_tilt_time", coFloat);
def->label = L("Slow");
@@ -2844,7 +2876,7 @@ void PrintConfigDef::init_sla_params()
def->sidetext = L("s");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(8.);
+ def->set_default_value(new ConfigOptionFloat(8.));
def = this->add("area_fill", coFloat);
def->label = L("Area fill");
@@ -2852,13 +2884,35 @@ void PrintConfigDef::init_sla_params()
def->sidetext = L("%");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(50.);
+ def->set_default_value(new ConfigOptionFloat(50.));
- def = this->add("printer_correction", coFloats);
+ def = this->add("relative_correction", coFloats);
+ def->label = L("Printer scaling correction");
def->full_label = L("Printer scaling correction");
def->tooltip = L("Printer scaling correction");
def->min = 0;
- def->default_value = new ConfigOptionFloats( { 1., 1., 1. } );
+ def->mode = comExpert;
+ def->set_default_value(new ConfigOptionFloats( { 1., 1. } ));
+
+ def = this->add("absolute_correction", coFloat);
+ def->label = L("Printer absolute correction");
+ def->full_label = L("Printer absolute correction");
+ def->tooltip = L("Will inflate or deflate the sliced 2D polygons according "
+ "to the sign of the correction.");
+ def->mode = comExpert;
+ def->set_default_value(new ConfigOptionFloat(0.0));
+
+ def = this->add("gamma_correction", coFloat);
+ def->label = L("Printer gamma correction");
+ def->full_label = L("Printer gamma correction");
+ def->tooltip = L("This will apply a gamma correction to the rasterized 2D "
+ "polygons. A gamma value of zero means thresholding with "
+ "the threshold in the middle. This behaviour eliminates "
+ "antialiasing without losing holes in polygons.");
+ def->min = 0;
+ def->mode = comExpert;
+ def->set_default_value(new ConfigOptionFloat(1.0));
+
// SLA Material settings.
def = this->add("initial_layer_height", coFloat);
@@ -2866,7 +2920,7 @@ void PrintConfigDef::init_sla_params()
def->tooltip = L("Initial layer height");
def->sidetext = L("mm");
def->min = 0;
- def->default_value = new ConfigOptionFloat(0.3);
+ def->set_default_value(new ConfigOptionFloat(0.3));
def = this->add("faded_layers", coInt);
def->label = L("Faded layers");
@@ -2874,63 +2928,58 @@ void PrintConfigDef::init_sla_params()
def->min = 3;
def->max = 20;
def->mode = comExpert;
- def->default_value = new ConfigOptionInt(10);
+ def->set_default_value(new ConfigOptionInt(10));
def = this->add("exposure_time", coFloat);
def->label = L("Exposure time");
def->tooltip = L("Exposure time");
def->sidetext = L("s");
def->min = 0;
- def->default_value = new ConfigOptionFloat(10);
+ def->set_default_value(new ConfigOptionFloat(10));
def = this->add("initial_exposure_time", coFloat);
def->label = L("Initial exposure time");
def->tooltip = L("Initial exposure time");
def->sidetext = L("s");
def->min = 0;
- def->default_value = new ConfigOptionFloat(15);
+ def->set_default_value(new ConfigOptionFloat(15));
- def = this->add("material_correction_printing", coFloats);
- def->full_label = L("Correction for expansion when printing");
- def->tooltip = L("Correction for expansion when printing");
+ def = this->add("material_correction", coFloats);
+ def->full_label = L("Correction for expansion");
+ def->tooltip = L("Correction for expansion");
def->min = 0;
- def->default_value = new ConfigOptionFloats( { 1. , 1., 1. } );
-
- def = this->add("material_correction_curing", coFloats);
- def->full_label = L("Correction for expansion after curing");
- def->tooltip = L("Correction for expansion after curing");
- def->min = 0;
- def->default_value = new ConfigOptionFloats( { 1. , 1., 1. } );
+ def->mode = comExpert;
+ def->set_default_value(new ConfigOptionFloats( { 1. , 1. } ));
def = this->add("material_notes", coString);
def->label = L("SLA print material notes");
def->tooltip = L("You can put your notes regarding the SLA print material here.");
def->multiline = true;
def->full_width = true;
- def->height = 130;
+ def->height = 13;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
def = this->add("default_sla_material_profile", coString);
def->label = L("Default SLA material profile");
def->tooltip = L("Default print profile associated with the current printer profile. "
"On selection of the current printer profile, this print profile will be activated.");
- def->default_value = new ConfigOptionString();
+ def->set_default_value(new ConfigOptionString());
def->cli = ConfigOptionDef::nocli;
def = this->add("sla_material_settings_id", coString);
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
def->cli = ConfigOptionDef::nocli;
def = this->add("default_sla_print_profile", coString);
def->label = L("Default SLA material profile");
def->tooltip = L("Default print profile associated with the current printer profile. "
"On selection of the current printer profile, this print profile will be activated.");
- def->default_value = new ConfigOptionString();
+ def->set_default_value(new ConfigOptionString());
def->cli = ConfigOptionDef::nocli;
def = this->add("sla_print_settings_id", coString);
- def->default_value = new ConfigOptionString("");
+ def->set_default_value(new ConfigOptionString(""));
def->cli = ConfigOptionDef::nocli;
def = this->add("supports_enable", coBool);
@@ -2938,7 +2987,7 @@ void PrintConfigDef::init_sla_params()
def->category = L("Supports");
def->tooltip = L("Generate supports for the models");
def->mode = comSimple;
- def->default_value = new ConfigOptionBool(true);
+ def->set_default_value(new ConfigOptionBool(true));
def = this->add("support_head_front_diameter", coFloat);
def->label = L("Support head front diameter");
@@ -2947,7 +2996,7 @@ void PrintConfigDef::init_sla_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(0.4);
+ def->set_default_value(new ConfigOptionFloat(0.4));
def = this->add("support_head_penetration", coFloat);
def->label = L("Support head penetration");
@@ -2956,7 +3005,7 @@ void PrintConfigDef::init_sla_params()
def->sidetext = L("mm");
def->mode = comAdvanced;
def->min = 0;
- def->default_value = new ConfigOptionFloat(0.2);
+ def->set_default_value(new ConfigOptionFloat(0.2));
def = this->add("support_head_width", coFloat);
def->label = L("Support head width");
@@ -2966,7 +3015,7 @@ void PrintConfigDef::init_sla_params()
def->min = 0;
def->max = 20;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(1.0);
+ def->set_default_value(new ConfigOptionFloat(1.0));
def = this->add("support_pillar_diameter", coFloat);
def->label = L("Support pillar diameter");
@@ -2976,11 +3025,11 @@ void PrintConfigDef::init_sla_params()
def->min = 0;
def->max = 15;
def->mode = comSimple;
- def->default_value = new ConfigOptionFloat(1.0);
+ def->set_default_value(new ConfigOptionFloat(1.0));
def = this->add("support_pillar_connection_mode", coEnum);
def->label = L("Support pillar connection mode");
- def->tooltip = L("Controls the bridge type between two neigboring pillars."
+ def->tooltip = L("Controls the bridge type between two neighboring pillars."
" Can be zig-zag, cross (double zig-zag) or dynamic which"
" will automatically switch between the first two depending"
" on the distance of the two pillars.");
@@ -2992,14 +3041,14 @@ void PrintConfigDef::init_sla_params()
def->enum_labels.push_back(L("Cross"));
def->enum_labels.push_back(L("Dynamic"));
def->mode = comAdvanced;
- def->default_value = new ConfigOptionEnum(slapcmDynamic);
+ def->set_default_value(new ConfigOptionEnum(slapcmDynamic));
def = this->add("support_buildplate_only", coBool);
def->label = L("Support on build plate only");
def->category = L("Supports");
def->tooltip = L("Only create support if it lies on a build plate. Don't create support on a print.");
def->mode = comSimple;
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("support_pillar_widening_factor", coFloat);
def->label = L("Pillar widening factor");
@@ -3010,7 +3059,7 @@ void PrintConfigDef::init_sla_params()
def->min = 0;
def->max = 1;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(0.0);
+ def->set_default_value(new ConfigOptionFloat(0.0));
def = this->add("support_base_diameter", coFloat);
def->label = L("Support base diameter");
@@ -3020,7 +3069,7 @@ void PrintConfigDef::init_sla_params()
def->min = 0;
def->max = 30;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(4.0);
+ def->set_default_value(new ConfigOptionFloat(4.0));
def = this->add("support_base_height", coFloat);
def->label = L("Support base height");
@@ -3029,7 +3078,7 @@ void PrintConfigDef::init_sla_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(1.0);
+ def->set_default_value(new ConfigOptionFloat(1.0));
def = this->add("support_critical_angle", coFloat);
def->label = L("Critical angle");
@@ -3039,7 +3088,7 @@ void PrintConfigDef::init_sla_params()
def->min = 0;
def->max = 90;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(45);
+ def->set_default_value(new ConfigOptionFloat(45));
def = this->add("support_max_bridge_length", coFloat);
def->label = L("Max bridge length");
@@ -3048,7 +3097,7 @@ void PrintConfigDef::init_sla_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(15.0);
+ def->set_default_value(new ConfigOptionFloat(15.0));
def = this->add("support_max_pillar_link_distance", coFloat);
def->label = L("Max pillar linking distance");
@@ -3058,7 +3107,7 @@ void PrintConfigDef::init_sla_params()
def->sidetext = L("mm");
def->min = 0; // 0 means no linking
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(10.0);
+ def->set_default_value(new ConfigOptionFloat(10.0));
def = this->add("support_object_elevation", coFloat);
def->label = L("Object elevation");
@@ -3068,7 +3117,7 @@ void PrintConfigDef::init_sla_params()
def->min = 0;
def->max = 150; // This is the max height of print on SL1
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(5.0);
+ def->set_default_value(new ConfigOptionFloat(5.0));
def = this->add("support_points_density_relative", coInt);
def->label = L("Support points density");
@@ -3076,7 +3125,7 @@ void PrintConfigDef::init_sla_params()
def->tooltip = L("This is a relative measure of support points density.");
def->sidetext = L("%");
def->min = 0;
- def->default_value = new ConfigOptionInt(100);
+ def->set_default_value(new ConfigOptionInt(100));
def = this->add("support_points_minimal_distance", coFloat);
def->label = L("Minimal distance of the support points");
@@ -3084,14 +3133,14 @@ void PrintConfigDef::init_sla_params()
def->tooltip = L("No support points will be placed closer than this threshold.");
def->sidetext = L("mm");
def->min = 0;
- def->default_value = new ConfigOptionFloat(0.f);
+ def->set_default_value(new ConfigOptionFloat(1.f));
def = this->add("pad_enable", coBool);
def->label = L("Use pad");
def->category = L("Pad");
def->tooltip = L("Add a pad underneath the supported model");
def->mode = comSimple;
- def->default_value = new ConfigOptionBool(true);
+ def->set_default_value(new ConfigOptionBool(true));
def = this->add("pad_wall_thickness", coFloat);
def->label = L("Pad wall thickness");
@@ -3101,18 +3150,21 @@ void PrintConfigDef::init_sla_params()
def->min = 0;
def->max = 30;
def->mode = comSimple;
- def->default_value = new ConfigOptionFloat(2.0);
+ def->set_default_value(new ConfigOptionFloat(2.0));
def = this->add("pad_wall_height", coFloat);
def->label = L("Pad wall height");
- def->tooltip = L("Defines the cavity depth. Set to zero to disable the cavity.");
+ def->tooltip = L("Defines the pad cavity depth. Set to zero to disable the cavity. "
+ "Be careful when enabling this feature, as some resins may "
+ "produce an extreme suction effect inside the cavity, "
+ "which makes peeling the print off the vat foil difficult.");
def->category = L("Pad");
// def->tooltip = L("");
def->sidetext = L("mm");
def->min = 0;
def->max = 30;
- def->mode = comSimple;
- def->default_value = new ConfigOptionFloat(5.0);
+ def->mode = comExpert;
+ def->set_default_value(new ConfigOptionFloat(0.));
def = this->add("pad_max_merge_distance", coFloat);
def->label = L("Max merge distance");
@@ -3124,7 +3176,7 @@ void PrintConfigDef::init_sla_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comExpert;
- def->default_value = new ConfigOptionFloat(50.0);
+ def->set_default_value(new ConfigOptionFloat(50.0));
// This is disabled on the UI. I hope it will never be enabled.
def = this->add("pad_edge_radius", coFloat);
@@ -3134,18 +3186,18 @@ void PrintConfigDef::init_sla_params()
def->sidetext = L("mm");
def->min = 0;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(1.0);
+ def->set_default_value(new ConfigOptionFloat(1.0));
def = this->add("pad_wall_slope", coFloat);
def->label = L("Pad wall slope");
def->category = L("Pad");
def->tooltip = L("The slope of the pad wall relative to the bed plane. "
"90 degrees means straight walls.");
- def->sidetext = L("degrees");
+ def->sidetext = L("°");
def->min = 45;
def->max = 90;
def->mode = comAdvanced;
- def->default_value = new ConfigOptionFloat(45.0);
+ def->set_default_value(new ConfigOptionFloat(45.0));
}
void PrintConfigDef::handle_legacy(t_config_option_key &opt_key, std::string &value)
@@ -3333,6 +3385,7 @@ double PrintConfig::min_object_distance(const ConfigBase *config)
return base_dist;
}
+//FIXME localize this function.
std::string FullPrintConfig::validate()
{
// --layer-height
@@ -3539,75 +3592,76 @@ CLIActionsConfigDef::CLIActionsConfigDef()
// Actions:
def = this->add("export_obj", coBool);
- def->label = L("Export SVG");
+ def->label = L("Export OBJ");
def->tooltip = L("Export the model(s) as OBJ.");
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
/*
def = this->add("export_svg", coBool);
def->label = L("Export SVG");
def->tooltip = L("Slice the model and export solid slices as SVG.");
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
*/
def = this->add("export_sla", coBool);
def->label = L("Export SLA");
def->tooltip = L("Slice the model and export SLA printing layers as PNG.");
def->cli = "export-sla|sla";
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("export_3mf", coBool);
def->label = L("Export 3MF");
def->tooltip = L("Export the model(s) as 3MF.");
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("export_amf", coBool);
def->label = L("Export AMF");
def->tooltip = L("Export the model(s) as AMF.");
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("export_stl", coBool);
def->label = L("Export STL");
def->tooltip = L("Export the model(s) as STL.");
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("export_gcode", coBool);
def->label = L("Export G-code");
def->tooltip = L("Slice the model and export toolpaths as G-code.");
def->cli = "export-gcode|gcode|g";
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("slice", coBool);
def->label = L("Slice");
def->tooltip = L("Slice the model as FFF or SLA based on the printer_technology configuration value.");
def->cli = "slice|s";
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("help", coBool);
def->label = L("Help");
def->tooltip = L("Show this help.");
def->cli = "help|h";
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("help_fff", coBool);
def->label = L("Help (FFF options)");
def->tooltip = L("Show the full list of print/G-code configuration options.");
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("help_sla", coBool);
def->label = L("Help (SLA options)");
def->tooltip = L("Show the full list of SLA print configuration options.");
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("info", coBool);
def->label = L("Output Model Info");
def->tooltip = L("Write information about the model to the console.");
- def->default_value = new ConfigOptionBool(false);
+ def->set_default_value(new ConfigOptionBool(false));
def = this->add("save", coString);
def->label = L("Save config file");
def->tooltip = L("Save configuration to the specified file.");
- def->default_value = new ConfigOptionString();
+ def->set_default_value(new ConfigOptionString());
}
CLITransformConfigDef::CLITransformConfigDef()
@@ -3618,34 +3672,37 @@ CLITransformConfigDef::CLITransformConfigDef()
def = this->add("align_xy", coPoint);
def->label = L("Align XY");
def->tooltip = L("Align the model to the given point.");
- def->default_value = new ConfigOptionPoint(Vec2d(100,100));
+ def->set_default_value(new ConfigOptionPoint(Vec2d(100,100)));
def = this->add("cut", coFloat);
def->label = L("Cut");
def->tooltip = L("Cut model at the given Z.");
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
/*
def = this->add("cut_grid", coFloat);
def->label = L("Cut");
def->tooltip = L("Cut model in the XY plane into tiles of the specified max size.");
- def->default_value = new ConfigOptionPoint();
+ def->set_default_value(new ConfigOptionPoint();
+ def->set_default_value(new ConfigOptionPoint());
def = this->add("cut_x", coFloat);
def->label = L("Cut");
def->tooltip = L("Cut model at the given X.");
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("cut_y", coFloat);
def->label = L("Cut");
def->tooltip = L("Cut model at the given Y.");
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
*/
def = this->add("center", coPoint);
def->label = L("Center");
def->tooltip = L("Center the print around the given center.");
- def->default_value = new ConfigOptionPoint(Vec2d(100,100));
+ def->set_default_value(new ConfigOptionPoint(Vec2d(100,100)));
def = this->add("dont_arrange", coBool);
def->label = L("Don't arrange");
@@ -3672,22 +3729,22 @@ CLITransformConfigDef::CLITransformConfigDef()
def = this->add("rotate", coFloat);
def->label = L("Rotate");
def->tooltip = L("Rotation angle around the Z axis in degrees.");
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("rotate_x", coFloat);
def->label = L("Rotate around X");
def->tooltip = L("Rotation angle around the X axis in degrees.");
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("rotate_y", coFloat);
def->label = L("Rotate around Y");
def->tooltip = L("Rotation angle around the Y axis in degrees.");
- def->default_value = new ConfigOptionFloat(0);
+ def->set_default_value(new ConfigOptionFloat(0));
def = this->add("scale", coFloatOrPercent);
def->label = L("Scale");
def->tooltip = L("Scaling factor or percentage.");
- def->default_value = new ConfigOptionFloatOrPercent(1, false);
+ def->set_default_value(new ConfigOptionFloatOrPercent(1, false));
def = this->add("split", coBool);
def->label = L("Split");
@@ -3696,7 +3753,7 @@ CLITransformConfigDef::CLITransformConfigDef()
def = this->add("scale_to_fit", coPoint3);
def->label = L("Scale to Fit");
def->tooltip = L("Scale to fit the given volume.");
- def->default_value = new ConfigOptionPoint3(Vec3d(0,0,0));
+ def->set_default_value(new ConfigOptionPoint3(Vec3d(0,0,0)));
}
CLIMiscConfigDef::CLIMiscConfigDef()
@@ -3730,6 +3787,13 @@ CLIMiscConfigDef::CLIMiscConfigDef()
def->label = L("Logging level");
def->tooltip = L("Messages with severity lower or eqal to the loglevel will be printed out. 0:trace, 1:debug, 2:info, 3:warning, 4:error, 5:fatal");
def->min = 0;
+
+#if defined(_MSC_VER) && defined(SLIC3R_GUI)
+ def = this->add("sw_renderer", coBool);
+ def->label = L("Render with a software renderer");
+ def->tooltip = L("Render with a software renderer. The bundled MESA software renderer is loaded instead of the default OpenGL driver.");
+ def->min = 0;
+#endif /* _MSC_VER */
}
const CLIActionsConfigDef cli_actions_config_def;
diff --git a/src/libslic3r/PrintConfig.hpp b/src/libslic3r/PrintConfig.hpp
index ecc514196..8873e9ffa 100644
--- a/src/libslic3r/PrintConfig.hpp
+++ b/src/libslic3r/PrintConfig.hpp
@@ -387,8 +387,8 @@ protected:
m_keys.emplace_back(kvp.first);
const ConfigOptionDef *def = defs->get(kvp.first);
assert(def != nullptr);
- if (def->default_value != nullptr)
- opt->set(def->default_value);
+ if (def->default_value)
+ opt->set(def->default_value.get());
}
}
@@ -1212,16 +1212,14 @@ public:
ConfigOptionFloat initial_layer_height;
ConfigOptionFloat exposure_time;
ConfigOptionFloat initial_exposure_time;
- ConfigOptionFloats material_correction_printing;
- ConfigOptionFloats material_correction_curing;
+ ConfigOptionFloats material_correction;
protected:
void initialize(StaticCacheBase &cache, const char *base_ptr)
{
OPT_PTR(initial_layer_height);
OPT_PTR(exposure_time);
OPT_PTR(initial_exposure_time);
- OPT_PTR(material_correction_printing);
- OPT_PTR(material_correction_curing);
+ OPT_PTR(material_correction);
}
};
@@ -1237,7 +1235,9 @@ public:
ConfigOptionInt display_pixels_x;
ConfigOptionInt display_pixels_y;
ConfigOptionEnum display_orientation;
- ConfigOptionFloats printer_correction;
+ ConfigOptionFloats relative_correction;
+ ConfigOptionFloat absolute_correction;
+ ConfigOptionFloat gamma_correction;
ConfigOptionFloat fast_tilt_time;
ConfigOptionFloat slow_tilt_time;
ConfigOptionFloat area_fill;
@@ -1252,7 +1252,9 @@ protected:
OPT_PTR(display_pixels_x);
OPT_PTR(display_pixels_y);
OPT_PTR(display_orientation);
- OPT_PTR(printer_correction);
+ OPT_PTR(relative_correction);
+ OPT_PTR(absolute_correction);
+ OPT_PTR(gamma_correction);
OPT_PTR(fast_tilt_time);
OPT_PTR(slow_tilt_time);
OPT_PTR(area_fill);
diff --git a/src/libslic3r/PrintExport.hpp b/src/libslic3r/PrintExport.hpp
index df9446cf5..f6537ed32 100644
--- a/src/libslic3r/PrintExport.hpp
+++ b/src/libslic3r/PrintExport.hpp
@@ -7,6 +7,7 @@
#include
#include
+#include
#include "Rasterizer/Rasterizer.hpp"
//#include
@@ -42,8 +43,9 @@ template
class FilePrinter {
public:
- // Draw an ExPolygon which is a polygon inside a slice on the specified layer.
+ // Draw a polygon which is a polygon inside a slice on the specified layer.
void draw_polygon(const ExPolygon& p, unsigned lyr);
+ void draw_polygon(const ClipperLib::Polygon& p, unsigned lyr);
// Tell the printer how many layers should it consider.
void layers(unsigned layernum);
@@ -71,7 +73,8 @@ public:
void finish_layer();
// Save all the layers into the file (or dir) specified in the path argument
- void save(const std::string& path);
+ // An optional project name can be added to be used for the layer file names
+ void save(const std::string& path, const std::string& projectname = "");
// Save only the selected layer to the file specified in path argument.
void save_layer(unsigned lyr, const std::string& path);
@@ -80,28 +83,35 @@ public:
// Provokes static_assert in the right way.
template struct VeryFalse { static const bool value = false; };
-// This has to be explicitly implemented in the gui layer or a default zlib
-// based implementation is needed. I don't have time for that and I'm delegating
-// the implementation to the gui layer where the gui toolkit can cover this.
+// This can be explicitly implemented in the gui layer or the default Zipper
+// API in libslic3r with minz.
template class LayerWriter {
public:
- LayerWriter(const std::string& /*zipfile_path*/) {
+ LayerWriter(const std::string& /*zipfile_path*/)
+ {
static_assert(VeryFalse::value,
"No layer writer implementation provided!");
}
+ // Should create a new file within the zip with the given filename. It
+ // should also finish any previous entry.
void next_entry(const std::string& /*fname*/) {}
- std::string get_name() { return ""; }
+ // Should create a new file within the archive and write the provided data.
+ void binary_entry(const std::string& /*fname*/,
+ const std::uint8_t* buf, size_t len);
+ // Test whether the object can still be used for writing.
bool is_ok() { return false; }
- template LayerWriter& operator<<(const T& /*arg*/) {
+ // Write some data (text) into the current file (entry) within the archive.
+ template LayerWriter& operator<<(T&& /*arg*/) {
return *this;
}
- void close() {}
+ // Flush the current entry into the archive.
+ void finalize() {}
};
// Implementation for PNG raster output
@@ -110,14 +120,14 @@ public:
template<> class FilePrinter
{
struct Layer {
- Raster first;
- std::stringstream second;
+ Raster raster;
+ RawBytes rawbytes;
Layer() {}
Layer(const Layer&) = delete;
Layer(Layer&& m):
- first(std::move(m.first))/*, second(std::move(m.second))*/ {}
+ raster(std::move(m.raster)) {}
};
// We will save the compressed PNG data into stringstreams which can be done
@@ -128,6 +138,7 @@ template<> class FilePrinter
double m_exp_time_s = .0, m_exp_time_first_s = .0;
double m_layer_height = .0;
Raster::Origin m_o = Raster::Origin::TOP_LEFT;
+ double m_gamma;
double m_used_material = 0.0;
int m_cnt_fade_layers = 0;
@@ -135,14 +146,11 @@ template<> class FilePrinter
int m_cnt_fast_layers = 0;
std::string createIniContent(const std::string& projectname) {
-// double layer_height = m_layer_height;
-
using std::string;
using std::to_string;
auto expt_str = to_string(m_exp_time_s);
auto expt_first_str = to_string(m_exp_time_first_s);
-// auto stepnum_str = to_string(static_cast(800*layer_height));
auto layerh_str = to_string(m_layer_height);
const std::string cnt_fade_layers = to_string(m_cnt_fade_layers);
@@ -187,7 +195,8 @@ public:
unsigned width_px, unsigned height_px,
double layer_height,
double exp_time, double exp_time_first,
- RasterOrientation ro = RO_PORTRAIT):
+ RasterOrientation ro = RO_PORTRAIT,
+ double gamma = 1.0):
m_res(width_px, height_px),
m_pxdim(width_mm/width_px, height_mm/height_px),
m_exp_time_s(exp_time),
@@ -196,7 +205,8 @@ public:
// Here is the trick with the orientation.
m_o(ro == RO_LANDSCAPE? Raster::Origin::BOTTOM_LEFT :
- Raster::Origin::TOP_LEFT )
+ Raster::Origin::TOP_LEFT ),
+ m_gamma(gamma)
{
}
@@ -211,41 +221,48 @@ public:
inline void draw_polygon(const ExPolygon& p, unsigned lyr) {
assert(lyr < m_layers_rst.size());
- m_layers_rst[lyr].first.draw(p);
+ m_layers_rst[lyr].raster.draw(p);
+ }
+
+ inline void draw_polygon(const ClipperLib::Polygon& p, unsigned lyr) {
+ assert(lyr < m_layers_rst.size());
+ m_layers_rst[lyr].raster.draw(p);
}
inline void begin_layer(unsigned lyr) {
if(m_layers_rst.size() <= lyr) m_layers_rst.resize(lyr+1);
- m_layers_rst[lyr].first.reset(m_res, m_pxdim, m_o);
+ m_layers_rst[lyr].raster.reset(m_res, m_pxdim, m_o, m_gamma);
}
inline void begin_layer() {
m_layers_rst.emplace_back();
- m_layers_rst.front().first.reset(m_res, m_pxdim, m_o);
+ m_layers_rst.front().raster.reset(m_res, m_pxdim, m_o, m_gamma);
}
inline void finish_layer(unsigned lyr_id) {
assert(lyr_id < m_layers_rst.size());
- m_layers_rst[lyr_id].first.save(m_layers_rst[lyr_id].second,
- Raster::Compression::PNG);
- m_layers_rst[lyr_id].first.reset();
+ m_layers_rst[lyr_id].rawbytes =
+ m_layers_rst[lyr_id].raster.save(Raster::Compression::PNG);
+ m_layers_rst[lyr_id].raster.reset();
}
inline void finish_layer() {
if(!m_layers_rst.empty()) {
- m_layers_rst.back().first.save(m_layers_rst.back().second,
- Raster::Compression::PNG);
- m_layers_rst.back().first.reset();
+ m_layers_rst.back().rawbytes =
+ m_layers_rst.back().raster.save(Raster::Compression::PNG);
+ m_layers_rst.back().raster.reset();
}
}
template
- inline void save(const std::string& path) {
+ inline void save(const std::string& fpath, const std::string& prjname = "")
+ {
try {
- LayerWriter writer(path);
+ LayerWriter writer(fpath);
if(!writer.is_ok()) return;
- std::string project = writer.get_name();
+ std::string project = prjname.empty()?
+ boost::filesystem::path(fpath).stem().string() : prjname;
writer.next_entry("config.ini");
if(!writer.is_ok()) return;
@@ -254,20 +271,19 @@ public:
for(unsigned i = 0; i < m_layers_rst.size() && writer.is_ok(); i++)
{
- if(m_layers_rst[i].second.rdbuf()->in_avail() > 0) {
+ if(m_layers_rst[i].rawbytes.size() > 0) {
char lyrnum[6];
std::sprintf(lyrnum, "%.5d", i);
auto zfilename = project + lyrnum + ".png";
- writer.next_entry(zfilename);
-
if(!writer.is_ok()) break;
- writer << m_layers_rst[i].second.str();
- // writer << m_layers_rst[i].second.rdbuf();
- // we can keep the date for later calls of this method
- //m_layers_rst[i].second.str("");
+ writer.binary_entry(zfilename,
+ m_layers_rst[i].rawbytes.data(),
+ m_layers_rst[i].rawbytes.size());
}
}
+
+ writer.finalize();
} catch(std::exception& e) {
BOOST_LOG_TRIVIAL(error) << e.what();
// Rethrow the exception
@@ -285,13 +301,13 @@ public:
std::fstream out(loc, std::fstream::out | std::fstream::binary);
if(out.good()) {
- m_layers_rst[i].first.save(out, Raster::Compression::PNG);
+ m_layers_rst[i].raster.save(out, Raster::Compression::PNG);
} else {
BOOST_LOG_TRIVIAL(error) << "Can't create file for layer";
}
out.close();
- m_layers_rst[i].first.reset();
+ m_layers_rst[i].raster.reset();
}
void set_statistics(const std::vector statistics)
diff --git a/src/libslic3r/PrintObject.cpp b/src/libslic3r/PrintObject.cpp
index 7480e4ee4..964e9ced0 100644
--- a/src/libslic3r/PrintObject.cpp
+++ b/src/libslic3r/PrintObject.cpp
@@ -2,6 +2,7 @@
#include "BoundingBox.hpp"
#include "ClipperUtils.hpp"
#include "Geometry.hpp"
+#include "I18N.hpp"
#include "SupportMaterial.hpp"
#include "Surface.hpp"
#include "Slicing.hpp"
@@ -17,6 +18,10 @@
#include
+//! macro used to mark string used at localization,
+//! return same string
+#define L(s) Slic3r::I18N::translate(s)
+
#ifdef SLIC3R_DEBUG_SLICE_PROCESSING
#define SLIC3R_DEBUG
#endif
@@ -102,7 +107,7 @@ void PrintObject::slice()
{
if (! this->set_started(posSlice))
return;
- m_print->set_status(10, "Processing triangulated mesh");
+ m_print->set_status(10, L("Processing triangulated mesh"));
std::vector layer_height_profile;
this->update_layer_height_profile(*this->model_object(), m_slicing_params, layer_height_profile);
m_print->throw_if_canceled();
@@ -133,7 +138,7 @@ void PrintObject::make_perimeters()
if (! this->set_started(posPerimeters))
return;
- m_print->set_status(20, "Generating perimeters");
+ m_print->set_status(20, L("Generating perimeters"));
BOOST_LOG_TRIVIAL(info) << "Generating perimeters..." << log_memory_info();
// merge slices if they were split into types
@@ -243,7 +248,7 @@ void PrintObject::prepare_infill()
if (! this->set_started(posPrepareInfill))
return;
- m_print->set_status(30, "Preparing infill");
+ m_print->set_status(30, L("Preparing infill"));
// This will assign a type (top/bottom/internal) to $layerm->slices.
// Then the classifcation of $layerm->slices is transfered onto
@@ -405,7 +410,7 @@ void PrintObject::generate_support_material()
if (this->set_started(posSupportMaterial)) {
this->clear_support_layers();
if ((m_config.support_material || m_config.raft_layers > 0) && m_layers.size() > 1) {
- m_print->set_status(85, "Generating support material");
+ m_print->set_status(85, L("Generating support material"));
this->_generate_support_material();
m_print->throw_if_canceled();
} else {
@@ -1694,7 +1699,7 @@ void PrintObject::update_slicing_parameters()
this->print()->config(), m_config, unscale(this->size(2)), this->object_extruders());
}
-SlicingParameters PrintObject::slicing_parameters(const DynamicPrintConfig &full_config, const ModelObject &model_object)
+SlicingParameters PrintObject::slicing_parameters(const DynamicPrintConfig &full_config, const ModelObject &model_object, float object_max_z)
{
PrintConfig print_config;
PrintObjectConfig object_config;
@@ -1714,7 +1719,9 @@ SlicingParameters PrintObject::slicing_parameters(const DynamicPrintConfig &full
object_extruders);
sort_remove_duplicates(object_extruders);
- return SlicingParameters::create_from_config(print_config, object_config, model_object.bounding_box().max.z(), object_extruders);
+ if (object_max_z <= 0.f)
+ object_max_z = model_object.raw_bounding_box().size().z();
+ return SlicingParameters::create_from_config(print_config, object_config, object_max_z, object_extruders);
}
// returns 0-based indices of extruders used to print the object (without brim, support and other helper extrusions)
@@ -2253,21 +2260,28 @@ std::vector PrintObject::_slice_volumes(const std::vector &z,
if (! volumes.empty()) {
// Compose mesh.
//FIXME better to perform slicing over each volume separately and then to use a Boolean operation to merge them.
- TriangleMesh mesh;
- for (const ModelVolume *v : volumes)
- {
- TriangleMesh vol_mesh(v->mesh);
- vol_mesh.transform(v->get_matrix());
+ TriangleMesh mesh(volumes.front()->mesh);
+ mesh.transform(volumes.front()->get_matrix(), true);
+ assert(mesh.repaired);
+ if (volumes.size() == 1 && mesh.repaired) {
+ //FIXME The admesh repair function may break the face connectivity, rather refresh it here as the slicing code relies on it.
+ stl_check_facets_exact(&mesh.stl);
+ }
+ for (size_t idx_volume = 1; idx_volume < volumes.size(); ++ idx_volume) {
+ const ModelVolume &model_volume = *volumes[idx_volume];
+ TriangleMesh vol_mesh(model_volume.mesh);
+ vol_mesh.transform(model_volume.get_matrix(), true);
mesh.merge(vol_mesh);
}
if (mesh.stl.stats.number_of_facets > 0) {
- mesh.transform(m_trafo);
+ mesh.transform(m_trafo, true);
// apply XY shift
mesh.translate(- unscale(m_copies_shift(0)), - unscale(m_copies_shift(1)), 0);
// perform actual slicing
TriangleMeshSlicer mslicer(float(m_config.slice_closing_radius.value), float(m_config.model_precision.value));
const Print *print = this->print();
auto callback = TriangleMeshSlicer::throw_on_cancel_callback_type([print](){print->throw_if_canceled();});
+ mesh.require_shared_vertices(); // TriangleMeshSlicer needs this
mslicer.init(&mesh, callback);
mslicer.slice(z, &layers, callback);
m_print->throw_if_canceled();
@@ -2282,15 +2296,20 @@ std::vector PrintObject::_slice_volume(const std::vector &z,
// Compose mesh.
//FIXME better to perform slicing over each volume separately and then to use a Boolean operation to merge them.
TriangleMesh mesh(volume.mesh);
- mesh.transform(volume.get_matrix());
+ mesh.transform(volume.get_matrix(), true);
+ if (mesh.repaired) {
+ //FIXME The admesh repair function may break the face connectivity, rather refresh it here as the slicing code relies on it.
+ stl_check_facets_exact(&mesh.stl);
+ }
if (mesh.stl.stats.number_of_facets > 0) {
- mesh.transform(m_trafo);
+ mesh.transform(m_trafo, true);
// apply XY shift
mesh.translate(- unscale(m_copies_shift(0)), - unscale(m_copies_shift(1)), 0);
// perform actual slicing
TriangleMeshSlicer mslicer(float(m_config.slice_closing_radius.value), float(m_config.model_precision.value));
const Print *print = this->print();
auto callback = TriangleMeshSlicer::throw_on_cancel_callback_type([print](){print->throw_if_canceled();});
+ mesh.require_shared_vertices(); // TriangleMeshSlicer needs this
mslicer.init(&mesh, callback);
mslicer.slice(z, &layers, callback);
m_print->throw_if_canceled();
@@ -2704,7 +2723,7 @@ void PrintObject::discover_horizontal_shells()
// when spacing is added in Fill.pm
{
//FIXME Vojtech: Disable this and you will be sorry.
- // https://github.com/prusa3d/Slic3r/issues/26 bottom
+ // https://github.com/prusa3d/PrusaSlicer/issues/26 bottom
float margin = 3.f * layerm->flow(frSolidInfill).scaled_width(); // require at least this size
// we use a higher miterLimit here to handle areas with acute angles
// in those cases, the default miterLimit would cut the corner and we'd
diff --git a/src/libslic3r/Rasterizer/Rasterizer.cpp b/src/libslic3r/Rasterizer/Rasterizer.cpp
index 5961d9b78..6384a241f 100644
--- a/src/libslic3r/Rasterizer/Rasterizer.cpp
+++ b/src/libslic3r/Rasterizer/Rasterizer.cpp
@@ -1,7 +1,6 @@
#include "Rasterizer.hpp"
#include
-
-#include
+#include
// For rasterizing
#include
@@ -15,11 +14,17 @@
#include
#include
-// For png compression
-#include
+// Experimental minz image write:
+#include
namespace Slic3r {
+const Polygon& contour(const ExPolygon& p) { return p.contour; }
+const ClipperLib::Path& contour(const ClipperLib::Polygon& p) { return p.Contour; }
+
+const Polygons& holes(const ExPolygon& p) { return p.holes; }
+const ClipperLib::Paths& holes(const ClipperLib::Polygon& p) { return p.Holes; }
+
class Raster::Impl {
public:
using TPixelRenderer = agg::pixfmt_gray8; // agg::pixfmt_rgb24;
@@ -38,14 +43,17 @@ public:
private:
Raster::Resolution m_resolution;
- Raster::PixelDim m_pxdim;
+// Raster::PixelDim m_pxdim;
+ Raster::PixelDim m_pxdim_scaled; // used for scaled coordinate polygons
TBuffer m_buf;
TRawBuffer m_rbuf;
TPixelRenderer m_pixfmt;
TRawRenderer m_raw_renderer;
TRendererAA m_renderer;
+
+ std::function m_gammafn;
Origin m_o;
-
+
inline void flipy(agg::path_storage& path) const {
path.flip_y(0, m_resolution.height_px);
}
@@ -53,8 +61,10 @@ private:
public:
inline Impl(const Raster::Resolution& res, const Raster::PixelDim &pd,
- Origin o):
- m_resolution(res), m_pxdim(pd),
+ Origin o, double gamma = 1.0):
+ m_resolution(res),
+// m_pxdim(pd),
+ m_pxdim_scaled(SCALING_FACTOR / pd.w_mm, SCALING_FACTOR / pd.h_mm),
m_buf(res.pixels()),
m_rbuf(reinterpret_cast(m_buf.data()),
res.width_px, res.height_px,
@@ -65,24 +75,26 @@ public:
m_o(o)
{
m_renderer.color(ColorWhite);
-
- // If we would like to play around with gamma
- // ras.gamma(agg::gamma_power(1.0));
-
+
+ if(gamma > 0) m_gammafn = agg::gamma_power(gamma);
+ else m_gammafn = agg::gamma_threshold(0.5);
+
clear();
}
- void draw(const ExPolygon &poly) {
+ template void draw(const P &poly) {
agg::rasterizer_scanline_aa<> ras;
agg::scanline_p8 scanlines;
+
+ ras.gamma(m_gammafn);
- auto&& path = to_path(poly.contour);
+ auto&& path = to_path(contour(poly));
if(m_o == Origin::TOP_LEFT) flipy(path);
ras.add_path(path);
- for(auto h : poly.holes) {
+ for(auto& h : holes(poly)) {
auto&& holepath = to_path(h);
if(m_o == Origin::TOP_LEFT) flipy(holepath);
ras.add_path(holepath);
@@ -102,22 +114,38 @@ public:
inline Origin origin() const /*noexcept*/ { return m_o; }
private:
- double getPx(const Point& p) {
- return p(0) * SCALING_FACTOR/m_pxdim.w_mm;
+ inline double getPx(const Point& p) {
+ return p(0) * m_pxdim_scaled.w_mm;
}
- double getPy(const Point& p) {
- return p(1) * SCALING_FACTOR/m_pxdim.h_mm;
+ inline double getPy(const Point& p) {
+ return p(1) * m_pxdim_scaled.h_mm;
}
- agg::path_storage to_path(const Polygon& poly) {
+ inline agg::path_storage to_path(const Polygon& poly)
+ {
+ return to_path(poly.points);
+ }
+
+ inline double getPx(const ClipperLib::IntPoint& p) {
+ return p.X * m_pxdim_scaled.w_mm;
+ }
+
+ inline double getPy(const ClipperLib::IntPoint& p) {
+ return p.Y * m_pxdim_scaled.h_mm;
+ }
+
+ template agg::path_storage to_path(const PointVec& poly)
+ {
agg::path_storage path;
- auto it = poly.points.begin();
+
+ auto it = poly.begin();
path.move_to(getPx(*it), getPy(*it));
- while(++it != poly.points.end())
+
+ while(++it != poly.end())
path.line_to(getPx(*it), getPy(*it));
- path.line_to(getPx(poly.points.front()), getPy(poly.points.front()));
+ path.line_to(getPx(poly.front()), getPy(poly.front()));
return path;
}
@@ -126,8 +154,8 @@ private:
const Raster::Impl::TPixel Raster::Impl::ColorWhite = Raster::Impl::TPixel(255);
const Raster::Impl::TPixel Raster::Impl::ColorBlack = Raster::Impl::TPixel(0);
-Raster::Raster(const Resolution &r, const PixelDim &pd, Origin o):
- m_impl(new Impl(r, pd, o)) {}
+Raster::Raster(const Resolution &r, const PixelDim &pd, Origin o, double g):
+ m_impl(new Impl(r, pd, o, g)) {}
Raster::Raster() {}
@@ -136,19 +164,20 @@ Raster::~Raster() {}
Raster::Raster(Raster &&m):
m_impl(std::move(m.m_impl)) {}
-void Raster::reset(const Raster::Resolution &r, const Raster::PixelDim &pd)
+void Raster::reset(const Raster::Resolution &r, const Raster::PixelDim &pd,
+ double g)
{
// Free up the unnecessary memory and make sure it stays clear after
// an exception
auto o = m_impl? m_impl->origin() : Origin::TOP_LEFT;
- reset(r, pd, o);
+ reset(r, pd, o, g);
}
void Raster::reset(const Raster::Resolution &r, const Raster::PixelDim &pd,
- Raster::Origin o)
+ Raster::Origin o, double gamma)
{
m_impl.reset();
- m_impl.reset(new Impl(r, pd, o));
+ m_impl.reset(new Impl(r, pd, o, gamma));
}
void Raster::reset()
@@ -169,38 +198,36 @@ void Raster::clear()
m_impl->clear();
}
-void Raster::draw(const ExPolygon &poly)
+void Raster::draw(const ExPolygon &expoly)
+{
+ m_impl->draw(expoly);
+}
+
+void Raster::draw(const ClipperLib::Polygon &poly)
{
- assert(m_impl);
m_impl->draw(poly);
}
void Raster::save(std::ostream& stream, Compression comp)
{
assert(m_impl);
+ if(!stream.good()) return;
+
switch(comp) {
case Compression::PNG: {
-
- png::writer wr(stream);
-
- wr.set_bit_depth(8);
- wr.set_color_type(png::color_type_gray);
- wr.set_width(resolution().width_px);
- wr.set_height(resolution().height_px);
- wr.set_compression_type(png::compression_type_default);
-
- wr.write_info();
-
auto& b = m_impl->buffer();
- auto ptr = reinterpret_cast( b.data() );
- unsigned stride =
- sizeof(Impl::TBuffer::value_type) * resolution().width_px;
+ size_t out_len = 0;
+ void * rawdata = tdefl_write_image_to_png_file_in_memory(
+ b.data(),
+ int(resolution().width_px),
+ int(resolution().height_px), 1, &out_len);
- for(unsigned r = 0; r < resolution().height_px; r++, ptr+=stride) {
- wr.write_row(ptr);
- }
+ if(rawdata == nullptr) break;
- wr.write_end_info();
+ stream.write(static_cast(rawdata),
+ std::streamsize(out_len));
+
+ MZ_FREE(rawdata);
break;
}
@@ -217,4 +244,46 @@ void Raster::save(std::ostream& stream, Compression comp)
}
}
+RawBytes Raster::save(Raster::Compression comp)
+{
+ assert(m_impl);
+
+ std::vector data; size_t s = 0;
+
+ switch(comp) {
+ case Compression::PNG: {
+ void *rawdata = tdefl_write_image_to_png_file_in_memory(
+ m_impl->buffer().data(),
+ int(resolution().width_px),
+ int(resolution().height_px), 1, &s);
+
+ if(rawdata == nullptr) break;
+ auto ptr = static_cast(rawdata);
+
+ data.reserve(s); std::copy(ptr, ptr + s, std::back_inserter(data));
+
+ MZ_FREE(rawdata);
+ break;
+ }
+ case Compression::RAW: {
+ auto header = std::string("P5 ") +
+ std::to_string(m_impl->resolution().width_px) + " " +
+ std::to_string(m_impl->resolution().height_px) + " " + "255 ";
+
+ auto sz = m_impl->buffer().size()*sizeof(Impl::TBuffer::value_type);
+ s = sz + header.size();
+
+ data.reserve(s);
+
+ auto buff = reinterpret_cast(m_impl->buffer().data());
+ std::copy(header.begin(), header.end(), std::back_inserter(data));
+ std::copy(buff, buff+sz, std::back_inserter(data));
+
+ break;
+ }
+ }
+
+ return {std::move(data)};
+}
+
}
diff --git a/src/libslic3r/Rasterizer/Rasterizer.hpp b/src/libslic3r/Rasterizer/Rasterizer.hpp
index 06d5b88c6..3fffe1a36 100644
--- a/src/libslic3r/Rasterizer/Rasterizer.hpp
+++ b/src/libslic3r/Rasterizer/Rasterizer.hpp
@@ -3,11 +3,43 @@
#include
#include
+#include
+#include
+
+namespace ClipperLib { struct Polygon; }
namespace Slic3r {
class ExPolygon;
+// Raw byte buffer paired with its size. Suitable for compressed PNG data.
+class RawBytes {
+
+ std::vector m_buffer;
+public:
+
+ RawBytes() = default;
+ RawBytes(std::vector&& data): m_buffer(std::move(data)) {}
+
+ size_t size() const { return m_buffer.size(); }
+ const uint8_t * data() { return m_buffer.data(); }
+
+ // /////////////////////////////////////////////////////////////////////////
+ // FIXME: the following is needed for MSVC2013 compatibility
+ // /////////////////////////////////////////////////////////////////////////
+
+ RawBytes(const RawBytes&) = delete;
+ RawBytes(RawBytes&& mv) : m_buffer(std::move(mv.m_buffer)) {}
+
+ RawBytes& operator=(const RawBytes&) = delete;
+ RawBytes& operator=(RawBytes&& mv) {
+ m_buffer = std::move(mv.m_buffer);
+ return *this;
+ }
+
+ // /////////////////////////////////////////////////////////////////////////
+};
+
/**
* @brief Raster captures an anti-aliased monochrome canvas where vectorial
* polygons can be rasterized. Fill color is always white and the background is
@@ -58,8 +90,9 @@ public:
};
/// Constructor taking the resolution and the pixel dimension.
- explicit Raster(const Resolution& r, const PixelDim& pd,
- Origin o = Origin::BOTTOM_LEFT );
+ Raster(const Resolution& r, const PixelDim& pd,
+ Origin o = Origin::BOTTOM_LEFT, double gamma = 1.0);
+
Raster();
Raster(const Raster& cpy) = delete;
Raster& operator=(const Raster& cpy) = delete;
@@ -67,8 +100,8 @@ public:
~Raster();
/// Reallocated everything for the given resolution and pixel dimension.
- void reset(const Resolution& r, const PixelDim& pd);
- void reset(const Resolution& r, const PixelDim& pd, Origin o);
+ void reset(const Resolution& r, const PixelDim& pd, double gamma = 1.0);
+ void reset(const Resolution& r, const PixelDim& pd, Origin o, double gamma);
/**
* Release the allocated resources. Drawing in this state ends in
@@ -84,9 +117,12 @@ public:
/// Draw a polygon with holes.
void draw(const ExPolygon& poly);
+ void draw(const ClipperLib::Polygon& poly);
/// Save the raster on the specified stream.
void save(std::ostream& stream, Compression comp = Compression::RAW);
+
+ RawBytes save(Compression comp = Compression::RAW);
};
}
diff --git a/src/libslic3r/SLA/SLAAutoSupports.cpp b/src/libslic3r/SLA/SLAAutoSupports.cpp
index 2a605a27b..97c6d61f5 100644
--- a/src/libslic3r/SLA/SLAAutoSupports.cpp
+++ b/src/libslic3r/SLA/SLAAutoSupports.cpp
@@ -49,8 +49,8 @@ float SLAAutoSupports::distance_limit(float angle) const
}*/
SLAAutoSupports::SLAAutoSupports(const TriangleMesh& mesh, const sla::EigenMesh3D& emesh, const std::vector& slices, const std::vector& heights,
- const Config& config, std::function