Merge branch 'OrcaSlicer:main' into A2

This commit is contained in:
HYzd766
2026-03-10 14:51:34 +08:00
committed by GitHub
175 changed files with 21533 additions and 14820 deletions

View File

@@ -192,10 +192,15 @@ jobs:
path: .flatpak-builder
key: flatpak-builder-${{ matrix.variant.arch }}-${{ github.sha }}
restore-keys: flatpak-builder-${{ matrix.variant.arch }}-
- name: Disable debug info for faster CI builds
run: |
sed -i '0,/^finish-args:/s//build-options:\n no-debuginfo: true\n strip: true\nfinish-args:/' \
scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml
shell: bash
- uses: flatpak/flatpak-github-actions/flatpak-builder@master
with:
bundle: OrcaSlicer-Linux-flatpak_${{ env.ver }}_${{ matrix.variant.arch }}.flatpak
manifest-path: scripts/flatpak/io.github.softfever.OrcaSlicer.yml
manifest-path: scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml
cache: false
arch: ${{ matrix.variant.arch }}
upload-artifact: false

1
.gitignore vendored
View File

@@ -36,6 +36,7 @@ src/OrcaSlicer-doc/
/deps/DL_CACHE/
/deps/DL_CACHE
**/.flatpak-builder/
*.no-debug.yml
resources/profiles/user/default
*.code-workspace
deps_src/build/

View File

@@ -42,7 +42,7 @@ cmake --build build/arm64 --config RelWithDebInfo --target all --
### Building on Linux
**Always use this command to build the project when testing build issues on Linux.**
```bash
cmake --build build/arm64 --config RelWithDebInfo --target all --
cmake --build build --config RelWithDebInfo --target all --
```

View File

@@ -4,7 +4,7 @@
<img alt="OrcaSlicer logo" src="resources/images/OrcaSlicer.png" width="15%" height="15%">
</picture>
<a href="https://trendshift.io/repositories/952" target="_blank"><img src="https://trendshift.io/api/badge/repositories/952" alt="SoftFever%2FOrcaSlicer | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
<a href="https://trendshift.io/repositories/15552" target="_blank"><img src="https://trendshift.io/api/badge/repositories/15552" alt="OrcaSlicer%2FOrcaSlicer | Trendshift" style="width: 250px; height: 55px;" width="250" height="55"/></a>
[![GitHub Repo stars](https://img.shields.io/github/stars/OrcaSlicer/OrcaSlicer)](https://github.com/OrcaSlicer/OrcaSlicer/stargazers) [![Build all](https://github.com/OrcaSlicer/OrcaSlicer/actions/workflows/build_all.yml/badge.svg?branch=main)](https://github.com/OrcaSlicer/OrcaSlicer/actions/workflows/build_all.yml)

View File

@@ -21,6 +21,8 @@ INSTALL_RUNTIME=false
JOBS=$(nproc)
FORCE_CLEAN=false
ENABLE_CCACHE=false
DISABLE_ROFILES_FUSE=false
NO_DEBUGINFO=true
CACHE_DIR=".flatpak-builder"
# Help function
@@ -36,6 +38,8 @@ show_help() {
echo " -c, --cleanup Clean build directory before building"
echo " -f, --force-clean Force clean build (disables caching)"
echo " --ccache Enable ccache for faster rebuilds (requires ccache in SDK)"
echo " --disable-rofiles-fuse Disable rofiles-fuse (workaround for FUSE issues)"
echo " --with-debuginfo Include debug info (slower builds, needed for Flathub)"
echo " --cache-dir DIR Flatpak builder cache directory [default: $CACHE_DIR]"
echo " -i, --install-runtime Install required Flatpak runtime and SDK"
echo " -h, --help Show this help message"
@@ -75,6 +79,14 @@ while [[ $# -gt 0 ]]; do
ENABLE_CCACHE=true
shift
;;
--disable-rofiles-fuse)
DISABLE_ROFILES_FUSE=true
shift
;;
--with-debuginfo)
NO_DEBUGINFO=false
shift
;;
--cache-dir)
CACHE_DIR="$2"
shift 2
@@ -242,8 +254,8 @@ mkdir -p "$BUILD_DIR"
rm -rf "$BUILD_DIR/build-dir"
# Check if flatpak manifest exists
if [[ ! -f "./scripts/flatpak/io.github.softfever.OrcaSlicer.yml" ]]; then
echo -e "${RED}Error: Flatpak manifest not found at scripts/flatpak/io.github.softfever.OrcaSlicer.yml${NC}"
if [[ ! -f "./scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml" ]]; then
echo -e "${RED}Error: Flatpak manifest not found at scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml${NC}"
exit 1
fi
@@ -279,6 +291,7 @@ BUILDER_ARGS=(
--verbose
--state-dir="$CACHE_DIR"
--jobs="$JOBS"
--mirror-screenshots-url=https://dl.flathub.org/media/
)
# Add force-clean only if explicitly requested (disables caching)
@@ -295,21 +308,40 @@ if [[ "$ENABLE_CCACHE" == true ]]; then
echo -e "${GREEN}Using ccache for compiler caching${NC}"
fi
# Disable rofiles-fuse if requested (workaround for FUSE issues)
if [[ "$DISABLE_ROFILES_FUSE" == true ]]; then
BUILDER_ARGS+=(--disable-rofiles-fuse)
echo -e "${YELLOW}rofiles-fuse disabled${NC}"
fi
# Use a temp manifest with no-debuginfo if requested
MANIFEST="scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml"
if [[ "$NO_DEBUGINFO" == true ]]; then
MANIFEST="scripts/flatpak/io.github.orcaslicer.OrcaSlicer.no-debug.yml"
sed '0,/^finish-args:/s//build-options:\n no-debuginfo: true\n strip: true\nfinish-args:/' \
scripts/flatpak/io.github.orcaslicer.OrcaSlicer.yml > "$MANIFEST"
echo -e "${YELLOW}Debug info disabled (using temp manifest)${NC}"
fi
if ! flatpak-builder \
"${BUILDER_ARGS[@]}" \
"$BUILD_DIR/build-dir" \
scripts/flatpak/io.github.softfever.OrcaSlicer.yml; then
"$MANIFEST"; then
echo -e "${RED}Error: flatpak-builder failed${NC}"
echo -e "${YELLOW}Check the build log above for details${NC}"
rm -f "scripts/flatpak/io.github.orcaslicer.OrcaSlicer.no-debug.yml"
exit 1
fi
# Clean up temp manifest
rm -f "scripts/flatpak/io.github.orcaslicer.OrcaSlicer.no-debug.yml"
# Create bundle
echo -e "${YELLOW}Creating Flatpak bundle...${NC}"
if ! flatpak build-bundle \
"$BUILD_DIR/repo" \
"$BUNDLE_NAME" \
io.github.softfever.OrcaSlicer \
io.github.orcaslicer.OrcaSlicer \
--arch="$ARCH"; then
echo -e "${RED}Error: Failed to create Flatpak bundle${NC}"
exit 1
@@ -328,10 +360,10 @@ echo -e "${BLUE}To install the Flatpak:${NC}"
echo -e "flatpak install --user $BUNDLE_NAME"
echo ""
echo -e "${BLUE}To run OrcaSlicer:${NC}"
echo -e "flatpak run io.github.softfever.OrcaSlicer"
echo -e "flatpak run io.github.orcaslicer.OrcaSlicer"
echo ""
echo -e "${BLUE}To uninstall:${NC}"
echo -e "flatpak uninstall --user io.github.softfever.OrcaSlicer"
echo -e "flatpak uninstall --user io.github.orcaslicer.OrcaSlicer"
echo ""
if [[ "$FORCE_CLEAN" != true ]]; then
echo -e "${BLUE}Cache Management:${NC}"

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -18,26 +18,6 @@ msgstr ""
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1537,6 +1517,30 @@ msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Assemble"
msgstr ""
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr ""
@@ -1573,6 +1577,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr ""
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1684,6 +1736,9 @@ msgstr ""
msgid "Choose one file (GCODE/3MF):"
msgstr ""
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr ""
@@ -2077,9 +2132,6 @@ msgstr ""
msgid "Restore to meters"
msgstr ""
msgid "Assemble"
msgstr ""
msgid "Assemble the selected objects to an object with multiple parts"
msgstr ""
@@ -2568,6 +2620,10 @@ msgstr ""
msgid "Line Type"
msgstr ""
#, possible-c-format, possible-boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr ""
@@ -2685,7 +2741,7 @@ msgstr ""
msgid "Connecting..."
msgstr ""
msgid "Auto-refill"
msgid "Auto Refill"
msgstr ""
msgid "Load"
@@ -3396,9 +3452,6 @@ msgstr ""
msgid "Nozzle"
msgstr ""
msgid "Ext"
msgstr ""
#, possible-c-format, possible-boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3459,9 +3512,6 @@ msgstr ""
msgid "Print with filaments mounted on the back of the chassis"
msgstr ""
msgid "Auto Refill"
msgstr ""
msgid "Left"
msgstr ""
@@ -3607,8 +3657,8 @@ msgid "Click here to see more info"
msgstr ""
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3754,9 +3804,6 @@ msgstr ""
msgid "Settings"
msgstr ""
msgid "Texture"
msgstr ""
msgid "Remove"
msgstr ""
@@ -3842,7 +3889,7 @@ msgid ""
msgstr ""
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
@@ -6304,6 +6351,9 @@ msgid ""
"to give a positive rating (4 or 5 stars)."
msgstr ""
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr ""
@@ -6314,6 +6364,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Network plug-in v%s"
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr ""
@@ -7200,7 +7258,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr ""
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
msgid ""
@@ -8021,9 +8080,6 @@ msgstr ""
msgid "trace"
msgstr ""
msgid "Network Plug-in"
msgstr ""
msgid "Reload"
msgstr ""
@@ -8252,7 +8308,10 @@ msgstr ""
msgid "Slicing Plate 1"
msgstr ""
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr ""
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -8555,7 +8614,7 @@ msgstr ""
msgid "Textured PEI Plate"
msgstr ""
msgid "Cool Plate (Supertack)"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid "Click here if you can't connect to the printer"
@@ -9032,7 +9091,7 @@ msgstr ""
msgid "Top/bottom shells"
msgstr ""
msgid "Initial layer speed"
msgid "First layer speed"
msgstr ""
msgid "Other layers speed"
@@ -9137,9 +9196,6 @@ msgstr ""
msgid "Nozzle temperature when printing"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -9989,13 +10045,13 @@ msgstr ""
msgid "Global shortcuts"
msgstr ""
msgid "Pan View"
msgid "Pan view"
msgstr ""
msgid "Rotate View"
msgid "Rotate view"
msgstr ""
msgid "Zoom View"
msgid "Zoom view"
msgstr ""
msgid ""
@@ -10414,7 +10470,7 @@ msgid "Open G-code file:"
msgstr ""
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr ""
@@ -10898,7 +10954,7 @@ msgid "Elephant foot compensation"
msgstr ""
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr ""
@@ -11073,39 +11129,39 @@ msgid ""
"filament does not support printing on the Textured PEI Plate."
msgstr ""
msgid "Initial layer"
msgid "First layer"
msgstr ""
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr ""
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr ""
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr ""
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr ""
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr ""
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr ""
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr ""
@@ -12862,7 +12918,7 @@ msgid ""
msgstr ""
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr ""
@@ -12903,38 +12959,38 @@ msgstr ""
msgid "Jerk for infill."
msgstr ""
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr ""
msgid "Jerk for travel."
msgstr ""
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr ""
msgid "Initial layer height"
msgid "First layer height"
msgstr ""
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr ""
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr ""
msgid "Initial layer infill"
msgid "First layer infill"
msgstr ""
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr ""
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr ""
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr ""
msgid "Number of slow layers"
@@ -12945,10 +13001,11 @@ msgid ""
"increased in a linear fashion over the specified number of layers."
msgstr ""
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr ""
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr ""
msgid "Full fan speed at layer"
@@ -13368,9 +13425,9 @@ msgstr ""
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 "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
msgid "Exclude objects"
@@ -14140,13 +14197,13 @@ msgstr ""
msgid "Expand all raft layers in XY plane."
msgstr ""
msgid "Initial layer density"
msgid "First layer density"
msgstr ""
msgid "Density of the first raft or support layer."
msgstr ""
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr ""
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -15405,6 +15462,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr ""
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -16250,10 +16313,10 @@ msgid ""
"following format:'[x, y]' (x and y are floating-point numbers in mm)."
msgstr ""
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr ""
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr ""
msgid "Size of the first layer bounding box"
@@ -16525,10 +16588,6 @@ msgstr ""
msgid "create new preset failed."
msgstr ""
#, possible-c-format, possible-boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -17523,9 +17582,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr ""
msgid "Printable Space"
msgstr ""
@@ -18702,6 +18758,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, possible-c-format, possible-boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid "Precise wall\nDid you know that turning on precise wall can improve precision and layer consistency?"
msgstr ""

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: 2025-03-15 10:55+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -19,26 +19,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.5\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1587,6 +1567,30 @@ msgstr "Distància paral·lela:"
msgid "Flip by Face 2"
msgstr "Gira per la cara 2"
msgid "Assemble"
msgstr "Ensamblar"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Avís"
@@ -1629,6 +1633,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Textura"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1757,6 +1809,9 @@ msgstr "Trieu el fitxer ZIP"
msgid "Choose one file (GCODE/3MF):"
msgstr "Trieu un fitxer ( GCODE/3MF ):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Alguns perfils s'han modificat."
@@ -2168,9 +2223,6 @@ msgstr "Convertir des de metres"
msgid "Restore to meters"
msgstr "Restaurar a metres"
msgid "Assemble"
msgstr "Ensamblar"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Ensamblar els objectes seleccionats a un objecte amb diverses peces"
@@ -2680,6 +2732,10 @@ msgstr "Impressió multicolor"
msgid "Line Type"
msgstr "Tipus de línia"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Més"
@@ -2799,8 +2855,8 @@ msgstr "Comproveu la connexió de xarxa de la impressora i l'Orca."
msgid "Connecting..."
msgstr "Connectant..."
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "Recàrrega automàtica"
msgid "Load"
msgstr "Carregar"
@@ -3560,9 +3616,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Broquet( nozzle )"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3629,9 +3682,6 @@ msgstr "Imprimir amb filaments en ams"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Impressió amb filaments muntats a la part posterior del xassís"
msgid "Auto Refill"
msgstr "Recàrrega automàtica"
msgid "Left"
msgstr "Esquerra"
@@ -3799,8 +3849,8 @@ msgid "Click here to see more info"
msgstr "feu clic aquí per veure més informació"
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3973,9 +4023,6 @@ msgstr "Carregar forma des de l'STL..."
msgid "Settings"
msgstr "Configuració"
msgid "Texture"
msgstr "Textura"
msgid "Remove"
msgstr "Eliminar"
@@ -4081,7 +4128,7 @@ msgstr ""
"Restableix a 0.1"
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
@@ -6672,6 +6719,9 @@ msgstr ""
"d'impressió \n"
"per donar una valoració positiva( 4 o 5 estrelles )."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Estat"
@@ -6682,6 +6732,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "No tornis a mostrar"
@@ -7627,7 +7685,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Resoleu els errors de laminat i torneu a publicar."
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"No s'ha detectat el Plug-in de Xarxa. Les funcions relacionades amb la Xarxa "
"no estan disponibles."
@@ -8526,9 +8585,6 @@ msgstr "depurar"
msgid "trace"
msgstr "traça"
msgid "Network Plug-in"
msgstr ""
msgid "Reload"
msgstr ""
@@ -8758,7 +8814,10 @@ msgstr "La publicació ha estat cancel·lada"
msgid "Slicing Plate 1"
msgstr "Laminant Base 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Empaquetant dades a 3mf"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -9077,8 +9136,8 @@ msgstr "Placa Llisa d'Alta Temperatura"
msgid "Textured PEI Plate"
msgstr "Base PEI amb Textura"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "Cool Plate (SuperTack)"
msgid "Click here if you can't connect to the printer"
msgstr "Feu clic aquí si no us podeu connectar a la impressora"
@@ -9630,7 +9689,7 @@ msgstr "Parets"
msgid "Top/bottom shells"
msgstr "Carcasses superior/inferior"
msgid "Initial layer speed"
msgid "First layer speed"
msgstr "Velocitat de la capa inicial"
msgid "Other layers speed"
@@ -9747,9 +9806,6 @@ msgstr "Temperatura d'impressió"
msgid "Nozzle temperature when printing"
msgstr "Temperatura del broquet en imprimir"
msgid "Cool Plate (SuperTack)"
msgstr "Cool Plate (SuperTack)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10687,13 +10743,13 @@ msgstr "Mostrar la llista de dreceres de teclat"
msgid "Global shortcuts"
msgstr "Dreceres Globals"
msgid "Pan View"
msgid "Pan view"
msgstr "Vista Panoràmica"
msgid "Rotate View"
msgid "Rotate view"
msgstr "Rotar la vista"
msgid "Zoom View"
msgid "Zoom view"
msgstr "Vista amb Zoom"
msgid ""
@@ -11136,7 +11192,7 @@ msgid "Open G-code file:"
msgstr "Obre el fitxer de Codi-G:"
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr ""
"Un objecte té la capa inicial buida i no es pot imprimir. Si us plau, talleu "
@@ -11722,7 +11778,7 @@ msgid "Elephant foot compensation"
msgstr "Compensació de Peu d'Elefant"
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr ""
"Redueix la capa inicial a la placa d'impressió per compensar l'efecte de Peu "
@@ -11940,49 +11996,49 @@ msgstr ""
"Temperatura del llit de les capes excepte la inicial. El valor 0 significa "
"que el filament no admet imprimir a la Base PEI amb Textura."
msgid "Initial layer"
msgid "First layer"
msgstr "Capa inicial"
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr "Temperatura del llit en la capa inicial"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr ""
"Temperatura del llit de la capa inicial. El valor 0 significa que el "
"filament no admet la impressió al Cool Plate SuperTack"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr ""
"Temperatura del llit en la capa inicial. El valor 0 significa que el "
"filament no admet imprimir a la Base Freda"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr ""
"Temperatura del llit en la capa inicial. El valor 0 significa que el "
"filament no admet imprimir a la Placa Freda Texturitzada"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr ""
"Temperatura del llit en la capa inicial. El valor 0 significa que el "
"filament no admet imprimir a la Base d'Enginyeria"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr ""
"Temperatura del llit en la capa inicial. El valor 0 significa que el "
"filament no admet imprimir a la Base d'Alta Temperatura"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr ""
"Temperatura del llit en la capa inicial. El valor 0 significa que el "
@@ -14337,7 +14393,7 @@ msgstr ""
"predeterminada."
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr ""
"Acceleració de la capa inicial. L'ús d'un valor inferior pot millorar "
@@ -14380,42 +14436,43 @@ msgstr "Sacsejada( Jerk ) per a la superfície superior"
msgid "Jerk for infill."
msgstr "Sacsejada( Jerk ) per farciment"
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr "Sacsejada( Jerk ) per a la capa inicial"
msgid "Jerk for travel."
msgstr "Sacsejada( Jerk ) per deplaçament"
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr ""
"Amplada de línia de la capa inicial. Si s'expressa en %, es calcularà sobre "
"el diàmetre del broquet."
msgid "Initial layer height"
msgid "First layer height"
msgstr "Alçada de la capa inicial"
#, fuzzy
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr ""
"Alçada de la capa inicial. Fer que l'alçada inicial de la capa sigui "
"lleugerament més gruixuda pot millorar l'adherència de la placa d'impressió"
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr "Velocitat de la capa inicial excepte la part de farciment sòlid"
msgid "Initial layer infill"
msgid "First layer infill"
msgstr "Farciment de la capa inicial"
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr "Velocitat de farciment sòlid de la capa inicial"
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr "Velocitat de desplaçament de la capa inicial"
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr "Velocitat de desplaçament de la capa inicial"
msgid "Number of slow layers"
@@ -14428,10 +14485,11 @@ msgstr ""
"Les primeres capes s'imprimeixen més lentament del normal. La velocitat "
"augmenta gradualment de manera lineal sobre el nombre especificat de capes."
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr "Temperatura del broquet a la capa inicial"
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr ""
"Temperatura del broquet per imprimir la capa inicial quan s'utilitza aquest "
"filament"
@@ -14947,9 +15005,9 @@ msgstr "Etiquetar objectes"
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 "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Habilita això per afegir els comentaris al Codi-G, etiquetant moviments "
"d'impressió amb l'objecte al què pertanyen, cosa que és útil per al plugin "
@@ -15897,13 +15955,13 @@ msgstr "Expansió de la Vora d'Adherència"
msgid "Expand all raft layers in XY plane."
msgstr "Expandir totes les capes de Vora d'Adherència en el pla XY"
msgid "Initial layer density"
msgid "First layer density"
msgstr "Densitat de la primera capa"
msgid "Density of the first raft or support layer."
msgstr "Densitat de la primera Vora d'Adherència o capa de suport"
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr "Expansió de la primera capa"
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -17503,6 +17561,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "Rectangle"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -18507,11 +18571,11 @@ msgstr ""
"Vector de punts de la primera capa del casc convex. Cada element té el "
"següent format:'[x, y]' (x i y són nombres de coma flotant en mm)."
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr ""
"Cantonada inferior esquerra de la caixa delimitadora de la primera capa"
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr "Cantonada superior dreta de la caixa delimitadora de la primera capa"
msgid "Size of the first layer bounding box"
@@ -18810,10 +18874,6 @@ msgstr "El nom és el mateix que d'un altre perfil existent"
msgid "create new preset failed."
msgstr "s'ha produït un error en la creació d'un nou perfil."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -19938,9 +19998,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Rectangle"
msgid "Printable Space"
msgstr "Espai Imprimible"
@@ -21301,6 +21358,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -21738,9 +21916,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "Avançat"
#~ msgid "Packing data to 3MF"
#~ msgstr "Empaquetant dades a 3mf"
#~ msgid ""
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
#~ "bridge. Default is 100%.\n"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: 2025-05-18 09:32-0300\n"
"Last-Translator: Alexandre Folle de Menezes\n"
"Language-Team: \n"
@@ -14,26 +14,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
"X-Generator: Poedit 3.6\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1533,6 +1513,30 @@ msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Assemble"
msgstr ""
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr ""
@@ -1571,6 +1575,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr ""
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1682,6 +1734,9 @@ msgstr ""
msgid "Choose one file (GCODE/3MF):"
msgstr ""
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr ""
@@ -2077,9 +2132,6 @@ msgstr "Convert from Meters"
msgid "Restore to meters"
msgstr "Restore to Meter"
msgid "Assemble"
msgstr ""
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Assemble the selected objects into an object with multiple parts"
@@ -2573,6 +2625,10 @@ msgstr ""
msgid "Line Type"
msgstr ""
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr ""
@@ -2690,7 +2746,7 @@ msgstr ""
msgid "Connecting..."
msgstr ""
msgid "Auto-refill"
msgid "Auto Refill"
msgstr ""
msgid "Load"
@@ -3411,9 +3467,6 @@ msgstr ""
msgid "Nozzle"
msgstr ""
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3478,9 +3531,6 @@ msgstr "Print with filament in AMS"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Print with filament on external spool"
msgid "Auto Refill"
msgstr ""
msgid "Left"
msgstr ""
@@ -3628,15 +3678,15 @@ msgid ""
"deleted by anti-virus software."
msgstr ""
"Failed to install the plug-in. The plug-in file may be in use. Please "
"restart OrcaSlicer and try again. Also check whether it is blocked or "
"has been deleted by anti-virus software."
"restart OrcaSlicer and try again. Also check whether it is blocked or has "
"been deleted by anti-virus software."
msgid "Click here to see more info"
msgstr ""
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3784,9 +3834,6 @@ msgstr ""
msgid "Settings"
msgstr ""
msgid "Texture"
msgstr ""
msgid "Remove"
msgstr ""
@@ -3886,7 +3933,7 @@ msgstr ""
"It has been reset to 0.1"
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
@@ -6373,6 +6420,9 @@ msgid ""
"to give a positive rating (4 or 5 stars)."
msgstr ""
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr ""
@@ -6383,6 +6433,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr ""
@@ -7288,7 +7346,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr ""
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
msgid ""
@@ -8127,9 +8186,6 @@ msgstr ""
msgid "trace"
msgstr ""
msgid "Network Plug-in"
msgstr ""
msgid "Reload"
msgstr ""
@@ -8164,13 +8220,13 @@ msgid "View control settings"
msgstr ""
msgid "Rotate of view"
msgstr "Rotate View"
msgstr "Rotate view"
msgid "Move of view"
msgstr "Pan View"
msgstr "Pan view"
msgid "Zoom of view"
msgstr "Zoom View"
msgstr "Zoom view"
msgid "Other"
msgstr ""
@@ -8358,7 +8414,10 @@ msgstr ""
msgid "Slicing Plate 1"
msgstr ""
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr ""
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -8666,7 +8725,7 @@ msgstr ""
msgid "Textured PEI Plate"
msgstr ""
msgid "Cool Plate (Supertack)"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid "Click here if you can't connect to the printer"
@@ -9151,7 +9210,7 @@ msgstr ""
msgid "Top/bottom shells"
msgstr ""
msgid "Initial layer speed"
msgid "First layer speed"
msgstr "First layer speed"
msgid "Other layers speed"
@@ -9262,9 +9321,6 @@ msgstr ""
msgid "Nozzle temperature when printing"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10136,13 +10192,13 @@ msgstr ""
msgid "Global shortcuts"
msgstr ""
msgid "Pan View"
msgid "Pan view"
msgstr ""
msgid "Rotate View"
msgid "Rotate view"
msgstr ""
msgid "Zoom View"
msgid "Zoom view"
msgstr ""
msgid ""
@@ -10568,7 +10624,7 @@ msgid "Open G-code file:"
msgstr ""
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr ""
@@ -11065,7 +11121,7 @@ msgid "Elephant foot compensation"
msgstr ""
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr ""
"This shrinks the first layer on the build plate to compensate for elephant "
@@ -11265,49 +11321,49 @@ msgstr ""
"This is the bed temperature for layers except for the first one. A value of "
"0 means the filament does not support printing on the Textured PEI Plate."
msgid "Initial layer"
msgid "First layer"
msgstr "First layer"
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr "First layer bed temperature"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr ""
"This is the bed temperature of the first layer. A value of 0 means the "
"filament does not support printing on the Cool Plate SuperTack."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr ""
"This is the bed temperature of the first layer. A value of 0 means the "
"filament does not support printing on the Cool Plate."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr ""
"This is the bed temperature of the first layer. A value of 0 means the "
"filament does not support printing on the Textured Cool Plate."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr ""
"This is the bed temperature of the first layer. A value of 0 means the "
"filament does not support printing on the Engineering Plate."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr ""
"This is the bed temperature of the first layer. A value of 0 means the "
"filament does not support printing on the High Temp Plate."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr ""
"This is the bed temperature of the first layer. A value of 0 means the "
@@ -13140,7 +13196,7 @@ msgid ""
msgstr ""
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr ""
"This is the printing acceleration for the first layer. Using limited "
@@ -13183,41 +13239,42 @@ msgstr ""
msgid "Jerk for infill."
msgstr ""
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr ""
msgid "Jerk for travel."
msgstr ""
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr ""
msgid "Initial layer height"
msgid "First layer height"
msgstr "First layer height"
#, fuzzy
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr ""
"This is the height of the first layer. Making the first layer height thicker "
"can improve build plate adhesion."
"This is the height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr ""
"This is the speed for the first layer except for solid infill sections."
msgid "Initial layer infill"
msgid "First layer infill"
msgstr "First layer infill"
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr "This is the speed for solid infill parts of the first layer."
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr ""
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr ""
#, fuzzy
@@ -13229,10 +13286,11 @@ msgid ""
"increased in a linear fashion over the specified number of layers."
msgstr ""
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr "First layer nozzle temperature"
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr "Nozzle temperature for printing the first layer with this filament"
msgid "Full fan speed at layer"
@@ -13665,9 +13723,9 @@ msgstr ""
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 "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
msgid "Exclude objects"
@@ -14462,13 +14520,13 @@ msgstr ""
msgid "Expand all raft layers in XY plane."
msgstr "This expands all raft layers in XY plane."
msgid "Initial layer density"
msgid "First layer density"
msgstr "First layer density"
msgid "Density of the first raft or support layer."
msgstr "This is the density of the first raft or support layer."
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr "First layer expansion"
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -15783,6 +15841,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr ""
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -16651,10 +16715,10 @@ msgid ""
"following format:'[x, y]' (x and y are floating-point numbers in mm)."
msgstr ""
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr ""
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr ""
msgid "Size of the first layer bounding box"
@@ -16928,10 +16992,6 @@ msgstr ""
msgid "create new preset failed."
msgstr ""
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -17956,9 +18016,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr ""
msgid "Printable Space"
msgstr ""
@@ -19160,6 +19217,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: Ian A. Bassi <>\n"
"Language-Team: \n"
@@ -14,36 +14,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"X-Generator: Poedit 3.8\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
"Es posible que el filamento no sea compatible con la configuración de la "
"máquina. Se utilizará una configuración de filamento genérico."
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
"Modelo de filamento desconocido. Se mantiene el ajuste del filamento "
"anterior."
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
"Modelo de filamento desconocido. Se utilizará la configuración de filamento "
"genérico."
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
"Es posible que el filamento no sea compatible con la configuración de la "
"máquina. Se utilizará una configuración de filamento aleatorio."
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
"Modelo de filamento desconocido. Se utilizará la configuración de filamento "
"genérico. Se utilizará una configuración de filamento aleatorio."
msgid "right"
msgstr "derecha"
@@ -1615,6 +1585,35 @@ msgstr "Distancia paralela:"
msgid "Flip by Face 2"
msgstr "Voltear por la cara 2"
msgid "Assemble"
msgstr "Agrupar"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
"Confirme que la relación de explosión es 1 y seleccione al menos dos "
"volúmenes."
msgid "Please select at least two volumes."
msgstr "Seleccione al menos dos volúmenes."
msgid "(Moving)"
msgstr "(Moviendo)"
msgid "Point and point assembly"
msgstr "Ensamblaje punto a punto"
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
"Se recomienda montar primero los objetos,\n"
"ya que estos están sujetos a la cama \n"
"y solo se pueden levantar las piezas."
msgid "Face and face assembly"
msgstr "Montaje de cara y cara"
msgid "Notice"
msgstr "Aviso"
@@ -1657,6 +1656,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr "Basado en PrusaSlicer y BambuStudio"
msgid "STEP files"
msgstr "Archivos STEP"
msgid "STL files"
msgstr "Archivos STL"
msgid "OBJ files"
msgstr "Archivos OBJ"
msgid "AMF files"
msgstr "Archivos AMF"
msgid "3MF files"
msgstr "Archivos 3MF"
msgid "Gcode 3MF files"
msgstr "Archivos Gcode 3MF"
msgid "G-code files"
msgstr "Archivos G-code"
msgid "Supported files"
msgstr "Archivos compatibles"
msgid "ZIP files"
msgstr "Archivos ZIP"
msgid "Project files"
msgstr "Archivos de Proyecto"
msgid "Known files"
msgstr "Archivos conocidos"
msgid "INI files"
msgstr "Archivos INI"
msgid "SVG files"
msgstr "archivos SVG"
msgid "Texture"
msgstr "Textura"
msgid "Masked SLA files"
msgstr "Archivos SLA enmascarados"
msgid "Draco files"
msgstr "Archivos Draco"
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1785,6 +1832,9 @@ msgstr "Escoja archivo ZIP"
msgid "Choose one file (GCODE/3MF):"
msgstr "Escoja un archivo (GCODE/3MF):"
msgid "Ext"
msgstr "Ext"
msgid "Some presets are modified."
msgstr "Algunos perfiles fueron modificados."
@@ -2105,7 +2155,7 @@ msgstr ""
"No - No cambiar estos ajustes"
msgid "Suggestion"
msgstr ""
msgstr "Sugerencia"
msgid "Text"
msgstr "Texto"
@@ -2217,9 +2267,6 @@ msgstr "Convertir de metros"
msgid "Restore to meters"
msgstr "Restaurar a metros"
msgid "Assemble"
msgstr "Agrupar"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Ensamblar los objetos seleccionados en un objeto con múltiples piezas"
@@ -2734,6 +2781,10 @@ msgstr "Impresión multicolor"
msgid "Line Type"
msgstr "Tipo de línea"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr "Cuadrícula 1x1: %d mm"
msgid "More"
msgstr "Más"
@@ -2853,8 +2904,8 @@ msgstr "Compruebe la conexión de red de la impresora y Orca."
msgid "Connecting..."
msgstr "Conectando..."
msgid "Auto-refill"
msgstr "Recarga automática"
msgid "Auto Refill"
msgstr "Auto Rellenado"
msgid "Load"
msgstr "Cargar"
@@ -3297,36 +3348,36 @@ msgstr ""
"almacenamiento normal antes de enviarlo a la impresora."
msgid "Bad input data for EmbossCreateObjectJob."
msgstr ""
msgstr "Datos de entrada incorrectos para EmbossCreateObjectJob."
msgid "Add Emboss text object"
msgstr ""
msgstr "Añadir objeto de texto en relieve"
msgid "Bad input data for EmbossUpdateJob."
msgstr ""
msgstr "Datos de entrada incorrectos para EmbossUpdateJob."
msgid "Created text volume is empty. Change text or font."
msgstr ""
msgstr "El volumen de texto creado está vacío. Cambie el texto o la fuente."
msgid "Bad input data for CreateSurfaceVolumeJob."
msgstr ""
msgstr "Datos de entrada incorrectos para CreateSurfaceVolumeJob."
msgid "Bad input data for UseSurfaceJob."
msgstr ""
msgstr "Datos de entrada incorrectos para UseSurfaceJob."
#. TRN: This is the title of the action appearing in undo/redo stack.
#. It is same for Text and SVG.
msgid "Emboss attribute change"
msgstr ""
msgstr "Cambio del atributo de relieve"
msgid "Add Emboss text Volume"
msgstr ""
msgstr "Añadir volumen de texto en relieve"
msgid "Font doesn't have any shape for given text."
msgstr ""
msgstr "La fuente no tiene ninguna forma para el texto dado."
msgid "There is no valid surface for text projection."
msgstr ""
msgstr "No hay ninguna superficie válida para la proyección de texto."
msgid "Thermal Preconditioning for first layer optimization"
msgstr "Preacondicionamiento térmico para la optimización de la primera capa"
@@ -3674,9 +3725,6 @@ msgstr "Boquilla derecha"
msgid "Nozzle"
msgstr "Boquilla"
msgid "Ext"
msgstr "Ext"
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3750,9 +3798,6 @@ msgstr "Imprimir usando filamentos en AMS"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Imprimir con filamentos montados en la parte de atrás del chasis"
msgid "Auto Refill"
msgstr "Auto Rellenado"
msgid "Left"
msgstr "Izquierda"
@@ -3934,8 +3979,8 @@ msgid "Click here to see more info"
msgstr "Presiona aquí para mostrar más información"
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
"El complemento de red se instaló, pero no se pudo cargar. Reinicie la "
"aplicación."
@@ -4111,9 +4156,6 @@ msgstr "Cargar forma desde STL..."
msgid "Settings"
msgstr "Ajustes"
msgid "Texture"
msgstr "Textura"
msgid "Remove"
msgstr "Eliminar"
@@ -4221,7 +4263,7 @@ msgstr ""
"Restableciendo a 0,1."
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
@@ -4328,8 +4370,8 @@ msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
msgstr ""
"La profundidad de bloqueo debe ser menor que la profundidad de la piel.\n"
"Restablecer al 50 % de la profundidad de la piel."
"La profundidad del bloqueo debe ser menor que la profundidad de la piel.\n"
"Restablecer al 50% de la profundidad de la piel."
msgid ""
"Both [Extrusion] and [Combined] modes of Fuzzy Skin require the Arachne Wall "
@@ -6920,6 +6962,9 @@ msgstr ""
"impresión \n"
"para otorgar una calificación positiva (4 o 5 estrellas)."
msgid "click to add machine"
msgstr "Haga clic para añadir máquina"
msgid "Status"
msgstr "Estado"
@@ -6930,6 +6975,14 @@ msgstr "Actualizar"
msgid "Assistant(HMS)"
msgstr "Asistente (HMS)"
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr "Plug-in de red v%s"
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr "Plug-in de red v%s (%s)"
msgid "Don't show again"
msgstr "No mostrar de nuevo"
@@ -7926,7 +7979,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Por favor, resuelva los errores de laminado y publique de nuevo."
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Complemento de red no detectado. Características de red no disponibles."
@@ -8887,9 +8941,6 @@ msgstr "depurar"
msgid "trace"
msgstr "traza"
msgid "Network Plug-in"
msgstr "Plugin de red"
msgid "Reload"
msgstr "Recargar"
@@ -9121,8 +9172,11 @@ msgstr "La publicación fue cancelada"
msgid "Slicing Plate 1"
msgstr "Cama de Laminado 1"
msgid "Packing data to 3mf"
msgstr "Empaquetando datos en 3MF"
msgid "Packing data to 3MF"
msgstr "Empaquetando datos a 3mf"
msgid "Uploading data"
msgstr "Cargando datos"
msgid "Jump to webpage"
msgstr "Ir a la página web"
@@ -9494,8 +9548,8 @@ msgstr "Cama Lisa de Alta Temperatura"
msgid "Textured PEI Plate"
msgstr "Cama PEI Texturizada"
msgid "Cool Plate (Supertack)"
msgstr "Cama fría (Supertack)"
msgid "Cool Plate (SuperTack)"
msgstr "Cama Fría (SuperTack)"
msgid "Click here if you can't connect to the printer"
msgstr "Presione aquí si no puede conectar a la impresora"
@@ -10102,7 +10156,7 @@ msgstr "Perímetros"
msgid "Top/bottom shells"
msgstr "Cubiertas Superiores/Inferiores"
msgid "Initial layer speed"
msgid "First layer speed"
msgstr "Velocidad de la primera capa"
msgid "Other layers speed"
@@ -10219,9 +10273,6 @@ msgstr "Temperatura de impresión"
msgid "Nozzle temperature when printing"
msgstr "Temperatura de la boquilla al imprimir"
msgid "Cool Plate (SuperTack)"
msgstr "Cama Fría (SuperTack)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10693,10 +10744,10 @@ msgid "Select presets to compare"
msgstr "Seleccionar perfiles para comparar"
msgid "Left Preset Value"
msgstr ""
msgstr "Valor predeterminado izquierdo"
msgid "Right Preset Value"
msgstr ""
msgstr "Valor predeterminado derecho"
msgid ""
"You can only transfer to current active profile because it has been modified."
@@ -11160,10 +11211,10 @@ msgid "Login"
msgstr "Inicio de sesión"
msgid "[Action Required] "
msgstr ""
msgstr "[Acción requerida] "
msgid "[Action Required]"
msgstr ""
msgstr "[Acción requerida]"
msgid "The configuration package is changed in previous Config Guide"
msgstr ""
@@ -11196,13 +11247,13 @@ msgstr "Muestra lista de atajos de teclado"
msgid "Global shortcuts"
msgstr "Atajos globales"
msgid "Pan View"
msgid "Pan view"
msgstr "Desplazar vista"
msgid "Rotate View"
msgid "Rotate view"
msgstr "Rotar Vista"
msgid "Zoom View"
msgid "Zoom view"
msgstr "Hacer Zoom"
msgid ""
@@ -11653,7 +11704,7 @@ msgid "Open G-code file:"
msgstr "Abrir archivo G-Code:"
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr ""
"Un objeto tiene la primera capa vacía y no se puede imprimir. Por favor, "
@@ -12270,7 +12321,7 @@ msgid "Elephant foot compensation"
msgstr "Compensación de Pata de elefante"
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr ""
"Contracción de la primera capa en la cama de impresión para compensar el "
@@ -12498,42 +12549,42 @@ msgstr ""
"Temperatura de cama para las capas excepto la inicial. El valor 0 significa "
"que el filamento no es compatible para imprimir en la Cama PEI Texturizada."
msgid "Initial layer"
msgid "First layer"
msgstr "Capa inicial"
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr "Temperatura de la cama durante la primera capa"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr ""
"Temperatura de cama de la capa inicial. Valor 0 significa que el filamento "
"no es compatible para imprimir en la Cama Fría SuperTack."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr ""
"Esta es la temperatura de la cama de la primera capa. Un valor de 0 "
"significa que el filamento no admite la impresión en la Cama Fría."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr ""
"Temperatura de la capa inicial. El valor 0 significa que el filamento no es "
"compatible para imprimir en la placa fría texturizada."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr ""
"Esta es la temperatura de la cama de la primera capa. Un valor de 0 "
"significa que el filamento no admite la impresión en la Cama de Ingeniería."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr ""
"Esta es la temperatura de la cama de la primera capa. Un valor de 0 "
@@ -12541,7 +12592,7 @@ msgstr ""
"Temperatura."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr ""
"Esta es la temperatura de la cama de la primera capa. Un valor de 0 "
@@ -14997,7 +15048,7 @@ msgstr ""
"por defecto."
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr ""
"Aceleración de la primera capa. El uso de un valor más bajo puede mejorar la "
@@ -15042,42 +15093,43 @@ msgstr "Jerk de la superficie superior."
msgid "Jerk for infill."
msgstr "Jerk del relleno."
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr "Jerk de la primera capa."
msgid "Jerk for travel."
msgstr "Jerk de desplazamiento."
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr ""
"Ancho de línea de la primera capa. Si se expresa como %, se calculará en "
"base al diámetro de la boquilla."
msgid "Initial layer height"
msgid "First layer height"
msgstr "Altura de la primera capa"
#, fuzzy
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr ""
"Altura de la primera capa. Hacer que la altura de la primera capa sea "
"ligeramente gruesa puede mejorar la adherencia con la cama de impresión."
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr "Velocidad de la primera capa excepto la parte sólida de relleno."
msgid "Initial layer infill"
msgid "First layer infill"
msgstr "Relleno de la primera capa"
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr "Velocidad de la parte de relleno sólido de la primera capa."
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr "Velocidad de desplazamiento en la primera capa"
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr "Velocidad de movimientos de desplazamiento en la primera capa."
msgid "Number of slow layers"
@@ -15091,10 +15143,11 @@ msgstr ""
"incrementa gradualmente de una forma lineal sobre el número específicado de "
"capas."
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr "Temperatura de la boquilla de la primera capa"
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr ""
"Temperatura de la boquilla para imprimir la primera capa cuando se utiliza "
"este filamento."
@@ -15647,9 +15700,9 @@ msgstr "Etiquetar objetos"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Habilite esta opción para añadir comentarios en el G-Code etiquetando los "
"movimientos de impresión con el objeto al que pertenecen, lo cual es útil "
@@ -16658,13 +16711,13 @@ msgid "Expand all raft layers in XY plane."
msgstr ""
"Expandir todas las capas de la balsa (base de impresión) en el plano XY."
msgid "Initial layer density"
msgid "First layer density"
msgstr "Densidad de la primera capa"
msgid "Density of the first raft or support layer."
msgstr "Densidad de la balsa (base de impresión) o capa de soporte."
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr "Expansión de la primera capa"
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -18325,6 +18378,12 @@ msgstr ""
"3. Costilla: Añade cuatro refuerzos a la pared de la torre para mejorar la "
"estabilidad."
msgid "Rectangle"
msgstr "Rectángulo"
msgid "Rib"
msgstr "Costilla"
msgid "Extra rib length"
msgstr "Longitud extra del refuerzo"
@@ -19363,10 +19422,10 @@ msgstr ""
"tiene el siguiente formato:'[x, y]' (x e y son números de coma flotante en "
"mm)."
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr "Esquina inferior izquierda del cuadro delimitador de la primera capa"
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr "Esquina superior derecha del cuadro delimitador de la primera capa"
msgid "Size of the first layer bounding box"
@@ -19670,10 +19729,6 @@ msgstr "El nombre coincide con el de otro perfil"
msgid "create new preset failed."
msgstr "la creación un nuevo perfil ha fallado."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr "El perfil seleccionado: %s no ha sido encontrado."
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr "No se pudo encontrar el parámetro: %s."
@@ -19948,7 +20003,7 @@ msgid "material with significant thermal shrinkage/expansion, such as..."
msgstr "material con gran contracción/expansión térmica, como..."
msgid "materials with inaccurate filament diameter"
msgstr "Materiales con diámetro de filamento impreciso."
msgstr "materiales con diámetro de filamento impreciso"
msgid "We found the best Flow Dynamics Calibration Factor"
msgstr "Hemos encontrado el mejor Factor de Calibración de Dinámicas de Flujo"
@@ -20873,9 +20928,6 @@ msgstr "Introducir diámetro de boquilla personalizado"
msgid "Can't find my nozzle diameter"
msgstr "No encuentro mi diámetro de boquilla"
msgid "Rectangle"
msgstr "Rectángulo"
msgid "Printable Space"
msgstr "Espacio Imprimible"
@@ -22359,6 +22411,145 @@ msgstr "Filamento Oficial"
msgid "More Colors"
msgstr "Más Colores"
msgid "Network Plug-in Update Available"
msgstr "Actualización del Plug-in de red disponible"
msgid "Bambu Network Plug-in Required"
msgstr "Se requiere el plug-in Bambu Network"
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
"El Plug-in de Bambu Network está dañado o es incompatible. Vuelva a "
"instalarlo."
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
"El Plug-in de Bambu Network es necesario para las funciones en la nube, la "
"detección de impresoras y la impresión remota."
#, c-format, boost-format
msgid "Error: %s"
msgstr "Error: %s"
msgid "Show details"
msgstr "Mostrar detalles"
msgid "Version to install:"
msgstr "Versión a instalar:"
msgid "Download and Install"
msgstr "Descargar e instalar"
msgid "Skip for Now"
msgstr "Omitir por ahora"
msgid "A new version of the Bambu Network Plug-in is available."
msgstr "Hay disponible una nueva versión del plug-in Bambu Network."
#, c-format, boost-format
msgid "Current version: %s"
msgstr "Versión actual: %s"
msgid "Update to version:"
msgstr "Actualización a la versión:"
msgid "Update Now"
msgstr "Actualizar ahora"
msgid "Remind Later"
msgstr "Recordar más tarde"
msgid "Skip Version"
msgstr "Omitir versión"
msgid "Don't Ask Again"
msgstr "No volver a preguntar"
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr "El Plug-in de Bambu Network se ha instalado correctamente."
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
"Es necesario reiniciar el sistema para cargar el nuevo plug-in. ¿Desea "
"reiniciar ahora?"
msgid "Restart Now"
msgstr "Reiniciar ahora"
msgid "Restart Later"
msgstr "Reiniciar más tarde"
msgid "NO RAMMING AT ALL"
msgstr "NO CHOCAR EN ABSOLUTO"
msgid "Volumetric speed"
msgstr "Velocidad volumétrica"
msgid "Step file import parameters"
msgstr "Parámetros de importación de archivos Step"
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
"Las desviaciones lineales y angulares más pequeñas dan como resultado "
"transformaciones de mayor calidad, pero aumentan el tiempo de procesamiento."
msgid "Linear Deflection"
msgstr "Desviación Lineal"
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr "Introduzca un valor válido (0.001 < desviación lineal < 0.1)."
msgid "Angle Deflection"
msgstr "Desviación Angular"
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr "Introduzca un valor válido (0.01 < desviación angular < 1.0)."
msgid "Split compound and compsolid into multiple objects"
msgstr "Dividir compuesto y compsolid en múltiples objetos"
msgid "Number of triangular facets"
msgstr "Número de caras triangulares"
msgid "Calculating, please wait..."
msgstr "Calculando, por favor espere..."
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
"Es posible que el filamento no sea compatible con la configuración de la "
"máquina. Se utilizará una configuración de filamento genérico."
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
"Modelo de filamento desconocido. Se mantiene el ajuste del filamento "
"anterior."
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
"Modelo de filamento desconocido. Se utilizará la configuración de filamento "
"genérico."
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
"Es posible que el filamento no sea compatible con la configuración de la "
"máquina. Se utilizará una configuración de filamento aleatorio."
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
"Modelo de filamento desconocido. Se utilizará la configuración de filamento "
"genérico. Se utilizará una configuración de filamento aleatorio."
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -22747,6 +22938,22 @@ msgstr ""
"aumentar adecuadamente la temperatura de la cama térmica puede reducir la "
"probabilidad de deformaciones?"
#~ msgid "Auto-refill"
#~ msgstr "Recarga automática"
#~ msgid "Network Plug-in"
#~ msgstr "Plugin de red"
#~ msgid "Packing data to 3mf"
#~ msgstr "Empaquetando datos en 3MF"
#~ msgid "Cool Plate (Supertack)"
#~ msgstr "Cama fría (Supertack)"
#, c-format, boost-format
#~ msgid "The selected preset: %s is not found."
#~ msgstr "El perfil seleccionado: %s no ha sido encontrado."
#~ msgid "Line pattern of support."
#~ msgstr "Patrón de líneas de soportes"
@@ -22797,9 +23004,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "Avanzado"
#~ msgid "Packing data to 3MF"
#~ msgstr "Empaquetando datos a 3mf"
#~ msgid "Acceleration of outer walls."
#~ msgstr "Aceleración de los perímetros externos"
@@ -24869,7 +25073,7 @@ msgstr ""
#~ msgstr "Flujo del puente"
#~ msgid ""
#~ "Acceleration of initial layer. Using a lower value can improve build "
#~ "Acceleration of the first layer. Using a lower value can improve build "
#~ "plate adhensive"
#~ msgstr ""
#~ "Aceleración de la capa inicial. El uso de un valor más bajo puede mejorar "
@@ -25623,7 +25827,7 @@ msgstr ""
#~ msgstr ""
#~ "Ancho de línea por defecto si se ajusta algún ancho de línea es cero"
#~ msgid "Line width of initial layer"
#~ msgid "Line width of the first layer"
#~ msgstr "Ancho de línea de la capa inicial"
#~ msgid "Line width of internal sparse infill"
@@ -26489,7 +26693,8 @@ msgstr ""
#~ msgstr "Modo de vista previa sólo para el archivo G-code."
#~ msgid ""
#~ "A prime tower is required by timelapse. Do you want to enable both of them?"
#~ "A prime tower is required by timelapse. Do you want to enable both of "
#~ "them?"
#~ msgstr ""
#~ "Se requiere una torre de purga para los time-lapses. ¿Quiere activarla?"

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: Guislain Cyril, Thomas Lété\n"
@@ -17,26 +17,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==0 || n==1) ? 0 : 1;\n"
"X-Generator: Poedit 3.6\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1603,6 +1583,30 @@ msgstr "Distance parallèle :"
msgid "Flip by Face 2"
msgstr "Retournement par la Face 2"
msgid "Assemble"
msgstr "Assembler"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Remarque"
@@ -1645,6 +1649,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Texture"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1773,6 +1825,9 @@ msgstr "Choisissez un fichier ZIP"
msgid "Choose one file (GCODE/3MF):"
msgstr ""
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Certains préréglages sont modifiés."
@@ -2185,9 +2240,6 @@ msgstr "Convertir en mètre"
msgid "Restore to meters"
msgstr "Restaurer au compteur"
msgid "Assemble"
msgstr "Assembler"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Assembler les objets sélectionnés à un objet en plusieurs parties"
@@ -2701,6 +2753,10 @@ msgstr "Impression multicolore"
msgid "Line Type"
msgstr "Type de ligne"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Plus"
@@ -2818,8 +2874,8 @@ msgstr "Vérifiez la connexion réseau entre l'imprimante et Studio."
msgid "Connecting..."
msgstr "Connexion…"
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "Recharge Automatique"
msgid "Load"
msgstr "Charger"
@@ -3582,9 +3638,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Buse"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3652,9 +3705,6 @@ msgstr "Imprimer avec du filament de l'AMS"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Impression avec du filament de la bobine externe"
msgid "Auto Refill"
msgstr "Recharge Automatique"
msgid "Left"
msgstr "Gauche"
@@ -3826,8 +3876,8 @@ msgid "Click here to see more info"
msgstr "cliquez ici pour voir plus d'informations"
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -4001,9 +4051,6 @@ msgstr "Charger une forme depuis un STL …"
msgid "Settings"
msgstr "Réglages"
msgid "Texture"
msgstr "Texture"
msgid "Remove"
msgstr "Retirer"
@@ -4106,7 +4153,7 @@ msgid ""
msgstr "Espacement de lissage trop petit. Réinitialiser à 0.1"
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
@@ -6702,6 +6749,9 @@ msgstr ""
"Au moins un enregistrement dimpression réussi de ce profil\n"
"dimpression est requis pour donner une note positive (4 ou 5 étoiles)."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "État"
@@ -6712,6 +6762,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Ne plus afficher"
@@ -7644,7 +7702,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Veuillez résoudre les erreurs de découpage et republier."
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Le plug-in réseau n'est pas détecté. Les fonctionnalités liées au réseau ne "
"sont pas disponibles."
@@ -8549,9 +8608,6 @@ msgstr "déboguer"
msgid "trace"
msgstr "tracé"
msgid "Network Plug-in"
msgstr ""
msgid "Reload"
msgstr ""
@@ -8783,8 +8839,11 @@ msgstr "La publication a été annulée"
msgid "Slicing Plate 1"
msgstr "Découper Plaque 1"
msgid "Packing data to 3mf"
msgstr "Collecte des données 3mf"
msgid "Packing data to 3MF"
msgstr ""
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
msgstr "Ouvrir la page internet"
@@ -9108,8 +9167,8 @@ msgstr "Plaque lisse haute température"
msgid "Textured PEI Plate"
msgstr "Plaque PEI texturée"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "Cool Plate (SuperTack)"
msgid "Click here if you can't connect to the printer"
msgstr "Connexion impossible à limprimante"
@@ -9677,7 +9736,7 @@ msgstr "Parois"
msgid "Top/bottom shells"
msgstr "Coques supérieures/inférieures"
msgid "Initial layer speed"
msgid "First layer speed"
msgstr "Vitesse de couche initiale"
msgid "Other layers speed"
@@ -9794,9 +9853,6 @@ msgstr "Température d'impression"
msgid "Nozzle temperature when printing"
msgstr "Température de la buse lors de l'impression"
msgid "Cool Plate (SuperTack)"
msgstr "Cool Plate (SuperTack)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10760,13 +10816,13 @@ msgstr "Afficher la liste des raccourcis clavier"
msgid "Global shortcuts"
msgstr "Raccourcis globaux"
msgid "Pan View"
msgid "Pan view"
msgstr "Déplacement de vue"
msgid "Rotate View"
msgid "Rotate view"
msgstr "Rotation de la vue"
msgid "Zoom View"
msgid "Zoom view"
msgstr "Vue agrandie"
#, fuzzy
@@ -11211,7 +11267,7 @@ msgid "Open G-code file:"
msgstr "Ouvrir un fichier G-code :"
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr ""
"Un objet a une couche initiale vide et ne peut pas être imprimé. Veuillez "
@@ -11806,7 +11862,7 @@ msgid "Elephant foot compensation"
msgstr "Compensation de l'effet patte d'éléphant"
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr ""
"Rétrécissez la couche initiale sur le plateau pour compenser l'effet de "
@@ -12029,21 +12085,21 @@ msgstr ""
"Température du plateau après la première couche. 0 signifie que le filament "
"n'est pas supporté par la plaque PEI texturée."
msgid "Initial layer"
msgid "First layer"
msgstr "Couche initiale"
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr "Température du plateau lors de la couche initiale"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr ""
"Température du plateau de la couche initiale. La valeur 0 signifie que le "
"filament nest pas compatible avec limpression sur la Cool Plate SuperTack"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr ""
"Il s'agit de la température du plateau pour la première couche. Une valeur à "
@@ -12051,21 +12107,21 @@ msgstr ""
"plate\""
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr ""
"Température du plateau de la couche initiale. La valeur 0 signifie que le "
"filament ne peut pas être imprimé sur la plaque Cool Plate texturée"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr ""
"Il s'agit de la température du plateau pour la première couche. Une valeur à "
"0 signifie que ce filament ne peut pas être imprimé sur la plaque Engineering"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr ""
"Il s'agit de la température du plateau pour la première couche. Une valeur à "
@@ -12073,7 +12129,7 @@ msgstr ""
"température (\"High Temp plate\")"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr ""
"La température du plateau à la première couche. La valeur 0 signifie que le "
@@ -14458,7 +14514,7 @@ msgstr ""
"laccélération par défaut."
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr ""
"Accélération de la couche initiale. L'utilisation d'une valeur plus basse "
@@ -14502,42 +14558,43 @@ msgstr "Jerk des surfaces supérieures"
msgid "Jerk for infill."
msgstr "Jerk du remplissage"
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr "Jerk de la couche initiale"
msgid "Jerk for travel."
msgstr "Jerk des déplacements"
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr ""
"Largeur de la ligne de la couche initiale. Si elle est exprimée en %, elle "
"sera calculée sur le diamètre de la buse."
msgid "Initial layer height"
msgid "First layer height"
msgstr "Hauteur de couche initiale"
#, fuzzy
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr ""
"Il s'agit de la hauteur de la première couche. L'augmentation de la hauteur "
"de la première couche peut améliorer l'adhérence sur le plateau"
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr "Vitesse de la couche initiale à l'exception du remplissage"
msgid "Initial layer infill"
msgid "First layer infill"
msgstr "Remplissage de la couche initiale"
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr "Vitesse du remplissage à la couche initiale"
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr "Déplacements"
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr "Vitesse de déplacement de la couche initiale"
msgid "Number of slow layers"
@@ -14551,10 +14608,11 @@ msgstr ""
"vitesse augmente progressivement de manière linéaire sur le nombre de "
"couches spécifié."
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr "Température de la buse de couche initiale"
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr ""
"Température de la buse pour imprimer la couche initiale lors de "
"l'utilisation de ce filament"
@@ -15072,9 +15130,9 @@ msgstr "Label Objects"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Permet dajouter des commentaires dans le G-code sur les mouvements "
"dimpression de lobjet auquel ils appartiennent, ce qui est utile pour le "
@@ -16035,13 +16093,13 @@ msgstr "Agrandissement du radeau"
msgid "Expand all raft layers in XY plane."
msgstr "Développer toutes les couches de radeau dans le plan XY"
msgid "Initial layer density"
msgid "First layer density"
msgstr "Densité de couche initiale"
msgid "Density of the first raft or support layer."
msgstr "Densité du premier radeau ou couche de support"
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr "Extension de la couche initiale"
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -17657,6 +17715,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "Rectangle"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -18677,11 +18741,11 @@ msgstr ""
"a le format suivant : [x, y] (x et y sont des nombres à virgule flottante "
"en mm)."
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr ""
"Coin inférieur gauche de la boîte de délimitation de la première couche"
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr "Coin supérieur droit de la boîte de délimitation de la première couche"
msgid "Size of the first layer bounding box"
@@ -18982,10 +19046,6 @@ msgstr "Le nom est le même quun autre nom de préréglage existant"
msgid "create new preset failed."
msgstr "la création dun nouveau préréglage a échoué."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -20127,9 +20187,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Rectangle"
msgid "Printable Space"
msgstr "Espace imprimable"
@@ -21505,6 +21562,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -21902,6 +22080,9 @@ msgstr ""
"déformer, tels que lABS, une augmentation appropriée de la température du "
"plateau chauffant peut réduire la probabilité de déformation?"
#~ msgid "Packing data to 3mf"
#~ msgstr "Collecte des données 3mf"
#~ msgid "Line pattern of support."
#~ msgstr "Motif de ligne de support"

File diff suppressed because it is too large Load Diff

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -14,26 +14,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
"X-Generator: Poedit 3.5\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1600,6 +1580,30 @@ msgstr "Distanza parallela:"
msgid "Flip by Face 2"
msgstr "Capovolgi da Faccia 2"
msgid "Assemble"
msgstr "Assembla"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Avvertenza"
@@ -1642,6 +1646,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr "Basato su PrusaSlicer e BambuStudio"
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Trama"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1768,6 +1820,9 @@ msgstr "Seleziona il file ZIP"
msgid "Choose one file (GCODE/3MF):"
msgstr "Scegli file (GCODE/3MF):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Alcuni preset vengono modificati."
@@ -2178,9 +2233,6 @@ msgstr "Converti da metri"
msgid "Restore to meters"
msgstr "Ripristina in metri"
msgid "Assemble"
msgstr "Assembla"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Assembla gli oggetti selezionati in un oggetto con più parti"
@@ -2695,6 +2747,10 @@ msgstr "Stampa multicolore"
msgid "Line Type"
msgstr "Tipo linea"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Altro"
@@ -2815,8 +2871,8 @@ msgstr "Controlla la connessione di rete della stampante e di OrcaSlicer."
msgid "Connecting..."
msgstr "Connessione..."
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "Riempimento automatico"
msgid "Load"
msgstr "Carica"
@@ -3581,9 +3637,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Ugello"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3651,9 +3704,6 @@ msgstr "Stampa con filamento nell'AMS"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Stampa filamento con bobina esterna"
msgid "Auto Refill"
msgstr "Riempimento automatico"
msgid "Left"
msgstr "Da sinistra"
@@ -3822,8 +3872,8 @@ msgid "Click here to see more info"
msgstr "clicca per ulteriori informazioni"
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3999,9 +4049,6 @@ msgstr "Carica forma da STL..."
msgid "Settings"
msgstr "Impostazioni"
msgid "Texture"
msgstr "Trama"
msgid "Remove"
msgstr "Rimuovi"
@@ -4106,7 +4153,7 @@ msgstr ""
"È stata ripristinata a 0,1"
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
@@ -6689,6 +6736,9 @@ msgstr ""
"riuscito \n"
"per dare una valutazione positiva (4 o 5 stelle)."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Stato"
@@ -6699,6 +6749,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Non mostrare più"
@@ -7641,7 +7699,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Risolvi gli errori di elaborazone e pubblica nuovamente."
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Il modulo di rete non è stato rilevato. Le funzioni di rete non sono "
"disponibili."
@@ -8534,9 +8593,6 @@ msgstr "debug"
msgid "trace"
msgstr "traccia"
msgid "Network Plug-in"
msgstr ""
msgid "Reload"
msgstr ""
@@ -8767,7 +8823,10 @@ msgstr "La pubblicazione è stata annullata"
msgid "Slicing Plate 1"
msgstr "Elaborazione Piatto 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Archiviazione dati su 3mf"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -9087,8 +9146,8 @@ msgstr "Piatto liscio ad alta temperatura"
msgid "Textured PEI Plate"
msgstr "Piatto PEI ruvido"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "Piatto SuperTack a bassa temperatura"
msgid "Click here if you can't connect to the printer"
msgstr "Clicca qui se non puoi connetterti alla stampante"
@@ -9643,7 +9702,7 @@ msgstr "Pareti"
msgid "Top/bottom shells"
msgstr "Gusci superiori/inferiori"
msgid "Initial layer speed"
msgid "First layer speed"
msgstr "Velocità primo strato"
msgid "Other layers speed"
@@ -9760,9 +9819,6 @@ msgstr "Temperatura stampa"
msgid "Nozzle temperature when printing"
msgstr "Temperatura dell'ugello durante la stampa"
msgid "Cool Plate (SuperTack)"
msgstr "Piatto SuperTack a bassa temperatura"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10719,13 +10775,13 @@ msgstr "Mostra elenco scorciatoie da tastiera"
msgid "Global shortcuts"
msgstr "Scorciatoie globali"
msgid "Pan View"
msgid "Pan view"
msgstr "Vista panoramica"
msgid "Rotate View"
msgid "Rotate view"
msgstr "Ruota vista"
msgid "Zoom View"
msgid "Zoom view"
msgstr "Ingrandimento vista"
msgid ""
@@ -11170,7 +11226,7 @@ msgid "Open G-code file:"
msgstr "Apri un file G-code:"
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr ""
"Un oggetto ha lo strato iniziale vuoto e non può essere stampato. Taglia il "
@@ -11763,7 +11819,7 @@ msgid "Elephant foot compensation"
msgstr "Compensazione zampa d'elefante"
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr ""
"Questo parametro restringe il primo strato sul piano di stampa per "
@@ -11991,14 +12047,14 @@ msgstr ""
"valore pari a 0 indica che il filamento non supporta la stampa su Piatto PEI "
"ruvido."
msgid "Initial layer"
msgid "First layer"
msgstr "Primo strato"
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr "Temperatura piatto primo strato"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr ""
"Indica la temperatura del piatto per il primo strato. Un valore pari a 0 "
@@ -12006,14 +12062,14 @@ msgstr ""
"temperatura."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr ""
"Indica la temperatura del piatto per il primo strato. Un valore pari a 0 "
"indica che il filamento non supporta la stampa su Piatto a bassa temperatura."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr ""
"Indica la temperatura del piatto per il primo strato. Un valore pari a 0 "
@@ -12021,21 +12077,21 @@ msgstr ""
"temperatura."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr ""
"Indica la temperatura del piatto per il primo strato. Un valore pari a 0 "
"indica che il filamento non supporta la stampa su Piatto ingegneristico."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr ""
"Indica la temperatura del piatto per il primo strato. Un valore pari a 0 "
"indica che il filamento non supporta la stampa su Piatto ad alta temperatura."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr ""
"Indica la temperatura del piatto per il primo strato. Un valore pari a 0 "
@@ -14401,7 +14457,7 @@ msgstr ""
"predefinita."
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr ""
"Accelerazione di stampa per il primo strato. Utilizzando un valore "
@@ -14447,45 +14503,46 @@ msgstr "Scatto per superficie superiore."
msgid "Jerk for infill."
msgstr "Scatto per riempimento."
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr "Scatto per strato iniziale."
msgid "Jerk for travel."
msgstr "Scatto per spostamento."
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr ""
"Larghezza della linea del primo strato. Se espresso come una %, verrà "
"calcolato sul diametro dell'ugello."
msgid "Initial layer height"
msgid "First layer height"
msgstr "Altezza primo strato"
#, fuzzy
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr ""
"Altezza del primo strato. L'aumento dell'altezza del primo strato può "
"migliorare l'adesione al piano di stampa."
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr ""
"Indica la velocità per il primo strato, tranne che per le sezioni di "
"riempimento solido."
msgid "Initial layer infill"
msgid "First layer infill"
msgstr "Riempimento primo strato"
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr ""
"Indica la velocità per le parti di riempimento solido del primo strato."
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr "Velocità spostamento primo strato"
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr "Velocità di spostamento del primo strato."
msgid "Number of slow layers"
@@ -14499,10 +14556,11 @@ msgstr ""
"viene gradualmente aumentata in modo lineare sul numero di strati "
"specificato."
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr "Temperatura ugello primo strato"
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr ""
"Temperatura dell'ugello per la stampa del primo strato con questo filamento."
@@ -15018,9 +15076,9 @@ msgstr "Etichetta oggetti"
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 "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Abilita questa opzione per aggiungere commenti nel G-Code, contrassegnando i "
"movimenti di stampa con l'oggetto a cui appartengono, il che è utile per il "
@@ -15981,13 +16039,13 @@ msgstr "Espansione della zattera"
msgid "Expand all raft layers in XY plane."
msgstr "Espande tutti gli strati della zattera nel piano XY."
msgid "Initial layer density"
msgid "First layer density"
msgstr "Densità primo strato"
msgid "Density of the first raft or support layer."
msgstr "Densità del primo strato della zattera o del supporto."
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr "Espansione primo strato"
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -17604,6 +17662,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "Rettangolo"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -18618,11 +18682,11 @@ msgstr ""
"Vettore di punti dell'inviluppo convesso del primo strato. Ogni elemento ha "
"il seguente formato: '[x, y]' (x e y sono numeri in virgola mobile in mm)."
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr ""
"Angolo inferiore sinistro del riquadro di delimitazione del primo strato"
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr "Angolo superiore destro del riquadro di delimitazione del primo strato"
msgid "Size of the first layer bounding box"
@@ -18924,10 +18988,6 @@ msgstr "Il nome è lo stesso di un altro nome profilo esistente"
msgid "create new preset failed."
msgstr "creazione nuovo profilo non riuscita."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -20068,9 +20128,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Rettangolo"
msgid "Printable Space"
msgstr "Spazio di stampa"
@@ -21428,6 +21485,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -21868,9 +22046,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "Avanzato"
#~ msgid "Packing data to 3MF"
#~ msgstr "Archiviazione dati su 3mf"
#~ msgid ""
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
#~ "bridge. Default is 100%.\n"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -14,26 +14,6 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.2.2\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1561,6 +1541,30 @@ msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Assemble"
msgstr "組立てる"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "通知"
@@ -1597,6 +1601,54 @@ msgstr "構成ファイル %1% がロードされましたが、一部の値が
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "テクスチャ"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1711,6 +1763,9 @@ msgstr "ZIPファイルの選択"
msgid "Choose one file (GCODE/3MF):"
msgstr ""
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "プリセットが変更されました。"
@@ -2108,9 +2163,6 @@ msgstr "メートルから変換"
msgid "Restore to meters"
msgstr "メータル単位に復元"
msgid "Assemble"
msgstr "組立てる"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "選択したオブジェクトを一つオブジェクトに組み立てます(複数パーツ)"
@@ -2599,6 +2651,10 @@ msgstr "マルチカラー造形"
msgid "Line Type"
msgstr "種類"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "詳細"
@@ -2718,7 +2774,7 @@ msgstr "プリンターとOrcaのネットワーク接続を確認してくだ
msgid "Connecting..."
msgstr "接続中…"
msgid "Auto-refill"
msgid "Auto Refill"
msgstr ""
msgid "Load"
@@ -3444,9 +3500,6 @@ msgstr ""
msgid "Nozzle"
msgstr "ノズル"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3507,9 +3560,6 @@ msgstr "AMSのフィラメントで造形します"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "外部スプールホルダーのフィラメントで造形します"
msgid "Auto Refill"
msgstr ""
msgid "Left"
msgstr "左面"
@@ -3661,8 +3711,8 @@ msgid "Click here to see more info"
msgstr "詳しくはこちら"
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3827,9 +3877,6 @@ msgstr "STLからシェープデータを読込む"
msgid "Settings"
msgstr "設定"
msgid "Texture"
msgstr "テクスチャ"
msgid "Remove"
msgstr "削除"
@@ -3917,7 +3964,7 @@ msgid ""
msgstr "値が小さいです、0.1にリセットします"
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr "1層目の高さが無効です、0.2mmにリセットします"
@@ -6413,6 +6460,9 @@ msgid ""
"to give a positive rating (4 or 5 stars)."
msgstr ""
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "デバイス状態"
@@ -6423,6 +6473,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "次回から表示しない"
@@ -7326,7 +7384,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "スライシングエラーを解決して、もう一度公開していください"
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"ネットワーク プラグインが検出されません。ネットワーク関連の機能は利用できませ"
"ん。"
@@ -8172,9 +8231,6 @@ msgstr "デバッグ"
msgid "trace"
msgstr "トレース"
msgid "Network Plug-in"
msgstr ""
msgid "Reload"
msgstr ""
@@ -8403,7 +8459,10 @@ msgstr "公開は取り消しました"
msgid "Slicing Plate 1"
msgstr "プレート1をスライス"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "データを構成中"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -8709,7 +8768,7 @@ msgstr ""
msgid "Textured PEI Plate"
msgstr "PEIプレート"
msgid "Cool Plate (Supertack)"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid "Click here if you can't connect to the printer"
@@ -9202,7 +9261,7 @@ msgstr "壁面"
msgid "Top/bottom shells"
msgstr "トップ面/底面"
msgid "Initial layer speed"
msgid "First layer speed"
msgstr "1層目の移動速度"
msgid "Other layers speed"
@@ -9310,9 +9369,6 @@ msgstr "造形温度"
msgid "Nozzle temperature when printing"
msgstr "ノズル温度"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10190,13 +10246,13 @@ msgstr "ショートカット一覧を表示"
msgid "Global shortcuts"
msgstr "ショートカット"
msgid "Pan View"
msgid "Pan view"
msgstr "移動"
msgid "Rotate View"
msgid "Rotate view"
msgstr "回転"
msgid "Zoom View"
msgid "Zoom view"
msgstr "ズーム"
msgid ""
@@ -10625,7 +10681,7 @@ msgid "Open G-code file:"
msgstr "G-codeファイルを開く"
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr ""
"オブジェクトはプレートと接触していないため造形できません。サポートを有効する"
@@ -11154,7 +11210,7 @@ msgid "Elephant foot compensation"
msgstr "コーナーはみ出し補正"
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr "1層目を縮小して、コーナーのはみ出しを軽減します。"
@@ -11342,45 +11398,45 @@ msgstr ""
"1層目以外のベッド温度。値が0の場合、フィラメントがPEIプレートをサポートしない"
"意味をします。"
msgid "Initial layer"
msgid "First layer"
msgstr "1層目"
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr "1層目ベッド温度"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr ""
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr ""
"1層目のベッド温度です。値が0の場合、フィラメントが常温プレートに使用できない"
"意味です。"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr ""
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr ""
"1層目のベッド温度です。値が0の場合、フィラメントがエンジニアリング プレートに"
"使用できない意味です。"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr ""
"1層目のベッド温度です。値が0の場合、フィラメントが高温プレートに使用できない"
"意味です。"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr ""
"1層目のベッド温度。値が0の場合は、フィラメントがPEIプレートをサポートしない意"
@@ -13212,7 +13268,7 @@ msgid ""
msgstr ""
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr ""
"1層目の造形加速度です。遅くするとプレートとの接着を向上させることができます"
@@ -13254,38 +13310,39 @@ msgstr ""
msgid "Jerk for infill."
msgstr ""
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr ""
msgid "Jerk for travel."
msgstr ""
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr ""
msgid "Initial layer height"
msgid "First layer height"
msgstr "1層目の高さ"
#, fuzzy
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr "1層目の高さです。高さを大きくすればプレートとの接着性が良くなります。"
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr "1層目を造形時に、ソリッド インフィル以外の部分の造形速度です。"
msgid "Initial layer infill"
msgid "First layer infill"
msgstr "1層目インフィル"
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr "1層目のソリッド インフィルの造形速度です。"
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr ""
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr ""
msgid "Number of slow layers"
@@ -13296,10 +13353,11 @@ msgid ""
"increased in a linear fashion over the specified number of layers."
msgstr ""
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr "1層目のズル温度"
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr "1層目でのズル温度"
msgid "Full fan speed at layer"
@@ -13725,9 +13783,9 @@ msgstr "オブジェクトにラベルを付ける"
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 "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"このオプションを有効にすると、Gコードのプリント移動コマンドに、どのオブジェク"
"トに属するものかがわかるようにラベルコメントが追加されます。これはOctoprintの"
@@ -14543,13 +14601,13 @@ msgstr "ラフト拡張"
msgid "Expand all raft layers in XY plane."
msgstr "この設定により、ラフトのXYサイズを拡大します。"
msgid "Initial layer density"
msgid "First layer density"
msgstr "1層目の密度"
msgid "Density of the first raft or support layer."
msgstr "ラフト或はサポートの1層目の密度です。"
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr "1層目拡張"
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -15880,6 +15938,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr ""
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -16788,10 +16852,10 @@ msgid ""
"following format:'[x, y]' (x and y are floating-point numbers in mm)."
msgstr ""
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr "最初のレイヤーの境界ボックスの左下隅"
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr "最初のレイヤーの境界ボックスの右上隅"
msgid "Size of the first layer bounding box"
@@ -17065,10 +17129,6 @@ msgstr ""
msgid "create new preset failed."
msgstr ""
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -18082,9 +18142,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr ""
msgid "Printable Space"
msgstr ""
@@ -19265,6 +19322,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -19633,9 +19811,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "高度な設定"
#~ msgid "Packing data to 3MF"
#~ msgstr "データを構成中"
#~ msgid "°"
#~ msgstr "°"

View File

@@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: 2025-06-02 17:12+0900\n"
"Last-Translator: crwusiz <crwusiz@gmail.com>\n"
"Language-Team: \n"
@@ -18,26 +18,6 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.6\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1570,6 +1550,30 @@ msgstr "평행 거리:"
msgid "Flip by Face 2"
msgstr "면 2로 뒤집기"
msgid "Assemble"
msgstr "병합"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "공지사항"
@@ -1606,6 +1610,54 @@ msgstr "구성 파일 \"%1%\"가 로드되었지만 일부 값이 인식되지
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "텍스처"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1729,6 +1781,9 @@ msgstr "ZIP 파일 선택"
msgid "Choose one file (GCODE/3MF):"
msgstr "하나의 파일 선택 (GCODE/3MF):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "일부 사전 설정이 수정 되었습니다."
@@ -2136,9 +2191,6 @@ msgstr "미터에서 변환"
msgid "Restore to meters"
msgstr "미터로 복원"
msgid "Assemble"
msgstr "병합"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "선택한 객체를 여러 부품이 있는 객체로 조립"
@@ -2632,6 +2684,10 @@ msgstr "멀티컬러 출력"
msgid "Line Type"
msgstr "선 유형"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "더보기"
@@ -2749,8 +2805,8 @@ msgstr "프린터와 Orca Slicer의 네트워크 연결을 확인하세요."
msgid "Connecting..."
msgstr "연결 중..."
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "자동 리필"
msgid "Load"
msgstr "불러오기"
@@ -3494,9 +3550,6 @@ msgstr ""
msgid "Nozzle"
msgstr "노즐"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3560,9 +3613,6 @@ msgstr "AMS의 필라멘트로 출력"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "섀시 뒷면에 필라멘트를 장착하여 출력"
msgid "Auto Refill"
msgstr "자동 리필"
msgid "Left"
msgstr "왼쪽"
@@ -3724,8 +3774,8 @@ msgid "Click here to see more info"
msgstr "자세한 내용을 보려면 여기를 클릭하세요"
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3888,9 +3938,6 @@ msgstr "STL에서 모양 불러오기..."
msgid "Settings"
msgstr "설정"
msgid "Texture"
msgstr "텍스처"
msgid "Remove"
msgstr "제거"
@@ -3987,7 +4034,7 @@ msgstr ""
"0.1로 재설정"
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
@@ -6534,6 +6581,9 @@ msgstr ""
"긍정적인 평가(별4개 또는 5개)를 제공하려면\n"
"이 출력 사전 설정의 성공적인 출력 기록이 하나 이상 필요합니다."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "상태"
@@ -6544,6 +6594,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "다시 표시하지 않음"
@@ -7468,7 +7526,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "슬라이싱 오류를 해결하고 다시 시도하세요."
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"네트워크 플러그인이 감지되지 않습니다. 네트워크 관련 기능을 사용할 수 없습니"
"다."
@@ -8338,9 +8397,6 @@ msgstr "디버그"
msgid "trace"
msgstr "추적"
msgid "Network Plug-in"
msgstr ""
msgid "Reload"
msgstr ""
@@ -8569,7 +8625,10 @@ msgstr "게시가 취소되었습니다"
msgid "Slicing Plate 1"
msgstr "플레이트 1 슬라이싱"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "데이터를 3mf로 압축 중"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -8883,8 +8942,8 @@ msgstr "부드러운 고온 플레이트"
msgid "Textured PEI Plate"
msgstr "텍스처 PEI 플레이트"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "쿨 플레이트(슈퍼택)"
msgid "Click here if you can't connect to the printer"
msgstr "프린터에 연결할 수 없는 경우 여기를 클릭하세요"
@@ -9410,7 +9469,7 @@ msgstr "벽"
msgid "Top/bottom shells"
msgstr "상단/하단 쉘"
msgid "Initial layer speed"
msgid "First layer speed"
msgstr "초기 레이어 속도"
msgid "Other layers speed"
@@ -9519,9 +9578,6 @@ msgstr "출력 온도"
msgid "Nozzle temperature when printing"
msgstr "출력 시 노즐 온도"
msgid "Cool Plate (SuperTack)"
msgstr "쿨 플레이트(슈퍼택)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10441,13 +10497,13 @@ msgstr "키보드 단축키 목록 보기"
msgid "Global shortcuts"
msgstr "전역 단축키"
msgid "Pan View"
msgid "Pan view"
msgstr "시점 이동"
msgid "Rotate View"
msgid "Rotate view"
msgstr "시점 회전"
msgid "Zoom View"
msgid "Zoom view"
msgstr "시점 확대/축소"
msgid ""
@@ -10881,7 +10937,7 @@ msgid "Open G-code file:"
msgstr "Gcode 파일 열기:"
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr ""
"객체 하나에 초기 레이어가 비어 있어 출력할 수 없습니다. 바닥을 자르거나 서포"
@@ -11430,7 +11486,7 @@ msgid "Elephant foot compensation"
msgstr "코끼리 발 보정"
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr ""
"코끼리 발 효과를 보정하기 위해 빌드 플레이트에 닿는 첫 레이어를 축소합니다"
@@ -11636,49 +11692,49 @@ msgstr ""
"초기 레이어를 제외한 레이어의 베드 온도. 값 0은 필라멘트가 텍스처 PEI 플레이"
"트 출력을 지원하지 않음을 의미합니다."
msgid "Initial layer"
msgid "First layer"
msgstr "초기 레이어"
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr "초기 레이어 베드 온도"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr ""
"초기 레이어의 베드 온도입니다. 값 0은 필라멘트가 쿨 플레이트(슈퍼택)에 출력"
"할 수 없음을 의미합니다."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr ""
"초기 레이어의 베드 온도. 값 0은 필라멘트가 쿨 플레이트 출력을 지원하지 않음"
"을 의미합니다."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr ""
"초기 레이어의 베드 온도입니다. 값 0은 필라멘트가 텍스처드 쿨 플레이트에 출력"
"할 수 없음을 의미합니다."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr ""
"초기 레이어의 베드 온도. 값 0은 필라멘트가 쿨 플레이트 출력을 지원하지 않음"
"을 의미합니다."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr ""
"초기 레이어의 베드 온도입니다. 값 0은 필라멘트가 고온 플레이트 출력을 지원하"
"지 않음을 의미합니다."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr ""
"초기 레이어의 베드 온도. 값 0은 필라멘트가 텍스처 PEI 플레이트 출력을 지원하"
@@ -13854,7 +13910,7 @@ msgstr ""
"으로 계산됩니다."
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr ""
"초기 레이어 가속도. 낮은 값을 사용하면 빌드 플레이트 안착률을 높일 수 있습니"
@@ -13897,40 +13953,41 @@ msgstr "상단 표면 저크"
msgid "Jerk for infill."
msgstr "채우기 저크"
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr "초기 레이어 저크"
msgid "Jerk for travel."
msgstr "이동 저크"
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr "초기 레이어의 선 너비. %로 입력 시 노즐 직경에 대한 비율로 계산됩니다."
msgid "Initial layer height"
msgid "First layer height"
msgstr "초기 레이어 높이"
#, fuzzy
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr ""
"초기 레이어의 높이입니다. 초기 레이어 높이를 약간 두껍게 하면 빌드 플레이트 "
"접착력을 향상시킬 수 있습니다"
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr "꽉찬 채우기 부분을 제외한 초기 레이어 속도"
msgid "Initial layer infill"
msgid "First layer infill"
msgstr "초기 레이어 채우기"
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr "초기 레이어의 꽉찬 채우기 속도"
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr "초기 레이어 이동 속도"
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr "초기 레이어 이동 속도"
msgid "Number of slow layers"
@@ -13943,10 +14000,11 @@ msgstr ""
"처음 몇 개의 레이어는 평소보다 느리게 출력됩니다. 속도는 지정된 레이어 수에 "
"걸쳐 선형 방식으로 점차 증가합니다."
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr "초기 레이어 노즐 온도"
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr "이 필라멘트를 사용할 때 초기 레이어를 출력하기 위한 노즐 온도"
msgid "Full fan speed at layer"
@@ -14435,9 +14493,9 @@ msgstr "객체 이름표"
# Wipe into this object;s infill/Wipe into this object
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 "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"이 옵션을 선택하면 Gcode 출력시 이동에 설명을 추가할 수 있습니다. 이는 "
"Octoprint CancelObject 플러그인에 유용합니다.\n"
@@ -15330,13 +15388,13 @@ msgstr "라프트 확장"
msgid "Expand all raft layers in XY plane."
msgstr "XY 평면에서 모든 라프트 레이어 확장"
msgid "Initial layer density"
msgid "First layer density"
msgstr "초기 레이어 밀도"
msgid "Density of the first raft or support layer."
msgstr "첫 번째 라프트 또는 서포트의 밀도"
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr "초기 레이어 확장"
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -16833,6 +16891,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "직사각형"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -17787,10 +17851,10 @@ msgstr ""
"첫 번째 레이어 볼록 껍질의 점으로 구성된 벡터입니다. 각 요소의 형식은 '[x, "
"y]'입니다(x 및 y는 mm 단위의 부동 소수점 숫자입니다)."
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr "첫 번째 레이어 경계 상자의 왼쪽 하단 모서리"
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr "첫 번째 레이어 경계 상자의 오른쪽 위 모서리"
msgid "Size of the first layer bounding box"
@@ -18080,10 +18144,6 @@ msgstr "이름이 기존의 다른 사전 설정 이름과 동일합니다"
msgid "create new preset failed."
msgstr "새 사전 설정을 생성하지 못했습니다."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -19167,9 +19227,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "직사각형"
msgid "Printable Space"
msgstr "출력 가능 공간"
@@ -20467,6 +20524,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -20892,9 +21070,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "전문가 모드"
#~ msgid "Packing data to 3MF"
#~ msgstr "데이터를 3mf로 압축 중"
#~ msgid ""
#~ "Filament shrinkage will not be used because filament shrinkage for the "
#~ "used filaments differs significantly."

View File

@@ -1,4 +1,3 @@
src/libslic3r/PresetBundle.cpp
src/slic3r/GUI/DeviceCore/DevBed.cpp
src/slic3r/GUI/DeviceCore/DevBed.h
src/slic3r/GUI/DeviceCore/DevConfig.h
@@ -68,6 +67,7 @@ src/slic3r/GUI/Gizmos/GLGizmoText.hpp
src/slic3r/GUI/Gizmos/GLGizmoEmboss.cpp
src/slic3r/GUI/Gizmos/GLGizmoSVG.cpp
src/slic3r/GUI/Gizmos/GLGizmoMeasure.cpp
src/slic3r/GUI/Gizmos/GLGizmoAssembly.cpp
src/slic3r/GUI/GUI.cpp
src/slic3r/GUI/GUI_App.cpp
src/slic3r/GUI/GUI_AuxiliaryList.cpp
@@ -81,6 +81,7 @@ src/slic3r/GUI/GUI_ObjectTable.hpp
src/slic3r/GUI/GUI_ObjectTableSettings.cpp
src/slic3r/GUI/GUI_ObjectTableSettings.hpp
src/slic3r/GUI/GUI_Preview.cpp
src/slic3r/GUI/2DBed.cpp
src/slic3r/GUI/HintNotification.cpp
src/slic3r/GUI/IMSlider.cpp
src/slic3r/GUI/Widgets/SideTools.cpp
@@ -166,7 +167,6 @@ src/slic3r/GUI/Tab.hpp
src/slic3r/GUI/UnsavedChangesDialog.cpp
src/slic3r/GUI/Auxiliary.cpp
src/slic3r/GUI/UpdateDialogs.cpp
src/slic3r/GUI/UnsavedChangesDialog.cpp
src/slic3r/GUI/ObjColorDialog.cpp
src/slic3r/GUI/SyncAmsInfoDialog.cpp
src/slic3r/GUI/WipeTowerDialog.cpp
@@ -179,12 +179,10 @@ src/slic3r/GUI/KBShortcutsDialog.cpp
src/slic3r/GUI/ReleaseNote.cpp
src/slic3r/GUI/ReleaseNote.hpp
src/slic3r/GUI/UpgradePanel.cpp
src/slic3r/GUI/UnsavedChangesDialog.cpp
src/slic3r/Utils/FixModelByWin10.cpp
src/slic3r/Utils/PresetUpdater.cpp
src/slic3r/Utils/Http.cpp
src/slic3r/Utils/Process.cpp
src/slic3r/GUI/Jobs/PrintJob.cpp
src/libslic3r/GCode.cpp
src/libslic3r/GCode/ToolOrdering.cpp
src/libslic3r/ExtrusionEntity.cpp
@@ -238,7 +236,6 @@ src/slic3r/Utils/Obico.cpp
src/slic3r/Utils/SimplyPrint.cpp
src/slic3r/Utils/Flashforge.cpp
src/slic3r/GUI/Jobs/OAuthJob.cpp
src/slic3r/GUI/BackgroundSlicingProcess.cpp
src/slic3r/GUI/Gizmos/GLGizmoBrimEars.cpp
src/slic3r/GUI/PartSkipDialog.cpp
src/slic3r/GUI/PartSkipDialog.hpp
@@ -247,4 +244,8 @@ src/slic3r/GUI/SkipPartCanvas.hpp
src/slic3r/GUI/FilamentBitmapUtils.cpp
src/slic3r/GUI/FilamentBitmapUtils.hpp
src/slic3r/GUI/FilamentPickerDialog.cpp
src/slic3r/GUI/NetworkPluginDialog.cpp
src/slic3r/GUI/RammingChart.cpp
src/slic3r/GUI/StepMeshDialog.cpp
src/slic3r/GUI/FilamentPickerDialog.hpp
src/libslic3r/PresetBundle.cpp

View File

@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: 2025-10-25 23:01+0300\n"
"Last-Translator: Gintaras Kučinskas <sharanchius@gmail.com>\n"
"Language-Team: \n"
@@ -20,26 +20,6 @@ msgstr ""
"%10>=2 && n%10<=9 && (n%100<11 || n%100>19) ? 1 : 2);\n"
"X-Generator: Poedit 3.6\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1582,6 +1562,30 @@ msgstr "Lygiagretus atstumas:"
msgid "Flip by Face 2"
msgstr "Apversti pagal paviršių 2"
msgid "Assemble"
msgstr "Surinkti"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Įspėjimas"
@@ -1622,6 +1626,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr "Remiantis „PrusaSlicer“ ir „BambuStudio“"
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Tekstūra"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1750,6 +1802,9 @@ msgstr "Pasirinkite ZIP failą"
msgid "Choose one file (GCODE/3MF):"
msgstr "Pasirinkite vieną failą (GCODE/3MF):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Kai kurie nustatymai pakeisti."
@@ -2160,9 +2215,6 @@ msgstr "Konvertuoti iš metrų"
msgid "Restore to meters"
msgstr "Grąžinti į metrus"
msgid "Assemble"
msgstr "Surinkti"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Sujungti pasirinktus objektus į daugiadalį objektą"
@@ -2680,6 +2732,10 @@ msgstr "Spalvotas spausdinimas"
msgid "Line Type"
msgstr "Linijos tipas"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Daugiau"
@@ -2798,8 +2854,8 @@ msgstr "Prašome patikrinti spausdintuvo ir OrcaSlicer ryšį su tinklu."
msgid "Connecting..."
msgstr "Jungiamasi..."
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "Automatinis papildymas"
msgid "Load"
msgstr "Įkelti"
@@ -3557,9 +3613,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Purkštukas"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3626,9 +3679,6 @@ msgstr "Spausdinti AMS gijomis"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Spausdinti gijomis, sumontuotomis ant dėžės"
msgid "Auto Refill"
msgstr "Automatinis papildymas"
msgid "Left"
msgstr "Kairė"
@@ -3791,8 +3841,8 @@ msgid "Click here to see more info"
msgstr "spustelėkite norėdami gauti daugiau informacijos"
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3962,9 +4012,6 @@ msgstr "Įkelti formą iš STL..."
msgid "Settings"
msgstr "Nustatymai"
msgid "Texture"
msgstr "Tekstūra"
msgid "Remove"
msgstr "Pašalinti"
@@ -4068,7 +4115,7 @@ msgstr ""
"Atstatyta į 0,1."
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
@@ -6670,6 +6717,9 @@ msgstr ""
"Norint palikti teigiamą įvertinimą (4 arba 5 žvaigždutės), būtinas \n"
"bent vienas sėkmingas spausdinimo rezultatas su šiuo spausdinimo profiliu."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Būsena"
@@ -6680,6 +6730,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Daugiau nerodyti"
@@ -7623,7 +7681,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Prašome sutvarkyti sluoksniavimo klaidas ir publikuoti dar kartą."
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Neaptiktas tinklo įskiepis. Nebus pasiekiamos su tinklu susijusios galimybės."
@@ -8517,9 +8576,6 @@ msgstr "testavimas"
msgid "trace"
msgstr "sekimas"
msgid "Network Plug-in"
msgstr ""
msgid "Reload"
msgstr ""
@@ -8748,7 +8804,10 @@ msgstr "Publikavimas buvo atšauktas"
msgid "Slicing Plate 1"
msgstr "Sluoksniuojama plokštė 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Duomenys pakuojami į 3mf"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -9070,8 +9129,8 @@ msgstr "Lygi aukštos temperatūros plokštė"
msgid "Textured PEI Plate"
msgstr "Tekstūruota PEI plokštė"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "Šalta plokštė (SuperTack)"
msgid "Click here if you can't connect to the printer"
msgstr "Jei negalite prijungti spausdintuvo, spauskite čia"
@@ -9634,7 +9693,7 @@ msgstr "Sienos"
msgid "Top/bottom shells"
msgstr "Viršutiniai/apatiniai paviršiai"
msgid "Initial layer speed"
msgid "First layer speed"
msgstr "Pradinio sluoksnio greitis"
msgid "Other layers speed"
@@ -9755,9 +9814,6 @@ msgstr "Spausdinimo temperatūra"
msgid "Nozzle temperature when printing"
msgstr "Purkštuko temperatūra spausdinant"
msgid "Cool Plate (SuperTack)"
msgstr "Šalta plokštė (SuperTack)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10700,13 +10756,13 @@ msgstr "Rodyti sparčiųjų klavišų sąrašą"
msgid "Global shortcuts"
msgstr "Bendrieji spartieji klavišai"
msgid "Pan View"
msgid "Pan view"
msgstr "Judinti vaizdą"
msgid "Rotate View"
msgid "Rotate view"
msgstr "Pasukti vaizdą"
msgid "Zoom View"
msgid "Zoom view"
msgstr "Padidinti vaizdą"
msgid ""
@@ -11145,7 +11201,7 @@ msgid "Open G-code file:"
msgstr "Atidaryti G-kodo failą:"
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr ""
"Vienas objektas turi tuščią pradinį sluoksnį ir jo negalima spausdinti. "
@@ -11733,7 +11789,7 @@ msgid "Elephant foot compensation"
msgstr "Dramblio pėdos kompensacija"
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr ""
"Taip sutraukiamas pirmasis spausdinio sluoksnis, kad būtų kompensuotas "
@@ -11952,49 +12008,49 @@ msgstr ""
"Pagrindo temperatūra po pirmojo sluoksnio. 0 reiškia, kad gija nepalaiko "
"spausdinimo ant tekstūruotos PEI plokštės."
msgid "Initial layer"
msgid "First layer"
msgstr "Pradinis sluoksnis"
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr "Pradinė sluoksnio pagrindo temperatūra"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr ""
"Pradinio sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad gija "
"nepalaiko spausdinimo ant šaltos plokštės „SuperTack“."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr ""
"Pirmojo sluoksnio temperatūra. 0 reiškia, kad gija nepalaiko spausdinimo ant "
"šaltos plokštės."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr ""
"Pradinio sluoksnio pagrindo temperatūra. Reikšmė 0 reiškia, kad gija "
"nepalaiko spausdinimo ant tekstūruotos šaltos plokštės."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr ""
"Pirmojo sluoksnio temperatūra. 0 reiškia, kad gija nepalaiko spausdinimo ant "
"inžinerinės plokštės."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr ""
"Pirmojo sluoksnio temperatūra. 0 reiškia, kad gija nepalaiko spausdinimo ant "
"aukštos temperatūros plokštės."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr ""
"Pirmojo sluoksnio temperatūra. 0 reiškia, kad gija nepalaiko spausdinimo ant "
@@ -14316,7 +14372,7 @@ msgstr ""
"100 %), ji bus apskaičiuota pagal numatytąjį pagreitį."
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr ""
"Tai pirmojo sluoksnio spausdinimo pagreitis. Naudojant ribotą pagreitį "
@@ -14361,43 +14417,44 @@ msgstr "Viršutinio paviršiaus trūkčiojimas."
msgid "Jerk for infill."
msgstr "Užpildymo trūkčiojimas."
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr "Pradinio sluoksnio trūkčiojimas."
msgid "Jerk for travel."
msgstr "Judėjimo trūkčiojimas."
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr ""
"Pradinio sluoksnio linijos plotis. Jei išreiškiamas %, jis apskaičiuojamas "
"pagal purkštuko skersmenį."
msgid "Initial layer height"
msgid "First layer height"
msgstr "Pradinio sluoksnio aukštis"
#, fuzzy
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr ""
"Pradinio sluoksnio aukštis. Šiek tiek padidinus pradinio sluoksnio aukštį "
"galima pagerinti pagrindo plokštės sukibimą."
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr ""
"Greitis taikomas pirmajam sluoksniui, išskyrus vientiso užpildo ruožus."
msgid "Initial layer infill"
msgid "First layer infill"
msgstr "Pradinio sluoksnio užpildymas"
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr "Pirmojo sluoksnio vientiso užpildo dalių greitis."
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr "Pradinio sluoksnio judėjimo greitis"
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr "Pradinio sluoksnio judėjimo greitis."
msgid "Number of slow layers"
@@ -14410,10 +14467,11 @@ msgstr ""
"Keli pirmieji sluoksniai spausdinami lėčiau nei įprastai. Greitis "
"palaipsniui linijiniu būdu didinamas per nurodytą sluoksnių skaičių."
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr "Pradinė sluoksnio purkštuko temperatūra"
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr ""
"Purkštuko temperatūra pradiniam sluoksniui spausdinti, kai naudojama ši gija."
@@ -14947,9 +15005,9 @@ msgstr "Objektų žymėjimas"
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 "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Įgalinkite šią funkciją, jei norite pridėti komentarų prie G-kodo žymėjimo "
"spausdinimo judesių su objektu, kuriam jie priklauso. Tai naudinga "
@@ -15926,13 +15984,13 @@ msgstr "Platformos išplėtimas"
msgid "Expand all raft layers in XY plane."
msgstr "Tai išplečia visus platformos sluoksnius XY plokštumoje."
msgid "Initial layer density"
msgid "First layer density"
msgstr "Pradinio sluoksnio tankis"
msgid "Density of the first raft or support layer."
msgstr "Pirmojo platformos arba atraminio sluoksnio tankis."
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr "Pradinio sluoksnio išplėtimas"
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -17538,6 +17596,12 @@ msgstr ""
"3. Briauna: bokšto sienai pridedamos keturios briaunos, padedančios "
"padidinti stabilumą."
msgid "Rectangle"
msgstr "Stačiakampis"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr "Papildomas briaunų ilgis"
@@ -18536,10 +18600,10 @@ msgstr ""
"Pirmojo sluoksnio išgaubtojo korpuso taškų vektorius. Kiekvienas elementas "
"yra tokio formato: \"[x, y]\" (x ir y yra slankiojo kablelio skaičiai mm)."
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr "Pirmojo sluoksnio ribų lango apatinis kairysis kampas"
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr "Pirmojo sluoksnio ribų lango viršutinis dešinysis kampas"
msgid "Size of the first layer bounding box"
@@ -18837,10 +18901,6 @@ msgstr "Pavadinimas sutampa su kito nustatymo pavadinimu"
msgid "create new preset failed."
msgstr "sukurti naują profilį nepavyko."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -19969,9 +20029,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Stačiakampis"
msgid "Printable Space"
msgstr "Spausdintina erdvė"
@@ -21337,6 +21394,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -21782,14 +21960,12 @@ msgstr ""
#~ msgstr "Naudoti senąjį tinklo įskiepį"
#~ msgid ""
#~ "Disable to use latest network plug-in that supports new BambuLab firmwares."
#~ "Disable to use latest network plug-in that supports new BambuLab "
#~ "firmwares."
#~ msgstr ""
#~ "Išjunkite, kad galėtumėte naudoti naujausią tinklo įskiepį, kuris palaiko "
#~ "naujas „BambuLab“ programinės įrangos versijas."
#~ msgid "Packing data to 3MF"
#~ msgstr "Duomenys pakuojami į 3mf"
#~ msgid ""
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
#~ "bridge. Default is 100%.\n"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@@ -14,26 +14,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
"X-Generator: Poedit 3.4.4\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1557,6 +1537,30 @@ msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Assemble"
msgstr "Monteren"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Let op"
@@ -1597,6 +1601,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Textuur"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1718,6 +1770,9 @@ msgstr "Kies ZIP bestand"
msgid "Choose one file (GCODE/3MF):"
msgstr "Kies één bestand (GCODE/3MF):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Sommige voorinstellingen zijn aangepast."
@@ -2118,9 +2173,6 @@ msgstr "Omzetten vanuit meter"
msgid "Restore to meters"
msgstr "Terugzetten naar meter"
msgid "Assemble"
msgstr "Monteren"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr ""
"Monteer de geselecteerde objecten tot een object bestaande uit meerdere delen"
@@ -2635,6 +2687,10 @@ msgstr "Print met meerdere kleuren"
msgid "Line Type"
msgstr "Lijn type"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Meer"
@@ -2752,7 +2808,7 @@ msgstr ""
msgid "Connecting..."
msgstr "Verbinden..."
msgid "Auto-refill"
msgid "Auto Refill"
msgstr ""
msgid "Load"
@@ -3498,9 +3554,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Mondstuk"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3563,9 +3616,6 @@ msgstr "Printen met filament in AMS"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Print met filament op een externe spoel"
msgid "Auto Refill"
msgstr ""
msgid "Left"
msgstr "Links"
@@ -3729,8 +3779,8 @@ msgid "Click here to see more info"
msgstr "klik hier voor meer informatie"
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3900,9 +3950,6 @@ msgstr "Vorm laden vanuit het STL. bestand..."
msgid "Settings"
msgstr "Instellingen"
msgid "Texture"
msgstr "Textuur"
msgid "Remove"
msgstr "Verwijderen"
@@ -4007,7 +4054,7 @@ msgstr ""
"Teruggezet naar 0.1"
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
@@ -6542,6 +6589,9 @@ msgstr ""
"At least one successful print record of this print profile is required \n"
"to give a positive rating (4 or 5 stars)."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Status"
@@ -6552,6 +6602,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Niet nogmaals tonen"
@@ -7494,7 +7552,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Los aub de slicing fouten op en publiceer opnieuw."
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Netwerk plug-in is niet gedetecteerd. Netwerkgerelateerde functies zijn niet "
"beschikbaar."
@@ -8378,9 +8437,6 @@ msgstr "debug"
msgid "trace"
msgstr "trace"
msgid "Network Plug-in"
msgstr ""
msgid "Reload"
msgstr ""
@@ -8612,7 +8668,10 @@ msgstr "Het publiceren is geannuleerd"
msgid "Slicing Plate 1"
msgstr "Slicing printbed 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "De data wordt opgeslagen in een 3mf"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -8928,7 +8987,7 @@ msgstr ""
msgid "Textured PEI Plate"
msgstr "Getextureerde PEI-plaat"
msgid "Cool Plate (Supertack)"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid "Click here if you can't connect to the printer"
@@ -9456,7 +9515,7 @@ msgstr "Wanden"
msgid "Top/bottom shells"
msgstr "Boven-/onderlagen"
msgid "Initial layer speed"
msgid "First layer speed"
msgstr "Printsnelheid van de eerste laag"
msgid "Other layers speed"
@@ -9573,9 +9632,6 @@ msgstr "Print temperatuur"
msgid "Nozzle temperature when printing"
msgstr "Mondstuk temperatuur tijdens printen"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10490,13 +10546,13 @@ msgstr "Toon lijst met sneltoetsen"
msgid "Global shortcuts"
msgstr "Globale snelkoppelingen"
msgid "Pan View"
msgid "Pan view"
msgstr ""
msgid "Rotate View"
msgid "Rotate view"
msgstr ""
msgid "Zoom View"
msgid "Zoom view"
msgstr ""
msgid ""
@@ -10935,7 +10991,7 @@ msgid "Open G-code file:"
msgstr "Open G-code bestand:"
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr ""
"Eén object heeft een lege eerste laag en kan niet geprint worden. Knip een "
@@ -11474,7 +11530,7 @@ msgid "Elephant foot compensation"
msgstr "\"Elephant foot\" compensatie"
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr ""
"Hierdoor krimpt de eerste laag op de bouwplaat om het \"elephant foot\" "
@@ -11691,45 +11747,45 @@ msgstr ""
"Bedtemperatuur na de eerste laag. 0 betekent dat het filament niet wordt "
"ondersteund op de getextureerde PEI-plaat."
msgid "Initial layer"
msgid "First layer"
msgstr "Eerste laag"
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr "Printbed temperatuur voor de eerste laag"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr ""
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr ""
"Dit is de bedtemperatuur van de beginlaag. Een waarde van 0 betekent dat het "
"filament printen op de Cool Plate niet ondersteunt."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr ""
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr ""
"Dit is de bedtemperatuur van de beginlaag. Een waarde van 0 betekent dat het "
"filament afdrukken op de Engineering Plate niet ondersteunt."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr ""
"Dit is de bedtemperatuur van de beginlaag. Een waarde van 0 betekent dat het "
"filament printen op de High Temp Plate niet ondersteunt."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr ""
"De bedtemperatuur van de eerste laag 0 betekent dat het filament niet wordt "
@@ -13601,7 +13657,7 @@ msgid ""
msgstr ""
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr ""
"Dit is de afdrukversnelling voor de eerste laag. Een beperkte versnelling "
@@ -13644,42 +13700,43 @@ msgstr ""
msgid "Jerk for infill."
msgstr ""
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr ""
msgid "Jerk for travel."
msgstr ""
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr ""
msgid "Initial layer height"
msgid "First layer height"
msgstr "Laaghoogte van de eerste laag"
#, fuzzy
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr ""
"Dit is de hoogte van de eerste laag. Door de hoogte van de eerste laag hoger "
"te maken, kan de hechting op het printbed worden verbeterd."
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr ""
"Dit is de snelheid voor de eerste laag behalve solide vulling (infill) delen"
msgid "Initial layer infill"
msgid "First layer infill"
msgstr "Vulling (infill) van de eerste laag"
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr ""
"Dit is de snelheid voor de solide vulling (infill) delen van de eerste laag."
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr ""
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr ""
msgid "Number of slow layers"
@@ -13690,10 +13747,11 @@ msgid ""
"increased in a linear fashion over the specified number of layers."
msgstr ""
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr "Mondstuk temperatuur voor de eerste laag"
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr ""
"Mondstuk temperatuur om de eerste laag mee te printen bij gebruik van dit "
"filament"
@@ -14134,9 +14192,9 @@ msgstr "Label objecten"
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 "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Schakel dit in om opmerkingen in de G-code toe te voegen voor bewegingen die "
"behoren tot een object. Dit is handig voor de OctoPrint CancelObject-plugin. "
@@ -14961,13 +15019,13 @@ msgstr "Vlot (raft) expansie"
msgid "Expand all raft layers in XY plane."
msgstr "Dit vergroot alle raft lagen in het XY vlak."
msgid "Initial layer density"
msgid "First layer density"
msgstr "Dichtheid van de eerste laag"
msgid "Density of the first raft or support layer."
msgstr "Dit is de dichtheid van de eerste raft- of support laag."
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr "Vergroten van de eerste laag"
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -16364,6 +16422,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "Rechthoek"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -17284,10 +17348,10 @@ msgid ""
"following format:'[x, y]' (x and y are floating-point numbers in mm)."
msgstr ""
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr ""
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr ""
msgid "Size of the first layer bounding box"
@@ -17569,10 +17633,6 @@ msgstr "De naam is hetzelfde als een andere bestaande presetnaam"
msgid "create new preset failed."
msgstr "nieuwe voorinstelling maken mislukt."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -18625,9 +18685,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Rechthoek"
msgid "Printable Space"
msgstr "Printbare ruimte"
@@ -19887,6 +19944,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -20321,9 +20499,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "Geavanceerd"
#~ msgid "Packing data to 3MF"
#~ msgstr "De data wordt opgeslagen in een 3mf"
#~ msgid "°"
#~ msgstr "°"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: OrcaSlicer 2.3.0-rc\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: \n"
"Last-Translator: Krzysztof Morga <<tlumaczeniebs@gmail.com>>\n"
"Language-Team: \n"
@@ -16,26 +16,6 @@ msgstr ""
"First-Translator: Krzysztof Morga <tlumaczeniebs@gmail.com>\n"
"X-Generator: Poedit 3.6\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1583,6 +1563,30 @@ msgstr "Odległość między równoległymi krawędziami:"
msgid "Flip by Face 2"
msgstr "Obróć względem 2 powierzchni"
msgid "Assemble"
msgstr "Złożenie"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Uwaga"
@@ -1623,6 +1627,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Tekstura"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1749,6 +1801,9 @@ msgstr "Wybierz plik ZIP"
msgid "Choose one file (GCODE/3MF):"
msgstr "Wybierz jeden plik (GCODE/3MF):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Niektóre ustawienia zostały zmodyfikowane."
@@ -2157,9 +2212,6 @@ msgstr "Konwertuj z metra"
msgid "Restore to meters"
msgstr "Przywróć do metra"
msgid "Assemble"
msgstr "Złożenie"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Zmontuj wybrane obiekty w obiekt wieloczęściowy"
@@ -2673,6 +2725,10 @@ msgstr "Druk wielobarwny"
msgid "Line Type"
msgstr "Rodzaj linii"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Więcej"
@@ -2791,8 +2847,8 @@ msgstr "Proszę sprawdzić połączenie sieciowe drukarki i Orca."
msgid "Connecting..."
msgstr "Łączenie..."
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "Auto. uzupełnienie"
msgid "Load"
msgstr "Ładuj"
@@ -3552,9 +3608,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Dysza"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3624,9 +3677,6 @@ msgid "Print with filaments mounted on the back of the chassis"
msgstr ""
"Drukowanie przy użyciu materiałów zamontowanych na tylnej części obudowy"
msgid "Auto Refill"
msgstr "Auto. uzupełnienie"
msgid "Left"
msgstr "Lewo"
@@ -3795,8 +3845,8 @@ msgid "Click here to see more info"
msgstr "Kliknij tutaj, aby zobaczyć więcej informacji"
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3967,9 +4017,6 @@ msgstr "Wczytaj kształt z pliku STL..."
msgid "Settings"
msgstr "Ustawienia"
msgid "Texture"
msgstr "Tekstura"
msgid "Remove"
msgstr "Usuń"
@@ -4073,7 +4120,7 @@ msgstr ""
"Zresetowano do 0,1"
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
@@ -6660,6 +6707,9 @@ msgstr ""
"Aby wystawić pozytywną ocenę (4 lub 5 gwiazdek), wymagana \n"
"jest co najmniej jedna udana rejestracja tego profilu druku."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Status"
@@ -6670,6 +6720,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Nie pokazuj ponownie"
@@ -7613,7 +7671,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Rozwiąż błędy w cięciu i opublikuj ponownie."
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Wtyczka sieciowa nie jest wykrywana. Funkcje związane z siecią są "
"niedostępne."
@@ -8493,9 +8552,6 @@ msgstr "debugowanie"
msgid "trace"
msgstr "śledzenie"
msgid "Network Plug-in"
msgstr ""
msgid "Reload"
msgstr ""
@@ -8724,7 +8780,10 @@ msgstr "Publikacja została anulowana"
msgid "Slicing Plate 1"
msgstr "Krojenie płyty 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Pakowanie danych do 3mf"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -9042,8 +9101,8 @@ msgstr "Smooth High Temp Plate"
msgid "Textured PEI Plate"
msgstr "Textured PEI Plate"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "Cool Plate (SuperTack)"
msgid "Click here if you can't connect to the printer"
msgstr "Kliknij tutaj, jeśli nie możesz połączyć się z drukarką"
@@ -9587,7 +9646,7 @@ msgstr "Ściany"
msgid "Top/bottom shells"
msgstr "Powłoki górne/dolne"
msgid "Initial layer speed"
msgid "First layer speed"
msgstr "Szybkość pierwszej warstwy"
msgid "Other layers speed"
@@ -9706,9 +9765,6 @@ msgstr "Temperatura druku"
msgid "Nozzle temperature when printing"
msgstr "Temperatura dyszy podczas druku"
msgid "Cool Plate (SuperTack)"
msgstr "Cool Plate (SuperTack)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10647,13 +10703,13 @@ msgstr "Pokaż listę skrótów klawiszowych"
msgid "Global shortcuts"
msgstr "Globalne skróty"
msgid "Pan View"
msgid "Pan view"
msgstr "Przesuń widok"
msgid "Rotate View"
msgid "Rotate view"
msgstr "Obróć widok"
msgid "Zoom View"
msgid "Zoom view"
msgstr "Przybliż widok"
msgid ""
@@ -11090,7 +11146,7 @@ msgid "Open G-code file:"
msgstr "Otwórz plik G-code:"
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr ""
"Jeden obiekt ma pustą pierwszą warstwę i nie może być wydrukowany. Proszę "
@@ -11675,7 +11731,7 @@ msgid "Elephant foot compensation"
msgstr "Kompensacja \"stopy słonia\""
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr ""
"Zmniejszenie pierwszej warstwy w płaszczyźnie XY o określoną wartość, aby "
@@ -11895,49 +11951,49 @@ msgstr ""
"Temperatura stołu dla warstw poza pierwszą. Wartość 0 oznacza, że filament "
"nie obsługuje drukowania na Textured PEI Plate."
msgid "Initial layer"
msgid "First layer"
msgstr "Pierwsza warstwa"
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr "Temperatura stołu pierwszej warstwy"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr ""
"Temperatura stołu dla pierwszej warstwy. Wartość 0 oznacza, że filament nie "
"obsługuje druku na Cool Plate SuperTack."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr ""
"Temperatura stołu pierwszej warstwy. Wartość 0 oznacza, że filament nie "
"obsługuje drukowania na Cool Plate"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr ""
"Temperatura stołu dla pierwszej warstwy. Wartość 0 oznacza, że filament nie "
"nadaje się do druku na Textured Cool Plate"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr ""
"Temperatura stołu pierwszej warstwy. Wartość 0 oznacza, że filament nie "
"obsługuje drukowania na Engineering Plate"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr ""
"Temperatura stołu pierwszej warstwy. Wartość 0 oznacza, że filament nie "
"obsługuje drukowania na High Temp Plate"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr ""
"Temperatura stołu pierwszej warstwy. Wartość 0 oznacza, że filament nie "
@@ -14268,7 +14324,7 @@ msgstr ""
"przyspieszenia."
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr ""
"Przyspieszenie dla pierwszej warstwy. Użycie niższej wartości może poprawić "
@@ -14315,42 +14371,43 @@ msgstr "Jerk dla górnej powierzchni"
msgid "Jerk for infill."
msgstr "Jerk dla wypełnienia"
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr "Jerk pierwszej warstwy"
msgid "Jerk for travel."
msgstr "Jerk przemieszczenia"
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr ""
"Szerokość linii dla pierwszej warstwy. Jeśli jest wyrażona jako %, zostanie "
"obliczona na podstawie średnicy dyszy."
msgid "Initial layer height"
msgid "First layer height"
msgstr "Wysokość pierwszej warstwy"
#, fuzzy
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr ""
"Wysokość pierwszej warstwy. Nieznaczne zwiększenie grubości pierwszej "
"warstwy może poprawić przyczepność do stołu"
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr "Prędkość pierwszej warstwy z wyjątkiem pełnego wypełnienia"
msgid "Initial layer infill"
msgid "First layer infill"
msgstr "Wypełnienie pierwszej warstwy"
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr "Prędkość pełnego wypełnienia na pierwszej warstwie"
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr "Prędkość przemieszczenia pierwszej warstwy"
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr "Prędkość przemieszczenia dla pierwszej warstwy"
msgid "Number of slow layers"
@@ -14363,10 +14420,11 @@ msgstr ""
"Pierwsze kilka warstw jest drukowane wolniej niż zwykle. Prędkość jest "
"stopniowo zwiększana w sposób liniowy przez określoną liczbę warstw."
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr "Temperatura dyszy dla pierwszej warstwy"
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr ""
"Temperatura dyszy do drukowania pierwszej warstwy przy użyciu tego filamentu"
@@ -14875,9 +14933,9 @@ msgstr "Etykietuj obiekty"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Włącz to, aby dodać komentarze do pliku G-Code, oznaczające ruchy druku, do "
"jakiego obiektu należą. Jest to przydatne dla wtyczki Octoprint "
@@ -15824,13 +15882,13 @@ msgstr "Rozszerzenie tratwy"
msgid "Expand all raft layers in XY plane."
msgstr "Rozszerzanie wszystkich warstw tratwy w płaszczyźnie XY"
msgid "Initial layer density"
msgid "First layer density"
msgstr "Gęstość pierwszej warstwy"
msgid "Density of the first raft or support layer."
msgstr "Gęstość pierwszej warstwy raftu lub podpór"
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr "Rozszerzenie pierwszej warstwy"
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -17415,6 +17473,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "Prostokąt"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -18420,10 +18484,10 @@ msgstr ""
"Wektor punktów otoczki wypukłej pierwszej warstwy. Każdy element ma "
"następujący format: „[x, y]” (x i y są liczbami zmiennoprzecinkowymi w mm)."
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr "Ogranicznik lewego dolnego narożnika obszaru pierwszej warstwy"
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr "Prawy górny róg obwiedni pierwszej warstwy"
msgid "Size of the first layer bounding box"
@@ -18720,10 +18784,6 @@ msgstr "Nazwa jest taka sama jak nazwa innego istniejącego ustwienia"
msgid "create new preset failed."
msgstr "utworzenie nowego profilu nie powiodło się."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -19833,9 +19893,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Prostokąt"
msgid "Printable Space"
msgstr "Przestrzeń do druku"
@@ -21182,6 +21239,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr "BRAK WYCISKANIA"
msgid "Volumetric speed"
msgstr "Prędkości Przepływu"
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -21616,9 +21794,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "Zaawansowane"
#~ msgid "Packing data to 3MF"
#~ msgstr "Pakowanie danych do 3mf"
#~ msgid ""
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
#~ "bridge. Default is 100%.\n"
@@ -24131,12 +24306,6 @@ msgstr ""
#~ msgid "Click to continue (Alt + Right Arrow)"
#~ msgstr "Kliknij, aby kontynuować (Alt + Strzałka w prawo)"
#~ msgid "NO RAMMING AT ALL"
#~ msgstr "BRAK WYCISKANIA"
#~ msgid "Volumetric speed"
#~ msgstr "Prędkości Przepływu"
#~ msgid "Move over surface"
#~ msgstr "Ruch po powierzchni"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -11,26 +11,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
"X-Generator: Localazy (https://localazy.com)\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1540,6 +1520,30 @@ msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Assemble"
msgstr "Montera"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Iakttag"
@@ -1577,6 +1581,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Textur"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1690,6 +1742,9 @@ msgstr ""
msgid "Choose one file (GCODE/3MF):"
msgstr ""
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Några inställningar har ändrats."
@@ -2091,9 +2146,6 @@ msgstr "Konvertera ifrån meter"
msgid "Restore to meters"
msgstr "Återställ till meter"
msgid "Assemble"
msgstr "Montera"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Montera de valda objekten till ett objekt med multipla delar"
@@ -2603,6 +2655,10 @@ msgstr "Multifärgs Utskrift"
msgid "Line Type"
msgstr "Linje typ"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Mer"
@@ -2720,7 +2776,7 @@ msgstr "Kontrollera nätverksanslutningen för skrivaren och Studio."
msgid "Connecting..."
msgstr "Sammankopplar..."
msgid "Auto-refill"
msgid "Auto Refill"
msgstr ""
msgid "Load"
@@ -3476,9 +3532,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Nozzel"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3541,9 +3594,6 @@ msgstr "Skriv ut med filament i AMS"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Skriv ut med filament på en extern spole"
msgid "Auto Refill"
msgstr ""
msgid "Left"
msgstr "Vänster"
@@ -3706,8 +3756,8 @@ msgid "Click here to see more info"
msgstr "Klicka här för att se mer information"
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3863,9 +3913,6 @@ msgstr "Ladda form ifrån STL..."
msgid "Settings"
msgstr "Inställningar"
msgid "Texture"
msgstr "Textur"
msgid "Remove"
msgstr "Ta bort"
@@ -3964,7 +4011,7 @@ msgstr ""
"Återställ till 0.1"
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
@@ -6491,6 +6538,9 @@ msgstr ""
"At least one successful print record of this print profile is required \n"
"to give a positive rating (4 or 5 stars)."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Status"
@@ -6501,6 +6551,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Visa inte igen"
@@ -7424,7 +7482,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Lös berednings felen och publicera igen."
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Nätverks plugin programmet detekteras inte. Nätverksrelaterade funktioner är "
"inte tillgängliga."
@@ -8278,9 +8337,6 @@ msgstr "felsök"
msgid "trace"
msgstr "spåra"
msgid "Network Plug-in"
msgstr ""
msgid "Reload"
msgstr ""
@@ -8509,7 +8565,10 @@ msgstr "Publiceringen avbröts"
msgid "Slicing Plate 1"
msgstr "Beredningsplatta 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Packar data till 3mf"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -8827,7 +8886,7 @@ msgstr ""
msgid "Textured PEI Plate"
msgstr "Texturerad PEI-platta"
msgid "Cool Plate (Supertack)"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid "Click here if you can't connect to the printer"
@@ -9349,7 +9408,7 @@ msgstr "Väggar"
msgid "Top/bottom shells"
msgstr "Topp/botten skal"
msgid "Initial layer speed"
msgid "First layer speed"
msgstr "Hastighet på första lager"
msgid "Other layers speed"
@@ -9465,9 +9524,6 @@ msgstr "Utskrifts temperatur"
msgid "Nozzle temperature when printing"
msgstr "Nozzel temperatur vid utskrift"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10359,13 +10415,13 @@ msgstr "Visa tangentbordets genvägs lista"
msgid "Global shortcuts"
msgstr "Övergripande genvägar"
msgid "Pan View"
msgid "Pan view"
msgstr "Panoreringsvy"
msgid "Rotate View"
msgid "Rotate view"
msgstr "Rotera vy"
msgid "Zoom View"
msgid "Zoom view"
msgstr "Zoomvy"
msgid ""
@@ -10799,7 +10855,7 @@ msgid "Open G-code file:"
msgstr "Öppna G-kod fil:"
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr ""
"Ett objekt har ett tomt första lager och kan inte skrivas ut. Skär ut botten "
@@ -11311,7 +11367,7 @@ msgid "Elephant foot compensation"
msgstr "Elefant fots kompensation"
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr ""
"Minska första lager på byggplattan för att kompensera elefant fots effekten"
@@ -11516,45 +11572,45 @@ msgstr ""
"Byggplattans temperatur efter det första lagret. 0 betyder att filamentet "
"inte stöds på den texturerade PEI-plattan."
msgid "Initial layer"
msgid "First layer"
msgstr "Första lager"
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr "Byggplattans första lager temperatur"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr ""
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr ""
"Detta är byggplattans temperatur för första lager. Värdet 0 betyder att "
"filamentet inte stöder utskrift på Cool Plate."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr ""
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr ""
"Detta är byggplattans temperatur för första lager. Värdet 0 betyder att "
"filamentet inte stöder utskrift på Engineering Plate."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr ""
"Detta är byggplattans temperatur för första lager. Värdet 0 betyder att "
"filamentet inte stöder utskrift på High Temp Plate."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr ""
"Byggplattans temperatur för första lager 0 betyder att filamentet inte stöds "
@@ -13396,7 +13452,7 @@ msgid ""
msgstr ""
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr ""
"Utskrifts acceleration för första lager. Ett lägre värde kan förbättra "
@@ -13439,41 +13495,42 @@ msgstr ""
msgid "Jerk for infill."
msgstr ""
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr ""
msgid "Jerk for travel."
msgstr ""
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr ""
msgid "Initial layer height"
msgid "First layer height"
msgstr "Första lagerhöjd"
#, fuzzy
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr ""
"Första lagerhöjd. Högre första lager kan förbättra objektets fäste på "
"byggplattan"
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr ""
"Hastigheten för det första lagret förutom för solida ifyllnads sektioner"
msgid "Initial layer infill"
msgid "First layer infill"
msgstr "Första lager ifyllnad"
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr "Hastigheten för fasta ifyllnadsdelar av det första lagret"
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr ""
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr ""
msgid "Number of slow layers"
@@ -13484,10 +13541,11 @@ msgid ""
"increased in a linear fashion over the specified number of layers."
msgstr ""
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr "Nozzel temperatur för första lager"
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr "Nozzel temperatur för första lager med detta filament"
msgid "Full fan speed at layer"
@@ -13925,9 +13983,9 @@ msgstr ""
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 "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
msgid "Exclude objects"
@@ -14723,13 +14781,13 @@ msgstr ""
msgid "Expand all raft layers in XY plane."
msgstr "Öka alla raft lager i XY planet"
msgid "Initial layer density"
msgid "First layer density"
msgstr "Första lager densitet"
msgid "Density of the first raft or support layer."
msgstr "Densiteten av första raft eller support lager"
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr "Första lager expansion"
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -16082,6 +16140,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "Rektangel"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -16985,10 +17049,10 @@ msgid ""
"following format:'[x, y]' (x and y are floating-point numbers in mm)."
msgstr ""
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr ""
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr ""
msgid "Size of the first layer bounding box"
@@ -17278,10 +17342,6 @@ msgstr "Namnet är detsamma som ett annat befintligt förinställt namn"
msgid "create new preset failed."
msgstr "skapande av ny inställning misslyckades."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -18320,9 +18380,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Rektangel"
msgid "Printable Space"
msgstr "Utskriftsbar yta"
@@ -19563,6 +19620,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -19951,9 +20129,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "Avancerat"
#~ msgid "Packing data to 3MF"
#~ msgstr "Packar data till 3mf"
#~ msgid "°"
#~ msgstr "°"

View File

@@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: 2025-09-30 09:12+0300\n"
"Last-Translator: GlauTech\n"
"Language-Team: \n"
@@ -14,26 +14,6 @@ msgstr ""
"Plural-Forms: nplurals=2; plural=(n==1) ? 0 : 1;\n"
"X-Generator: Poedit 3.7\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1581,6 +1561,30 @@ msgstr "Paralel mesafe:"
msgid "Flip by Face 2"
msgstr "Yüzey 2ye Göre Çevir"
msgid "Assemble"
msgstr "Birleştir"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Bildirim"
@@ -1618,6 +1622,54 @@ msgstr "\"%1%\" yapılandırma dosyası yüklendi ancak bazı değerler tanınam
msgid "Based on PrusaSlicer and BambuStudio"
msgstr "PrusaSlicer ve BambuStudio'ya dayanmaktadır"
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Doku"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1743,6 +1795,9 @@ msgstr "ZIP dosyasını seçin"
msgid "Choose one file (GCODE/3MF):"
msgstr "Bir dosya seçin (GCODE/3MF):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Bazı ön ayarlar değiştirildi."
@@ -2151,9 +2206,6 @@ msgstr "Metreden dönüştür"
msgid "Restore to meters"
msgstr "Metreye geri çevir"
msgid "Assemble"
msgstr "Birleştir"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Seçilen nesneleri birden çok parçalı bir nesneyle birleştirin"
@@ -2654,6 +2706,10 @@ msgstr "Çok Renkli Baskı"
msgid "Line Type"
msgstr "Çizgi Tipi"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Daha"
@@ -2772,8 +2828,8 @@ msgstr "Lütfen yazıcının ve Studio'nun ağ bağlantısını kontrol edin."
msgid "Connecting..."
msgstr "Bağlanıyor..."
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "Otomatik Doldurma"
msgid "Load"
msgstr "Yükle"
@@ -3532,9 +3588,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Nozul"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3601,9 +3654,6 @@ msgstr "AMS içerisindeki filamentlerle yazdırma"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Kasanın arkasına monte edilmiş filamentler ile yazdırma"
msgid "Auto Refill"
msgstr "Otomatik Doldurma"
msgid "Left"
msgstr "Sol"
@@ -3769,8 +3819,8 @@ msgid "Click here to see more info"
msgstr "daha fazla bilgi görmek için burayı tıklayın"
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3937,9 +3987,6 @@ msgstr "Şekli STL'den yükle..."
msgid "Settings"
msgstr "Ayarlar"
msgid "Texture"
msgstr "Doku"
msgid "Remove"
msgstr "Kaldır"
@@ -4040,7 +4087,7 @@ msgstr ""
"0,1'e sıfırla."
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
@@ -6631,6 +6678,9 @@ msgstr ""
"Bu baskı profiline olumlu bir puan vermek için (4 veya 5 yıldız) en az bir "
"başarılı baskı kaydı gereklidir."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Durum"
@@ -6641,6 +6691,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Bir daha gösterme"
@@ -7591,7 +7649,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Lütfen dilimleme hatalarını giderip tekrar yayınlayın."
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr "Ağ Eklentisi algılanmadı. Ağla ilgili özellikler kullanılamıyor."
msgid ""
@@ -8478,9 +8537,6 @@ msgstr "hata ayıklama"
msgid "trace"
msgstr "iz"
msgid "Network Plug-in"
msgstr ""
msgid "Reload"
msgstr ""
@@ -8709,7 +8765,10 @@ msgstr "Yayınlama iptal edildi"
msgid "Slicing Plate 1"
msgstr "Dilimleme Plakası 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Verileri 3mf'ye paketle"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -9026,8 +9085,8 @@ msgstr "Smooth High Temp Plate"
msgid "Textured PEI Plate"
msgstr "Textured PEI Plate"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "Cool Plate (SuperTack)"
msgid "Click here if you can't connect to the printer"
msgstr "Yazıcıya bağlanamıyorsanız burayı tıklayın"
@@ -9579,7 +9638,7 @@ msgstr "Duvarlar"
msgid "Top/bottom shells"
msgstr "Alt / Üst Katmanlar"
msgid "Initial layer speed"
msgid "First layer speed"
msgstr "Başlangıç Katmanı"
msgid "Other layers speed"
@@ -9694,9 +9753,6 @@ msgstr "Yazdırma Sıcaklığı"
msgid "Nozzle temperature when printing"
msgstr "Yazdırma sırasında nozul sıcaklığı"
msgid "Cool Plate (SuperTack)"
msgstr "Cool Plate (SuperTack)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10629,13 +10685,13 @@ msgstr "Klavye kısayolları listesini göster"
msgid "Global shortcuts"
msgstr "Genel kısayollar"
msgid "Pan View"
msgid "Pan view"
msgstr "Pan Görünümü"
msgid "Rotate View"
msgid "Rotate view"
msgstr "Görüntüyü döndür"
msgid "Zoom View"
msgid "Zoom view"
msgstr "Zoom Görünümü"
msgid ""
@@ -11073,7 +11129,7 @@ msgid "Open G-code file:"
msgstr "G kodu dosyasınıın:"
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr ""
"Bir nesnenin başlangıç katmanı boş ve yazdırılamıyor. Lütfen alt kısmı kesin "
@@ -11655,7 +11711,7 @@ msgid "Elephant foot compensation"
msgstr "Fil ayağı telafi oranı"
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr ""
"Fil ayağı etkisini telafi etmek için baskı plakasındaki ilk katmanı küçültün."
@@ -11874,49 +11930,49 @@ msgstr ""
"İlk katman dışındaki katmanlar için yatak sıcaklığı. 0 Değeri, filamentin "
"Dokulu PEI Plaka üzerine yazdırmayı desteklemediği anlamına gelir."
msgid "Initial layer"
msgid "First layer"
msgstr "Başlangıç katmanı"
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr "İlk katman yatak sıcaklığı"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr ""
"İlk katmanın yatak sıcaklığı. 0 değeri, filamentin Soğuk Plaka SuperTack "
"üzerine yazdırmayı desteklemediği anlamına gelir."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr ""
"İlk katmanın yatak sıcaklığı. 0 değeri, filamentin Cool Plate üzerine "
"yazdırmayı desteklemediği anlamına gelir."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr ""
"İlk katmanın yatak sıcaklığı. 0 Değeri, filamentin Dokulu Soğuk Plaka "
"üzerine yazdırmayı desteklemediği anlamına gelir."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr ""
"İlk katmanın yatak sıcaklığı. Değer 0, filamentin Mühendislik Plakasına "
"yazdırmayı desteklemediği anlamına gelir."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr ""
"İlk katmanın yatak sıcaklığı. 0 değeri, filamentin Yüksek Sıcaklık Plakasına "
"yazdırmayı desteklemediği anlamına gelir."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr ""
"İlk katmanın yatak sıcaklığı. 0 Değeri, filamentin Dokulu PEI Plaka üzerine "
@@ -14217,7 +14273,7 @@ msgstr ""
"%100), varsayılan ivmeye göre hesaplanacaktır."
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr ""
"Başlangıç katmanının hızlandırılması. Daha düşük bir değerin kullanılması "
@@ -14262,42 +14318,43 @@ msgstr "Üst yüzey için JERK değeri."
msgid "Jerk for infill."
msgstr "Dolgu için JERK değeri."
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr "İlk katman için JERK değeri."
msgid "Jerk for travel."
msgstr "Seyahat için JERK değeri."
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr ""
"İlk katmanın çizgi genişliği. % olarak ifade edilirse Nozul çapı üzerinden "
"hesaplanacaktır."
msgid "Initial layer height"
msgid "First layer height"
msgstr "Başlangıç katman yüksekliği"
#, fuzzy
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr ""
"İlk katmanın yüksekliği. İlk katman yüksekliğini biraz kalın yapmak, baskı "
"plakasının yapışmasını iyileştirebilir."
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr "Katı dolgu kısmı dışındaki ilk katmanın hızı."
msgid "Initial layer infill"
msgid "First layer infill"
msgstr "Başlangıç katman dolgusu"
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr "İlk katmanın katı dolgu kısmının hızı."
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr "İlk katman seyahat hızı"
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr "İlk katman seyahat hızı."
msgid "Number of slow layers"
@@ -14310,10 +14367,11 @@ msgstr ""
"İlk birkaç katman normalden daha yavaş yazdırılır. Hız, belirtilen katman "
"sayısı boyunca doğrusal bir şekilde kademeli olarak artırılır."
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr "İlk katman nozul sıcaklığı"
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr "Bu filamenti kullanırken ilk katmanı yazdırmak için nozul sıcaklığı."
msgid "Full fan speed at layer"
@@ -14842,9 +14900,9 @@ msgstr "Nesneleri etiketle"
msgid ""
"Enable this to add comments into the G-code labeling print moves with what "
"object they belong to, which is useful for the Octoprint CancelObject "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"G-Code etiketleme yazdırma hareketlerine ait oldukları nesneyle ilgili "
"yorumlar eklemek için bunu etkinleştirin; bu, Octoprint CancelObject "
@@ -15819,13 +15877,13 @@ msgstr "Raft genişletme"
msgid "Expand all raft layers in XY plane."
msgstr "XY düzlemindeki tüm rafa katmanlarını genişlet."
msgid "Initial layer density"
msgid "First layer density"
msgstr "Başlangıç katman yoğunluğu"
msgid "Density of the first raft or support layer."
msgstr "İlk sal veya destek katmanının yoğunluğu."
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr "İlk katman genişletme"
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -17427,6 +17485,12 @@ msgstr ""
"fileto bulunan bir koni.\n"
"3. Kaburga: Kule duvarına gelişmiş denge için dört kaburga ekler."
msgid "Rectangle"
msgstr "Dikdörtgen"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr "Ekstra rib uzunluğu"
@@ -18449,10 +18513,10 @@ msgstr ""
"Birinci katmanın dışbükey gövdesinin noktalarının vektörü. Her öğe şu "
"formata sahiptir:'[x, y]' (x ve y, mm cinsinden kayan noktalı sayılardır)."
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr "İlk katman sınırlayıcı kutusunun sol alt köşesi"
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr "İlk katman sınırlayıcı kutusunun sağ üst köşesi"
msgid "Size of the first layer bounding box"
@@ -18750,10 +18814,6 @@ msgstr "Ad, mevcut başka bir ön ayar adıyla aynı"
msgid "create new preset failed."
msgstr "yeni ön ayar oluşturma başarısız oldu."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -19874,9 +19934,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Dikdörtgen"
msgid "Printable Space"
msgstr "Yazdırılabilir Alan"
@@ -21241,6 +21298,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -21686,14 +21864,12 @@ msgstr ""
#~ msgstr "Eski ağ eklentisini kullan"
#~ msgid ""
#~ "Disable to use latest network plug-in that supports new BambuLab firmwares."
#~ "Disable to use latest network plug-in that supports new BambuLab "
#~ "firmwares."
#~ msgstr ""
#~ "Yeni BambuLab yazılımlarını destekleyen en son ağ eklentisini kullanmayı "
#~ "devre dışı bırakın."
#~ msgid "Packing data to 3MF"
#~ msgstr "Verileri 3mf'ye paketle"
#~ msgid ""
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
#~ "bridge. Default is 100%.\n"
@@ -23470,7 +23646,7 @@ msgstr ""
#~ msgstr "Sızıntı önleme şu anda ana kule etkinken desteklenmemektedir."
#~ msgid ""
#~ "Height of initial layer. Making initial layer height to be thick slightly "
#~ "Height of the first layer. Making the first layer height thicker "
#~ "can improve build plate adhension"
#~ msgstr ""
#~ "İlk katmanın yüksekliği. İlk katman yüksekliğini biraz kalın yapmak, "

View File

@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: orcaslicerua\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: 2025-03-07 09:30+0200\n"
"Last-Translator: \n"
"Language-Team: Ukrainian\n"
@@ -20,26 +20,6 @@ msgstr ""
"X-Crowdin-File-ID: 13\n"
"X-Generator: Poedit 3.5\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1589,6 +1569,30 @@ msgstr "Паралельна відстань:"
msgid "Flip by Face 2"
msgstr "Перевернути за Гранню 2"
msgid "Assemble"
msgstr "Об'єднати у збірку"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Повідомлення"
@@ -1627,6 +1631,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr ""
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Текстура"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1751,6 +1803,9 @@ msgstr "Виберіть ZIP файл"
msgid "Choose one file (GCODE/3MF):"
msgstr "Виберіть один файл (GCODE/3MF):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Деякі налаштування змінено."
@@ -2159,9 +2214,6 @@ msgstr "Перетворити з метричної"
msgid "Restore to meters"
msgstr "Відновити в метричну"
msgid "Assemble"
msgstr "Об'єднати у збірку"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Зібрати вибрані об'єкти в об'єкт з кількома частинами"
@@ -2679,6 +2731,10 @@ msgstr "Багатоколірний друк"
msgid "Line Type"
msgstr "Тип лінії"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Більше"
@@ -2796,8 +2852,8 @@ msgstr "Перевірте мережеве з'єднання принтера
msgid "Connecting..."
msgstr "Підключення..."
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "Автоматична заміна"
msgid "Load"
msgstr "Завантажити"
@@ -3556,9 +3612,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Сопло"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3626,9 +3679,6 @@ msgstr "Друк філаментами в ams"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "Друк із нитками, встановленими на задній частині корпусу"
msgid "Auto Refill"
msgstr "Автоматична заміна"
msgid "Left"
msgstr "Ліво"
@@ -3797,8 +3847,8 @@ msgid "Click here to see more info"
msgstr "натисніть тут, щоб побачити більше інформації"
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3967,9 +4017,6 @@ msgstr "Завантажити форму з STL..."
msgid "Settings"
msgstr "Налаштування"
msgid "Texture"
msgstr "Текстура"
msgid "Remove"
msgstr "Видалити"
@@ -4074,7 +4121,7 @@ msgstr ""
"Скинути на 0,1"
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
@@ -6671,6 +6718,9 @@ msgstr ""
"Для того щоб поставити позитивний рейтинг (4 або 5 зірок), потрібно \n"
"мати принаймні один успішний запис про друк з цим профілем друку."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Статус"
@@ -6681,6 +6731,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Більше не показувати"
@@ -7631,7 +7689,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Виправте помилки нарізки та опублікуйте знову."
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Мережевий плагін не виявлено. Функції, пов'язані з мережею, недоступні."
@@ -8520,9 +8579,6 @@ msgstr "налагодження"
msgid "trace"
msgstr "слід"
msgid "Network Plug-in"
msgstr ""
msgid "Reload"
msgstr ""
@@ -8752,7 +8808,10 @@ msgstr "Публікація скасована"
msgid "Slicing Plate 1"
msgstr "Пластина для нарізки 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Упаковка даних у 3mf"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -9068,8 +9127,8 @@ msgstr "Гладка Високотемпературна Пластина"
msgid "Textured PEI Plate"
msgstr "Текстурована PEI пластина"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "Холодна пластина (SuperTack)"
msgid "Click here if you can't connect to the printer"
msgstr "Клацніть тут, якщо ви не можете підключитися до принтера"
@@ -9615,7 +9674,7 @@ msgstr "Стінки"
msgid "Top/bottom shells"
msgstr "Верхня/нижня оболонка"
msgid "Initial layer speed"
msgid "First layer speed"
msgstr "Швидкість першого шару"
msgid "Other layers speed"
@@ -9733,9 +9792,6 @@ msgstr "Температура друку"
msgid "Nozzle temperature when printing"
msgstr "Температура сопла під час друку"
msgid "Cool Plate (SuperTack)"
msgstr "Холодна пластина (SuperTack)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10676,13 +10732,13 @@ msgstr "Показати список клавіш"
msgid "Global shortcuts"
msgstr "Глобальні ярлики"
msgid "Pan View"
msgid "Pan view"
msgstr "Панорамний вигляд"
msgid "Rotate View"
msgid "Rotate view"
msgstr "Повернути вигляд"
msgid "Zoom View"
msgid "Zoom view"
msgstr "Перегляд масштабу"
msgid ""
@@ -11117,7 +11173,7 @@ msgid "Open G-code file:"
msgstr "Відкрийте файл G-коду:"
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr ""
"Один об'єкт має порожній початковий шар і не може бути надрукований. Будь "
@@ -11687,7 +11743,7 @@ msgid "Elephant foot compensation"
msgstr "Компенсація слонової стопи"
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr ""
"Зменшення початкового шару на робочій пластині для компенсації ефекту "
@@ -11902,49 +11958,49 @@ msgstr ""
"Температура столу для всіх шарів, крім першого. Значення 0 означає, що "
"філамент не підтримує друк на Текстурованій Пластині PEI"
msgid "Initial layer"
msgid "First layer"
msgstr "Перший шар"
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr "Температура першого шару"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr ""
"Температура столу першого шару. Значення 0 означає, що філамент не підтримує "
"друк на Холодній Пластині SuperTack"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr ""
"Температура столу першого шару. Значення 0 означає, що філамент не підтримує "
"друк на Холодній Пластині"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr ""
"Температура столу першого шару. Значення 0 означає, що філамент не підтримує "
"друк на Текстурованій Холодній Пластині"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr ""
"Температура столу першого шару. Значення 0 означає, що філамент не підтримує "
"друк на Інженерній Пластині"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr ""
"Температура столу першого шару. Значення 0 означає, що філамент не підтримує "
"друк на Високотемпературній Пластині"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr ""
"Температура столу першого шару. Значення 0 означає, що філамент не підтримує "
@@ -14266,7 +14322,7 @@ msgstr ""
"за замовчуванням."
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr ""
"Прискорення першого шару. Використання меншого значення може покращити "
@@ -14310,42 +14366,43 @@ msgstr "Ривок для верхньої поверхні"
msgid "Jerk for infill."
msgstr "Ривок для заповнення"
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr "Ривок для першого шару"
msgid "Jerk for travel."
msgstr "Ривок для переміщення"
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr ""
"Ширина лінії першого шару. Якщо виражена у %, вона буде розрахована по "
"діаметру сопла."
msgid "Initial layer height"
msgid "First layer height"
msgstr "Висота першого шару"
#, fuzzy
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr ""
"Висота першого шару. Невелике збільшення висоти першого шару може покращити "
"прилипання до робочої пластини"
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr "Швидкість першого шару, за винятком зони суцільного заповнення"
msgid "Initial layer infill"
msgid "First layer infill"
msgstr "Заповнення першого шару"
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr "Швидкість зони суцільного заповнення першого шару"
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr "Швидкість переміщення першого шару"
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr "Швидкість переміщення першого шару"
msgid "Number of slow layers"
@@ -14358,10 +14415,11 @@ msgstr ""
"Перші кілька шарів друкуються повільніше, ніж зазвичай. Швидкість "
"поступовозбільшується лінійним чином за заданою кількістю шарів."
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr "Температура сопла першого шару"
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr ""
"Температура сопла для друку першого шару під час використання цього філаменту"
@@ -14873,9 +14931,9 @@ msgstr "Маркувати об'єкти"
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 "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Увімкніть цей параметр, щоб додати коментарі до друку друку мітки G-Code із "
"зазначенням об'єкта, якому вони належать, що корисно для модуля Octoprint "
@@ -15815,13 +15873,13 @@ msgstr "Розширення підкладки"
msgid "Expand all raft layers in XY plane."
msgstr "Розширити всі шари підкладки в площині XY"
msgid "Initial layer density"
msgid "First layer density"
msgstr "Початкова щільність шару"
msgid "Density of the first raft or support layer."
msgstr "Щільність першого шару підкладки або підтримки"
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr "Розширення початкового шару"
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -17389,6 +17447,12 @@ msgid ""
"3. Rib: Adds four ribs to the tower wall for enhanced stability."
msgstr ""
msgid "Rectangle"
msgstr "Прямокутник"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr ""
@@ -18371,10 +18435,10 @@ msgstr ""
"Вектор точок опуклої оболонки першого шару. Кожен елемент має такий формат: "
"'[x, y]' (x і y — числа з плаваючою комою в мм)."
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr "Нижній лівий кут обмежувальної рамки першого шару"
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr "Верхній правий кут обмежувальної рамки першого шару"
msgid "Size of the first layer bounding box"
@@ -18671,10 +18735,6 @@ msgstr "Назва така сама, як інша існуюча назва н
msgid "create new preset failed."
msgstr "не вдалося створити новий передвстановлений параметр."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -19791,9 +19851,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Прямокутник"
msgid "Printable Space"
msgstr "Простір для друку"
@@ -21144,6 +21201,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -21579,9 +21757,6 @@ msgstr ""
#~ msgid "Advance"
#~ msgstr "Профі"
#~ msgid "Packing data to 3MF"
#~ msgstr "Упаковка даних у 3mf"
#~ msgid ""
#~ "Filament shrinkage will not be used because filament shrinkage for the "
#~ "used filaments differs significantly."

View File

@@ -2,7 +2,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: 2025-10-02 17:43+0700\n"
"Last-Translator: \n"
"Language-Team: hainguyen.ts13@gmail.com\n"
@@ -14,26 +14,6 @@ msgstr ""
"X-Generator: Poedit 3.7\n"
"X-Poedit-Basepath: .\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
msgid "right"
msgstr ""
@@ -1564,6 +1544,30 @@ msgstr "Khoảng cách song song:"
msgid "Flip by Face 2"
msgstr "Lật theo mặt 2"
msgid "Assemble"
msgstr "Lắp ráp"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "Thông báo"
@@ -1601,6 +1605,54 @@ msgstr ""
msgid "Based on PrusaSlicer and BambuStudio"
msgstr "Dựa trên PrusaSlicer và BambuStudio"
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "Kết cấu"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1724,6 +1776,9 @@ msgstr "Chọn file ZIP"
msgid "Choose one file (GCODE/3MF):"
msgstr "Chọn một file (GCODE/3MF):"
msgid "Ext"
msgstr ""
msgid "Some presets are modified."
msgstr "Một số preset đã được sửa đổi."
@@ -2130,9 +2185,6 @@ msgstr "Chuyển đổi từ mét"
msgid "Restore to meters"
msgstr "Khôi phục về mét"
msgid "Assemble"
msgstr "Lắp ráp"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "Lắp ráp các vật thể đã chọn thành vật thể có nhiều phần"
@@ -2629,6 +2681,10 @@ msgstr "In nhiều màu"
msgid "Line Type"
msgstr "Loại đường"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "Thêm"
@@ -2746,8 +2802,8 @@ msgstr "Vui lòng kiểm tra kết nối mạng của máy in và Orca."
msgid "Connecting..."
msgstr "Đang kết nối..."
msgid "Auto-refill"
msgstr ""
msgid "Auto Refill"
msgstr "Tự động cấp lại"
msgid "Load"
msgstr "Nạp"
@@ -3492,9 +3548,6 @@ msgstr ""
msgid "Nozzle"
msgstr "Đầu phun"
msgid "Ext"
msgstr ""
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3561,9 +3614,6 @@ msgstr "In với filament trong AMS"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "In với filament gắn ở mặt sau khung"
msgid "Auto Refill"
msgstr "Tự động cấp lại"
msgid "Left"
msgstr "Trái"
@@ -3725,8 +3775,8 @@ msgid "Click here to see more info"
msgstr "nhấn vào đây để xem thêm thông tin"
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr ""
msgid "Restart Required"
@@ -3892,9 +3942,6 @@ msgstr "Tải hình dạng từ STL..."
msgid "Settings"
msgstr "Cài đặt"
msgid "Texture"
msgstr "Kết cấu"
msgid "Remove"
msgstr "Xóa"
@@ -3994,7 +4041,7 @@ msgstr ""
"Đặt lại về 0.1."
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
@@ -6561,6 +6608,9 @@ msgstr ""
"Cần ít nhất một bản ghi in thành công của cấu hình in này \n"
"để đưa ra đánh giá tích cực (4 hoặc 5 sao)."
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "Trạng thái"
@@ -6571,6 +6621,14 @@ msgstr ""
msgid "Assistant(HMS)"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "Không hiển thị lại"
@@ -7505,7 +7563,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "Vui lòng giải quyết các lỗi slice và xuất bản lại."
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr ""
"Không phát hiện plug-in mạng. Các tính năng liên quan đến mạng không khả "
"dụng."
@@ -8376,9 +8435,6 @@ msgstr "gỡ lỗi"
msgid "trace"
msgstr "theo dõi"
msgid "Network Plug-in"
msgstr ""
msgid "Reload"
msgstr ""
@@ -8607,7 +8663,10 @@ msgstr "Xuất bản đã bị hủy"
msgid "Slicing Plate 1"
msgstr "Đang slice bản 1"
msgid "Packing data to 3mf"
msgid "Packing data to 3MF"
msgstr "Đang đóng gói dữ liệu vào 3mf"
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
@@ -8920,8 +8979,8 @@ msgstr "Bản Smooth nhiệt độ cao"
msgid "Textured PEI Plate"
msgstr "Bản Textured PEI"
msgid "Cool Plate (Supertack)"
msgstr ""
msgid "Cool Plate (SuperTack)"
msgstr "Bản Cool (SuperTack)"
msgid "Click here if you can't connect to the printer"
msgstr "Nhấp vào đây nếu bạn không thể kết nối với máy in"
@@ -9458,7 +9517,7 @@ msgstr "Thành"
msgid "Top/bottom shells"
msgstr "Vỏ trên/dưới"
msgid "Initial layer speed"
msgid "First layer speed"
msgstr "Tốc độ lớp đầu tiên"
msgid "Other layers speed"
@@ -9570,9 +9629,6 @@ msgstr "Nhiệt độ in"
msgid "Nozzle temperature when printing"
msgstr "Nhiệt độ đầu phun khi in"
msgid "Cool Plate (SuperTack)"
msgstr "Bản Cool (SuperTack)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10499,13 +10555,13 @@ msgstr "Hiển thị danh sách phím tắt"
msgid "Global shortcuts"
msgstr "Phím tắt toàn cục"
msgid "Pan View"
msgid "Pan view"
msgstr "Kéo chế độ xem"
msgid "Rotate View"
msgid "Rotate view"
msgstr "Xoay chế độ xem"
msgid "Zoom View"
msgid "Zoom view"
msgstr "Thu phóng chế độ xem"
msgid ""
@@ -10937,7 +10993,7 @@ msgid "Open G-code file:"
msgstr "Mở file G-code:"
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr ""
"Một đối tượng có lớp đầu tiên trống và không thể in. Vui lòng cắt phần dưới "
@@ -11509,7 +11565,7 @@ msgid "Elephant foot compensation"
msgstr "Bù chân voi"
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr "Co lớp đầu tiên trên bàn in để bù hiệu ứng chân voi."
@@ -11720,49 +11776,49 @@ msgstr ""
"Nhiệt độ bàn cho các lớp ngoại trừ lớp đầu tiên. Giá trị 0 có nghĩa là "
"filament không hỗ trợ in trên bản Textured PEI."
msgid "Initial layer"
msgid "First layer"
msgstr "Lớp đầu tiên"
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr "Nhiệt độ bàn lớp đầu tiên"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr ""
"Nhiệt độ bàn của lớp đầu tiên. Giá trị 0 có nghĩa là filament không hỗ trợ "
"in trên bản Cool SuperTack."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr ""
"Nhiệt độ bàn của lớp đầu tiên. Giá trị 0 có nghĩa là filament không hỗ trợ "
"in trên bản Cool."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr ""
"Nhiệt độ bàn của lớp đầu tiên. Giá trị 0 có nghĩa là filament không hỗ trợ "
"in trên bản Textured Cool."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr ""
"Nhiệt độ bàn của lớp đầu tiên. Giá trị 0 có nghĩa là filament không hỗ trợ "
"in trên bản Engineering."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr ""
"Nhiệt độ bàn của lớp đầu tiên. Giá trị 0 có nghĩa là filament không hỗ trợ "
"in trên bản nhiệt độ cao."
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr ""
"Nhiệt độ bàn của lớp đầu tiên. Giá trị 0 có nghĩa là filament không hỗ trợ "
@@ -14010,7 +14066,7 @@ msgstr ""
"trăm (ví dụ 100%), nó sẽ được tính dựa trên gia tốc mặc định."
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr ""
"Gia tốc của lớp đầu tiên. Sử dụng giá trị thấp hơn có thể cải thiện độ bám "
@@ -14055,42 +14111,43 @@ msgstr "Giật cho bề mặt trên."
msgid "Jerk for infill."
msgstr "Giật cho infill."
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr "Giật cho lớp đầu tiên."
msgid "Jerk for travel."
msgstr "Giật cho di chuyển."
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr ""
"Độ rộng đường của lớp đầu tiên. Nếu được biểu thị dưới dạng %, nó sẽ được "
"tính trên đường kính đầu phun."
msgid "Initial layer height"
msgid "First layer height"
msgstr "Chiều cao lớp đầu tiên"
#, fuzzy
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr ""
"Chiều cao của lớp đầu tiên. Làm cho chiều cao lớp đầu tiên dày một chút có "
"thể cải thiện độ bám dính bàn in."
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr "Tốc độ của lớp đầu tiên ngoại trừ phần infill đặc."
msgid "Initial layer infill"
msgid "First layer infill"
msgstr "Infill lớp đầu tiên"
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr "Tốc độ của phần infill đặc của lớp đầu tiên."
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr "Tốc độ di chuyển lớp đầu tiên"
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr "Tốc độ di chuyển của lớp đầu tiên."
msgid "Number of slow layers"
@@ -14103,10 +14160,11 @@ msgstr ""
"Vài lớp đầu tiên được in chậm hơn bình thường. Tốc độ được tăng dần theo "
"cách tuyến tính qua số lượng lớp được chỉ định."
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr "Nhiệt độ đầu phun lớp đầu tiên"
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr "Nhiệt độ đầu phun để in lớp đầu tiên khi sử dụng filament này."
msgid "Full fan speed at layer"
@@ -14624,9 +14682,9 @@ msgstr "Gắn nhãn đối tượng"
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 "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"Bật điều này để thêm chú thích vào G-code gắn nhãn chuyển động in với đối "
"tượng nào chúng thuộc về, hữu ích cho plugin CancelObject Octoprint. Cài đặt "
@@ -15572,13 +15630,13 @@ msgstr "Mở rộng raft"
msgid "Expand all raft layers in XY plane."
msgstr "Mở rộng tất cả lớp raft trên mặt phẳng XY."
msgid "Initial layer density"
msgid "First layer density"
msgstr "Mật độ lớp đầu tiên"
msgid "Density of the first raft or support layer."
msgstr "Mật độ của lớp raft hoặc support đầu tiên."
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr "Mở rộng lớp đầu tiên"
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -17130,6 +17188,12 @@ msgstr ""
"2. Nón: Một nón có bo tròn ở dưới để giúp ổn định wipe tower.\n"
"3. Gân: Thêm bốn gân vào thành tower để tăng cường độ ổn định."
msgid "Rectangle"
msgstr "Hình chữ nhật"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr "Độ dài gân bổ sung"
@@ -18120,10 +18184,10 @@ msgstr ""
"Vector các điểm của bao lồi lớp đầu tiên. Mỗi phần tử có định dạng sau:'[x, "
"y]' (x và y là số dấu phẩy động tính bằng mm)."
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr "Góc dưới-trái của hộp giới hạn lớp đầu tiên"
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr "Góc trên-phải của hộp giới hạn lớp đầu tiên"
msgid "Size of the first layer bounding box"
@@ -18420,10 +18484,6 @@ msgstr "Tên giống với tên cài đặt sẵn khác hiện có"
msgid "create new preset failed."
msgstr "tạo cài đặt sẵn mới thất bại."
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr ""
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr ""
@@ -19536,9 +19596,6 @@ msgstr ""
msgid "Can't find my nozzle diameter"
msgstr ""
msgid "Rectangle"
msgstr "Hình chữ nhật"
msgid "Printable Space"
msgstr "Không gian có thể in"
@@ -20875,6 +20932,127 @@ msgstr ""
msgid "More Colors"
msgstr ""
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr ""
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr ""
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr ""
msgid "The filament model is unknown. A random filament preset will be used."
msgstr ""
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -21313,12 +21491,10 @@ msgstr ""
#~ msgstr "Nâng cao"
#~ msgid ""
#~ "Disable to use latest network plug-in that supports new BambuLab firmwares."
#~ "Disable to use latest network plug-in that supports new BambuLab "
#~ "firmwares."
#~ msgstr "Tắt để sử dụng plugin mạng mới nhất hỗ trợ firmware BambuLab mới."
#~ msgid "Packing data to 3MF"
#~ msgstr "Đang đóng gói dữ liệu vào 3mf"
#~ msgid ""
#~ "Controls the density (spacing) of external bridge lines. 100% means solid "
#~ "bridge. Default is 100%.\n"

View File

@@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Slic3rPE\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-06 04:49+0800\n"
"PO-Revision-Date: 2026-02-28 00:59\n"
"Last-Translator: Handle <mail@bysb.net>\n"
"Language-Team: \n"
@@ -17,26 +17,6 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: OrcaSlicer Translation Helper\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr "此耗材可能于当前设备设置不兼容,将使用通用耗材预设。"
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr "此耗材型号未知,将使用先前的耗材预设。"
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr "此耗材型号未知,将使用通用耗材预设。"
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr "此耗材可能与当前设备设置不兼容,将使用随机耗材预设。"
msgid "The filament model is unknown. A random filament preset will be used."
msgstr "此耗材可能于当前设备设置不兼容,将使用随机耗材预设。"
msgid "right"
msgstr "右"
@@ -79,7 +59,7 @@ msgstr "泛光PLA的粗糙表面可能会加速AMS的磨损尤其是AMS Lite
msgid ""
"CF/GF filaments are hard and brittle, it's easy to break or get stuck in "
"AMS, please use with caution."
msgstr "CF/GF耗材丝又硬又脆在AMS中很容易断裂或卡住请谨慎使用。"
msgstr "CF/GF耗材丝又硬又脆在AMS中很容易断裂或卡住请谨慎使用。"
msgid "PPS-CF is brittle and could break in bended PTFE tube above Toolhead."
msgstr "PPS-CF材质较脆用在工具头上方的弯曲PTFE管中可能会断裂。"
@@ -514,7 +494,7 @@ msgid "Cut position"
msgstr "切割位置"
msgid "Build Volume"
msgstr "零件体积"
msgstr "打印体积"
msgid "Part"
msgstr "零件"
@@ -700,7 +680,7 @@ msgid "Delete connector"
msgstr "删除连接器"
msgid "Mesh name"
msgstr "Mesh名"
msgstr "网格名称"
msgid "Detail level"
msgstr "细节等级"
@@ -1552,6 +1532,30 @@ msgstr "平行距离:"
msgid "Flip by Face 2"
msgstr "通过面2翻转"
msgid "Assemble"
msgstr "组合"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "通知"
@@ -1563,7 +1567,7 @@ msgid "%1% was replaced with %2%"
msgstr "%1%已被%2%替换"
msgid "The configuration may be generated by a newer version of OrcaSlicer."
msgstr "此配置可能由新版本的逆戟鲸生成"
msgstr "此配置可能由新版本的逆戟鲸切片器生成"
msgid "Some values have been replaced. Please check them:"
msgstr "部分数值已被替换,请检查:"
@@ -1588,6 +1592,54 @@ msgstr "配置文件“%1%”已被加载,但部分数值未被识别。"
msgid "Based on PrusaSlicer and BambuStudio"
msgstr "基于PrusaSlicer和BambuStudio"
msgid "STEP files"
msgstr "STEP 文件"
msgid "STL files"
msgstr "STL 文件"
msgid "OBJ files"
msgstr "OBJ 文件"
msgid "AMF files"
msgstr "AMF 文件"
msgid "3MF files"
msgstr "3MF 文件"
msgid "Gcode 3MF files"
msgstr "Gcode 3MF 文件"
msgid "G-code files"
msgstr "G-code 文件"
msgid "Supported files"
msgstr "支持的文件"
msgid "ZIP files"
msgstr "ZIP 文件"
msgid "Project files"
msgstr "项目文件"
msgid "Known files"
msgstr "已知文件"
msgid "INI files"
msgstr "INI 文件"
msgid "SVG files"
msgstr "SVG 文件"
msgid "Texture"
msgstr "纹理"
msgid "Masked SLA files"
msgstr "Masked SLA 文件"
msgid "Draco files"
msgstr "Draco 文件"
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1666,7 +1718,7 @@ msgid "Click to download new version in default browser: %s"
msgstr "在默认浏览器中点击下载最新版本: %s"
msgid "The Orca Slicer needs an upgrade"
msgstr "逆戟鲸需要进行升级"
msgstr "逆戟鲸切片器需要进行升级"
msgid "This is the newest version."
msgstr "已经是最新版本。"
@@ -1708,6 +1760,9 @@ msgstr "选择ZIP文件"
msgid "Choose one file (GCODE/3MF):"
msgstr "选择一个文件GCODE/3MF"
msgid "Ext"
msgstr "分机"
msgid "Some presets are modified."
msgstr "预设已被修改。"
@@ -2118,9 +2173,6 @@ msgstr "从米转换"
msgid "Restore to meters"
msgstr "恢复到米"
msgid "Assemble"
msgstr "组合"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "组合所选对象为一个多零件对象"
@@ -2607,6 +2659,10 @@ msgstr "多色打印"
msgid "Line Type"
msgstr "走线类型"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "详情"
@@ -2724,8 +2780,8 @@ msgstr "请检查打印机和工作室的网络连接"
msgid "Connecting..."
msgstr "连接中..."
msgid "Auto-refill"
msgstr "自动补"
msgid "Auto Refill"
msgstr "自动补"
msgid "Load"
msgstr "进料"
@@ -3459,9 +3515,6 @@ msgstr "右喷嘴"
msgid "Nozzle"
msgstr "喷嘴"
msgid "Ext"
msgstr "分机"
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3528,9 +3581,6 @@ msgstr "采用AMS里的材料打印"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "采用挂载在机箱背部的材料打印"
msgid "Auto Refill"
msgstr "自动补给"
msgid "Left"
msgstr "左"
@@ -3690,8 +3740,8 @@ msgid "Click here to see more info"
msgstr "点击这里查看更多信息"
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr "网络插件已安装但无法加载。请重新启动应用程序。"
msgid "Restart Required"
@@ -3850,9 +3900,6 @@ msgstr "从STL文件加载形状..."
msgid "Settings"
msgstr "设置"
msgid "Texture"
msgstr "纹理"
msgid "Remove"
msgstr "移除"
@@ -3945,7 +3992,7 @@ msgid ""
msgstr "熨烫线距过小。将重置为0.1"
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
@@ -4035,7 +4082,7 @@ msgstr ""
"seam_slope_start_height需要小于layer_height。\n"
"重置为0。"
#, fuzzy, c-format, boost-format
#, fuzzy
msgid ""
"Lock depth should smaller than skin depth.\n"
"Reset to 50% of skin depth."
@@ -5146,7 +5193,7 @@ msgstr "体积:"
msgid "Size:"
msgstr "尺寸:"
#, c-format, boost-format
#, boost-format
msgid ""
"Conflicts of G-code paths have been found at layer %d, Z = %.2lfmm. Please "
"separate the conflicted objects farther (%s <-> %s)."
@@ -6024,8 +6071,8 @@ msgid ""
"The .gcode.3mf file contains no G-code data. Please slice it with Orca "
"Slicer and export a new .gcode.3mf file."
msgstr ""
".gcode.3mf文件中不包含G-code数据。请使用Orca Slicer进行切片并导出新的."
"gcode.3mf文件。"
".gcode.3mf文件中不包含G-code数据。请使用Orca Slicer进行切片并导出新"
"的.gcode.3mf文件。"
#, c-format, boost-format
msgid "File '%s' was lost! Please download it again."
@@ -6492,6 +6539,9 @@ msgstr ""
"此打印配置文件至少需要一个成功的打印记录 \n"
"才能给出好评4星或5星。"
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "设备状态"
@@ -6502,6 +6552,14 @@ msgstr "更新"
msgid "Assistant(HMS)"
msgstr "助理HMS"
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "不再显示"
@@ -7240,7 +7298,7 @@ msgid ""
" Do you want to scale to millimeters?"
msgstr ""
"文件 %s 中对象的尺寸似乎是以米或者英寸为单位定义的。\n"
"逆戟鲸的内部单位为毫米。是否要转换成毫米?"
"逆戟鲸切片器的内部单位为毫米。是否要转换成毫米?"
msgid "Object too small"
msgstr "对象尺寸过小"
@@ -7407,7 +7465,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "请解决切片错误后再重新发布。"
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr "未检测到网络插件。网络相关功能不可用。"
msgid ""
@@ -7708,7 +7767,8 @@ msgid ""
"\"Fix Model\" feature is currently only on Windows. Please repair the model "
"on Orca Slicer(windows) or CAD softwares."
msgstr ""
"\"修复模型\"功能目前仅适用于Windows。请在逆戟鲸(windows)或CAD软件上修复模型。"
"\"修复模型\"功能目前仅适用于Windows。请在逆戟鲸切片器(windows)或CAD软件上修复"
"模型。"
#, c-format, boost-format
msgid ""
@@ -7980,7 +8040,7 @@ msgid "Pop up to select filament grouping mode"
msgstr "弹出选择耗材丝分组模式"
msgid "Quality level for Draco export"
msgstr "Draco 出口的质量水平"
msgstr "Draco 导出的模型质量"
msgid "bits"
msgstr "位"
@@ -8195,7 +8255,7 @@ msgid "Download Network Plug-in"
msgstr "下载网络插件"
msgid "Associate files to OrcaSlicer"
msgstr "逆戟鲸文件关联"
msgstr "逆戟鲸切片器文件关联"
msgid "Associate 3MF files to OrcaSlicer"
msgstr "将 3MF 文件关联到 OrcaSlicer"
@@ -8261,9 +8321,6 @@ msgstr "调试"
msgid "trace"
msgstr "跟踪"
msgid "Network Plug-in"
msgstr "网络插件"
msgid "Reload"
msgstr "重新加载"
@@ -8492,8 +8549,11 @@ msgstr "发布已取消"
msgid "Slicing Plate 1"
msgstr "正在切片盘 1"
msgid "Packing data to 3mf"
msgstr "将数据打包至 3MF"
msgid "Packing data to 3MF"
msgstr ""
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
msgstr "跳转到网页"
@@ -8819,8 +8879,8 @@ msgstr "光滑高温打印热床"
msgid "Textured PEI Plate"
msgstr "纹理PEI热床"
msgid "Cool Plate (Supertack)"
msgstr "冷却板Supertack"
msgid "Cool Plate (SuperTack)"
msgstr "低温打印板(超强粘附"
msgid "Click here if you can't connect to the printer"
msgstr "如果无法连接到打印机,请单击此处"
@@ -9244,8 +9304,8 @@ msgstr ""
msgid ""
"When recording timelapse without toolhead, it is recommended to add a "
"\"Timelapse Wipe Tower\" \n"
"by right-click the empty position of build plate and choose \"Add Primitive"
"\"->\"Timelapse Wipe Tower\"."
"by right-click the empty position of build plate and choose \"Add "
"Primitive\"->\"Timelapse Wipe Tower\"."
msgstr ""
"在录制无工具头延时摄影视频时,建议添加“延时摄影擦料塔”\n"
"右键单击打印板的空白位置,选择“添加标准模型”->“延时摄影擦料塔”。"
@@ -9342,7 +9402,7 @@ msgstr "墙"
msgid "Top/bottom shells"
msgstr "顶部/底部外壳"
msgid "Initial layer speed"
msgid "First layer speed"
msgstr "首层速度"
msgid "Other layers speed"
@@ -9450,9 +9510,6 @@ msgstr "打印温度"
msgid "Nozzle temperature when printing"
msgstr "打印时的喷嘴温度"
msgid "Cool Plate (SuperTack)"
msgstr "低温打印板(超强粘附)"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10357,13 +10414,13 @@ msgstr "显示键盘快捷键列表"
msgid "Global shortcuts"
msgstr "全局快捷键"
msgid "Pan View"
msgid "Pan view"
msgstr "移动视角"
msgid "Rotate View"
msgid "Rotate view"
msgstr "旋转视角"
msgid "Zoom View"
msgid "Zoom view"
msgstr "缩放视角"
msgid ""
@@ -10791,7 +10848,7 @@ msgid "Open G-code file:"
msgstr "打开G-code文件"
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr "模型出现空层无法打印。请切掉底部或打开支撑。"
@@ -10991,8 +11048,8 @@ msgid ""
"or printer damage. If you still want to print, you can enable the option in "
"Preferences."
msgstr ""
"同时打印高温和低温耗材可能会导致喷嘴堵塞或打印机损坏。如果您仍想打印,可以"
"“首选项”中启用该选项。"
"同时打印高温和低温耗材可能会导致喷嘴堵塞或打印机损坏。如果您仍想打印,可以"
"“首选项”中启用该选项。"
msgid ""
"Printing different-temp filaments together may cause nozzle clogging or "
@@ -11308,7 +11365,7 @@ msgid "Elephant foot compensation"
msgstr "象脚补偿"
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr "将首层收缩用于补偿象脚效应"
@@ -11498,39 +11555,39 @@ msgid ""
"filament does not support printing on the Textured PEI Plate."
msgstr "非首层热床温度。0值表示这个耗材丝不支持纹理PEI热床"
msgid "Initial layer"
msgid "First layer"
msgstr "首层"
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr "首层床温"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr "初始层的床温。值 0 表示耗材不支持在 Cool Plate SuperTack 上打印。"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr "首层热床温度。0值表示这个耗材丝不支持低温打印热床"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr "首层热床温度。0值表示这个耗材丝不支持纹理低温打印热床"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr "首层热床温度。0值表示这个耗材丝不支持工程材料热床"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr "首层热床温度。0值表示这个耗材丝不支持高温打印热床"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr "首层热床温度。0值表示这个耗材丝不支持纹理PEI热床"
@@ -13604,8 +13661,8 @@ msgid "mm/s² or %"
msgstr "mm/s² 或 %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"稀疏填充的加速度。如果该值表示为百分比例如100%),则将根据默认加速度进行计"
"算。"
@@ -13619,7 +13676,7 @@ msgstr ""
"行计算。"
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr "首层加速度。使用较低值可以改善和打印板的粘接。"
@@ -13660,40 +13717,41 @@ msgstr "顶面抖动值"
msgid "Jerk for infill."
msgstr "填充抖动"
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr "首层抖动值"
msgid "Jerk for travel."
msgstr "空驶抖动值"
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr "首层的线宽。若以百分比表示例如120%),它将基于喷嘴直径来计算。"
msgid "Initial layer height"
msgid "First layer height"
msgstr "首层层高"
#, fuzzy
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr ""
"首层层高。\n"
"若少许加厚首层层高,将有助增加部件与热床间的粘接力。"
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr "首层除实心填充之外的其他部分的打印速度"
msgid "Initial layer infill"
msgid "First layer infill"
msgstr "首层填充"
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr "首层实心填充的打印速度"
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr "首层空驶速度"
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr "首层空驶速度"
msgid "Number of slow layers"
@@ -13706,10 +13764,11 @@ msgstr ""
"减慢前几层的打印速度。\n"
"打印速度会在这个范围内以线性方式逐层加至满速。"
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr "首层打印温度"
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr "使用此耗材时的首层打印温度。"
msgid "Full fan speed at layer"
@@ -13717,10 +13776,10 @@ msgstr "满速风扇在"
msgid ""
"Fan speed will be ramped up linearly from zero at layer "
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
"\". \"full_fan_speed_layer\" will be ignored if lower than "
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
"\"close_fan_the_first_x_layers\" to maximum at layer "
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
msgstr ""
"风扇速度将从“禁用第一层”的零转速,线性上升到“全风扇速度层”的最大转速。\n"
"如果低于“禁用风扇第一层”,则“全风扇速度第一层”将被忽略,在这种情况下,风扇将"
@@ -14191,9 +14250,9 @@ msgstr "标注模型"
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 "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"启用此选项将在G-code中添加注释标记打印移动属于哪个对象这对Octoprint "
"CancelObject插件非常有用。此设置与单挤出机多材料设置和擦拭到对象/擦拭到填充不"
@@ -15068,13 +15127,13 @@ msgstr "筏层扩展"
msgid "Expand all raft layers in XY plane."
msgstr "在XY平面扩展所有筏层"
msgid "Initial layer density"
msgid "First layer density"
msgstr "首层密度"
msgid "Density of the first raft or support layer."
msgstr "筏和支撑的首层密度"
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr "首层扩展"
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -15440,8 +15499,8 @@ msgid "Role base wipe speed"
msgstr "自动擦拭速度"
msgid ""
"The wipe speed is determined by the speed of the current extrusion role. e."
"g. if a wipe action is executed immediately following an outer wall "
"The wipe speed is determined by the speed of the current extrusion role. "
"e.g. if a wipe action is executed immediately following an outer wall "
"extrusion, the speed of the outer wall extrusion will be utilized for the "
"wipe action."
msgstr ""
@@ -16234,8 +16293,8 @@ msgstr "激活温度控制"
msgid ""
"Enable this option for automated chamber temperature control. This option "
"activates the emitting of an M191 command before the \"machine_start_gcode"
"\"\n"
"activates the emitting of an M191 command before the "
"\"machine_start_gcode\"\n"
" which sets the chamber temperature and waits until it is reached. In "
"addition, it emits an M141 command at the end of the print to turn off the "
"chamber heater, if present.\n"
@@ -16506,6 +16565,12 @@ msgstr ""
"2. 圆锥:底部有圆角的圆锥,有助于稳定擦拭塔。\n"
"3. 加强筋:在塔壁上增加四个加强筋以提高稳定性。"
msgid "Rectangle"
msgstr "矩形"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr "额外加强筋长度"
@@ -17102,11 +17167,11 @@ msgid "Debug level"
msgstr "调试等级"
msgid ""
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
"trace\n"
"Sets debug logging level. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
"5:trace\n"
msgstr ""
"设置调试日志的等级。0:fatal 1:error 2:warning 3:info 4:debug 5:"
"trace\n"
"设置调试日志的等级。0:fatal 1:error 2:warning 3:info 4:debug "
"5:trace\n"
msgid "Enable timelapse for print"
msgstr "为打印启用延时摄影"
@@ -17426,10 +17491,10 @@ msgstr ""
"第一层凸包的点向量。每个元素的格式如下:'[x, y]'x 和 y 是以 mm 为单位的浮点"
"数)。"
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr "第一层边界框的左下角"
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr "第一层边界框的右上角"
msgid "Size of the first layer bounding box"
@@ -17713,10 +17778,6 @@ msgstr "该名称与另一个现有预设名称相同。"
msgid "create new preset failed."
msgstr "创建新预设失败"
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr "未找到所选预设:%s。"
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr "找不到参数:%s。"
@@ -17842,10 +17903,10 @@ msgid ""
msgstr ""
"请从我们的wiki中找到动态流量校准的详细信息。\n"
"\n"
"通常情况下,校准是不必要的。当您开始单色/单耗材打印,并在打印开始菜单中勾选"
"“动态流量校准”选项时,打印机将按照旧的方式在打印前校准耗材;当您开始多色/多"
"材打印时,打印机将在每次换耗材时使用默认的补偿参数,这在大多数情况下会产生"
"好的效果。\n"
"通常情况下,校准是不必要的。当您开始单色/单耗材打印,并在打印开始菜单中勾选"
"“动态流量校准”选项时,打印机将按照旧的方式在打印前校准耗材;当您开始多色/多"
"材打印时,打印机将在每次换耗材时使用默认的补偿参数,这在大多数情况下会产生"
"好的效果。\n"
"\n"
"有些情况可能导致校准结果不可靠,例如打印板的附着力不足。清洗构建或者使用胶水"
"可以增强打印板的附着力。您可以在我们的wiki上找到更多相关信息。\n"
@@ -18632,7 +18693,7 @@ msgid "Export Log"
msgstr "输出日志"
msgid "OrcaSlicer Version:"
msgstr "OrcaSlicer逆戟鲸版本:"
msgstr "逆戟鲸切片器版本:"
msgid "System Version:"
msgstr "系统版本:"
@@ -18755,8 +18816,8 @@ msgstr ""
"你想重写预设吗"
msgid ""
"We would rename the presets as \"Vendor Type Serial @printer you selected"
"\".\n"
"We would rename the presets as \"Vendor Type Serial @printer you "
"selected\".\n"
"To add preset for more printers, please go to printer selection"
msgstr ""
"我们将会把预设重命名为“供应商类型名 @ 您选择的打印机”\n"
@@ -18804,9 +18865,6 @@ msgstr "输入自定义喷嘴直径"
msgid "Can't find my nozzle diameter"
msgstr "未找到我的喷嘴直径"
msgid "Rectangle"
msgstr "矩形"
msgid "Printable Space"
msgstr "可打印形状"
@@ -19654,8 +19712,8 @@ msgid ""
"to this wiki: Printing Tips for High Temp / Engineering materials."
msgstr ""
"打印此耗材时,可能有喷嘴堵塞、渗漏、翘曲和层间强度低的风险。为了获得更好的结"
"果请参考此英文wikiPrinting Tips for High Temp / Engineering "
"materials(“高温/工程材料的打印技巧”)"
"果请参考此英文wikiPrinting Tips for High Temp / Engineering materials"
"(“高温/工程材料的打印技巧”)"
msgid ""
"To get better transparent or translucent results with the corresponding "
@@ -19723,8 +19781,8 @@ msgid ""
"wiki: PVA Printing Guide."
msgstr ""
"这是一种水溶性支撑耗材,通常只用作支撑结构,不用于模型本体。打印此类耗材需要"
"满足较多条件为了获得更好的打印质量请参考这个英文wikiPVA Printing "
"Guide“PVA打印指南”"
"满足较多条件为了获得更好的打印质量请参考这个英文wikiPVA Printing Guide"
"“PVA打印指南”"
msgid ""
"This is a non-water-soluble support filament, and usually it is only for the "
@@ -20109,6 +20167,127 @@ msgstr "官方耗材"
msgid "More Colors"
msgstr "更多颜色"
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr "此耗材可能于当前设备设置不兼容,将使用通用耗材预设。"
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr "此耗材型号未知,将使用先前的耗材预设。"
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr "此耗材型号未知,将使用通用耗材预设。"
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr "此耗材可能与当前设备设置不兼容,将使用随机耗材预设。"
msgid "The filament model is unknown. A random filament preset will be used."
msgstr "此耗材可能于当前设备设置不兼容,将使用随机耗材预设。"
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -20463,3 +20642,19 @@ msgid ""
msgstr ""
"避免翘曲\n"
"您知道吗打印ABS这类易翘曲材料时适当提高热床温度可以降低翘曲的概率。"
#~ msgid "Auto-refill"
#~ msgstr "自动补充"
#~ msgid "Network Plug-in"
#~ msgstr "网络插件"
#~ msgid "Packing data to 3mf"
#~ msgstr "将数据打包至 3MF"
#~ msgid "Cool Plate (Supertack)"
#~ msgstr "冷却板Supertack"
#, c-format, boost-format
#~ msgid "The selected preset: %s is not found."
#~ msgstr "未找到所选预设:%s。"

View File

@@ -9,7 +9,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2026-03-03 16:43-0300\n"
"POT-Creation-Date: 2026-03-05 17:45-0300\n"
"PO-Revision-Date: 2025-11-28 13:48-0600\n"
"Last-Translator: tntchn <15895303+tntchn@users.noreply.github.com>\n"
"Language-Team: \n"
@@ -20,26 +20,6 @@ msgstr ""
"Plural-Forms: nplurals=1; plural=0;\n"
"X-Generator: Poedit 3.8\n"
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr "線材可能與目前的列印設備設定不相容,將使用一般線材預設。"
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr "線材型號未知,將繼續使用先前的線材預設。"
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr "線材型號未知,將使用一般線材預設。"
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr "線材可能與目前的列印設備設定不相容,將使用隨機線材預設。"
msgid "The filament model is unknown. A random filament preset will be used."
msgstr "線材型號未知,將使用隨機線材預設。"
msgid "right"
msgstr "右"
@@ -1555,6 +1535,30 @@ msgstr "平行距離:"
msgid "Flip by Face 2"
msgstr "通過面 2 翻轉"
msgid "Assemble"
msgstr "組合"
msgid "Please confirm explosion ratio = 1 and select at least two volumes."
msgstr ""
msgid "Please select at least two volumes."
msgstr ""
msgid "(Moving)"
msgstr ""
msgid "Point and point assembly"
msgstr ""
msgid ""
"It is recommended to assemble the objects first,\n"
"because the objects is restriced to bed \n"
"and only parts can be lifted."
msgstr ""
msgid "Face and face assembly"
msgstr ""
msgid "Notice"
msgstr "通知"
@@ -1591,6 +1595,54 @@ msgstr "設定檔「%1%」 已被載入,但部分數值無法識別。"
msgid "Based on PrusaSlicer and BambuStudio"
msgstr "基於 PrusaSlicer 與 BambuStudio 開發"
msgid "STEP files"
msgstr ""
msgid "STL files"
msgstr ""
msgid "OBJ files"
msgstr ""
msgid "AMF files"
msgstr ""
msgid "3MF files"
msgstr ""
msgid "Gcode 3MF files"
msgstr ""
msgid "G-code files"
msgstr ""
msgid "Supported files"
msgstr ""
msgid "ZIP files"
msgstr ""
msgid "Project files"
msgstr ""
msgid "Known files"
msgstr ""
msgid "INI files"
msgstr ""
msgid "SVG files"
msgstr ""
msgid "Texture"
msgstr "紋理"
msgid "Masked SLA files"
msgstr ""
msgid "Draco files"
msgstr ""
msgid ""
"OrcaSlicer will terminate because of running out of memory. It may be a bug. "
"It will be appreciated if you report the issue to our team."
@@ -1713,6 +1765,9 @@ msgstr "選擇 ZIP 檔"
msgid "Choose one file (GCODE/3MF):"
msgstr "選擇一個檔案GCODE/3MF"
msgid "Ext"
msgstr "擠出機"
msgid "Some presets are modified."
msgstr "部分預設已被修改。"
@@ -2125,9 +2180,6 @@ msgstr "從公尺轉換"
msgid "Restore to meters"
msgstr "恢復到公尺"
msgid "Assemble"
msgstr "組合"
msgid "Assemble the selected objects to an object with multiple parts"
msgstr "組合所選物件為一個多零件物件"
@@ -2620,6 +2672,10 @@ msgstr "多色列印"
msgid "Line Type"
msgstr "走線類型"
#, c-format, boost-format
msgid "1x1 Grid: %d mm"
msgstr ""
msgid "More"
msgstr "詳情"
@@ -2737,8 +2793,8 @@ msgstr "請檢查列印設備與 Orca Slicer 的網路連接。"
msgid "Connecting..."
msgstr "連接中..."
msgid "Auto-refill"
msgstr "自動補"
msgid "Auto Refill"
msgstr "自動補"
msgid "Load"
msgstr "匯入"
@@ -3486,9 +3542,6 @@ msgstr "右噴嘴"
msgid "Nozzle"
msgstr "噴嘴"
msgid "Ext"
msgstr "擠出機"
#, c-format, boost-format
msgid ""
"Note: the filament type(%s) does not match with the filament type(%s) in the "
@@ -3557,9 +3610,6 @@ msgstr "使用 AMS 裡的線材列印"
msgid "Print with filaments mounted on the back of the chassis"
msgstr "使用掛在機箱背部的線材列印"
msgid "Auto Refill"
msgstr "自動補充"
msgid "Left"
msgstr "左面"
@@ -3720,8 +3770,8 @@ msgid "Click here to see more info"
msgstr "點擊這裡查看更多資訊"
msgid ""
"The network plug-in was installed but could not be loaded. Please restart the "
"application."
"The network plug-in was installed but could not be loaded. Please restart "
"the application."
msgstr "網路外掛程式已安裝但無法載入。請重新啟動應用程式。"
msgid "Restart Required"
@@ -3889,9 +3939,6 @@ msgstr "從 STL 檔案載入形狀..."
msgid "Settings"
msgstr "設定"
msgid "Texture"
msgstr "紋理"
msgid "Remove"
msgstr "移除"
@@ -3992,7 +4039,7 @@ msgstr ""
"將重設為 0.1"
msgid ""
"Zero initial layer height is invalid.\n"
"Zero first layer height is invalid.\n"
"\n"
"The first layer height will be reset to 0.2."
msgstr ""
@@ -6575,6 +6622,9 @@ msgstr ""
"若要給予正面評價4 或 5 星),\n"
"必須至少有一個此列印設定檔的成功列印記錄。"
msgid "click to add machine"
msgstr ""
msgid "Status"
msgstr "設備狀態"
@@ -6585,6 +6635,14 @@ msgstr "更新"
msgid "Assistant(HMS)"
msgstr "助手HMS"
#, c-format, boost-format
msgid "Network plug-in v%s"
msgstr ""
#, c-format, boost-format
msgid "Network plug-in v%s (%s)"
msgstr ""
msgid "Don't show again"
msgstr "不再顯示"
@@ -7493,7 +7551,8 @@ msgid "Please resolve the slicing errors and publish again."
msgstr "請解決切片錯誤後再重新發布。"
msgid ""
"The network plug-in was not detected. Network related features are unavailable."
"The network plug-in was not detected. Network related features are "
"unavailable."
msgstr "未偵測到網路外掛程式。網路相關功能不可用。"
msgid ""
@@ -8355,9 +8414,6 @@ msgstr "除錯"
msgid "trace"
msgstr "跟蹤"
msgid "Network Plug-in"
msgstr "網路外掛程式"
msgid "Reload"
msgstr "重新載入"
@@ -8586,8 +8642,11 @@ msgstr "發布已取消"
msgid "Slicing Plate 1"
msgstr "正在切片列印板 1"
msgid "Packing data to 3mf"
msgstr "正在將資料打包至 3mf"
msgid "Packing data to 3MF"
msgstr ""
msgid "Uploading data"
msgstr ""
msgid "Jump to webpage"
msgstr "跳至網頁"
@@ -8915,8 +8974,8 @@ msgstr "高溫平滑列印板"
msgid "Textured PEI Plate"
msgstr "紋理 PEI 列印板"
msgid "Cool Plate (Supertack)"
msgstr "低溫列印板(超強黏性版)"
msgid "Cool Plate (SuperTack)"
msgstr "低溫增穩列印板"
msgid "Click here if you can't connect to the printer"
msgstr "如果無法連接到列印設備,請按一下此處"
@@ -9444,7 +9503,7 @@ msgstr "牆"
msgid "Top/bottom shells"
msgstr "頂部/底部外殼"
msgid "Initial layer speed"
msgid "First layer speed"
msgstr "首層速度"
msgid "Other layers speed"
@@ -9552,9 +9611,6 @@ msgstr "列印溫度"
msgid "Nozzle temperature when printing"
msgstr "列印時的噴嘴溫度"
msgid "Cool Plate (SuperTack)"
msgstr "低溫增穩列印板"
msgid ""
"Bed temperature when the Cool Plate SuperTack is installed. A value of 0 "
"means the filament does not support printing on the Cool Plate SuperTack."
@@ -10464,13 +10520,13 @@ msgstr "顯示鍵盤快捷鍵清單"
msgid "Global shortcuts"
msgstr "全域快捷鍵"
msgid "Pan View"
msgid "Pan view"
msgstr "移動視角"
msgid "Rotate View"
msgid "Rotate view"
msgstr "旋轉視角"
msgid "Zoom View"
msgid "Zoom view"
msgstr "縮放視角"
msgid ""
@@ -10897,7 +10953,7 @@ msgid "Open G-code file:"
msgstr "打開 G-code 檔案:"
msgid ""
"One object has empty initial layer and can't be printed. Please Cut the "
"One object has an empty first layer and can't be printed. Please Cut the "
"bottom or enable supports."
msgstr "模型出現空層無法列印。請切掉底部或打開支撐。"
@@ -11418,7 +11474,7 @@ msgid "Elephant foot compensation"
msgstr "象腳補償"
msgid ""
"Shrinks the initial layer on build plate to compensate for elephant foot "
"Shrinks the first layer on build plate to compensate for elephant foot "
"effect."
msgstr "將首層收縮用於補償象腳效應"
@@ -11607,39 +11663,39 @@ msgid ""
"filament does not support printing on the Textured PEI Plate."
msgstr "首層之外各層的熱床溫度。值為 0 表示該線材不適用於紋理 PEI 列印板"
msgid "Initial layer"
msgid "First layer"
msgstr "首層"
msgid "Initial layer bed temperature"
msgid "First layer bed temperature"
msgstr "首層床溫"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate SuperTack."
msgstr "首層的列印床溫度。值為 0 表示該線材不適用於低溫增穩列印板"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Cool Plate."
msgstr "首層的列印床溫度。值為 0 表示該線材不適用於低溫列印板"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured Cool Plate."
msgstr "首層的列印床溫度。值為 0 表示該線材不適用於低溫紋理列印板"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Engineering Plate."
msgstr "首層的列印床溫度。值為 0 表示該線材不適用於工程列印板"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the High Temp Plate."
msgstr "首層的列印床溫度。值為 0 表示該線材不適用於高溫列印板"
msgid ""
"Bed temperature of the initial layer. A value of 0 means the filament does "
"Bed temperature of the first layer. A value of 0 means the filament does "
"not support printing on the Textured PEI Plate."
msgstr "首層的列印床溫度。值為 0 表示該線材不適用於紋理 PEI 列印板"
@@ -13735,7 +13791,7 @@ msgstr ""
"行計算。"
msgid ""
"Acceleration of initial layer. Using a lower value can improve build plate "
"Acceleration of the first layer. Using a lower value can improve build plate "
"adhesion."
msgstr "首層加速度。使用較低值可以改善和列印板的黏附"
@@ -13776,38 +13832,39 @@ msgstr "頂面抖動值"
msgid "Jerk for infill."
msgstr "填充抖動"
msgid "Jerk for initial layer."
msgid "Jerk for the first layer."
msgstr "首層抖動值"
msgid "Jerk for travel."
msgstr "空駛抖動值"
msgid ""
"Line width of initial layer. If expressed as a %, it will be computed over "
"Line width of the first layer. If expressed as a %, it will be computed over "
"the nozzle diameter."
msgstr "首層的線寬。如果以 % 表示,它將以噴嘴直徑為基準來計算。"
msgid "Initial layer height"
msgid "First layer height"
msgstr "首層層高"
#, fuzzy
msgid ""
"Height of initial layer. Making initial layer height to be thick slightly "
"can improve build plate adhesion."
"Height of the first layer. Making the first layer height thicker can improve "
"build plate adhesion."
msgstr "首層層高"
msgid "Speed of initial layer except the solid infill part."
msgid "Speed of the first layer except the solid infill part."
msgstr "首層除實心填充之外的其他部分的列印速度"
msgid "Initial layer infill"
msgid "First layer infill"
msgstr "首層填充"
msgid "Speed of solid infill part of initial layer."
msgid "Speed of solid infill part of the first layer."
msgstr "首層實心填充的列印速度"
msgid "Initial layer travel speed"
msgid "First layer travel speed"
msgstr "首層空駛速度"
msgid "Travel speed of initial layer."
msgid "Travel speed of the first layer."
msgstr "首層空駛速度"
msgid "Number of slow layers"
@@ -13818,10 +13875,11 @@ msgid ""
"increased in a linear fashion over the specified number of layers."
msgstr "減慢前幾層的列印速度。列印速度會逐漸加速到滿速。"
msgid "Initial layer nozzle temperature"
msgid "First layer nozzle temperature"
msgstr "首層列印溫度"
msgid "Nozzle temperature for printing initial layer when using this filament."
msgid ""
"Nozzle temperature for printing the first layer when using this filament."
msgstr "列印首層時的噴嘴溫度"
msgid "Full fan speed at layer"
@@ -14309,9 +14367,9 @@ msgstr "標註物件"
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 "
"plug-in. This setting is NOT compatible with Single Extruder Multi Material "
"setup and Wipe into Object / Wipe into Infill."
"object they belong to, which is useful for the Octoprint CancelObject plug-"
"in. This setting is NOT compatible with Single Extruder Multi Material setup "
"and Wipe into Object / Wipe into Infill."
msgstr ""
"啟用此選項可將註解新增至 G-code 中,標記列印移動及其所屬物件,這對於 "
"Octoprint CancelObject 外掛程式非常有用。此設定與單擠出機多色設定和擦除到物"
@@ -15200,13 +15258,13 @@ msgstr "筏層擴展"
msgid "Expand all raft layers in XY plane."
msgstr "在 XY 平面擴展所有筏層"
msgid "Initial layer density"
msgid "First layer density"
msgstr "首層密度"
msgid "Density of the first raft or support layer."
msgstr "筏和支撐的首層密度"
msgid "Initial layer expansion"
msgid "First layer expansion"
msgstr "首層擴展"
msgid "Expand the first raft or support layer to improve bed plate adhesion."
@@ -16644,6 +16702,12 @@ msgstr ""
"2. 圓錐:底部帶圓角的圓錐形,有助於穩定換料塔。\n"
"3. 肋條:為換料塔牆體添加四條肋條以增強穩定性"
msgid "Rectangle"
msgstr "矩形"
msgid "Rib"
msgstr ""
msgid "Extra rib length"
msgstr "額外肋條長度"
@@ -17562,10 +17626,10 @@ msgid ""
msgstr ""
"第一層凸包的點向量。每個元素格式為:'[x, y]'x 和 y 是以mm為單位的實數。"
msgid "Bottom-left corner of first layer bounding box"
msgid "Bottom-left corner of the first layer bounding box"
msgstr "第一層邊界左下角"
msgid "Top-right corner of first layer bounding box"
msgid "Top-right corner of the first layer bounding box"
msgstr "第一層邊界右上角"
msgid "Size of the first layer bounding box"
@@ -17852,10 +17916,6 @@ msgstr "該名稱與另一個現有預設值名稱相同"
msgid "create new preset failed."
msgstr "新增預設失敗。"
#, c-format, boost-format
msgid "The selected preset: %s is not found."
msgstr "找不到所選的預設:%s"
#, c-format, boost-format
msgid "Could not find parameter: %s."
msgstr "找不到參數:%s"
@@ -18944,9 +19004,6 @@ msgstr "輸入自訂噴嘴直徑"
msgid "Can't find my nozzle diameter"
msgstr "找不到我的噴嘴直徑"
msgid "Rectangle"
msgstr "矩形"
msgid "Printable Space"
msgstr "可列印空間"
@@ -20251,6 +20308,127 @@ msgstr "官方線材"
msgid "More Colors"
msgstr "更多顏色"
msgid "Network Plug-in Update Available"
msgstr ""
msgid "Bambu Network Plug-in Required"
msgstr ""
msgid ""
"The Bambu Network Plug-in is corrupted or incompatible. Please reinstall it."
msgstr ""
msgid ""
"The Bambu Network Plug-in is required for cloud features, printer discovery, "
"and remote printing."
msgstr ""
#, c-format, boost-format
msgid "Error: %s"
msgstr ""
msgid "Show details"
msgstr ""
msgid "Version to install:"
msgstr ""
msgid "Download and Install"
msgstr ""
msgid "Skip for Now"
msgstr ""
msgid "A new version of the Bambu Network Plug-in is available."
msgstr ""
#, c-format, boost-format
msgid "Current version: %s"
msgstr ""
msgid "Update to version:"
msgstr ""
msgid "Update Now"
msgstr ""
msgid "Remind Later"
msgstr ""
msgid "Skip Version"
msgstr ""
msgid "Don't Ask Again"
msgstr ""
msgid "The Bambu Network Plug-in has been installed successfully."
msgstr ""
msgid ""
"A restart is required to load the new plug-in. Would you like to restart now?"
msgstr ""
msgid "Restart Now"
msgstr ""
msgid "Restart Later"
msgstr ""
msgid "NO RAMMING AT ALL"
msgstr ""
msgid "Volumetric speed"
msgstr ""
msgid "Step file import parameters"
msgstr ""
msgid ""
"Smaller linear and angular deflections result in higher-quality "
"transformations but increase the processing time."
msgstr ""
msgid "Linear Deflection"
msgstr ""
msgid "Please input a valid value (0.001 < linear deflection < 0.1)"
msgstr ""
msgid "Angle Deflection"
msgstr ""
msgid "Please input a valid value (0.01 < angle deflection < 1.0)"
msgstr ""
msgid "Split compound and compsolid into multiple objects"
msgstr ""
msgid "Number of triangular facets"
msgstr ""
msgid "Calculating, please wait..."
msgstr ""
msgid ""
"The filament may not be compatible with the current machine settings. "
"Generic filament presets will be used."
msgstr "線材可能與目前的列印設備設定不相容,將使用一般線材預設。"
msgid ""
"The filament model is unknown. Still using the previous filament preset."
msgstr "線材型號未知,將繼續使用先前的線材預設。"
msgid "The filament model is unknown. Generic filament presets will be used."
msgstr "線材型號未知,將使用一般線材預設。"
msgid ""
"The filament may not be compatible with the current machine settings. A "
"random filament preset will be used."
msgstr "線材可能與目前的列印設備設定不相容,將使用隨機線材預設。"
msgid "The filament model is unknown. A random filament preset will be used."
msgstr "線材型號未知,將使用隨機線材預設。"
#: resources/data/hints.ini: [hint:Precise wall]
msgid ""
"Precise wall\n"
@@ -20614,3 +20792,19 @@ msgstr ""
"避免翹曲\n"
"您知道嗎?當列印容易翹曲的材料(如 ABS適當提高熱床溫度\n"
"可以降低翹曲的機率。"
#~ msgid "Auto-refill"
#~ msgstr "自動補料"
#~ msgid "Network Plug-in"
#~ msgstr "網路外掛程式"
#~ msgid "Packing data to 3mf"
#~ msgstr "正在將資料打包至 3mf"
#~ msgid "Cool Plate (Supertack)"
#~ msgstr "低溫列印板(超強黏性版)"
#, c-format, boost-format
#~ msgid "The selected preset: %s is not found."
#~ msgstr "找不到所選的預設:%s"

View File

@@ -1,6 +1,6 @@
{
"name": "Afinia",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Afinia configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "Anker",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Anker configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "Anycubic",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Anycubic configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "Artillery",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Artillery configurations",
"machine_model_list": [

View File

@@ -1,7 +1,7 @@
{
"name": "Bambulab",
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
"version": "02.01.00.00",
"version": "02.01.00.10",
"force_update": "0",
"description": "the initial version of BBL configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "BIQU",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "BIQU configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "Blocks",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Blocks configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "CONSTRUCT3D",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Construct3D configurations",
"machine_model_list": [

View File

@@ -1,7 +1,7 @@
{
"name": "Chuanying",
"url": "",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Chuanying configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "Co Print",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "CoPrint configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "CoLiDo",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "CoLiDo configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "Comgrow",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Comgrow configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "Creality",
"version": "02.03.02.50",
"version": "02.03.01.21",
"force_update": "0",
"description": "Creality configurations",
"machine_model_list": [
@@ -132,6 +132,10 @@
"name": "Creality K2 Pro",
"sub_path": "machine/Creality K2 Pro.json"
},
{
"name": "Creality K2",
"sub_path": "machine/Creality K2.json"
},
{
"name": "Creality Sermoon V1",
"sub_path": "machine/Creality Sermoon V1.json"
@@ -730,22 +734,42 @@
"name": "0.08mm SuperDetail @Creality K2 Pro 0.2 nozzle",
"sub_path": "process/0.08mm SuperDetail @Creality K2 Pro 0.2 nozzle.json"
},
{
"name": "0.08mm SuperDetail @Creality K2 0.2 nozzle",
"sub_path": "process/0.08mm SuperDetail @Creality K2 0.2 nozzle.json"
},
{
"name": "0.08mm SuperDetail @Creality K2 Pro 0.4 nozzle",
"sub_path": "process/0.08mm SuperDetail @Creality K2 Pro 0.4 nozzle.json"
},
{
"name": "0.08mm SuperDetail @Creality K2 0.4 nozzle",
"sub_path": "process/0.08mm SuperDetail @Creality K2 0.4 nozzle.json"
},
{
"name": "0.10mm HighDetail @Creality K2 Pro 0.2 nozzle",
"sub_path": "process/0.10mm HighDetail @Creality K2 Pro 0.2 nozzle.json"
},
{
"name": "0.10mm HighDetail @Creality K2 0.2 nozzle",
"sub_path": "process/0.10mm HighDetail @Creality K2 0.2 nozzle.json"
},
{
"name": "0.12mm Detail @Creality K2 Pro 0.2 nozzle",
"sub_path": "process/0.12mm Detail @Creality K2 Pro 0.2 nozzle.json"
},
{
"name": "0.12mm Detail @Creality K2 0.2 nozzle",
"sub_path": "process/0.12mm Detail @Creality K2 0.2 nozzle.json"
},
{
"name": "0.12mm Detail @Creality K2 Pro 0.4 nozzle",
"sub_path": "process/0.12mm Detail @Creality K2 Pro 0.4 nozzle.json"
},
{
"name": "0.12mm Detail @Creality K2 0.4 nozzle",
"sub_path": "process/0.12mm Detail @Creality K2 0.4 nozzle.json"
},
{
"name": "0.12mm Fine @Creality CR10SE 0.2",
"sub_path": "process/0.12mm Fine @Creality CR10SE 0.2.json"
@@ -802,6 +826,10 @@
"name": "0.14mm Optimal @Creality K2 Pro 0.2 nozzle",
"sub_path": "process/0.14mm Optimal @Creality K2 Pro 0.2 nozzle.json"
},
{
"name": "0.14mm Optimal @Creality K2 0.2 nozzle",
"sub_path": "process/0.14mm Optimal @Creality K2 0.2 nozzle.json"
},
{
"name": "0.16mm Optimal @Creality CR10SE 0.2",
"sub_path": "process/0.16mm Optimal @Creality CR10SE 0.2.json"
@@ -862,10 +890,18 @@
"name": "0.16mm Optimal @Creality K2 Pro 0.4 nozzle",
"sub_path": "process/0.16mm Optimal @Creality K2 Pro 0.4 nozzle.json"
},
{
"name": "0.16mm Optimal @Creality K2 0.4 nozzle",
"sub_path": "process/0.16mm Optimal @Creality K2 0.4 nozzle.json"
},
{
"name": "0.18mm Detail @Creality K2 Pro 0.6 nozzle",
"sub_path": "process/0.18mm Detail @Creality K2 Pro 0.6 nozzle.json"
},
{
"name": "0.18mm Detail @Creality K2 0.6 nozzle",
"sub_path": "process/0.18mm Detail @Creality K2 0.6 nozzle.json"
},
{
"name": "0.20mm Standard @Creality CR10SE 0.2",
"sub_path": "process/0.20mm Standard @Creality CR10SE 0.2.json"
@@ -926,6 +962,10 @@
"name": "0.20mm Standard @Creality K2 Pro 0.4 nozzle",
"sub_path": "process/0.20mm Standard @Creality K2 Pro 0.4 nozzle.json"
},
{
"name": "0.20mm Standard @Creality K2 0.4 nozzle",
"sub_path": "process/0.20mm Standard @Creality K2 0.4 nozzle.json"
},
{
"name": "0.20mm Ultrafast @Creality Ender-5 Max 0.4mm nozzle",
"sub_path": "process/0.20mm Ultrafast @Creality Ender-5 Max 0.4mm nozzle.json"
@@ -938,6 +978,10 @@
"name": "0.24mm Detail @Creality K2 Pro 0.8 nozzle",
"sub_path": "process/0.24mm Detail @Creality K2 Pro 0.8 nozzle.json"
},
{
"name": "0.24mm Detail @Creality K2 0.8 nozzle",
"sub_path": "process/0.24mm Detail @Creality K2 0.8 nozzle.json"
},
{
"name": "0.24mm Draft @Creality CR10SE 0.2",
"sub_path": "process/0.24mm Draft @Creality CR10SE 0.2.json"
@@ -994,6 +1038,10 @@
"name": "0.24mm Draft @Creality K2 Pro 0.4 nozzle",
"sub_path": "process/0.24mm Draft @Creality K2 Pro 0.4 nozzle.json"
},
{
"name": "0.24mm Draft @Creality K2 0.4 nozzle",
"sub_path": "process/0.24mm Draft @Creality K2 0.4 nozzle.json"
},
{
"name": "0.24mm Optimal @Creality Ender-3 V3",
"sub_path": "process/0.24mm Optimal @Creality Ender3V3 0.6 nozzle.json"
@@ -1030,10 +1078,18 @@
"name": "0.24mm Optimal @Creality K2 Pro 0.6 nozzle",
"sub_path": "process/0.24mm Optimal @Creality K2 Pro 0.6 nozzle.json"
},
{
"name": "0.24mm Optimal @Creality K2 0.6 nozzle",
"sub_path": "process/0.24mm Optimal @Creality K2 0.6 nozzle.json"
},
{
"name": "0.28mm SuperDraft @Creality K2 Pro 0.4 nozzle",
"sub_path": "process/0.28mm SuperDraft @Creality K2 Pro 0.4 nozzle.json"
},
{
"name": "0.28mm SuperDraft @Creality K2 0.4 nozzle",
"sub_path": "process/0.28mm SuperDraft @Creality K2 0.4 nozzle.json"
},
{
"name": "0.30mm Standard @Creality Ender-3 V3",
"sub_path": "process/0.30mm Standard @Creality Ender3V3 0.6 nozzle.json"
@@ -1066,6 +1122,10 @@
"name": "0.30mm Standard @Creality K2 Pro 0.6 nozzle",
"sub_path": "process/0.30mm Standard @Creality K2 Pro 0.6 nozzle.json"
},
{
"name": "0.30mm Standard @Creality K2 0.6 nozzle",
"sub_path": "process/0.30mm Standard @Creality K2 0.6 nozzle.json"
},
{
"name": "0.32mm Optimal @Creality K1 (0.8 nozzle)",
"sub_path": "process/0.32mm Optimal @Creality K1 (0.8 nozzle).json"
@@ -1086,6 +1146,10 @@
"name": "0.32mm Optimal @Creality K2 Pro 0.8 nozzle",
"sub_path": "process/0.32mm Optimal @Creality K2 Pro 0.8 nozzle.json"
},
{
"name": "0.32mm Optimal @Creality K2 0.8 nozzle",
"sub_path": "process/0.32mm Optimal @Creality K2 0.8 nozzle.json"
},
{
"name": "0.36mm Draft @Creality Ender-3 V3",
"sub_path": "process/0.36mm Draft @Creality Ender3V3 0.6 nozzle.json"
@@ -1114,10 +1178,14 @@
"name": "0.36mm Draft @Creality K2 Plus 0.6 nozzle",
"sub_path": "process/0.36mm Draft @Creality K2 Plus 0.6 nozzle.json"
},
{
{
"name": "0.36mm Draft @Creality K2 Pro 0.6 nozzle",
"sub_path": "process/0.36mm Draft @Creality K2 Pro 0.6 nozzle.json"
},
{
"name": "0.36mm Draft @Creality K2 0.6 nozzle",
"sub_path": "process/0.36mm Draft @Creality K2 0.6 nozzle.json"
},
{
"name": "0.40mm Standard @Creality K1 (0.8 nozzle)",
"sub_path": "process/0.40mm Standard @Creality K1 (0.8 nozzle).json"
@@ -1142,10 +1210,18 @@
"name": "0.40mm Standard @Creality K2 Pro 0.8 nozzle",
"sub_path": "process/0.40mm Standard @Creality K2 Pro 0.8 nozzle.json"
},
{
"name": "0.40mm Standard @Creality K2 0.8 nozzle",
"sub_path": "process/0.40mm Standard @Creality K2 0.8 nozzle.json"
},
{
"name": "0.42mm SuperDraft @Creality K2 Pro 0.6 nozzle",
"sub_path": "process/0.42mm SuperDraft @Creality K2 Pro 0.6 nozzle.json"
},
{
"name": "0.42mm SuperDraft @Creality K2 0.6 nozzle",
"sub_path": "process/0.42mm SuperDraft @Creality K2 0.6 nozzle.json"
},
{
"name": "0.48mm Draft @Creality K1 (0.8 nozzle)",
"sub_path": "process/0.48mm Draft @Creality K1 (0.8 nozzle).json"
@@ -1170,10 +1246,18 @@
"name": "0.48mm Draft @Creality K2 Pro 0.8 nozzle",
"sub_path": "process/0.48mm Draft @Creality K2 Pro 0.8 nozzle.json"
},
{
"name": "0.48mm Draft @Creality K2 0.8 nozzle",
"sub_path": "process/0.48mm Draft @Creality K2 0.8 nozzle.json"
},
{
"name": "0.56mm SuperDraft @Creality K2 Pro 0.8 nozzle",
"sub_path": "process/0.56mm SuperDraft @Creality K2 Pro 0.8 nozzle.json"
},
{
"name": "0.56mm SuperDraft @Creality K2 0.8 nozzle",
"sub_path": "process/0.56mm SuperDraft @Creality K2 0.8 nozzle.json"
},
{
"name": "0.08mm SuperDetail @Creality Ender5Pro (2019) 0.2",
"sub_path": "process/0.08mm SuperDetail @Creality Ender5Pro (2019) 0.2.json"
@@ -1898,18 +1982,34 @@
"name": "Creality K2 Pro 0.2 nozzle",
"sub_path": "machine/Creality K2 Pro 0.2 nozzle.json"
},
{
"name": "Creality K2 0.2 nozzle",
"sub_path": "machine/Creality K2 0.2 nozzle.json"
},
{
"name": "Creality K2 Pro 0.4 nozzle",
"sub_path": "machine/Creality K2 Pro 0.4 nozzle.json"
},
{
"name": "Creality K2 0.4 nozzle",
"sub_path": "machine/Creality K2 0.4 nozzle.json"
},
{
"name": "Creality K2 Pro 0.6 nozzle",
"sub_path": "machine/Creality K2 Pro 0.6 nozzle.json"
},
{
"name": "Creality K2 0.6 nozzle",
"sub_path": "machine/Creality K2 0.6 nozzle.json"
},
{
"name": "Creality K2 Pro 0.8 nozzle",
"sub_path": "machine/Creality K2 Pro 0.8 nozzle.json"
},
{
"name": "Creality K2 0.8 nozzle",
"sub_path": "machine/Creality K2 0.8 nozzle.json"
},
{
"name": "Creality Sermoon V1 0.4 nozzle",
"sub_path": "machine/Creality Sermoon V1 0.4 nozzle.json"

Binary file not shown.

After

Width:  |  Height:  |  Size: 48 KiB

View File

@@ -21,6 +21,10 @@
";filament start gcode\n{if (position[2] > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
],
"compatible_printers": [
"Creality K2 0.2 nozzle",
"Creality K2 0.4 nozzle",
"Creality K2 0.6 nozzle",
"Creality K2 0.8 nozzle",
"Creality K2 Plus 0.2 nozzle",
"Creality K2 Plus 0.4 nozzle",
"Creality K2 Plus 0.6 nozzle",

View File

@@ -21,6 +21,10 @@
";filament start gcode\n{if (position[2] > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
],
"compatible_printers": [
"Creality K2 0.2 nozzle",
"Creality K2 0.4 nozzle",
"Creality K2 0.6 nozzle",
"Creality K2 0.8 nozzle",
"Creality K2 Plus 0.2 nozzle",
"Creality K2 Plus 0.4 nozzle",
"Creality K2 Plus 0.6 nozzle",

View File

@@ -18,6 +18,10 @@
";filament start gcode\n{if (position[2] > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
],
"compatible_printers": [
"Creality K2 0.2 nozzle",
"Creality K2 0.4 nozzle",
"Creality K2 0.6 nozzle",
"Creality K2 0.8 nozzle",
"Creality K2 Plus 0.2 nozzle",
"Creality K2 Plus 0.4 nozzle",
"Creality K2 Plus 0.6 nozzle",

View File

@@ -54,6 +54,10 @@
";filament start gcode\n{if (position[2] > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
],
"compatible_printers": [
"Creality K2 0.2 nozzle",
"Creality K2 0.4 nozzle",
"Creality K2 0.6 nozzle",
"Creality K2 0.8 nozzle",
"Creality K2 Plus 0.2 nozzle",
"Creality K2 Plus 0.4 nozzle",
"Creality K2 Plus 0.6 nozzle",

View File

@@ -48,6 +48,10 @@
";filament start gcode\n{if (position[2] > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
],
"compatible_printers": [
"Creality K2 0.2 nozzle",
"Creality K2 0.4 nozzle",
"Creality K2 0.6 nozzle",
"Creality K2 0.8 nozzle",
"Creality K2 Plus 0.2 nozzle",
"Creality K2 Plus 0.4 nozzle",
"Creality K2 Plus 0.6 nozzle",

View File

@@ -9,6 +9,10 @@
"23"
],
"compatible_printers": [
"Creality K2 0.2 nozzle",
"Creality K2 0.4 nozzle",
"Creality K2 0.6 nozzle",
"Creality K2 0.8 nozzle",
"Creality K2 Plus 0.2 nozzle",
"Creality K2 Plus 0.4 nozzle",
"Creality K2 Plus 0.6 nozzle",

View File

@@ -9,6 +9,10 @@
"18"
],
"compatible_printers": [
"Creality K2 0.2 nozzle",
"Creality K2 0.4 nozzle",
"Creality K2 0.6 nozzle",
"Creality K2 0.8 nozzle",
"Creality K2 Plus 0.2 nozzle",
"Creality K2 Plus 0.4 nozzle",
"Creality K2 Plus 0.6 nozzle",

View File

@@ -9,6 +9,10 @@
"10"
],
"compatible_printers": [
"Creality K2 0.2 nozzle",
"Creality K2 0.4 nozzle",
"Creality K2 0.6 nozzle",
"Creality K2 0.8 nozzle",
"Creality K2 Plus 0.2 nozzle",
"Creality K2 Plus 0.4 nozzle",
"Creality K2 Plus 0.6 nozzle",

View File

@@ -15,6 +15,10 @@
"0"
],
"compatible_printers": [
"Creality K2 0.2 nozzle",
"Creality K2 0.4 nozzle",
"Creality K2 0.6 nozzle",
"Creality K2 0.8 nozzle",
"Creality K2 Plus 0.2 nozzle",
"Creality K2 Plus 0.4 nozzle",
"Creality K2 Plus 0.6 nozzle",

View File

@@ -36,6 +36,10 @@
";filament start gcode\n{if (position[2] > first_layer_height) }\nM104 S[nozzle_temperature]\n{else} \nM104 S[first_layer_temperature]\n{endif}"
],
"compatible_printers": [
"Creality K2 0.2 nozzle",
"Creality K2 0.4 nozzle",
"Creality K2 0.6 nozzle",
"Creality K2 0.8 nozzle",
"Creality K2 Plus 0.2 nozzle",
"Creality K2 Plus 0.4 nozzle",
"Creality K2 Plus 0.6 nozzle",

View File

@@ -0,0 +1,183 @@
{
"type": "machine",
"from": "system",
"settings_id": "GM001",
"instantiation": "true",
"inherits": "fdm_creality_common",
"printer_model": "Creality K2",
"printer_settings_id": "Creality",
"auxiliary_fan": "1",
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
"change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y140 F30000\nG1 Z{z_after_toolchange} F600",
"cooling_tube_length": "0",
"cooling_tube_retraction": "0",
"default_print_profile": "0.10mm Standard @Creality K2 0.2 nozzle",
"emit_machine_limits_to_gcode": "1",
"enable_filament_ramming": "0",
"extra_loading_move": "0",
"extruder_clearance_height_to_lid": "118",
"extruder_clearance_height_to_rod": "24",
"extruder_clearance_radius": "64",
"fan_kickstart": "0",
"fan_speedup_overhangs": "1",
"fan_speedup_time": "0",
"gcode_flavor": "klipper",
"high_current_on_filament_swap": "0",
"machine_end_gcode": "END_PRINT",
"machine_load_filament_time": "0",
"machine_max_acceleration_e": [
"5000",
"5000"
],
"machine_max_acceleration_extruding": [
"20000",
"20000"
],
"machine_max_acceleration_retracting": [
"5000",
"5000"
],
"machine_max_acceleration_travel": [
"20000",
"20000"
],
"machine_max_acceleration_x": [
"20000",
"20000"
],
"machine_max_acceleration_y": [
"20000",
"20000"
],
"machine_max_acceleration_z": [
"100",
"100"
],
"machine_max_jerk_e": [
"10",
"10"
],
"machine_max_jerk_x": [
"100",
"100"
],
"machine_max_jerk_y": [
"100",
"100"
],
"machine_max_jerk_z": [
"5",
"5"
],
"machine_max_speed_e": [
"50",
"50"
],
"machine_max_speed_x": [
"800",
"800"
],
"machine_max_speed_y": [
"800",
"800"
],
"machine_max_speed_z": [
"5",
"5"
],
"machine_pause_gcode": "PAUSE",
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y130 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y130 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X130 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
"machine_unload_filament_time": "0",
"manual_filament_change": "0",
"nozzle_type": "hardened_steel",
"nozzle_volume": "183",
"parking_pos_retraction": "0",
"preferred_orientation": "0",
"printable_area": [
"0x0",
"260x0",
"260x260",
"0x260"
],
"printable_height": "260",
"printer_technology": "FFF",
"printer_variant": "0.2",
"printhost_authorization_type": "key",
"purge_in_prime_tower": "0",
"scan_first_layer": "0",
"silent_mode": "0",
"single_extruder_multi_material": "1",
"support_air_filtration": "1",
"support_chamber_temp_control": "0",
"support_multi_bed_types": "1",
"thumbnails": [
"300x300",
"96x96"
],
"thumbnails_format": "PNG",
"use_firmware_retraction": "0",
"use_relative_e_distances": "1",
"z_offset": "0",
"default_filament_profile": [
"Creality Generic PLA @K2-all"
],
"deretraction_speed": [
"40"
],
"extruder_colour": [
"#FCE94F"
],
"extruder_offset": [
"0x0"
],
"max_layer_height": [
"0.14"
],
"min_layer_height": [
"0.04"
],
"nozzle_diameter": [
"0.2"
],
"retract_before_wipe": [
"70%"
],
"retract_length_toolchange": [
"0"
],
"retract_lift_above": [
"0"
],
"retract_lift_below": [
"259"
],
"retract_restart_extra": [
"0"
],
"retract_restart_extra_toolchange": [
"0"
],
"retract_when_changing_layer": [
"1"
],
"retraction_length": [
"0.5"
],
"retraction_minimum_travel": [
"1"
],
"retraction_speed": [
"40"
],
"wipe": [
"1"
],
"wipe_distance": [
"2"
],
"z_hop": [
"0.4"
],
"name": "Creality K2 0.2 nozzle",
"nozzle_height": "4"
}

View File

@@ -0,0 +1,182 @@
{
"type": "machine",
"from": "system",
"settings_id": "GM001",
"instantiation": "true",
"inherits": "fdm_creality_common",
"printer_model": "Creality K2",
"printer_settings_id": "Creality",
"auxiliary_fan": "1",
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
"change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y140 F30000\nG1 Z{z_after_toolchange} F600",
"cooling_tube_length": "0",
"cooling_tube_retraction": "0",
"default_print_profile": "0.16mm Standard @Creality K2 0.4 nozzle",
"emit_machine_limits_to_gcode": "1",
"enable_filament_ramming": "0",
"extra_loading_move": "0",
"extruder_clearance_height_to_lid": "118",
"extruder_clearance_height_to_rod": "24",
"extruder_clearance_radius": "64",
"fan_kickstart": "0",
"fan_speedup_overhangs": "1",
"fan_speedup_time": "0",
"gcode_flavor": "klipper",
"high_current_on_filament_swap": "0",
"machine_end_gcode": "END_PRINT",
"machine_load_filament_time": "0",
"machine_max_acceleration_e": [
"5000",
"5000"
],
"machine_max_acceleration_extruding": [
"20000",
"20000"
],
"machine_max_acceleration_retracting": [
"5000",
"5000"
],
"machine_max_acceleration_travel": [
"20000",
"20000"
],
"machine_max_acceleration_x": [
"20000",
"20000"
],
"machine_max_acceleration_y": [
"20000",
"20000"
],
"machine_max_acceleration_z": [
"100",
"100"
],
"machine_max_jerk_e": [
"10",
"10"
],
"machine_max_jerk_x": [
"100",
"100"
],
"machine_max_jerk_y": [
"100",
"100"
],
"machine_max_jerk_z": [
"5",
"5"
],
"machine_max_speed_e": [
"50",
"50"
],
"machine_max_speed_x": [
"800",
"800"
],
"machine_max_speed_y": [
"800",
"800"
],
"machine_max_speed_z": [
"5",
"5"
],
"machine_pause_gcode": "PAUSE",
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y130 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y130 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X130 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
"machine_unload_filament_time": "0",
"manual_filament_change": "0",
"nozzle_type": "hardened_steel",
"nozzle_volume": "183",
"parking_pos_retraction": "0",
"preferred_orientation": "0",
"printable_area": [
"0x0",
"260x0",
"260x260",
"0x260"
],
"printable_height": "260",
"printer_technology": "FFF",
"printer_variant": "0.4",
"printhost_authorization_type": "key",
"purge_in_prime_tower": "0",
"scan_first_layer": "0",
"silent_mode": "0",
"single_extruder_multi_material": "1",
"support_air_filtration": "1",
"support_chamber_temp_control": "0",
"support_multi_bed_types": "1",
"thumbnails": [
"300x300",
"96x96"
],
"thumbnails_format": "PNG",
"use_firmware_retraction": "0",
"use_relative_e_distances": "1",
"z_offset": "0",
"default_filament_profile": [
"Creality Generic PLA @K2-all"
],
"deretraction_speed": [
"40"
],
"extruder_colour": [
"#FCE94F"
],
"extruder_offset": [
"0x0"
],
"max_layer_height": [
"0.32"
],
"min_layer_height": [
"0.08"
],
"nozzle_diameter": [
"0.4"
],
"retract_before_wipe": [
"70%"
],
"retract_length_toolchange": [
"0"
],
"retract_lift_above": [
"0"
],
"retract_lift_below": [
"259"
],
"retract_restart_extra": [
"0"
],
"retract_restart_extra_toolchange": [
"0"
],
"retract_when_changing_layer": [
"1"
],
"retraction_length": [
"0.8"
],
"retraction_minimum_travel": [
"1"
],
"retraction_speed": [
"40"
],
"wipe": [
"1"
],
"wipe_distance": [
"2"
],
"z_hop": [
"0.4"
],
"name": "Creality K2 0.4 nozzle"
}

View File

@@ -0,0 +1,182 @@
{
"type": "machine",
"from": "system",
"setting_id": "GM001",
"instantiation": "true",
"inherits": "fdm_creality_common",
"printer_model": "Creality K2",
"printer_settings_id": "Creality",
"auxiliary_fan": "1",
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
"change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y140 F30000\nG1 Z{z_after_toolchange} F600",
"cooling_tube_length": "0",
"cooling_tube_retraction": "0",
"default_print_profile": "0.30mm Standard @Creality K2 0.6 nozzle",
"emit_machine_limits_to_gcode": "1",
"enable_filament_ramming": "0",
"extra_loading_move": "0",
"extruder_clearance_height_to_lid": "118",
"extruder_clearance_height_to_rod": "24",
"extruder_clearance_radius": "64",
"fan_kickstart": "0",
"fan_speedup_overhangs": "1",
"fan_speedup_time": "0",
"gcode_flavor": "klipper",
"high_current_on_filament_swap": "0",
"machine_end_gcode": "END_PRINT",
"machine_load_filament_time": "0",
"machine_max_acceleration_e": [
"5000",
"5000"
],
"machine_max_acceleration_extruding": [
"20000",
"20000"
],
"machine_max_acceleration_retracting": [
"5000",
"5000"
],
"machine_max_acceleration_travel": [
"20000",
"20000"
],
"machine_max_acceleration_x": [
"20000",
"20000"
],
"machine_max_acceleration_y": [
"20000",
"20000"
],
"machine_max_acceleration_z": [
"100",
"100"
],
"machine_max_jerk_e": [
"10",
"10"
],
"machine_max_jerk_x": [
"100",
"100"
],
"machine_max_jerk_y": [
"100",
"100"
],
"machine_max_jerk_z": [
"5",
"5"
],
"machine_max_speed_e": [
"50",
"50"
],
"machine_max_speed_x": [
"800",
"800"
],
"machine_max_speed_y": [
"800",
"800"
],
"machine_max_speed_z": [
"5",
"5"
],
"machine_pause_gcode": "PAUSE",
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y130 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y130 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X130 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
"machine_unload_filament_time": "0",
"manual_filament_change": "0",
"nozzle_type": "hardened_steel",
"nozzle_volume": "183",
"parking_pos_retraction": "0",
"preferred_orientation": "0",
"printable_area": [
"0x0",
"260x0",
"260x260",
"0x260"
],
"printable_height": "260",
"printer_technology": "FFF",
"printer_variant": "0.6",
"printhost_authorization_type": "key",
"purge_in_prime_tower": "0",
"scan_first_layer": "0",
"silent_mode": "0",
"single_extruder_multi_material": "1",
"support_air_filtration": "1",
"support_chamber_temp_control": "0",
"support_multi_bed_types": "1",
"thumbnails": [
"300x300",
"96x96"
],
"thumbnails_format": "PNG",
"use_firmware_retraction": "0",
"use_relative_e_distances": "1",
"z_offset": "0",
"default_filament_profile": [
"Creality Generic PLA @K2-all"
],
"deretraction_speed": [
"40"
],
"extruder_colour": [
"#FCE94F"
],
"extruder_offset": [
"0x0"
],
"max_layer_height": [
"0.42"
],
"min_layer_height": [
"0.12"
],
"nozzle_diameter": [
"0.6"
],
"retract_before_wipe": [
"70%"
],
"retract_length_toolchange": [
"0"
],
"retract_lift_above": [
"0"
],
"retract_lift_below": [
"259"
],
"retract_restart_extra": [
"0"
],
"retract_restart_extra_toolchange": [
"0"
],
"retract_when_changing_layer": [
"1"
],
"retraction_length": [
"1.5"
],
"retraction_minimum_travel": [
"1"
],
"retraction_speed": [
"40"
],
"wipe": [
"1"
],
"wipe_distance": [
"2"
],
"z_hop": [
"0.4"
],
"name": "Creality K2 0.6 nozzle"
}

View File

@@ -0,0 +1,182 @@
{
"type": "machine",
"from": "system",
"setting_id": "GM001",
"instantiation": "true",
"inherits": "fdm_creality_common",
"printer_model": "Creality K2",
"printer_settings_id": "Creality",
"auxiliary_fan": "1",
"before_layer_change_gcode": ";BEFORE_LAYER_CHANGE\n;[layer_z]\nG92 E0\n",
"change_filament_gcode": "G2 Z{z_after_toolchange + 0.4} I0.86 J0.86 P1 F10000 ; spiral lift a little from second lift\nG1 X0 Y140 F30000\nG1 Z{z_after_toolchange} F600",
"cooling_tube_length": "0",
"cooling_tube_retraction": "0",
"default_print_profile": "0.40mm Standard @Creality K2 0.8 nozzle",
"emit_machine_limits_to_gcode": "1",
"enable_filament_ramming": "0",
"extra_loading_move": "0",
"extruder_clearance_height_to_lid": "118",
"extruder_clearance_height_to_rod": "24",
"extruder_clearance_radius": "64",
"fan_kickstart": "0",
"fan_speedup_overhangs": "1",
"fan_speedup_time": "0",
"gcode_flavor": "klipper",
"high_current_on_filament_swap": "0",
"machine_end_gcode": "END_PRINT",
"machine_load_filament_time": "0",
"machine_max_acceleration_e": [
"5000",
"5000"
],
"machine_max_acceleration_extruding": [
"20000",
"20000"
],
"machine_max_acceleration_retracting": [
"5000",
"5000"
],
"machine_max_acceleration_travel": [
"20000",
"20000"
],
"machine_max_acceleration_x": [
"20000",
"20000"
],
"machine_max_acceleration_y": [
"20000",
"20000"
],
"machine_max_acceleration_z": [
"100",
"100"
],
"machine_max_jerk_e": [
"10",
"10"
],
"machine_max_jerk_x": [
"100",
"100"
],
"machine_max_jerk_y": [
"100",
"100"
],
"machine_max_jerk_z": [
"5",
"5"
],
"machine_max_speed_e": [
"50",
"50"
],
"machine_max_speed_x": [
"800",
"800"
],
"machine_max_speed_y": [
"800",
"800"
],
"machine_max_speed_z": [
"5",
"5"
],
"machine_pause_gcode": "PAUSE",
"machine_start_gcode": "M140 S0\nM104 S0 \nSTART_PRINT EXTRUDER_TEMP=[nozzle_temperature_initial_layer] BED_TEMP=[bed_temperature_initial_layer_single]\nT[initial_no_support_extruder]\nM104 S[nozzle_temperature_initial_layer]\nM204 S2000\nG1 Z3 F600\nM83\nG1 Y130 F12000\nG1 X0 F12000\nG1 Z0.2 F600\nG1 X0 Y130 F6000\nG1 E0.8 F300\nG1 X0 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG1 X130 Y0 E9 F{filament_max_volumetric_speed[initial_extruder]/0.3*60}\nG92 E0\nG1 Z1 F600",
"machine_unload_filament_time": "0",
"manual_filament_change": "0",
"nozzle_type": "hardened_steel",
"nozzle_volume": "183",
"parking_pos_retraction": "0",
"preferred_orientation": "0",
"printable_area": [
"0x0",
"260x0",
"260x260",
"0x260"
],
"printable_height": "260",
"printer_technology": "FFF",
"printer_variant": "0.8",
"printhost_authorization_type": "key",
"purge_in_prime_tower": "0",
"scan_first_layer": "0",
"silent_mode": "0",
"single_extruder_multi_material": "1",
"support_air_filtration": "1",
"support_chamber_temp_control": "0",
"support_multi_bed_types": "1",
"thumbnails": [
"300x300",
"96x96"
],
"thumbnails_format": "PNG",
"use_firmware_retraction": "0",
"use_relative_e_distances": "1",
"z_offset": "0",
"default_filament_profile": [
"Creality Generic PLA @K2-all"
],
"deretraction_speed": [
"40"
],
"extruder_colour": [
"#FCE94F"
],
"extruder_offset": [
"0x0"
],
"max_layer_height": [
"0.56"
],
"min_layer_height": [
"0.16"
],
"nozzle_diameter": [
"0.8"
],
"retract_before_wipe": [
"70%"
],
"retract_length_toolchange": [
"0"
],
"retract_lift_above": [
"0"
],
"retract_lift_below": [
"259"
],
"retract_restart_extra": [
"0"
],
"retract_restart_extra_toolchange": [
"0"
],
"retract_when_changing_layer": [
"1"
],
"retraction_length": [
"3"
],
"retraction_minimum_travel": [
"1"
],
"retraction_speed": [
"40"
],
"wipe": [
"1"
],
"wipe_distance": [
"2"
],
"z_hop": [
"0.4"
],
"name": "Creality K2 0.8 nozzle"
}

View File

@@ -0,0 +1,13 @@
{
"type": "machine_model",
"name": "Creality K2",
"model_id": "Creality_K2",
"nozzle_diameter": "0.2;0.4;0.6;0.8",
"machine_tech": "FFF",
"family": "Creality",
"bed_model": "creality_k1_buildplate_model.stl",
"default_bed_type": "Textured PEI Plate",
"bed_texture": "creality_k1_buildplate_texture.png",
"hotend_model": "",
"default_materials": "Creality Generic ABS @K2-all;Creality Generic ASA @K2-all;Creality Generic PETG @K2-all;Creality Generic PLA @K2-all;Creality Generic PLA High Speed @K2-all;Creality Generic PLA Matte @K2-all;Creality Generic PLA Silk @K2-all"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.08mm SuperDetail @Creality K2 0.2 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "5",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "25",
"internal_bridge_speed": "70",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K2 0.2 nozzle"
],
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.22",
"outer_wall_speed": "100",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.22",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "500",
"initial_layer_line_width": "0.25",
"initial_layer_print_height": "0.1",
"initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
"sparse_infill_line_width": "0.25",
"infill_wall_overlap": "30",
"sparse_infill_speed": "120",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.08",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.25",
"inner_wall_speed": "150",
"wall_loops": "4",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.22",
"internal_solid_infill_speed": "150",
"initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.2",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.22",
"top_surface_acceleration": "2000",
"top_surface_speed": "100",
"top_shell_layers": "7",
"top_shell_thickness": "0.8",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.08mm SuperDetail @Creality K2 0.4 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "7",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "10",
"internal_bridge_speed": "200%",
"brim_width": "5",
"brim_object_gap": "0.3",
"compatible_printers": [
"Creality K2 0.4 nozzle"
],
"default_acceleration": "6000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.42",
"outer_wall_speed": "200",
"outer_wall_acceleration": "2000",
"inner_wall_acceleration": "2000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.42",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "1000",
"initial_layer_line_width": "0.5",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
"gap_infill_speed": "250",
"infill_combination": "0",
"sparse_infill_line_width": "0.45",
"infill_wall_overlap": "30%",
"sparse_infill_speed": "300",
"interface_shells": "0",
"ironing_flow": "8",
"ironing_spacing": "0.15",
"ironing_speed": "60",
"ironing_type": "no ironing",
"layer_height": "0.08",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.45",
"inner_wall_speed": "300",
"wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.42",
"internal_solid_infill_speed": "250",
"initial_layer_infill_speed": "105",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.4",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.42",
"top_surface_acceleration": "2000",
"top_surface_speed": "200",
"top_shell_layers": "9",
"top_shell_thickness": "0.8",
"travel_acceleration": "10000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "40",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.10mm HighDetail @Creality K2 0.2 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "5",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "25",
"internal_bridge_speed": "70",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K2 0.2 nozzle"
],
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.22",
"outer_wall_speed": "100",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.22",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "500",
"initial_layer_line_width": "0.25",
"initial_layer_print_height": "0.1",
"initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
"sparse_infill_line_width": "0.25",
"infill_wall_overlap": "30",
"sparse_infill_speed": "120",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.1",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.25",
"inner_wall_speed": "150",
"wall_loops": "4",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.22",
"internal_solid_infill_speed": "150",
"initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.2",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.22",
"top_surface_acceleration": "2000",
"top_surface_speed": "100",
"top_shell_layers": "7",
"top_shell_thickness": "0.8",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.12mm Detail @Creality K2 0.2 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "5",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "25",
"internal_bridge_speed": "70",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K2 0.2 nozzle"
],
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.22",
"outer_wall_speed": "100",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.22",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "500",
"initial_layer_line_width": "0.25",
"initial_layer_print_height": "0.1",
"initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
"sparse_infill_line_width": "0.25",
"infill_wall_overlap": "30",
"sparse_infill_speed": "120",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.12",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.25",
"inner_wall_speed": "150",
"wall_loops": "4",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.22",
"internal_solid_infill_speed": "150",
"initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.2",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.22",
"top_surface_acceleration": "2000",
"top_surface_speed": "100",
"top_shell_layers": "7",
"top_shell_thickness": "0.8",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.12mm Detail @Creality K2 0.4 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "5",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "10",
"internal_bridge_speed": "200%",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K2 0.4 nozzle"
],
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.42",
"outer_wall_speed": "200",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.42",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "2000",
"initial_layer_line_width": "0.5",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
"gap_infill_speed": "250",
"infill_combination": "0",
"sparse_infill_line_width": "0.45",
"infill_wall_overlap": "30%",
"sparse_infill_speed": "300",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.12",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.45",
"inner_wall_speed": "300",
"wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.42",
"internal_solid_infill_speed": "250",
"initial_layer_infill_speed": "105",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.42",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.42",
"top_surface_acceleration": "5000",
"top_surface_speed": "200",
"top_shell_layers": "6",
"top_shell_thickness": "0.8",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "40",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.14mm Optimal @Creality K2 0.2 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "5",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "25",
"internal_bridge_speed": "70",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K2 0.2 nozzle"
],
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.22",
"outer_wall_speed": "100",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.22",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "500",
"initial_layer_line_width": "0.25",
"initial_layer_print_height": "0.1",
"initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
"sparse_infill_line_width": "0.25",
"infill_wall_overlap": "30",
"sparse_infill_speed": "120",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.14",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.25",
"inner_wall_speed": "150",
"wall_loops": "4",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.22",
"internal_solid_infill_speed": "150",
"initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.2",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.22",
"top_surface_acceleration": "2000",
"top_surface_speed": "100",
"top_shell_layers": "7",
"top_shell_thickness": "0.8",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.16mm Optimal @Creality K2 0.4 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "4",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "10",
"internal_bridge_speed": "150%",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K2 0.4 nozzle"
],
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.42",
"outer_wall_speed": "200",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.42",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "2000",
"initial_layer_line_width": "0.5",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
"gap_infill_speed": "250",
"infill_combination": "0",
"sparse_infill_line_width": "0.45",
"infill_wall_overlap": "30%",
"sparse_infill_speed": "270",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.16",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.45",
"inner_wall_speed": "300",
"wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.42",
"internal_solid_infill_speed": "250",
"initial_layer_infill_speed": "105",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.42",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.42",
"top_surface_acceleration": "5000",
"top_surface_speed": "200",
"top_shell_layers": "6",
"top_shell_thickness": "0.8",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "40",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.18mm Detail @Creality K2 0.6 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "25",
"internal_bridge_speed": "70",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K2 0.6 nozzle"
],
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.62",
"outer_wall_speed": "100",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.62",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "500",
"initial_layer_line_width": "0.62",
"initial_layer_print_height": "0.3",
"initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
"sparse_infill_line_width": "0.62",
"infill_wall_overlap": "30",
"sparse_infill_speed": "120",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.18",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.62",
"inner_wall_speed": "150",
"wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.62",
"internal_solid_infill_speed": "150",
"initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.6",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.62",
"top_surface_acceleration": "2000",
"top_surface_speed": "100",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -0,0 +1,268 @@
{
"type": "process",
"setting_id": "GP004",
"name": "0.20mm Standard @Creality K2 0.4 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "fdm_process_creality_common",
"accel_to_decel_enable": "1",
"accel_to_decel_factor": "100",
"acceleration_limit_mess": "[[0.5,1.0,100,6000,210],[1.0,1.5,80,5500,200],[1.5,2.0,60,5000,190]]",
"acceleration_limit_mess_enable": "0",
"ai_infill": "0",
"alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
"bottom_solid_infill_flow_ratio": "1",
"bottom_surface_pattern": "monotonic",
"bridge_acceleration": "50%",
"bridge_angle": "0",
"bridge_density": "100%",
"bridge_flow": "1",
"bridge_no_support": "0",
"bridge_speed": "25",
"brim_ears_detection_length": "1",
"brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
"brim_type": "auto_brim",
"brim_width": "5",
"compatible_printers": [
"Creality K2 0.4 nozzle"
],
"counterbore_hole_bridging": "none",
"default_acceleration": "12000",
"default_jerk": "12",
"detect_narrow_internal_solid_infill": "1",
"detect_overhang_wall": "1",
"detect_thin_wall": "0",
"dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",
"enforce_support_layers": "0",
"ensure_vertical_shell_thickness": "ensure_all",
"exclude_object": "1",
"extra_perimeters_on_overhangs": "0",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"filter_out_gap_fill": "0",
"flush_into_infill": "0",
"flush_into_objects": "0",
"flush_into_support": "1",
"fuzzy_skin": "none",
"fuzzy_skin_first_layer": "0",
"fuzzy_skin_point_distance": "0.8",
"fuzzy_skin_thickness": "0.3",
"gap_fill_target": "everywhere",
"gap_infill_speed": "250",
"gcode_add_line_number": "0",
"gcode_comments": "0",
"gcode_label_objects": "0",
"hole_to_polyhole": "0",
"hole_to_polyhole_threshold": "0.01",
"hole_to_polyhole_twisted": "1",
"independent_support_layer_height": "1",
"infill_anchor": "400%",
"infill_anchor_max": "20",
"infill_combination": "0",
"infill_direction": "45",
"infill_jerk": "12",
"infill_wall_overlap": "30%",
"initial_layer_acceleration": "2000",
"initial_layer_infill_speed": "105",
"initial_layer_jerk": "8",
"initial_layer_line_width": "0.5",
"initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
"initial_layer_travel_speed": "100%",
"inner_wall_acceleration": "5000",
"inner_wall_jerk": "8",
"inner_wall_line_width": "0.45",
"inner_wall_speed": "300",
"interface_shells": "0",
"internal_bridge_flow": "1",
"internal_bridge_speed": "150%",
"internal_solid_infill_acceleration": "100%",
"internal_solid_infill_line_width": "0.42",
"internal_solid_infill_pattern": "monotonic",
"internal_solid_infill_speed": "250",
"ironing_angle": "90",
"ironing_flow": "10%",
"ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_support_layer": "0",
"ironing_type": "no ironing",
"is_infill_first": "0",
"layer_height": "0.2",
"line_width": "0.42",
"make_overhang_printable": "0",
"make_overhang_printable_angle": "55",
"make_overhang_printable_hole_size": "0",
"material_flow_dependent_temperature": "0",
"material_flow_temp_graph": "[[3.0,210],[10.0,220],[12.0,230]]",
"max_bridge_length": "10",
"max_travel_detour_distance": "0",
"max_volumetric_extrusion_rate_slope": "0",
"max_volumetric_extrusion_rate_slope_segment_length": "3",
"min_bead_width": "85%",
"min_feature_size": "25%",
"min_length_factor": "0.5",
"min_width_top_surface": "300%",
"minimum_sparse_infill_area": "15",
"minimum_support_area": "5",
"mmu_segmented_region_interlocking_depth": "0",
"mmu_segmented_region_max_width": "0",
"only_one_wall_first_layer": "0",
"only_one_wall_top": "1",
"ooze_prevention": "0",
"outer_wall_acceleration": "5000",
"outer_wall_jerk": "8",
"outer_wall_line_width": "0.42",
"outer_wall_speed": "200",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "30",
"overhang_4_4_speed": "10",
"overhang_reverse": "0",
"overhang_reverse_internal_only": "0",
"overhang_reverse_threshold": "50%",
"overhang_speed_classic": "0",
"precise_outer_wall": "0",
"prime_tower_brim_width": "3",
"prime_tower_enhance_type": "chamfer",
"prime_tower_width": "40",
"prime_volume": "45",
"print_flow_ratio": "1",
"print_order": "default",
"print_sequence": "by layer",
"raft_contact_distance": "0.1",
"raft_expansion": "1.5",
"raft_first_layer_density": "90%",
"raft_first_layer_expansion": "2",
"raft_layers": "0",
"reduce_crossing_wall": "0",
"reduce_infill_retraction": "1",
"resolution": "0.012",
"role_based_wipe_speed": "1",
"scarf_angle_threshold": "155",
"scarf_joint_flow_ratio": "1",
"scarf_joint_speed": "100%",
"scarf_overhang_threshold": "40%",
"seam_gap": "10%",
"seam_position": "aligned",
"seam_slope_conditional": "0",
"seam_slope_entire_loop": "0",
"seam_slope_inner_walls": "0",
"seam_slope_min_length": "20",
"seam_slope_start_height": "0",
"seam_slope_steps": "10",
"seam_slope_type": "none",
"single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"skirt_speed": "50",
"slice_closing_radius": "0.049",
"slicing_mode": "regular",
"slow_down_layers": "0",
"slowdown_for_curled_perimeters": "0",
"small_area_infill_flow_compensation": "0",
"small_area_infill_flow_compensation_model": "0,0;\"\\n0.2,0.4444\";\"\\n0.4,0.6145\";\"\\n0.6,0.7059\";\"\\n0.8,0.7619\";\"\\n1.5,0.8571\";\"\\n2,0.8889\";\"\\n3,0.9231\";\"\\n5,0.9520\";\"\\n10,1\"",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_filament": "1",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15",
"sparse_infill_filament": "1",
"sparse_infill_line_width": "0.45",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "270",
"speed_limit_to_height": "[[100,150,100,6000,210],[150,200,80,5500,200],[200,250,60,5000,190]]",
"speed_limit_to_height_enable": "0",
"spiral_mode": "0",
"spiral_mode_max_xy_smoothing": "200%",
"spiral_mode_smooth": "0",
"staggered_inner_seams": "0",
"standby_temperature_delta": "-5",
"support_angle": "0",
"support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_bottom_interface_spacing": "0.5",
"support_bottom_z_distance": "0.2",
"support_critical_regions_only": "0",
"support_expansion": "0",
"support_filament": "0",
"support_interface_bottom_layers": "2",
"support_interface_filament": "0",
"support_interface_loop_pattern": "0",
"support_interface_not_for_body": "1",
"support_interface_pattern": "auto",
"support_interface_spacing": "0.5",
"support_interface_speed": "80",
"support_interface_top_layers": "2",
"support_line_width": "0.42",
"support_object_xy_distance": "0.35",
"support_on_build_plate_only": "0",
"support_remove_small_overhang": "1",
"support_speed": "150",
"support_style": "default",
"support_threshold_angle": "30",
"support_top_z_distance": "0.2",
"support_type": "normal(auto)",
"support_xy_overrides_z": "xy_overrides_z",
"thick_bridges": "0",
"thick_internal_bridges": "1",
"timelapse_type": "0",
"top_shell_layers": "5",
"top_shell_thickness": "0.8",
"top_solid_infill_flow_ratio": "1",
"top_surface_acceleration": "5000",
"top_surface_jerk": "8",
"top_surface_line_width": "0.42",
"top_surface_pattern": "monotonicline",
"top_surface_speed": "200",
"travel_acceleration": "12000",
"travel_jerk": "12",
"travel_speed": "500",
"travel_speed_z": "0",
"tree_support_adaptive_layer_height": "1",
"tree_support_angle_slow": "25",
"tree_support_auto_brim": "1",
"tree_support_branch_angle": "45",
"tree_support_branch_angle_organic": "40",
"tree_support_branch_diameter": "2",
"tree_support_branch_diameter_angle": "5",
"tree_support_branch_diameter_double_wall": "3",
"tree_support_branch_diameter_organic": "2",
"tree_support_branch_distance": "5",
"tree_support_branch_distance_organic": "1",
"tree_support_brim_width": "3",
"tree_support_tip_diameter": "0.8",
"tree_support_top_rate": "30%",
"tree_support_wall_count": "0",
"wall_direction": "auto",
"wall_distribution_count": "1",
"wall_filament": "1",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
"wall_transition_angle": "10",
"wall_transition_filter_deviation": "25%",
"wall_transition_length": "100%",
"wipe_before_external_loop": "0",
"wipe_on_loops": "0",
"wipe_speed": "80%",
"wipe_tower_bridging": "10",
"wipe_tower_cone_angle": "0",
"wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
"wipe_tower_rotation_angle": "0",
"wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
"xy_hole_compensation": "0"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.24mm Detail @Creality K2 0.8 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "25",
"internal_bridge_speed": "70",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K2 0.8 nozzle"
],
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.82",
"outer_wall_speed": "100",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.82",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "500",
"initial_layer_line_width": "0.82",
"initial_layer_print_height": "0.4",
"initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
"sparse_infill_line_width": "0.82",
"infill_wall_overlap": "30",
"sparse_infill_speed": "120",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.24",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.82",
"inner_wall_speed": "150",
"wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.82",
"internal_solid_infill_speed": "150",
"initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.8",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.82",
"top_surface_acceleration": "2000",
"top_surface_speed": "100",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.24mm Draft @Creality K2 0.4 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "25",
"internal_bridge_speed": "150%",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K2 0.4 nozzle"
],
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.42",
"outer_wall_speed": "200",
"outer_wall_acceleration": "2000",
"inner_wall_acceleration": "2000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.42",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "2000",
"initial_layer_line_width": "0.5",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
"gap_infill_speed": "200",
"infill_combination": "0",
"sparse_infill_line_width": "0.45",
"infill_wall_overlap": "30%",
"sparse_infill_speed": "230",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.24",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "30",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.45",
"inner_wall_speed": "230",
"wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.42",
"internal_solid_infill_speed": "230",
"initial_layer_infill_speed": "105",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.42",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.42",
"top_surface_acceleration": "5000",
"top_surface_speed": "200",
"top_shell_layers": "5",
"top_shell_thickness": "0.8",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "40",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.24mm Optimal @Creality K2 0.6 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "25",
"internal_bridge_speed": "70",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K2 0.6 nozzle"
],
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.62",
"outer_wall_speed": "100",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.62",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "500",
"initial_layer_line_width": "0.62",
"initial_layer_print_height": "0.3",
"initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
"sparse_infill_line_width": "0.62",
"infill_wall_overlap": "30",
"sparse_infill_speed": "120",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.24",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.62",
"inner_wall_speed": "150",
"wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.62",
"internal_solid_infill_speed": "150",
"initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.6",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.62",
"top_surface_acceleration": "2000",
"top_surface_speed": "100",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.28mm SuperDraft @Creality K2 0.4 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "25",
"internal_bridge_speed": "150%",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K2 0.4 nozzle"
],
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.42",
"outer_wall_speed": "180",
"outer_wall_acceleration": "2000",
"inner_wall_acceleration": "2000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.42",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "2000",
"initial_layer_line_width": "0.5",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "60",
"gap_infill_speed": "200",
"infill_combination": "0",
"sparse_infill_line_width": "0.45",
"infill_wall_overlap": "30%",
"sparse_infill_speed": "200",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.28",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "50",
"overhang_2_4_speed": "25",
"overhang_3_4_speed": "10",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.45",
"inner_wall_speed": "200",
"wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.42",
"internal_solid_infill_speed": "200",
"initial_layer_infill_speed": "105",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.42",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.42",
"top_surface_acceleration": "5000",
"top_surface_speed": "200",
"top_shell_layers": "5",
"top_shell_thickness": "0.8",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "40",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -0,0 +1,243 @@
{
"type": "process",
"setting_id": "GP004",
"name": "0.30mm Standard @Creality K2 0.6 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "fdm_process_creality_common",
"accel_to_decel_enable": "1",
"accel_to_decel_factor": "100%",
"acceleration_limit_mess_enable": "0",
"alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
"bottom_solid_infill_flow_ratio": "1",
"bottom_surface_pattern": "monotonic",
"bridge_acceleration": "50%",
"bridge_angle": "0",
"bridge_density": "100%",
"bridge_flow": "1",
"bridge_no_support": "0",
"bridge_speed": "25",
"brim_ears_detection_length": "1",
"brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
"brim_type": "auto_brim",
"brim_width": "5",
"compatible_printers": [
"Creality K2 0.6 nozzle"
],
"default_acceleration": "12000",
"default_jerk": "20",
"detect_narrow_internal_solid_infill": "1",
"detect_overhang_wall": "1",
"detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",
"enforce_support_layers": "0",
"ensure_vertical_shell_thickness": "ensure_all",
"exclude_object": "1",
"extra_perimeters_on_overhangs": "0",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"filter_out_gap_fill": "0",
"flush_into_infill": "0",
"flush_into_objects": "0",
"flush_into_support": "1",
"fuzzy_skin": "none",
"fuzzy_skin_first_layer": "0",
"fuzzy_skin_point_distance": "0.8",
"fuzzy_skin_thickness": "0.3",
"gap_infill_speed": "50",
"gcode_add_line_number": "0",
"gcode_comments": "0",
"gcode_label_objects": "0",
"hole_to_polyhole": "0",
"hole_to_polyhole_threshold": "0.01",
"hole_to_polyhole_twisted": "1",
"independent_support_layer_height": "1",
"infill_anchor": "400%",
"infill_anchor_max": "20",
"infill_combination": "0",
"infill_direction": "45",
"infill_jerk": "20",
"infill_wall_overlap": "30",
"initial_layer_acceleration": "500",
"initial_layer_infill_speed": "60",
"initial_layer_jerk": "20",
"initial_layer_line_width": "0.62",
"initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.3",
"initial_layer_speed": "40",
"initial_layer_travel_speed": "100%",
"inner_wall_acceleration": "5000",
"inner_wall_jerk": "20",
"inner_wall_line_width": "0.62",
"inner_wall_speed": "150",
"interface_shells": "0",
"internal_bridge_flow": "1",
"internal_bridge_speed": "70",
"internal_solid_infill_acceleration": "100%",
"internal_solid_infill_line_width": "0.62",
"internal_solid_infill_pattern": "monotonic",
"internal_solid_infill_speed": "150",
"ironing_angle": "90",
"ironing_flow": "10%",
"ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_support_layer": "0",
"ironing_type": "no ironing",
"is_infill_first": "0",
"layer_height": "0.3",
"line_width": "0.62",
"make_overhang_printable": "0",
"make_overhang_printable_angle": "55",
"make_overhang_printable_hole_size": "0",
"max_bridge_length": "10",
"max_travel_detour_distance": "0",
"max_volumetric_extrusion_rate_slope": "0",
"max_volumetric_extrusion_rate_slope_segment_length": "3",
"min_bead_width": "85%",
"min_feature_size": "25%",
"min_width_top_surface": "300%",
"minimum_sparse_infill_area": "15",
"minimum_support_area": "5",
"mmu_segmented_region_interlocking_depth": "0",
"mmu_segmented_region_max_width": "0",
"only_one_wall_first_layer": "0",
"only_one_wall_top": "1",
"ooze_prevention": "0",
"outer_wall_acceleration": "5000",
"outer_wall_jerk": "20",
"outer_wall_line_width": "0.62",
"outer_wall_speed": "100",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"overhang_reverse": "0",
"overhang_reverse_internal_only": "0",
"overhang_reverse_threshold": "50%",
"overhang_speed_classic": "0",
"precise_outer_wall": "0",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"prime_volume": "45",
"print_flow_ratio": "1",
"print_sequence": "by layer",
"raft_contact_distance": "0.1",
"raft_expansion": "1.5",
"raft_first_layer_density": "90%",
"raft_first_layer_expansion": "2",
"raft_layers": "0",
"reduce_crossing_wall": "0",
"reduce_infill_retraction": "1",
"resolution": "0.012",
"role_based_wipe_speed": "1",
"seam_gap": "10%",
"seam_position": "aligned",
"single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"skirt_speed": "50",
"slice_closing_radius": "0.049",
"slicing_mode": "regular",
"slow_down_layers": "0",
"slowdown_for_curled_perimeters": "0",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_filament": "1",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
"sparse_infill_filament": "1",
"sparse_infill_line_width": "0.62",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "120",
"speed_limit_to_height_enable": "0",
"spiral_mode": "0",
"spiral_mode_max_xy_smoothing": "200%",
"spiral_mode_smooth": "0",
"staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
"support_angle": "0",
"support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_bottom_interface_spacing": "0.5",
"support_bottom_z_distance": "0.2",
"support_critical_regions_only": "0",
"support_expansion": "0",
"support_filament": "0",
"support_interface_bottom_layers": "2",
"support_interface_filament": "0",
"support_interface_loop_pattern": "0",
"support_interface_not_for_body": "1",
"support_interface_pattern": "auto",
"support_interface_spacing": "0.5",
"support_interface_speed": "80",
"support_interface_top_layers": "2",
"support_line_width": "0.6",
"support_object_xy_distance": "0.35",
"support_on_build_plate_only": "0",
"support_remove_small_overhang": "1",
"support_speed": "150",
"support_style": "default",
"support_threshold_angle": "30",
"support_top_z_distance": "0.2",
"support_type": "normal(auto)",
"support_xy_overrides_z": "xy_overrides_z",
"thick_bridges": "0",
"thick_internal_bridges": "1",
"timelapse_type": "0",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
"top_solid_infill_flow_ratio": "1",
"top_surface_acceleration": "2000",
"top_surface_jerk": "20",
"top_surface_line_width": "0.62",
"top_surface_pattern": "monotonicline",
"top_surface_speed": "100",
"travel_acceleration": "12000",
"travel_jerk": "20",
"travel_speed": "500",
"travel_speed_z": "0",
"tree_support_adaptive_layer_height": "1",
"tree_support_angle_slow": "25",
"tree_support_auto_brim": "1",
"tree_support_branch_angle": "45",
"tree_support_branch_angle_organic": "40",
"tree_support_branch_diameter": "2",
"tree_support_branch_diameter_angle": "5",
"tree_support_branch_diameter_double_wall": "3",
"tree_support_branch_diameter_organic": "2",
"tree_support_branch_distance": "5",
"tree_support_branch_distance_organic": "1",
"tree_support_brim_width": "3",
"tree_support_tip_diameter": "0.8",
"tree_support_top_rate": "30%",
"tree_support_wall_count": "0",
"wall_distribution_count": "1",
"wall_filament": "1",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
"wall_transition_angle": "10",
"wall_transition_filter_deviation": "25%",
"wall_transition_length": "100%",
"wipe_before_external_loop": "0",
"wipe_on_loops": "0",
"wipe_speed": "80%",
"wipe_tower_bridging": "10",
"wipe_tower_cone_angle": "0",
"wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
"wipe_tower_rotation_angle": "0",
"wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
"xy_hole_compensation": "0"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.32mm Optimal @Creality K2 0.8 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "25",
"internal_bridge_speed": "70",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K2 0.8 nozzle"
],
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.82",
"outer_wall_speed": "100",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.82",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "500",
"initial_layer_line_width": "0.82",
"initial_layer_print_height": "0.4",
"initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
"sparse_infill_line_width": "0.82",
"infill_wall_overlap": "30",
"sparse_infill_speed": "120",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.32",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.82",
"inner_wall_speed": "150",
"wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.82",
"internal_solid_infill_speed": "150",
"initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.8",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.82",
"top_surface_acceleration": "2000",
"top_surface_speed": "100",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.36mm Draft @Creality K2 0.6 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "25",
"internal_bridge_speed": "70",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K2 0.6 nozzle"
],
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.62",
"outer_wall_speed": "100",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.62",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "500",
"initial_layer_line_width": "0.62",
"initial_layer_print_height": "0.3",
"initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
"sparse_infill_line_width": "0.62",
"infill_wall_overlap": "30",
"sparse_infill_speed": "120",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.36",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.62",
"inner_wall_speed": "150",
"wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.62",
"internal_solid_infill_speed": "150",
"initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.6",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.62",
"top_surface_acceleration": "2000",
"top_surface_speed": "100",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -0,0 +1,243 @@
{
"type": "process",
"setting_id": "GP004",
"name": "0.40mm Standard @Creality K2 0.8 nozzle",
"from": "system",
"instantiation": "true",
"inherits": "fdm_process_creality_common",
"accel_to_decel_enable": "1",
"accel_to_decel_factor": "100%",
"acceleration_limit_mess_enable": "0",
"alternate_extra_wall": "0",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
"bottom_solid_infill_flow_ratio": "1",
"bottom_surface_pattern": "monotonic",
"bridge_acceleration": "50%",
"bridge_angle": "0",
"bridge_density": "100%",
"bridge_flow": "1",
"bridge_no_support": "0",
"bridge_speed": "25",
"brim_ears_detection_length": "1",
"brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
"brim_type": "auto_brim",
"brim_width": "5",
"compatible_printers": [
"Creality K2 0.8 nozzle"
],
"default_acceleration": "12000",
"default_jerk": "9",
"detect_narrow_internal_solid_infill": "1",
"detect_overhang_wall": "1",
"detect_thin_wall": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "1",
"enable_overhang_speed": "1",
"enable_prime_tower": "1",
"enable_support": "0",
"enforce_support_layers": "0",
"ensure_vertical_shell_thickness": "ensure_all",
"exclude_object": "1",
"extra_perimeters_on_overhangs": "0",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"filter_out_gap_fill": "0",
"flush_into_infill": "0",
"flush_into_objects": "0",
"flush_into_support": "1",
"fuzzy_skin": "none",
"fuzzy_skin_first_layer": "0",
"fuzzy_skin_point_distance": "0.8",
"fuzzy_skin_thickness": "0.3",
"gap_infill_speed": "50",
"gcode_add_line_number": "0",
"gcode_comments": "0",
"gcode_label_objects": "0",
"hole_to_polyhole": "0",
"hole_to_polyhole_threshold": "0.01",
"hole_to_polyhole_twisted": "1",
"independent_support_layer_height": "1",
"infill_anchor": "400%",
"infill_anchor_max": "20",
"infill_combination": "0",
"infill_direction": "45",
"infill_jerk": "12",
"infill_wall_overlap": "30",
"initial_layer_acceleration": "500",
"initial_layer_infill_speed": "60",
"initial_layer_jerk": "9",
"initial_layer_line_width": "0.82",
"initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.4",
"initial_layer_speed": "40",
"initial_layer_travel_speed": "100%",
"inner_wall_acceleration": "5000",
"inner_wall_jerk": "7",
"inner_wall_line_width": "0.82",
"inner_wall_speed": "150",
"interface_shells": "0",
"internal_bridge_flow": "1",
"internal_bridge_speed": "70",
"internal_solid_infill_acceleration": "100%",
"internal_solid_infill_line_width": "0.82",
"internal_solid_infill_pattern": "monotonic",
"internal_solid_infill_speed": "150",
"ironing_angle": "90",
"ironing_flow": "10%",
"ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_support_layer": "0",
"ironing_type": "no ironing",
"is_infill_first": "0",
"layer_height": "0.4",
"line_width": "0.82",
"make_overhang_printable": "0",
"make_overhang_printable_angle": "55",
"make_overhang_printable_hole_size": "0",
"max_bridge_length": "10",
"max_travel_detour_distance": "0",
"max_volumetric_extrusion_rate_slope": "0",
"max_volumetric_extrusion_rate_slope_segment_length": "3",
"min_bead_width": "85%",
"min_feature_size": "25%",
"min_width_top_surface": "300%",
"minimum_sparse_infill_area": "15",
"minimum_support_area": "5",
"mmu_segmented_region_interlocking_depth": "0",
"mmu_segmented_region_max_width": "0",
"only_one_wall_first_layer": "0",
"only_one_wall_top": "1",
"ooze_prevention": "0",
"outer_wall_acceleration": "5000",
"outer_wall_jerk": "7",
"outer_wall_line_width": "0.82",
"outer_wall_speed": "100",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"overhang_reverse": "0",
"overhang_reverse_internal_only": "0",
"overhang_reverse_threshold": "50%",
"overhang_speed_classic": "0",
"precise_outer_wall": "0",
"prime_tower_brim_width": "3",
"prime_tower_width": "60",
"prime_volume": "45",
"print_flow_ratio": "1",
"print_sequence": "by layer",
"raft_contact_distance": "0.1",
"raft_expansion": "1.5",
"raft_first_layer_density": "90%",
"raft_first_layer_expansion": "2",
"raft_layers": "0",
"reduce_crossing_wall": "0",
"reduce_infill_retraction": "1",
"resolution": "0.012",
"role_based_wipe_speed": "1",
"seam_gap": "10%",
"seam_position": "aligned",
"single_extruder_multi_material_priming": "0",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"skirt_speed": "50",
"slice_closing_radius": "0.049",
"slicing_mode": "regular",
"slow_down_layers": "0",
"slowdown_for_curled_perimeters": "0",
"small_perimeter_speed": "50%",
"small_perimeter_threshold": "0",
"solid_infill_filament": "1",
"sparse_infill_acceleration": "100%",
"sparse_infill_density": "15%",
"sparse_infill_filament": "1",
"sparse_infill_line_width": "0.82",
"sparse_infill_pattern": "grid",
"sparse_infill_speed": "120",
"speed_limit_to_height_enable": "0",
"spiral_mode": "0",
"spiral_mode_max_xy_smoothing": "200%",
"spiral_mode_smooth": "0",
"staggered_inner_seams": "1",
"standby_temperature_delta": "-5",
"support_angle": "0",
"support_base_pattern": "rectilinear",
"support_base_pattern_spacing": "2.5",
"support_bottom_interface_spacing": "0.5",
"support_bottom_z_distance": "0.2",
"support_critical_regions_only": "0",
"support_expansion": "0",
"support_filament": "0",
"support_interface_bottom_layers": "2",
"support_interface_filament": "0",
"support_interface_loop_pattern": "0",
"support_interface_not_for_body": "1",
"support_interface_pattern": "auto",
"support_interface_spacing": "0.5",
"support_interface_speed": "80",
"support_interface_top_layers": "2",
"support_line_width": "0.8",
"support_object_xy_distance": "0.35",
"support_on_build_plate_only": "0",
"support_remove_small_overhang": "1",
"support_speed": "150",
"support_style": "default",
"support_threshold_angle": "30",
"support_top_z_distance": "0.2",
"support_type": "normal(auto)",
"support_xy_overrides_z": "xy_overrides_z",
"thick_bridges": "0",
"thick_internal_bridges": "1",
"timelapse_type": "0",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
"top_solid_infill_flow_ratio": "1",
"top_surface_acceleration": "2000",
"top_surface_jerk": "7",
"top_surface_line_width": "0.82",
"top_surface_pattern": "monotonicline",
"top_surface_speed": "100",
"travel_acceleration": "12000",
"travel_jerk": "12",
"travel_speed": "500",
"travel_speed_z": "0",
"tree_support_adaptive_layer_height": "1",
"tree_support_angle_slow": "25",
"tree_support_auto_brim": "1",
"tree_support_branch_angle": "45",
"tree_support_branch_angle_organic": "40",
"tree_support_branch_diameter": "2",
"tree_support_branch_diameter_angle": "5",
"tree_support_branch_diameter_double_wall": "3",
"tree_support_branch_diameter_organic": "2",
"tree_support_branch_distance": "5",
"tree_support_branch_distance_organic": "1",
"tree_support_brim_width": "3",
"tree_support_tip_diameter": "0.8",
"tree_support_top_rate": "30%",
"tree_support_wall_count": "0",
"wall_distribution_count": "1",
"wall_filament": "1",
"wall_generator": "classic",
"wall_loops": "2",
"wall_sequence": "inner wall/outer wall",
"wall_transition_angle": "10",
"wall_transition_filter_deviation": "25%",
"wall_transition_length": "100%",
"wipe_before_external_loop": "0",
"wipe_on_loops": "0",
"wipe_speed": "80%",
"wipe_tower_bridging": "10",
"wipe_tower_cone_angle": "0",
"wipe_tower_extra_spacing": "100%",
"wipe_tower_no_sparse_layers": "0",
"wipe_tower_rotation_angle": "0",
"wiping_volumes_extruders": "70,70,70,70,70,70,70,70,70,70",
"xy_contour_compensation": "0",
"xy_hole_compensation": "0"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.42mm SuperDraft @Creality K2 0.6 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "25",
"internal_bridge_speed": "70",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K2 0.6 nozzle"
],
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.62",
"outer_wall_speed": "100",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.62",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "500",
"initial_layer_line_width": "0.62",
"initial_layer_print_height": "0.3",
"initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
"sparse_infill_line_width": "0.62",
"infill_wall_overlap": "30",
"sparse_infill_speed": "120",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.42",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.62",
"inner_wall_speed": "150",
"wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.62",
"internal_solid_infill_speed": "150",
"initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.6",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.62",
"top_surface_acceleration": "2000",
"top_surface_speed": "100",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.48mm Draft @Creality K2 0.8 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "25",
"internal_bridge_speed": "70",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K2 0.8 nozzle"
],
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.82",
"outer_wall_speed": "100",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.82",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "500",
"initial_layer_line_width": "0.82",
"initial_layer_print_height": "0.4",
"initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
"sparse_infill_line_width": "0.82",
"infill_wall_overlap": "30",
"sparse_infill_speed": "120",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.48",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.82",
"inner_wall_speed": "150",
"wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.82",
"internal_solid_infill_speed": "150",
"initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.8",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.82",
"top_surface_acceleration": "2000",
"top_surface_speed": "100",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -0,0 +1,111 @@
{
"type": "process",
"name": "0.56mm SuperDraft @Creality K2 0.8 nozzle",
"inherits": "fdm_process_common_klipper",
"from": "system",
"setting_id": "GP004",
"instantiation": "true",
"max_travel_detour_distance": "0",
"bottom_surface_pattern": "monotonic",
"bottom_shell_layers": "3",
"bottom_shell_thickness": "0",
"bridge_flow": "1",
"bridge_speed": "25",
"internal_bridge_speed": "70",
"brim_width": "5",
"brim_object_gap": "0.1",
"compatible_printers": [
"Creality K2 0.8 nozzle"
],
"default_acceleration": "12000",
"bridge_no_support": "0",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.15",
"outer_wall_line_width": "0.82",
"outer_wall_speed": "100",
"outer_wall_acceleration": "5000",
"inner_wall_acceleration": "5000",
"wall_generator": "classic",
"wall_infill_order": "inner wall/outer wall/infill",
"line_width": "0.82",
"infill_direction": "45",
"sparse_infill_density": "15%",
"sparse_infill_pattern": "crosshatch",
"internal_bridge_support_thickness": "0.8",
"initial_layer_acceleration": "500",
"initial_layer_line_width": "0.82",
"initial_layer_print_height": "0.4",
"initial_layer_speed": "40",
"gap_infill_speed": "50",
"infill_combination": "0",
"sparse_infill_line_width": "0.82",
"infill_wall_overlap": "30",
"sparse_infill_speed": "120",
"interface_shells": "0",
"ironing_flow": "10%",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"layer_height": "0.56",
"reduce_infill_retraction": "1",
"filename_format": "{input_filename_base}_{filament_type[initial_tool]}_{print_time}.gcode",
"detect_overhang_wall": "1",
"overhang_1_4_speed": "0",
"overhang_2_4_speed": "50",
"overhang_3_4_speed": "20",
"overhang_4_4_speed": "10",
"only_one_wall_top": "1",
"precise_outer_wall": "0",
"inner_wall_line_width": "0.82",
"inner_wall_speed": "150",
"wall_loops": "2",
"raft_layers": "0",
"seam_position": "aligned",
"skirt_distance": "2",
"skirt_height": "1",
"skirt_loops": "0",
"minimum_sparse_infill_area": "15",
"internal_solid_infill_line_width": "0.82",
"internal_solid_infill_speed": "150",
"initial_layer_infill_speed": "60",
"standby_temperature_delta": "-5",
"enable_support": "0",
"resolution": "0.012",
"support_type": "normal(auto)",
"support_style": "default",
"support_on_build_plate_only": "0",
"support_top_z_distance": "0.2",
"support_bottom_z_distance": "0.2",
"support_filament": "0",
"support_line_width": "0.8",
"support_interface_loop_pattern": "0",
"support_interface_filament": "0",
"support_interface_top_layers": "2",
"support_interface_bottom_layers": "2",
"support_interface_spacing": "0.5",
"support_expansion": "0",
"support_interface_speed": "80",
"support_base_pattern": "default",
"support_base_pattern_spacing": "2.5",
"support_speed": "150",
"support_threshold_angle": "30",
"support_object_xy_distance": "0.35",
"tree_support_branch_diameter": "2",
"tree_support_branch_angle": "45",
"tree_support_wall_count": "1",
"detect_thin_wall": "0",
"top_surface_pattern": "monotonicline",
"top_surface_line_width": "0.82",
"top_surface_acceleration": "2000",
"top_surface_speed": "100",
"top_shell_layers": "4",
"top_shell_thickness": "0.8",
"travel_acceleration": "12000",
"travel_speed": "500",
"enable_prime_tower": "1",
"wipe_tower_no_sparse_layers": "0",
"prime_tower_width": "60",
"xy_hole_compensation": "0",
"xy_contour_compensation": "0",
"gcode_label_objects": "0"
}

View File

@@ -1,6 +1,6 @@
{
"name": "Cubicon",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Cubicon configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "Custom Printer",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "My configurations",
"machine_model_list": [

View File

@@ -1,7 +1,7 @@
{
"name": "DeltaMaker",
"url": "",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "DeltaMaker configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "Dremel",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Dremel configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "Elegoo",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Elegoo configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "Eryone",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Eryone configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "FLSun",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "FLSun configurations",
"machine_model_list": [

View File

@@ -1,7 +1,7 @@
{
"name": "Flashforge",
"url": "",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Flashforge configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "FlyingBear",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "1",
"description": "FlyingBear configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "Folgertech",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Folgertech configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "Geeetech",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Geeetech configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "Ginger Additive",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "1",
"description": "Ginger configuration",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "InfiMech",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "1",
"description": "InfiMech configurations",
"machine_model_list": [

Binary file not shown.

Before

Width:  |  Height:  |  Size: 30 KiB

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 33 KiB

After

Width:  |  Height:  |  Size: 25 KiB

View File

@@ -1,7 +1,7 @@
{
"name": "Kingroon",
"url": "https://kingroon.com/",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "1",
"description": "Kingroon configuration files",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "LONGER",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "LONGER configurations",
"machine_model_list": [

View File

@@ -1,7 +1,7 @@
{
"name": "Lulzbot",
"url": "https://ohai.lulzbot.com/group/taz-6/",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Lulzbot configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "M3D",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Configuration for M3D printers",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "MagicMaker",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "MagicMaker configurations",
"machine_model_list": [

View File

@@ -1,6 +1,6 @@
{
"name": "Mellow",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Mellow Printer Profiles",
"machine_model_list": [

View File

@@ -1,7 +1,7 @@
{
"name": "OpenEYE",
"url": "http://www.openeye.tech",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "OpenEYE Printers Configurations",
"machine_model_list": [

View File

@@ -1,7 +1,7 @@
{
"name": "Orca Arena Printer",
"url": "",
"version": "02.03.02.50",
"version": "02.03.02.51",
"force_update": "0",
"description": "Orca Arena configuration files",
"machine_model_list": [

Some files were not shown because too many files have changed in this diff Show More