Merge branch 'main' into enh-spoolman-support

This commit is contained in:
Ocraftyone 2025-01-23 20:02:44 -05:00 committed by GitHub
commit 42d33d0dc2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
551 changed files with 27468 additions and 11340 deletions

18
.github/dependabot.yml vendored Normal file
View file

@ -0,0 +1,18 @@
version: 2
updates:
# Only care about major updates to github actions
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "monthly"
ignore: # Only suggest major updates for built-in actions
- dependency-name: "github/*"
update-types: ["version-update:semver-patch", "version-update:semver-minor"]
- dependency-name: "actions/*"
update-types: ["version-update:semver-patch", "version-update:semver-minor"]
# Docker dependencies
- package-ecosystem: "docker"
directory: "/"
schedule:
interval: "monthly"
# no support for c/cpp

View file

@ -63,18 +63,47 @@ jobs:
flatpak:
name: "Flatpak"
runs-on: ubuntu-latest
env:
date:
ver:
ver_pure:
container:
image: bilelmoussaoui/flatpak-github-actions:gnome-46
options: --privileged
volumes:
- /usr/local/lib/android:/usr/local/lib/android
- /usr/share/dotnet:/usr/share/dotnet
- /opt/ghc:/opt/ghc1
- /usr/local/share/boost:/usr/local/share/boost1
steps:
# maybe i'm too dumb and fucked up to do CI. OH WELL :D -ppd
- name: "Remove unneeded stuff to free disk space"
run:
sudo rm -rf /usr/share/dotnet /opt/ghc "/usr/local/share/boost" "$AGENT_TOOLSDIRECTORY"
rm -rf /usr/local/lib/android/* /usr/share/dotnet/* /opt/ghc1/* "/usr/local/share/boost1/*"
- uses: actions/checkout@v4
- name: Get the version and date
run: |
ver_pure=$(grep 'set(SoftFever_VERSION' version.inc | cut -d '"' -f2)
if [[ "${{ github.event_name }}" == "pull_request" ]]; then
ver="PR-${{ github.event.number }}"
else
ver=V$ver_pure
fi
echo "ver=$ver" >> $GITHUB_ENV
echo "ver_pure=$ver_pure" >> $GITHUB_ENV
echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV
shell: bash
- uses: flatpak/flatpak-github-actions/flatpak-builder@v6
with:
bundle: orcaslicer.flatpak
bundle: OrcaSlicer-Linux-flatpak_${{ env.ver }}.flatpak
manifest-path: flatpak/io.github.softfever.OrcaSlicer.yml
cache-key: flatpak-builder-${{ github.sha }}
cache: false
cache: true
- name: Deploy Flatpak to nightly release
if: ${{github.ref == 'refs/heads/main'}}
uses: WebFreak001/deploy-nightly@v3.2.0
with:
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label}
release_id: 137995723
asset_path: /__w/OrcaSlicer/OrcaSlicer/OrcaSlicer-Linux-flatpak_${{ env.ver }}.flatpak
asset_name: OrcaSlicer-Linux-flatpak_${{ env.ver }}.flatpak
asset_content_type: application/octet-stream
max_releases: 1 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted

View file

@ -66,8 +66,11 @@ jobs:
working-directory: ${{ github.workspace }}
run: |
choco install strawberryperl
mkdir ${{ github.workspace }}/deps/build
mkdir ${{ github.workspace }}/deps/build/OrcaSlicer_dep
$Folder = ${{ github.workspace }}/deps/build
if (!(Test-Path -Path $Folder)) {
mkdir ${{ github.workspace }}/deps/build
mkdir ${{ github.workspace }}/deps/build/OrcaSlicer_dep
}
.\build_release_vs2022.bat deps
.\build_release_vs2022.bat pack
cd ${{ github.workspace }}/deps/build

View file

@ -81,11 +81,18 @@ jobs:
- name: Install tools mac
if: inputs.os == 'macos-14'
run: |
brew install tree ninja libtool
brew install ninja libtool
brew list
mkdir -p ${{ github.workspace }}/deps/build_${{inputs.arch}}
mkdir -p ${{ github.workspace }}/deps/build_${{inputs.arch}}/OrcaSlicer_dep_${{inputs.arch}}
tree ${{ github.workspace }}/deps/build_${{inputs.arch}}/OrcaSlicer_dep_${{inputs.arch}}
- name: Free disk space
if: inputs.os == 'macos-14'
run: |
df -hI /dev/disk3s1s1
sudo find /Applications -maxdepth 1 -type d -name "Xcode_*.app" ! -name "Xcode_15.4.app" -exec rm -rf {} +
sudo rm -rf ~/Library/Developer/CoreSimulator/Caches/*
df -hI /dev/disk3s1s1
- name: Build slicer mac
if: inputs.os == 'macos-14'
@ -136,7 +143,7 @@ jobs:
- name: Deploy Mac release
if: github.ref == 'refs/heads/main' && inputs.os == 'macos-14'
uses: WebFreak001/deploy-nightly@v3.1.0
uses: WebFreak001/deploy-nightly@v3.2.0
with:
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label}
release_id: 137995723
@ -187,7 +194,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: OrcaSlicer_Windows_${{ env.ver }}_portable
path: ${{ github.workspace }}/build/OrcaSlicer_Windows_${{ env.ver }}_portable.zip
path: ${{ github.workspace }}/build/OrcaSlicer
- name: Upload artifacts Win installer
if: inputs.os == 'windows-latest'
@ -205,7 +212,7 @@ jobs:
- name: Deploy Windows release portable
if: github.ref == 'refs/heads/main' && inputs.os == 'windows-latest'
uses: WebFreak001/deploy-nightly@v3.1.0
uses: WebFreak001/deploy-nightly@v3.2.0
with:
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label}
release_id: 137995723
@ -216,7 +223,7 @@ jobs:
- name: Deploy Windows release installer
if: github.ref == 'refs/heads/main' && inputs.os == 'windows-latest'
uses: WebFreak001/deploy-nightly@v3.1.0
uses: WebFreak001/deploy-nightly@v3.2.0
with:
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label}
release_id: 137995723
@ -257,8 +264,8 @@ jobs:
ubuntu-ver-str: ${{ (inputs.os == 'ubuntu-24.04' && '_Ubuntu2404') || '' }}
run: |
./BuildLinux.sh -isr
mv -n ./build/OrcaSlicer_Linux_V${{ env.ver_pure }}.AppImage ./build/OrcaSlicer_Linux${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage
chmod +x ./build/OrcaSlicer_Linux${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage
mv -n ./build/OrcaSlicer_Linux_V${{ env.ver_pure }}.AppImage ./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage
chmod +x ./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage
- name: Build orca_custom_preset_tests
if: github.ref == 'refs/heads/main' && inputs.os == 'ubuntu-20.04'
@ -277,24 +284,24 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: OrcaSlicer_Linux_ubuntu_${{ env.ubuntu-ver }}_${{ env.ver }}
path: './build/OrcaSlicer_Linux${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage'
path: './build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage'
- name: Deploy Ubuntu release
if: ${{ ! env.ACT && github.ref == 'refs/heads/main' && (inputs.os == 'ubuntu-20.04' || inputs.os == 'ubuntu-24.04') }}
env:
ubuntu-ver-str: ${{ (inputs.os == 'ubuntu-24.04' && '_Ubuntu2404') || '' }}
uses: WebFreak001/deploy-nightly@v3.1.0
uses: WebFreak001/deploy-nightly@v3.2.0
with:
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label}
release_id: 137995723
asset_path: ./build/OrcaSlicer_Linux${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage
asset_name: OrcaSlicer_Linux${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage
asset_path: ./build/OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage
asset_name: OrcaSlicer_Linux_AppImage${{ env.ubuntu-ver-str }}_${{ env.ver }}.AppImage
asset_content_type: application/octet-stream
max_releases: 1 # optional, if there are more releases than this matching the asset_name, the oldest ones are going to be deleted
- name: Deploy orca_custom_preset_tests
if: ${{ ! env.ACT && github.ref == 'refs/heads/main' && inputs.os == 'ubuntu-20.04' }}
uses: WebFreak001/deploy-nightly@v3.1.0
uses: WebFreak001/deploy-nightly@v3.2.0
with:
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label}
release_id: 137995723

View file

@ -22,6 +22,18 @@ if (NOT CMAKE_BUILD_TYPE AND NOT CMAKE_CONFIGURATION_TYPES)
set(CMAKE_BUILD_TYPE "Release" CACHE STRING "Build type (default Release)" FORCE)
endif()
find_package(Git)
if(GIT_FOUND AND EXISTS "${CMAKE_SOURCE_DIR}/.git")
# Check current Git commit hash
execute_process(
COMMAND ${GIT_EXECUTABLE} log -1 --format=%h
WORKING_DIRECTORY ${CMAKE_SOURCE_DIR}
OUTPUT_VARIABLE GIT_COMMIT_HASH
OUTPUT_STRIP_TRAILING_WHITESPACE
)
add_definitions("-DGIT_COMMIT_HASH=\"${GIT_COMMIT_HASH}\"")
endif()
if(DEFINED ENV{SLIC3R_STATIC})
set(SLIC3R_STATIC_INITIAL $ENV{SLIC3R_STATIC})
else()
@ -281,7 +293,7 @@ if (NOT MSVC AND ("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU" OR "${CMAKE_CXX_COMP
add_compile_options(-Wno-deprecated-declarations)
endif()
if (${CMAKE_CXX_COMPILER_ID} STREQUAL "AppleClang" AND ${CMAKE_CXX_COMPILER_VERSION} VERSION_GREATER 15)
if((${CMAKE_CXX_COMPILER_ID} STREQUAL "Clang" OR ${CMAKE_CXX_COMPILER_ID} STREQUAL "AppleClang") AND ${CMAKE_CXX_COMPILER_VERSION} VERSION_GREATER 15)
add_compile_options(-Wno-error=enum-constexpr-conversion)
endif()

View file

@ -1,5 +1,5 @@
<h1> <p "font-size:200px;"><img align="left" src="https://github.com/KDW06/OrcaSlicer/blob/main/resources/images/OrcaSlicer.ico" width="100"> Orca Slicer</p> </h1>
<h1> <p "font-size:200px;"><img align="left" src="https://github.com/SoftFever/OrcaSlicer/blob/main/resources/images/OrcaSlicer.ico" width="100"> Orca Slicer</p> </h1>
[![Build all](https://github.com/SoftFever/OrcaSlicer/actions/workflows/build_all.yml/badge.svg?branch=main)](https://github.com/SoftFever/OrcaSlicer/actions/workflows/build_all.yml)
<br>Orca Slicer is an open source slicer for FDM printers.
@ -10,12 +10,16 @@ Join our Discord community here:<br>
<h3>🚨🚨🚨Important Security Alert🚨🚨🚨</h3>
Please be aware that "**orcaslicer.net**" or "**orcaslicer.info**" are NOT an official website for OrcaSlicer and may be potentially malicious. This site appears to use AI-generated content, lacking genuine context, and seems to exist solely to profit from advertisements. Worse, it may redirect download links to harmful sources. For your safety, avoid downloading OrcaSlicer from this site as the links may be compromised.
Please be aware that "**orcaslicer.net**" or "**orcaslicer.info**" are NOT an official website for OrcaSlicer and may be potentially malicious. These sites appear to use AI-generated content, lacking genuine context and seems to exist solely to profit from advertisements. Worse, it may redirect download links to harmful sources. For your safety, avoid downloading OrcaSlicer from this site as the links may be compromised.
If you see the above sites in your searches, report them as spam or unsafe to the search engine. This small action will assist everyone.
The only official platforms for OrcaSlicer are our GitHub project page and the <a href="https://discord.gg/P4VE9UY9gJ">official Discord channel</a> .
We deeply value our OrcaSlicer community and appreciate all the social groups that support us. However, it is crucial to address the risk posed by any group that falsely claims to be official or misleads its members. If you encounter such a group or are part of one, please assist by encouraging the group owner to add a clear disclaimer or by alerting its members.
Thank you for your vigilance and support in keeping our community safe!
# Main features
@ -129,7 +133,7 @@ resolution: 0.1
```
# Supports
**Orca Slicer** is an open-source project, and I'm deeply grateful to all my sponsors and backers.
**Orca Slicer** is an open-source project and I'm deeply grateful to all my sponsors and backers.
Their generous support enables me to purchase filaments and other essential 3D printing materials for the project.
Thank you! :)

View file

@ -36,7 +36,7 @@
</screenshot>
</screenshots>
<description>
<p>A 3D printer slicer forked from Bambu Studio, PrusaSlicer, and SuperSlicer with many more printer profiles, helpful calibration prints, and many more features to get your 3D printer printing perfectly!</p>
<p>A powerful, free and open-source 3D printer slicer that features cutting-edge technology.</p>
</description>
<branding>
<color type="primary" scheme_preference="light">#009688</color>

View file

@ -0,0 +1,15 @@
#! /bin/bash
sudo apt update
sudo apt install build-essential flatpak flatpak-builder gnome-software-plugin-flatpak -y
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
flatpak install flathub org.gnome.Platform//46 org.gnome.Sdk//46
##
# in OrcaSlicer folder, run following command to build Orca
# # First time build
# flatpak-builder --state-dir=.flatpak-builder --keep-build-dirs --user --force-clean build-dir flatpak/io.github.softfever.OrcaSlicer.yml
# # Subsequent builds (only rebuilding OrcaSlicer)
# flatpak-builder --state-dir=.flatpak-builder --keep-build-dirs --user build-dir flatpak/io.github.softfever.OrcaSlicer.yml --build-only=OrcaSlicer

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\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"
@ -1260,9 +1260,6 @@ msgstr ""
msgid "Center of circle"
msgstr ""
msgid "ShiftLeft mouse button"
msgstr ""
msgid "Select feature"
msgstr ""
@ -1278,17 +1275,24 @@ msgstr ""
msgid "Esc"
msgstr ""
msgid "Unselect"
msgid "Cancel a feature until exit"
msgstr ""
msgid "Measure"
msgstr ""
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
msgid "Please select at least one object."
msgstr ""
msgid "Edit to scale"
msgstr ""
msgctxt "Verb"
msgid "Scale"
msgid "Scale all"
msgstr ""
msgid "None"
@ -1303,6 +1307,42 @@ msgstr ""
msgid "Selection"
msgstr ""
msgid " (Moving)"
msgstr ""
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
msgid "Face"
msgstr ""
msgid " (Fixed)"
msgstr ""
msgid "Point"
msgstr ""
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
msgid "Warning:please select Plane's feature."
msgstr ""
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
msgid "Warning:please select two different mesh."
msgstr ""
msgid "Copy to clipboard"
msgstr ""
@ -1318,6 +1358,27 @@ msgstr ""
msgid "Distance XYZ"
msgstr ""
msgid "Parallel"
msgstr ""
msgid "Center coincidence"
msgstr ""
msgid "Featue 1"
msgstr ""
msgid "Reverse rotation"
msgstr ""
msgid "Rotate around center:"
msgstr ""
msgid "Parallel distance:"
msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Ctrl+"
msgstr ""
@ -2653,7 +2714,7 @@ msgstr ""
msgid "About %s"
msgstr ""
msgid "Orca Slicer "
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
@ -3395,9 +3456,9 @@ msgstr ""
#, possible-c-format, possible-boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
msgid ""
@ -7247,7 +7308,15 @@ msgstr ""
msgid "Nozzle temperature when printing"
msgstr ""
msgid "Cool plate"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
msgid "Cool Plate"
msgstr ""
msgid ""
@ -7452,7 +7521,7 @@ msgstr ""
msgid "Layer height limits"
msgstr ""
msgid "Lift Z Enforcement"
msgid "Z-Hop"
msgstr ""
msgid "Retraction when switching material"
@ -8946,6 +9015,11 @@ msgstr ""
msgid "Initial layer bed temperature"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -10347,8 +10421,8 @@ msgid "mm/s² or %"
msgstr ""
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 ""
msgid ""
@ -11125,9 +11199,9 @@ msgid "Min print speed"
msgstr ""
msgid ""
"The minimum printing speed that the printer will slow down to to attempt to "
"maintain the minimum layer time above, when slow down for better layer "
"cooling is enabled."
"The minimum print speed to which the printer slows down "
"to maintain the minimum layer time defined above "
"when the slowdown for better layer cooling is enabled."
msgstr ""
msgid "Diameter of nozzle"
@ -11399,7 +11473,7 @@ msgid ""
"change"
msgstr ""
msgid "Z hop when retract"
msgid "Z-hop height"
msgstr ""
msgid ""
@ -11424,6 +11498,9 @@ msgid ""
"the parameter: \"Z hop lower boundary\" and is below this value"
msgstr ""
msgid "Z-hop type"
msgstr ""
msgid "Z hop type"
msgstr ""
@ -12516,9 +12593,9 @@ msgid "Idle temperature"
msgstr ""
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
msgid "X-Y hole compensation"

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"PO-Revision-Date: 2024-07-07 18:43+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
@ -1298,9 +1298,6 @@ msgstr "Centre de l'aresta"
msgid "Center of circle"
msgstr "Centre del cercle"
msgid "ShiftLeft mouse button"
msgstr "Màj+Botó esquerre del ratolí"
msgid "Select feature"
msgstr "Seleccioneu una característica"
@ -1316,18 +1313,25 @@ msgstr "Reinicia la selecció"
msgid "Esc"
msgstr "Esc"
msgid "Unselect"
msgstr "Desmarcar"
msgid "Cancel a feature until exit"
msgstr ""
msgid "Measure"
msgstr "Mesurar"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
msgid "Please select at least one object."
msgstr ""
msgid "Edit to scale"
msgstr "Editar a escala"
msgctxt "Verb"
msgid "Scale"
msgstr "Escalar"
msgid "Scale all"
msgstr ""
msgid "None"
msgstr "Cap"
@ -1341,6 +1345,42 @@ msgstr "Longitut"
msgid "Selection"
msgstr "Selecció"
msgid " (Moving)"
msgstr ""
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
msgid "Face"
msgstr ""
msgid " (Fixed)"
msgstr ""
msgid "Point"
msgstr ""
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
msgid "Warning:please select Plane's feature."
msgstr ""
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
msgid "Warning:please select two different mesh."
msgstr ""
msgid "Copy to clipboard"
msgstr "Copiar al porta-retalls"
@ -1356,6 +1396,27 @@ msgstr "Distància directa"
msgid "Distance XYZ"
msgstr "Distància XYZ"
msgid "Parallel"
msgstr ""
msgid "Center coincidence"
msgstr ""
msgid "Featue 1"
msgstr ""
msgid "Reverse rotation"
msgstr ""
msgid "Rotate around center:"
msgstr ""
msgid "Parallel distance:"
msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Ctrl+"
msgstr "Ctrl+"
@ -2790,8 +2851,8 @@ msgstr ""
msgid "About %s"
msgstr "Sobre %s"
msgid "Orca Slicer "
msgstr "Orca Slicer "
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
msgstr "OrcaSlicer es basa en BambuStudio, PrusaSlicer i SuperSlicer."
@ -3265,8 +3326,8 @@ msgid ""
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
"La còpia del codi-G temporal ha finalitzat, però el codi exportat no s'ha "
"pogut obrir durant la verificació de la còpia. El codi-G de sortida és a %1%."
"tmp."
"pogut obrir durant la verificació de la còpia. El codi-G de sortida és a "
"%1%.tmp."
#, boost-format
msgid "G-code file exported to %1%"
@ -3630,9 +3691,9 @@ msgstr ""
#, c-format, boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
"La temperatura actual de la cambra és superior a la temperatura segura del "
"material, pot provocar un estovament i obstrucció del material. La "
@ -7901,7 +7962,15 @@ msgstr "Broquet( nozzle )"
msgid "Nozzle temperature when printing"
msgstr "Temperatura del broquet en imprimir"
msgid "Cool plate"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
msgid "Cool Plate"
msgstr "Base Freda"
msgid ""
@ -8122,8 +8191,8 @@ msgstr ""
msgid "Layer height limits"
msgstr "Límits d'alçada de capa"
msgid "Lift Z Enforcement"
msgstr "Forçar elevació Z"
msgid "Z-Hop"
msgstr ""
msgid "Retraction when switching material"
msgstr "Retracció en canviar de material"
@ -9841,6 +9910,11 @@ msgstr "Capa inicial"
msgid "Initial layer bed temperature"
msgstr "Temperatura del llit en la capa inicial"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -11549,8 +11623,8 @@ msgid "mm/s² or %"
msgstr "mm/s o %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
"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 ""
"Acceleració del farciment poc dens. Si el valor s'expressa en percentatge "
"( per exemple, 100% ), es calcularà a partir de l'acceleració predeterminada."
@ -12865,8 +12939,8 @@ msgstr ""
"Característica experimental. Longitud de retracció abans de tallar durant el "
"canvi de filament"
msgid "Z hop when retract"
msgstr "Salt en Z quan hi ha retracció"
msgid "Z-hop height"
msgstr ""
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -12899,6 +12973,9 @@ msgstr ""
"sobre del paràmetre: \"Límit inferior de salt en Z\" i estigui per sota "
"d'aquest valor"
msgid "Z-hop type"
msgstr ""
msgid "Z hop type"
msgstr "Tipus de salt en Z"
@ -14264,9 +14341,9 @@ msgid "Idle temperature"
msgstr ""
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
msgid "X-Y hole compensation"
@ -14984,8 +15061,8 @@ msgstr "Suport: propagar branques a la capa %d"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
"Format de fitxer desconegut. El fitxer d'entrada ha de tenir extensió .stl, ."
"obj, .amf( .xml )."
"Format de fitxer desconegut. El fitxer d'entrada ha de tenir "
"extensió .stl, .obj, .amf( .xml )."
msgid "Loading of a model file failed."
msgstr "La càrrega d'un fitxer de model ha fallat."
@ -17337,9 +17414,28 @@ msgstr ""
"augmentar adequadament la temperatura del llit pot reduir la probabilitat de "
"deformació."
#~ msgid "Cool Plate"
#~ msgid "ShiftLeft mouse button"
#~ msgstr "Màj+Botó esquerre del ratolí"
#~ msgid "Unselect"
#~ msgstr "Desmarcar"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Escalar"
#~ msgid "Orca Slicer "
#~ msgstr "Orca Slicer "
#~ msgid "Cool plate"
#~ msgstr "Base Freda"
#~ msgid "Lift Z Enforcement"
#~ msgstr "Forçar elevació Z"
#~ msgid "Z hop when retract"
#~ msgstr "Salt en Z quan hi ha retracció"
#~ msgid "Reverse on odd"
#~ msgstr "Invertir en capes senars"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"PO-Revision-Date: 2024-11-03 20:59+0100\n"
"Last-Translator: René Mošner <Renemosner@seznam.cz>\n"
"Language-Team: \n"
@ -1286,9 +1286,6 @@ msgstr "Střed hrany"
msgid "Center of circle"
msgstr "Střed kruhu"
msgid "ShiftLeft mouse button"
msgstr ""
msgid "Select feature"
msgstr "Vyberat objekt"
@ -1304,18 +1301,25 @@ msgstr "Zrušit výběr"
msgid "Esc"
msgstr "Esc"
msgid "Unselect"
msgstr "Zrušení výběru"
msgid "Cancel a feature until exit"
msgstr ""
msgid "Measure"
msgstr "Měření"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
msgid "Please select at least one object."
msgstr ""
msgid "Edit to scale"
msgstr "Změna rozměru"
msgctxt "Verb"
msgid "Scale"
msgstr "Měřítko"
msgid "Scale all"
msgstr ""
msgid "None"
msgstr "Žádné"
@ -1329,6 +1333,42 @@ msgstr "Vzdálenost"
msgid "Selection"
msgstr "Výběr"
msgid " (Moving)"
msgstr ""
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
msgid "Face"
msgstr ""
msgid " (Fixed)"
msgstr ""
msgid "Point"
msgstr ""
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
msgid "Warning:please select Plane's feature."
msgstr ""
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
msgid "Warning:please select two different mesh."
msgstr ""
msgid "Copy to clipboard"
msgstr "Kopírovat do schránky"
@ -1344,6 +1384,27 @@ msgstr "Přímá vzdálenost"
msgid "Distance XYZ"
msgstr "Vzdálenost XYZ"
msgid "Parallel"
msgstr ""
msgid "Center coincidence"
msgstr ""
msgid "Featue 1"
msgstr ""
msgid "Reverse rotation"
msgstr ""
msgid "Rotate around center:"
msgstr ""
msgid "Parallel distance:"
msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Ctrl+"
msgstr "Ctrl+"
@ -2755,8 +2816,8 @@ msgstr ""
msgid "About %s"
msgstr "O %s"
msgid "Orca Slicer "
msgstr "Orca Slicer "
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
msgstr "OrcaSlicer je založen na BambuStudio, PrusaSlicer a SuperSlicer."
@ -3563,9 +3624,9 @@ msgstr ""
#, c-format, boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
"Aktuální teplota komory je vyšší než bezpečná teplota materiálu,může to "
"způsobit změkčení materiálu a jeho ucpaní. Maximální bezpečná teplota pro "
@ -7690,8 +7751,16 @@ msgstr "Tryska"
msgid "Nozzle temperature when printing"
msgstr "Teplota trysky při tisku"
msgid "Cool plate"
msgstr "Cool podložka"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
msgid "Cool Plate"
msgstr "Cool Podložka"
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
@ -7910,8 +7979,8 @@ msgstr ""
msgid "Layer height limits"
msgstr "Výškové limity vrstvy"
msgid "Lift Z Enforcement"
msgstr "Vynutit Zvednout Z"
msgid "Z-Hop"
msgstr ""
msgid "Retraction when switching material"
msgstr "Retrakce při změně materiálu"
@ -9535,6 +9604,11 @@ msgstr "První vrstva"
msgid "Initial layer bed temperature"
msgstr "Teplota podložky první vrstvy"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -11100,8 +11174,8 @@ msgid "mm/s² or %"
msgstr "mm/s² or %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
"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 ""
"Zrychlení vnitřní výplně. Pokud je hodnota vyjádřena v procentech (např. 100 "
"%), bude vypočítána na základě výchozího zrychlení."
@ -12320,8 +12394,8 @@ msgid ""
"change"
msgstr ""
msgid "Z hop when retract"
msgstr "Z hop při retrakci"
msgid "Z-hop height"
msgstr ""
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -12352,6 +12426,9 @@ msgstr ""
"Pokud je tato hodnota kladná, Z hop bude mít vliv pouze tehdy, pokud je "
"hodnota Z nad dolní mezí Z hop a zároveň pod touto hodnotou"
msgid "Z-hop type"
msgstr ""
msgid "Z hop type"
msgstr "Typ Z hop"
@ -13601,9 +13678,9 @@ msgid "Idle temperature"
msgstr ""
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
msgid "X-Y hole compensation"
@ -14273,8 +14350,8 @@ msgstr "Podpěry: šíření větví na vrstvě %d"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
"Neznámý formát souboru. Vstupní soubor musí mít příponu .stl, .obj nebo ."
"amf(.xml)"
"Neznámý formát souboru. Vstupní soubor musí mít příponu .stl, .obj "
"nebo .amf(.xml)"
msgid "Loading of a model file failed."
msgstr "Nahrávání souboru modelu selhalo."
@ -16323,8 +16400,24 @@ msgid ""
"probability of warping."
msgstr ""
#~ msgid "Cool Plate"
#~ msgstr "Cool Podložka"
#~ msgid "Unselect"
#~ msgstr "Zrušení výběru"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Měřítko"
#~ msgid "Orca Slicer "
#~ msgstr "Orca Slicer "
#~ msgid "Cool plate"
#~ msgstr "Cool podložka"
#~ msgid "Lift Z Enforcement"
#~ msgstr "Vynutit Zvednout Z"
#~ msgid "Z hop when retract"
#~ msgstr "Z hop při retrakci"
#~ msgid "Reverse on odd"
#~ msgstr "Obrátit na lichých"
@ -16761,10 +16854,10 @@ msgstr ""
#~ "3mf je generován starým Orca Slicerem, načtěte pouze geometrická data."
#~ msgid ""
#~ "Relative extrusion is recommended when using \"label_objects\" option."
#~ "Some extruders work better with this option unchecked (absolute extrusion "
#~ "mode). Wipe tower is only compatible with relative mode. It is always "
#~ "enabled on BambuLab printers. Default is checked"
#~ "Relative extrusion is recommended when using \"label_objects\" "
#~ "option.Some extruders work better with this option unchecked (absolute "
#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is "
#~ "always enabled on BambuLab printers. Default is checked"
#~ msgstr ""
#~ "Při použití volby \"label_objects\" se doporučuje relativní extruzi. "
#~ "Některé extrudery fungují lépe, když je tato možnost odškrtnuta (režim "
@ -17132,8 +17225,8 @@ msgstr ""
#~ msgstr "Úroveň ladění"
#~ 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 ""
#~ "Nastaví úroveň protokolování ladění. 0:fatal, 1:error, 2:warning, 3:info, "
#~ "4:debug, 5:sledovat\n"
@ -17178,8 +17271,8 @@ msgstr ""
#~ "OrcaSlicer configuration file may be corrupted and is not abled to be "
#~ "parsed.Please delete the file and try again."
#~ msgstr ""
#~ "Konfigurační soubor OrcaSlicer může být poškozen a nelze jej analyzovat."
#~ "Smažte soubor a zkuste to znovu."
#~ "Konfigurační soubor OrcaSlicer může být poškozen a nelze jej "
#~ "analyzovat.Smažte soubor a zkuste to znovu."
#~ msgid "Online Models"
#~ msgstr "Online modely"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: Heiko Liebscher <hliebschergmail.com>\n"
"Language-Team: \n"
@ -1299,9 +1299,6 @@ msgstr "Zentrum der Kante"
msgid "Center of circle"
msgstr "Zentrum des Kreises"
msgid "ShiftLeft mouse button"
msgstr "Umschalttaste + Linksklick"
msgid "Select feature"
msgstr "Feature auswählen"
@ -1317,18 +1314,24 @@ msgstr "Auswahl neu starten"
msgid "Esc"
msgstr "Esc"
msgid "Unselect"
msgstr "Abwählen"
msgid "Cancel a feature until exit"
msgstr "Abbrechen einer Funktion bis zum Verlassen"
msgid "Measure"
msgstr "Messen"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr "Bitte bestätigen Sie das Explosionsverhältnis = 1, und wählen Sie mindestens ein Objekt aus"
msgid "Please select at least one object."
msgstr "Bitte wählen Sie mindestens ein Objekt aus."
msgid "Edit to scale"
msgstr "Bearbeiten auf Skala"
msgctxt "Verb"
msgid "Scale"
msgstr "Skalieren"
msgid "Scale all"
msgstr "Alle skalieren"
msgid "None"
msgstr "Keine"
@ -1342,6 +1345,48 @@ msgstr "Länge"
msgid "Selection"
msgstr "Auswahl"
msgid " (Moving)"
msgstr " (Bewegen)"
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
"Wählen Sie 2 Flächen auf Objekten aus und \n"
"lassen Sie die Objekte zusammenfügen."
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
"Wählen Sie 2 Punkte oder Kreise auf Objekten aus und \n"
"geben Sie den Abstand zwischen ihnen an."
msgid "Face"
msgstr "Fläche"
msgid " (Fixed)"
msgstr " (Fest)"
msgid "Point"
msgstr "Punkt"
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
"Feature 1 wurde zurückgesetzt, \n"
"Feature 2 wurde zu Feature 1"
msgid "Warning:please select Plane's feature."
msgstr "Warnung: Bitte wählen Sie die Funktion der Ebene."
msgid "Warning:please select Point's or Circle's feature."
msgstr "Warnung: Bitte wählen Sie die Funktion des Punktes oder Kreises."
msgid "Warning:please select two different mesh."
msgstr "Warnung: Bitte wählen Sie zwei verschiedene Mesh-Netze."
msgid "Copy to clipboard"
msgstr "In Zwischenablage kopieren"
@ -1357,6 +1402,27 @@ msgstr "Direkte Entfernung"
msgid "Distance XYZ"
msgstr "Entfernung XYZ"
msgid "Parallel"
msgstr "Parallel"
msgid "Center coincidence"
msgstr "Zentrumsgleichheit"
msgid "Featue 1"
msgstr "Funktion 1"
msgid "Reverse rotation"
msgstr "Rotation umkehren"
msgid "Rotate around center:"
msgstr "Um Zentrum drehen:"
msgid "Parallel distance:"
msgstr "Parallele Entfernung:"
msgid "Flip by Face 2"
msgstr "Umdrehen durch Fläche 2"
msgid "Ctrl+"
msgstr "Strg +"
@ -2812,8 +2878,8 @@ msgstr ""
msgid "About %s"
msgstr "Über %s"
msgid "Orca Slicer "
msgstr "Orca Slicer "
msgid "Orca Slicer"
msgstr "Orca Slicer"
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
msgstr "OrcaSlicer basiert auf BambuStudio, PrusaSlicer und SuperSlicer."
@ -3668,9 +3734,9 @@ msgstr ""
#, c-format, boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
"Die aktuelle Kammer-Temperatur ist höher als die sichere Temperatur des "
"Materials, dies kann zu Materialerweichung und Verstopfung führen. Die "
@ -7774,8 +7840,8 @@ msgid ""
"Layer height exceeds the limit in Printer Settings -> Extruder -> Layer "
"height limits ,this may cause printing quality issues."
msgstr ""
"Die Schichthöhe überschreitet das Limit in Druckereinstellungen -> Extruder -"
"> Schichthöhenlimits. Dies kann zu Problemen mit der Druckqualität führen."
"Die Schichthöhe überschreitet das Limit in Druckereinstellungen -> Extruder "
"-> Schichthöhenlimits. Dies kann zu Problemen mit der Druckqualität führen."
msgid "Adjust to the set range automatically? \n"
msgstr "Automatisch an den eingestellten Bereich anpassen? \n"
@ -7973,7 +8039,17 @@ msgstr "Düse"
msgid "Nozzle temperature when printing"
msgstr "Düsentemperatur beim Drucken"
msgid "Cool plate"
msgid "Cool Plate (SuperTack)"
msgstr "Kalte Druckplatte (SuperTack)"
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
"Dies ist die Betttemperatur, wenn die kalte Druckplatte installiert ist. Ein "
"Wert von 0 bedeutet, dass das Filament auf der kalten Druckplatte SuperTack "
msgid "Cool Plate"
msgstr "Kalte Druckplatte"
msgid ""
@ -8205,8 +8281,8 @@ msgstr ""
msgid "Layer height limits"
msgstr "Höhenbegrenzungen für Schichten"
msgid "Lift Z Enforcement"
msgstr "Z-Höhe einhalten"
msgid "Z-Hop"
msgstr "Z-Hop"
msgid "Retraction when switching material"
msgstr "Rückzug bei Materialwechsel"
@ -9806,8 +9882,8 @@ msgstr ""
"Feld sollte den Hostnamen, die IP-Adresse oder die URL der Drucker-Host-"
"Instanz enthalten. Auf einen Drucker-Host hinter HAProxy mit aktivierter "
"Basisauthentifizierung kann zugegriffen werden, indem Benutzername und "
"Passwort in die URL in folgendem Format eingegeben werden: https://username:"
"password@Ihre-octopi-Adresse/"
"Passwort in die URL in folgendem Format eingegeben werden: https://"
"username:password@Ihre-octopi-Adresse/"
msgid "Device UI"
msgstr "Gerät"
@ -9951,6 +10027,13 @@ msgstr "Erste Schicht"
msgid "Initial layer bed temperature"
msgstr "Druckbettemperatur für die erste Schicht"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
"Dies ist die Betttemperatur der ersten Schicht. Ein Wert von 0 bedeutet, "
"dass das Filament auf der kalten Druckplatte SuperTack nicht unterstützt "
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -10992,8 +11075,8 @@ msgid ""
"external surface finish. It can also cause the infill to shine through the "
"external surfaces of the part."
msgstr ""
"Reihenfolge der Wand/Füllung. Wenn das Kontrollkästchen nicht aktiviert ist,"
"werden die Wände zuerst gedruckt, was in den meisten Fällen am besten "
"Reihenfolge der Wand/Füllung. Wenn das Kontrollkästchen nicht aktiviert "
"ist,werden die Wände zuerst gedruckt, was in den meisten Fällen am besten "
"funktioniert.\n"
"\n"
"Das Drucken der Füllung zuerst kann bei extremen Überhängen helfen, da die "
@ -11883,16 +11966,16 @@ msgid ""
"Acceleration of bridges. If the value is expressed as a percentage (e.g. "
"50%), it will be calculated based on the outer wall acceleration."
msgstr ""
"Beschleunigung der Brücken. Wenn der Wert als Prozentwert angegeben wird (z."
"B. 50%), wird er auf der Grundlage der Beschleunigung der Außenwand "
"Beschleunigung der Brücken. Wenn der Wert als Prozentwert angegeben wird "
"(z.B. 50%), wird er auf der Grundlage der Beschleunigung der Außenwand "
"berechnet."
msgid "mm/s² or %"
msgstr "mm/s² or %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
"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 ""
"Beschleunigung der spärlichen Innenfüllung. Wenn der Wert als Prozentwert "
"angegeben wird (z.B. 100%), wird er auf der Grundlage der "
@ -12258,8 +12341,8 @@ msgstr ""
"aus, bevor die Geschwindigkeit auf die Zielgeschwindigkeit reduziert wird, "
"um den Kühlventilator anzuschubsen.Dies ist bei Lüftern nützlich, bei denen "
"eine niedrige PWM-Leistung möglicherweise nicht ausreicht, um den Lüfter vom "
"Stillstand aus zu starten oder um den Lüfter schneller auf Touren zu bringen."
"Setze den Wert auf 0, um diese Funktion zu deaktivieren."
"Stillstand aus zu starten oder um den Lüfter schneller auf Touren zu "
"bringen.Setze den Wert auf 0, um diese Funktion zu deaktivieren."
msgid "Time cost"
msgstr "Druckzeit Kosten"
@ -13228,8 +13311,8 @@ msgstr ""
"Experimentelle Funktion. Rückzugslänge vor dem Abschneiden beim Filament-"
"Wechsel"
msgid "Z hop when retract"
msgstr "Z-Hop beim Rückzug"
msgid "Z-hop height"
msgstr "Z-Hub-Höhe"
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -13261,6 +13344,9 @@ msgstr ""
"Wenn dieser Wert positiv ist, wird der Z-Hub nur wirksam, wenn Z über dem "
"Parameter: \"Z-Hub untere Grenze\" liegt und unter diesem Wert liegt"
msgid "Z-hop type"
msgstr "Z-Hub Typ"
msgid "Z hop type"
msgstr "Z-Hub Typ"
@ -13495,8 +13581,8 @@ msgstr ""
"Geschwindigkeit der äußeren oder inneren Wände abweicht. Wenn die hier "
"angegebene Geschwindigkeit höher ist als die Geschwindigkeit der äußeren "
"oder inneren Wände, wird der Drucker auf die langsamere der beiden "
"Geschwindigkeiten zurückgesetzt. Wenn sie als Prozentsatz angegeben wird (z."
"B. 80%), wird die Geschwindigkeit auf der Grundlage der jeweiligen "
"Geschwindigkeiten zurückgesetzt. Wenn sie als Prozentsatz angegeben wird "
"(z.B. 80%), wird die Geschwindigkeit auf der Grundlage der jeweiligen "
"Geschwindigkeit der äußeren oder inneren Wand berechnet. Der Standardwert "
"ist auf 100% eingestellt."
@ -14697,9 +14783,9 @@ msgid "Idle temperature"
msgstr "Leerlauftemperatur"
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
"Düsentemperatur, wenn das Werkzeug in Mehrwerkzeug-Setups derzeit nicht "
"verwendet wird. Dies wird nur verwendet, wenn die „Ausflussverhinderung“ in "
@ -15425,8 +15511,8 @@ msgstr "Stützen: Verbreiten von Zweigen auf Ebene %d"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
"Unbekanntes Dateiformat: Die Eingabedatei muss die Endung .stl, .obj oder ."
"amf(.xml) haben."
"Unbekanntes Dateiformat: Die Eingabedatei muss die Endung .stl, .obj "
"oder .amf(.xml) haben."
msgid "Loading of a model file failed."
msgstr "Das Laden der Modelldatei ist fehlgeschlagen."
@ -17782,6 +17868,28 @@ msgstr ""
"wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die "
"Wahrscheinlichkeit von Verwerfungen verringert werden kann."
#~ msgid "ShiftLeft mouse button"
#~ msgstr "Umschalttaste + Linksklick"
#~ msgid "Unselect"
#~ msgstr "Abwählen"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Skalieren"
#~ msgid "Orca Slicer "
#~ msgstr "Orca Slicer "
#~ msgid "Cool plate"
#~ msgstr "Kalte Druckplatte"
#~ msgid "Lift Z Enforcement"
#~ msgstr "Z-Höhe einhalten"
#~ msgid "Z hop when retract"
#~ msgstr "Z-Hop beim Rückzug"
#, no-c-format, no-boost-format
#~ msgid ""
#~ "Number of mm the overhang need to be for the reversal to be considered "
@ -17793,9 +17901,6 @@ msgstr ""
#~ "Umfangsbreite sein.\n"
#~ "Der Wert 0 aktiviert die Umkehrung auf jeder geraden Schicht."
#~ msgid "Cool Plate"
#~ msgstr "Kalte Druckplatte"
#~ msgid "Reverse on odd"
#~ msgstr "Umkehren bei ungeraden Schichten"
@ -18832,10 +18937,10 @@ msgstr ""
#~ msgstr "wiki"
#~ msgid ""
#~ "Relative extrusion is recommended when using \"label_objects\" option."
#~ "Some extruders work better with this option unchecked (absolute extrusion "
#~ "mode). Wipe tower is only compatible with relative mode. It is always "
#~ "enabled on BambuLab printers. Default is checked"
#~ "Relative extrusion is recommended when using \"label_objects\" "
#~ "option.Some extruders work better with this option unchecked (absolute "
#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is "
#~ "always enabled on BambuLab printers. Default is checked"
#~ msgstr ""
#~ "Die relative Extrusion wird empfohlen, wenn die Option „label_objects“ "
#~ "verwendet wird. Einige Extruder funktionieren besser, wenn diese Option "
@ -19286,11 +19391,11 @@ msgstr ""
#~ msgstr "Fehlersuchstufe"
#~ 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 ""
#~ "Legt die Stufe der Fehlerprotokollierung fest. 0:fatal, 1:error, 2:"
#~ "warning, 3:info, 4:debug, 5:trace\n"
#~ "Legt die Stufe der Fehlerprotokollierung fest. 0:fatal, 1:error, "
#~ "2:warning, 3:info, 4:debug, 5:trace\n"
#, boost-format
#~ msgid "The selected preset: %1% is not found."

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@ -1261,9 +1261,6 @@ msgstr "Center of edge"
msgid "Center of circle"
msgstr "Center of circle"
msgid "ShiftLeft mouse button"
msgstr ""
msgid "Select feature"
msgstr "Select feature"
@ -1279,18 +1276,25 @@ msgstr "Restart selection"
msgid "Esc"
msgstr "Esc"
msgid "Unselect"
msgid "Cancel a feature until exit"
msgstr ""
msgid "Measure"
msgstr "Measure"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
msgid "Please select at least one object."
msgstr ""
msgid "Edit to scale"
msgstr "Edit to scale"
msgctxt "Verb"
msgid "Scale"
msgstr "Scale"
msgid "Scale all"
msgstr ""
msgid "None"
msgstr "None"
@ -1304,6 +1308,42 @@ msgstr "Length"
msgid "Selection"
msgstr "Selection"
msgid " (Moving)"
msgstr ""
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
msgid "Face"
msgstr ""
msgid " (Fixed)"
msgstr ""
msgid "Point"
msgstr ""
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
msgid "Warning:please select Plane's feature."
msgstr ""
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
msgid "Warning:please select two different mesh."
msgstr ""
msgid "Copy to clipboard"
msgstr "Copy to clipboard"
@ -1319,6 +1359,27 @@ msgstr "Direct distance"
msgid "Distance XYZ"
msgstr "Distance XYZ"
msgid "Parallel"
msgstr ""
msgid "Center coincidence"
msgstr ""
msgid "Featue 1"
msgstr ""
msgid "Reverse rotation"
msgstr ""
msgid "Rotate around center:"
msgstr ""
msgid "Parallel distance:"
msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Ctrl+"
msgstr "Ctrl+"
@ -2707,7 +2768,7 @@ msgstr ""
msgid "About %s"
msgstr "About %s"
msgid "Orca Slicer "
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
@ -3522,9 +3583,9 @@ msgstr ""
#, c-format, boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
"Current chamber temperature is higher than the material's safe temperature; "
"this may result in material softening and nozzle clogs.The maximum safe "
@ -7652,8 +7713,16 @@ msgstr "Nozzle"
msgid "Nozzle temperature when printing"
msgstr "Nozzle temperature when printing"
msgid "Cool plate"
msgstr "Cool plate"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
msgid "Cool Plate"
msgstr "Cool Plate"
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
@ -7872,7 +7941,7 @@ msgstr ""
msgid "Layer height limits"
msgstr "Layer height limits"
msgid "Lift Z Enforcement"
msgid "Z-Hop"
msgstr ""
msgid "Retraction when switching material"
@ -9479,6 +9548,11 @@ msgstr "First layer"
msgid "Initial layer bed temperature"
msgstr "First layer bed temperature"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -10982,11 +11056,11 @@ msgid "mm/s² or %"
msgstr "mm/s² or %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
msgid ""
"Acceleration of internal solid infill. If the value is expressed as a "
@ -12113,8 +12187,8 @@ msgstr ""
"Experimental feature. Retraction length before cutting off during filament "
"change"
msgid "Z hop when retract"
msgstr "Z hop when retracting"
msgid "Z-hop height"
msgstr ""
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -12146,6 +12220,9 @@ msgstr ""
"If this value is positive, Z hop will only come into effect when Z is above "
"the parameter: \"Z hop lower boundary\" and is below this value"
msgid "Z-hop type"
msgstr ""
msgid "Z hop type"
msgstr ""
@ -13343,9 +13420,9 @@ msgid "Idle temperature"
msgstr ""
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
msgid "X-Y hole compensation"
@ -16161,8 +16238,15 @@ msgstr ""
"ABS, appropriately increasing the heatbed temperature can reduce the "
"probability of warping?"
#~ msgid "Cool Plate"
#~ msgstr "Cool Plate"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Scale"
#~ msgid "Cool plate"
#~ msgstr "Cool plate"
#~ msgid "Z hop when retract"
#~ msgstr "Z hop when retracting"
#~ msgid ""
#~ "While printing by Object, the extruder may collide skirt.\n"
@ -16752,11 +16836,11 @@ msgstr ""
#~ msgstr "Debug level"
#~ 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 ""
#~ "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"
#~ msgid "Embeded"
#~ msgstr "Embedded"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: Carlos Fco. Caruncho Serrano <puzzlero@gmail.com>\n"
"Language-Team: \n"
@ -1302,9 +1302,6 @@ msgstr "Centro de la arista"
msgid "Center of circle"
msgstr "Centro del círculo"
msgid "ShiftLeft mouse button"
msgstr "Mayúsculas + Botón izquierdo del ratón"
msgid "Select feature"
msgstr "Seleccionar característica"
@ -1320,18 +1317,27 @@ msgstr "Reiniciar selección"
msgid "Esc"
msgstr "Esc"
msgid "Unselect"
msgstr "Deseleccionar"
msgid "Cancel a feature until exit"
msgstr "Cancelar una característica hasta salir"
msgid "Measure"
msgstr "Medir"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
"Por favor, confirma que el ratio de explosión = 1, por favor seleccione al "
"menos un objeto"
msgid "Please select at least one object."
msgstr "Por favor seleccione al menos un objeto."
msgid "Edit to scale"
msgstr "Editar a escala"
msgctxt "Verb"
msgid "Scale"
msgstr "Escala"
msgid "Scale all"
msgstr "Escalar todo"
msgid "None"
msgstr "Ninguno"
@ -1345,6 +1351,49 @@ msgstr "Longitud"
msgid "Selection"
msgstr "Selección"
msgid " (Moving)"
msgstr "(Moviendo)"
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
"Selecciona 2 caras en un objeto y \n"
"haz que los objetos se ensamblen juntos."
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
"Selecciona 2 puntos o círculos en un objeto y \n"
"especifica la distancia entre ellos."
msgid "Face"
msgstr "Cara"
msgid " (Fixed)"
msgstr "(Solucionado)"
msgid "Point"
msgstr "Punto"
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
"Característica 1 se ha reiniciado.\n"
"característica 2 ha sido característica 1"
msgid "Warning:please select Plane's feature."
msgstr "Advertencia: por favor selecciona la característica del Plano."
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
"Advertencia: por favor selecciona la característica del Punto o Círculo"
msgid "Warning:please select two different mesh."
msgstr "Advertencia: por favor selecciona dos malla distintas"
msgid "Copy to clipboard"
msgstr "Copiar al portapapeles"
@ -1360,6 +1409,27 @@ msgstr "Distancia directa"
msgid "Distance XYZ"
msgstr "Distancia XYZ"
msgid "Parallel"
msgstr "Paralelo"
msgid "Center coincidence"
msgstr "Centrar coincidencía"
msgid "Featue 1"
msgstr "Característica 1"
msgid "Reverse rotation"
msgstr "Revertir Rotación"
msgid "Rotate around center:"
msgstr "Rotar alrededor del centro:"
msgid "Parallel distance:"
msgstr "Distancia paralela:"
msgid "Flip by Face 2"
msgstr "Voltear por la cara 2"
msgid "Ctrl+"
msgstr "Ctrl+"
@ -2813,8 +2883,8 @@ msgstr ""
msgid "About %s"
msgstr "Acerca de %s"
msgid "Orca Slicer "
msgstr "Orca Slicer "
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
msgstr "OrcaSlicer está basado en BambuStudio, PrusaSlicer, y SuperSlicer."
@ -5962,7 +6032,7 @@ msgid "Edit current plate name"
msgstr "Editar el nombre de la bandeja actual"
msgid "Move plate to the front"
msgstr ""
msgstr "Mover bandeja al frente"
msgid "Customize current plate"
msgstr "Personalizar bandeja actual"
@ -6343,7 +6413,7 @@ msgid "Slicing Plate %d"
msgstr "Laminando bandeja %d"
msgid "Please resolve the slicing errors and publish again."
msgstr "Por favor, resuelva los errores de corte y publique de nuevo."
msgstr "Por favor, resuelva los errores de laminado y publique de nuevo."
msgid ""
"Network Plug-in is not detected. Network related features are unavailable."
@ -7945,7 +8015,17 @@ msgstr "Boquilla"
msgid "Nozzle temperature when printing"
msgstr "Temperatura de la boquilla al imprimir"
msgid "Cool plate"
msgid "Cool Plate (SuperTack)"
msgstr "Bandeja Fría (SuperTack)"
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
"Temperatura de cama cuando la bandeja fría está instalada. Valor 0 significa "
"que el filamento no es compatible para imprimir en la bandeja fría SuperTack"
msgid "Cool Plate"
msgstr "Bandeja Fría"
msgid ""
@ -7957,12 +8037,15 @@ msgstr ""
"Bandeja Fría"
msgid "Textured Cool plate"
msgstr ""
msgstr "Bandeja Fría Texturizada"
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Textured Cool Plate"
msgstr ""
"Temperatura de la cama cuando la placa fría está instalada. El valor 0 "
"significa que el filamento no se puede imprimir en la placa de refrigeración "
"texturizada"
msgid "Engineering plate"
msgstr "Bandeja de Ingeniería"
@ -8177,8 +8260,8 @@ msgstr ""
msgid "Layer height limits"
msgstr "Límites de altura de la capa"
msgid "Lift Z Enforcement"
msgstr "Forzar elevación Z"
msgid "Z-Hop"
msgstr "Salto en Z"
msgid "Retraction when switching material"
msgstr "Retracción al cambiar de material"
@ -9458,7 +9541,7 @@ msgstr ""
msgid "Variable layer height is not supported with Organic supports."
msgstr ""
"La altura de capa variable no es compatible con los soportes orgánicos."
"La altura de capa adaptativa no es compatible con los soportes orgánicos."
msgid ""
"Different nozzle diameters and different filament diameters may not work "
@ -9529,7 +9612,7 @@ msgid ""
"layer height"
msgstr ""
"La torre de purga sólo se admite si todos los objetos tienen la misma altura "
"de capa variable"
"de capa adaptativa"
msgid "Too small line width"
msgstr "Ancho de línea demasiado pequeño"
@ -9721,8 +9804,8 @@ msgid ""
"Slicing height for each layer. Smaller layer height means more accurate and "
"more printing time"
msgstr ""
"Altura de corte para cada capa. Una altura de capa más pequeña significa más "
"precisión y más tiempo de impresión"
"Altura de laminado para cada capa. Una altura de capa más pequeña significa "
"más precisión y más tiempo de impresión"
msgid "Printable height"
msgstr "Altura imprimible"
@ -9873,6 +9956,9 @@ msgid ""
"Bed temperature for layers except the initial one. Value 0 means the "
"filament does not support to print on the Textured Cool Plate"
msgstr ""
"Temperatura de la cama para las capas excepto la inicial. El valor 0 "
"significa que el filamento no es compatible para imprimir en la placa fría "
"texturizada"
msgid ""
"Bed temperature for layers except the initial one. Value 0 means the "
@ -9903,6 +9989,13 @@ msgstr "Capa inicial"
msgid "Initial layer bed temperature"
msgstr "Temperatura de la cama durante la primera capa"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print 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 Bandeja Fría SuperTack"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -9914,6 +10007,8 @@ msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print 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. Value 0 means the filament does not "
@ -9942,16 +10037,16 @@ msgid "Bed types supported by the printer"
msgstr "Tipos de cama que admite la impresora"
msgid "Smooth Cool Plate"
msgstr ""
msgstr "Bandeja Fría Lisa"
msgid "Engineering Plate"
msgstr "Bandeja de Ingeniería"
msgid "Smooth High Temp Plate"
msgstr ""
msgstr "Bandeja Lisa de Alta Temperatura"
msgid "Textured Cool Plate"
msgstr ""
msgstr "Bandeja Fría Texturizada"
msgid "First layer print sequence"
msgstr "Secuencia de impresión de primera capa"
@ -10356,6 +10451,11 @@ msgid ""
"When Detect overhang wall is not enabled, this option is ignored and "
"reversal happens on every even layers regardless."
msgstr ""
"Número de mm que debe tener el voladizo para que la inversión se considere "
"útil. Puede ser % of el ancho del perímetro.\n"
"El valor 0 permite la inversión en cada capa par.\n"
"Cuando Detectar voladizo de pared no está activado, esta opción se ignora y "
"la inversión se produce en todas las capas pares."
msgid "Classic mode"
msgstr "Modo clásico"
@ -13146,12 +13246,15 @@ msgid "Force a retraction when changes layer"
msgstr "Forzar una retracción al cambiar de capa"
msgid "Retract on top layer"
msgstr ""
msgstr "Retracción en la capa superior"
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
"Forzar una retracción en la capa superior. Desactivarlo podría evitar "
"atascos en patrones muy lentos con movimientos pequeños, como la curva de "
"Hilbert"
msgid "Retraction Length"
msgstr "Longitud de retracción"
@ -13188,8 +13291,8 @@ msgstr ""
"Función experimental. Longitud de retracción antes del corte durante el "
"cambio de filamento"
msgid "Z hop when retract"
msgstr "Salto en Z al retraer"
msgid "Z-hop height"
msgstr "Altura de Salto en Z"
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -13221,6 +13324,9 @@ msgstr ""
"Si este valor es positivo, Z hop sólo se usará cuando Z esté por encima del "
"parámetro \"Límite inferior de salto Z\" y por debajo de este valor"
msgid "Z-hop type"
msgstr "Tipo de Salto en Z"
msgid "Z hop type"
msgstr "Tipo de salto Z"
@ -13667,9 +13773,9 @@ msgstr ""
"significa que esta característica está desactivada.\n"
"\n"
"El uso de un valor distinto de cero es útil si la impresora está configurada "
"para imprimir sin una línea principal. El número final de bucles no se tiene "
"en cuenta al organizar o validar la distancia de los objetos. En este caso, "
"aumente el número de bucles."
"para imprimir sin una línea principal. \n"
"El número final de bucles no se tiene en cuenta al organizar o validar la "
"distancia de los objetos. En este caso, aumente el número de bucles."
msgid ""
"The printing speed in exported gcode will be slowed down, when the estimated "
@ -13713,7 +13819,7 @@ msgid ""
msgstr ""
"El modo espiral suaviza los movimientos z del contorno exterior. Convierte "
"un modelo sólido en una impresión de un solo perímetro con capas inferiores "
"sólidas. El modelo final generado no tiene costuras."
"sólidas. El modelo final generado no tiene costuras"
msgid "Smooth Spiral"
msgstr "Espiral Suave"
@ -14756,7 +14862,7 @@ msgstr ""
"\"label_objects\". Algunos extrusores funcionan mejor con esta opción "
"desactivada (modo de extrusión absoluta). La torre de purga sólo es "
"compatible con el modo relativo. Se recomienda en la mayoría de las "
"impresoras. Por defecto está activada."
"impresoras. Por defecto está activada"
msgid ""
"Classic wall generator produces walls with constant extrusion width and for "
@ -14820,7 +14926,7 @@ msgstr ""
"forma de cuña con un ángulo mayor que este ajuste no tendrá transiciones y "
"no se imprimirán perímetros en el centro para rellenar el espacio restante. "
"La reducción de este ajuste reduce el número y la longitud de estos "
"perímetros centrales, pero puede dejar huecos o sobreextruir."
"perímetros centrales, pero puede dejar huecos o sobreextruir"
msgid "Wall distribution count"
msgstr "Recuento de la distribución del perímetro"
@ -14846,7 +14952,7 @@ msgstr ""
"sean más finas que este valor no se imprimirán, mientras que las "
"características más gruesas que el Tamaño mínimo de la característica se "
"ensancharán hasta el Ancho mínimo de perímetro. Se expresa en porcentaje "
"sobre el diámetro de la boquilla."
"sobre el diámetro de la boquilla"
msgid "Minimum wall length"
msgstr "Longitud mínima de perímetro"
@ -16142,10 +16248,10 @@ msgstr ""
"final > inicio + paso)"
msgid "Start retraction length: "
msgstr "Longitud de retracción inicial:"
msgstr "Longitud de retracción inicial: "
msgid "End retraction length: "
msgstr "Longitud de retracción final:"
msgstr "Longitud de retracción final: "
msgid "mm/mm"
msgstr "mm/mm"
@ -17366,7 +17472,7 @@ msgid ""
"consistency?"
msgstr ""
"Perímetro preciso. \n"
"¿Sabía que activar el perímetro precisa puede mejorar la precisión y la "
"¿Sabías que activar el perímetro precisa puede mejorar la precisión y la "
"uniformidad de las capas?"
#: resources/data/hints.ini: [hint:Sandwich mode]
@ -17387,7 +17493,7 @@ msgid ""
"Did you know that OrcaSlicer supports chamber temperature?"
msgstr ""
"Temperatura de la cámara \n"
"¿Sabía que OrcaSlicer tiene la función de control de temperatura de cámara?"
"¿Sabías que OrcaSlicer tiene la función de control de temperatura de cámara?"
#: resources/data/hints.ini: [hint:Calibration]
msgid ""
@ -17405,7 +17511,7 @@ msgid ""
"Did you know that OrcaSlicer supports Auxiliary part cooling fan?"
msgstr ""
"Ventilador auxiliar\n"
"¿Sabía que OrcaSlicer admite un ventilador auxiliar de refrigeración de "
"¿Sabías que OrcaSlicer admite un ventilador auxiliar de refrigeración de "
"piezas?"
#: resources/data/hints.ini: [hint:Air filtration]
@ -17422,7 +17528,7 @@ msgid ""
"You can turn on/off the G-code window by pressing the <b>C</b> key."
msgstr ""
"Ventana de G-Code \n"
"Puede activar/desactivar la ventana de G-Code pulsando la tecla <b>C</b>."
"Puedes activar/desactivar la ventana de G-Code pulsando la tecla <b>C</b>."
#: resources/data/hints.ini: [hint:Switch workspaces]
msgid ""
@ -17442,7 +17548,7 @@ msgid ""
msgstr ""
"Cómo utilizar los atajos de teclado \n"
"¿Sabías que Orca Slicer ofrece una amplia gama de atajos de teclado y "
"operaciones de escenas 3D."
"operaciones de escenas 3D?."
#: resources/data/hints.ini: [hint:Reverse on odd]
msgid ""
@ -17451,8 +17557,8 @@ msgid ""
"the surface quality of your overhangs?"
msgstr ""
"Invertir en impar \n"
"Sabía que la función <b>Invertir en impar</b> puede mejorar "
"significativamente la calidad de la superficie de sus voladizos?"
"¿Sabías que la función <b>Invertir en impar</b> puede mejorar "
"significativamente la calidad de la superficie de los voladizos?"
#: resources/data/hints.ini: [hint:Cut Tool]
msgid ""
@ -17472,7 +17578,7 @@ msgid ""
msgstr ""
"Arreglar modelo \n"
"¿Sabías que puedes arreglar un modelo 3D dañado para evitar muchos problemas "
"de corte en el sistema Windows?"
"de laminado en el sistema Windows?"
#: resources/data/hints.ini: [hint:Timelapse]
msgid ""
@ -17550,7 +17656,7 @@ msgid ""
"settings for each object/part?"
msgstr ""
"Tabla de parámetros de laminado\n"
"¿Sabía que puede ver todos los objetos/partes de una tabla y cambiar los "
"¿Sabías que puedes ver todos los objetos/partes de una tabla y cambiar los "
"parámetros de cada objeto/parte?"
#: resources/data/hints.ini: [hint:Split to Objects/Parts]
@ -17584,10 +17690,10 @@ msgid ""
"lower resolution STL. Give it a try!"
msgstr ""
"STEP\n"
"¿Sabías que puedes mejorar la calidad de impresión cortando un archivo STEP "
"¿Sabías que puedes mejorar la calidad de impresión laminando un archivo STEP "
"en lugar de un STL?\n"
"Orca Slicer soporta el corte de archivos STEP, proporcionando resultados más "
"suaves que un STL de menor resolución. ¡Pruébalo!"
"Orca Slicer soporta el laminado de archivos STEP, proporcionando resultados "
"más suaves que un STL de menor resolución. ¡Pruébalo!"
#: resources/data/hints.ini: [hint:Z seam location]
msgid ""
@ -17620,7 +17726,7 @@ msgid ""
"individual plates ready to print? This will simplify the process of keeping "
"track of all the parts."
msgstr ""
"Divide tus impresiones en planchas\n"
"Divide tus impresiones en bandejas\n"
"¿Sabías que puedes dividir un modelo con muchas piezas en bandejas "
"individuales listas para imprimir? Esto simplificará el proceso de "
"seguimiento de todas las piezas."
@ -17632,9 +17738,9 @@ msgid ""
"Did you know that you can print a model even faster, by using the Adaptive "
"Layer Height option? Check it out!"
msgstr ""
"Acelere su impresión con la altura de capa adaptativa\n"
"Acelere su impresión con la Altura Adaptable de Capa\n"
"¿Sabías que puedes imprimir un modelo aún más rápido utilizando la opción "
"Altura de capa adaptable? ¡Compruébalo!"
"Altura Adaptable de Capa? ¡Compruébalo!"
#: resources/data/hints.ini: [hint:Support painting]
msgid ""
@ -17644,9 +17750,9 @@ msgid ""
"model that actually need it."
msgstr ""
"Pintura de soportes\n"
"¿Sabías que puedes pintar la ubicación de los soportes? Esta función "
"facilita la colocación del material de soporte sólo en las secciones del "
"modelo que realmente lo necesitan."
"¿Sabías que puedes pintar los soportes en cualquier ubicación? Esta función "
"facilita la colocación de soportes sólo en las secciones donde realmente sea "
"necesario."
#: resources/data/hints.ini: [hint:Different types of supports]
msgid ""
@ -17658,7 +17764,7 @@ msgstr ""
"Diferentes tipos de soportes\n"
"¿Sabías que puedes elegir entre varios tipos de soportes? Los soportes en "
"forma de árbol son ideales para modelos orgánicos, ahorran filamento y "
"mejoran la velocidad de impresión. ¡Compruébalos!"
"mejoran la velocidad de impresión. ¡Compruébalo!"
#: resources/data/hints.ini: [hint:Printing Silk Filament]
msgid ""
@ -17668,7 +17774,7 @@ msgid ""
"the best results."
msgstr ""
"Impresión de filamento de seda\n"
"¿Sabías que el filamento de seda necesita una consideración especial para "
"¿Sabías que el filamento de seda necesita una configuración especial para "
"imprimirlo con éxito? Se recomienda siempre una temperatura más alta y una "
"velocidad más baja para obtener los mejores resultados."
@ -17678,8 +17784,8 @@ msgid ""
"Did you know that when printing models have a small contact interface with "
"the printing surface, it's recommended to use a brim?"
msgstr ""
"Borde de adherencia para una mejor adherencia\n"
"¿Sabía que cuando los modelos de impresión tienen una pequeña interfaz de "
"Borde de adherencia\n"
"¿Sabías que cuando los modelos de impresión tienen una pequeña interfaz de "
"contacto con la superficie de impresión, se recomienda utilizar un borde de "
"adherencia?"
@ -17690,7 +17796,7 @@ msgid ""
"one time?"
msgstr ""
"Establecer parámetros para varios objetos\n"
"¿Sabías que puedes establecer parámetros de corte para todos los objetos "
"¿Sabías que puedes establecer parámetros de laminado para todos los objetos "
"seleccionados a la vez?"
#: resources/data/hints.ini: [hint:Stack objects]
@ -17698,8 +17804,8 @@ msgid ""
"Stack objects\n"
"Did you know that you can stack objects as a whole one?"
msgstr ""
"Apilar objetos\n"
"¿Sabías que puedes apilar objetos como un todo?"
"Agrupar objetos\n"
"¿Sabías que puedes agrupar objetos como un todo?"
#: resources/data/hints.ini: [hint:Flush into support/objects/infill]
msgid ""
@ -17730,8 +17836,8 @@ msgid ""
"higher enclosure temperature. More info about this in the Wiki."
msgstr ""
"Cuando es necesario imprimir con la puerta de la impresora abierta \n"
"¿Sabía usted que la apertura de la puerta de la impresora puede reducir la "
"probabilidad de obstrucción del extrusor / hotend al imprimir filamento de "
"¿Sabías que la apertura de la puerta de la impresora puede reducir la "
"probabilidad de obstrucción del extrusor / cabezal al imprimir filamento de "
"baja temperatura con una temperatura más alta de la cubierta. Más "
"información sobre esto en la Wiki."
@ -17747,6 +17853,28 @@ msgstr ""
"aumentar adecuadamente la temperatura de la cama térmica puede reducir la "
"probabilidad de deformaciones."
#~ msgid "ShiftLeft mouse button"
#~ msgstr "Mayúsculas + Botón izquierdo del ratón"
#~ msgid "Unselect"
#~ msgstr "Deseleccionar"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Escala"
#~ msgid "Orca Slicer "
#~ msgstr "Orca Slicer "
#~ msgid "Cool plate"
#~ msgstr "Bandeja Fría"
#~ msgid "Lift Z Enforcement"
#~ msgstr "Forzar elevación Z"
#~ msgid "Z hop when retract"
#~ msgstr "Salto en Z al retraer"
#, no-c-format, no-boost-format
#~ msgid ""
#~ "Number of mm the overhang need to be for the reversal to be considered "
@ -17757,9 +17885,6 @@ msgstr ""
#~ "considere útil. Puede ser % del ancho del perímetro.\n"
#~ "El valor 0 permite la inversión en todas las capas pares."
#~ msgid "Cool Plate"
#~ msgstr "Bandeja Fría"
#~ msgid "Reverse on odd"
#~ msgstr "Invertir en impar"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: Guislain Cyril, Thomas Lété\n"
@ -1311,9 +1311,6 @@ msgstr "Centrer sur larête "
msgid "Center of circle"
msgstr "Centrer du cercle"
msgid "ShiftLeft mouse button"
msgstr "ShiftLeft mouse button"
msgid "Select feature"
msgstr "Sélectionner un trait"
@ -1329,18 +1326,25 @@ msgstr "Recommencer la sélection"
msgid "Esc"
msgstr "Échap"
msgid "Unselect"
msgstr "Désélectionner"
msgid "Cancel a feature until exit"
msgstr ""
msgid "Measure"
msgstr "Mesurer"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
msgid "Please select at least one object."
msgstr ""
msgid "Edit to scale"
msgstr "Modifier à léchelle"
msgctxt "Verb"
msgid "Scale"
msgstr "Redimensionner"
msgid "Scale all"
msgstr ""
msgid "None"
msgstr "Aucun"
@ -1354,6 +1358,42 @@ msgstr "Longueur"
msgid "Selection"
msgstr "Sélection"
msgid " (Moving)"
msgstr ""
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
msgid "Face"
msgstr ""
msgid " (Fixed)"
msgstr ""
msgid "Point"
msgstr ""
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
msgid "Warning:please select Plane's feature."
msgstr ""
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
msgid "Warning:please select two different mesh."
msgstr ""
msgid "Copy to clipboard"
msgstr "Copier dans le presse-papier"
@ -1369,6 +1409,27 @@ msgstr "Distance directe"
msgid "Distance XYZ"
msgstr "Distance XYZ"
msgid "Parallel"
msgstr ""
msgid "Center coincidence"
msgstr ""
msgid "Featue 1"
msgstr ""
msgid "Reverse rotation"
msgstr ""
msgid "Rotate around center:"
msgstr ""
msgid "Parallel distance:"
msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Ctrl+"
msgstr "Ctrl+"
@ -2813,8 +2874,8 @@ msgstr ""
msgid "About %s"
msgstr "À propos de %s"
msgid "Orca Slicer "
msgstr "Orca Slicer "
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
msgstr "Orca Slicer est basé sur BambuStudio, PrusaSlicer, et SuperSlicer."
@ -3665,9 +3726,9 @@ msgstr ""
#, c-format, boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
"La température actuelle du caisson est supérieure à la température de "
"sécurité du matériau, ce qui peut entraîner un ramollissement et un bouchage "
@ -7819,9 +7880,9 @@ msgid ""
"complications.Please use with the latest printer firmware."
msgstr ""
"Fonction expérimentale : Rétracter et couper le filament à une plus grande "
"distance lors des changements de filament afin de minimiser laffleurement."
"Bien que cela puisse réduire sensiblement laffleurement, cela peut "
"également augmenter le risque dobstruction des buses ou dautres "
"distance lors des changements de filament afin de minimiser "
"laffleurement.Bien que cela puisse réduire sensiblement laffleurement, "
"cela peut également augmenter le risque dobstruction des buses ou dautres "
"complications dimpression.Veuillez utiliser le dernier micrologiciel de "
"limprimante."
@ -7989,8 +8050,16 @@ msgstr "Buse"
msgid "Nozzle temperature when printing"
msgstr "Température de la buse lors de l'impression"
msgid "Cool plate"
msgstr "Plaque Cool plate"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
msgid "Cool Plate"
msgstr "Cool Plate/Plaque PLA"
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
@ -8227,8 +8296,8 @@ msgstr ""
msgid "Layer height limits"
msgstr "Limites de hauteur de couche"
msgid "Lift Z Enforcement"
msgstr "Exécution du décalage en Z"
msgid "Z-Hop"
msgstr ""
msgid "Retraction when switching material"
msgstr "Rétraction lors du changement de matériau"
@ -9993,6 +10062,11 @@ msgstr "Couche initiale"
msgid "Initial layer bed temperature"
msgstr "Température du plateau lors de la couche initiale"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -11253,7 +11327,7 @@ msgstr "Pressure Advance (Klipper) AKA Linear Advance (Marlin)"
msgid "Enable adaptive pressure advance (beta)"
msgstr "Activer lavance de pression adaptative (beta)"
#, fuzzy, no-c-format, no-boost-format
#, no-c-format, no-boost-format
msgid ""
"With increasing print speeds (and hence increasing volumetric flow through "
"the nozzle) and increasing accelerations, it has been observed that the "
@ -11295,6 +11369,7 @@ msgstr ""
"remplacée. Cependant, une valeur par défaut raisonnable est fortement "
"recommandée pour servir de solution de secours et en cas de changement "
"doutil.\n"
"\n"
msgid "Adaptive pressure advance measurements (beta)"
msgstr "Mesures adaptatives de lavance de pression (beta)"
@ -11957,8 +12032,8 @@ msgid "mm/s² or %"
msgstr "mm/s² or %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Accélération du remplissage interne. Si la valeur est exprimée en "
"pourcentage (par exemple 100%), elle sera calculée en fonction de "
@ -13275,12 +13350,15 @@ msgid "Force a retraction when changes layer"
msgstr "Cela force une rétraction sur les changements de couche."
msgid "Retract on top layer"
msgstr ""
msgstr "Rétracter sur la couche supérieure"
msgid ""
"Force a retraction on top layer. Disabling could prevent clog on very slow "
"patterns with small movements, like Hilbert curve"
msgstr ""
"Force la rétraction de la couche supérieure. La désactivation pourrait "
"empêcher le bouchage des motifs très lents avec de petits mouvements, comme "
"la courbe de Hilbert."
msgid "Retraction Length"
msgstr "Longueur de Rétraction"
@ -13317,8 +13395,8 @@ msgstr ""
"Fonction expérimentale : longueur de rétraction avant la coupure lors du "
"changement de filament."
msgid "Z hop when retract"
msgstr "Décalage du Z lors de la rétraction"
msgid "Z-hop height"
msgstr ""
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -13351,6 +13429,9 @@ msgstr ""
"supérieur au paramètre : « Limite inférieure de Z hop » et quil est "
"inférieur à cette valeur."
msgid "Z-hop type"
msgstr ""
msgid "Z hop type"
msgstr "Type de décalage en Z"
@ -14787,9 +14868,9 @@ msgid "Idle temperature"
msgstr "Température au repos"
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
"Température de la buse lorsque loutil nest pas utilisé dans les "
"configurations multi-outils. Cette fonction nest utilisée que lorsque la "
@ -15525,8 +15606,8 @@ msgstr "Support : propagation des branches à la couche %d"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
"Format de fichier inconnu : le fichier d'entrée doit porter l'extension ."
"stl, .obj ou .amf (.xml)."
"Format de fichier inconnu : le fichier d'entrée doit porter "
"l'extension .stl, .obj ou .amf (.xml)."
msgid "Loading of a model file failed."
msgstr "Le chargement du fichier modèle a échoué."
@ -15536,8 +15617,8 @@ msgstr "Le fichier fourni n'a pas pu être lu car il est vide."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
"Format de fichier inconnu : le fichier d'entrée doit porter "
"l'extension .3mf, .zip ou .amf."
"Format de fichier inconnu : le fichier d'entrée doit porter l'extension "
".3mf, .zip ou .amf."
msgid "Canceled"
msgstr "Annulé"
@ -17923,6 +18004,28 @@ 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 "ShiftLeft mouse button"
#~ msgstr "ShiftLeft mouse button"
#~ msgid "Unselect"
#~ msgstr "Désélectionner"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Redimensionner"
#~ msgid "Orca Slicer "
#~ msgstr "Orca Slicer "
#~ msgid "Cool plate"
#~ msgstr "Plaque Cool plate"
#~ msgid "Lift Z Enforcement"
#~ msgstr "Exécution du décalage en Z"
#~ msgid "Z hop when retract"
#~ msgstr "Décalage du Z lors de la rétraction"
#, no-c-format, no-boost-format
#~ msgid ""
#~ "Number of mm the overhang need to be for the reversal to be considered "
@ -17934,9 +18037,6 @@ msgstr ""
#~ "périmètre.\n"
#~ "La valeur 0 permet linversion sur toutes les couches paires."
#~ msgid "Cool Plate"
#~ msgstr "Cool Plate/Plaque PLA"
#~ msgid "Reverse on odd"
#~ msgstr "Parois inversées sur couches impaires"
@ -19092,10 +19192,10 @@ msgstr ""
#~ "chargement des données de géométrie uniquement."
#~ msgid ""
#~ "Relative extrusion is recommended when using \"label_objects\" option."
#~ "Some extruders work better with this option unchecked (absolute extrusion "
#~ "mode). Wipe tower is only compatible with relative mode. It is always "
#~ "enabled on BambuLab printers. Default is checked"
#~ "Relative extrusion is recommended when using \"label_objects\" "
#~ "option.Some extruders work better with this option unchecked (absolute "
#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is "
#~ "always enabled on BambuLab printers. Default is checked"
#~ msgstr ""
#~ "Lextrusion relative est recommandée lors de lutilisation de loption "
#~ "\"label_objects\". Certains extrudeurs fonctionnent mieux avec cette "
@ -19452,11 +19552,11 @@ msgstr ""
#~ msgstr "Niveau de débogage"
#~ 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 ""
#~ "Définit le niveau de journalisation du débogage. 0 :fatal, 1 :erreur, 2 :"
#~ "avertissement, 3 :info, 4 :débogage, 5 :trace\n"
#~ "Définit le niveau de journalisation du débogage. 0 :fatal, 1 :erreur, "
#~ "2 :avertissement, 3 :info, 4 :débogage, 5 :trace\n"
#~ msgid ""
#~ "3D Scene Operations\n"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"Language: hu\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -1260,9 +1260,6 @@ msgstr "Center of edge"
msgid "Center of circle"
msgstr "Center of circle"
msgid "ShiftLeft mouse button"
msgstr ""
msgid "Select feature"
msgstr "Select feature"
@ -1278,18 +1275,25 @@ msgstr "Restart selection"
msgid "Esc"
msgstr "Esc"
msgid "Unselect"
msgid "Cancel a feature until exit"
msgstr ""
msgid "Measure"
msgstr "Measure"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
msgid "Please select at least one object."
msgstr ""
msgid "Edit to scale"
msgstr "Edit to scale"
msgctxt "Verb"
msgid "Scale"
msgstr "Átméretezés"
msgid "Scale all"
msgstr ""
msgid "None"
msgstr "Sehol"
@ -1303,6 +1307,42 @@ msgstr "Hossz"
msgid "Selection"
msgstr "Selection"
msgid " (Moving)"
msgstr ""
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
msgid "Face"
msgstr ""
msgid " (Fixed)"
msgstr ""
msgid "Point"
msgstr ""
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
msgid "Warning:please select Plane's feature."
msgstr ""
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
msgid "Warning:please select two different mesh."
msgstr ""
msgid "Copy to clipboard"
msgstr "Másolás a vágólapra"
@ -1318,6 +1358,27 @@ msgstr "Direct distance"
msgid "Distance XYZ"
msgstr "Distance XYZ"
msgid "Parallel"
msgstr ""
msgid "Center coincidence"
msgstr ""
msgid "Featue 1"
msgstr ""
msgid "Reverse rotation"
msgstr ""
msgid "Rotate around center:"
msgstr ""
msgid "Parallel distance:"
msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Ctrl+"
msgstr "Ctrl+"
@ -2729,7 +2790,7 @@ msgstr ""
msgid "About %s"
msgstr "%s névjegye"
msgid "Orca Slicer "
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
@ -3558,9 +3619,9 @@ msgstr ""
#, c-format, boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
"Current chamber temperature is higher than the material's safe temperature; "
"this may result in material softening and nozzle clogs.The maximum safe "
@ -7725,8 +7786,16 @@ msgstr "Fúvóka"
msgid "Nozzle temperature when printing"
msgstr "Fúvóka hőmérséklete nyomtatáskor"
msgid "Cool plate"
msgstr "Cool plate"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
msgid "Cool Plate"
msgstr "Cool Plate"
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
@ -7948,7 +8017,7 @@ msgstr ""
msgid "Layer height limits"
msgstr "Rétegmagasság limitek"
msgid "Lift Z Enforcement"
msgid "Z-Hop"
msgstr ""
msgid "Retraction when switching material"
@ -9592,6 +9661,11 @@ msgstr "Kezdőréteg"
msgid "Initial layer bed temperature"
msgstr "Első réteg asztalhőmérséklete"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -11107,8 +11181,8 @@ msgid "mm/s² or %"
msgstr "mm/s² or %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Gyorsulás a ritkás kitöltéseknél. Ha az érték százalékban van megadva (pl. "
"100%), akkor az alapértelmezett gyorsulás alapján kerül kiszámításra."
@ -12258,8 +12332,8 @@ msgstr ""
"Experimental feature. Retraction length before cutting off during filament "
"change"
msgid "Z hop when retract"
msgstr "Z-tengely emelés visszahúzáskor"
msgid "Z-hop height"
msgstr ""
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -12291,6 +12365,9 @@ msgstr ""
"Ha ez az érték pozitív, a Z-emelés csak akkor történik meg, ha az emelés "
"mértéke a „Z-emelés alsó határánál“ nagyobb, de kisebb ennél az értéknél"
msgid "Z-hop type"
msgstr ""
msgid "Z hop type"
msgstr ""
@ -13515,9 +13592,9 @@ msgid "Idle temperature"
msgstr ""
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
msgid "X-Y hole compensation"
@ -16349,8 +16426,15 @@ msgstr ""
"Tudtad, hogy a vetemedésre hajlamos anyagok (például ABS) nyomtatásakor a "
"tárgyasztal hőmérsékletének növelése csökkentheti a vetemedés valószínűségét?"
#~ msgid "Cool Plate"
#~ msgstr "Cool Plate"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Átméretezés"
#~ msgid "Cool plate"
#~ msgstr "Cool plate"
#~ msgid "Z hop when retract"
#~ msgstr "Z-tengely emelés visszahúzáskor"
#~ msgid ""
#~ "While printing by Object, the extruder may collide skirt.\n"
@ -16978,11 +17062,11 @@ msgstr ""
#~ msgstr "Hibakeresés szintje"
#~ 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 ""
#~ "A hibakeresési naplózási szint beállítása. 0:fatal, 1:error, 2:warning, 3:"
#~ "info, 4:debug, 5:trace\n"
#~ "A hibakeresési naplózási szint beállítása. 0:fatal, 1:error, 2:warning, "
#~ "3:info, 4:debug, 5:trace\n"
#~ msgid ""
#~ "3D Scene Operations\n"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@ -1306,9 +1306,6 @@ msgstr "Centro del bordo"
msgid "Center of circle"
msgstr "Centro della circonferenza"
msgid "ShiftLeft mouse button"
msgstr "MaiuscTasto sinistro del mouse"
msgid "Select feature"
msgstr "Seleziona caratteristica"
@ -1324,18 +1321,25 @@ msgstr "Riavvio della selezione"
msgid "Esc"
msgstr "Esc"
msgid "Unselect"
msgstr "Deseleziona"
msgid "Cancel a feature until exit"
msgstr ""
msgid "Measure"
msgstr "Misura"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
msgid "Please select at least one object."
msgstr ""
msgid "Edit to scale"
msgstr "Modifica in scala"
msgctxt "Verb"
msgid "Scale"
msgstr "Ridimensiona"
msgid "Scale all"
msgstr ""
msgid "None"
msgstr "Nessuno"
@ -1349,6 +1353,42 @@ msgstr "Lunghezza"
msgid "Selection"
msgstr "Selezione"
msgid " (Moving)"
msgstr ""
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
msgid "Face"
msgstr ""
msgid " (Fixed)"
msgstr ""
msgid "Point"
msgstr ""
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
msgid "Warning:please select Plane's feature."
msgstr ""
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
msgid "Warning:please select two different mesh."
msgstr ""
msgid "Copy to clipboard"
msgstr "Copia negli appunti"
@ -1364,6 +1404,27 @@ msgstr "Distanza diretta"
msgid "Distance XYZ"
msgstr "Distanza XYZ"
msgid "Parallel"
msgstr ""
msgid "Center coincidence"
msgstr ""
msgid "Featue 1"
msgstr ""
msgid "Reverse rotation"
msgstr ""
msgid "Rotate around center:"
msgstr ""
msgid "Parallel distance:"
msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Ctrl+"
msgstr "Ctrl+"
@ -2800,8 +2861,8 @@ msgstr ""
msgid "About %s"
msgstr "Informazioni su %s"
msgid "Orca Slicer "
msgstr "Orca Slicer "
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
msgstr "OrcaSlicer è basato su BambuStudio, PrusaSlicer e SuperSlicer."
@ -3255,8 +3316,8 @@ msgid ""
msgstr ""
"Copia del G-code temporaneo nel G-code di output non riuscita. Potrebbe "
"esserci un problema nel dispositivo di destinazione, prova una nuova "
"esportazione con un dispositivo diverso. Il file G-code corrotto è su %1%."
"tmp."
"esportazione con un dispositivo diverso. Il file G-code corrotto è su "
"%1%.tmp."
#, boost-format
msgid ""
@ -3282,8 +3343,8 @@ msgid ""
"be opened during copy check. The output G-code is at %1%.tmp."
msgstr ""
"Copia del G-code temporaneo completata ma non è stato possibile aprire il "
"codice esportato durante il controllo copia. Il G-code di output è su %1%."
"tmp."
"codice esportato durante il controllo copia. Il G-code di output è su "
"%1%.tmp."
#, boost-format
msgid "G-code file exported to %1%"
@ -3645,9 +3706,9 @@ msgstr ""
#, c-format, boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
"L'attuale temperatura della camera è superiore alla temperatura di sicurezza "
"del materiale, può causare l'ammorbidimento e l'intasamento del materiale. "
@ -7878,8 +7939,16 @@ msgstr "Ugello"
msgid "Nozzle temperature when printing"
msgstr "Temperatura del nozzle durante la stampa"
msgid "Cool plate"
msgstr "Cool plate"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
msgid "Cool Plate"
msgstr "Cool Plate"
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
@ -8099,8 +8168,8 @@ msgstr ""
msgid "Layer height limits"
msgstr "Limiti altezza layer"
msgid "Lift Z Enforcement"
msgstr "Applicazione dell'ascensore Z"
msgid "Z-Hop"
msgstr ""
msgid "Retraction when switching material"
msgstr "Retrazione quando si cambia materiale"
@ -9816,6 +9885,11 @@ msgstr "Primo layer"
msgid "Initial layer bed temperature"
msgstr "Temperatura del piano per il primo layer"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -11504,8 +11578,8 @@ msgid "mm/s² or %"
msgstr "mm/s o %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
"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 ""
"Accelerazione del riempimento rado. Se il valore è espresso in percentuale "
"(ad esempio 100%), verrà calcolato in base all'accelerazione predefinita."
@ -12798,8 +12872,8 @@ msgstr ""
"Experimental feature. Retraction length before cutting off during filament "
"change"
msgid "Z hop when retract"
msgstr "Z hop in fase retrazione"
msgid "Z-hop height"
msgstr ""
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -12832,6 +12906,9 @@ msgstr ""
"di sopra del parametro: \"Z hop lower boundary\" ed è al di sotto di questo "
"valore"
msgid "Z-hop type"
msgstr ""
msgid "Z hop type"
msgstr "Tipo Z Hop"
@ -14172,9 +14249,9 @@ msgid "Idle temperature"
msgstr ""
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
msgid "X-Y hole compensation"
@ -14896,8 +14973,8 @@ msgstr "Impossibile leggere il file fornito perché è vuoto."
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
"Formato file sconosciuto: il file di input deve avere estensione .3mf o .zip."
"amf."
"Formato file sconosciuto: il file di input deve avere estensione .3mf "
"o .zip.amf."
msgid "Canceled"
msgstr "Annullato"
@ -17194,8 +17271,27 @@ msgstr ""
"aumentare in modo appropriato la temperatura del piano riscaldato può "
"ridurre la probabilità di deformazione."
#~ msgid "Cool Plate"
#~ msgstr "Cool Plate"
#~ msgid "ShiftLeft mouse button"
#~ msgstr "MaiuscTasto sinistro del mouse"
#~ msgid "Unselect"
#~ msgstr "Deseleziona"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Ridimensiona"
#~ msgid "Orca Slicer "
#~ msgstr "Orca Slicer "
#~ msgid "Cool plate"
#~ msgstr "Cool plate"
#~ msgid "Lift Z Enforcement"
#~ msgstr "Applicazione dell'ascensore Z"
#~ msgid "Z hop when retract"
#~ msgstr "Z hop in fase retrazione"
#~ msgid "Reverse on odd"
#~ msgstr "Retromarcia su dispari"
@ -17376,9 +17472,10 @@ msgstr ""
#~ "\n"
#~ "\n"
#~ "Per impostazione predefinita, i piccoli bridge interni vengono filtrati e "
#~ "il riempimento solido interno viene stampato direttamente sul riempimento."
#~ "Questo metodo funziona bene nella maggior parte dei casi, velocizzando la "
#~ "stampa senza compromettere troppo la qualità della superficie superiore.\n"
#~ "il riempimento solido interno viene stampato direttamente sul "
#~ "riempimento.Questo metodo funziona bene nella maggior parte dei casi, "
#~ "velocizzando la stampa senza compromettere troppo la qualità della "
#~ "superficie superiore.\n"
#~ "\n"
#~ "Tuttavia, in modelli fortemente inclinati o curvi, soprattutto se si "
#~ "utilizza una densità di riempimento troppo bassa, potrebbe comportare "
@ -18012,10 +18109,10 @@ msgstr ""
#~ "RHEL 7 puoi trovare quelle istruzioni sul wiki."
#~ msgid ""
#~ "Relative extrusion is recommended when using \"label_objects\" option."
#~ "Some extruders work better with this option unchecked (absolute extrusion "
#~ "mode). Wipe tower is only compatible with relative mode. It is always "
#~ "enabled on BambuLab printers. Default is checked"
#~ "Relative extrusion is recommended when using \"label_objects\" "
#~ "option.Some extruders work better with this option unchecked (absolute "
#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is "
#~ "always enabled on BambuLab printers. Default is checked"
#~ msgstr ""
#~ "L'estrusione relativa è consigliata quando si utilizza l'opzione "
#~ "\"label_objects\". Alcuni estrusori funzionano meglio con questa opzione "
@ -18427,11 +18524,11 @@ msgstr ""
#~ msgstr "Livello di debug"
#~ 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 ""
#~ "Imposta livello di debug. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, 5:"
#~ "trace\n"
#~ "Imposta livello di debug. 0:fatal, 1:error, 2:warning, 3:info, 4:debug, "
#~ "5:trace\n"
#, boost-format
#~ msgid "The selected preset: %1% is not found."

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@ -1280,9 +1280,6 @@ msgstr "Center of edge"
msgid "Center of circle"
msgstr "円の中心"
msgid "ShiftLeft mouse button"
msgstr ""
msgid "Select feature"
msgstr "Select feature"
@ -1298,18 +1295,25 @@ msgstr "Restart selection"
msgid "Esc"
msgstr "Esc"
msgid "Unselect"
msgstr "選択解除"
msgid "Cancel a feature until exit"
msgstr ""
msgid "Measure"
msgstr "Measure"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
msgid "Please select at least one object."
msgstr ""
msgid "Edit to scale"
msgstr "Edit to scale"
msgctxt "Verb"
msgid "Scale"
msgstr "スケール"
msgid "Scale all"
msgstr ""
msgid "None"
msgstr "無し"
@ -1323,6 +1327,42 @@ msgstr "長さ"
msgid "Selection"
msgstr "Selection"
msgid " (Moving)"
msgstr ""
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
msgid "Face"
msgstr ""
msgid " (Fixed)"
msgstr ""
msgid "Point"
msgstr ""
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
msgid "Warning:please select Plane's feature."
msgstr ""
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
msgid "Warning:please select two different mesh."
msgstr ""
msgid "Copy to clipboard"
msgstr "コピー"
@ -1338,6 +1378,27 @@ msgstr "Direct distance"
msgid "Distance XYZ"
msgstr "Distance XYZ"
msgid "Parallel"
msgstr ""
msgid "Center coincidence"
msgstr ""
msgid "Featue 1"
msgstr ""
msgid "Reverse rotation"
msgstr ""
msgid "Rotate around center:"
msgstr ""
msgid "Parallel distance:"
msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Ctrl+"
msgstr "Ctrl+"
@ -2718,7 +2779,7 @@ msgstr ""
msgid "About %s"
msgstr "%s について"
msgid "Orca Slicer "
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
@ -3516,9 +3577,9 @@ msgstr "値が小さすぎます、0.5に戻します"
#, c-format, boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
"Current chamber temperature is higher than the material's safe temperature; "
"this may result in material softening and nozzle clogs.The maximum safe "
@ -7589,7 +7650,15 @@ msgstr "ノズル"
msgid "Nozzle temperature when printing"
msgstr "ノズル温度"
msgid "Cool plate"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
msgid "Cool Plate"
msgstr "常温プレート"
msgid ""
@ -7807,7 +7876,7 @@ msgstr ""
msgid "Layer height limits"
msgstr "積層ピッチの制限"
msgid "Lift Z Enforcement"
msgid "Z-Hop"
msgstr ""
msgid "Retraction when switching material"
@ -9400,6 +9469,11 @@ msgstr "1層目"
msgid "Initial layer bed temperature"
msgstr "1層目ベッド温度"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -10879,11 +10953,11 @@ msgid "mm/s² or %"
msgstr "mm/s² or %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
msgid ""
"Acceleration of internal solid infill. If the value is expressed as a "
@ -11992,8 +12066,8 @@ msgstr ""
"Experimental feature. Retraction length before cutting off during filament "
"change"
msgid "Z hop when retract"
msgstr "リトラクト時にZ方向調整"
msgid "Z-hop height"
msgstr ""
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -12023,6 +12097,9 @@ msgstr ""
"If this value is positive, Z hop will only come into effect when Z is above "
"the parameter: \"Z hop lower boundary\" and is below this value"
msgid "Z-hop type"
msgstr ""
msgid "Z hop type"
msgstr ""
@ -13218,9 +13295,9 @@ msgid "Idle temperature"
msgstr ""
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
msgid "X-Y hole compensation"
@ -16034,9 +16111,19 @@ msgstr ""
"ABS, appropriately increasing the heatbed temperature can reduce the "
"probability of warping?"
#~ msgid "Cool Plate"
#~ msgid "Unselect"
#~ msgstr "選択解除"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "スケール"
#~ msgid "Cool plate"
#~ msgstr "常温プレート"
#~ msgid "Z hop when retract"
#~ msgstr "リトラクト時にZ方向調整"
#~ msgid ""
#~ "While printing by Object, the extruder may collide skirt.\n"
#~ "Thus, reset the skirt layer to 1 to avoid that."
@ -16647,8 +16734,8 @@ msgstr ""
#~ 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"

View file

@ -7,10 +7,10 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"PO-Revision-Date: 2024-11-06 21:10+0900\n"
"Last-Translator: ElectricalBoy <15651807+ElectricalBoy@users.noreply.github."
"com>\n"
"Last-Translator: ElectricalBoy "
"<15651807+ElectricalBoy@users.noreply.github.com>\n"
"Language-Team: crwusiz@gmail.com\n"
"Language: ko_KR\n"
"MIME-Version: 1.0\n"
@ -1282,9 +1282,6 @@ msgstr "가장자리 중심"
msgid "Center of circle"
msgstr "원의 중심"
msgid "ShiftLeft mouse button"
msgstr "Shift + 왼쪽 마우스 버튼"
msgid "Select feature"
msgstr "기능 선택"
@ -1300,18 +1297,25 @@ msgstr "다시 선택"
msgid "Esc"
msgstr "Esc"
msgid "Unselect"
msgstr "선택 취소"
msgid "Cancel a feature until exit"
msgstr ""
msgid "Measure"
msgstr "측정"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
msgid "Please select at least one object."
msgstr ""
msgid "Edit to scale"
msgstr "규모에 맞게 편집"
msgctxt "Verb"
msgid "Scale"
msgstr "규모"
msgid "Scale all"
msgstr ""
msgid "None"
msgstr "없음"
@ -1325,6 +1329,42 @@ msgstr "길이"
msgid "Selection"
msgstr "선택"
msgid " (Moving)"
msgstr ""
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
msgid "Face"
msgstr ""
msgid " (Fixed)"
msgstr ""
msgid "Point"
msgstr ""
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
msgid "Warning:please select Plane's feature."
msgstr ""
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
msgid "Warning:please select two different mesh."
msgstr ""
msgid "Copy to clipboard"
msgstr "클립보드로 복사"
@ -1340,6 +1380,27 @@ msgstr "직접적인 거리"
msgid "Distance XYZ"
msgstr "XYZ 거리"
msgid "Parallel"
msgstr ""
msgid "Center coincidence"
msgstr ""
msgid "Featue 1"
msgstr ""
msgid "Reverse rotation"
msgstr ""
msgid "Rotate around center:"
msgstr ""
msgid "Parallel distance:"
msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Ctrl+"
msgstr "Ctrl+"
@ -2730,8 +2791,8 @@ msgstr ""
msgid "About %s"
msgstr "%s 정보"
msgid "Orca Slicer "
msgstr "Orca Slicer "
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
msgstr ""
@ -3532,9 +3593,9 @@ msgstr ""
#, c-format, boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
"현재 챔버 온도가 재료의 안전 온도보다 높으므로 재료가 부드러워지고 막힐 수 있"
"습니다. 재료의 최대 안전 온도는 %d입니다"
@ -5122,8 +5183,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코드 데이터가 없습니다. OrcaSlicer에서 슬라이스하고 새 ."
"gcode.3mf 파일을 내보내십시오."
".gcode.3mf 파일에는 G코드 데이터가 없습니다. OrcaSlicer에서 슬라이스하고 "
"새 .gcode.3mf 파일을 내보내십시오."
#, c-format, boost-format
msgid "File '%s' was lost! Please download it again."
@ -7649,7 +7710,15 @@ msgstr "노즐"
msgid "Nozzle temperature when printing"
msgstr "출력 시 노즐 온도"
msgid "Cool plate"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
msgid "Cool Plate"
msgstr "쿨 플레이트"
msgid ""
@ -7873,8 +7942,8 @@ msgstr ""
msgid "Layer height limits"
msgstr "레이어 높이 한도"
msgid "Lift Z Enforcement"
msgstr "강제 Z 올리기"
msgid "Z-Hop"
msgstr ""
msgid "Retraction when switching material"
msgstr "재료 전환 시 후퇴"
@ -9399,9 +9468,9 @@ msgid ""
msgstr ""
"Orca Slicer은 G코드 파일을 프린터 호스트에 업로드할 수 있습니다. 이 필드에는 "
"프린터 호스트 인스턴스의 호스트 이름, IP 주소 또는 URL이 포함되어야 합니다. "
"기본 인증이 활성화된 HAProxy 뒤의 출력 호스트는 https://username:"
"password@your-octopi-address/ 형식의 URL에 사용자 이름과 암호를 입력하여 액세"
"스할 수 있습니다"
"기본 인증이 활성화된 HAProxy 뒤의 출력 호스트는 https://"
"username:password@your-octopi-address/ 형식의 URL에 사용자 이름과 암호를 입력"
"하여 액세스할 수 있습니다"
msgid "Device UI"
msgstr "장치 UI"
@ -9533,6 +9602,11 @@ msgstr "초기 레이어"
msgid "Initial layer bed temperature"
msgstr "초기 레이어 베드 온도"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -11324,8 +11398,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%)로 표시되면 기본 가속도를 기준으로 "
"계산됩니다."
@ -12579,8 +12653,8 @@ msgid ""
"change"
msgstr "실험적 기능. 필라멘트 교체 시 절단 전 후퇴 길이"
msgid "Z hop when retract"
msgstr "후퇴 시 Z 올리기"
msgid "Z-hop height"
msgstr ""
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -12611,6 +12685,9 @@ msgstr ""
"이 값이 양수인 경우 Z 올리기는 Z가 매개변수 \"Z 올리기 하한 경계\"보다 높고 "
"이 값보다 낮을 때만 적용됩니다"
msgid "Z-hop type"
msgstr ""
msgid "Z hop type"
msgstr "Z 올리기 유형"
@ -13934,9 +14011,9 @@ msgid "Idle temperature"
msgstr "공회전 온도"
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
"도구가 현재 다중 도구 설정에서 사용되지 않을 때의 노즐 온도. 이는 출력 설정에"
"서 '얼룩 방지'가 활성화된 경우에만 사용됩니다. 비활성화하려면 0으로 설정합니"
@ -16844,6 +16921,28 @@ msgstr ""
"ABS와 같이 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 "
"높이면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?"
#~ msgid "ShiftLeft mouse button"
#~ msgstr "Shift + 왼쪽 마우스 버튼"
#~ msgid "Unselect"
#~ msgstr "선택 취소"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "규모"
#~ msgid "Orca Slicer "
#~ msgstr "Orca Slicer "
#~ msgid "Cool plate"
#~ msgstr "쿨 플레이트"
#~ msgid "Lift Z Enforcement"
#~ msgstr "강제 Z 올리기"
#~ msgid "Z hop when retract"
#~ msgstr "후퇴 시 Z 올리기"
#, no-c-format, no-boost-format
#~ msgid ""
#~ "Number of mm the overhang need to be for the reversal to be considered "
@ -16854,9 +16953,6 @@ msgstr ""
#~ "의 %일 수 있습니다.\n"
#~ "값 0은 관계없이 모든 짝수 레이어에서 반전을 활성화합니다."
#~ msgid "Cool Plate"
#~ msgstr "쿨 플레이트"
#~ msgid "Reverse on odd"
#~ msgstr "홀수에 반전"
@ -17657,10 +17753,10 @@ msgstr ""
#~ msgstr "위키"
#~ msgid ""
#~ "Relative extrusion is recommended when using \"label_objects\" option."
#~ "Some extruders work better with this option unchecked (absolute extrusion "
#~ "mode). Wipe tower is only compatible with relative mode. It is always "
#~ "enabled on BambuLab printers. Default is checked"
#~ "Relative extrusion is recommended when using \"label_objects\" "
#~ "option.Some extruders work better with this option unchecked (absolute "
#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is "
#~ "always enabled on BambuLab printers. Default is checked"
#~ msgstr ""
#~ "상대적 압출은 \"label_objects\" 옵션(기타; 개체 이름표)을 사용할 때 권장됩"
#~ "니다. 일부 압출기는 이 옵션을 해제하면 더 잘 작동합니다(절대 압출 모드). "
@ -18051,8 +18147,8 @@ msgstr ""
#~ 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:치명적, 1:오류, 2:경고, 3:정보, 4:디버"
#~ "그, 5:추적\n"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: \n"
"Language-Team: \n"
@ -1274,9 +1274,6 @@ msgstr "Midden van rand"
msgid "Center of circle"
msgstr "Middelpunt van cirkel"
msgid "ShiftLeft mouse button"
msgstr ""
msgid "Select feature"
msgstr "Functie selecteren"
@ -1292,18 +1289,25 @@ msgstr "Selectie herstarten"
msgid "Esc"
msgstr "Esc"
msgid "Unselect"
msgid "Cancel a feature until exit"
msgstr ""
msgid "Measure"
msgstr "Maatregel"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
msgid "Please select at least one object."
msgstr ""
msgid "Edit to scale"
msgstr "Op schaal bewerken"
msgctxt "Verb"
msgid "Scale"
msgstr "Schalen"
msgid "Scale all"
msgstr ""
msgid "None"
msgstr "Geen"
@ -1317,6 +1321,42 @@ msgstr "Lengte"
msgid "Selection"
msgstr "Selectie"
msgid " (Moving)"
msgstr ""
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
msgid "Face"
msgstr ""
msgid " (Fixed)"
msgstr ""
msgid "Point"
msgstr ""
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
msgid "Warning:please select Plane's feature."
msgstr ""
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
msgid "Warning:please select two different mesh."
msgstr ""
msgid "Copy to clipboard"
msgstr "Kopieer naar klembord"
@ -1332,6 +1372,27 @@ msgstr "Direct distance"
msgid "Distance XYZ"
msgstr "Distance XYZ"
msgid "Parallel"
msgstr ""
msgid "Center coincidence"
msgstr ""
msgid "Featue 1"
msgstr ""
msgid "Reverse rotation"
msgstr ""
msgid "Rotate around center:"
msgstr ""
msgid "Parallel distance:"
msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Ctrl+"
msgstr "Ctrl+"
@ -2760,7 +2821,7 @@ msgstr ""
msgid "About %s"
msgstr "Over %s"
msgid "Orca Slicer "
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
@ -3597,9 +3658,9 @@ msgstr ""
#, c-format, boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
"De huidige kamertemperatuur is hoger dan de veilige temperatuur van het "
"materiaal; dit kan leiden tot verzachting van het materiaal en verstoppingen "
@ -7836,8 +7897,16 @@ msgstr "Mondstuk"
msgid "Nozzle temperature when printing"
msgstr "Mondstuk temperatuur tijdens printen"
msgid "Cool plate"
msgstr "Koudeplaat"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
msgid "Cool Plate"
msgstr "Cool (koud) printbed"
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
@ -8059,7 +8128,7 @@ msgstr ""
msgid "Layer height limits"
msgstr "Limieten voor laaghoogte"
msgid "Lift Z Enforcement"
msgid "Z-Hop"
msgstr ""
msgid "Retraction when switching material"
@ -9727,6 +9796,11 @@ msgstr "Eerste laag"
msgid "Initial layer bed temperature"
msgstr "Printbed temperatuur voor de eerste laag"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -11253,8 +11327,8 @@ msgid "mm/s² or %"
msgstr "mm/s² or %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Versnelling van de schaarse invulling. Als de waarde wordt uitgedrukt als "
"een percentage (bijvoorbeeld 100%), wordt deze berekend op basis van de "
@ -12420,8 +12494,8 @@ msgstr ""
"Experimental feature. Retraction length before cutting off during filament "
"change"
msgid "Z hop when retract"
msgstr "Z hop tijdens terugtrekken (retraction)"
msgid "Z-hop height"
msgstr ""
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -12453,6 +12527,9 @@ msgstr ""
"Als deze waarde positief is, treedt Z hop alleen in werking als Z boven de "
"parameter ligt: \"Z hop ondergrens\" en onder deze waarde ligt"
msgid "Z-hop type"
msgstr ""
msgid "Z hop type"
msgstr ""
@ -13683,9 +13760,9 @@ msgid "Idle temperature"
msgstr ""
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
msgid "X-Y hole compensation"
@ -16600,8 +16677,15 @@ msgstr ""
"kromtrekken, zoals ABS, een juiste verhoging van de temperatuur van het "
"warmtebed de kans op kromtrekken kan verkleinen?"
#~ msgid "Cool Plate"
#~ msgstr "Cool (koud) printbed"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Schalen"
#~ msgid "Cool plate"
#~ msgstr "Koudeplaat"
#~ msgid "Z hop when retract"
#~ msgstr "Z hop tijdens terugtrekken (retraction)"
#~ msgid "Reverse on odd"
#~ msgstr "Overhang omkering"
@ -17263,11 +17347,11 @@ msgstr ""
#~ msgstr "Debuggen level"
#~ 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 ""
#~ "Sets debug logging level. 0:fataal, 1:error, 2:waarschuwing, 3:info, 4:"
#~ "debug, 5:trace\n"
#~ "Sets debug logging level. 0:fataal, 1:error, 2:waarschuwing, 3:info, "
#~ "4:debug, 5:trace\n"
#~ msgid ""
#~ "3D Scene Operations\n"

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: OrcaSlicer 2.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"PO-Revision-Date: \n"
"Last-Translator: Krzysztof Morga <tlumaczeniebs@gmail.com>\n"
"Language-Team: \n"
@ -1294,9 +1294,6 @@ msgstr "Środek krawędzi"
msgid "Center of circle"
msgstr "Środek okręgu"
msgid "ShiftLeft mouse button"
msgstr "Shift + Lewy przycisk myszy"
msgid "Select feature"
msgstr "Wybierz funkcję"
@ -1312,18 +1309,25 @@ msgstr "Restartuj wybór"
msgid "Esc"
msgstr "Esc"
msgid "Unselect"
msgstr "Odznacz"
msgid "Cancel a feature until exit"
msgstr ""
msgid "Measure"
msgstr "Zmierz"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
msgid "Please select at least one object."
msgstr ""
msgid "Edit to scale"
msgstr "Edytuj do skali"
msgctxt "Verb"
msgid "Scale"
msgstr "Skala"
msgid "Scale all"
msgstr ""
msgid "None"
msgstr "Brak"
@ -1337,6 +1341,42 @@ msgstr "Długość"
msgid "Selection"
msgstr "Wybór"
msgid " (Moving)"
msgstr ""
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
msgid "Face"
msgstr ""
msgid " (Fixed)"
msgstr ""
msgid "Point"
msgstr ""
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
msgid "Warning:please select Plane's feature."
msgstr ""
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
msgid "Warning:please select two different mesh."
msgstr ""
msgid "Copy to clipboard"
msgstr "Kopiuj do schowka"
@ -1352,6 +1392,27 @@ msgstr "Bezpośrednia odległość"
msgid "Distance XYZ"
msgstr "Odległość XYZ"
msgid "Parallel"
msgstr ""
msgid "Center coincidence"
msgstr ""
msgid "Featue 1"
msgstr ""
msgid "Reverse rotation"
msgstr ""
msgid "Rotate around center:"
msgstr ""
msgid "Parallel distance:"
msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Ctrl+"
msgstr "Ctrl+"
@ -2785,8 +2846,8 @@ msgstr ""
msgid "About %s"
msgstr "O %s"
msgid "Orca Slicer "
msgstr "Orca Slicer "
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
msgstr ""
@ -3628,9 +3689,9 @@ msgstr ""
#, c-format, boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
"Obecna temperatura komory jest wyższa niż bezpieczna temperatura dla "
"filamentu, co może prowadzić do jego mięknięcia i zatykania. Maksymalna "
@ -7878,8 +7939,16 @@ msgstr "Dysza"
msgid "Nozzle temperature when printing"
msgstr "Temperatura dyszy podczas druku"
msgid "Cool plate"
msgstr "Cool plate / PLA Plate"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
msgid "Cool Plate"
msgstr "Cool Plate / PLA Plate"
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
@ -8107,8 +8176,8 @@ msgstr ""
msgid "Layer height limits"
msgstr "Ograniczenia wysokości warstwy"
msgid "Lift Z Enforcement"
msgstr "Wymuszenie podniesienia osi Z"
msgid "Z-Hop"
msgstr ""
msgid "Retraction when switching material"
msgstr "Retrakcja podczas zmiany filamentu"
@ -9692,8 +9761,8 @@ msgstr ""
"Orca Slicer może przesyłać pliki G-code na hosta drukarki. To pole powinno "
"zawierać nazwę hosta, adres IP lub URL hosta drukarki. Host drukowania za "
"HAProxy z włączoną autoryzacją podstawową można uzyskać, wpisując nazwę "
"użytkownika i hasło w URL w następującym formacie: https://username:"
"password@your-octopi-address/"
"użytkownika i hasło w URL w następującym formacie: https://"
"username:password@your-octopi-address/"
msgid "Device UI"
msgstr "UI urządzenia"
@ -9833,6 +9902,11 @@ msgstr "Pierwsza warstwa"
msgid "Initial layer bed temperature"
msgstr "Temperatura stołu pierwszej warstwy"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -11748,8 +11822,8 @@ msgid "mm/s² or %"
msgstr "mm/s² lub %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Przyspieszenie na rzadkim wypełnieniu. Jeśli wartość jest wyrażona w "
"procentach (np. 100%), będzie obliczana na podstawie domyślnego "
@ -13090,8 +13164,8 @@ msgstr ""
"Funkcja eksperymentalna. Długość retrakcji przed odcięciem podczas zmiany "
"filamentu"
msgid "Z hop when retract"
msgstr "Z-hop podczas retrakcji"
msgid "Z-hop height"
msgstr ""
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -13125,6 +13199,9 @@ msgstr ""
"określonej tutaj wysokości. Dzięki temu możesz wyłączyć podnoszenie osi Z "
"podczas drukowania pierwszych warstw (na początku drukowania)."
msgid "Z-hop type"
msgstr ""
msgid "Z hop type"
msgstr "Typ Z-hop"
@ -14534,9 +14611,9 @@ msgid "Idle temperature"
msgstr "Temperatura w bezczynności"
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
"Temperatura dyszy, gdy narzędzie nie jest aktualnie używane w konfiguracjach "
"wielonarzędziowych. Jest to używane tylko wtedy, gdy \"Zapobieganie "
@ -15256,8 +15333,8 @@ msgstr "Podpory: rozprzestrzeniaj gałęzie na warstwie %d"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .stl, .obj, ."
"amf(.xml)."
"Nieznany format pliku. Plik wejściowy musi mieć "
"rozszerzenie .stl, .obj, .amf(.xml)."
msgid "Loading of a model file failed."
msgstr "Ładowanie pliku modelu nie powiodło się."
@ -15267,8 +15344,8 @@ msgstr "Dostarczony plik nie mógł być odczytany, ponieważ jest pusty"
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf lub .zip."
"amf."
"Nieznany format pliku. Plik wejściowy musi mieć rozszerzenie .3mf "
"lub .zip.amf."
msgid "Canceled"
msgstr "Anulowano"
@ -17581,6 +17658,28 @@ msgstr ""
"takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może "
"zmniejszyć prawdopodobieństwo odkształceń."
#~ msgid "ShiftLeft mouse button"
#~ msgstr "Shift + Lewy przycisk myszy"
#~ msgid "Unselect"
#~ msgstr "Odznacz"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Skala"
#~ msgid "Orca Slicer "
#~ msgstr "Orca Slicer "
#~ msgid "Cool plate"
#~ msgstr "Cool plate / PLA Plate"
#~ msgid "Lift Z Enforcement"
#~ msgstr "Wymuszenie podniesienia osi Z"
#~ msgid "Z hop when retract"
#~ msgstr "Z-hop podczas retrakcji"
#, no-c-format, no-boost-format
#~ msgid ""
#~ "Number of mm the overhang need to be for the reversal to be considered "
@ -17591,9 +17690,6 @@ msgstr ""
#~ "za użyteczne. Może być procentem szerokości obwodu.\n"
#~ "Wartość 0 aktywuje odwrócenie na każdej parzystej warstwie."
#~ msgid "Cool Plate"
#~ msgstr "Cool Plate / PLA Plate"
#~ msgid "Reverse on odd"
#~ msgstr "Przeciwny kierunek na nieparzystych warstwach"
@ -19839,10 +19935,10 @@ msgstr ""
#~ msgstr "Pliki certyfikatów (.crt, .pem)|.crt;.pem|Wszystkie pliki|."
#~ msgid ""
#~ "Relative extrusion is recommended when using \"label_objects\" option."
#~ "Some extruders work better with this option unchecked (absolute extrusion "
#~ "mode). Wipe tower is only compatible with relative mode. It is always "
#~ "enabled on BambuLab printers. Default is checked"
#~ "Relative extrusion is recommended when using \"label_objects\" "
#~ "option.Some extruders work better with this option unchecked (absolute "
#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is "
#~ "always enabled on BambuLab printers. Default is checked"
#~ msgstr ""
#~ "Przy użyciu opcji \"label_objects\" zaleca się ekstruzję względną. "
#~ "Niektóre ekstrudery działają lepiej, gdy ta opcja jest odznaczona (tryb "
@ -20158,11 +20254,11 @@ msgstr ""
#~ msgstr "Poziom debugowania"
#~ 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 ""
#~ "Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, 3:"
#~ "info, 4:debug, 5:trace\n"
#~ "Ustawia poziom logowania debugowania. 0:fatal, 1:error, 2:warning, "
#~ "3:info, 4:debug, 5:trace\n"
#~ msgid "The selected preset: %1% is not found."
#~ msgstr "Wybrana przędło: %1% nie została znaleziona."

View file

@ -2,7 +2,7 @@
msgid ""
msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"PO-Revision-Date: 2024-06-01 21:51-0300\n"
"Last-Translator: \n"
"Language-Team: Portuguese, Brazilian\n"
@ -1297,9 +1297,6 @@ msgstr "Centro da borda"
msgid "Center of circle"
msgstr "Centro do círculo"
msgid "ShiftLeft mouse button"
msgstr "Botão do mouse ShiftLeft"
msgid "Select feature"
msgstr "Selecionar recurso"
@ -1315,18 +1312,25 @@ msgstr "Reiniciar seleção"
msgid "Esc"
msgstr "Esc"
msgid "Unselect"
msgstr "Desmarcar"
msgid "Cancel a feature until exit"
msgstr ""
msgid "Measure"
msgstr "Medir"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
msgid "Please select at least one object."
msgstr ""
msgid "Edit to scale"
msgstr "Editar para escala"
msgctxt "Verb"
msgid "Scale"
msgstr "Escala"
msgid "Scale all"
msgstr ""
msgid "None"
msgstr "Nenhum"
@ -1340,6 +1344,42 @@ msgstr "Comprimento"
msgid "Selection"
msgstr "Seleção"
msgid " (Moving)"
msgstr ""
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
msgid "Face"
msgstr ""
msgid " (Fixed)"
msgstr ""
msgid "Point"
msgstr ""
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
msgid "Warning:please select Plane's feature."
msgstr ""
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
msgid "Warning:please select two different mesh."
msgstr ""
msgid "Copy to clipboard"
msgstr "Copiar para a área de transferência"
@ -1355,6 +1395,27 @@ msgstr "Distância direta"
msgid "Distance XYZ"
msgstr "Distância XYZ"
msgid "Parallel"
msgstr ""
msgid "Center coincidence"
msgstr ""
msgid "Featue 1"
msgstr ""
msgid "Reverse rotation"
msgstr ""
msgid "Rotate around center:"
msgstr ""
msgid "Parallel distance:"
msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Ctrl+"
msgstr "Ctrl+"
@ -2785,8 +2846,8 @@ msgstr ""
msgid "About %s"
msgstr "Sobre %s"
msgid "Orca Slicer "
msgstr "Orca Slicer "
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
msgstr "OrcaSlicer é baseado no BambuStudio, PrusaSlicer e SuperSlicer."
@ -3625,9 +3686,9 @@ msgstr ""
#, c-format, boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
"A temperatura da câmara atual está mais alta do que a temperatura segura do "
"material, pode resultar em amolecimento e entupimento do material. A "
@ -6826,8 +6887,8 @@ msgstr "Associar arquivos .step/.stp ao OrcaSlicer"
msgid "If enabled, sets OrcaSlicer as default application to open .step files"
msgstr ""
"Se ativado, define OrcaSlicer como aplicativo padrão para abrir arquivos ."
"step"
"Se ativado, define OrcaSlicer como aplicativo padrão para abrir "
"arquivos .step"
msgid "Associate web links to OrcaSlicer"
msgstr "Associar links da web ao OrcaSlicer"
@ -7876,8 +7937,16 @@ msgstr "Bico"
msgid "Nozzle temperature when printing"
msgstr "Temperatura do bico ao imprimir"
msgid "Cool plate"
msgstr "Mesa fria"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
msgid "Cool Plate"
msgstr "Mesa Fria"
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
@ -8099,8 +8168,8 @@ msgstr ""
msgid "Layer height limits"
msgstr "Limites de altura da camada"
msgid "Lift Z Enforcement"
msgstr "Aplicação do Z hop"
msgid "Z-Hop"
msgstr ""
msgid "Retraction when switching material"
msgstr "Retração ao trocar material"
@ -9787,6 +9856,11 @@ msgstr "Primeira camada"
msgid "Initial layer bed temperature"
msgstr "Temperatura da mesa da primeira camada"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -11470,8 +11544,8 @@ msgid "mm/s² or %"
msgstr "mm/s² ou %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Aceleração do preenchimento não sólido. Se o valor for expresso como uma "
"porcentagem (por exemplo, 100%), será calculado com base na aceleração "
@ -12771,8 +12845,8 @@ msgstr ""
"Funcionalidade experimental. Comprimento de retração antes de cortar durante "
"a mudança de filamento"
msgid "Z hop when retract"
msgstr "Z hop ao retrair"
msgid "Z-hop height"
msgstr ""
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -12803,6 +12877,9 @@ msgstr ""
"Se este valor for positivo, o Z hop só entrará em vigor quando Z estiver "
"acima do parâmetro: \"Limite inferior do Z hop\" e abaixo deste valor"
msgid "Z-hop type"
msgstr ""
msgid "Z hop type"
msgstr "Tipo de Z hop"
@ -14147,9 +14224,9 @@ msgid "Idle temperature"
msgstr ""
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
msgid "X-Y hole compensation"
@ -14859,8 +14936,8 @@ msgstr "Suporte: propagar ramificações na camada %d"
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
"Formato de arquivo desconhecido. O arquivo de entrada deve ter extensão ."
"stl, .obj, .amf(.xml)."
"Formato de arquivo desconhecido. O arquivo de entrada deve ter "
"extensão .stl, .obj, .amf(.xml)."
msgid "Loading of a model file failed."
msgstr "Falha ao carregar um arquivo de modelo."
@ -17160,8 +17237,27 @@ msgstr ""
"aumentar adequadamente a temperatura da mesa aquecida pode reduzir a "
"probabilidade de empenamento?"
#~ msgid "Cool Plate"
#~ msgstr "Mesa Fria"
#~ msgid "ShiftLeft mouse button"
#~ msgstr "Botão do mouse ShiftLeft"
#~ msgid "Unselect"
#~ msgstr "Desmarcar"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Escala"
#~ msgid "Orca Slicer "
#~ msgstr "Orca Slicer "
#~ msgid "Cool plate"
#~ msgstr "Mesa fria"
#~ msgid "Lift Z Enforcement"
#~ msgstr "Aplicação do Z hop"
#~ msgid "Z hop when retract"
#~ msgstr "Z hop ao retrair"
#~ msgid "Reverse on odd"
#~ msgstr "Inverter em ímpares"

View file

@ -7,7 +7,7 @@ msgid ""
msgstr ""
"Project-Id-Version: OrcaSlicer V2.2.0 Official Release\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"PO-Revision-Date: 2024-09-25 22:36+0700\n"
"Last-Translator: \n"
"Language-Team: Andylg <andylg@yandex.ru>\n"
@ -1303,9 +1303,6 @@ msgstr "Центр ребра"
msgid "Center of circle"
msgstr "Центр окружности"
msgid "ShiftLeft mouse button"
msgstr "Левая кнопка мыши"
msgid "Select feature"
msgstr "Выбрать элемент"
@ -1322,18 +1319,25 @@ msgstr "Выбрать заново"
msgid "Esc"
msgstr "Esc"
msgid "Unselect"
msgstr "Отменить выбор"
msgid "Cancel a feature until exit"
msgstr ""
msgid "Measure"
msgstr "Измерения"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
msgid "Please select at least one object."
msgstr ""
msgid "Edit to scale"
msgstr "Редактировать масштаб"
msgctxt "Verb"
msgid "Scale"
msgstr "Масштаб"
msgid "Scale all"
msgstr ""
msgid "None"
msgstr "Нет"
@ -1347,6 +1351,42 @@ msgstr "Длина"
msgid "Selection"
msgstr "Выделение"
msgid " (Moving)"
msgstr ""
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
msgid "Face"
msgstr ""
msgid " (Fixed)"
msgstr ""
msgid "Point"
msgstr ""
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
msgid "Warning:please select Plane's feature."
msgstr ""
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
msgid "Warning:please select two different mesh."
msgstr ""
msgid "Copy to clipboard"
msgstr "Скопировать в буфер обмена"
@ -1362,6 +1402,27 @@ msgstr "Длина прямой"
msgid "Distance XYZ"
msgstr "Расстояние XYZ"
msgid "Parallel"
msgstr ""
msgid "Center coincidence"
msgstr ""
msgid "Featue 1"
msgstr ""
msgid "Reverse rotation"
msgstr ""
msgid "Rotate around center:"
msgstr ""
msgid "Parallel distance:"
msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Ctrl+"
msgstr "Ctrl+"
@ -2807,8 +2868,8 @@ msgstr ""
msgid "About %s"
msgstr "О %s"
msgid "Orca Slicer "
msgstr "Orca Slicer "
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
msgstr "OrcaSlicer основан на проектах BambuStudio, PrusaSlicer и SuperSlicer."
@ -3662,9 +3723,9 @@ msgstr ""
#, c-format, boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
"Текущая температура внутри термокамеры превышает безопасную температуру для "
"этого материала, что может привести к размягчению материала или засорению "
@ -6123,9 +6184,9 @@ msgid ""
"nozzle hardness of the printer. Please replace the hardened nozzle or "
"filament, otherwise, the nozzle will be attrited or damaged."
msgstr ""
"Твердость сопла, установленного по умолчанию, недостаточна для печати "
"данной пластиковой нитью. Замените сопло на закалённое или смените "
"пластиковую нить. В противном случае сопло будет изношено или повреждено."
"Твердость сопла, установленного по умолчанию, недостаточна для печати данной "
"пластиковой нитью. Замените сопло на закалённое или смените пластиковую "
"нить. В противном случае сопло будет изношено или повреждено."
msgid ""
"Enabling traditional timelapse photography may cause surface imperfections. "
@ -7973,8 +8034,16 @@ msgstr "Сопло"
msgid "Nozzle temperature when printing"
msgstr "Температура сопла при печати"
msgid "Cool plate"
msgstr "Не нагреваемая пластина"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
msgid "Cool Plate"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
@ -8211,8 +8280,8 @@ msgstr ""
msgid "Layer height limits"
msgstr "Ограничение высоты слоя"
msgid "Lift Z Enforcement"
msgstr "Принудительный подъем оси Z"
msgid "Z-Hop"
msgstr ""
msgid "Retraction when switching material"
msgstr "Откат при смене материала"
@ -9953,6 +10022,11 @@ msgstr "Первый слой"
msgid "Initial layer bed temperature"
msgstr "Температура стола для первого слоя"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -10137,6 +10211,7 @@ msgstr ""
msgid "Cooling overhang threshold"
msgstr "Порог включения обдува на нависаниях"
#, fuzzy, c-format
msgid ""
"Force cooling fan to be specific speed when overhang degree of printed part "
"exceeds this value. Expressed as percentage which indicates how much width "
@ -10412,8 +10487,7 @@ msgstr ""
"При нуле разворот будет на каждом чётном слое, независимо от величина "
"свеса.\n"
"Если «Определять нависающие периметры» не включено, этот параметр "
"игнорируется, и разворот происходит на каждом чётном слое без "
"исключений."
"игнорируется, и разворот происходит на каждом чётном слое без исключений."
msgid "Classic mode"
msgstr "Классический режим"
@ -11097,9 +11171,8 @@ msgstr ""
"максимальные точки. OrcaSlicer следит за тем, чтобы значения "
"adaptive_bed_mesh_min/adaptive_bed_mesh_max не превышают эти минимальные/"
"максимальные значения. Эту информацию можно получить у производителя "
"принтера. По умолчанию установлено значение (99999, 99999), которое "
"означает отсутствие ограничений, что позволяет проводить зондирование по "
"всему столу."
"принтера. По умолчанию установлено значение (99999, 99999), которое означает "
"отсутствие ограничений, что позволяет проводить зондирование по всему столу."
msgid "Probe point distance"
msgstr "Расстояние между точками зондирования"
@ -11885,8 +11958,8 @@ msgid "mm/s² or %"
msgstr "мм/с² или %"
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 ""
"Ускорение на разреженном заполнении. Если задано в процентах, то значение "
"вычисляться относительно ускорения по умолчанию."
@ -13256,8 +13329,8 @@ msgstr ""
"Экспериментальная функция. Длина втягивания перед отрезанием пластиковой "
"нити при её смене."
msgid "Z hop when retract"
msgstr "Подъём оси Z при откате"
msgid "Z-hop height"
msgstr ""
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -13291,6 +13364,9 @@ msgstr ""
"(после) заданной здесь высоты (высота считается от стола). Таким образом вы "
"можете отключить подъём оси Z при печати на первых слоях (в начале печати)."
msgid "Z-hop type"
msgstr ""
msgid "Z hop type"
msgstr "Тип подъёма оси Z"
@ -14738,9 +14814,9 @@ msgid "Idle temperature"
msgstr "Температура ожидания"
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
"Температура сопла в момент, когда для печати используется другое сопло. Этот "
"параметр используется только в том случае, если в настройках печати активна "
@ -15487,8 +15563,8 @@ msgstr "Предоставленный файл не может быть про
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
"Неизвестный формат файла. Входной файл должен иметь расширение *.3mf или *."
"zip.amf."
"Неизвестный формат файла. Входной файл должен иметь расширение *.3mf или "
"*.zip.amf."
msgid "Canceled"
msgstr "Отменено"
@ -17435,9 +17511,9 @@ msgid ""
"overhangs?"
msgstr ""
"Порядок печати периметров «Сэндвич»\n"
"Знаете ли вы, что можно использовать порядок печати периметров «Сэндвич» (т."
"е. внутренний-внешний-внутренний) для повышения точности и согласованности "
"слоёв, если у вашей модели не очень крутые нависания?"
"Знаете ли вы, что можно использовать порядок печати периметров «Сэндвич» "
"(т.е. внутренний-внешний-внутренний) для повышения точности и "
"согласованности слоёв, если у вашей модели не очень крутые нависания?"
#: resources/data/hints.ini: [hint:Chamber temperature]
msgid ""
@ -17807,6 +17883,28 @@ msgstr ""
"ABS, повышение температуры подогреваемого стола может снизить эту "
"вероятность?"
#~ msgid "ShiftLeft mouse button"
#~ msgstr "Левая кнопка мыши"
#~ msgid "Unselect"
#~ msgstr "Отменить выбор"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Масштаб"
#~ msgid "Orca Slicer "
#~ msgstr "Orca Slicer "
#~ msgid "Cool plate"
#~ msgstr "Не нагреваемая пластина"
#~ msgid "Lift Z Enforcement"
#~ msgstr "Принудительный подъем оси Z"
#~ msgid "Z hop when retract"
#~ msgstr "Подъём оси Z при откате"
# ??? Если установлено 0, то изменение направления будет происходить на каждом чётном слое, независимо от величина (длины ) свеса.
#, no-c-format, no-boost-format
#~ msgid ""

View file

@ -3,7 +3,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Orca Slicer\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"Language: sv\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -1259,9 +1259,6 @@ msgstr "Center of edge"
msgid "Center of circle"
msgstr "Center of circle"
msgid "ShiftLeft mouse button"
msgstr ""
msgid "Select feature"
msgstr "Select feature"
@ -1277,18 +1274,25 @@ msgstr "Restart selection"
msgid "Esc"
msgstr "Esc"
msgid "Unselect"
msgid "Cancel a feature until exit"
msgstr ""
msgid "Measure"
msgstr "Measure"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
msgid "Please select at least one object."
msgstr ""
msgid "Edit to scale"
msgstr "Edit to scale"
msgctxt "Verb"
msgid "Scale"
msgstr "Skala"
msgid "Scale all"
msgstr ""
msgid "None"
msgstr "Ingen"
@ -1302,6 +1306,42 @@ msgstr "Längd"
msgid "Selection"
msgstr "Selection"
msgid " (Moving)"
msgstr ""
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
msgid "Face"
msgstr ""
msgid " (Fixed)"
msgstr ""
msgid "Point"
msgstr ""
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
msgid "Warning:please select Plane's feature."
msgstr ""
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
msgid "Warning:please select two different mesh."
msgstr ""
msgid "Copy to clipboard"
msgstr "Kopiera till urklipp"
@ -1317,6 +1357,27 @@ msgstr "Direct distance"
msgid "Distance XYZ"
msgstr "Distance XYZ"
msgid "Parallel"
msgstr ""
msgid "Center coincidence"
msgstr ""
msgid "Featue 1"
msgstr ""
msgid "Reverse rotation"
msgstr ""
msgid "Rotate around center:"
msgstr ""
msgid "Parallel distance:"
msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Ctrl+"
msgstr "Ctrl +"
@ -2717,7 +2778,7 @@ msgstr ""
msgid "About %s"
msgstr "Om %s"
msgid "Orca Slicer "
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
@ -3533,9 +3594,9 @@ msgstr ""
#, c-format, boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
"Current chamber temperature is higher than the material's safe temperature; "
"this may result in material softening and nozzle clogs.The maximum safe "
@ -7676,8 +7737,16 @@ msgstr "Nozzel"
msgid "Nozzle temperature when printing"
msgstr "Nozzel temperatur vid utskrift"
msgid "Cool plate"
msgstr "Kall platta"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
msgid "Cool Plate"
msgstr "Cool Plate"
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
@ -7748,9 +7817,10 @@ msgid ""
"maximum fan speed according to layer printing time"
msgstr ""
"Del kylfläktens hastigheten kommer att börja gå med min hastighet när den "
"beräknade lagringstiden inte är längre än lagringstiden i inställningarna."
"När lager tiden är kortare än gräns värdet, ställer fläkthastigheten sig "
"mellan lägsta och högsta fläkthastighet enligt lagrets utskriftstid"
"beräknade lagringstiden inte är längre än lagringstiden i "
"inställningarna.När lager tiden är kortare än gräns värdet, ställer "
"fläkthastigheten sig mellan lägsta och högsta fläkthastighet enligt lagrets "
"utskriftstid"
msgid "Max fan speed threshold"
msgstr "Max fläkt hastighets gräns"
@ -7896,7 +7966,7 @@ msgstr ""
msgid "Layer height limits"
msgstr "Lagerhöjds begränsning"
msgid "Lift Z Enforcement"
msgid "Z-Hop"
msgstr ""
msgid "Retraction when switching material"
@ -9499,6 +9569,11 @@ msgstr "Första lager"
msgid "Initial layer bed temperature"
msgstr "Byggplattans första lager temperatur"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -10995,8 +11070,8 @@ msgid "mm/s² or %"
msgstr "mm/s² or %"
msgid ""
"Acceleration of sparse infill. If the value is expressed as a percentage (e."
"g. 100%), it will be calculated based on the default acceleration."
"Acceleration of sparse infill. If the value is expressed as a percentage "
"(e.g. 100%), it will be calculated based on the default acceleration."
msgstr ""
"Acceleration av gles utfyllnad. Om värdet uttrycks som en procentsats (t.ex. "
"100%) kommer det att beräknas baserat på standard accelerationen."
@ -12127,8 +12202,8 @@ msgstr ""
"Experimental feature. Retraction length before cutting off during filament "
"change"
msgid "Z hop when retract"
msgstr "Z hopp vid retraktion"
msgid "Z-hop height"
msgstr ""
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -12160,6 +12235,9 @@ msgstr ""
"Om detta värde är positivt kommer Z hop endast att träda i kraft när Z är "
"över parametern: \"Z hop nedre gräns\" och är under detta värde"
msgid "Z-hop type"
msgstr ""
msgid "Z hop type"
msgstr ""
@ -13354,9 +13432,9 @@ msgid "Idle temperature"
msgstr ""
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
msgid "X-Y hole compensation"
@ -16190,8 +16268,15 @@ msgstr ""
"ABS, kan en lämplig ökning av värmebäddens temperatur minska sannolikheten "
"för vridning."
#~ msgid "Cool Plate"
#~ msgstr "Cool Plate"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Skala"
#~ msgid "Cool plate"
#~ msgstr "Kall platta"
#~ msgid "Z hop when retract"
#~ msgstr "Z hopp vid retraktion"
#~ msgid ""
#~ "While printing by Object, the extruder may collide skirt.\n"
@ -16794,11 +16879,11 @@ msgstr ""
#~ msgstr "Felsökningsnivå"
#~ 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 ""
#~ "Välj felsöknings nivå. 0:allvarlig, 1:fel, 2:varning, 3:info, 4:felsök, 5:"
#~ "spåra\n"
#~ "Välj felsöknings nivå. 0:allvarlig, 1:fel, 2:varning, 3:info, 4:felsök, "
#~ "5:spåra\n"
#~ msgid ""
#~ "3D Scene Operations\n"

File diff suppressed because it is too large Load diff

View file

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-10-27 23:05+0800\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"PO-Revision-Date: 2024-12-23 20:09+0200\n"
"Last-Translator: \n"
"Language-Team: \n"
@ -1297,9 +1297,6 @@ msgstr "Центр ребра"
msgid "Center of circle"
msgstr "Центр кола"
msgid "ShiftLeft mouse button"
msgstr "ShiftЛіва кнопка миші"
msgid "Select feature"
msgstr "Виберіть функцію"
@ -1315,18 +1312,25 @@ msgstr "Вибрати заново"
msgid "Esc"
msgstr "Esc"
msgid "Unselect"
msgstr "Зняти виділення"
msgid "Cancel a feature until exit"
msgstr ""
msgid "Measure"
msgstr "Виміряти"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
msgid "Please select at least one object."
msgstr ""
msgid "Edit to scale"
msgstr "Редагувати масштаб"
msgctxt "Verb"
msgid "Scale"
msgstr "Масштаб"
msgid "Scale all"
msgstr ""
msgid "None"
msgstr "Ні"
@ -1340,6 +1344,42 @@ msgstr "Довжина"
msgid "Selection"
msgstr "Вибір"
msgid " (Moving)"
msgstr ""
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
msgid "Face"
msgstr ""
msgid " (Fixed)"
msgstr ""
msgid "Point"
msgstr ""
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
msgid "Warning:please select Plane's feature."
msgstr ""
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
msgid "Warning:please select two different mesh."
msgstr ""
msgid "Copy to clipboard"
msgstr "Копіювати в буфер обміну"
@ -1355,6 +1395,27 @@ msgstr "Пряма відстань"
msgid "Distance XYZ"
msgstr "Відстань XYZ"
msgid "Parallel"
msgstr ""
msgid "Center coincidence"
msgstr ""
msgid "Featue 1"
msgstr ""
msgid "Reverse rotation"
msgstr ""
msgid "Rotate around center:"
msgstr ""
msgid "Parallel distance:"
msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Ctrl+"
msgstr "Ctrl+"
@ -2773,16 +2834,16 @@ msgid ""
"This software uses open source components whose copyright and other "
"proprietary rights belong to their respective owners"
msgstr ""
"Це програмне забезпечення використовує компоненти з відкритим вихідним кодом,"
"авторські права та інші\n"
"Це програмне забезпечення використовує компоненти з відкритим вихідним "
"кодом,авторські права та інші\n"
"права власності належать їх відповідним власникам"
#, c-format, boost-format
msgid "About %s"
msgstr "Про %s"
msgid "Orca Slicer "
msgstr "Orca Slicer "
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
msgstr "OrcaSlicer базується на BambuStudio, PrusaSlicer та SuperSlicer."
@ -3618,9 +3679,9 @@ msgstr ""
#, c-format, boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
"Поточна температура камери вища, ніж безпечна температура матеріалу, це може "
"призвести до розм’якшення матеріалу та його забивання. Максимально безпечна "
@ -4434,8 +4495,8 @@ msgid ""
"confirming that the height is within the build volume."
msgstr ""
"Об'єкт знаходиться за кордоном пластини або перевищує обмеження по висоті.\n"
"Будь ласка, вирішіть проблему, перемістивши її повністю на тарілку або з неї,"
"і підтвердження того, що висота знаходиться в межах обсягу збирання."
"Будь ласка, вирішіть проблему, перемістивши її повністю на тарілку або з "
"неї,і підтвердження того, що висота знаходиться в межах обсягу збирання."
msgid "Calibration step selection"
msgstr "Вибір кроку калібрування"
@ -7866,7 +7927,15 @@ msgstr "Сопло"
msgid "Nozzle temperature when printing"
msgstr "Температура сопла під час друку"
msgid "Cool plate"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
msgid "Cool Plate"
msgstr "Холодна пластина"
msgid ""
@ -8088,8 +8157,8 @@ msgstr ""
msgid "Layer height limits"
msgstr "Обмеження висоти шару"
msgid "Lift Z Enforcement"
msgstr "Забезпечення стрибків Z"
msgid "Z-Hop"
msgstr ""
msgid "Retraction when switching material"
msgstr "Втягування під час зміни матеріалу"
@ -9786,6 +9855,11 @@ msgstr "Перший шар"
msgid "Initial layer bed temperature"
msgstr "Температура першого шару"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -11371,8 +11445,8 @@ msgstr ""
"знайдено, лінія заповнення з'єднується з сегментом периметра лише з одного "
"боку, і довжина взятого сегменту периметра обмежена цим параметром, але не "
"більше anchor_length_max.\n"
"Встановіть цей параметр рівним нулю, щоб вимкнути периметри прив'язки."
"пов'язані з однією лінією заповнення."
"Встановіть цей параметр рівним нулю, щоб вимкнути периметри "
"прив'язки.пов'язані з однією лінією заповнення."
msgid "0 (no open anchors)"
msgstr "0 (немає відкритих прив'язок)"
@ -11442,8 +11516,8 @@ msgid "mm/s² or %"
msgstr "мм/с² або %"
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%), воно буде розраховане на основі прискорення за умовчанням."
@ -11575,8 +11649,8 @@ msgid ""
"Set to -1 to disable this override.\n"
"Can only be overridden by disable_fan_first_layers."
msgstr ""
"Ця швидкість вентилятора забезпечується під час усіх інтерфейсів підтримки,"
"щоб мати можливість послабити їхнє з'єднання з високою "
"Ця швидкість вентилятора забезпечується під час усіх інтерфейсів "
"підтримки,щоб мати можливість послабити їхнє з'єднання з високою "
"швидкістювентилятора.\n"
"Встановіть -1, щоб вимкнути це перевизначення.\n"
"Може бути перевизначений лише disable_fan_first_layers."
@ -12734,8 +12808,8 @@ msgstr ""
"Експериментальна функція. Відстань втягування перед відрізанням під час "
"зміни філаменту"
msgid "Z hop when retract"
msgstr "Z-стрибок при втягуванні"
msgid "Z-hop height"
msgstr ""
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -12767,6 +12841,9 @@ msgstr ""
"Якщо це значення позитивне, то Z-hop буде діяти лише тоді, коли Z перевищує "
"параметр “Межа зниження Z” і знаходиться нижче цього значення"
msgid "Z-hop type"
msgstr ""
msgid "Z hop type"
msgstr "Тип Z-стрибка"
@ -13062,8 +13139,8 @@ msgid ""
"To minimize the visibility of the seam in a closed loop extrusion, a small "
"inward movement is executed before the extruder leaves the loop."
msgstr ""
"Щоб звести до мінімуму видимість шва при екструзії із замкнутим контуром,"
"Невеликий рух усередину виконується до виходу екструдера з контуру."
"Щоб звести до мінімуму видимість шва при екструзії із замкнутим "
"контуром,Невеликий рух усередину виконується до виходу екструдера з контуру."
msgid "Wipe before external loop"
msgstr "Очищати перед зовнішнім контуром"
@ -13463,8 +13540,8 @@ msgid ""
"Only create support for critical regions including sharp tail, cantilever, "
"etc."
msgstr ""
"Створювати підтримку тільки для критичних областей, включаючи гострий хвіст,"
"консоль і т.д."
"Створювати підтримку тільки для критичних областей, включаючи гострий "
"хвіст,консоль і т.д."
msgid "Remove small overhangs"
msgstr "Видалити невеликі виступи"
@ -14099,9 +14176,9 @@ msgid "Idle temperature"
msgstr "Температура очікування"
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
msgid "X-Y hole compensation"
@ -14792,8 +14869,8 @@ msgstr "Підтримка: розповсюдження гілок на шар
msgid ""
"Unknown file format. Input file must have .stl, .obj, .amf(.xml) extension."
msgstr ""
"Невідомий формат файлу: вхідний файл повинен мати розширення .stl, .obj або ."
"amf (.xml)."
"Невідомий формат файлу: вхідний файл повинен мати розширення .stl, .obj "
"або .amf (.xml)."
msgid "Loading of a model file failed."
msgstr "Не вдалося завантажити файл моделі."
@ -14803,8 +14880,8 @@ msgstr "Наданий файл не вдалося прочитати, оскі
msgid "Unknown file format. Input file must have .3mf or .zip.amf extension."
msgstr ""
"Невідомий формат файлу: вхідний файл повинен мати розширення .3mf або .zip."
"amf."
"Невідомий формат файлу: вхідний файл повинен мати розширення .3mf "
"або .zip.amf."
msgid "Canceled"
msgstr "Скасовано"
@ -17109,9 +17186,28 @@ msgstr ""
"ABS, відповідне підвищення температури гарячого ліжка може зменшити "
"ймовірність деформації."
#~ msgid "Cool Plate"
#~ msgid "ShiftLeft mouse button"
#~ msgstr "ShiftЛіва кнопка миші"
#~ msgid "Unselect"
#~ msgstr "Зняти виділення"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "Масштаб"
#~ msgid "Orca Slicer "
#~ msgstr "Orca Slicer "
#~ msgid "Cool plate"
#~ msgstr "Холодна пластина"
#~ msgid "Lift Z Enforcement"
#~ msgstr "Забезпечення стрибків Z"
#~ msgid "Z hop when retract"
#~ msgstr "Z-стрибок при втягуванні"
#~ msgid "Reverse on odd"
#~ msgstr "Зворотній на непарних"
@ -17606,8 +17702,8 @@ msgstr ""
#~ "Only one of the results with the same name will be saved. Are you sure "
#~ "you want to overrides the other results?"
#~ msgstr ""
#~ "Збережено буде лише один із результатів з однаковою назвою. Ви впевнені,"
#~ "що хочете перезаписати інші результати?"
#~ "Збережено буде лише один із результатів з однаковою назвою. Ви "
#~ "впевнені,що хочете перезаписати інші результати?"
#, c-format, boost-format
#~ msgid ""
@ -17837,10 +17933,10 @@ msgstr ""
#~ "3mf генерується старим слайсером Orca, завантажувати лише дані геометрії."
#~ msgid ""
#~ "Relative extrusion is recommended when using \"label_objects\" option."
#~ "Some extruders work better with this option unchecked (absolute extrusion "
#~ "mode). Wipe tower is only compatible with relative mode. It is always "
#~ "enabled on BambuLab printers. Default is checked"
#~ "Relative extrusion is recommended when using \"label_objects\" "
#~ "option.Some extruders work better with this option unchecked (absolute "
#~ "extrusion mode). Wipe tower is only compatible with relative mode. It is "
#~ "always enabled on BambuLab printers. Default is checked"
#~ msgstr ""
#~ "При використанні опції «label_objects» рекомендується відносне "
#~ "Видавлювання. Деякі екструдери працюють краще з цією опцією без "
@ -18157,8 +18253,8 @@ msgstr ""
#~ 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: непереборний, 1: помилка, "
#~ "2: попередження, 3: інформація, 4: налагодження, 5: трасування\n"

View file

@ -6,7 +6,7 @@ msgid ""
msgstr ""
"Project-Id-Version: Slic3rPE\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-12-01 08:07+0100\n"
"POT-Creation-Date: 2025-01-04 17:35+0100\n"
"PO-Revision-Date: 2024-07-28 07:12+0000\n"
"Last-Translator: Handle <mail@bysb.net>\n"
"Language-Team: \n"
@ -1269,9 +1269,6 @@ msgstr "边的中心"
msgid "Center of circle"
msgstr "圆心"
msgid "ShiftLeft mouse button"
msgstr "Shift + 鼠标左键"
msgid "Select feature"
msgstr "选择特征"
@ -1287,18 +1284,25 @@ msgstr "重新选择"
msgid "Esc"
msgstr "Esc"
msgid "Unselect"
msgstr "取消选择"
msgid "Cancel a feature until exit"
msgstr ""
msgid "Measure"
msgstr "测量"
msgid ""
"Please confirm explosion ratio = 1,and please select at least one object"
msgstr ""
msgid "Please select at least one object."
msgstr ""
msgid "Edit to scale"
msgstr "编辑比例"
msgctxt "Verb"
msgid "Scale"
msgstr "比例"
msgid "Scale all"
msgstr ""
msgid "None"
msgstr "无"
@ -1312,6 +1316,42 @@ msgstr "长度"
msgid "Selection"
msgstr "选中"
msgid " (Moving)"
msgstr ""
msgid ""
"Select 2 faces on objects and \n"
" make objects assemble together."
msgstr ""
msgid ""
"Select 2 points or circles on objects and \n"
" specify distance between them."
msgstr ""
msgid "Face"
msgstr ""
msgid " (Fixed)"
msgstr ""
msgid "Point"
msgstr ""
msgid ""
"Feature 1 has been reset, \n"
"feature 2 has been feature 1"
msgstr ""
msgid "Warning:please select Plane's feature."
msgstr ""
msgid "Warning:please select Point's or Circle's feature."
msgstr ""
msgid "Warning:please select two different mesh."
msgstr ""
msgid "Copy to clipboard"
msgstr "复制到剪贴板"
@ -1327,6 +1367,27 @@ msgstr "直线距离"
msgid "Distance XYZ"
msgstr "距离 XYZ"
msgid "Parallel"
msgstr ""
msgid "Center coincidence"
msgstr ""
msgid "Featue 1"
msgstr ""
msgid "Reverse rotation"
msgstr ""
msgid "Rotate around center:"
msgstr ""
msgid "Parallel distance:"
msgstr ""
msgid "Flip by Face 2"
msgstr ""
msgid "Ctrl+"
msgstr "Ctrl+"
@ -2685,8 +2746,8 @@ msgstr "本软件使用开源组件,其版权和其他所有权属于各自的
msgid "About %s"
msgstr "关于 %s"
msgid "Orca Slicer "
msgstr "逆戟鲸切片"
msgid "Orca Slicer"
msgstr ""
msgid "OrcaSlicer is based on BambuStudio, PrusaSlicer, and SuperSlicer."
msgstr "OrcaSlicer基于BambuStudio、PrusaSlicer 以及SuperSlicer开发。"
@ -3463,9 +3524,9 @@ msgstr ""
#, c-format, boost-format
msgid ""
"Current chamber temperature is higher than the material's safe temperature,"
"it may result in material softening and clogging.The maximum safe "
"temperature for the material is %d"
"Current chamber temperature is higher than the material's safe "
"temperature,it may result in material softening and clogging.The maximum "
"safe temperature for the material is %d"
msgstr ""
"当前腔体温度高于材料的安全温度,这可能导致材料软化和堵塞。该材料的最高安全温"
"度为 %d。"
@ -5033,8 +5094,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."
@ -7465,7 +7526,15 @@ msgstr "喷嘴"
msgid "Nozzle temperature when printing"
msgstr "打印时的喷嘴温度"
msgid "Cool plate"
msgid "Cool Plate (SuperTack)"
msgstr ""
msgid ""
"Bed temperature when cool plate is installed. Value 0 means the filament "
"does not support to print on the Cool Plate SuperTack"
msgstr ""
msgid "Cool Plate"
msgstr "低温打印热床"
msgid ""
@ -7675,8 +7744,8 @@ msgstr ""
msgid "Layer height limits"
msgstr "层高限制"
msgid "Lift Z Enforcement"
msgstr "强化抬Z策略"
msgid "Z-Hop"
msgstr ""
msgid "Retraction when switching material"
msgstr "切换材料时的回抽量"
@ -9239,6 +9308,11 @@ msgstr "首层"
msgid "Initial layer bed temperature"
msgstr "首层床温"
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate SuperTack"
msgstr ""
msgid ""
"Bed temperature of the initial layer. Value 0 means the filament does not "
"support to print on the Cool Plate"
@ -10779,8 +10853,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%),则将根据默认加速度进行计"
"算。"
@ -11920,8 +11994,8 @@ msgid ""
"change"
msgstr "实验性选项。在更换耗材丝时,切断前的回抽长度"
msgid "Z hop when retract"
msgstr "回抽时抬升Z"
msgid "Z-hop height"
msgstr ""
msgid ""
"Whenever the retraction is done, the nozzle is lifted a little to create "
@ -11947,6 +12021,9 @@ msgid ""
"the parameter: \"Z hop lower boundary\" and is below this value"
msgstr "如果该值为正则Z抬升仅在Z高于参数(Z抬升下边界)且低于该值时才会生效"
msgid "Z-hop type"
msgstr ""
msgid "Z hop type"
msgstr "抬Z类型"
@ -13156,9 +13233,9 @@ msgid "Idle temperature"
msgstr "待机温度"
msgid ""
"Nozzle temperature when the tool is currently not used in multi-tool setups."
"This is only used when 'Ooze prevention' is active in Print Settings. Set to "
"0 to disable."
"Nozzle temperature when the tool is currently not used in multi-tool "
"setups.This is only used when 'Ooze prevention' is active in Print Settings. "
"Set to 0 to disable."
msgstr ""
msgid "X-Y hole compensation"
@ -14020,10 +14097,10 @@ msgid ""
msgstr ""
"请从我们的wiki中找到动态流量校准的详细信息。\n"
"\n"
"通常情况下,校准是不必要的。当您开始单色/单材料打印,并在打印开始菜单中勾选"
"“动态流量校准”选项时,打印机将按照旧的方式,在打印前校准丝料;当您开始多色/"
"材料打印时,打印机将在每次换丝料时使用默认的补偿参数,这在大多数情况下会产"
"良好的效果。\n"
"通常情况下,校准是不必要的。当您开始单色/单材料打印,并在打印开始菜单中勾选"
"“动态流量校准”选项时,打印机将按照旧的方式,在打印前校准丝料;当您开始多色/"
"材料打印时,打印机将在每次换丝料时使用默认的补偿参数,这在大多数情况下会产"
"良好的效果。\n"
"\n"
"有几种情况可能导致校准结果不可靠,例如打印板的的附着力不足。清洗打印板或者使"
"用胶水可以增强打印板附着力。您可以在我们的维基上找到更多相关信息。\n"
@ -15909,9 +15986,28 @@ msgstr ""
"避免翘曲\n"
"您知道吗打印ABS这类易翘曲材料时适当提高热床温度可以降低翘曲的概率。"
#~ msgid "Cool Plate"
#~ msgid "ShiftLeft mouse button"
#~ msgstr "Shift + 鼠标左键"
#~ msgid "Unselect"
#~ msgstr "取消选择"
#~ msgctxt "Verb"
#~ msgid "Scale"
#~ msgstr "比例"
#~ msgid "Orca Slicer "
#~ msgstr "逆戟鲸切片"
#~ msgid "Cool plate"
#~ msgstr "低温打印热床"
#~ msgid "Lift Z Enforcement"
#~ msgstr "强化抬Z策略"
#~ msgid "Z hop when retract"
#~ msgstr "回抽时抬升Z"
#~ msgid "Reverse on odd"
#~ msgstr "反转奇数层悬垂方向"
@ -16796,11 +16892,11 @@ msgstr ""
#~ 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"
#, boost-format
#~ msgid "The selected preset: %1% is not found."

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,108 @@
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
<!-- Created with Inkscape (http://www.inkscape.org/) -->
<svg
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:cc="http://creativecommons.org/ns#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:svg="http://www.w3.org/2000/svg"
xmlns="http://www.w3.org/2000/svg"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
width="24"
height="24"
viewBox="0 0 6.3499998 6.3499998"
version="1.1"
id="svg8"
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
sodipodi:docname="param_quartercubic.svg">
<defs
id="defs2" />
<sodipodi:namedview
id="base"
pagecolor="#ffffff"
bordercolor="#666666"
borderopacity="1.0"
inkscape:pageopacity="0.0"
inkscape:pageshadow="2"
inkscape:zoom="31.678384"
inkscape:cx="9.2016388"
inkscape:cy="13.550773"
inkscape:document-units="mm"
inkscape:current-layer="g3735"
showgrid="false"
inkscape:window-width="3440"
inkscape:window-height="1361"
inkscape:window-x="-9"
inkscape:window-y="-9"
inkscape:window-maximized="1"
units="px" />
<metadata
id="metadata5">
<rdf:RDF>
<cc:Work
rdf:about="">
<dc:format>image/svg+xml</dc:format>
<dc:type
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
<dc:title></dc:title>
</cc:Work>
</rdf:RDF>
</metadata>
<g
inkscape:label="Layer 1"
inkscape:groupmode="layer"
id="layer1"
transform="translate(471.60224,-51.657005)">
<g
id="g3735"
transform="matrix(0.26458333,0,0,0.26458333,-471.86548,51.920238)">
<path
style="fill:#949494;fill-opacity:1;stroke:#949494;stroke-width:0.65595609;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 2.6869721,2.7931307 21.370006,21.252951"
id="path4983"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
id="path3713"
d="M 17.436421,21.426712 2.6364216,6.6267129 m 4.8,14.7999991 -4.8,-4.8 M 16.436421,0.4267129 l 7.2,7.2 m -17.1999994,-7.2 17.1999994,17.1999991"
inkscape:connector-curvature="0"
style="fill:none;stroke:#009688;stroke-width:0.7937008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
<path
id="path3715"
d="M 14.752492,21.394569 2.6364216,9.2776059 M 23.48285,19.879391 4.1739216,0.66957 m 9.6232134,-0.086607 3.037826,2.9618941 6.823781,6.6997119"
inkscape:connector-curvature="0"
style="fill:none;stroke:#009688;stroke-width:0.7937008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:nodetypes="ccccccc" />
<path
style="fill:#949494;fill-opacity:1;stroke:#949494;stroke-width:0.65595609;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="M 9.7429205,0.43681 23.684533,13.798665"
id="path4983-8"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
<path
id="path3715-1"
d="M 2.6374683,7.77313 9.7429205,0.43681 M 2.8040351,18.864878 20.992951,0.52555773 M 23.629234,9.7763932 12.204235,21.423716"
inkscape:connector-curvature="0"
style="fill:none;stroke:#009688;stroke-width:0.7937008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:nodetypes="cccccc" />
<path
id="path3713-0"
d="M 2.6042413,10.559661 12.242993,0.67821811 M 23.658129,12.52874 15.20813,21.405022 M 23.332474,1.1732923 3.4398186,20.95627"
inkscape:connector-curvature="0"
style="fill:none;stroke:#009688;stroke-width:0.7937008;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none"
sodipodi:nodetypes="cccccc" />
<path
id="path3721"
d="M 4.6364216,0.4267129 H 21.636421 c 1.1,0 2,0.9 2,2 V 19.426712 c 0,1.1 -0.9,2 -2,2 H 4.6364216 c -1.1,0 -2,-0.9 -2,-2 V 2.4267129 c 0,-1.1 0.9,-2 2,-2 z"
inkscape:connector-curvature="0"
style="fill:none;stroke:#949494;stroke-width:0.89461362;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" />
<path
style="fill:#949494;fill-opacity:1;stroke:#949494;stroke-width:0.65595609;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
d="m 2.5685844,13.016265 8.7276766,8.61607"
id="path4983-2"
inkscape:connector-curvature="0"
sodipodi:nodetypes="cc" />
</g>
</g>
</svg>

After

Width:  |  Height:  |  Size: 4.8 KiB

View file

@ -1,7 +1,7 @@
{
"type": "process",
"setting_id": "GP017",
"name": "0.20mm Optimal 0.6 nozzle @Anker.json",
"name": "0.20mm Optimal 0.6 nozzle @Anker",
"from": "system",
"inherits": "fdm_process_anker_common_0_6",
"instantiation": "true",

View file

@ -59,6 +59,10 @@
{
"name": "Anycubic Kobra 3",
"sub_path": "machine/Anycubic Kobra 3.json"
},
{
"name": "Anycubic Kobra S1",
"sub_path": "machine/Anycubic Kobra S1.json"
}
],
"process_list": [
@ -225,6 +229,10 @@
{
"name": "0.40mm Standard @Anycubic Kobra 3 0.8 nozzle",
"sub_path": "process/0.40mm Standard @Anycubic Kobra 3 0.8 nozzle.json"
},
{
"name": "0.20mm Standard @Anycubic Kobra S1 0.4 nozzle",
"sub_path": "process/0.20mm Standard @Anycubic Kobra S1 0.4 nozzle.json"
}
],
"filament_list": [
@ -375,6 +383,38 @@
{
"name": "Anycubic PLA @Anycubic Kobra 3 0.8 nozzle",
"sub_path": "filament/Anycubic PLA @Anycubic Kobra 3 0.8 nozzle.json"
},
{
"name": "Anycubic PLA @Anycubic Kobra S1 0.4 nozzle",
"sub_path": "filament/Anycubic PLA @Anycubic Kobra S1 0.4 nozzle.json"
},
{
"name": "Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle",
"sub_path": "filament/Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle.json"
},
{
"name": "Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle",
"sub_path": "filament/Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle.json"
},
{
"name": "Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle",
"sub_path": "filament/Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle.json"
},
{
"name": "Anycubic ABS @Anycubic Kobra S1 0.4 nozzle",
"sub_path": "filament/Anycubic ABS @Anycubic Kobra S1 0.4 nozzle.json"
},
{
"name": "Anycubic ASA @Anycubic Kobra S1 0.4 nozzle",
"sub_path": "filament/Anycubic ASA @Anycubic Kobra S1 0.4 nozzle.json"
},
{
"name": "Anycubic PETG @Anycubic Kobra S1 0.4 nozzle",
"sub_path": "filament/Anycubic PETG @Anycubic Kobra S1 0.4 nozzle.json"
},
{
"name": "Anycubic TPU @Anycubic Kobra S1 0.4 nozzle",
"sub_path": "filament/Anycubic TPU @Anycubic Kobra S1 0.4 nozzle.json"
}
],
"machine_list": [
@ -449,6 +489,10 @@
{
"name": "Anycubic Kobra 3 0.8 nozzle",
"sub_path": "machine/Anycubic Kobra 3 0.8 nozzle.json"
},
{
"name": "Anycubic Kobra S1 0.4 nozzle",
"sub_path": "machine/Anycubic Kobra S1 0.4 nozzle.json"
}
]
}

File diff suppressed because one or more lines are too long

After

Width:  |  Height:  |  Size: 20 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

View file

@ -0,0 +1,252 @@
{
"type": "filament",
"filament_id": "GFB99",
"setting_id": "GFSA04",
"from": "system",
"instantiation": "true",
"name": "Anycubic ABS @Anycubic Kobra S1 0.4 nozzle",
"inherits": "fdm_filament_abs",
"filament_settings_id": [
"Anycubic ABS @Anycubic Kobra S1 0.4 nozzle"
],
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"15"
],
"nozzle_temperature": [
"250"
],
"compatible_printers": [
"Anycubic Kobra S1 0.4 nozzle"
],
"activate_air_filtration": [
"0"
],
"activate_chamber_temp_control": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"bed_type": [
"Cool Plate"
],
"chamber_temperature": [
"0"
],
"close_fan_the_first_x_layers": [
"5"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"35"
],
"cool_plate_temp_initial_layer": [
"35"
],
"default_filament_colour": [
""
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"1"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"10"
],
"filament_cooling_final_speed": [
"0"
],
"filament_cooling_initial_speed": [
"0"
],
"filament_cooling_moves": [
"0"
],
"filament_cost": [
"20"
],
"filament_density": [
"1.04"
],
"filament_deretraction_speed": [
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode\n"
],
"filament_is_support": [
"0"
],
"filament_load_time": [
"31.925"
],
"filament_loading_speed": [
"0"
],
"filament_loading_speed_start": [
"0"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_multitool_ramming": [
"0"
],
"filament_multitool_ramming_flow": [
"0"
],
"filament_multitool_ramming_volume": [
"0"
],
"filament_notes": [
""
],
"filament_ramming_parameters": [
"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_lift_above": [
"nil"
],
"filament_retract_lift_below": [
"nil"
],
"filament_retract_lift_enforce": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_minimum_travel": [
"nil"
],
"filament_retraction_speed": [
"nil"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode"
],
"filament_toolchange_delay": [
"0"
],
"filament_unload_time": [
"24.75"
],
"filament_unloading_speed": [
"0"
],
"filament_unloading_speed_start": [
"0"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"nil"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"100"
],
"hot_plate_temp": [
"90"
],
"hot_plate_temp_initial_layer": [
"90"
],
"nozzle_temperature_initial_layer": [
"250"
],
"nozzle_temperature_range_high": [
"280"
],
"nozzle_temperature_range_low": [
"240"
],
"overhang_fan_speed": [
"80"
],
"overhang_fan_threshold": [
"25%"
],
"pressure_advance": [
"0.04"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"3"
],
"slow_down_min_speed": [
"20"
],
"support_material_interface_fan_speed": [
"-1"
],
"temperature_vitrification": [
"100"
],
"textured_plate_temp_initial_layer": [
"55"
]
}

View file

@ -0,0 +1,255 @@
{
"type": "filament",
"filament_id": "GFA99",
"setting_id": "GFSA04",
"from": "system",
"instantiation": "true",
"name": "Anycubic ASA @Anycubic Kobra S1 0.4 nozzle",
"inherits": "fdm_filament_asa",
"filament_settings_id": [
"Anycubic ASA @Anycubic Kobra S1 0.4 nozzle"
],
"filament_flow_ratio": [
"0.98"
],
"filament_max_volumetric_speed": [
"12"
],
"nozzle_temperature": [
"260"
],
"compatible_printers": [
"Anycubic Kobra S1 0.4 nozzle"
],
"activate_air_filtration": [
"0"
],
"activate_chamber_temp_control": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"bed_type": [
"Cool Plate"
],
"chamber_temperature": [
"0"
],
"close_fan_the_first_x_layers": [
"5"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"35"
],
"cool_plate_temp_initial_layer": [
"35"
],
"default_filament_colour": [
""
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"1"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"35"
],
"fan_max_speed": [
"60"
],
"fan_min_speed": [
"10"
],
"filament_cooling_final_speed": [
"0"
],
"filament_cooling_initial_speed": [
"0"
],
"filament_cooling_moves": [
"0"
],
"filament_cost": [
"20"
],
"filament_density": [
"1.04"
],
"filament_deretraction_speed": [
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode\n"
],
"filament_is_support": [
"0"
],
"filament_load_time": [
"31.925"
],
"filament_loading_speed": [
"0"
],
"filament_loading_speed_start": [
"0"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_multitool_ramming": [
"0"
],
"filament_multitool_ramming_flow": [
"0"
],
"filament_multitool_ramming_volume": [
"0"
],
"filament_notes": [
""
],
"filament_ramming_parameters": [
"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_lift_above": [
"nil"
],
"filament_retract_lift_below": [
"nil"
],
"filament_retract_lift_enforce": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_minimum_travel": [
"nil"
],
"filament_retraction_speed": [
"nil"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode"
],
"filament_toolchange_delay": [
"0"
],
"filament_unload_time": [
"24.75"
],
"filament_unloading_speed": [
"0"
],
"filament_unloading_speed_start": [
"0"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"nil"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"100"
],
"hot_plate_temp": [
"100"
],
"hot_plate_temp_initial_layer": [
"100"
],
"nozzle_temperature_initial_layer": [
"260"
],
"nozzle_temperature_range_high": [
"280"
],
"nozzle_temperature_range_low": [
"240"
],
"overhang_fan_speed": [
"60"
],
"overhang_fan_threshold": [
"25%"
],
"pressure_advance": [
"0.045"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"3"
],
"slow_down_min_speed": [
"20"
],
"support_material_interface_fan_speed": [
"-1"
],
"temperature_vitrification": [
"100"
],
"textured_plate_temp": [
"55"
],
"textured_plate_temp_initial_layer": [
"55"
]
}

View file

@ -0,0 +1,255 @@
{
"type": "filament",
"filament_id": "GFG99",
"setting_id": "GFSA04",
"from": "system",
"instantiation": "true",
"name": "Anycubic PETG @Anycubic Kobra S1 0.4 nozzle",
"inherits": "fdm_filament_pet",
"filament_settings_id": [
"Anycubic PETG @Anycubic Kobra S1 0.4 nozzle"
],
"filament_flow_ratio": [
"0.96"
],
"filament_max_volumetric_speed": [
"12"
],
"nozzle_temperature": [
"230"
],
"compatible_printers": [
"Anycubic Kobra S1 0.4 nozzle"
],
"activate_air_filtration": [
"0"
],
"activate_chamber_temp_control": [
"0"
],
"additional_cooling_fan_speed": [
"0"
],
"bed_type": [
"Cool Plate"
],
"chamber_temperature": [
"0"
],
"close_fan_the_first_x_layers": [
"3"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"35"
],
"cool_plate_temp_initial_layer": [
"35"
],
"default_filament_colour": [
""
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"1"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"90"
],
"fan_min_speed": [
"30"
],
"filament_cooling_final_speed": [
"0"
],
"filament_cooling_initial_speed": [
"0"
],
"filament_cooling_moves": [
"0"
],
"filament_cost": [
"30"
],
"filament_density": [
"1.27"
],
"filament_deretraction_speed": [
"0"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode\n"
],
"filament_is_support": [
"0"
],
"filament_load_time": [
"31.925"
],
"filament_loading_speed": [
"0"
],
"filament_loading_speed_start": [
"0"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_multitool_ramming": [
"0"
],
"filament_multitool_ramming_flow": [
"0"
],
"filament_multitool_ramming_volume": [
"0"
],
"filament_notes": [
""
],
"filament_ramming_parameters": [
"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
],
"filament_retract_before_wipe": [
"0%"
],
"filament_retract_lift_above": [
"nil"
],
"filament_retract_lift_below": [
"nil"
],
"filament_retract_lift_enforce": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"filament_retraction_length": [
"1.5"
],
"filament_retraction_minimum_travel": [
"2"
],
"filament_retraction_speed": [
"80"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode"
],
"filament_toolchange_delay": [
"0"
],
"filament_unload_time": [
"24.75"
],
"filament_unloading_speed": [
"0"
],
"filament_unloading_speed_start": [
"0"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"nozzle_temperature_initial_layer": [
"230"
],
"nozzle_temperature_range_high": [
"260"
],
"nozzle_temperature_range_low": [
"220"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"pressure_advance": [
"0.056"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"12"
],
"slow_down_min_speed": [
"20"
],
"support_material_interface_fan_speed": [
"-1"
],
"temperature_vitrification": [
"70"
],
"textured_plate_temp": [
"55"
],
"textured_plate_temp_initial_layer": [
"55"
]
}

View file

@ -0,0 +1,258 @@
{
"type": "filament",
"filament_id": "GFL99",
"setting_id": "GFSA04",
"from": "system",
"instantiation": "true",
"name": "Anycubic PLA @Anycubic Kobra S1 0.4 nozzle",
"inherits": "fdm_filament_pla",
"filament_settings_id": [
"Anycubic PLA @Anycubic Kobra S1 0.4 nozzle"
],
"filament_flow_ratio": [
"0.98"
],
"filament_max_volumetric_speed": [
"12"
],
"nozzle_temperature": [
"205"
],
"compatible_printers": [
"Anycubic Kobra S1 0.4 nozzle"
],
"activate_air_filtration": [
"1"
],
"activate_chamber_temp_control": [
"0"
],
"adaptive_pressure_advance_model": [
"0.042,0.72,5000\n0.044,1.44,5000\n0.045,2.16,5000\n0.045,2.88,5000\n0.045,3.58,5000\n0.044,4.3,5000\n0.045,5.02,5000\n0.043,5.73,5000\n0.045,6.45,5000\n0.041,7.17,5000\n0.039,7.89,5000\n0.038,8.61,5000\n0.036,9.33,5000\n0.033,10.05,5000\n0.032,10.77,5000\n0.034,11.49,5000\n0.033,12.21,5000"
],
"additional_cooling_fan_speed": [
"60"
],
"bed_type": [
"Cool Plate"
],
"chamber_temperature": [
"0"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"80"
],
"cool_plate_temp": [
"35"
],
"cool_plate_temp_initial_layer": [
"35"
],
"default_filament_colour": [
""
],
"during_print_exhaust_fan_speed": [
"60"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"1"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_cooling_final_speed": [
"0"
],
"filament_cooling_initial_speed": [
"0"
],
"filament_cooling_moves": [
"0"
],
"filament_cost": [
"20"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode\n"
],
"filament_is_support": [
"0"
],
"filament_load_time": [
"31.925"
],
"filament_loading_speed": [
"0"
],
"filament_loading_speed_start": [
"0"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_multitool_ramming": [
"0"
],
"filament_multitool_ramming_flow": [
"0"
],
"filament_multitool_ramming_volume": [
"0"
],
"filament_notes": [
""
],
"filament_ramming_parameters": [
"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_lift_above": [
"nil"
],
"filament_retract_lift_below": [
"nil"
],
"filament_retract_lift_enforce": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_minimum_travel": [
"nil"
],
"filament_retraction_speed": [
"nil"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode"
],
"filament_toolchange_delay": [
"0"
],
"filament_unload_time": [
"24.75"
],
"filament_unloading_speed": [
"0"
],
"filament_unloading_speed_start": [
"0"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"nil"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"nozzle_temperature_initial_layer": [
"215"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"pressure_advance": [
"0.035"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"support_material_interface_fan_speed": [
"-1"
],
"temperature_vitrification": [
"55"
],
"textured_plate_temp": [
"55"
],
"textured_plate_temp_initial_layer": [
"55"
]
}

View file

@ -0,0 +1,255 @@
{
"type": "filament",
"filament_id": "GFL99",
"setting_id": "GFSA04",
"from": "system",
"instantiation": "true",
"name": "Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle",
"inherits": "fdm_filament_pla",
"filament_settings_id": [
"Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle"
],
"filament_flow_ratio": [
"0.96"
],
"filament_max_volumetric_speed": [
"18"
],
"nozzle_temperature": [
"205"
],
"compatible_printers": [
"Anycubic Kobra S1 0.4 nozzle"
],
"activate_air_filtration": [
"1"
],
"activate_chamber_temp_control": [
"0"
],
"additional_cooling_fan_speed": [
"60"
],
"bed_type": [
"Cool Plate"
],
"chamber_temperature": [
"0"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"80"
],
"cool_plate_temp": [
"35"
],
"cool_plate_temp_initial_layer": [
"35"
],
"default_filament_colour": [
""
],
"during_print_exhaust_fan_speed": [
"60"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"1"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_cooling_final_speed": [
"0"
],
"filament_cooling_initial_speed": [
"0"
],
"filament_cooling_moves": [
"0"
],
"filament_cost": [
"20"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"0"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode"
],
"filament_is_support": [
"0"
],
"filament_load_time": [
"31.925"
],
"filament_loading_speed": [
"0"
],
"filament_loading_speed_start": [
"0"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_multitool_ramming": [
"0"
],
"filament_multitool_ramming_flow": [
"0"
],
"filament_multitool_ramming_volume": [
"0"
],
"filament_notes": [
""
],
"filament_ramming_parameters": [
"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
],
"filament_retract_before_wipe": [
"0%"
],
"filament_retract_lift_above": [
"nil"
],
"filament_retract_lift_below": [
"249"
],
"filament_retract_lift_enforce": [
"nil"
],
"filament_retract_restart_extra": [
"0"
],
"filament_retract_when_changing_layer": [
"1"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"filament_retraction_length": [
"0.8"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"30"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode"
],
"filament_toolchange_delay": [
"0"
],
"filament_unload_time": [
"24.75"
],
"filament_unloading_speed": [
"0"
],
"filament_unloading_speed_start": [
"0"
],
"filament_wipe": [
"1"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"0.4"
],
"filament_z_hop_types": [
"Slope Lift"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"nozzle_temperature_initial_layer": [
"215"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"pressure_advance": [
"0.036"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"4"
],
"slow_down_min_speed": [
"20"
],
"support_material_interface_fan_speed": [
"-1"
],
"temperature_vitrification": [
"45"
],
"textured_plate_temp": [
"55"
],
"textured_plate_temp_initial_layer": [
"55"
]
}

View file

@ -0,0 +1,256 @@
{
"type": "filament",
"filament_id": "GFL99",
"setting_id": "GFSA04",
"from": "system",
"is_custom_defined": "0",
"instantiation": "true",
"name": "Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle",
"inherits": "fdm_filament_pla",
"filament_settings_id": [
"Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle"
],
"filament_flow_ratio": [
"0.96"
],
"filament_max_volumetric_speed": [
"12"
],
"nozzle_temperature": [
"230"
],
"compatible_printers": [
"Anycubic Kobra S1 0.4 nozzle"
],
"activate_air_filtration": [
"1"
],
"activate_chamber_temp_control": [
"0"
],
"additional_cooling_fan_speed": [
"60"
],
"bed_type": [
"Cool Plate"
],
"chamber_temperature": [
"0"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"80"
],
"cool_plate_temp": [
"35"
],
"cool_plate_temp_initial_layer": [
"35"
],
"default_filament_colour": [
""
],
"during_print_exhaust_fan_speed": [
"60"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"1"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_cooling_final_speed": [
"0"
],
"filament_cooling_initial_speed": [
"0"
],
"filament_cooling_moves": [
"0"
],
"filament_cost": [
"20"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"0"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode"
],
"filament_is_support": [
"0"
],
"filament_load_time": [
"31.925"
],
"filament_loading_speed": [
"0"
],
"filament_loading_speed_start": [
"0"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_multitool_ramming": [
"0"
],
"filament_multitool_ramming_flow": [
"0"
],
"filament_multitool_ramming_volume": [
"0"
],
"filament_notes": [
""
],
"filament_ramming_parameters": [
"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
],
"filament_retract_before_wipe": [
"0%"
],
"filament_retract_lift_above": [
"0.3"
],
"filament_retract_lift_below": [
"249"
],
"filament_retract_lift_enforce": [
"All Surfaces"
],
"filament_retract_restart_extra": [
"0"
],
"filament_retract_when_changing_layer": [
"1"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"filament_retraction_length": [
"0.8"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"40"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode"
],
"filament_toolchange_delay": [
"0"
],
"filament_unload_time": [
"24.75"
],
"filament_unloading_speed": [
"0"
],
"filament_unloading_speed_start": [
"0"
],
"filament_wipe": [
"1"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"0.4"
],
"filament_z_hop_types": [
"Slope Lift"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"nozzle_temperature_initial_layer": [
"230"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"pressure_advance": [
"0.036"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"support_material_interface_fan_speed": [
"-1"
],
"temperature_vitrification": [
"45"
],
"textured_plate_temp": [
"55"
],
"textured_plate_temp_initial_layer": [
"55"
]
}

View file

@ -0,0 +1,255 @@
{
"type": "filament",
"filament_id": "GFL99",
"setting_id": "GFSA04",
"from": "system",
"instantiation": "true",
"name": "Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle",
"inherits": "fdm_filament_pla",
"filament_settings_id": [
"Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle"
],
"filament_flow_ratio": [
"0.96"
],
"filament_max_volumetric_speed": [
"15"
],
"nozzle_temperature": [
"210"
],
"compatible_printers": [
"Anycubic Kobra S1 0.4 nozzle"
],
"activate_air_filtration": [
"1"
],
"activate_chamber_temp_control": [
"0"
],
"additional_cooling_fan_speed": [
"60"
],
"bed_type": [
"Cool Plate"
],
"chamber_temperature": [
"0"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"80"
],
"cool_plate_temp": [
"35"
],
"cool_plate_temp_initial_layer": [
"35"
],
"default_filament_colour": [
""
],
"during_print_exhaust_fan_speed": [
"60"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"1"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_cooling_final_speed": [
"0"
],
"filament_cooling_initial_speed": [
"0"
],
"filament_cooling_moves": [
"0"
],
"filament_cost": [
"20"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"0"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode "
],
"filament_is_support": [
"0"
],
"filament_load_time": [
"31.925"
],
"filament_loading_speed": [
"0"
],
"filament_loading_speed_start": [
"0"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_multitool_ramming": [
"0"
],
"filament_multitool_ramming_flow": [
"0"
],
"filament_multitool_ramming_volume": [
"0"
],
"filament_notes": [
""
],
"filament_ramming_parameters": [
"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
],
"filament_retract_before_wipe": [
"0%"
],
"filament_retract_lift_above": [
"0.3"
],
"filament_retract_lift_below": [
"249"
],
"filament_retract_lift_enforce": [
"All Surfaces"
],
"filament_retract_restart_extra": [
"0"
],
"filament_retract_when_changing_layer": [
"1"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"filament_retraction_length": [
"0.8"
],
"filament_retraction_minimum_travel": [
"1"
],
"filament_retraction_speed": [
"30"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode"
],
"filament_toolchange_delay": [
"0"
],
"filament_unload_time": [
"24.75"
],
"filament_unloading_speed": [
"0"
],
"filament_unloading_speed_start": [
"0"
],
"filament_wipe": [
"1"
],
"filament_wipe_distance": [
"2"
],
"filament_z_hop": [
"0.4"
],
"filament_z_hop_types": [
"Slope Lift"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"nozzle_temperature_initial_layer": [
"215"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"50%"
],
"pressure_advance": [
"0.04"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"20"
],
"support_material_interface_fan_speed": [
"-1"
],
"temperature_vitrification": [
"45"
],
"textured_plate_temp": [
"55"
],
"textured_plate_temp_initial_layer": [
"55"
]
}

View file

@ -0,0 +1,255 @@
{
"type": "filament",
"filament_id": "GFU99",
"setting_id": "GFSA04",
"from": "system",
"instantiation": "true",
"name": "Anycubic TPU @Anycubic Kobra S1 0.4 nozzle",
"inherits": "fdm_filament_tpu",
"filament_settings_id": [
"Anycubic TPU @Anycubic Kobra S1 0.4 nozzle"
],
"filament_flow_ratio": [
"1"
],
"filament_max_volumetric_speed": [
"3.2"
],
"nozzle_temperature": [
"205"
],
"compatible_printers": [
"Anycubic Kobra S1 0.4 nozzle"
],
"activate_air_filtration": [
"0"
],
"activate_chamber_temp_control": [
"0"
],
"additional_cooling_fan_speed": [
"60"
],
"bed_type": [
"Cool Plate"
],
"chamber_temperature": [
"0"
],
"close_fan_the_first_x_layers": [
"1"
],
"compatible_printers_condition": "",
"compatible_prints": [],
"compatible_prints_condition": "",
"complete_print_exhaust_fan_speed": [
"70"
],
"cool_plate_temp": [
"35"
],
"cool_plate_temp_initial_layer": [
"35"
],
"default_filament_colour": [
""
],
"during_print_exhaust_fan_speed": [
"70"
],
"enable_overhang_bridge_fan": [
"1"
],
"enable_pressure_advance": [
"0"
],
"eng_plate_temp": [
"0"
],
"eng_plate_temp_initial_layer": [
"0"
],
"fan_cooling_layer_time": [
"100"
],
"fan_max_speed": [
"100"
],
"fan_min_speed": [
"100"
],
"filament_cooling_final_speed": [
"0"
],
"filament_cooling_initial_speed": [
"0"
],
"filament_cooling_moves": [
"0"
],
"filament_cost": [
"20"
],
"filament_density": [
"1.24"
],
"filament_deretraction_speed": [
"nil"
],
"filament_diameter": [
"1.75"
],
"filament_end_gcode": [
"; filament end gcode\n"
],
"filament_is_support": [
"0"
],
"filament_load_time": [
"31.925"
],
"filament_loading_speed": [
"0"
],
"filament_loading_speed_start": [
"0"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_minimal_purge_on_wipe_tower": [
"15"
],
"filament_multitool_ramming": [
"0"
],
"filament_multitool_ramming_flow": [
"0"
],
"filament_multitool_ramming_volume": [
"0"
],
"filament_notes": [
""
],
"filament_ramming_parameters": [
"120 100 6.6 6.8 7.2 7.6 7.9 8.2 8.7 9.4 9.9 10.0| 0.05 6.6 0.45 6.8 0.95 7.8 1.45 8.3 1.95 9.7 2.45 10 2.95 7.6 3.45 7.6 3.95 7.6 4.45 7.6 4.95 7.6"
],
"filament_retract_before_wipe": [
"nil"
],
"filament_retract_lift_above": [
"nil"
],
"filament_retract_lift_below": [
"nil"
],
"filament_retract_lift_enforce": [
"nil"
],
"filament_retract_restart_extra": [
"nil"
],
"filament_retract_when_changing_layer": [
"nil"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"filament_retraction_length": [
"nil"
],
"filament_retraction_minimum_travel": [
"nil"
],
"filament_retraction_speed": [
"nil"
],
"filament_shrink": [
"100%"
],
"filament_soluble": [
"0"
],
"filament_start_gcode": [
"; filament start gcode"
],
"filament_toolchange_delay": [
"0"
],
"filament_unload_time": [
"24.75"
],
"filament_unloading_speed": [
"0"
],
"filament_unloading_speed_start": [
"0"
],
"filament_wipe": [
"nil"
],
"filament_wipe_distance": [
"nil"
],
"filament_z_hop": [
"nil"
],
"filament_z_hop_types": [
"nil"
],
"full_fan_speed_layer": [
"0"
],
"hot_plate_temp": [
"55"
],
"hot_plate_temp_initial_layer": [
"55"
],
"nozzle_temperature_initial_layer": [
"215"
],
"nozzle_temperature_range_high": [
"240"
],
"nozzle_temperature_range_low": [
"190"
],
"overhang_fan_speed": [
"100"
],
"overhang_fan_threshold": [
"95%"
],
"pressure_advance": [
"0.02"
],
"reduce_fan_stop_start_freq": [
"1"
],
"required_nozzle_HRC": [
"3"
],
"slow_down_for_layer_cooling": [
"1"
],
"slow_down_layer_time": [
"8"
],
"slow_down_min_speed": [
"10"
],
"support_material_interface_fan_speed": [
"-1"
],
"temperature_vitrification": [
"30"
],
"textured_plate_temp": [
"55"
],
"textured_plate_temp_initial_layer": [
"55"
]
}

View file

@ -4,22 +4,25 @@
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_common",
"cool_plate_temp" : [
"filament_type": [
"ABS"
],
"cool_plate_temp": [
"105"
],
"eng_plate_temp" : [
"eng_plate_temp": [
"105"
],
"hot_plate_temp" : [
"hot_plate_temp": [
"105"
],
"cool_plate_temp_initial_layer" : [
"cool_plate_temp_initial_layer": [
"105"
],
"eng_plate_temp_initial_layer" : [
"eng_plate_temp_initial_layer": [
"105"
],
"hot_plate_temp_initial_layer" : [
"hot_plate_temp_initial_layer": [
"105"
],
"slow_down_for_layer_cooling": [
@ -34,9 +37,6 @@
"filament_max_volumetric_speed": [
"28.6"
],
"filament_type": [
"ABS"
],
"filament_density": [
"1.04"
],
@ -79,4 +79,4 @@
"slow_down_layer_time": [
"3"
]
}
}

View file

@ -4,22 +4,25 @@
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_common",
"cool_plate_temp" : [
"filament_type": [
"ASA"
],
"cool_plate_temp": [
"105"
],
"eng_plate_temp" : [
"eng_plate_temp": [
"105"
],
"hot_plate_temp" : [
"hot_plate_temp": [
"105"
],
"cool_plate_temp_initial_layer" : [
"cool_plate_temp_initial_layer": [
"105"
],
"eng_plate_temp_initial_layer" : [
"eng_plate_temp_initial_layer": [
"105"
],
"hot_plate_temp_initial_layer" : [
"hot_plate_temp_initial_layer": [
"105"
],
"slow_down_for_layer_cooling": [
@ -34,9 +37,6 @@
"filament_max_volumetric_speed": [
"28.6"
],
"filament_type": [
"ASA"
],
"filament_density": [
"1.04"
],
@ -79,4 +79,4 @@
"slow_down_layer_time": [
"3"
]
}
}

View file

@ -3,22 +3,22 @@
"name": "fdm_filament_common",
"from": "system",
"instantiation": "false",
"cool_plate_temp" : [
"cool_plate_temp": [
"60"
],
"eng_plate_temp" : [
"eng_plate_temp": [
"60"
],
"hot_plate_temp" : [
"hot_plate_temp": [
"60"
],
"cool_plate_temp_initial_layer" : [
"cool_plate_temp_initial_layer": [
"60"
],
"eng_plate_temp_initial_layer" : [
"eng_plate_temp_initial_layer": [
"60"
],
"hot_plate_temp_initial_layer" : [
"hot_plate_temp_initial_layer": [
"60"
],
"overhang_fan_threshold": [
@ -135,4 +135,4 @@
"temperature_vitrification": [
"100"
]
}
}

View file

@ -4,22 +4,25 @@
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_common",
"cool_plate_temp" : [
"filament_type": [
"PA"
],
"cool_plate_temp": [
"0"
],
"eng_plate_temp" : [
"eng_plate_temp": [
"100"
],
"hot_plate_temp" : [
"hot_plate_temp": [
"100"
],
"cool_plate_temp_initial_layer" : [
"cool_plate_temp_initial_layer": [
"0"
],
"eng_plate_temp_initial_layer" : [
"eng_plate_temp_initial_layer": [
"100"
],
"hot_plate_temp_initial_layer" : [
"hot_plate_temp_initial_layer": [
"100"
],
"slow_down_for_layer_cooling": [
@ -34,9 +37,6 @@
"filament_max_volumetric_speed": [
"8"
],
"filament_type": [
"PA"
],
"filament_density": [
"1.04"
],
@ -76,4 +76,4 @@
"slow_down_layer_time": [
"2"
]
}
}

View file

@ -4,22 +4,25 @@
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_common",
"cool_plate_temp" : [
"filament_type": [
"PC"
],
"cool_plate_temp": [
"0"
],
"eng_plate_temp" : [
"eng_plate_temp": [
"110"
],
"hot_plate_temp" : [
"hot_plate_temp": [
"110"
],
"cool_plate_temp_initial_layer" : [
"cool_plate_temp_initial_layer": [
"0"
],
"eng_plate_temp_initial_layer" : [
"eng_plate_temp_initial_layer": [
"110"
],
"hot_plate_temp_initial_layer" : [
"hot_plate_temp_initial_layer": [
"110"
],
"slow_down_for_layer_cooling": [
@ -34,9 +37,6 @@
"filament_max_volumetric_speed": [
"23.2"
],
"filament_type": [
"PC"
],
"filament_density": [
"1.04"
],
@ -79,4 +79,4 @@
"slow_down_layer_time": [
"2"
]
}
}

View file

@ -4,22 +4,25 @@
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_common",
"cool_plate_temp" : [
"filament_type": [
"PETG"
],
"cool_plate_temp": [
"60"
],
"eng_plate_temp" : [
"eng_plate_temp": [
"0"
],
"hot_plate_temp" : [
"hot_plate_temp": [
"80"
],
"cool_plate_temp_initial_layer" : [
"cool_plate_temp_initial_layer": [
"60"
],
"eng_plate_temp_initial_layer" : [
"eng_plate_temp_initial_layer": [
"0"
],
"hot_plate_temp_initial_layer" : [
"hot_plate_temp_initial_layer": [
"80"
],
"slow_down_for_layer_cooling": [
@ -34,9 +37,6 @@
"filament_max_volumetric_speed": [
"25"
],
"filament_type": [
"PETG"
],
"filament_density": [
"1.27"
],
@ -73,4 +73,4 @@
"filament_start_gcode": [
"; filament start gcode\n"
]
}
}

View file

@ -4,37 +4,37 @@
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_common",
"filament_type": [
"PLA"
],
"fan_cooling_layer_time": [
"100"
],
"filament_max_volumetric_speed": [
"12"
],
"filament_type": [
"PLA"
],
"filament_density": [
"1.24"
],
"filament_cost": [
"20"
],
"cool_plate_temp" : [
"cool_plate_temp": [
"35"
],
"eng_plate_temp" : [
"eng_plate_temp": [
"0"
],
"hot_plate_temp" : [
"hot_plate_temp": [
"45"
],
"cool_plate_temp_initial_layer" : [
"cool_plate_temp_initial_layer": [
"35"
],
"eng_plate_temp_initial_layer" : [
"eng_plate_temp_initial_layer": [
"0"
],
"hot_plate_temp_initial_layer" : [
"hot_plate_temp_initial_layer": [
"45"
],
"nozzle_temperature_initial_layer": [
@ -85,4 +85,4 @@
"filament_start_gcode": [
"; filament start gcode\n"
]
}
}

View file

@ -4,22 +4,25 @@
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_common",
"cool_plate_temp" : [
"filament_type": [
"PVA"
],
"cool_plate_temp": [
"35"
],
"eng_plate_temp" : [
"eng_plate_temp": [
"0"
],
"hot_plate_temp" : [
"hot_plate_temp": [
"45"
],
"cool_plate_temp_initial_layer" : [
"cool_plate_temp_initial_layer": [
"35"
],
"eng_plate_temp_initial_layer" : [
"eng_plate_temp_initial_layer": [
"0"
],
"hot_plate_temp_initial_layer" : [
"hot_plate_temp_initial_layer": [
"45"
],
"fan_cooling_layer_time": [
@ -34,9 +37,6 @@
"filament_is_support": [
"1"
],
"filament_type": [
"PVA"
],
"filament_density": [
"1.24"
],
@ -91,4 +91,4 @@
"filament_start_gcode": [
"; filament start gcode\n"
]
}
}

View file

@ -4,22 +4,25 @@
"from": "system",
"instantiation": "false",
"inherits": "fdm_filament_common",
"cool_plate_temp" : [
"filament_type": [
"TPU"
],
"cool_plate_temp": [
"30"
],
"eng_plate_temp" : [
"eng_plate_temp": [
"30"
],
"hot_plate_temp" : [
"hot_plate_temp": [
"35"
],
"cool_plate_temp_initial_layer" : [
"cool_plate_temp_initial_layer": [
"30"
],
"eng_plate_temp_initial_layer" : [
"eng_plate_temp_initial_layer": [
"30"
],
"hot_plate_temp_initial_layer" : [
"hot_plate_temp_initial_layer": [
"35"
],
"fan_cooling_layer_time": [
@ -28,9 +31,6 @@
"filament_max_volumetric_speed": [
"15"
],
"filament_type": [
"TPU"
],
"filament_density": [
"1.24"
],
@ -79,4 +79,4 @@
"filament_start_gcode": [
"; filament start gcode\n"
]
}
}

View file

@ -0,0 +1,233 @@
{
"type": "machine",
"from": "system",
"setting_id": "GM001",
"inherits": "fdm_machine_common",
"instantiation": "true",
"printer_technology": "FFF",
"version": "1.3.2412.21",
"printer_settings_id": "Anycubic Kobra S1 0.4 nozzle",
"printer_model": "Anycubic Kobra S1",
"printer_variant": "0.4",
"name": "Anycubic Kobra S1 0.4 nozzle",
"nozzle_diameter": [
"0.4"
],
"default_print_profile": "0.20mm Standard @Anycubic Kobra S1 0.4 nozzle",
"default_filament_profile": [
"Anycubic PLA @Anycubic Kobra S1 0.4 nozzle"
],
"disable_m73": "1",
"gcode_flavor": "klipper",
"printable_area": [
"0x0",
"250x0",
"250x250",
"0x250"
],
"printable_height": "250",
"thumbnails": "230x110/PNG",
"thumbnails_format": "PNG",
"thumbnails_internal": "512x512/PNG/top",
"thumbnails_internal_switch": "1",
"adaptive_bed_mesh_margin": "0",
"auxiliary_fan": "1",
"bbl_use_printhost": "0",
"bed_custom_model": "",
"bed_custom_texture": "",
"bed_exclude_area": [],
"bed_mesh_max": "0,0",
"bed_mesh_min": "0,0",
"bed_mesh_probe_distance": "0,0",
"before_layer_change_gcode": "; BEFORE_LAYER_CHANGE [layer_num] @ [layer_z]mm",
"best_object_pos": "0.5,0.5",
"change_extrusion_role_gcode": "",
"change_filament_gcode": "",
"cooling_tube_length": "0",
"cooling_tube_retraction": "0",
"deretraction_speed": [
"0"
],
"emit_machine_limits_to_gcode": "1",
"enable_filament_ramming": "0",
"enable_long_retraction_when_cut": "0",
"extra_loading_move": "0",
"extruder_clearance_height_to_lid": "240",
"extruder_clearance_height_to_rod": "48",
"extruder_clearance_radius": "60",
"extruder_colour": [
"#FF4D4F"
],
"extruder_offset": [
"0x0"
],
"fan_kickstart": "0",
"fan_speedup_overhangs": "1",
"fan_speedup_time": "0",
"head_wrap_detect_zone": [],
"high_current_on_filament_swap": "0",
"host_type": "octoprint",
"is_custom_defined": "0",
"layer_change_gcode": "; AFTER_LAYER_CHANGE [layer_num] @ [layer_z]mm",
"long_retractions_when_cut": [
"0"
],
"machine_end_gcode": "G92 E0\nG1 E-2 F3000\n{if max_layer_z < max_print_height-1}G1 Z{z_offset+min(max_layer_z+2, max_print_height)} F900 ; Move print head further up{endif} \nG1 F12000; present print\nG1 X44; throw_position_x\nG1 Y270; throw_position_y\nM140 S0 ; turn off heatbed\nM104 S0 ; turn off temperature\nM106 P1 S0 ; turn off fan\nM106 P2 S0\nM106 P3 S0\nM84; disable motors \n; disable stepper motors",
"machine_load_filament_time": "126.423",
"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": [
"10000",
"10000"
],
"machine_max_acceleration_y": [
"10000",
"10000"
],
"machine_max_acceleration_z": [
"500",
"500"
],
"machine_max_jerk_e": [
"2.5",
"2.5"
],
"machine_max_jerk_x": [
"9",
"9"
],
"machine_max_jerk_y": [
"9",
"9"
],
"machine_max_jerk_z": [
"3",
"3"
],
"machine_max_speed_e": [
"80",
"80"
],
"machine_max_speed_x": [
"600",
"600"
],
"machine_max_speed_y": [
"600",
"600"
],
"machine_max_speed_z": [
"15",
"15"
],
"machine_min_extruding_rate": [
"0",
"0"
],
"machine_min_travel_rate": [
"0",
"0"
],
"machine_pause_gcode": "M601",
"machine_start_gcode": "G9111 bedTemp=[first_layer_bed_temperature] extruderTemp=[first_layer_temperature[initial_tool]]\nM117",
"machine_tool_change_time": "0",
"machine_unload_filament_time": "0",
"manual_filament_change": "0",
"max_layer_height": [
"0.28"
],
"min_layer_height": [
"0.08"
],
"nozzle_height": "4",
"nozzle_hrc": "0",
"nozzle_type": "brass",
"nozzle_volume": "71.6",
"parking_pos_retraction": "0",
"pellet_modded_printer": "0",
"preferred_orientation": "0",
"printer_notes": "",
"printer_structure": "corexy",
"printhost_authorization_type": "key",
"printhost_ssl_ignore_revoke": "0",
"printing_by_object_gcode": "",
"purge_in_prime_tower": "0",
"retract_before_wipe": [
"0%"
],
"retract_length_toolchange": [
"0"
],
"retract_lift_above": [
"0.3"
],
"retract_lift_below": [
"249"
],
"retract_lift_enforce": [
"All Surfaces"
],
"retract_restart_extra": [
"0"
],
"retract_restart_extra_toolchange": [
"0"
],
"retract_when_changing_layer": [
"1"
],
"retraction_distances_when_cut": [
"18"
],
"retraction_length": [
"0.8"
],
"retraction_minimum_travel": [
"1"
],
"retraction_speed": [
"40"
],
"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": "0",
"template_custom_gcode": "",
"time_cost": "0",
"time_lapse_gcode": "",
"travel_slope": [
"3"
],
"upward_compatible_machine": [],
"use_firmware_retraction": "0",
"use_relative_e_distances": "1",
"wipe": [
"1"
],
"wipe_distance": [
"1"
],
"z_hop": [
"0.4"
],
"z_hop_types": [
"Slope Lift"
],
"z_offset": "0"
}

View file

@ -0,0 +1,12 @@
{
"type": "machine_model",
"machine_tech": "FFF",
"family": "Anycubic",
"name": "Anycubic Kobra S1",
"model_id": "Anycubic Kobra S1",
"nozzle_diameter": "0.4",
"bed_model": "Anycubic Kobra S1_buildplate_model.stl",
"bed_texture": "Anycubic Kobra S1_buildplate_texture.svg",
"hotend_model": "",
"default_materials": "Anycubic PLA @Anycubic Kobra S1 0.4 nozzle;Anycubic PLA SE @Anycubic Kobra S1 0.4 nozzle;Anycubic PLA High Speed @Anycubic Kobra S1 0.4 nozzle;Anycubic PLA Silk @Anycubic Kobra S1 0.4 nozzle;Anycubic PETG @Anycubic Kobra S1 0.4 nozzle;Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle;Anycubic PLA Matte @Anycubic Kobra S1 0.4 nozzle;Anycubic PLA Glow @Anycubic Kobra S1 0.4 nozzle;Anycubic ASA @Anycubic Kobra S1 0.4 nozzle;Anycubic ABS @Anycubic Kobra S1 0.4 nozzle;Anycubic ASA @Anycubic Kobra S1 0.4 nozzle;Anycubic PA @Anycubic Kobra S1 0.4 nozzle;Anycubic PC @Anycubic Kobra S1 0.4 nozzle;Anycubic PETG @Anycubic Kobra S1 0.4 nozzle;Anycubic PVA @Anycubic Kobra S1 0.4 nozzle;Anycubic TPU @Anycubic Kobra S1 0.4 nozzle;Anycubic PLA+ @Anycubic Kobra S1 0.4 nozzle"
}

View file

@ -0,0 +1,292 @@
{
"type": "process",
"from": "system",
"setting_id": "GP004",
"name": "0.20mm Standard @Anycubic Kobra S1 0.4 nozzle",
"inherits": "fdm_process_common",
"instantiation": "true",
"is_custom_defined": "0",
"version": "1.3.2412.13",
"print_settings_id": "0.20mm Standard @Anycubic Kobra S1 0.4 nozzle",
"layer_height": "0.2",
"filename_format": "{input_filename_base}_{filament_type[0]}_{layer_height}_{print_time}.gcode",
"compatible_printers": [
"Anycubic Kobra S1 0.4 nozzle"
],
"accel_to_decel_enable": "1",
"accel_to_decel_factor": "50%",
"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": "0.9",
"bridge_no_support": "0",
"bridge_speed": "30",
"brim_ears_detection_length": "1",
"brim_ears_max_angle": "125",
"brim_object_gap": "0.1",
"brim_type": "auto_brim",
"brim_width": "5",
"compatible_printers_condition": "",
"counterbore_hole_bridging": "none",
"default_acceleration": "10000",
"default_jerk": "9",
"detect_narrow_internal_solid_infill": "1",
"detect_overhang_wall": "1",
"detect_thin_wall": "1",
"dont_filter_internal_bridges": "disabled",
"draft_shield": "disabled",
"elefant_foot_compensation": "0.075",
"elefant_foot_compensation_layers": "1",
"enable_arc_fitting": "0",
"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": "1",
"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": "topbottom",
"gap_infill_speed": "250",
"gcode_add_line_number": "0",
"gcode_comments": "0",
"gcode_label_objects": "1",
"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": "9",
"infill_wall_overlap": "15%",
"initial_layer_acceleration": "500",
"initial_layer_infill_speed": "80",
"initial_layer_jerk": "9",
"initial_layer_line_width": "0.5",
"initial_layer_min_bead_width": "85%",
"initial_layer_print_height": "0.2",
"initial_layer_speed": "50",
"initial_layer_travel_speed": "100%",
"inner_wall_acceleration": "5000",
"inner_wall_jerk": "9",
"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": "5000",
"internal_solid_infill_line_width": "0.42",
"internal_solid_infill_pattern": "monotonic",
"internal_solid_infill_speed": "250",
"ironing_angle": "-1",
"ironing_flow": "10%",
"ironing_pattern": "zig-zag",
"ironing_spacing": "0.15",
"ironing_speed": "30",
"ironing_type": "no ironing",
"is_infill_first": "0",
"line_width": "0.42",
"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_length_factor": "0.5",
"min_width_top_surface": "300%",
"minimum_sparse_infill_area": "15",
"mmu_segmented_region_interlocking_depth": "0",
"mmu_segmented_region_max_width": "0",
"notes": "",
"only_one_wall_first_layer": "0",
"only_one_wall_top": "1",
"ooze_prevention": "0",
"outer_wall_acceleration": "5000",
"outer_wall_jerk": "9",
"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": "1",
"overhang_totally_speed": "10",
"post_process": [],
"precise_outer_wall": "1",
"precise_z_height": "0",
"prime_tower_brim_width": "5",
"prime_tower_width": "35",
"prime_volume": "20",
"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": "5",
"raft_layers": "0",
"reduce_crossing_wall": "0",
"reduce_infill_retraction": "1",
"resolution": "0.012",
"role_based_wipe_speed": "1",
"rotate_solid_infill_direction": "1",
"scarf_angle_threshold": "155",
"scarf_joint_flow_ratio": "1",
"scarf_joint_speed": "35",
"scarf_overhang_threshold": "40%",
"seam_gap": "10%",
"seam_position": "aligned",
"seam_slope_conditional": "1",
"seam_slope_entire_loop": "0",
"seam_slope_inner_walls": "0",
"seam_slope_min_length": "10",
"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_direction": "45",
"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": "crosshatch",
"sparse_infill_speed": "270",
"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": "default",
"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": "1",
"support_remove_small_overhang": "1",
"support_speed": "150",
"support_style": "default",
"support_threshold_angle": "30",
"support_top_z_distance": "0.18",
"support_type": "tree(auto)",
"thick_bridges": "0",
"thick_internal_bridges": "1",
"timelapse_type": "0",
"top_bottom_infill_wall_overlap": "25%",
"top_shell_layers": "5",
"top_shell_thickness": "1",
"top_solid_infill_flow_ratio": "0.97",
"top_surface_acceleration": "2000",
"top_surface_jerk": "9",
"top_surface_line_width": "0.42",
"top_surface_pattern": "monotonicline",
"top_surface_speed": "200",
"travel_acceleration": "10000",
"travel_jerk": "9",
"travel_speed": "300",
"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": "outer wall/inner 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": "15",
"wipe_tower_extra_spacing": "120%",
"wipe_tower_extruder": "0",
"wipe_tower_max_purge_speed": "90",
"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

@ -712,6 +712,34 @@
{
"name": "Bambu Support W @base",
"sub_path": "filament/Bambu Support W @base.json"
},
{
"name": "SUNLU PLA Matte @base",
"sub_path": "filament/SUNLU/SUNLU PLA Matte @base.json"
},
{
"name": "SUNLU PLA+ @base",
"sub_path": "filament/SUNLU/SUNLU PLA+ @base.json"
},
{
"name": "SUNLU PLA+ 2.0 @base",
"sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @base.json"
},
{
"name": "SUNLU Silk PLA+ @base",
"sub_path": "filament/SUNLU/SUNLU Silk PLA+ @base.json"
},
{
"name": "SUNLU Marble PLA @base",
"sub_path": "filament/SUNLU/SUNLU Marble PLA @base.json"
},
{
"name": "SUNLU Wood PLA @base",
"sub_path": "filament/SUNLU/SUNLU Wood PLA @base.json"
},
{
"name": "SUNLU PETG @base",
"sub_path": "filament/SUNLU/SUNLU PETG @base.json"
},
{
"name": "eSUN PLA+ @base",
@ -1293,6 +1321,222 @@
"name": "Bambu Support W @BBL A1 0.2 nozzle",
"sub_path": "filament/Bambu Support W @BBL A1 0.2 nozzle.json"
},
{
"name": "SUNLU PLA Matte @BBL X1C",
"sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL X1C.json"
},
{
"name": "SUNLU PLA Matte @BBL X1C 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL X1C 0.2 nozzle.json"
},
{
"name": "SUNLU PLA Matte @BBL X1",
"sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL X1.json"
},
{
"name": "SUNLU PLA Matte @BBL P1P 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL P1P 0.2 nozzle.json"
},
{
"name": "SUNLU PLA Matte @BBL P1P",
"sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL P1P.json"
},
{
"name": "SUNLU PLA Matte @BBL A1M",
"sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL A1M.json"
},
{
"name": "SUNLU PLA Matte @BBL A1M 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL A1M 0.2 nozzle.json"
},
{
"name": "SUNLU PLA Matte @BBL A1",
"sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL A1.json"
},
{
"name": "SUNLU PLA Matte @BBL A1 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU PLA Matte @BBL A1 0.2 nozzle.json"
},
{
"name": "SUNLU PLA+ @BBL X1C",
"sub_path": "filament/SUNLU/SUNLU PLA+ @BBL X1C.json"
},
{
"name": "SUNLU PLA+ @BBL X1C 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU PLA+ @BBL X1C 0.2 nozzle.json"
},
{
"name": "SUNLU PLA+ @BBL X1",
"sub_path": "filament/SUNLU/SUNLU PLA+ @BBL X1.json"
},
{
"name": "SUNLU PLA+ @BBL P1P 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU PLA+ @BBL P1P 0.2 nozzle.json"
},
{
"name": "SUNLU PLA+ @BBL P1P",
"sub_path": "filament/SUNLU/SUNLU PLA+ @BBL P1P.json"
},
{
"name": "SUNLU PLA+ @BBL A1M",
"sub_path": "filament/SUNLU/SUNLU PLA+ @BBL A1M.json"
},
{
"name": "SUNLU PLA+ @BBL A1M 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU PLA+ @BBL A1M 0.2 nozzle.json"
},
{
"name": "SUNLU PLA+ @BBL A1",
"sub_path": "filament/SUNLU/SUNLU PLA+ @BBL A1.json"
},
{
"name": "SUNLU PLA+ @BBL A1 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU PLA+ @BBL A1 0.2 nozzle.json"
},
{
"name": "SUNLU PLA+ 2.0 @BBL X1C",
"sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1C.json"
},
{
"name": "SUNLU PLA+ 2.0 @BBL X1C 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1C 0.2 nozzle.json"
},
{
"name": "SUNLU PLA+ 2.0 @BBL X1",
"sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL X1.json"
},
{
"name": "SUNLU PLA+ 2.0 @BBL P1P 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL P1P 0.2 nozzle.json"
},
{
"name": "SUNLU PLA+ 2.0 @BBL P1P",
"sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL P1P.json"
},
{
"name": "SUNLU PLA+ 2.0 @BBL A1M",
"sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1M.json"
},
{
"name": "SUNLU PLA+ 2.0 @BBL A1M 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1M 0.2 nozzle.json"
},
{
"name": "SUNLU PLA+ 2.0 @BBL A1",
"sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1.json"
},
{
"name": "SUNLU PLA+ 2.0 @BBL A1 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU PLA+ 2.0 @BBL A1 0.2 nozzle.json"
},
{
"name": "SUNLU Silk PLA+ @BBL X1C",
"sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL X1C.json"
},
{
"name": "SUNLU Silk PLA+ @BBL X1C 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL X1C 0.2 nozzle.json"
},
{
"name": "SUNLU Silk PLA+ @BBL X1",
"sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL X1.json"
},
{
"name": "SUNLU Silk PLA+ @BBL P1P 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL P1P 0.2 nozzle.json"
},
{
"name": "SUNLU Silk PLA+ @BBL P1P",
"sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL P1P.json"
},
{
"name": "SUNLU Silk PLA+ @BBL A1M",
"sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL A1M.json"
},
{
"name": "SUNLU Silk PLA+ @BBL A1M 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL A1M 0.2 nozzle.json"
},
{
"name": "SUNLU Silk PLA+ @BBL A1",
"sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL A1.json"
},
{
"name": "SUNLU Silk PLA+ @BBL A1 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU Silk PLA+ @BBL A1 0.2 nozzle.json"
},
{
"name": "SUNLU Marble PLA @BBL X1C",
"sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL X1C.json"
},
{
"name": "SUNLU Marble PLA @BBL X1",
"sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL X1.json"
},
{
"name": "SUNLU Marble PLA @BBL P1P",
"sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL P1P.json"
},
{
"name": "SUNLU Marble PLA @BBL A1M",
"sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL A1M.json"
},
{
"name": "SUNLU Marble PLA @BBL A1",
"sub_path": "filament/SUNLU/SUNLU Marble PLA @BBL A1.json"
},
{
"name": "SUNLU Wood PLA @BBL X1C",
"sub_path": "filament/SUNLU/SUNLU Wood PLA @BBL X1C.json"
},
{
"name": "SUNLU Wood PLA @BBL X1",
"sub_path": "filament/SUNLU/SUNLU Wood PLA @BBL X1.json"
},
{
"name": "SUNLU Wood PLA @BBL P1P",
"sub_path": "filament/SUNLU/SUNLU Wood PLA @BBL P1P.json"
},
{
"name": "SUNLU Wood PLA @BBL A1M",
"sub_path": "filament/SUNLU/SUNLU Wood PLA @BBL A1M.json"
},
{
"name": "SUNLU Wood PLA @BBL A1",
"sub_path": "filament/SUNLU/SUNLU Wood PLA @BBL A1.json"
},
{
"name": "SUNLU PETG @BBL X1C",
"sub_path": "filament/SUNLU/SUNLU PETG @BBL X1C.json"
},
{
"name": "SUNLU PETG @BBL X1C 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU PETG @BBL X1C 0.2 nozzle.json"
},
{
"name": "SUNLU PETG @BBL X1C 0.8 nozzle",
"sub_path": "filament/SUNLU/SUNLU PETG @BBL X1C 0.8 nozzle.json"
},
{
"name": "SUNLU PETG @BBL A1M",
"sub_path": "filament/SUNLU/SUNLU PETG @BBL A1M.json"
},
{
"name": "SUNLU PETG @BBL A1M 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU PETG @BBL A1M 0.2 nozzle.json"
},
{
"name": "SUNLU PETG @BBL A1",
"sub_path": "filament/SUNLU/SUNLU PETG @BBL A1.json"
},
{
"name": "SUNLU PETG @BBL A1 0.2 nozzle",
"sub_path": "filament/SUNLU/SUNLU PETG @BBL A1 0.2 nozzle.json"
},
{
"name": "SUNLU PETG @BBL A1 0.8 nozzle",
"sub_path": "filament/SUNLU/SUNLU PETG @BBL A1 0.8 nozzle.json"
},
{
"name": "eSUN PLA+ @BBL X1C",
"sub_path": "filament/eSUN PLA+ @BBL X1C.json"

View file

@ -0,0 +1,43 @@
{
"type": "filament",
"name": "SUNLU PLA Marble @BBL A1",
"inherits": "SUNLU PLA Marble @base",
"from": "system",
"setting_id": "SNLS06_02",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"60"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"slow_down_layer_time": [
"6"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle"
]
}

View file

@ -0,0 +1,43 @@
{
"type": "filament",
"name": "SUNLU PLA Marble @BBL A1M",
"inherits": "SUNLU PLA Marble @base",
"from": "system",
"setting_id": "SNLS06_03",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"60"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"slow_down_layer_time": [
"6"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle"
]
}

View file

@ -0,0 +1,40 @@
{
"type": "filament",
"name": "SUNLU PLA Marble @BBL P1P",
"inherits": "SUNLU PLA Marble @base",
"from": "system",
"setting_id": "SNLS06_01",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_min_speed": [
"50"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"slow_down_layer_time": [
"8"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle"
]
}

View file

@ -0,0 +1,22 @@
{
"type": "filament",
"name": "SUNLU PLA Marble @BBL X1",
"inherits": "SUNLU PLA Marble @base",
"from": "system",
"setting_id": "SNLS06_00",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"slow_down_layer_time": [
"8"
],
"compatible_printers": [
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle"
]
}

View file

@ -0,0 +1,28 @@
{
"type": "filament",
"name": "SUNLU PLA Marble @BBL X1C",
"inherits": "SUNLU PLA Marble @base",
"from": "system",
"setting_id": "SNLS06",
"instantiation": "true",
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
]
}

View file

@ -0,0 +1,23 @@
{
"type": "filament",
"name": "SUNLU PLA Marble @base",
"inherits": "fdm_filament_pla",
"from": "system",
"filament_id": "SNL06",
"instantiation": "false",
"filament_cost": [
"31.99"
],
"filament_density": [
"1.25"
],
"filament_flow_ratio": [
"0.98"
],
"filament_vendor": [
"SUNLU"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
]
}

View file

@ -0,0 +1,17 @@
{
"type": "filament",
"name": "SUNLU PETG @BBL A1 0.2 nozzle",
"inherits": "SUNLU PETG @base",
"from": "system",
"setting_id": "SNLS08_03",
"instantiation": "true",
"filament_flow_ratio": [
"0.94"
],
"filament_max_volumetric_speed": [
"1"
],
"compatible_printers": [
"Bambu Lab A1 0.2 nozzle"
]
}

View file

@ -0,0 +1,24 @@
{
"type": "filament",
"name": "SUNLU PETG @BBL A1 0.8 nozzle",
"inherits": "SUNLU PETG @base",
"from": "system",
"setting_id": "SNLS08_04",
"instantiation": "true",
"fan_max_speed": [
"60"
],
"fan_min_speed": [
"20"
],
"filament_flow_ratio": [
"0.94"
],
"filament_max_volumetric_speed": [
"12"
],
"compatible_printers": [
"Bambu Lab A1 0.8 nozzle",
"Bambu Lab A1 0.6 nozzle"
]
}

View file

@ -0,0 +1,17 @@
{
"type": "filament",
"name": "SUNLU PETG @BBL A1",
"inherits": "SUNLU PETG @base",
"from": "system",
"setting_id": "SNLS08_02",
"instantiation": "true",
"filament_flow_ratio": [
"0.94"
],
"filament_max_volumetric_speed": [
"9"
],
"compatible_printers": [
"Bambu Lab A1 0.4 nozzle"
]
}

View file

@ -0,0 +1,20 @@
{
"type": "filament",
"name": "SUNLU PETG @BBL A1M 0.2 nozzle",
"inherits": "SUNLU PETG @BBL X1C 0.2 nozzle",
"from": "system",
"setting_id": "SNLS08_06",
"instantiation": "true",
"filament_flow_ratio": [
"0.94"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.2 nozzle"
]
}

View file

@ -0,0 +1,24 @@
{
"type": "filament",
"name": "SUNLU PETG @BBL A1M 0.8 nozzle",
"inherits": "SUNLU PETG @BBL X1C 0.8 nozzle",
"from": "system",
"setting_id": "SNLS08_07",
"instantiation": "true",
"filament_flow_ratio": [
"0.94"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_max_volumetric_speed": [
"12"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle"
]
}

View file

@ -0,0 +1,23 @@
{
"type": "filament",
"name": "SUNLU PETG @BBL A1M 0.4 nozzle",
"inherits": "SUNLU PETG @BBL X1C",
"from": "system",
"setting_id": "SNLS08_05",
"instantiation": "true",
"filament_flow_ratio": [
"0.94"
],
"filament_long_retractions_when_cut": [
"nil"
],
"filament_max_volumetric_speed": [
"9"
],
"filament_retraction_distances_when_cut": [
"nil"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle"
]
}

View file

@ -0,0 +1,24 @@
{
"type": "filament",
"name": "SUNLU PETG @BBL X1C 0.2 nozzle",
"inherits": "SUNLU PETG @base",
"from": "system",
"setting_id": "SNLS08_00",
"instantiation": "true",
"filament_max_volumetric_speed": [
"1"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.2 nozzle",
"Bambu Lab X1 0.2 nozzle",
"Bambu Lab P1P 0.2 nozzle",
"Bambu Lab P1S 0.2 nozzle",
"Bambu Lab X1E 0.2 nozzle"
]
}

View file

@ -0,0 +1,35 @@
{
"type": "filament",
"name": "SUNLU PETG @BBL X1C 0.8 nozzle",
"inherits": "SUNLU PETG @base",
"from": "system",
"setting_id": "SNLS08_01",
"instantiation": "true",
"fan_max_speed": [
"60"
],
"fan_min_speed": [
"20"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"filament_max_volumetric_speed": [
"16"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab X1 0.8 nozzle",
"Bambu Lab P1P 0.8 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle"
]
}

View file

@ -0,0 +1,24 @@
{
"type": "filament",
"name": "SUNLU PETG @BBL X1C",
"inherits": "SUNLU PETG @base",
"from": "system",
"setting_id": "SNLS08",
"instantiation": "true",
"filament_max_volumetric_speed": [
"14"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab X1E 0.4 nozzle"
]
}

View file

@ -0,0 +1,84 @@
{
"type": "filament",
"name": "SUNLU PETG @base",
"inherits": "fdm_filament_pet",
"from": "system",
"filament_id": "SNL08",
"instantiation": "false",
"description": "To get better transparent or translucent results with the corresponding filament, please refer to this wiki: Printing tips for transparent PETG.",
"cool_plate_temp": [
"0"
],
"cool_plate_temp_initial_layer": [
"0"
],
"eng_plate_temp": [
"60"
],
"eng_plate_temp_initial_layer": [
"60"
],
"fan_cooling_layer_time": [
"30"
],
"fan_max_speed": [
"30"
],
"fan_min_speed": [
"10"
],
"filament_cost": [
"22.99"
],
"filament_density": [
"1.23"
],
"filament_flow_ratio": [
"0.95"
],
"filament_max_volumetric_speed": [
"12"
],
"filament_vendor": [
"SUNLU"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"nozzle_temperature": [
"245"
],
"nozzle_temperature_initial_layer": [
"250"
],
"nozzle_temperature_range_high": [
"270"
],
"nozzle_temperature_range_low": [
"230"
],
"overhang_fan_speed": [
"90"
],
"overhang_fan_threshold": [
"10%"
],
"slow_down_layer_time": [
"12"
],
"textured_plate_temp": [
"60"
],
"textured_plate_temp_initial_layer": [
"60"
],
"temperature_vitrification": [
"64"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >80)||(bed_temperature_initial_layer[current_extruder] >80)}M106 P3 S255\n{elsif (bed_temperature[current_extruder] >60)||(bed_temperature_initial_layer[current_extruder] >60)}M106 P3 S180\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
]
}

View file

@ -0,0 +1,38 @@
{
"type": "filament",
"name": "SUNLU PLA Matte @BBL A1 0.2 nozzle",
"inherits": "SUNLU PLA Matte @base",
"from": "system",
"setting_id": "SNLS02_06",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"60"
],
"filament_max_volumetric_speed": [
"2"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"slow_down_layer_time": [
"6"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab A1 0.2 nozzle"
]
}

View file

@ -0,0 +1,37 @@
{
"type": "filament",
"name": "SUNLU PLA Matte @BBL A1",
"inherits": "SUNLU PLA Matte @base",
"from": "system",
"setting_id": "SNLS02_05",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"60"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"slow_down_layer_time": [
"6"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle"
]
}

View file

@ -0,0 +1,38 @@
{
"type": "filament",
"name": "SUNLU PLA Matte @BBL A1M 0.2 nozzle",
"inherits": "SUNLU PLA Matte @base",
"from": "system",
"setting_id": "SNLS02_08",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"60"
],
"filament_max_volumetric_speed": [
"2"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"slow_down_layer_time": [
"6"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.2 nozzle"
]
}

View file

@ -0,0 +1,37 @@
{
"type": "filament",
"name": "SUNLU PLA Matte @BBL A1M",
"inherits": "SUNLU PLA Matte @base",
"from": "system",
"setting_id": "SNLS02_07",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"60"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"slow_down_layer_time": [
"6"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle"
]
}

View file

@ -0,0 +1,32 @@
{
"type": "filament",
"name": "SUNLU PLA Matte @BBL P1P 0.2 nozzle",
"inherits": "SUNLU PLA Matte @base",
"from": "system",
"setting_id": "SNLS02_04",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_min_speed": [
"50"
],
"filament_max_volumetric_speed": [
"2"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab P1P 0.2 nozzle"
]
}

View file

@ -0,0 +1,34 @@
{
"type": "filament",
"name": "SUNLU PLA Matte @BBL P1P",
"inherits": "SUNLU PLA Matte @base",
"from": "system",
"setting_id": "SNLS02_03",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_min_speed": [
"50"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"slow_down_layer_time": [
"8"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle"
]
}

View file

@ -0,0 +1,19 @@
{
"type": "filament",
"name": "SUNLU PLA Matte @BBL X1",
"inherits": "SUNLU PLA Matte @base",
"from": "system",
"setting_id": "SNLS02_01",
"instantiation": "true",
"slow_down_layer_time": [
"8"
],
"compatible_printers": [
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
]
}

View file

@ -0,0 +1,20 @@
{
"type": "filament",
"name": "SUNLU PLA Matte @BBL X1C 0.2 nozzle",
"inherits": "SUNLU PLA Matte @base",
"from": "system",
"setting_id": "SNLS02_00",
"instantiation": "true",
"filament_max_volumetric_speed": [
"2"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.2 nozzle",
"Bambu Lab X1 0.2 nozzle",
"Bambu Lab P1S 0.2 nozzle",
"Bambu Lab X1E 0.2 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
]
}

View file

@ -0,0 +1,22 @@
{
"type": "filament",
"name": "SUNLU PLA Matte @BBL X1C",
"inherits": "SUNLU PLA Matte @base",
"from": "system",
"setting_id": "SNLS02",
"instantiation": "true",
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
]
}

View file

@ -0,0 +1,47 @@
{
"type": "filament",
"name": "SUNLU PLA Matte @base",
"inherits": "fdm_filament_pla",
"from": "system",
"filament_id": "SNL02",
"instantiation": "false",
"filament_cost": [
"25.99"
],
"filament_density": [
"1.3"
],
"filament_flow_ratio": [
"0.98"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"filament_max_volumetric_speed": [
"21"
],
"filament_vendor": [
"SUNLU"
],
"filament_scarf_seam_type": [
"none"
],
"filament_scarf_height":[
"5%"
],
"filament_scarf_gap":[
"0%"
],
"filament_scarf_length":[
"10"
],
"temperature_vitrification": [
"53"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
]
}

View file

@ -0,0 +1,38 @@
{
"type": "filament",
"name": "SUNLU PLA+ 2.0 @BBL A1 0.2 nozzle",
"inherits": "SUNLU PLA+ 2.0 @base",
"from": "system",
"setting_id": "SNLS04_05",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"60"
],
"filament_max_volumetric_speed": [
"2"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"slow_down_layer_time": [
"6"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab A1 0.2 nozzle"
]
}

View file

@ -0,0 +1,37 @@
{
"type": "filament",
"name": "SUNLU PLA+ 2.0 @BBL A1",
"inherits": "SUNLU PLA+ 2.0 @base",
"from": "system",
"setting_id": "SNLS04_04",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"60"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"slow_down_layer_time": [
"6"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle"
]
}

View file

@ -0,0 +1,38 @@
{
"type": "filament",
"name": "SUNLU PLA+ 2.0 @BBL A1M 0.2 nozzle",
"inherits": "SUNLU PLA+ 2.0 @base",
"from": "system",
"setting_id": "SNLS04_06",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"60"
],
"filament_max_volumetric_speed": [
"1.8"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"slow_down_layer_time": [
"6"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.2 nozzle"
]
}

View file

@ -0,0 +1,37 @@
{
"type": "filament",
"name": "SUNLU PLA+ 2.0 @BBL A1M",
"inherits": "SUNLU PLA+ 2.0 @base",
"from": "system",
"setting_id": "SNLS04_07",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"60"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"slow_down_layer_time": [
"6"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle"
]
}

View file

@ -0,0 +1,32 @@
{
"type": "filament",
"name": "SUNLU PLA+ 2.0 @BBL P1P 0.2 nozzle",
"inherits": "SUNLU PLA+ 2.0 @base",
"from": "system",
"setting_id": "SNLS04_03",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_min_speed": [
"50"
],
"filament_max_volumetric_speed": [
"1.8"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab P1P 0.2 nozzle"
]
}

View file

@ -0,0 +1,34 @@
{
"type": "filament",
"name": "SUNLU PLA+ 2.0 @BBL P1P",
"inherits": "SUNLU PLA+ 2.0 @base",
"from": "system",
"setting_id": "SNLS04_02",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_min_speed": [
"50"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"slow_down_layer_time": [
"8"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle"
]
}

View file

@ -0,0 +1,19 @@
{
"type": "filament",
"name": "SUNLU PLA+ 2.0 @BBL X1",
"inherits": "SUNLU PLA+ 2.0 @base",
"from": "system",
"setting_id": "SNLS04_00",
"instantiation": "true",
"slow_down_layer_time": [
"10"
],
"compatible_printers": [
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
]
}

View file

@ -0,0 +1,20 @@
{
"type": "filament",
"name": "SUNLU PLA+ 2.0 @BBL X1C 0.2 nozzle",
"inherits": "SUNLU PLA+ 2.0 @base",
"from": "system",
"setting_id": "SNLS04_01",
"instantiation": "true",
"filament_max_volumetric_speed": [
"1.8"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.2 nozzle",
"Bambu Lab X1 0.2 nozzle",
"Bambu Lab P1S 0.2 nozzle",
"Bambu Lab X1E 0.2 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
]
}

View file

@ -0,0 +1,22 @@
{
"type": "filament",
"name": "SUNLU PLA+ 2.0 @BBL X1C",
"inherits": "SUNLU PLA+ 2.0 @base",
"from": "system",
"setting_id": "SNLS04",
"instantiation": "true",
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab X1 Carbon 0.8 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab P1S 0.8 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle",
"Bambu Lab X1E 0.8 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
]
}

View file

@ -0,0 +1,47 @@
{
"type": "filament",
"name": "SUNLU PLA+ 2.0 @base",
"inherits": "fdm_filament_pla",
"from": "system",
"filament_id": "SNL04",
"instantiation": "false",
"filament_cost": [
"18.99"
],
"filament_density": [
"1.23"
],
"filament_flow_ratio": [
"1.0"
],
"filament_long_retractions_when_cut": [
"1"
],
"filament_retraction_distances_when_cut": [
"18"
],
"filament_max_volumetric_speed": [
"22"
],
"filament_vendor": [
"SUNLU"
],
"filament_scarf_seam_type": [
"none"
],
"filament_scarf_height":[
"5%"
],
"filament_scarf_gap":[
"0%"
],
"filament_scarf_length":[
"10"
],
"temperature_vitrification": [
"53"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\n\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
]
}

View file

@ -0,0 +1,38 @@
{
"type": "filament",
"name": "SUNLU PLA+ @BBL A1 0.2 nozzle",
"inherits": "SUNLU PLA+ @base",
"from": "system",
"setting_id": "SNLS03_04",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"60"
],
"filament_max_volumetric_speed": [
"2"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"slow_down_layer_time": [
"6"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab A1 0.2 nozzle"
]
}

View file

@ -0,0 +1,37 @@
{
"type": "filament",
"name": "SUNLU PLA+ @BBL A1",
"inherits": "SUNLU PLA+ @base",
"from": "system",
"setting_id": "SNLS03_04",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"60"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"slow_down_layer_time": [
"6"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab A1 0.4 nozzle",
"Bambu Lab A1 0.6 nozzle",
"Bambu Lab A1 0.8 nozzle"
]
}

View file

@ -0,0 +1,38 @@
{
"type": "filament",
"name": "SUNLU PLA+ @BBL A1M 0.2 nozzle",
"inherits": "SUNLU PLA+ @base",
"from": "system",
"setting_id": "SNLS03_06",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"60"
],
"filament_max_volumetric_speed": [
"1.8"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"slow_down_layer_time": [
"6"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.2 nozzle"
]
}

View file

@ -0,0 +1,37 @@
{
"type": "filament",
"name": "SUNLU PLA+ @BBL A1M",
"inherits": "SUNLU PLA+ @base",
"from": "system",
"setting_id": "SNLS03_05",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_max_speed": [
"80"
],
"fan_min_speed": [
"60"
],
"hot_plate_temp": [
"60"
],
"hot_plate_temp_initial_layer": [
"60"
],
"slow_down_layer_time": [
"6"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab A1 mini 0.4 nozzle",
"Bambu Lab A1 mini 0.6 nozzle",
"Bambu Lab A1 mini 0.8 nozzle"
]
}

View file

@ -0,0 +1,32 @@
{
"type": "filament",
"name": "SUNLU PLA+ @BBL P1P 0.2 nozzle",
"inherits": "SUNLU PLA+ @base",
"from": "system",
"setting_id": "SNLS03_03",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_min_speed": [
"50"
],
"filament_max_volumetric_speed": [
"1.8"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab P1P 0.2 nozzle"
]
}

View file

@ -0,0 +1,34 @@
{
"type": "filament",
"name": "SUNLU PLA+ @BBL P1P",
"inherits": "SUNLU PLA+ @base",
"from": "system",
"setting_id": "SNLS03_02",
"instantiation": "true",
"fan_cooling_layer_time": [
"80"
],
"fan_min_speed": [
"50"
],
"hot_plate_temp": [
"65"
],
"hot_plate_temp_initial_layer": [
"65"
],
"slow_down_layer_time": [
"8"
],
"textured_plate_temp": [
"65"
],
"textured_plate_temp_initial_layer": [
"65"
],
"compatible_printers": [
"Bambu Lab P1P 0.4 nozzle",
"Bambu Lab P1P 0.6 nozzle",
"Bambu Lab P1P 0.8 nozzle"
]
}

View file

@ -0,0 +1,19 @@
{
"type": "filament",
"name": "SUNLU PLA+ @BBL X1",
"inherits": "SUNLU PLA+ @base",
"from": "system",
"setting_id": "SNLS03_00",
"instantiation": "true",
"slow_down_layer_time": [
"10"
],
"compatible_printers": [
"Bambu Lab X1 0.4 nozzle",
"Bambu Lab X1 0.6 nozzle",
"Bambu Lab X1 0.8 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
]
}

View file

@ -0,0 +1,20 @@
{
"type": "filament",
"name": "SUNLU PLA+ @BBL X1C 0.2 nozzle",
"inherits": "SUNLU PLA+ @base",
"from": "system",
"setting_id": "SNLS03_01",
"instantiation": "true",
"filament_max_volumetric_speed": [
"1.8"
],
"compatible_printers": [
"Bambu Lab X1 Carbon 0.2 nozzle",
"Bambu Lab X1 0.2 nozzle",
"Bambu Lab P1S 0.2 nozzle",
"Bambu Lab X1E 0.2 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
]
}

View file

@ -0,0 +1,19 @@
{
"type": "filament",
"name": "SUNLU PLA+ @BBL X1C",
"inherits": "SUNLU PLA+ @base",
"from": "system",
"setting_id": "SNLS03",
"instantiation": "true",
"compatible_printers": [
"Bambu Lab X1 Carbon 0.4 nozzle",
"Bambu Lab X1 Carbon 0.6 nozzle",
"Bambu Lab P1S 0.4 nozzle",
"Bambu Lab P1S 0.6 nozzle",
"Bambu Lab X1E 0.4 nozzle",
"Bambu Lab X1E 0.6 nozzle"
],
"filament_start_gcode": [
"; filament start gcode\n{if (bed_temperature[current_extruder] >55)||(bed_temperature_initial_layer[current_extruder] >55)}M106 P3 S200\n{elsif(bed_temperature[current_extruder] >50)||(bed_temperature_initial_layer[current_extruder] >50)}M106 P3 S150\n{elsif(bed_temperature[current_extruder] >45)||(bed_temperature_initial_layer[current_extruder] >45)}M106 P3 S50\n{endif}\nM142 P1 R35 S40\n{if activate_air_filtration[current_extruder] && support_air_filtration}\nM106 P3 S{during_print_exhaust_fan_speed_num[current_extruder]} \n{endif}"
]
}

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