Merge branch 'main' into local-fp
1
.gitattributes
vendored
Normal file
|
|
@ -0,0 +1 @@
|
|||
*.exe filter=lfs diff=lfs merge=lfs -text
|
||||
6
.github/workflows/build_check_cache.yml
vendored
|
|
@ -23,7 +23,9 @@ jobs:
|
|||
valid-cache: ${{ steps.cache_deps.outputs.cache-hit }}
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
lfs: 'true'
|
||||
|
||||
- name: set outputs
|
||||
id: set_outputs
|
||||
|
|
@ -38,7 +40,7 @@ jobs:
|
|||
|
||||
- name: load cache
|
||||
id: cache_deps
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ${{ steps.set_outputs.outputs.cache-path }}
|
||||
key: ${{ steps.set_outputs.outputs.cache-key }}
|
||||
|
|
|
|||
18
.github/workflows/build_deps.yml
vendored
|
|
@ -31,17 +31,19 @@ jobs:
|
|||
|
||||
# Setup the environment
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
lfs: 'true'
|
||||
|
||||
- name: load cached deps
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ${{ inputs.cache-path }}
|
||||
key: ${{ inputs.cache-key }}
|
||||
|
||||
- name: setup dev on Windows
|
||||
if: inputs.os == 'windows-latest'
|
||||
uses: microsoft/setup-msbuild@v1.1
|
||||
uses: microsoft/setup-msbuild@v2
|
||||
|
||||
- name: Get the date on Ubuntu and macOS
|
||||
if: inputs.os != 'windows-latest'
|
||||
|
|
@ -70,12 +72,12 @@ jobs:
|
|||
if: inputs.os == 'macos-12'
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: |
|
||||
brew install cmake git gettext automake texinfo
|
||||
brew install cmake git gettext automake texinfo ninja
|
||||
brew list
|
||||
mkdir -p ${{ github.workspace }}/deps/build_${{ inputs.arch }}
|
||||
mkdir -p ${{ github.workspace }}/deps/build_${{ inputs.arch }}/OrcaSlicer_dep_${{ inputs.arch }}
|
||||
brew uninstall --ignore-dependencies zstd
|
||||
./build_release_macos.sh -dp -a ${{ inputs.arch }} -t 10.15
|
||||
./build_release_macos.sh -dpx -a ${{ inputs.arch }} -t 10.15
|
||||
brew install zstd
|
||||
|
||||
|
||||
|
|
@ -101,21 +103,21 @@ jobs:
|
|||
# Upload Artifacts
|
||||
- name: Upload Mac ${{ inputs.arch }} artifacts
|
||||
if: inputs.os == 'macos-12'
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: OrcaSlicer_dep_mac_${{ inputs.arch }}_${{ env.date }}
|
||||
path: ${{ github.workspace }}/deps/build_${{ inputs.arch }}/OrcaSlicer_dep*.tar.gz
|
||||
|
||||
- name: Upload Windows artifacts
|
||||
if: inputs.os == 'windows-latest'
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: OrcaSlicer_dep_win64_${{ env.date }}
|
||||
path: ${{ github.workspace }}/deps/build/OrcaSlicer_dep*.zip
|
||||
|
||||
- name: Upload Ubuntu artifacts
|
||||
if: inputs.os == 'ubuntu-20.04'
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: OrcaSlicer_dep_ubuntu_${{ env.date }}
|
||||
path: ${{ github.workspace }}/deps/build/OrcaSlicer_dep_ubuntu_*.tar.gz
|
||||
|
|
|
|||
32
.github/workflows/build_orca.yml
vendored
|
|
@ -25,10 +25,12 @@ jobs:
|
|||
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
lfs: 'true'
|
||||
|
||||
- name: load cached deps
|
||||
uses: actions/cache@v3
|
||||
uses: actions/cache@v4
|
||||
with:
|
||||
path: ${{ inputs.cache-path }}
|
||||
key: ${{ inputs.cache-key }}
|
||||
|
|
@ -75,7 +77,7 @@ jobs:
|
|||
- name: Install tools mac
|
||||
if: inputs.os == 'macos-12'
|
||||
run: |
|
||||
brew install cmake git gettext tree
|
||||
brew install cmake git gettext tree ninja
|
||||
brew list
|
||||
mkdir -p ${{ github.workspace }}/deps/build_${{inputs.arch}}
|
||||
mkdir -p ${{ github.workspace }}/deps/build_${{inputs.arch}}/OrcaSlicer_dep_${{inputs.arch}}
|
||||
|
|
@ -85,7 +87,7 @@ jobs:
|
|||
if: inputs.os == 'macos-12'
|
||||
working-directory: ${{ github.workspace }}
|
||||
run: |
|
||||
./build_release_macos.sh -s -n -a ${{inputs.arch}} -t 10.15
|
||||
./build_release_macos.sh -s -n -x -a ${{inputs.arch}} -t 10.15
|
||||
|
||||
# Thanks to RaySajuuk, it's working now
|
||||
- name: Sign app and notary
|
||||
|
|
@ -123,14 +125,14 @@ jobs:
|
|||
|
||||
- name: Upload artifacts mac
|
||||
if: inputs.os == 'macos-12'
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}
|
||||
path: ${{ github.workspace }}/OrcaSlicer_Mac_${{inputs.arch}}_${{ env.ver }}.dmg
|
||||
|
||||
- name: Deploy Mac release
|
||||
if: github.ref == 'refs/heads/main' && inputs.os == 'macos-12'
|
||||
uses: WebFreak001/deploy-nightly@v3.0.0
|
||||
uses: WebFreak001/deploy-nightly@v3.1.0
|
||||
with:
|
||||
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label}
|
||||
release_id: 137995723
|
||||
|
|
@ -142,7 +144,7 @@ jobs:
|
|||
# Windows
|
||||
- name: setup MSVC
|
||||
if: inputs.os == 'windows-latest'
|
||||
uses: microsoft/setup-msbuild@v1.1
|
||||
uses: microsoft/setup-msbuild@v2
|
||||
|
||||
- name: Install nsis
|
||||
if: inputs.os == 'windows-latest'
|
||||
|
|
@ -175,28 +177,28 @@ jobs:
|
|||
|
||||
- name: Upload artifacts Win zip
|
||||
if: inputs.os == 'windows-latest'
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: OrcaSlicer_Windows_${{ env.ver }}_portable
|
||||
path: ${{ github.workspace }}/build/OrcaSlicer_Windows_${{ env.ver }}_portable.zip
|
||||
|
||||
- name: Upload artifacts Win installer
|
||||
if: inputs.os == 'windows-latest'
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: OrcaSlicer_Windows_${{ env.ver }}
|
||||
path: ${{ github.workspace }}/build/OrcaSlicer*.exe
|
||||
|
||||
- name: Upload artifacts Win PDB
|
||||
if: inputs.os == 'windows-latest'
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: PDB
|
||||
path: ${{ github.workspace }}/build/src/Release/Debug_PDB_${{ env.ver }}_for_developers_only.7z
|
||||
|
||||
- name: Deploy Windows release portable
|
||||
if: github.ref == 'refs/heads/main' && inputs.os == 'windows-latest'
|
||||
uses: WebFreak001/deploy-nightly@v3.0.0
|
||||
uses: WebFreak001/deploy-nightly@v3.1.0
|
||||
with:
|
||||
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label}
|
||||
release_id: 137995723
|
||||
|
|
@ -207,7 +209,7 @@ jobs:
|
|||
|
||||
- name: Deploy Windows release installer
|
||||
if: github.ref == 'refs/heads/main' && inputs.os == 'windows-latest'
|
||||
uses: WebFreak001/deploy-nightly@v3.0.0
|
||||
uses: WebFreak001/deploy-nightly@v3.1.0
|
||||
with:
|
||||
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label}
|
||||
release_id: 137995723
|
||||
|
|
@ -256,14 +258,14 @@ jobs:
|
|||
|
||||
- name: Upload artifacts Ubuntu
|
||||
if: inputs.os == 'ubuntu-20.04'
|
||||
uses: actions/upload-artifact@v3
|
||||
uses: actions/upload-artifact@v4
|
||||
with:
|
||||
name: OrcaSlicer_Linux_${{ env.ver }}
|
||||
path: './build/OrcaSlicer_Linux_${{ env.ver }}.AppImage'
|
||||
|
||||
- name: Deploy Ubuntu release
|
||||
if: github.ref == 'refs/heads/main' && inputs.os == 'ubuntu-20.04'
|
||||
uses: WebFreak001/deploy-nightly@v3.0.0
|
||||
uses: WebFreak001/deploy-nightly@v3.1.0
|
||||
with:
|
||||
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label}
|
||||
release_id: 137995723
|
||||
|
|
@ -274,7 +276,7 @@ jobs:
|
|||
|
||||
- name: Deploy orca_custom_preset_tests
|
||||
if: github.ref == 'refs/heads/main' && inputs.os == 'ubuntu-20.04'
|
||||
uses: WebFreak001/deploy-nightly@v3.0.0
|
||||
uses: WebFreak001/deploy-nightly@v3.1.0
|
||||
with:
|
||||
upload_url: https://uploads.github.com/repos/SoftFever/OrcaSlicer/releases/137995723/assets{?name,label}
|
||||
release_id: 137995723
|
||||
|
|
|
|||
2
.github/workflows/check_locale.yml
vendored
|
|
@ -14,7 +14,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Install gettext
|
||||
run: |
|
||||
|
|
|
|||
2
.github/workflows/check_profiles.yml
vendored
|
|
@ -13,7 +13,7 @@ jobs:
|
|||
runs-on: ubuntu-22.04
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
# download
|
||||
- name: Download
|
||||
|
|
|
|||
2
.github/workflows/publish_docs_to_wiki.yml
vendored
|
|
@ -20,7 +20,7 @@ jobs:
|
|||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout repository
|
||||
uses: actions/checkout@v3
|
||||
uses: actions/checkout@v4
|
||||
|
||||
# 1. Clone the current wiki master branch to a folder named `tmp_wiki`
|
||||
- name: Pull content from wiki
|
||||
|
|
|
|||
|
|
@ -258,6 +258,16 @@ 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)
|
||||
add_compile_options(-Wno-error=enum-constexpr-conversion)
|
||||
endif()
|
||||
|
||||
#GCC generates loads of -Wunknown-pragmas when compiling igl. The fix is not easy due to a bug in gcc, see
|
||||
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66943 or
|
||||
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=53431
|
||||
# We will turn the warning of for GCC for now:
|
||||
|
||||
if("${CMAKE_CXX_COMPILER_ID}" STREQUAL "GNU")
|
||||
# GCC generates loads of -Wunknown-pragmas when compiling igl. The fix is not easy due to a bug in gcc, see
|
||||
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=66943 or
|
||||
|
|
|
|||
|
|
@ -64,10 +64,11 @@ Explore the latest developments in Orca Slicer with our nightly builds. Feedback
|
|||
|
||||
# How to compile
|
||||
- Windows 64-bit
|
||||
- Tools needed: Visual Studio 2019, Cmake, git, Strawberry Perl.
|
||||
- Tools needed: Visual Studio 2019, Cmake, git, git-lfs, Strawberry Perl.
|
||||
- You will require cmake version 3.14 or later, which is available [on their website](https://cmake.org/download/).
|
||||
- Strawberry Perl is [available on their github repository](https://github.com/StrawberryPerl/Perl-Dist-Strawberry/releases/).
|
||||
- Run `build_release.bat` in `x64 Native Tools Command Prompt for VS 2019`
|
||||
- Note: Don't forget to run `git lfs pull` after cloning the repository to download tools on Windows
|
||||
|
||||
- Mac 64-bit
|
||||
- Tools needed: Xcode, Cmake, git, gettext, libtool, automake, autoconf, texinfo
|
||||
|
|
|
|||
|
|
@ -1,7 +1,10 @@
|
|||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
while getopts ":a:sdpt:hn" opt; do
|
||||
case ${opt} in
|
||||
set -e
|
||||
set -o pipefail
|
||||
|
||||
while getopts ":dpa:snt:xbc:h" opt; do
|
||||
case "${opt}" in
|
||||
d )
|
||||
export BUILD_TARGET="deps"
|
||||
;;
|
||||
|
|
@ -20,25 +23,72 @@ while getopts ":a:sdpt:hn" opt; do
|
|||
t )
|
||||
export OSX_DEPLOYMENT_TARGET="$OPTARG"
|
||||
;;
|
||||
x )
|
||||
export SLICER_CMAKE_GENERATOR="Ninja"
|
||||
export SLICER_BUILD_TARGET="all"
|
||||
export DEPS_CMAKE_GENERATOR="Ninja"
|
||||
;;
|
||||
b )
|
||||
export BUILD_ONLY="1"
|
||||
;;
|
||||
c )
|
||||
export BUILD_CONFIG="$OPTARG"
|
||||
;;
|
||||
h ) echo "Usage: ./build_release_macos.sh [-d]"
|
||||
echo " -d: Build deps only"
|
||||
echo " -a: Set ARCHITECTURE (arm64 or x86_64)"
|
||||
echo " -s: Build slicer only"
|
||||
echo " -n: Nightly build"
|
||||
echo " -t: Specify minimum version of the target platform, default is 11.3"
|
||||
echo " -x: Use Ninja CMake generator, default is Xcode"
|
||||
echo " -b: Build without reconfiguring CMake"
|
||||
echo " -c: Set CMake build configuration, default is Release"
|
||||
exit 0
|
||||
;;
|
||||
* )
|
||||
;;
|
||||
esac
|
||||
done
|
||||
|
||||
if [ -z "$ARCH" ]
|
||||
then
|
||||
export ARCH=$(uname -m)
|
||||
# Set defaults
|
||||
|
||||
if [ -z "$ARCH" ]; then
|
||||
ARCH="$(uname -m)"
|
||||
export ARCH
|
||||
fi
|
||||
|
||||
echo "Arch: $ARCH"
|
||||
echo "BUILD_TARGET: $BUILD_TARGET"
|
||||
echo "OSX_DEPLOYMENT_TARGET: $OSX_DEPLOYMENT_TARGET"
|
||||
if [ -z "$BUILD_CONFIG" ]; then
|
||||
export BUILD_CONFIG="Release"
|
||||
fi
|
||||
|
||||
if [ -z "$BUILD_TARGET" ]; then
|
||||
export BUILD_TARGET="all"
|
||||
fi
|
||||
|
||||
if [ -z "$SLICER_CMAKE_GENERATOR" ]; then
|
||||
export SLICER_CMAKE_GENERATOR="Xcode"
|
||||
fi
|
||||
|
||||
if [ -z "$SLICER_BUILD_TARGET" ]; then
|
||||
export SLICER_BUILD_TARGET="ALL_BUILD"
|
||||
fi
|
||||
|
||||
if [ -z "$DEPS_CMAKE_GENERATOR" ]; then
|
||||
export DEPS_CMAKE_GENERATOR="Unix Makefiles"
|
||||
fi
|
||||
|
||||
if [ -z "$OSX_DEPLOYMENT_TARGET" ]; then
|
||||
export OSX_DEPLOYMENT_TARGET="11.3"
|
||||
fi
|
||||
|
||||
echo "Build params:"
|
||||
echo " - ARCH: $ARCH"
|
||||
echo " - BUILD_CONFIG: $BUILD_CONFIG"
|
||||
echo " - BUILD_TARGET: $BUILD_TARGET"
|
||||
echo " - CMAKE_GENERATOR: $SLICER_CMAKE_GENERATOR for Slicer, $DEPS_CMAKE_GENERATOR for deps"
|
||||
echo " - OSX_DEPLOYMENT_TARGET: $OSX_DEPLOYMENT_TARGET"
|
||||
echo
|
||||
|
||||
# if which -s brew; then
|
||||
# brew --prefix libiconv
|
||||
# brew --prefix zstd
|
||||
|
|
@ -52,57 +102,122 @@ echo "OSX_DEPLOYMENT_TARGET: $OSX_DEPLOYMENT_TARGET"
|
|||
# exit 1
|
||||
# fi
|
||||
|
||||
PROJECT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
PROJECT_BUILD_DIR="$PROJECT_DIR/build_$ARCH"
|
||||
DEPS_DIR="$PROJECT_DIR/deps"
|
||||
DEPS_BUILD_DIR="$DEPS_DIR/build_$ARCH"
|
||||
DEPS="$DEPS_BUILD_DIR/OrcaSlicer_dep_$ARCH"
|
||||
|
||||
WD="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
||||
cd $WD/deps
|
||||
mkdir -p build_$ARCH
|
||||
cd build_$ARCH
|
||||
DEPS=$PWD/OrcaSlicer_dep_$ARCH
|
||||
mkdir -p $DEPS
|
||||
if [ "slicer." != $BUILD_TARGET. ];
|
||||
then
|
||||
echo "building deps..."
|
||||
echo "cmake ../ -DDESTDIR=$DEPS -DOPENSSL_ARCH=darwin64-${ARCH}-cc -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES:STRING=${ARCH} -DCMAKE_OSX_DEPLOYMENT_TARGET=${OSX_DEPLOYMENT_TARGET}"
|
||||
cmake ../ -DDESTDIR="$DEPS" -DOPENSSL_ARCH="darwin64-${ARCH}-cc" -DCMAKE_BUILD_TYPE=Release -DCMAKE_OSX_ARCHITECTURES:STRING=${ARCH} -DCMAKE_OSX_DEPLOYMENT_TARGET=${OSX_DEPLOYMENT_TARGET}
|
||||
cmake --build . --config Release --target deps
|
||||
if [ "1." == "$PACK_DEPS". ];
|
||||
then
|
||||
tar -zcvf OrcaSlicer_dep_mac_${ARCH}_$(date +"%Y%m%d").tar.gz OrcaSlicer_dep_$ARCH
|
||||
fi
|
||||
# Fix for Multi-config generators
|
||||
if [ "$SLICER_CMAKE_GENERATOR" == "Xcode" ]; then
|
||||
export BUILD_DIR_CONFIG_SUBDIR="/$BUILD_CONFIG"
|
||||
else
|
||||
export BUILD_DIR_CONFIG_SUBDIR=""
|
||||
fi
|
||||
|
||||
function build_deps() {
|
||||
echo "Building deps..."
|
||||
(
|
||||
set -x
|
||||
mkdir -p "$DEPS"
|
||||
cd "$DEPS_BUILD_DIR"
|
||||
if [ "1." != "$BUILD_ONLY". ]; then
|
||||
cmake .. \
|
||||
-G "${DEPS_CMAKE_GENERATOR}" \
|
||||
-DDESTDIR="$DEPS" \
|
||||
-DOPENSSL_ARCH="darwin64-${ARCH}-cc" \
|
||||
-DCMAKE_BUILD_TYPE="$BUILD_CONFIG" \
|
||||
-DCMAKE_OSX_ARCHITECTURES:STRING="${ARCH}" \
|
||||
-DCMAKE_OSX_DEPLOYMENT_TARGET="${OSX_DEPLOYMENT_TARGET}"
|
||||
fi
|
||||
cmake --build . --config "$BUILD_CONFIG" --target deps
|
||||
)
|
||||
}
|
||||
|
||||
if [ "deps." == "$BUILD_TARGET". ];
|
||||
then
|
||||
exit 0
|
||||
function pack_deps() {
|
||||
echo "Packing deps..."
|
||||
(
|
||||
set -x
|
||||
mkdir -p "$DEPS"
|
||||
cd "$DEPS_BUILD_DIR"
|
||||
tar -zcvf "OrcaSlicer_dep_mac_${ARCH}_$(date +"%Y%m%d").tar.gz" "OrcaSlicer_dep_$ARCH"
|
||||
)
|
||||
}
|
||||
|
||||
function build_slicer() {
|
||||
echo "Building slicer..."
|
||||
(
|
||||
set -x
|
||||
mkdir -p "$PROJECT_BUILD_DIR"
|
||||
cd "$PROJECT_BUILD_DIR"
|
||||
if [ "1." != "$BUILD_ONLY". ]; then
|
||||
cmake .. \
|
||||
-G "${SLICER_CMAKE_GENERATOR}" \
|
||||
-DBBL_RELEASE_TO_PUBLIC=1 \
|
||||
-DCMAKE_PREFIX_PATH="$DEPS/usr/local" \
|
||||
-DCMAKE_INSTALL_PREFIX="$PWD/OrcaSlicer" \
|
||||
-DCMAKE_BUILD_TYPE="$BUILD_CONFIG" \
|
||||
-DCMAKE_MACOSX_RPATH=ON \
|
||||
-DCMAKE_INSTALL_RPATH="${DEPS}/usr/local" \
|
||||
-DCMAKE_MACOSX_BUNDLE=ON \
|
||||
-DCMAKE_OSX_ARCHITECTURES="${ARCH}" \
|
||||
-DCMAKE_OSX_DEPLOYMENT_TARGET="${OSX_DEPLOYMENT_TARGET}"
|
||||
fi
|
||||
cmake --build . --config "$BUILD_CONFIG" --target "$SLICER_BUILD_TARGET"
|
||||
)
|
||||
|
||||
echo "Verify localization with gettext..."
|
||||
(
|
||||
cd "$PROJECT_DIR"
|
||||
./run_gettext.sh
|
||||
)
|
||||
|
||||
echo "Fix macOS app package..."
|
||||
(
|
||||
cd "$PROJECT_BUILD_DIR"
|
||||
mkdir -p OrcaSlicer
|
||||
cd OrcaSlicer
|
||||
# remove previously built app
|
||||
rm -rf ./OrcaSlicer.app
|
||||
# fully copy newly built app
|
||||
cp -pR "../src$BUILD_DIR_CONFIG_SUBDIR/OrcaSlicer.app" ./OrcaSlicer.app
|
||||
# fix resources
|
||||
resources_path=$(readlink ./OrcaSlicer.app/Contents/Resources)
|
||||
rm ./OrcaSlicer.app/Contents/Resources
|
||||
cp -R "$resources_path" ./OrcaSlicer.app/Contents/Resources
|
||||
# delete .DS_Store file
|
||||
find ./OrcaSlicer.app/ -name '.DS_Store' -delete
|
||||
)
|
||||
|
||||
# extract version
|
||||
# export ver=$(grep '^#define SoftFever_VERSION' ../src/libslic3r/libslic3r_version.h | cut -d ' ' -f3)
|
||||
# ver="_V${ver//\"}"
|
||||
# echo $PWD
|
||||
# if [ "1." != "$NIGHTLY_BUILD". ];
|
||||
# then
|
||||
# ver=${ver}_dev
|
||||
# fi
|
||||
|
||||
# zip -FSr OrcaSlicer${ver}_Mac_${ARCH}.zip OrcaSlicer.app
|
||||
}
|
||||
|
||||
case "${BUILD_TARGET}" in
|
||||
all)
|
||||
build_deps
|
||||
build_slicer
|
||||
;;
|
||||
deps)
|
||||
build_deps
|
||||
;;
|
||||
slicer)
|
||||
build_slicer
|
||||
;;
|
||||
*)
|
||||
echo "Unknown target: $BUILD_TARGET. Available targets: deps, slicer, all."
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
if [ "1." == "$PACK_DEPS". ]; then
|
||||
pack_deps
|
||||
fi
|
||||
|
||||
cd $WD
|
||||
mkdir -p build_$ARCH
|
||||
cd build_$ARCH
|
||||
echo "building slicer..."
|
||||
cmake .. -GXcode -DBBL_RELEASE_TO_PUBLIC=1 -DCMAKE_PREFIX_PATH="$DEPS/usr/local" -DCMAKE_INSTALL_PREFIX="$PWD/OrcaSlicer" -DCMAKE_BUILD_TYPE=Release -DCMAKE_MACOSX_RPATH=ON -DCMAKE_INSTALL_RPATH="$DEPS/usr/local" -DCMAKE_MACOSX_BUNDLE=ON -DCMAKE_OSX_ARCHITECTURES=${ARCH} -DCMAKE_OSX_DEPLOYMENT_TARGET=${OSX_DEPLOYMENT_TARGET}
|
||||
cmake --build . --config Release --target ALL_BUILD
|
||||
cd ..
|
||||
./run_gettext.sh
|
||||
cd build_$ARCH
|
||||
mkdir -p OrcaSlicer
|
||||
cd OrcaSlicer
|
||||
rm -r ./OrcaSlicer.app
|
||||
cp -pR ../src/Release/OrcaSlicer.app ./OrcaSlicer.app
|
||||
resources_path=$(readlink ./OrcaSlicer.app/Contents/Resources)
|
||||
rm ./OrcaSlicer.app/Contents/Resources
|
||||
cp -R $resources_path ./OrcaSlicer.app/Contents/Resources
|
||||
# delete .DS_Store file
|
||||
find ./OrcaSlicer.app/ -name '.DS_Store' -delete
|
||||
# extract version
|
||||
# export ver=$(grep '^#define SoftFever_VERSION' ../src/libslic3r/libslic3r_version.h | cut -d ' ' -f3)
|
||||
# ver="_V${ver//\"}"
|
||||
# echo $PWD
|
||||
# if [ "1." != "$NIGHTLY_BUILD". ];
|
||||
# then
|
||||
# ver=${ver}_dev
|
||||
# fi
|
||||
|
||||
|
||||
# zip -FSr OrcaSlicer${ver}_Mac_${ARCH}.zip OrcaSlicer.app
|
||||
|
|
|
|||
1
deps/TIFF/TIFF.cmake
vendored
|
|
@ -11,6 +11,7 @@ if (APPLE)
|
|||
-Dwebp:BOOL=OFF
|
||||
-Djbig:BOOL=OFF
|
||||
-Dzstd:BOOL=OFF
|
||||
-Dlibdeflate:BOOL=OFF
|
||||
-Dpixarlog:BOOL=OFF
|
||||
)
|
||||
else()
|
||||
|
|
|
|||
24
deps/wxWidgets/wxWidgets.cmake
vendored
|
|
@ -1,12 +1,16 @@
|
|||
set(_wx_git_tag v3.1.5)
|
||||
set(_wx_version 3.1.5)
|
||||
set(_wx_git_tag v${_wx_version})
|
||||
|
||||
set(_wx_toolkit "")
|
||||
set(_wx_private_font "-DwxUSE_PRIVATE_FONTS=1")
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||
set(_wx_private_font "-DwxUSE_PRIVATE_FONTS=1")
|
||||
|
||||
if(CMAKE_SYSTEM_NAME STREQUAL "Linux")
|
||||
set(_gtk_ver 2)
|
||||
|
||||
if (DEP_WX_GTK3)
|
||||
set(_gtk_ver 3)
|
||||
endif ()
|
||||
|
||||
set(_wx_toolkit "-DwxBUILD_TOOLKIT=gtk${_gtk_ver}")
|
||||
endif()
|
||||
|
||||
|
|
@ -16,6 +20,7 @@ else ()
|
|||
set(_wx_edge "-DwxUSE_WEBVIEW_EDGE=OFF")
|
||||
endif ()
|
||||
|
||||
set(_wx_orcaslicer_patch "${CMAKE_CURRENT_LIST_DIR}/0001-wx-3.1.5-patch-for-Orca.patch")
|
||||
if (MSVC)
|
||||
set(_patch_cmd if not exist WXWIDGETS_PATCHED ( patch --verbose -p1 -l -i ${CMAKE_CURRENT_LIST_DIR}/0001-wx-3.1.5-patch-for-Orca.patch && type nul > WXWIDGETS_PATCHED ) )
|
||||
else ()
|
||||
|
|
@ -26,10 +31,23 @@ if (FLATPAK)
|
|||
set(_patch_cmd cat ${CMAKE_CURRENT_LIST_DIR}/0001-wx-3.1.5-patch-for-Orca.patch ${CMAKE_CURRENT_LIST_DIR}/0001-Add-support-for-building-WebView-with-libwebkit2gtk-.patch | patch --verbose -p1 -l)
|
||||
endif ()
|
||||
|
||||
# Note: for anybody wanting to switch to tarball fetching - this won't just work as
|
||||
# git apply expects a git repo. Either git init empty repo, or change patching method.
|
||||
# if (WIN32)
|
||||
# # Windows requires a different tarball because of configured line endings as stated in docs.
|
||||
# set(_wx_tarball_url https://github.com/wxWidgets/wxWidgets/releases/download/${_wx_git_tag}/wxWidgets-${_wx_version}.7z)
|
||||
# set(_wx_tarball_hash 99f5382312e4a4aea444ada07341a72c5d4a69b58d8e76586d4b94ede7f5ef4d)
|
||||
# else()
|
||||
# set(_wx_tarball_url https://github.com/wxWidgets/wxWidgets/releases/download/${_wx_git_tag}/wxWidgets-${_wx_version}.tar.bz2)
|
||||
# set(_wx_tarball_hash d7b3666de33aa5c10ea41bb9405c40326e1aeb74ee725bb88f90f1d50270a224)
|
||||
# endif()
|
||||
|
||||
orcaslicer_add_cmake_project(
|
||||
wxWidgets
|
||||
|
||||
URL "https://github.com/wxWidgets/wxWidgets/archive/refs/tags/v3.1.5.tar.gz"
|
||||
URL_HASH SHA256=e8fd5f9fbff864562aa4d9c094f898c97f5e1274c90f25beb0bfd5cb61319dea
|
||||
|
||||
PATCH_COMMAND ${_patch_cmd}
|
||||
DEPENDS ${PNG_PKG} ${ZLIB_PKG} ${EXPAT_PKG} ${TIFF_PKG} ${JPEG_PKG}
|
||||
CMAKE_ARGS
|
||||
|
|
|
|||
181
doc/Extrusion-rate-smoothing.md
Normal file
|
|
@ -0,0 +1,181 @@
|
|||
<h1>Extrusion rate smoothing</h1>
|
||||
|
||||
Extrusion rate smoothing (ERS), also known as pressure equalizer in Prusa Slicer, aims to **limit the rate of extrusion volume change to be below a user set threshold (the ERS value).** It aims to assist the printer firmware internal motion planners, pressure advance in achieving the desired nozzle flow and reducing deviations against the ideal flow.
|
||||
|
||||
This happens by reducing the stresses put on the extrusion system as well as reducing the absolute deviations from the ideal extrusion flow caused by pressure advance smooth time.
|
||||
|
||||
This feature is especially helpful when printing at high accelerations and large flow rates as the deviations are larger in these cases.
|
||||
|
||||

|
||||
|
||||
<h2>Theory</h2>
|
||||
|
||||
Enabling this feature creates a small **speed "ramp"** by slowing down and ramping up print speeds prior to and after the features causing a sudden change in extrusion flow rate needs, such as overhangs and overhang perimeters.
|
||||
|
||||
This works by breaking down the printed line segments into smaller "chunks", proportional to the ERS segment length, and reduces the print speed of these segments so that the **requested extrusion volumetric flow rate change is less than or equal to the ERS threshold**.
|
||||
|
||||
In summary, **it takes the "edge" off rapid extrusion changes caused by acceleration/deceleration as these are now spread over a longer distance and time.** Therefore, it can reduce wall artefacts that show when the print speeds change suddenly. These artefacts are occuring because the extruder and firmware cannot perfectly adhere to the requested by the slicer flow rates, especially when the extrusion rate is changing rapidly.
|
||||
|
||||
**The example below shows the artefact that is mitigated by ERS.**
|
||||

|
||||
|
||||
The bulging visible above is due to the extruder not being able to respond fast enough against the required speed change when printing with high accelerations and high speeds and requested to slow down for an overhang.
|
||||
|
||||
In the above scenario, the printer (Bambu Lab X1 Carbon) was requested to slow down from a 200mm/sec print speed to 40mm/sec at an acceleration of 5k/sec2. **The extruder could not keep up with the pressure change, resulting in a slight bump ahead at the point of speed change.**
|
||||
|
||||
This parameter interacts with the below printer kinematic settings and physical limits:
|
||||
|
||||
|
||||
**1. The limits of the extruder system** - how fast can it change pressure in the nozzle
|
||||
|
||||
**2. The configured pressure advance values** - that also affect pressure changes in the nozzle
|
||||
|
||||
**3. The acceleration profile of the printer** - higher accelerations mean higher pressure changes
|
||||
|
||||
**4. The pressure advance smooth time (klipper)** - higher smooth time means higher deviation from ideal extrusion, hence more opportunity for this feature to be useful.
|
||||
|
||||
|
||||
<h3>Acceleration vs. Extrusion rate smoothing</h3>
|
||||
A printer's motion system does not exactly follow the speed changes seen in the gcode preview screen of Orca slicer.
|
||||
|
||||
|
||||
When a speed change is requested, the firmware look ahead planner calculates the slow down needed to achieve the target speed. The rate of slowdown is limited by the move's acceleration value.
|
||||
|
||||
**Lets consider an example.** Assume printing an overhang wall with **2k external wall acceleration**, were the printer is called to slow down from **200mm/sec to 40mm/sec**.
|
||||
|
||||
This deceleration move would happen over approximately 9.6mm. This is derived from the following equation:
|
||||
|
||||

|
||||
|
||||

|
||||
|
||||
The time taken to decelerate to this new speed would be approx. 0.08 seconds, derived from the following equation:
|
||||
|
||||

|
||||
|
||||
A printer printing at 200mm/sec with a 0.42 line width and 0.16 layer height would be extruding plastic at approx. 12.16mm3/sec, as can also be seen from the below visual.
|
||||
|
||||

|
||||
|
||||
When the printer is extruding at 40mm/sec with the same line width and layer height as above, the flow rate is 2.43mm3/sec.
|
||||
|
||||
So what we are asking the extruder to do in this example is **slow down from 12.16mm3/sec flow to 2.43mm3/sec flow in 0.08 seconds** or an extrusion change rate of 121mm3/sec2.
|
||||
|
||||
**This value is proportional to the acceleration of the printer. At 4k this value doubles, at 1k it is half and is independent of the speed of movement or starting and ending speeds.**
|
||||
|
||||
**This value is also proportional to the line width - double the line width will result in double the extrusion rate change and vice versa. Same for layer height.**
|
||||
|
||||
So, continuing with the worked example, a 2k acceleration produces an extrusion rate change ramp of 121mm3/sec2. **Therefore, setting a value higher than this would not bring any benefit to the print quality as the motion system would slow down less aggressively based on its acceleration settings.**
|
||||
|
||||
**Therefore, the acceleration values act as a meaningfull upper limit to this setting.** An indicative set of values has been provided later in this page.
|
||||
|
||||
<h3>Pressure advance vs extrusion rate smoothing</h3>
|
||||
|
||||
Then we need to consider pressure advance and smooth time as factors that influence extrusion rate.
|
||||
|
||||
**Pressure Advance** adjusts the extruder's speed to account for the pressure changes inside the hot end’s melt zone. When the print head moves and extrudes filament, there's a delay between the movement of the extruder gear and the plastic being extruded due to the compressibility of the molten plastic in the hot end. This delay can cause too much plastic to be extruded when the print head starts moving or not enough plastic when the print head stops, leading to issues like blobbing or under-extrusion.
|
||||
|
||||
**Pressure Advance Smooth time** helps to mitigate potential negative effects on print quality due to the rapid changes in extruder flow rate, which are controlled by the Pressure Advance algorithm. This parameter essentially adds a smoothing effect to the adjustments made by Pressure Advance, aiming to prevent sharp or sudden changes in the extrusion rate.
|
||||
|
||||
When Pressure Advance adjusts the extruder speed to compensate for the pressure build-up or reduction in the hot end, it can lead to abrupt changes in the flow rate. These abrupt changes can potentially cause issues like:
|
||||
|
||||
1. Extruder motor skipping,
|
||||
2. Increased wear on the extruder gear and filament,
|
||||
3. Visible artifacts on the print surface due to non-uniform extrusion.
|
||||
|
||||
The smooth time setting introduces a controlled delay over which the Pressure Advance adjustments are spread out. This results in a more gradual application or reduction of extrusion pressure, leading to smoother transitions in filament flow.
|
||||
|
||||
The trade-off is extrusion accuracy. There is a deviation between the requested extrusion amount and the actual extrusion amount due to this smoothing.
|
||||
|
||||
**1. Increasing Smooth Time:** Leads to more gradual changes in extrusion pressure. While this can reduce artifacts and stress on the extruder system, setting it too high may diminish the effectiveness of Pressure Advance, as the compensation becomes too delayed to counteract the pressure dynamics accurately.
|
||||
|
||||
**2. Decreasing Smooth Time:** Makes the Pressure Advance adjustments more immediate, which can improve the responsiveness of pressure compensation but may also reintroduce abrupt changes in flow rate, potentially leading to the issues mentioned above.
|
||||
|
||||
In essence, p**ressure advance smooth time creates an intentional deviation from the ideal extruder rotation** and, therefore, extrusion amount, to allow the printer's extruder to perform within its mechanical limits. Typically, this value is set to 0.04sec, which means that when Pressure Advance adjusts the extruder's flow rate to compensate for changes in pressure within the hot end, these adjustments are spread out over a period of 0.04 seconds.
|
||||
|
||||
There is a great example of pressure advance smooth time induced deviations [here](https://klipper.discourse.group/t/pressure-advance-smooth-time-skews-pressure-advance/13451) that is worth a read to get more insight in this trade-off.
|
||||
|
||||
In the worked example above, **we need to set an Extrusion Rate smoothing value enough to decrease the error introduced by pressure advance smooth time against the produced output flow.** The lower the extrusion rate smoothing value, the lower the changes in flow over time hence the lower the absolute deviation from the ideal extrusion caused by the smooth time algorithm. However, going too low will result in a material decrease in overall print speed, as the print speed will be materially reduced to achieve low extrusion deviations between features, for no real benefit after a point.
|
||||
|
||||
**The best way to find what the lower beneficial limit is through experimentation.** Print an object with sharp overhangs that are slowed down because off the overhang print speed settings and observe for extrusion inconsistencies.
|
||||
|
||||
<h2>Finding the ideal Extrusion Rate smoothing value</h2>
|
||||
|
||||
**Firstly, this value needs to be lower than the extrusion rate changes resulting from the acceleration profile of the printer.** As, generally, the greatest impact is in external wall finish, use your external perimeter acceleration as a point of reference.
|
||||
|
||||
**Below are some approximate ERS values for 0.42 line width and 0.16 layer height.**
|
||||
1. 30mm3/sec for 0.5k acceleration
|
||||
2. 60.5mm3/sec for 1k acceleration
|
||||
3. 121mm3/sec2 for 2k acceleration
|
||||
4. 242mm3/sec2 for 4k acceleration
|
||||
|
||||
**Below are some approximate ERS values for 0.42 line width and 0.20 layer height.**
|
||||
1. 38mm3/sec for 0.5k acceleration
|
||||
2. 76mm3/sec for 1k acceleration
|
||||
3. 150mm3/sec2 for 2k acceleration
|
||||
4. 300mm3/sec2 for 4k acceleration
|
||||
|
||||
**Below are some approximate ERS values for 0.45 line width and 0.16 layer height.**
|
||||
1. 32mm3/sec for 0.5k acceleration
|
||||
2. 65mm3/sec for 1k acceleration
|
||||
3. 129mm3/sec2 for 2k acceleration
|
||||
4. 260mm3/sec2 for 4k acceleration
|
||||
|
||||
**So, your tuning starting point needs to be an ERS value that is less than this.** A good point experiment with test prints would be **a value of 60-80%** of the above maximum values. This will give some meaningful assistance to pressure advance, reducing the deviation introduced by pressure advance smooth time. The greater the smooth time, the greater the quality benefit will be.
|
||||
|
||||
Therefore, for a **0.42 line width and 0.16 layer height**, the below are a recommended set of starting ERS values
|
||||
1. 18-25mm3/sec for 0.5k acceleration
|
||||
2. 35-50mm3/sec for 1k acceleration
|
||||
3. 70-100mm3/sec2 for 2k acceleration
|
||||
4. 145-200mm3/sec2 for 4k acceleration
|
||||
|
||||
If you are printing with a 0.2 layer height, you can increase these values by 25% and similarly reduce if printing with lower.
|
||||
|
||||
**The second factor is your extruder's mechanical abilities.** Direct drive extruders with a good grip on the filament typically are more responsive to extrusion rate changes. Similarly with stiff filaments. So, a Bowden printer or when printing softer material like TPU or soft PLAs like polyterra there is more opportunity for the extruder to slip or deviate from the desired extrusion amount due to mechanical grip or material deformation or just delay in propagating the pressure changes (in a Bowden setup).
|
||||
|
||||
**The final factor is the deviation introduced by pressure advance smooth time**, or equivalents in closed source firmware. The higher this value the larger the extrusion deviation from ideal. If you are using a direct drive extruder, reduce this value to 0.02 in your klipper firmware before tuning ERS, as a lower value results in lower deviations to mitigate. Then proceed to experimentaly tune ERS.
|
||||
|
||||
**So where does that leave us?**
|
||||
|
||||
Perform a test print with the above ERS settings as a starting point and adjust to your liking! If you notice budging on sharp overhangs where speed changes, like the hull of the benchy, reduce this value by 10% and try again.
|
||||
|
||||
If you're not noticing any artefacts, increase by 10%, but don’t go over the maximum values recommended above because then this feature would have no effect in your print.
|
||||
|
||||
<h2>A note for Bowden printers using marlin without pressure advance. </h2>
|
||||
If your printer is not equipped with pressure advance and, especially, if you are using a Bowden setup, you don’t have the benefit of pressure advance dynamically adjusting your flow.
|
||||
|
||||
|
||||
In this special case, ERS will be doing all the heavy lifting that pressure advance would typically perform. In this scenario a low value of 8-10mm3/sec is usually recommended, irrespective of your acceleration settings, to smooth out pressure changes in the extrusion system as much as possible without impacting print speed too much.
|
||||
|
||||
<h2>A note on ERS Segment length </h2>
|
||||
Ideally you want this value set to 1 to allow for the largest number of steps between each speed transition. However, this may result in a too large of a gcode, with too many commands sent to your MCU per second and it may not be able to keep up. It will also slow down the Orca slicer front end as the sliced model is more complex to render.
|
||||
|
||||
|
||||
For Klipper printers, a segment length of 1 works OK as the RPI or similar have enough computational power to handle the gcode command volume.
|
||||
|
||||
Similarly, for a Bambu lab printer, a segment length of 1 works well. **However, if you do notice your printer stuttering or stalling** (which may be the case with the lower powered P1 series printers) **or getting "Timer too close" errors** in Klipper, **increase this value to 2 or 3**. This would reduce the effectiveness of the setting but will present a more manageable load to your printer.
|
||||
|
||||
<h2>Limitations</h2>
|
||||
|
||||
**This feature can only work where speed changes are induced by the slicer** - for example when transitioning from fast to slow print moves when printing overhangs, bridges and from printing internal features to external features and vice versa.
|
||||
|
||||
However, it will not affect extruder behaviour when the printer is slowing down due to firmware commands - for example when turning around corners.
|
||||
|
||||
In this case, the printer slows down and then accelerates independently of what the slicer has requested. In this case, the slicer is commanding a consistent speed; however, the printer is adjusting this to operate within its printer kinematic limits (SCV/Jerk) and accelerations. As the slicer is not aware of this slow down, it cannot apply pre-emptive extrusion rate smoothing to the feature and instead, the changes are governed by the printer firmware exclusively.
|
||||
|
||||
<h2>Credits</h2>
|
||||
|
||||
**Original feature authors and creators:** The Prusa Slicer team, including [@bubnikv](https://github.com/bubnikv), [@hejllukas](https://github.com/hejllukas)
|
||||
|
||||
**Enhanced by:** [@MGunlogson](https://github.com/MGunlogson), introducing the feature to external perimeters, enhancing it by taking into account travel, retraction and implementing near-contiguous extrusions pressure equalizer adjustments.
|
||||
|
||||
**Ported to Orca:** [@igiannakas](https://github.com/igiannakas)
|
||||
|
||||
**Enhanced by:** [@noisyfox](https://github.com/Noisyfox), per object pressure equalization and fixing calculation logic bugs
|
||||
|
||||
**Wiki page:** [@igiannakas](https://github.com/igiannakas)
|
||||
|
||||
**Overall Orca owner and assurance:** [@softfever](https://github.com/SoftFever)
|
||||
|
||||
**Community testing and feedback:** [@HakunMatat4](https://github.com/HakunMatat4), [@psiberfunk](https://github.com/psiberfunk), [@u3dreal](https://github.com/u3dreal) and more
|
||||
|
||||
42
doc/adaptive-bed-mesh.md
Normal file
|
|
@ -0,0 +1,42 @@
|
|||
# Adaptive Bed Mesh Support
|
||||
Orca Slicer introduces comprehensive support for adaptive bed meshing across a variety of firmware, including Marlin, Klipper, and RepRapFirmware (RRF).
|
||||
This feature allows users to seamlessly integrate adaptive bed mesh commands within the Machine Start G-code.
|
||||
The implementation is designed to be straightforward, requiring no additional plugins or alterations to firmware settings, thereby enhancing user experience and print quality directly from Orca Slicer.
|
||||
|
||||
|
||||

|
||||
|
||||
## Settings in Orca Slicer:
|
||||
`Bed mesh min`: This option sets the min point for the allowed bed mesh area. Due to the probe's XY offset, most printers are unable to probe the entire bed. To ensure the probe point does not go outside the bed area, the minimum and maximum points of the bed mesh should be set appropriately. OrcaSlicer ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed these min/max points. This information can usually be obtained from your printer manufacturer. The default setting is (-99999, -99999), which means there are no limits, thus allowing probing across the entire bed.
|
||||
|
||||
`Bed mesh max`: This option sets the max point for the allowed bed mesh area. Due to the probe's XY offset, most printers are unable to probe the entire bed. To ensure the probe point does not go outside the bed area, the minimum and maximum points of the bed mesh should be set appropriately. OrcaSlicer ensures that adaptive_bed_mesh_min/adaptive_bed_mesh_max values do not exceed these min/max points. This information can usually be obtained from your printer manufacturer. The default setting is (99999, 99999), which means there are no limits, thus allowing probing across the entire bed.
|
||||
|
||||
`Probe point distance`: This option sets the preferred distance between probe points (grid size) for the X and Y directions, with the default being 50mm for both X and Y.
|
||||
|
||||
`Mesh margin`: This option determines the additional distance by which the adaptive bed mesh area should be expanded in the XY directions. Note for Klipper users: Orca Slicer will adjust adaptive bed mesh area according to the margin. It is recommended to set the margin to 0 in Klipper config or pass 0 when calling BED_MESH_CALIBRATE command(please refer to the example below).
|
||||
|
||||
## Available g-code variables for Adaptive Bed Mesh Command
|
||||
`bed_mesh_probe_count`: Represents the probe count in the X and Y directions. This value is calculated based on the size of the adaptive bed mesh area and the distance between probe points.
|
||||
|
||||
`adaptive_bed_mesh_min`: Specifies the minimum coordinates of the adaptive bed mesh area, defining the starting point of the mesh.
|
||||
|
||||
`adaptive_bed_mesh_max`: Determines the maximum coordinates of the adaptive bed mesh area, indicating the endpoint of the mesh.
|
||||
|
||||
`ALGORITHM`: Identifies the algorithm used for adaptive bed mesh interpolation. This variable is useful for Klipper users. If bed_mesh_probe_count is less than 4, the algorithm is set to `lagrange`. Otherwise, it is set to `bicubic`.
|
||||
|
||||
## Example of Adaptive Bed Mesh usage in Orca Slicer:
|
||||
|
||||
### Marlin:
|
||||
```
|
||||
G29 X{bed_mesh_probe_count[0]} Y{bed_mesh_probe_count[1]} L{adaptive_bed_mesh_min[0]} R{adaptive_bed_mesh_max[0]} F{adaptive_bed_mesh_min[1]} B{adaptive_bed_mesh_max[1]} T V4
|
||||
```
|
||||
### Klipper:
|
||||
```
|
||||
; Always pass `ADAPTIVE_MARGIN=0` because Orca has already handled `adaptive_bed_mesh_margin` internally
|
||||
BED_MESH_CALIBRATE mesh_min={adaptive_bed_mesh_min[0]},{adaptive_bed_mesh_min[1]} mesh_max={adaptive_bed_mesh_max[0]},{adaptive_bed_mesh_max[1]} ALGORITHM=[bed_mesh_algo] PROBE_COUNT={bed_mesh_probe_count[0]},{bed_mesh_probe_count[1]} ADAPTIVE=1 ADAPTIVE_MARGIN=0
|
||||
```
|
||||
### RRF:
|
||||
```
|
||||
M557 X{adaptive_bed_mesh_min[0]}:{adaptive_bed_mesh_max[0]} Y{adaptive_bed_mesh_min[1]}:{adaptive_bed_mesh_max[1]} P{bed_mesh_probe_count[0]}:{bed_mesh_probe_count[1]}
|
||||
```
|
||||

|
||||
BIN
doc/images/ERS/artefact.jpeg
Normal file
|
After Width: | Height: | Size: 773 KiB |
BIN
doc/images/ERS/equation1.jpeg
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
doc/images/ERS/equation1terms.jpeg
Normal file
|
After Width: | Height: | Size: 36 KiB |
BIN
doc/images/ERS/equation2.jpeg
Normal file
|
After Width: | Height: | Size: 24 KiB |
BIN
doc/images/ERS/intro.jpg
Normal file
|
After Width: | Height: | Size: 783 KiB |
BIN
doc/images/ERS/printspeed.jpeg
Normal file
|
After Width: | Height: | Size: 68 KiB |
|
|
@ -8,7 +8,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-03 09:32+0800\n"
|
||||
"POT-Creation-Date: 2024-03-13 22:09+0800\n"
|
||||
"PO-Revision-Date: 2024-02-17 22:49+0100\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -3414,22 +3414,16 @@ msgstr ""
|
|||
"No - Renunciar a utilitzar el mode espiral aquesta vegada"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
"El perímetre addicional alternat només funciona amb el gruix vertical de la "
|
||||
"carcassa desactivat. "
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
"Canviar aquesta configuració automàticament? \n"
|
||||
"Sí - Desactivar assegurar el gruix vertical de la carcassa i activar un "
|
||||
"perímetre addicional alternat\n"
|
||||
"No - No utilitzar perímetre addicional alternat"
|
||||
|
||||
msgid ""
|
||||
"Prime tower does not work when Adaptive Layer Height or Independent Support "
|
||||
|
|
@ -3690,6 +3684,68 @@ msgstr ""
|
|||
msgid "default"
|
||||
msgstr "per defecte"
|
||||
|
||||
#, boost-format
|
||||
msgid "Edit Custom G-code (%1%)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Built-in placeholders (Double click item to add to G-code)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Search gcode placeholders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add selected placeholder to G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select placeholder"
|
||||
msgstr ""
|
||||
|
||||
msgid "[Global] Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Write"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print Statistics"
|
||||
msgstr ""
|
||||
|
||||
msgid "Objects Info"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Temperatures"
|
||||
msgstr ""
|
||||
|
||||
msgid "Timestamps"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Specific for %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Perfils"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Configuració d'impressio"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Configuració del Filament"
|
||||
|
||||
msgid "SLA Materials settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Configuració de la Impressora"
|
||||
|
||||
msgid "parameter name"
|
||||
msgstr "nom del paràmetre"
|
||||
|
||||
|
|
@ -3883,9 +3939,6 @@ msgstr "Imprimir"
|
|||
msgid "Printer"
|
||||
msgstr "Impressora"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Configuració d'impressio"
|
||||
|
||||
msgid "Custom g-code"
|
||||
msgstr "Codi-G personalitzat"
|
||||
|
||||
|
|
@ -5418,12 +5471,6 @@ msgstr "Comparar els perfils"
|
|||
msgid "View all object's settings"
|
||||
msgstr "Veure tots els paràmetres de l'objecte"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Configuració del Filament"
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Configuració de la Impressora"
|
||||
|
||||
msgid "Remove current plate (if not last one)"
|
||||
msgstr "Treure la placa actual ( si no és l'última )"
|
||||
|
||||
|
|
@ -6175,9 +6222,6 @@ msgstr ""
|
|||
"Si està activat, fa els clculs automàticament cada vegada que canviï el "
|
||||
"color."
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Perfils"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr ""
|
||||
"Sincronització automàtica dels perfils de l'usuari ( Impressora/Filament/"
|
||||
|
|
@ -8665,6 +8709,33 @@ msgid ""
|
|||
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
"surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "Generant Faldilla i Vora d'Adherència"
|
||||
|
||||
|
|
@ -9198,7 +9269,7 @@ msgstr ""
|
|||
"invers a 0 de manera que totes els perímetres interns s'imprimeixin en "
|
||||
"direccions alternes en capes senars, independentment del seu grau de voladís."
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -9584,21 +9655,19 @@ msgstr "Assegurar el gruix de la carcassa vertical"
|
|||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"Afegir farciment sòlid a prop de les superfícies inclinades per garantir el "
|
||||
"gruix vertical requerit ( capes sòlides superior+inferior )."
|
||||
|
||||
msgid "Further reduce solid infill on walls (beta)"
|
||||
"thickness (top+bottom solid layers)\n"
|
||||
"None: No solid infill will be added anywhere. Caution: Use this option "
|
||||
"carefully if your model has sloped surfaces\n"
|
||||
"Critical Only: Avoid adding solid infill for walls\n"
|
||||
"Moderate: Add solid infill for heavily sloping surfaces only\n"
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Further reduces any solid infill applied to walls. As there will be very "
|
||||
"limited infill supporting solid surfaces, make sure that you are using "
|
||||
"adequate number of walls to support the part on sloping surfaces.\n"
|
||||
"\n"
|
||||
"For heavily sloped surfaces this option is not suitable as it will generate "
|
||||
"too thin of a top layer and should be disabled."
|
||||
msgid "Critical Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface pattern"
|
||||
|
|
@ -11681,6 +11750,45 @@ msgstr ""
|
|||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
"seam.\n"
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
"print scarf joints at a slow speed (less than 100 mm/s). It's also "
|
||||
"advisable to enable 'Extrusion rate smoothing' if the set speed varies "
|
||||
"significantly from the speed of the outer or inner walls. If the speed "
|
||||
"specified here is higher than the speed of the outer or inner walls, the "
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr ""
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -15285,6 +15393,31 @@ msgstr ""
|
|||
"augmentar adequadament la temperatura del llit pot reduir la probabilitat de "
|
||||
"deformació."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Alternate extra wall only works with ensure vertical shell thickness "
|
||||
#~ "disabled. "
|
||||
#~ msgstr ""
|
||||
#~ "El perímetre addicional alternat només funciona amb el gruix vertical de "
|
||||
#~ "la carcassa desactivat. "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Change these settings automatically? \n"
|
||||
#~ "Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
#~ "wall\n"
|
||||
#~ "No - Dont use alternate extra wall"
|
||||
#~ msgstr ""
|
||||
#~ "Canviar aquesta configuració automàticament? \n"
|
||||
#~ "Sí - Desactivar assegurar el gruix vertical de la carcassa i activar un "
|
||||
#~ "perímetre addicional alternat\n"
|
||||
#~ "No - No utilitzar perímetre addicional alternat"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Afegir farciment sòlid a prop de les superfícies inclinades per garantir "
|
||||
#~ "el gruix vertical requerit ( capes sòlides superior+inferior )."
|
||||
|
||||
#~ msgid " "
|
||||
#~ msgstr " "
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-03 09:32+0800\n"
|
||||
"POT-Creation-Date: 2024-03-13 22:09+0800\n"
|
||||
"PO-Revision-Date: 2023-09-30 15:15+0200\n"
|
||||
"Last-Translator: René Mošner <Renemosner@seznam.cz>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -3354,14 +3354,14 @@ msgstr ""
|
|||
"Ne - zrušit povolení spirálového režimu"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3616,6 +3616,68 @@ msgstr ""
|
|||
msgid "default"
|
||||
msgstr "výchozí"
|
||||
|
||||
#, boost-format
|
||||
msgid "Edit Custom G-code (%1%)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Built-in placeholders (Double click item to add to G-code)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Search gcode placeholders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add selected placeholder to G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select placeholder"
|
||||
msgstr ""
|
||||
|
||||
msgid "[Global] Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Write"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print Statistics"
|
||||
msgstr ""
|
||||
|
||||
msgid "Objects Info"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Temperatures"
|
||||
msgstr ""
|
||||
|
||||
msgid "Timestamps"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Specific for %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Předvolby"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Nastavení tisku"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Nastavení filamentu"
|
||||
|
||||
msgid "SLA Materials settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Nastavení tiskárny"
|
||||
|
||||
msgid "parameter name"
|
||||
msgstr "název parametru"
|
||||
|
||||
|
|
@ -3809,9 +3871,6 @@ msgstr "Tisk"
|
|||
msgid "Printer"
|
||||
msgstr "Tiskárna"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Nastavení tisku"
|
||||
|
||||
msgid "Custom g-code"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5331,12 +5390,6 @@ msgstr "Porovnání přednastavení"
|
|||
msgid "View all object's settings"
|
||||
msgstr "Zobrazit všechna nastavení objektu"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Nastavení filamentu"
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Nastavení tiskárny"
|
||||
|
||||
msgid "Remove current plate (if not last one)"
|
||||
msgstr "Odebrat aktuální podložku (pokud není poslední)"
|
||||
|
||||
|
|
@ -6066,9 +6119,6 @@ msgstr ""
|
|||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Předvolby"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr ""
|
||||
"Automatická synchronizace uživatelských předvoleb (Tiskárna/Filament/Proces)"
|
||||
|
|
@ -8485,6 +8535,33 @@ msgid ""
|
|||
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
"surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "Generování Obrysu a Límce"
|
||||
|
||||
|
|
@ -8990,7 +9067,7 @@ msgid ""
|
|||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -9329,21 +9406,19 @@ msgstr "Zajistit tloušťku svislých stěn"
|
|||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"Přidá plnou výplň u šikmých ploch pro garanci tloušťky svislých stěn "
|
||||
"(vrchních a spodních plných vrstev)"
|
||||
|
||||
msgid "Further reduce solid infill on walls (beta)"
|
||||
"thickness (top+bottom solid layers)\n"
|
||||
"None: No solid infill will be added anywhere. Caution: Use this option "
|
||||
"carefully if your model has sloped surfaces\n"
|
||||
"Critical Only: Avoid adding solid infill for walls\n"
|
||||
"Moderate: Add solid infill for heavily sloping surfaces only\n"
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Further reduces any solid infill applied to walls. As there will be very "
|
||||
"limited infill supporting solid surfaces, make sure that you are using "
|
||||
"adequate number of walls to support the part on sloping surfaces.\n"
|
||||
"\n"
|
||||
"For heavily sloped surfaces this option is not suitable as it will generate "
|
||||
"too thin of a top layer and should be disabled."
|
||||
msgid "Critical Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface pattern"
|
||||
|
|
@ -11306,6 +11381,45 @@ msgstr ""
|
|||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
"seam.\n"
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
"print scarf joints at a slow speed (less than 100 mm/s). It's also "
|
||||
"advisable to enable 'Extrusion rate smoothing' if the set speed varies "
|
||||
"significantly from the speed of the outer or inner walls. If the speed "
|
||||
"specified here is higher than the speed of the outer or inner walls, the "
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr ""
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -14663,6 +14777,13 @@ msgid ""
|
|||
"probability of warping."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Přidá plnou výplň u šikmých ploch pro garanci tloušťky svislých stěn "
|
||||
#~ "(vrchních a spodních plných vrstev)"
|
||||
|
||||
#~ msgid " "
|
||||
#~ msgstr " "
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-03 09:32+0800\n"
|
||||
"POT-Creation-Date: 2024-03-13 22:09+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Heiko Liebscher <hliebschergmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -681,7 +681,7 @@ msgstr "Text drehen"
|
|||
|
||||
#. TRN - Title in Undo/Redo stack after move with text along emboss axe - From surface
|
||||
msgid "Text move"
|
||||
msgstr "Text verschieben"
|
||||
msgstr "Text verschieben"
|
||||
|
||||
msgid "Set Mirror"
|
||||
msgstr "Spiegel setzen"
|
||||
|
|
@ -3455,22 +3455,16 @@ msgstr ""
|
|||
"Nein - Spiralmodus nicht aktivieren"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
"Die alternative zusätzliche Wand funktioniert nur, wenn die vertikale "
|
||||
"Schalendicke deaktiviert ist."
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
"Diese Einstellungen automatisch ändern? \n"
|
||||
"Ja - Vertikale Schalendicke deaktivieren und alternative zusätzliche Wand "
|
||||
"aktivieren\n"
|
||||
"Nein - Keine alternative zusätzliche Wand verwenden"
|
||||
|
||||
msgid ""
|
||||
"Prime tower does not work when Adaptive Layer Height or Independent Support "
|
||||
|
|
@ -3730,6 +3724,68 @@ msgstr ""
|
|||
msgid "default"
|
||||
msgstr "Standard"
|
||||
|
||||
#, boost-format
|
||||
msgid "Edit Custom G-code (%1%)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Built-in placeholders (Double click item to add to G-code)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Search gcode placeholders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add selected placeholder to G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select placeholder"
|
||||
msgstr ""
|
||||
|
||||
msgid "[Global] Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Write"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print Statistics"
|
||||
msgstr ""
|
||||
|
||||
msgid "Objects Info"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Temperatures"
|
||||
msgstr ""
|
||||
|
||||
msgid "Timestamps"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Specific for %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Voreinstellungen"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Druckeinstellungen"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Filamenteinstellungen"
|
||||
|
||||
msgid "SLA Materials settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Drucker-Einstellungen"
|
||||
|
||||
msgid "parameter name"
|
||||
msgstr "Parametername"
|
||||
|
||||
|
|
@ -3923,9 +3979,6 @@ msgstr "aktuelle Platte drucken"
|
|||
msgid "Printer"
|
||||
msgstr "Drucker"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Druckeinstellungen"
|
||||
|
||||
msgid "Custom g-code"
|
||||
msgstr "Benutzerdefinierter G-Code"
|
||||
|
||||
|
|
@ -5465,12 +5518,6 @@ msgstr "Profile vergleichen"
|
|||
msgid "View all object's settings"
|
||||
msgstr "Alle Einstellungen des Objekts anzeigen"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Filamenteinstellungen"
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Drucker-Einstellungen"
|
||||
|
||||
msgid "Remove current plate (if not last one)"
|
||||
msgstr "entferne aktuelle Platte (wenn nicht die letzte)"
|
||||
|
||||
|
|
@ -6230,9 +6277,6 @@ msgstr "Reinigungsvolumen: Auto-Berechnung bei jeder Farbänderung."
|
|||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr "Wenn aktiviert, wird bei jeder Farbänderung automatisch berechnet."
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Voreinstellungen"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr "Benutzerprofile automatisch synchronisieren (Drucker/Filament/Prozess)"
|
||||
|
||||
|
|
@ -7103,12 +7147,11 @@ msgid ""
|
|||
msgstr ""
|
||||
"Wenn Sie diese Option aktivieren, wird die Form des Modells geändert. Wenn "
|
||||
"Ihr Druck präzise Abmessungen erfordert oder Teil einer Baugruppe ist, ist "
|
||||
"es wichtig, zu überprüfen, ob diese Änderung der Geometrie die Funktionalität "
|
||||
"Ihres Drucks beeinträchtigt."
|
||||
"es wichtig, zu überprüfen, ob diese Änderung der Geometrie die "
|
||||
"Funktionalität Ihres Drucks beeinträchtigt."
|
||||
|
||||
msgid "Are you sure you want to enable this option?"
|
||||
msgstr ""
|
||||
"Sind Sie sicher, dass Sie diese Option aktivieren möchten?"
|
||||
msgstr "Sind Sie sicher, dass Sie diese Option aktivieren möchten?"
|
||||
|
||||
msgid ""
|
||||
"Layer height is too small.\n"
|
||||
|
|
@ -7673,7 +7716,8 @@ msgstr "Wähle Voreinstellungen zum Vergleich aus"
|
|||
msgid ""
|
||||
"You can only transfer to current active profile because it has been modified."
|
||||
msgstr ""
|
||||
"Sie können nur in das aktuelle aktive Profil übertragen, da es geändert wurde."
|
||||
"Sie können nur in das aktuelle aktive Profil übertragen, da es geändert "
|
||||
"wurde."
|
||||
|
||||
msgid ""
|
||||
"Transfer the selected options from left preset to the right.\n"
|
||||
|
|
@ -8753,6 +8797,33 @@ msgstr ""
|
|||
"Das Einstellen der Ruckgeschwindigkeit zu niedrig kann zu Artefakten auf "
|
||||
"gebogenen Oberflächen führen"
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
"surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "Generieren von Schürze und Rand (skirt & brim)"
|
||||
|
||||
|
|
@ -9205,8 +9276,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Verbessern Sie die Schalenpräzision, indem Sie den Abstand der äußeren Wand "
|
||||
"anpassen. Dies verbessert auch die Schichtkonsistenz.\n"
|
||||
"Hinweis: Diese Einstellung wird nur wirksam, wenn die Wandsequenz auf "
|
||||
"Inner-Outer konfiguriert ist."
|
||||
"Hinweis: Diese Einstellung wird nur wirksam, wenn die Wandsequenz auf Inner-"
|
||||
"Outer konfiguriert ist."
|
||||
|
||||
msgid "Only one wall on top surfaces"
|
||||
msgstr "Nur eine Wand auf den oberen Flächen"
|
||||
|
|
@ -9315,7 +9386,7 @@ msgstr ""
|
|||
"Schichten unabhängig von ihrem Überhangsgrad in abwechselnden Richtungen "
|
||||
"gedruckt werden."
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr "Brücken für Senkungen"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -9703,29 +9774,20 @@ msgstr "Sicherstellung der vertikalen Wanddicke"
|
|||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
"thickness (top+bottom solid layers)\n"
|
||||
"None: No solid infill will be added anywhere. Caution: Use this option "
|
||||
"carefully if your model has sloped surfaces\n"
|
||||
"Critical Only: Avoid adding solid infill for walls\n"
|
||||
"Moderate: Add solid infill for heavily sloping surfaces only\n"
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
"In der Nähe von schrägen Flächen massive Füllungen hinzufügen, um die "
|
||||
"vertikale Wanddicke zu gewährleisten (obere + untere massive Schichten)."
|
||||
|
||||
msgid "Further reduce solid infill on walls (beta)"
|
||||
msgstr "Weitere Reduzierung des festen Infill an den Wänden (experimentell)"
|
||||
|
||||
msgid ""
|
||||
"Further reduces any solid infill applied to walls. As there will be very "
|
||||
"limited infill supporting solid surfaces, make sure that you are using "
|
||||
"adequate number of walls to support the part on sloping surfaces.\n"
|
||||
"\n"
|
||||
"For heavily sloped surfaces this option is not suitable as it will generate "
|
||||
"too thin of a top layer and should be disabled."
|
||||
msgid "Critical Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
"Reduziert das feste Infill an den Wänden weiter. Da nur sehr wenig Infill "
|
||||
"zur Unterstützung der massiven Oberflächen verwendet wird, stellen Sie "
|
||||
"sicher, dass Sie eine ausreichende Anzahl von Wänden verwenden, um das Teil "
|
||||
"auf schrägen Oberflächen zu stützen.\n"
|
||||
"\n"
|
||||
"Für stark geneigte Oberflächen ist diese Option nicht geeignet, da sie eine "
|
||||
"zu dünne obere Schicht erzeugt und deaktiviert werden sollte."
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Muster der Oberfläche"
|
||||
|
|
@ -9910,11 +9972,11 @@ msgid ""
|
|||
"\n"
|
||||
"This option will be disabled if sprial vase mode is enabled."
|
||||
msgstr ""
|
||||
"Die Richtung, in der die Wand-Schleifen extrudiert werden"
|
||||
"Standardmäßig werden alle Wände gegen den Uhrzeigersinn extrudiert, es sei "
|
||||
"denn, die Umkehrung bei ungeraden Schichten ist aktiviert. Wenn Sie dies auf "
|
||||
"eine Option außer Auto setzen, wird die Wandrichtung unabhängig von der "
|
||||
"Umkehrung bei ungeraden Schichten erzwungen.\n"
|
||||
"Die Richtung, in der die Wand-Schleifen extrudiert werdenStandardmäßig "
|
||||
"werden alle Wände gegen den Uhrzeigersinn extrudiert, es sei denn, die "
|
||||
"Umkehrung bei ungeraden Schichten ist aktiviert. Wenn Sie dies auf eine "
|
||||
"Option außer Auto setzen, wird die Wandrichtung unabhängig von der Umkehrung "
|
||||
"bei ungeraden Schichten erzwungen.\n"
|
||||
"Diese Option wird deaktiviert, wenn der Spiral-Vase-Modus aktiviert ist."
|
||||
|
||||
msgid "Counter clockwise"
|
||||
|
|
@ -9966,13 +10028,13 @@ msgstr ""
|
|||
"Diese Option legt den minimalen Punkt für den erlaubten Bett-Mesh-Bereich "
|
||||
"fest. Aufgrund des XY-Offsets der Sonde sind die meisten Drucker nicht in "
|
||||
"der Lage, das gesamte Bett abzutasten. Um sicherzustellen, dass der "
|
||||
"Abtastpunkt nicht außerhalb des Bettbereichs liegt, sollten die minimalen und "
|
||||
"maximalen Punkte des Bett-Mesh entsprechend festgelegt werden. OrcaSlicer "
|
||||
"stellt sicher, dass die Werte adaptive_bed_mesh_min/adaptive_bed_mesh_max "
|
||||
"diese Min-/Max-Punkte nicht überschreiten. Diese Informationen können in der "
|
||||
"Regel vom Druckerhersteller bezogen werden. Die Standardeinstellung ist "
|
||||
"(-99999, -99999), was bedeutet, dass es keine Grenzen gibt und somit das "
|
||||
"Abtasten über das gesamte Bett ermöglicht wird."
|
||||
"Abtastpunkt nicht außerhalb des Bettbereichs liegt, sollten die minimalen "
|
||||
"und maximalen Punkte des Bett-Mesh entsprechend festgelegt werden. "
|
||||
"OrcaSlicer stellt sicher, dass die Werte adaptive_bed_mesh_min/"
|
||||
"adaptive_bed_mesh_max diese Min-/Max-Punkte nicht überschreiten. Diese "
|
||||
"Informationen können in der Regel vom Druckerhersteller bezogen werden. Die "
|
||||
"Standardeinstellung ist (-99999, -99999), was bedeutet, dass es keine "
|
||||
"Grenzen gibt und somit das Abtasten über das gesamte Bett ermöglicht wird."
|
||||
|
||||
msgid "Bed mesh max"
|
||||
msgstr "Bett Max Abtastbereich"
|
||||
|
|
@ -9990,13 +10052,13 @@ msgstr ""
|
|||
"Diese Option legt den maximalen Punkt für den erlaubten Bett-Mesh-Bereich "
|
||||
"fest. Aufgrund des XY-Offsets der Sonde sind die meisten Drucker nicht in "
|
||||
"der Lage, das gesamte Bett abzutasten. Um sicherzustellen, dass der "
|
||||
"Abtastpunkt nicht außerhalb des Bettbereichs liegt, sollten die minimalen und "
|
||||
"maximalen Punkte des Bett-Mesh entsprechend festgelegt werden. OrcaSlicer "
|
||||
"stellt sicher, dass die Werte adaptive_bed_mesh_min/adaptive_bed_mesh_max "
|
||||
"diese Min-/Max-Punkte nicht überschreiten. Diese Informationen können in der "
|
||||
"Regel vom Druckerhersteller bezogen werden. Die Standardeinstellung ist "
|
||||
"(99999, 99999), was bedeutet, dass es keine Grenzen gibt und somit das "
|
||||
"Abtasten über das gesamte Bett ermöglicht wird."
|
||||
"Abtastpunkt nicht außerhalb des Bettbereichs liegt, sollten die minimalen "
|
||||
"und maximalen Punkte des Bett-Mesh entsprechend festgelegt werden. "
|
||||
"OrcaSlicer stellt sicher, dass die Werte adaptive_bed_mesh_min/"
|
||||
"adaptive_bed_mesh_max diese Min-/Max-Punkte nicht überschreiten. Diese "
|
||||
"Informationen können in der Regel vom Druckerhersteller bezogen werden. Die "
|
||||
"Standardeinstellung ist (99999, 99999), was bedeutet, dass es keine Grenzen "
|
||||
"gibt und somit das Abtasten über das gesamte Bett ermöglicht wird."
|
||||
|
||||
msgid "Probe point distance"
|
||||
msgstr "Abstand der Abtastpunkte"
|
||||
|
|
@ -11353,8 +11415,8 @@ msgid ""
|
|||
"cooling is enabled."
|
||||
msgstr ""
|
||||
"Die minimale Druckgeschwindigkeit, die der Drucker einhält, um zu versuchen, "
|
||||
"die minimale Schichtzeit einzuhalten, wenn die Verlangsamung für eine bessere "
|
||||
"Schichtkühlung aktiviert ist."
|
||||
"die minimale Schichtzeit einzuhalten, wenn die Verlangsamung für eine "
|
||||
"bessere Schichtkühlung aktiviert ist."
|
||||
|
||||
msgid "Nozzle diameter"
|
||||
msgstr "Düsendurchmesser"
|
||||
|
|
@ -11829,10 +11891,51 @@ msgstr ""
|
|||
"um das endgültige Produkt glatter und nahtloser aussehen zu lassen."
|
||||
|
||||
msgid "Scarf joint seam (beta)"
|
||||
msgstr "Schaltnaht (Beta)"
|
||||
msgstr "Schaltnaht (Beta)"
|
||||
|
||||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr "Benutze Schaltnaht um die Sichtbarkeit der Naht zu minimieren und die Nahtstärke zu erhöhen."
|
||||
msgstr ""
|
||||
"Benutze Schaltnaht um die Sichtbarkeit der Naht zu minimieren und die "
|
||||
"Nahtstärke zu erhöhen."
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
"seam.\n"
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
"print scarf joints at a slow speed (less than 100 mm/s). It's also "
|
||||
"advisable to enable 'Extrusion rate smoothing' if the set speed varies "
|
||||
"significantly from the speed of the outer or inner walls. If the speed "
|
||||
"specified here is higher than the speed of the outer or inner walls, the "
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr ""
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr "Start Höhe des Schalnaht"
|
||||
|
|
@ -13213,14 +13316,17 @@ msgid "Is extruder used?"
|
|||
msgstr "Wird der Extruder verwendet?"
|
||||
|
||||
msgid "Vector of bools stating whether a given extruder is used in the print."
|
||||
msgstr "Vektor von Booleschen Werten, die angeben, ob ein bestimmter Extruder im Druck verwendet wird."
|
||||
|
||||
msgstr ""
|
||||
"Vektor von Booleschen Werten, die angeben, ob ein bestimmter Extruder im "
|
||||
"Druck verwendet wird."
|
||||
|
||||
msgid "Volume per extruder"
|
||||
msgstr "Volumen pro Extruder"
|
||||
|
||||
msgid "Total filament volume extruded per extruder during the entire print."
|
||||
msgstr "Gesamtes Filamentvolumen, das pro Extruder während des gesamten Drucks extrudiert wurde."
|
||||
msgstr ""
|
||||
"Gesamtes Filamentvolumen, das pro Extruder während des gesamten Drucks "
|
||||
"extrudiert wurde."
|
||||
|
||||
msgid "Total toolchanges"
|
||||
msgstr "Gesamte Anzahl der Werkzeugwechsel"
|
||||
|
|
@ -13280,11 +13386,11 @@ msgid ""
|
|||
"individual objects. Indexing of the objects is zero-based (first object has "
|
||||
"index 0).\n"
|
||||
"Example: 'x:100% y:50% z:100'."
|
||||
msgstr "Enthält eine Zeichenfolge mit Informationen darüber, welche Skalierung auf die einzelnen Objekte angewendet wurde. Die Indizierung der Objekte ist nullbasiert (das erste Objekt hat den Index 0).\nBeispiel: 'x:100% y:50% z:100'."
|
||||
|
||||
msgid "Scale per instance"
|
||||
msgstr "Skalierung pro Instanz"
|
||||
|
||||
msgstr ""
|
||||
"Enthält eine Zeichenfolge mit Informationen darüber, welche Skalierung auf "
|
||||
"die einzelnen Objekte angewendet wurde. Die Indizierung der Objekte ist "
|
||||
"nullbasiert (das erste Objekt hat den Index 0).\n"
|
||||
"Beispiel: 'x:100% y:50% z:100'."
|
||||
|
||||
msgid "Input filename without extension"
|
||||
msgstr "Eingabedateiname ohne Erweiterung"
|
||||
|
|
@ -13360,8 +13466,8 @@ msgid ""
|
|||
"Names of the filament presets used for slicing. The variable is a vector "
|
||||
"containing one name for each extruder."
|
||||
msgstr ""
|
||||
"Name der Filamentvorgabe, die zum Slicen verwendet wird. Die Variable ist ein "
|
||||
"Vektor, der einen Namen für jeden Extruder enthält."
|
||||
"Name der Filamentvorgabe, die zum Slicen verwendet wird. Die Variable ist "
|
||||
"ein Vektor, der einen Namen für jeden Extruder enthält."
|
||||
|
||||
msgid "Printer preset name"
|
||||
msgstr "Name des Druckervorgaben"
|
||||
|
|
@ -13379,7 +13485,9 @@ msgid "Layer number"
|
|||
msgstr "Schichtnummer"
|
||||
|
||||
msgid "Index of the current layer. One-based (i.e. first layer is number 1)."
|
||||
msgstr "Index der aktuellen Schicht. Einsbasiert (d.h. die erste Schicht ist Nummer 1)."
|
||||
msgstr ""
|
||||
"Index der aktuellen Schicht. Einsbasiert (d.h. die erste Schicht ist Nummer "
|
||||
"1)."
|
||||
|
||||
msgid "Layer z"
|
||||
msgstr "Layer z"
|
||||
|
|
@ -13388,7 +13496,8 @@ msgid ""
|
|||
"Height of the current layer above the print bed, measured to the top of the "
|
||||
"layer."
|
||||
msgstr ""
|
||||
"Höhe der aktuellen Schicht über dem Druckbett, gemessen an der Oberseite der Schicht."
|
||||
"Höhe der aktuellen Schicht über dem Druckbett, gemessen an der Oberseite der "
|
||||
"Schicht."
|
||||
|
||||
msgid "Maximal layer z"
|
||||
msgstr "Maximale Schichtdicke z"
|
||||
|
|
@ -13396,7 +13505,6 @@ msgstr "Maximale Schichtdicke z"
|
|||
msgid "Height of the last layer above the print bed."
|
||||
msgstr "Höhe der letzten Schicht über dem Druckbett."
|
||||
|
||||
|
||||
msgid "Filament extruder ID"
|
||||
msgstr "Extruder-ID des Filaments"
|
||||
|
||||
|
|
@ -15494,6 +15602,53 @@ msgstr ""
|
|||
"wie z.B. ABS, durch eine entsprechende Erhöhung der Heizbetttemperatur die "
|
||||
"Wahrscheinlichkeit von Verwerfungen verringert werden kann."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Alternate extra wall only works with ensure vertical shell thickness "
|
||||
#~ "disabled. "
|
||||
#~ msgstr ""
|
||||
#~ "Die alternative zusätzliche Wand funktioniert nur, wenn die vertikale "
|
||||
#~ "Schalendicke deaktiviert ist."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Change these settings automatically? \n"
|
||||
#~ "Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
#~ "wall\n"
|
||||
#~ "No - Dont use alternate extra wall"
|
||||
#~ msgstr ""
|
||||
#~ "Diese Einstellungen automatisch ändern? \n"
|
||||
#~ "Ja - Vertikale Schalendicke deaktivieren und alternative zusätzliche Wand "
|
||||
#~ "aktivieren\n"
|
||||
#~ "Nein - Keine alternative zusätzliche Wand verwenden"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "In der Nähe von schrägen Flächen massive Füllungen hinzufügen, um die "
|
||||
#~ "vertikale Wanddicke zu gewährleisten (obere + untere massive Schichten)."
|
||||
|
||||
#~ msgid "Further reduce solid infill on walls (beta)"
|
||||
#~ msgstr "Weitere Reduzierung des festen Infill an den Wänden (experimentell)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Further reduces any solid infill applied to walls. As there will be very "
|
||||
#~ "limited infill supporting solid surfaces, make sure that you are using "
|
||||
#~ "adequate number of walls to support the part on sloping surfaces.\n"
|
||||
#~ "\n"
|
||||
#~ "For heavily sloped surfaces this option is not suitable as it will "
|
||||
#~ "generate too thin of a top layer and should be disabled."
|
||||
#~ msgstr ""
|
||||
#~ "Reduziert das feste Infill an den Wänden weiter. Da nur sehr wenig Infill "
|
||||
#~ "zur Unterstützung der massiven Oberflächen verwendet wird, stellen Sie "
|
||||
#~ "sicher, dass Sie eine ausreichende Anzahl von Wänden verwenden, um das "
|
||||
#~ "Teil auf schrägen Oberflächen zu stützen.\n"
|
||||
#~ "\n"
|
||||
#~ "Für stark geneigte Oberflächen ist diese Option nicht geeignet, da sie "
|
||||
#~ "eine zu dünne obere Schicht erzeugt und deaktiviert werden sollte."
|
||||
|
||||
#~ msgid "Scale per instance"
|
||||
#~ msgstr "Skalierung pro Instanz"
|
||||
|
||||
#~ msgid " "
|
||||
#~ msgstr " "
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-03 09:32+0800\n"
|
||||
"POT-Creation-Date: 2024-03-13 22:09+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -3307,14 +3307,14 @@ msgstr ""
|
|||
"No - Cancel enabling spiral mode"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3557,6 +3557,68 @@ msgstr ""
|
|||
msgid "default"
|
||||
msgstr "default"
|
||||
|
||||
#, boost-format
|
||||
msgid "Edit Custom G-code (%1%)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Built-in placeholders (Double click item to add to G-code)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Search gcode placeholders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add selected placeholder to G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select placeholder"
|
||||
msgstr ""
|
||||
|
||||
msgid "[Global] Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Write"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print Statistics"
|
||||
msgstr ""
|
||||
|
||||
msgid "Objects Info"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Temperatures"
|
||||
msgstr ""
|
||||
|
||||
msgid "Timestamps"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Specific for %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Presets"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Print settings"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Filament settings"
|
||||
|
||||
msgid "SLA Materials settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Printer settings"
|
||||
|
||||
msgid "parameter name"
|
||||
msgstr "parameter name"
|
||||
|
||||
|
|
@ -3750,9 +3812,6 @@ msgstr "Print"
|
|||
msgid "Printer"
|
||||
msgstr "Printer"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Print settings"
|
||||
|
||||
msgid "Custom g-code"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5238,12 +5297,6 @@ msgstr "Compare presets"
|
|||
msgid "View all object's settings"
|
||||
msgstr "View all object's settings"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Filament settings"
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Printer settings"
|
||||
|
||||
msgid "Remove current plate (if not last one)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5958,9 +6011,6 @@ msgstr ""
|
|||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Presets"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr "Auto sync user presets (Printer/Filament/Process)"
|
||||
|
||||
|
|
@ -8332,6 +8382,33 @@ msgid ""
|
|||
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
"surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "Generating skirt & brim"
|
||||
|
||||
|
|
@ -8821,7 +8898,7 @@ msgid ""
|
|||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -9151,21 +9228,19 @@ msgstr "Ensure vertical shell thickness"
|
|||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)."
|
||||
|
||||
msgid "Further reduce solid infill on walls (beta)"
|
||||
"thickness (top+bottom solid layers)\n"
|
||||
"None: No solid infill will be added anywhere. Caution: Use this option "
|
||||
"carefully if your model has sloped surfaces\n"
|
||||
"Critical Only: Avoid adding solid infill for walls\n"
|
||||
"Moderate: Add solid infill for heavily sloping surfaces only\n"
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Further reduces any solid infill applied to walls. As there will be very "
|
||||
"limited infill supporting solid surfaces, make sure that you are using "
|
||||
"adequate number of walls to support the part on sloping surfaces.\n"
|
||||
"\n"
|
||||
"For heavily sloped surfaces this option is not suitable as it will generate "
|
||||
"too thin of a top layer and should be disabled."
|
||||
msgid "Critical Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface pattern"
|
||||
|
|
@ -10935,6 +11010,45 @@ msgstr ""
|
|||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
"seam.\n"
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
"print scarf joints at a slow speed (less than 100 mm/s). It's also "
|
||||
"advisable to enable 'Extrusion rate smoothing' if the set speed varies "
|
||||
"significantly from the speed of the outer or inner walls. If the speed "
|
||||
"specified here is higher than the speed of the outer or inner walls, the "
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr ""
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -14092,6 +14206,13 @@ msgid ""
|
|||
"probability of warping."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)."
|
||||
|
||||
#~ msgid "Configuration package updated to "
|
||||
#~ msgstr "Configuration package updated to "
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-03 09:32+0800\n"
|
||||
"POT-Creation-Date: 2024-03-13 22:09+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: Guislain Cyril, Thomas Lété\n"
|
||||
|
|
@ -3443,22 +3443,16 @@ msgstr ""
|
|||
"Non - Annuler l'activation du mode spirale"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
"La paroi supplémentaire alternée ne fonctionne que si « Assurer l’épaisseur "
|
||||
"verticale de la coque » est désactivé. "
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
"Modifier ces paramètres automatiquement ? \n"
|
||||
"Oui - Désactiver « Assurer l’épaisseur verticale de la coque » et activer « "
|
||||
"Paroi supplémentaire alternée »\n"
|
||||
"Non - Ne pas utiliser « Paroi supplémentaire alternée »"
|
||||
|
||||
msgid ""
|
||||
"Prime tower does not work when Adaptive Layer Height or Independent Support "
|
||||
|
|
@ -3467,10 +3461,10 @@ msgid ""
|
|||
"YES - Keep Prime Tower\n"
|
||||
"NO - Keep Adaptive Layer Height and Independent Support Layer Height"
|
||||
msgstr ""
|
||||
"La tour de nettoyage ne fonctionne pas lorsque la hauteur de couche "
|
||||
"adaptative ou la hauteur de couche de support indépendante est activée. \n"
|
||||
"La tour de purge ne fonctionne pas lorsque la hauteur de couche adaptative "
|
||||
"ou la hauteur de couche de support indépendante est activée. \n"
|
||||
"Que souhaitez-vous conserver ? \n"
|
||||
"OUI - Conserver la tour de nettoyage \n"
|
||||
"OUI - Conserver la tour de purge \n"
|
||||
"NON - Conserver la hauteur de la couche adaptative et la hauteur de la "
|
||||
"couche de support indépendante"
|
||||
|
||||
|
|
@ -3480,10 +3474,10 @@ msgid ""
|
|||
"YES - Keep Prime Tower\n"
|
||||
"NO - Keep Adaptive Layer Height"
|
||||
msgstr ""
|
||||
"La tour de nettoyage ne fonctionne pas lorsque la hauteur de couche "
|
||||
"adaptative est activée. \n"
|
||||
"La tour de purge ne fonctionne pas lorsque la hauteur de couche adaptative "
|
||||
"est activée. \n"
|
||||
"Que souhaitez-vous conserver ? \n"
|
||||
"OUI - Conserver la tour de nettoyage \n"
|
||||
"OUI - Conserver la tour de purge \n"
|
||||
"NON - Conserver la hauteur de la couche adaptative"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -3492,10 +3486,10 @@ msgid ""
|
|||
"YES - Keep Prime Tower\n"
|
||||
"NO - Keep Independent Support Layer Height"
|
||||
msgstr ""
|
||||
"La tour de nettoyage ne fonctionne pas lorsque la hauteur de la couche de "
|
||||
"La tour de purge ne fonctionne pas lorsque la hauteur de la couche de "
|
||||
"support indépendante est activée.\n"
|
||||
"Que souhaitez-vous conserver ?\n"
|
||||
"OUI - Garder la tour de nettoyage\n"
|
||||
"OUI - Garder la tour de purge\n"
|
||||
"NON - Gardez la hauteur de la couche de support indépendante"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -7099,17 +7093,17 @@ msgid ""
|
|||
"Prime tower is required for smooth timeplase. There may be flaws on the "
|
||||
"model without prime tower. Are you sure you want to disable prime tower?"
|
||||
msgstr ""
|
||||
"Une tour de nettoyage est requise pour le mode Timeplase fluide. Il peut y "
|
||||
"avoir des défauts sur le modèle sans tour de nettoyage. Êtes-vous sûr de "
|
||||
"vouloir la désactiver ?"
|
||||
"Une tour de purge est requise pour le mode Timeplase fluide. Il peut y avoir "
|
||||
"des défauts sur le modèle sans tour de purge. Êtes-vous sûr de vouloir la "
|
||||
"désactiver ?"
|
||||
|
||||
msgid ""
|
||||
"Prime tower is required for smooth timelapse. There may be flaws on the "
|
||||
"model without prime tower. Do you want to enable prime tower?"
|
||||
msgstr ""
|
||||
"Une tour de nettoyage est requise pour un mode timelapse fluide. Il peut y "
|
||||
"avoir des défauts sur le modèle sans tour de nettoyage. Voulez-vous activer "
|
||||
"la désactiver?"
|
||||
"Une tour de purge est requise pour un mode timelapse fluide. Il peut y avoir "
|
||||
"des défauts sur le modèle sans tour de purge. Voulez-vous activer la "
|
||||
"désactiver?"
|
||||
|
||||
msgid "Still print by object?"
|
||||
msgstr "Vous imprimez toujours par objet ?"
|
||||
|
|
@ -7195,8 +7189,8 @@ msgstr "Ignorer"
|
|||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Lorsque vous enregistrez un timelapse sans tête d’outil, il est recommandé "
|
||||
"d’ajouter une \"Tour d’essuyage timelapse\".\n"
|
||||
|
|
@ -7274,7 +7268,7 @@ msgid "Tree supports"
|
|||
msgstr "Supports arborescents"
|
||||
|
||||
msgid "Prime tower"
|
||||
msgstr "Tour de nettoyage"
|
||||
msgstr "Tour de purge"
|
||||
|
||||
msgid "Special mode"
|
||||
msgstr "Mode spécial"
|
||||
|
|
@ -8629,7 +8623,7 @@ msgstr ""
|
|||
"de l'impression."
|
||||
|
||||
msgid "Prime Tower"
|
||||
msgstr "Tour de nettoyage"
|
||||
msgstr "Tour de purge"
|
||||
|
||||
msgid " is too close to others, and collisions may be caused.\n"
|
||||
msgstr ""
|
||||
|
|
@ -8725,47 +8719,46 @@ msgstr ""
|
|||
|
||||
msgid "The prime tower is not supported in \"By object\" print."
|
||||
msgstr ""
|
||||
"La tour de nettoyage n'est pas prise en charge dans l'impression \"Par "
|
||||
"objet\"."
|
||||
"La tour de purge n'est pas prise en charge dans l'impression \"Par objet\"."
|
||||
|
||||
msgid ""
|
||||
"The prime tower is not supported when adaptive layer height is on. It "
|
||||
"requires that all objects have the same layer height."
|
||||
msgstr ""
|
||||
"La tour de nettoyage n'est pas prise en charge lorsque la hauteur de couche "
|
||||
"La tour de purge n'est pas prise en charge lorsque la hauteur de couche "
|
||||
"adaptative est activée. Cela nécessite que tous les objets aient la même "
|
||||
"hauteur de couche."
|
||||
|
||||
msgid "The prime tower requires \"support gap\" to be multiple of layer height"
|
||||
msgstr ""
|
||||
"La tour de nettoyage nécessite que \"l'écart de support\" soit un multiple "
|
||||
"de la hauteur de la couche"
|
||||
"La tour de purge nécessite que \"l'écart de support\" soit un multiple de la "
|
||||
"hauteur de la couche"
|
||||
|
||||
msgid "The prime tower requires that all objects have the same layer heights"
|
||||
msgstr ""
|
||||
"La tour de nettoyage nécessite que tous les objets aient la même hauteur de "
|
||||
"La tour de purge nécessite que tous les objets aient la même hauteur de "
|
||||
"couche."
|
||||
|
||||
msgid ""
|
||||
"The prime tower requires that all objects are printed over the same number "
|
||||
"of raft layers"
|
||||
msgstr ""
|
||||
"La tour de nettoyage nécessite que tous les objets soient imprimés sur le "
|
||||
"même nombre de couche de radeau."
|
||||
"La tour de purge nécessite que tous les objets soient imprimés sur le même "
|
||||
"nombre de couche de radeau."
|
||||
|
||||
msgid ""
|
||||
"The prime tower requires that all objects are sliced with the same layer "
|
||||
"heights."
|
||||
msgstr ""
|
||||
"La tour de nettoyage nécessite que tous les objets soient découpés avec la "
|
||||
"même hauteur de couche."
|
||||
"La tour de purge nécessite que tous les objets soient découpés avec la même "
|
||||
"hauteur de couche."
|
||||
|
||||
msgid ""
|
||||
"The prime tower is only supported if all objects have the same variable "
|
||||
"layer height"
|
||||
msgstr ""
|
||||
"La tour de nettoyage n'est prise en charge que si tous les objets ont la "
|
||||
"même hauteur de couche variable"
|
||||
"La tour de purge n'est prise en charge que si tous les objets ont la même "
|
||||
"hauteur de couche variable"
|
||||
|
||||
msgid "Too small line width"
|
||||
msgstr "Largeur de ligne trop petite"
|
||||
|
|
@ -8776,8 +8769,8 @@ msgstr "Largeur de ligne trop grande"
|
|||
msgid ""
|
||||
"The prime tower requires that support has the same layer height with object."
|
||||
msgstr ""
|
||||
"La tour de nettoyage nécessite que le support ait la même hauteur de couche "
|
||||
"avec l'objet."
|
||||
"La tour de purge nécessite que le support ait la même hauteur de couche avec "
|
||||
"l'objet."
|
||||
|
||||
msgid ""
|
||||
"Organic support tree tip diameter must not be smaller than support material "
|
||||
|
|
@ -8842,6 +8835,51 @@ msgstr ""
|
|||
"Un réglage trop bas de la vitesse de saccade peut entraîner des artefacts "
|
||||
"sur les surfaces courbes."
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
"Le réglage du jerk dépasse le jerk maximum de l’imprimante "
|
||||
"(machine_max_jerk_x/machine_max_jerk_y).\n"
|
||||
"Orca plafonne automatiquement la vitesse de l’impulsion pour s’assurer "
|
||||
"qu’elle ne dépasse pas les capacités de l’imprimante.\n"
|
||||
"Vous pouvez ajuster le réglage du jerk maximum dans la configuration de "
|
||||
"votre imprimante pour obtenir des vitesses plus élevées."
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
"surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
"Le paramètre d’accélération dépasse l’accélération maximale de l’imprimante "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca limitera automatiquement la vitesse d’accélération pour s’assurer "
|
||||
"qu’elle ne dépasse pas les capacités de l’imprimante.\n"
|
||||
"Vous pouvez ajuster la valeur machine_max_acceleration_extruding dans la "
|
||||
"configuration de votre imprimante pour obtenir des vitesses plus élevées."
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
"Le réglage de la vitesse dépasse la vitesse maximale de l’imprimante "
|
||||
"(machine_max_speed_x/machine_max_speed_y).\n"
|
||||
"Orca plafonne automatiquement la vitesse d’impression pour s’assurer qu’elle "
|
||||
"ne dépasse pas les capacités de l’imprimante.\n"
|
||||
"Vous pouvez ajuster le paramètre de vitesse maximale dans la configuration "
|
||||
"de votre imprimante pour obtenir des vitesses plus élevées."
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "Génération jupe et bord"
|
||||
|
||||
|
|
@ -9411,7 +9449,7 @@ msgstr ""
|
|||
"s’impriment dans des directions alternées sur les couches impaires, quel que "
|
||||
"soit leur degré de surplomb."
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr "Trous de contre-trou de pont"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -9802,30 +9840,33 @@ msgstr "Assurer l'épaisseur verticale de la coque"
|
|||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
"thickness (top+bottom solid layers)\n"
|
||||
"None: No solid infill will be added anywhere. Caution: Use this option "
|
||||
"carefully if your model has sloped surfaces\n"
|
||||
"Critical Only: Avoid adding solid infill for walls\n"
|
||||
"Moderate: Add solid infill for heavily sloping surfaces only\n"
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
"Ajoutez du remplissage solide à proximité des surfaces inclinées pour "
|
||||
"garantir l'épaisseur verticale de la coque (couches solides supérieure"
|
||||
"+inférieure)."
|
||||
"Ajouter un remplissage solide près des surfaces inclinées pour garantir "
|
||||
"l’épaisseur verticale de la coque (couches solides supérieures et "
|
||||
"inférieures).\n"
|
||||
"Aucune : Aucun remplissage solide ne sera ajouté nulle part. Attention : "
|
||||
"Utilisez cette option avec précaution si votre modèle comporte des surfaces "
|
||||
"inclinées.\n"
|
||||
"Critique seulement : Évitez d’ajouter des remplissages solides pour les "
|
||||
"parois.\n"
|
||||
"Modéré : Ajouter un remplissage solide uniquement pour les surfaces "
|
||||
"fortement inclinées\n"
|
||||
"Tout : ajouter un remplissage solide pour toutes les surfaces inclinées "
|
||||
"appropriées.\n"
|
||||
"La valeur par défaut est Tous."
|
||||
|
||||
msgid "Further reduce solid infill on walls (beta)"
|
||||
msgstr "Réduire davantage le remplissage solide des parois (expérimental)"
|
||||
msgid "Critical Only"
|
||||
msgstr "Critique seulement"
|
||||
|
||||
msgid ""
|
||||
"Further reduces any solid infill applied to walls. As there will be very "
|
||||
"limited infill supporting solid surfaces, make sure that you are using "
|
||||
"adequate number of walls to support the part on sloping surfaces.\n"
|
||||
"\n"
|
||||
"For heavily sloped surfaces this option is not suitable as it will generate "
|
||||
"too thin of a top layer and should be disabled."
|
||||
msgstr ""
|
||||
"Réduit encore davantage les remplissages solides appliqués aux parois. Étant "
|
||||
"donné que le remplissage des surfaces solides sera très limité, assurez-vous "
|
||||
"que vous utilisez un nombre suffisant de parois pour soutenir la partie sur "
|
||||
"les surfaces inclinées.\n"
|
||||
"\n"
|
||||
"Pour les surfaces fortement inclinées, cette option n’est pas adaptée car "
|
||||
"elle génère une couche supérieure trop fine et doit être désactivée."
|
||||
msgid "Moderate"
|
||||
msgstr "Modéré"
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Motif de surface supérieure"
|
||||
|
|
@ -10335,7 +10376,7 @@ msgstr ""
|
|||
"cette vitesse."
|
||||
|
||||
msgid "Minimal purge on wipe tower"
|
||||
msgstr "Purge minimale sur la tour de nettoyage"
|
||||
msgstr "Purge minimale sur la tour de purge"
|
||||
|
||||
msgid ""
|
||||
"After a tool change, the exact position of the newly loaded filament inside "
|
||||
|
|
@ -10403,7 +10444,7 @@ msgstr ""
|
|||
"paramètres de l’imprimante n’est pas cochée). Une fois vérifié, une petite "
|
||||
"quantité de filament est rapidement extrudée sur la tour d’essuyage juste "
|
||||
"avant le changement d’outil. Cette option n’est utilisée que lorsque la tour "
|
||||
"de nettoyage est activée."
|
||||
"de purge est activée."
|
||||
|
||||
msgid "Multitool ramming volume"
|
||||
msgstr "Volume du pilonnage multi-outils"
|
||||
|
|
@ -11967,52 +12008,110 @@ msgstr ""
|
|||
"diamètre actuel de la buse. La valeur par défaut de ce paramètre est 10%."
|
||||
|
||||
msgid "Scarf joint seam (beta)"
|
||||
msgstr "Couture en écharpe (beta)"
|
||||
msgstr "Couture en biseau (beta)"
|
||||
|
||||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr ""
|
||||
"Utiliser une couture en écharpe pour minimiser la visibilité de la couture "
|
||||
"et augmenter sa solidité."
|
||||
"Utiliser une couture en biseau pour minimiser la visibilité de la couture et "
|
||||
"augmenter sa solidité."
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr "Couture en biseau conditionnelle"
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
"N’appliquer les couture en biseau que sur les périmètres lisses, lorsque les "
|
||||
"coutures traditionnelles ne permettent pas de dissimuler efficacement les "
|
||||
"coutures dans les angles saillants."
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr "Seuil d’angle conditionnel"
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
"seam.\n"
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
"Cette option définit l’angle seuil pour l’application d’une couture en "
|
||||
"biseau conditionnelle.\n"
|
||||
"Si l’angle maximal à l’intérieur de la boucle périmétrique dépasse cette "
|
||||
"valeur (indiquant l’absence d’angles vifs), une couture en biseau sera "
|
||||
"utilisée. La valeur par défaut est de 155°."
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr "Vitesse de la couture en biseau"
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
"print scarf joints at a slow speed (less than 100 mm/s). It's also "
|
||||
"advisable to enable 'Extrusion rate smoothing' if the set speed varies "
|
||||
"significantly from the speed of the outer or inner walls. If the speed "
|
||||
"specified here is higher than the speed of the outer or inner walls, the "
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
"Cette option définit la vitesse d’impression des coutures en biseau. Il est "
|
||||
"recommandé d’imprimer les coutures en biseau à une vitesse lente (moins de "
|
||||
"100 mm/s). Il est également conseillé d’activer l’option « Lissage de la "
|
||||
"vitesse d’extrusion » si la vitesse définie varie de manière significative "
|
||||
"par rapport à la vitesse des parois extérieures ou intérieures. Si la "
|
||||
"vitesse spécifiée ici est supérieure à la vitesse des parois extérieures ou "
|
||||
"intérieures, l’imprimante prendra par défaut la plus lente des deux "
|
||||
"vitesses. Lorsqu’elle est spécifiée sous forme de pourcentage (par exemple, "
|
||||
"80 %), la vitesse est calculée sur la base de la vitesse de la paroi "
|
||||
"extérieure ou intérieure. La valeur par défaut est fixée à 100 %."
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr "Ratio de débit de la couture en biseau"
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
"Ce facteur influe sur la quantité de matériau pour les coutures en biseau."
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr "Hauteur de départ de l’écharpe"
|
||||
msgstr "Hauteur de départ du biseau"
|
||||
|
||||
msgid ""
|
||||
"Start height of the scarf.\n"
|
||||
"This amount can be specified in millimeters or as a percentage of the "
|
||||
"current layer height. The default value for this parameter is 0."
|
||||
msgstr ""
|
||||
"Hauteur de départ de l’écharpe.\n"
|
||||
"Hauteur de départ du biseau.\n"
|
||||
"Cette hauteur peut être spécifiée en millimètres ou en pourcentage de la "
|
||||
"hauteur de la couche actuelle. La valeur par défaut de ce paramètre est 0."
|
||||
|
||||
msgid "Scarf around entire wall"
|
||||
msgstr "Écharpe sur toute la paroi"
|
||||
msgstr "Biseau sur toute la paroi"
|
||||
|
||||
msgid "The scarf extends to the entire length of the wall."
|
||||
msgstr "L’écharpe s’étend sur toute la longueur de la paroi."
|
||||
msgstr "Le biseau s’étend sur toute la longueur de la paroi."
|
||||
|
||||
msgid "Scarf length"
|
||||
msgstr "Longueur de l’écharpe"
|
||||
msgstr "Longueur du biseau"
|
||||
|
||||
msgid ""
|
||||
"Length of the scarf. Setting this parameter to zero effectively disables the "
|
||||
"scarf."
|
||||
msgstr ""
|
||||
"Longueur de l’écharpe. La mise à zéro de ce paramètre désactive "
|
||||
"automatiquement l’écharpe."
|
||||
"Longueur du biseau. La mise à zéro de ce paramètre désactive automatiquement "
|
||||
"le biseau."
|
||||
|
||||
msgid "Scarf steps"
|
||||
msgstr "Étapes de l’écharpe"
|
||||
msgstr "Étapes du biseau"
|
||||
|
||||
msgid "Minimum number of segments of each scarf."
|
||||
msgstr "Nombre minimum de segments de chaque écharpe."
|
||||
msgstr "Nombre minimum de segments de chaque biseau."
|
||||
|
||||
msgid "Scarf joint for inner walls"
|
||||
msgstr "Joint en écharpe pour les parois internes"
|
||||
msgstr "Joint en biseau pour les parois internes"
|
||||
|
||||
msgid "Use scarf joint for inner walls as well."
|
||||
msgstr "Utiliser également un joint en écharpe pour les parois intérieures."
|
||||
msgstr "Utiliser également un joint en biseau pour les parois intérieures."
|
||||
|
||||
msgid "Role base wipe speed"
|
||||
msgstr "Vitesse d’essuyage basée sur la vitesse d’extrusion"
|
||||
|
|
@ -12184,8 +12283,8 @@ msgstr ""
|
|||
"une vidéo timelapse une fois l'impression terminée. Si le mode lisse est "
|
||||
"sélectionné, l'extrudeur se déplace vers la goulotte d'évacuation à chaque "
|
||||
"couche imprimée, puis prend un cliché. Étant donné que le filament fondu "
|
||||
"peut s'échapper de la buse pendant la prise de vue, une tour de nettoyage "
|
||||
"est requise en mode lisse pour essuyer la buse."
|
||||
"peut s'échapper de la buse pendant la prise de vue, une tour de purge est "
|
||||
"requise en mode lisse pour essuyer la buse."
|
||||
|
||||
msgid "Traditional"
|
||||
msgstr "Traditionnel"
|
||||
|
|
@ -12865,7 +12964,7 @@ msgid "The volume of material to prime extruder on tower."
|
|||
msgstr "Le volume de matériau à amorcer l'extrudeuse sur la tour."
|
||||
|
||||
msgid "Width of prime tower"
|
||||
msgstr "Largeur de la tour de nettoyage."
|
||||
msgstr "Largeur de la tour de purge."
|
||||
|
||||
msgid "Wipe tower rotation angle"
|
||||
msgstr "Angle de rotation de la tour d’essuyage"
|
||||
|
|
@ -12922,7 +13021,7 @@ msgstr ""
|
|||
"matériaux de remplissage des objets. Cela peut réduire la quantité de "
|
||||
"déchets et le temps d'impression. Si les parois sont imprimées avec un "
|
||||
"filament transparent, le remplissage de couleurs mélangées sera visible. "
|
||||
"Cela ne prendra effet que si la tour de nettoyage est activée."
|
||||
"Cela ne prendra effet que si la tour de purge est activée."
|
||||
|
||||
msgid ""
|
||||
"Purging after filament change will be done inside objects' support. This may "
|
||||
|
|
@ -12931,7 +13030,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"La purge après le changement de filament se fera à l'intérieur du support "
|
||||
"des objets. Cela peut réduire la quantité de déchets et le temps "
|
||||
"d'impression. Cela ne prendra effet que si une tour de nettoyage est activée."
|
||||
"d'impression. Cela ne prendra effet que si une tour de purge est activée."
|
||||
|
||||
msgid ""
|
||||
"This object will be used to purge the nozzle after a filament change to save "
|
||||
|
|
@ -12941,7 +13040,7 @@ msgstr ""
|
|||
"Cet objet sera utilisé pour purger la buse après un changement de filament "
|
||||
"afin d'économiser du filament et de réduire le temps d'impression. Les "
|
||||
"couleurs des objets seront mélangées en conséquence. Cela ne prendra effet "
|
||||
"que si la tour de nettoyage est activée."
|
||||
"que si la tour de purge est activée."
|
||||
|
||||
msgid "Maximal bridging distance"
|
||||
msgstr "Distance de pont maximale"
|
||||
|
|
@ -13881,9 +13980,9 @@ msgstr ""
|
|||
"Wiki.\n"
|
||||
"\n"
|
||||
"Habituellement, la calibration est inutile. Lorsque vous démarrez une "
|
||||
"impression d'une seule couleur/matériau, avec l'option \"Calibration du "
|
||||
"débit\" cochée dans le menu de démarrage de l'impression, l'imprimante "
|
||||
"suivra l'ancienne méthode de calibration du filament avant l'impression.\n"
|
||||
"impression d'une seule couleur/matériau, avec l'option \"Calibration du débit"
|
||||
"\" cochée dans le menu de démarrage de l'impression, l'imprimante suivra "
|
||||
"l'ancienne méthode de calibration du filament avant l'impression.\n"
|
||||
"Lorsque vous démarrez une impression multi-couleurs/matériaux, l'imprimante "
|
||||
"utilise le paramètre de compensation par défaut pour le filament lors de "
|
||||
"chaque changement de filament, ce qui donne un bon résultat dans la plupart "
|
||||
|
|
@ -13903,11 +14002,11 @@ msgstr ""
|
|||
"Les résultats de calibration ont environ 10 % d'écart dans nos tests, ce qui "
|
||||
"peut faire en sorte que le résultat ne soit pas exactement le même à chaque "
|
||||
"calibration. Nous enquêtons toujours sur la cause première pour apporter des "
|
||||
"améliorations avec de nouvelles mises à jour."
|
||||
"Les résultats de calibration ont environ 10 % d'écart dans nos tests, ce qui "
|
||||
"peut faire en sorte que le résultat ne soit pas exactement le même à chaque "
|
||||
"calibration. Nous enquêtons toujours sur la cause première pour apporter des "
|
||||
"améliorations avec de nouvelles mises à jour."
|
||||
"améliorations avec de nouvelles mises à jour.Les résultats de calibration "
|
||||
"ont environ 10 % d'écart dans nos tests, ce qui peut faire en sorte que le "
|
||||
"résultat ne soit pas exactement le même à chaque calibration. Nous enquêtons "
|
||||
"toujours sur la cause première pour apporter des améliorations avec de "
|
||||
"nouvelles mises à jour."
|
||||
|
||||
msgid "When to use Flow Rate Calibration"
|
||||
msgstr "Nécessité de la calibration du débit"
|
||||
|
|
@ -14673,8 +14772,8 @@ msgstr ""
|
|||
"Voulez-vous le réécrire ?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Nous renommerions les préréglages en « Vendor Type Serial @printer you "
|
||||
|
|
@ -15681,6 +15780,51 @@ msgstr ""
|
|||
"déformer, tels que l’ABS, une augmentation appropriée de la température du "
|
||||
"plateau chauffant peut réduire la probabilité de déformation."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Alternate extra wall only works with ensure vertical shell thickness "
|
||||
#~ "disabled. "
|
||||
#~ msgstr ""
|
||||
#~ "La paroi supplémentaire alternée ne fonctionne que si « Assurer "
|
||||
#~ "l’épaisseur verticale de la coque » est désactivé. "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Change these settings automatically? \n"
|
||||
#~ "Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
#~ "wall\n"
|
||||
#~ "No - Dont use alternate extra wall"
|
||||
#~ msgstr ""
|
||||
#~ "Modifier ces paramètres automatiquement ? \n"
|
||||
#~ "Oui - Désactiver « Assurer l’épaisseur verticale de la coque » et activer "
|
||||
#~ "« Paroi supplémentaire alternée »\n"
|
||||
#~ "Non - Ne pas utiliser « Paroi supplémentaire alternée »"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Ajoutez du remplissage solide à proximité des surfaces inclinées pour "
|
||||
#~ "garantir l'épaisseur verticale de la coque (couches solides supérieure"
|
||||
#~ "+inférieure)."
|
||||
|
||||
#~ msgid "Further reduce solid infill on walls (beta)"
|
||||
#~ msgstr "Réduire davantage le remplissage solide des parois (expérimental)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Further reduces any solid infill applied to walls. As there will be very "
|
||||
#~ "limited infill supporting solid surfaces, make sure that you are using "
|
||||
#~ "adequate number of walls to support the part on sloping surfaces.\n"
|
||||
#~ "\n"
|
||||
#~ "For heavily sloped surfaces this option is not suitable as it will "
|
||||
#~ "generate too thin of a top layer and should be disabled."
|
||||
#~ msgstr ""
|
||||
#~ "Réduit encore davantage les remplissages solides appliqués aux parois. "
|
||||
#~ "Étant donné que le remplissage des surfaces solides sera très limité, "
|
||||
#~ "assurez-vous que vous utilisez un nombre suffisant de parois pour "
|
||||
#~ "soutenir la partie sur les surfaces inclinées.\n"
|
||||
#~ "\n"
|
||||
#~ "Pour les surfaces fortement inclinées, cette option n’est pas adaptée car "
|
||||
#~ "elle génère une couche supérieure trop fine et doit être désactivée."
|
||||
|
||||
#~ msgid "Text-Rotate"
|
||||
#~ msgstr "Rotation du texte"
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-03 09:32+0800\n"
|
||||
"POT-Creation-Date: 2024-03-13 22:09+0800\n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -3330,14 +3330,14 @@ msgstr ""
|
|||
"Nem - Ne használja a spirál módot ez alkalommal"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3581,6 +3581,68 @@ msgstr ""
|
|||
msgid "default"
|
||||
msgstr "alapértelmezett"
|
||||
|
||||
#, boost-format
|
||||
msgid "Edit Custom G-code (%1%)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Built-in placeholders (Double click item to add to G-code)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Search gcode placeholders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add selected placeholder to G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select placeholder"
|
||||
msgstr ""
|
||||
|
||||
msgid "[Global] Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Write"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print Statistics"
|
||||
msgstr ""
|
||||
|
||||
msgid "Objects Info"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Temperatures"
|
||||
msgstr ""
|
||||
|
||||
msgid "Timestamps"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Specific for %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Presets"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Nyomtatási beállítások"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Filament beállítások"
|
||||
|
||||
msgid "SLA Materials settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Nyomtató beállítások"
|
||||
|
||||
msgid "parameter name"
|
||||
msgstr "paraméter neve"
|
||||
|
||||
|
|
@ -3774,9 +3836,6 @@ msgstr "Nyomtatás"
|
|||
msgid "Printer"
|
||||
msgstr "Nyomtató"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Nyomtatási beállítások"
|
||||
|
||||
msgid "Custom g-code"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5265,12 +5324,6 @@ msgstr "Beállítások összehasonlítása"
|
|||
msgid "View all object's settings"
|
||||
msgstr "Összes objektum beállításainak megtekintése"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Filament beállítások"
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Nyomtató beállítások"
|
||||
|
||||
msgid "Remove current plate (if not last one)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5989,9 +6042,6 @@ msgstr ""
|
|||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Presets"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr ""
|
||||
"Felhasználói beállítások automatikus szinkronizálása (Nyomtató/Filament/"
|
||||
|
|
@ -8400,6 +8450,33 @@ msgid ""
|
|||
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
"surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "Szoknya & perem generálása"
|
||||
|
||||
|
|
@ -8892,7 +8969,7 @@ msgid ""
|
|||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -9222,21 +9299,19 @@ msgstr "Függőleges héjvastagság biztosítása"
|
|||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"A függőleges héjvastagság biztosítása érdekében szilárd kitöltést alkalmaz a "
|
||||
"lejtős felületek közelében."
|
||||
|
||||
msgid "Further reduce solid infill on walls (beta)"
|
||||
"thickness (top+bottom solid layers)\n"
|
||||
"None: No solid infill will be added anywhere. Caution: Use this option "
|
||||
"carefully if your model has sloped surfaces\n"
|
||||
"Critical Only: Avoid adding solid infill for walls\n"
|
||||
"Moderate: Add solid infill for heavily sloping surfaces only\n"
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Further reduces any solid infill applied to walls. As there will be very "
|
||||
"limited infill supporting solid surfaces, make sure that you are using "
|
||||
"adequate number of walls to support the part on sloping surfaces.\n"
|
||||
"\n"
|
||||
"For heavily sloped surfaces this option is not suitable as it will generate "
|
||||
"too thin of a top layer and should be disabled."
|
||||
msgid "Critical Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface pattern"
|
||||
|
|
@ -11014,6 +11089,45 @@ msgstr ""
|
|||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
"seam.\n"
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
"print scarf joints at a slow speed (less than 100 mm/s). It's also "
|
||||
"advisable to enable 'Extrusion rate smoothing' if the set speed varies "
|
||||
"significantly from the speed of the outer or inner walls. If the speed "
|
||||
"specified here is higher than the speed of the outer or inner walls, the "
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr ""
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -14184,6 +14298,13 @@ msgid ""
|
|||
"probability of warping."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "A függőleges héjvastagság biztosítása érdekében szilárd kitöltést "
|
||||
#~ "alkalmaz a lejtős felületek közelében."
|
||||
|
||||
#~ msgid "Configuration package updated to "
|
||||
#~ msgstr "Konfigurációs csomag frissítve a következőre "
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-03 09:32+0800\n"
|
||||
"POT-Creation-Date: 2024-03-13 22:09+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -3248,14 +3248,14 @@ msgstr ""
|
|||
"いいえ - 変更せず、スパイラルモードを有効しません"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3498,6 +3498,68 @@ msgstr ""
|
|||
msgid "default"
|
||||
msgstr "デフォルト"
|
||||
|
||||
#, boost-format
|
||||
msgid "Edit Custom G-code (%1%)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Built-in placeholders (Double click item to add to G-code)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Search gcode placeholders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add selected placeholder to G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select placeholder"
|
||||
msgstr ""
|
||||
|
||||
msgid "[Global] Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Write"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print Statistics"
|
||||
msgstr ""
|
||||
|
||||
msgid "Objects Info"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Temperatures"
|
||||
msgstr ""
|
||||
|
||||
msgid "Timestamps"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Specific for %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Presets"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "造形設定"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "フィラメント設定"
|
||||
|
||||
msgid "SLA Materials settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "プリンター設定"
|
||||
|
||||
msgid "parameter name"
|
||||
msgstr "パラメータ名"
|
||||
|
||||
|
|
@ -3690,9 +3752,6 @@ msgstr "造形する"
|
|||
msgid "Printer"
|
||||
msgstr "プリンター"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "造形設定"
|
||||
|
||||
msgid "Custom g-code"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5161,12 +5220,6 @@ msgstr "プリセットを比較"
|
|||
msgid "View all object's settings"
|
||||
msgstr "全てのオブジェクトの設定"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "フィラメント設定"
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "プリンター設定"
|
||||
|
||||
msgid "Remove current plate (if not last one)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5875,9 +5928,6 @@ msgstr ""
|
|||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Presets"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr "ユーザープリセットの自動同期 (プリンター/フィラメント/プロセス)"
|
||||
|
||||
|
|
@ -8186,6 +8236,33 @@ msgid ""
|
|||
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
"surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "スカートとブリムを生成"
|
||||
|
||||
|
|
@ -8644,7 +8721,7 @@ msgid ""
|
|||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -8965,19 +9042,19 @@ msgstr "壁の厚さを確保"
|
|||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr "傾斜面にソリッドインフィルを追加"
|
||||
|
||||
msgid "Further reduce solid infill on walls (beta)"
|
||||
"thickness (top+bottom solid layers)\n"
|
||||
"None: No solid infill will be added anywhere. Caution: Use this option "
|
||||
"carefully if your model has sloped surfaces\n"
|
||||
"Critical Only: Avoid adding solid infill for walls\n"
|
||||
"Moderate: Add solid infill for heavily sloping surfaces only\n"
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Further reduces any solid infill applied to walls. As there will be very "
|
||||
"limited infill supporting solid surfaces, make sure that you are using "
|
||||
"adequate number of walls to support the part on sloping surfaces.\n"
|
||||
"\n"
|
||||
"For heavily sloped surfaces this option is not suitable as it will generate "
|
||||
"too thin of a top layer and should be disabled."
|
||||
msgid "Critical Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface pattern"
|
||||
|
|
@ -10697,6 +10774,45 @@ msgstr ""
|
|||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
"seam.\n"
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
"print scarf joints at a slow speed (less than 100 mm/s). It's also "
|
||||
"advisable to enable 'Extrusion rate smoothing' if the set speed varies "
|
||||
"significantly from the speed of the outer or inner walls. If the speed "
|
||||
"specified here is higher than the speed of the outer or inner walls, the "
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr ""
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -13786,6 +13902,11 @@ msgid ""
|
|||
"probability of warping."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr "傾斜面にソリッドインフィルを追加"
|
||||
|
||||
#~ msgid "Configuration package updated to "
|
||||
#~ msgstr "構成パッケージがアップデートされました"
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-03 09:32+0800\n"
|
||||
"POT-Creation-Date: 2024-03-13 22:09+0800\n"
|
||||
"PO-Revision-Date: 2024-01-01 14:28+0900\n"
|
||||
"Last-Translator: Hotsolidinfill <138652683+Hotsolidinfill@users.noreply."
|
||||
"github.com>, crwusiz <crwusiz@naver.com>\n"
|
||||
|
|
@ -3320,19 +3320,16 @@ msgstr ""
|
|||
"아니오 - 이번에는 나선 모드 사용을 포기합니다"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
msgstr "대체 추가 벽은 수직 쉘 두께 보장을 비활성화한 상태에서만 작동합니다. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
"이 설정을 자동으로 변경하시겠습니까?\n"
|
||||
"예 - 수직 쉘 두께 확인을 비활성화하고 대체 추가 벽을 활성화합니다.\n"
|
||||
"아니요 - 대체 추가 벽을 사용하지 마세요"
|
||||
|
||||
msgid ""
|
||||
"Prime tower does not work when Adaptive Layer Height or Independent Support "
|
||||
|
|
@ -3583,6 +3580,68 @@ msgstr ""
|
|||
msgid "default"
|
||||
msgstr "기본값"
|
||||
|
||||
#, boost-format
|
||||
msgid "Edit Custom G-code (%1%)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Built-in placeholders (Double click item to add to G-code)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Search gcode placeholders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add selected placeholder to G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select placeholder"
|
||||
msgstr ""
|
||||
|
||||
msgid "[Global] Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Write"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print Statistics"
|
||||
msgstr ""
|
||||
|
||||
msgid "Objects Info"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Temperatures"
|
||||
msgstr ""
|
||||
|
||||
msgid "Timestamps"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Specific for %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "사전 설정"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "프린터 설정"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "필라멘트 설정"
|
||||
|
||||
msgid "SLA Materials settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "프린터 설정"
|
||||
|
||||
msgid "parameter name"
|
||||
msgstr "매개변수 이름"
|
||||
|
||||
|
|
@ -3776,9 +3835,6 @@ msgstr "출력"
|
|||
msgid "Printer"
|
||||
msgstr "프린터"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "프린터 설정"
|
||||
|
||||
msgid "Custom g-code"
|
||||
msgstr "사용자 정의 G코드"
|
||||
|
||||
|
|
@ -5276,12 +5332,6 @@ msgstr "사전 설정 비교"
|
|||
msgid "View all object's settings"
|
||||
msgstr "모든 개체 설정 보기"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "필라멘트 설정"
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "프린터 설정"
|
||||
|
||||
msgid "Remove current plate (if not last one)"
|
||||
msgstr "현재 플레이트 제거(마지막 플레이트가 아닌 경우)"
|
||||
|
||||
|
|
@ -6010,9 +6060,6 @@ msgstr "플러시 볼륨: 색상이 변경될 때마다 자동 계산됩니다."
|
|||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr "활성화하면 색상이 변경될 때마다 자동 계산됩니다."
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "사전 설정"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr "사용자 사전 설정 자동 동기화(프린터/필라멘트/프로세스)"
|
||||
|
||||
|
|
@ -8398,6 +8445,33 @@ msgid ""
|
|||
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
"surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "스커트 & 브림 생성 중"
|
||||
|
||||
|
|
@ -8909,7 +8983,7 @@ msgstr ""
|
|||
"벽이 교대로 출력되도록 임계값을 0으로 역방향오버행 정도에 관계없이 홀수 레이"
|
||||
"어의 방향입니다."
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -9250,21 +9324,19 @@ msgstr "수직 쉘 두께 확보"
|
|||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"경사진 표면 근처에 꽉찬 내부 채우기를 추가하여 수직 쉘 두께를 보장합니다 (상"
|
||||
"단+하단 꽉찬 레이어)"
|
||||
|
||||
msgid "Further reduce solid infill on walls (beta)"
|
||||
"thickness (top+bottom solid layers)\n"
|
||||
"None: No solid infill will be added anywhere. Caution: Use this option "
|
||||
"carefully if your model has sloped surfaces\n"
|
||||
"Critical Only: Avoid adding solid infill for walls\n"
|
||||
"Moderate: Add solid infill for heavily sloping surfaces only\n"
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Further reduces any solid infill applied to walls. As there will be very "
|
||||
"limited infill supporting solid surfaces, make sure that you are using "
|
||||
"adequate number of walls to support the part on sloping surfaces.\n"
|
||||
"\n"
|
||||
"For heavily sloped surfaces this option is not suitable as it will generate "
|
||||
"too thin of a top layer and should be disabled."
|
||||
msgid "Critical Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface pattern"
|
||||
|
|
@ -11211,6 +11283,45 @@ msgstr ""
|
|||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
"seam.\n"
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
"print scarf joints at a slow speed (less than 100 mm/s). It's also "
|
||||
"advisable to enable 'Extrusion rate smoothing' if the set speed varies "
|
||||
"significantly from the speed of the outer or inner walls. If the speed "
|
||||
"specified here is higher than the speed of the outer or inner walls, the "
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr ""
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -14632,6 +14743,29 @@ msgstr ""
|
|||
"ABS 등 뒤틀림이 발생하기 쉬운 소재를 출력할 때, 히트베드 온도를 적절하게 높이"
|
||||
"면 뒤틀림 가능성을 줄일 수 있다는 사실을 알고 계셨나요?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Alternate extra wall only works with ensure vertical shell thickness "
|
||||
#~ "disabled. "
|
||||
#~ msgstr ""
|
||||
#~ "대체 추가 벽은 수직 쉘 두께 보장을 비활성화한 상태에서만 작동합니다. "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Change these settings automatically? \n"
|
||||
#~ "Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
#~ "wall\n"
|
||||
#~ "No - Dont use alternate extra wall"
|
||||
#~ msgstr ""
|
||||
#~ "이 설정을 자동으로 변경하시겠습니까?\n"
|
||||
#~ "예 - 수직 쉘 두께 확인을 비활성화하고 대체 추가 벽을 활성화합니다.\n"
|
||||
#~ "아니요 - 대체 추가 벽을 사용하지 마세요"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "경사진 표면 근처에 꽉찬 내부 채우기를 추가하여 수직 쉘 두께를 보장합니다 "
|
||||
#~ "(상단+하단 꽉찬 레이어)"
|
||||
|
||||
#~ msgid " "
|
||||
#~ msgstr " "
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-03 09:32+0800\n"
|
||||
"POT-Creation-Date: 2024-03-13 22:09+0800\n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -3359,14 +3359,14 @@ msgstr ""
|
|||
"Nee - Pas de vaas modus deze keer niet toe"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3610,6 +3610,68 @@ msgstr ""
|
|||
msgid "default"
|
||||
msgstr "Standaard"
|
||||
|
||||
#, boost-format
|
||||
msgid "Edit Custom G-code (%1%)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Built-in placeholders (Double click item to add to G-code)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Search gcode placeholders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add selected placeholder to G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select placeholder"
|
||||
msgstr ""
|
||||
|
||||
msgid "[Global] Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Write"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print Statistics"
|
||||
msgstr ""
|
||||
|
||||
msgid "Objects Info"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Temperatures"
|
||||
msgstr ""
|
||||
|
||||
msgid "Timestamps"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Specific for %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Presets"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Print instellingen"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Filament instellingen"
|
||||
|
||||
msgid "SLA Materials settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Printer instellingen"
|
||||
|
||||
msgid "parameter name"
|
||||
msgstr "parameternaam"
|
||||
|
||||
|
|
@ -3803,9 +3865,6 @@ msgstr "Print"
|
|||
msgid "Printer"
|
||||
msgstr "Printer"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Print instellingen"
|
||||
|
||||
msgid "Custom g-code"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5301,12 +5360,6 @@ msgstr "Instellingen vergelijken"
|
|||
msgid "View all object's settings"
|
||||
msgstr "Alle instellingen van het object weergeven"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Filament instellingen"
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Printer instellingen"
|
||||
|
||||
msgid "Remove current plate (if not last one)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -6041,9 +6094,6 @@ msgstr ""
|
|||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Presets"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr ""
|
||||
"Gebruikersvoorinstellingen automatisch synchroniseren (printer/filament/"
|
||||
|
|
@ -8478,6 +8528,33 @@ msgid ""
|
|||
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
"surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "Skirt en brim worden gegenereerd"
|
||||
|
||||
|
|
@ -8974,7 +9051,7 @@ msgid ""
|
|||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -9308,21 +9385,19 @@ msgstr "Zorg voor een verticale schaaldikte"
|
|||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"Voeg dichte vulling toe in de buurt van hellende oppervlakken om de "
|
||||
"verticale schaaldikte te garanderen (boven+onder vaste lagen)."
|
||||
|
||||
msgid "Further reduce solid infill on walls (beta)"
|
||||
"thickness (top+bottom solid layers)\n"
|
||||
"None: No solid infill will be added anywhere. Caution: Use this option "
|
||||
"carefully if your model has sloped surfaces\n"
|
||||
"Critical Only: Avoid adding solid infill for walls\n"
|
||||
"Moderate: Add solid infill for heavily sloping surfaces only\n"
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Further reduces any solid infill applied to walls. As there will be very "
|
||||
"limited infill supporting solid surfaces, make sure that you are using "
|
||||
"adequate number of walls to support the part on sloping surfaces.\n"
|
||||
"\n"
|
||||
"For heavily sloped surfaces this option is not suitable as it will generate "
|
||||
"too thin of a top layer and should be disabled."
|
||||
msgid "Critical Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface pattern"
|
||||
|
|
@ -11119,6 +11194,45 @@ msgstr ""
|
|||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
"seam.\n"
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
"print scarf joints at a slow speed (less than 100 mm/s). It's also "
|
||||
"advisable to enable 'Extrusion rate smoothing' if the set speed varies "
|
||||
"significantly from the speed of the outer or inner walls. If the speed "
|
||||
"specified here is higher than the speed of the outer or inner walls, the "
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr ""
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -14298,6 +14412,13 @@ msgid ""
|
|||
"probability of warping."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Voeg dichte vulling toe in de buurt van hellende oppervlakken om de "
|
||||
#~ "verticale schaaldikte te garanderen (boven+onder vaste lagen)."
|
||||
|
||||
#~ msgid "Configuration package updated to "
|
||||
#~ msgstr "Het configuratiebestand is bijgewerkt naar "
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-02 19:55+0100\n"
|
||||
"POT-Creation-Date: 2024-03-13 22:09+0800\n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: Krzysztof Morga <tlumaczenieBS@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -1501,9 +1501,6 @@ msgstr ""
|
|||
msgid "Choose one or more files (3mf/step/stl/svg/obj/amf):"
|
||||
msgstr "Wybierz jeden lub więcej plików (3mf/step/stl/svg/obj/amf):"
|
||||
|
||||
msgid "Choose ZIP file"
|
||||
msgstr "Wybierz plik ZIP"
|
||||
|
||||
msgid "Choose one file (gcode/3mf):"
|
||||
msgstr "Wybierz jeden plik (gcode/3mf):"
|
||||
|
||||
|
|
@ -1574,13 +1571,6 @@ msgstr "Trwające wgrywanie"
|
|||
msgid "Select a G-code file:"
|
||||
msgstr "Wybierz plik G-code:"
|
||||
|
||||
msgid ""
|
||||
"Could not start URL download. Destination folder is not set. Please choose "
|
||||
"destination folder in Configuration Wizard."
|
||||
msgstr ""
|
||||
"Nie można rozpocząć pobierania pliku z adresu URL. Folder docelowy nie jest "
|
||||
"ustawiony. Proszę wybrać folder docelowy w Kreatorze Konfiguracji"
|
||||
|
||||
msgid "Import File"
|
||||
msgstr "Importuj plik"
|
||||
|
||||
|
|
@ -3248,7 +3238,7 @@ msgstr ""
|
|||
"drukarki"
|
||||
|
||||
msgid "Origin"
|
||||
msgstr "Pochodzenie"
|
||||
msgstr "Punkt bazowy"
|
||||
|
||||
msgid "Size in X and Y of the rectangular plate."
|
||||
msgstr "Rozmiar w osi X i Y prostokątnej płyty."
|
||||
|
|
@ -3423,22 +3413,16 @@ msgstr ""
|
|||
"Nie - Zrezygnuj tym razem z używania trybu Wazy"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
"Alternatywna dodatkowa ściana działa tylko wtedy, gdy jest wyłączona opcja "
|
||||
"\"zapewnij stałą grubość pionowej powłoki\". "
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
"Zmienić te ustawienia automatycznie?\n"
|
||||
"Tak - Wyłącz \"zapewnij pionową grubość powłoki\" i włącz \"alternatywną "
|
||||
"dodatkową ścianę\"\n"
|
||||
"Nie - Nie używaj \"alternatywnej dodatkowej ściany\""
|
||||
|
||||
msgid ""
|
||||
"Prime tower does not work when Adaptive Layer Height or Independent Support "
|
||||
|
|
@ -4410,12 +4394,6 @@ msgstr "Importuj 3MF/STL/STEP/SVG/OBJ/AMF"
|
|||
msgid "Load a model"
|
||||
msgstr "Wczytaj model"
|
||||
|
||||
msgid "Import Zip Archive"
|
||||
msgstr "Importuj archiwum ZIP"
|
||||
|
||||
msgid "Load models contained within a zip archive"
|
||||
msgstr "Wczytaj modele zawarte w archiwum ZIP"
|
||||
|
||||
msgid "Import Configs"
|
||||
msgstr "Importuj konfiguracje"
|
||||
|
||||
|
|
@ -5354,12 +5332,12 @@ msgstr[2] "%1$d obiektów zostało załadowanych jako części obiektu wycięteg
|
|||
msgid "ERROR"
|
||||
msgstr "BŁĄD"
|
||||
|
||||
msgid "COMPLETED"
|
||||
msgstr "ZAKOŃCZONO"
|
||||
|
||||
msgid "CANCELED"
|
||||
msgstr "ANULOWANO"
|
||||
|
||||
msgid "COMPLETED"
|
||||
msgstr "ZAKOŃCZONO"
|
||||
|
||||
msgid "Cancel upload"
|
||||
msgstr "Anuluj przesyłanie"
|
||||
|
||||
|
|
@ -5946,22 +5924,6 @@ msgstr "nie zawiera prawidłowego kodu G."
|
|||
msgid "Error occurs while loading G-code file"
|
||||
msgstr "Wystąpił błąd podczas wczytywania pliku z kodem G"
|
||||
|
||||
#. TRN %1% is archive path
|
||||
#, boost-format
|
||||
msgid "Loading of a ZIP archive on path %1% has failed."
|
||||
msgstr "Nie udało załadować się archiwum ZIP z ścieżki %1%."
|
||||
|
||||
#. TRN: First argument = path to file, second argument = error description
|
||||
#, boost-format
|
||||
msgid "Failed to unzip file to %1%: %2%"
|
||||
msgstr "Nie udało się rozpakować pliku do %1%: %2%"
|
||||
|
||||
#, boost-format
|
||||
msgid "Failed to find unzipped file at %1%. Unzipping of file has failed."
|
||||
msgstr ""
|
||||
"Nie udało się znaleźć rozpakowanego pliku pod adresem %1%. Rozpakowywanie "
|
||||
"pliku nie powiodło się."
|
||||
|
||||
msgid "Drop project file"
|
||||
msgstr "Upuść plik projektu"
|
||||
|
||||
|
|
@ -6327,9 +6289,6 @@ msgstr "Okres kopii zapasowej w sekundach."
|
|||
msgid "Downloads"
|
||||
msgstr "Lokalizacja pobierania"
|
||||
|
||||
msgid "Allow downloads from Printables.com"
|
||||
msgstr "Zezwól na pobieranie modeli z Printables.com"
|
||||
|
||||
msgid "Dark Mode"
|
||||
msgstr "Tryb ciemny"
|
||||
|
||||
|
|
@ -7128,22 +7087,11 @@ msgstr "Dostosuj"
|
|||
msgid "Ignore"
|
||||
msgstr "Ignoruj"
|
||||
|
||||
msgid ""
|
||||
"When using scarf joint, we recommend the following settings:\n"
|
||||
"print outer wall first, disable wipe before external loop, reduce outer wall "
|
||||
"speed to no greater than 50mm/s, and don't use random or nearest seam "
|
||||
"position"
|
||||
msgstr ""
|
||||
"Przy korzystaniu ze szwu szalikowego zalecamy następujące ustawienia: \n"
|
||||
"drukuj zewnętrzną ściane jako pierwszą, wyłączenie czyszczenia przed "
|
||||
"zewnętrzną pętlą, ograniczenie prędkości zewnętrznej ściany do maksymalnie "
|
||||
"50 mm/s oraz unikanie stosowania pozycji szwu \"losowo\" lub \"najbliższy\"."
|
||||
|
||||
msgid ""
|
||||
"When recording timelapse without toolhead, it is recommended to add a "
|
||||
"\"Timelapse Wipe Tower\" \n"
|
||||
"by right-click the empty position of build plate and choose \"Add "
|
||||
"Primitive\"->\"Timelapse Wipe Tower\"."
|
||||
"by right-click the empty position of build plate and choose \"Add Primitive"
|
||||
"\"->\"Timelapse Wipe Tower\"."
|
||||
msgstr ""
|
||||
"Podczas nagrywania timelapse'a bez głowicy narzędziowej zaleca się dodanie "
|
||||
"\"Wieżyczki Czyszczącej Timelapse\" \n"
|
||||
|
|
@ -8753,6 +8701,51 @@ msgstr ""
|
|||
"Ustawienie zbyt niskiej prędkości jerk może prowadzić do artefaktów na "
|
||||
"zakrzywionych powierzchniach."
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
"Ustawienie jerk przekracza maksymalne jerk drukarki (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca automatycznie ograniczy prędkość jerku, aby nie przekroczyć zdolności "
|
||||
"drukarki.\n"
|
||||
"Możesz dostosować ustawienie maksymalnego jerku w konfiguracji swojej "
|
||||
"drukarki, aby uzyskać wyższe prędkości."
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
"surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
"Ustawienie przyspieszenia przekracza maksymalne przyspieszenie drukarki "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca automatycznie ograniczy prędkość przyspieszenia, aby nie przekroczyć "
|
||||
"zdolności drukarki.\n"
|
||||
"Możesz dostosować wartość machine_max_acceleration_extruding w konfiguracji "
|
||||
"swojej drukarki, aby uzyskać wyższe prędkości."
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
"Ustawienie prędkości przekracza maksymalną prędkość drukarki "
|
||||
"(machine_max_speed_x/machine_max_speed_y).\n"
|
||||
"Orca automatycznie ograniczy prędkość druku, aby nie przekroczyć zdolności "
|
||||
"drukarki.\n"
|
||||
"Możesz dostosować ustawienie maksymalnej prędkości w konfiguracji swojej "
|
||||
"drukarki, aby uzyskać wyższe prędkości."
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "Generowanie Skirtu i Brimu"
|
||||
|
||||
|
|
@ -8938,10 +8931,10 @@ msgid ""
|
|||
msgstr ""
|
||||
"Unikaj ruchów nad obrysami-\n"
|
||||
"Maksymalna długość objazdu przy unikaniu przejeżdżania nad obrysami. Jeśli "
|
||||
"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad "
|
||||
"obrysami\" zostanie zignorowana dla tej ścieżki. Długość objazdu można "
|
||||
"zdefiniować jako wartość absolutna lub obliczona procentowo (np. 50%) z "
|
||||
"długości ruchu bezpośredniego."
|
||||
"objazd miałby wykroczyć poza tę wartość, funkcja \"unikaj ruchów nad obrysami"
|
||||
"\" zostanie zignorowana dla tej ścieżki. Długość objazdu można zdefiniować "
|
||||
"jako wartość absolutna lub obliczona procentowo (np. 50%) z długości ruchu "
|
||||
"bezpośredniego."
|
||||
|
||||
msgid "mm or %"
|
||||
msgstr "mm lub %"
|
||||
|
|
@ -9314,7 +9307,7 @@ msgstr ""
|
|||
"przemiennych kierunkach na nieparzystych warstwach, niezależnie od stopnia "
|
||||
"nawisu."
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr "Most dla fazowanych otworów"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -9501,9 +9494,9 @@ msgid ""
|
|||
"quality for needle and small details"
|
||||
msgstr ""
|
||||
"Włącz tę opcję, aby zwolnić prędkość druku, aby czas końcowej warstwy nie "
|
||||
"był krótszy niż próg czasu warstwy w \"Próg maksymalnej prędkości "
|
||||
"wentylatora\", tak aby warstwa mogła być chłodzona przez dłuższy czas. Może "
|
||||
"to poprawić jakość chłodzenia dla igieł i małych detali"
|
||||
"był krótszy niż próg czasu warstwy w \"Próg maksymalnej prędkości wentylatora"
|
||||
"\", tak aby warstwa mogła być chłodzona przez dłuższy czas. Może to poprawić "
|
||||
"jakość chłodzenia dla igieł i małych detali"
|
||||
|
||||
msgid "Normal printing"
|
||||
msgstr "Normalne drukowanie"
|
||||
|
|
@ -9700,27 +9693,35 @@ msgstr "Zapewnij stałą grubość pionowej powłoki"
|
|||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
"thickness (top+bottom solid layers)\n"
|
||||
"None: No solid infill will be added anywhere. Caution: Use this option "
|
||||
"carefully if your model has sloped surfaces\n"
|
||||
"Critical Only: Avoid adding solid infill for walls\n"
|
||||
"Moderate: Add solid infill for heavily sloping surfaces only\n"
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
"Dodaj pełne wypełnienie w pobliżu nachylonych powierzchni, aby zagwarantować "
|
||||
"pionową grubość powłoki (górne+ dolne pełne warstwy)"
|
||||
|
||||
msgid "Further reduce solid infill on walls (beta)"
|
||||
msgstr "Dodatkowe zmniejszenie gęstości wypełnienia na obwodzie (beta)"
|
||||
|
||||
msgid ""
|
||||
"Further reduces any solid infill applied to walls. As there will be very "
|
||||
"limited infill supporting solid surfaces, make sure that you are using "
|
||||
"adequate number of walls to support the part on sloping surfaces.\n"
|
||||
"grubość pionowej powłoki (górne + dolne pełne warstwy).\n"
|
||||
"\n"
|
||||
"For heavily sloped surfaces this option is not suitable as it will generate "
|
||||
"too thin of a top layer and should be disabled."
|
||||
msgstr ""
|
||||
"Dodatkowo redukuje ilość stałego wypełnienia aplikowanego na ściany. \n"
|
||||
"Brak: Nie umieszczaj pełnego wypełnienia w żadnym miejscu. Uwaga: Korzystaj "
|
||||
"z tej opcji ostrożnie, jeśli twój model posiada nachylone powierzchnie.\n"
|
||||
"\n"
|
||||
"Ponieważ ilość wypełnienia podpory powierzchni stałych będzie bardzo "
|
||||
"ograniczona, upewnij się, że używasz odpowiedniej liczby ścian do podparcia "
|
||||
"części na nachylonych powierzchniach."
|
||||
"Tylko krytyczne: Unikaj dodawania pełnego wypełnienia dla ścian.\n"
|
||||
"\n"
|
||||
"Umiarkowane: Dodaj pełne wypełnienie tylko dla silnie nachylonych "
|
||||
"powierzchni.\n"
|
||||
"\n"
|
||||
"Wszystkie: Dodaj pełne wypełnienie dla wszystkich odpowiednio nachylonych "
|
||||
"powierzchni.\n"
|
||||
"\n"
|
||||
"Domyślna wartość to Wszystkie."
|
||||
|
||||
msgid "Critical Only"
|
||||
msgstr "Tylko krytyczne"
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr "Umiarkowane"
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Wzór górnej powierzchni"
|
||||
|
|
@ -10622,10 +10623,10 @@ msgstr "Pełna prędkość wentylatora na warstwie"
|
|||
|
||||
msgid ""
|
||||
"Fan speed will be ramped up linearly from zero at layer "
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer "
|
||||
"\"full_fan_speed_layer\". \"full_fan_speed_layer\" will be ignored if lower "
|
||||
"than \"close_fan_the_first_x_layers\", in which case the fan will be running "
|
||||
"at maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
"\"close_fan_the_first_x_layers\" to maximum at layer \"full_fan_speed_layer"
|
||||
"\". \"full_fan_speed_layer\" will be ignored if lower than "
|
||||
"\"close_fan_the_first_x_layers\", in which case the fan will be running at "
|
||||
"maximum allowed speed at layer \"close_fan_the_first_x_layers\" + 1."
|
||||
msgstr ""
|
||||
"Prędkość wentylatora będzie stopniowo zwiększana liniowo od zera na warstwie "
|
||||
"\"close_fan_the_first_x_layers\" do maksymalnej na warstwie "
|
||||
|
|
@ -11825,53 +11826,106 @@ msgstr ""
|
|||
"extrudera. Domyślna wartość tego parametru to 10%."
|
||||
|
||||
msgid "Scarf joint seam (beta)"
|
||||
msgstr "Szew szalikowy (beta)"
|
||||
msgstr "Szew ukośny (beta)"
|
||||
|
||||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr ""
|
||||
"Zastosuj szew szalikowy, aby zminimalizować widoczność szwu i zwiększyć jego "
|
||||
"Zastosuj szew ukośny, aby zminimalizować widoczność szwu i zwiększyć jego "
|
||||
"wytrzymałość."
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr "Warunkowe szwy ukośne"
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
"Zastosuj szwy ukośne jedynie do gładkich obwodów, gdzie tradycyjne szwy nie "
|
||||
"maskują skutecznie szwów w ostrych narożnikach."
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr "Warunkowy próg kąta"
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
"seam.\n"
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
"Ta opcja ustawia próg kątowy do zastosowania warunkowo szwu ukośnego.\n"
|
||||
"Jeśli maksymalny kąt w obrębie pętli obwodu przekroczy tę wartość (co "
|
||||
"wskazuje na brak ostrych narożników), zostanie użyty szew ukośny. Domyślna "
|
||||
"wartość to 155°."
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr "Prędkość szwu ukośnego"
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
"print scarf joints at a slow speed (less than 100 mm/s). It's also "
|
||||
"advisable to enable 'Extrusion rate smoothing' if the set speed varies "
|
||||
"significantly from the speed of the outer or inner walls. If the speed "
|
||||
"specified here is higher than the speed of the outer or inner walls, the "
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
"Ta opcja ustawia prędkość druku dla szwów ukośnych. Zaleca się drukowanie "
|
||||
"szwów ukośnych z niższą prędkością (poniżej 100 mm/s). Zaleca się również "
|
||||
"włączenie 'Wygładzania współczynnika ekstruzji', jeśli ustawiona prędkość "
|
||||
"znacząco różni się od prędkości zewnętrznych lub wewnętrznych ścian. Jeżeli "
|
||||
"prędkość określona tutaj jest wyższa niż prędkość zewnętrznych lub "
|
||||
"wewnętrznych ścian, drukarka przełączy się na wolniejszą z tych dwóch "
|
||||
"prędkości. Gdy jest określone jako procent (np. 80%), prędkość jest "
|
||||
"obliczana na podstawie odpowiedniej prędkości zewnętrznej lub wewnętrznej "
|
||||
"ściany. Wartość domyślna wynosi 100%."
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr "Współczynnik przepływu szwu ukośnego"
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
"Ten współczynnik wpływa na ilość materiału potrzebną dla szwów ukośnych."
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr "Wysokość początkowa szwu szalikowego"
|
||||
msgstr "Wysokość początkowa szwu ukośnego"
|
||||
|
||||
msgid ""
|
||||
"Start height of the scarf.\n"
|
||||
"This amount can be specified in millimeters or as a percentage of the "
|
||||
"current layer height. The default value for this parameter is 0."
|
||||
msgstr ""
|
||||
|
||||
"Początkowa wysokość szwu szalikowego.\n"
|
||||
"Początkowa wysokość szwu ukośnego.\n"
|
||||
"Ta wartość może być określona w milimetrach lub jako procent bieżącej "
|
||||
"wysokości warstwy. Domyślna wartość tego parametru to 0."
|
||||
|
||||
msgid "Scarf around entire wall"
|
||||
msgstr "Szew szalikowy obejmujący cały obrys ściany"
|
||||
msgstr "Szew ukośny obejmujący cały obrys ściany"
|
||||
|
||||
msgid "The scarf extends to the entire length of the wall."
|
||||
msgstr "Szew szalikowy rozciąga się na całej długość ściany"
|
||||
msgstr "Szew rozciąga się na całą długość ściany"
|
||||
|
||||
msgid "Scarf length"
|
||||
msgstr "Długość szwu szalikowego"
|
||||
msgstr "Długość szwu ukośnego"
|
||||
|
||||
msgid ""
|
||||
"Length of the scarf. Setting this parameter to zero effectively disables the "
|
||||
"scarf."
|
||||
msgstr ""
|
||||
"Długość szwu szalikowego. Ustawienie tego parametru na zero wyłączy tą "
|
||||
"funkcje."
|
||||
"Długość szwu ukośnego. Ustawienie tego parametru na zero wyłączy tą funkcje."
|
||||
|
||||
msgid "Scarf steps"
|
||||
msgstr "Krok szwu szalikowego"
|
||||
msgstr "Krok szwu ukośnego"
|
||||
|
||||
msgid "Minimum number of segments of each scarf."
|
||||
msgstr "Minimalna liczba segmentów szwu szalikowego."
|
||||
msgstr "Minimalna liczba segmentów szwu ukośnego."
|
||||
|
||||
msgid "Scarf joint for inner walls"
|
||||
msgstr "Szwy szalikowe dla ścian wewnętrznych"
|
||||
msgstr "Szwy ukośne dla ścian wewnętrznych"
|
||||
|
||||
msgid "Use scarf joint for inner walls as well."
|
||||
msgstr "Zastosuj szwy szalikowe również do ścian wewnętrznych."
|
||||
msgstr "Zastosuj szwy ukośne również do ścian wewnętrznych."
|
||||
|
||||
msgid "Role base wipe speed"
|
||||
msgstr "Prędkość czyszczenia w oparciu o rolę ekstruzji"
|
||||
|
|
@ -12042,8 +12096,8 @@ msgstr ""
|
|||
"poklatkowy po zakończeniu drukowania. Jeśli wybrany jest tryb \"Wygładź\", "
|
||||
"głowica narzędziowa przesunie się nad wieżę po wydrukowaniu każdej warstwy, "
|
||||
"a następnie zrobi zdjęcie. Ponieważ stopiony filament może wyciekać z dyszy "
|
||||
"podczas robienia zdjęcia, wieża czyszcząca jest wymagana w trybie "
|
||||
"\"Wygładź\" do czyszczenia dyszy."
|
||||
"podczas robienia zdjęcia, wieża czyszcząca jest wymagana w trybie \"Wygładź"
|
||||
"\" do czyszczenia dyszy."
|
||||
|
||||
msgid "Traditional"
|
||||
msgstr "Tradycyjny"
|
||||
|
|
@ -12123,10 +12177,10 @@ msgid ""
|
|||
"triangle mesh slicing. The gap closing operation may reduce the final print "
|
||||
"resolution, therefore it is advisable to keep the value reasonably low."
|
||||
msgstr ""
|
||||
"Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania "
|
||||
"szpar\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może "
|
||||
"zmniejszyć finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej "
|
||||
"wartości na rozsądnie niskim poziomie."
|
||||
"Szpary mniejsze niż dwukrotność wartości parametru \"promień zamykania szpar"
|
||||
"\" zostaną zamknięte przy cięciu. Operacja zamykania szpar może zmniejszyć "
|
||||
"finalną rozdzielczość wydruku, więc zalecane jest ustawienie tej wartości na "
|
||||
"rozsądnie niskim poziomie."
|
||||
|
||||
msgid "Slicing Mode"
|
||||
msgstr "Tryb cięcia"
|
||||
|
|
@ -12764,7 +12818,7 @@ msgstr ""
|
|||
"obiektów. Może to zmniejszyć ilość odpadów i skrócić czas druku. Jeśli "
|
||||
"ściany są drukowane przezroczystym filamentem, mieszane kolorowe wypełnienie "
|
||||
"będzie widoczne na zewnątrz. Nie będzie miało efektu, chyba że wieża "
|
||||
"załadowania jest włączona."
|
||||
"czyszcząca jest włączona."
|
||||
|
||||
msgid ""
|
||||
"Purging after filament change will be done inside objects' support. This may "
|
||||
|
|
@ -12773,7 +12827,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Czyszczenie po zmianie filamentu będzie wykonane wewnątrz podpory obiektów. "
|
||||
"Może to zmniejszyć ilość odpadów i skrócić czas druku. Nie będzie miało "
|
||||
"efektu, chyba że wieża załadowania jest włączona."
|
||||
"efektu, chyba że wieża czyszcząca jest włączona."
|
||||
|
||||
msgid ""
|
||||
"This object will be used to purge the nozzle after a filament change to save "
|
||||
|
|
@ -14462,8 +14516,8 @@ msgstr ""
|
|||
"Czy chcesz go zastąpić?"
|
||||
|
||||
msgid ""
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you "
|
||||
"selected\". \n"
|
||||
"We would rename the presets as \"Vendor Type Serial @printer you selected"
|
||||
"\". \n"
|
||||
"To add preset for more printers, Please go to printer selection"
|
||||
msgstr ""
|
||||
"Nazwa profilu zostanie zmieniona na \"Producent Typ Rodzaj @nazwa drukarki, "
|
||||
|
|
@ -14711,7 +14765,7 @@ msgid "finalize fail"
|
|||
msgstr "Finalizacja nie powiodła się"
|
||||
|
||||
msgid "open zip written fail"
|
||||
msgstr "Błąd zapisu ZIP"
|
||||
msgstr "błąd zapisu ZIP"
|
||||
|
||||
msgid "Export successful"
|
||||
msgstr "Eksport zakończony sukcesem"
|
||||
|
|
@ -14800,7 +14854,7 @@ msgstr ""
|
|||
"ustawienia tego filamentu zostaną skasowane po wyjściu z okna dialogowego."
|
||||
|
||||
msgid "Presets inherited by other presets can not be deleted"
|
||||
msgstr "Nie można usunąć profili dziedziczonych przez inne profile!"
|
||||
msgstr "Nie można usunąć profili dziedziczonych przez inne profile"
|
||||
|
||||
msgid "The following presets inherits this preset."
|
||||
msgid_plural "The following preset inherits this preset."
|
||||
|
|
@ -15108,8 +15162,8 @@ msgstr ""
|
|||
|
||||
#: resources/data/hints.ini: [hint:Air filtration]
|
||||
msgid ""
|
||||
"Air filtration/Exhuast Fan\n"
|
||||
"Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?"
|
||||
"Air filtration/Exhaust Fan\n"
|
||||
"Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
|
||||
msgstr ""
|
||||
"Filtracja powietrza/Wentylator wyciągowy\n"
|
||||
"Czy wiesz, że OrcaSlicer może obsługiwać filtrację powietrza/wentylator "
|
||||
|
|
@ -15445,6 +15499,101 @@ msgstr ""
|
|||
"takimi jak ABS, odpowiednie zwiększenie temperatury podgrzewanej płyty może "
|
||||
"zmniejszyć prawdopodobieństwo odkształceń."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Alternate extra wall only works with ensure vertical shell thickness "
|
||||
#~ "disabled. "
|
||||
#~ msgstr ""
|
||||
#~ "Alternatywna dodatkowa ściana działa tylko wtedy, gdy jest wyłączona "
|
||||
#~ "opcja \"zapewnij stałą grubość pionowej powłoki\". "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Change these settings automatically? \n"
|
||||
#~ "Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
#~ "wall\n"
|
||||
#~ "No - Dont use alternate extra wall"
|
||||
#~ msgstr ""
|
||||
#~ "Zmienić te ustawienia automatycznie?\n"
|
||||
#~ "Tak - Wyłącz \"zapewnij pionową grubość powłoki\" i włącz \"alternatywną "
|
||||
#~ "dodatkową ścianę\"\n"
|
||||
#~ "Nie - Nie używaj \"alternatywnej dodatkowej ściany\""
|
||||
|
||||
#~ msgid "Choose ZIP file"
|
||||
#~ msgstr "Wybierz plik ZIP"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Could not start URL download. Destination folder is not set. Please "
|
||||
#~ "choose destination folder in Configuration Wizard."
|
||||
#~ msgstr ""
|
||||
#~ "Nie można rozpocząć pobierania pliku z adresu URL. Folder docelowy nie "
|
||||
#~ "jest ustawiony. Proszę wybrać folder docelowy w Kreatorze Konfiguracji"
|
||||
|
||||
#~ msgid "Import Zip Archive"
|
||||
#~ msgstr "Importuj archiwum ZIP"
|
||||
|
||||
#~ msgid "Load models contained within a zip archive"
|
||||
#~ msgstr "Wczytaj modele zawarte w archiwum ZIP"
|
||||
|
||||
#, boost-format
|
||||
#~ msgid "Loading of a ZIP archive on path %1% has failed."
|
||||
#~ msgstr "Nie udało załadować się archiwum ZIP z ścieżki %1%."
|
||||
|
||||
#, boost-format
|
||||
#~ msgid "Failed to unzip file to %1%: %2%"
|
||||
#~ msgstr "Nie udało się rozpakować pliku do %1%: %2%"
|
||||
|
||||
#, boost-format
|
||||
#~ msgid "Failed to find unzipped file at %1%. Unzipping of file has failed."
|
||||
#~ msgstr ""
|
||||
#~ "Nie udało się znaleźć rozpakowanego pliku pod adresem %1%. Rozpakowywanie "
|
||||
#~ "pliku nie powiodło się."
|
||||
|
||||
#~ msgid "Allow downloads from Printables.com"
|
||||
#~ msgstr "Zezwól na pobieranie modeli z Printables.com"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "When using scarf joint, we recommend the following settings:\n"
|
||||
#~ "print outer wall first, disable wipe before external loop, reduce outer "
|
||||
#~ "wall speed to no greater than 50mm/s, and don't use random or nearest "
|
||||
#~ "seam position"
|
||||
#~ msgstr ""
|
||||
#~ "Przy korzystaniu ze szwu szalikowego zalecamy następujące ustawienia: \n"
|
||||
#~ "drukuj zewnętrzną ściane jako pierwszą, wyłączenie czyszczenia przed "
|
||||
#~ "zewnętrzną pętlą, ograniczenie prędkości zewnętrznej ściany do "
|
||||
#~ "maksymalnie 50 mm/s oraz unikanie stosowania pozycji szwu \"losowo\" lub "
|
||||
#~ "\"najbliższy\"."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Dodaj pełne wypełnienie w pobliżu nachylonych powierzchni, aby "
|
||||
#~ "zagwarantować pionową grubość powłoki (górne+ dolne pełne warstwy)"
|
||||
|
||||
#~ msgid "Further reduce solid infill on walls (beta)"
|
||||
#~ msgstr "Dodatkowe zmniejszenie gęstości wypełnienia na obwodzie (beta)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Further reduces any solid infill applied to walls. As there will be very "
|
||||
#~ "limited infill supporting solid surfaces, make sure that you are using "
|
||||
#~ "adequate number of walls to support the part on sloping surfaces.\n"
|
||||
#~ "\n"
|
||||
#~ "For heavily sloped surfaces this option is not suitable as it will "
|
||||
#~ "generate too thin of a top layer and should be disabled."
|
||||
#~ msgstr ""
|
||||
#~ "Dodatkowo redukuje ilość stałego wypełnienia aplikowanego na ściany. \n"
|
||||
#~ "\n"
|
||||
#~ "Ponieważ ilość wypełnienia podpory powierzchni stałych będzie bardzo "
|
||||
#~ "ograniczona, upewnij się, że używasz odpowiedniej liczby ścian do "
|
||||
#~ "podparcia części na nachylonych powierzchniach."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Air filtration/Exhuast Fan\n"
|
||||
#~ "Did you know that OrcaSlicer can support Air filtration/Exhuast Fan?"
|
||||
#~ msgstr ""
|
||||
#~ "Filtracja powietrza/Wentylator wyciągowy\n"
|
||||
#~ "Czy wiesz, że OrcaSlicer może obsługiwać filtrację powietrza/wentylator "
|
||||
#~ "wyciągowy?"
|
||||
|
||||
#~ msgid "Scarf joint seam"
|
||||
#~ msgstr "Szew szalikowy (beta)"
|
||||
|
||||
|
|
@ -16196,8 +16345,8 @@ msgstr ""
|
|||
#~ "Elevation is too low for object. Use the \"Pad around object\" feature to "
|
||||
#~ "print the object without elevation."
|
||||
#~ msgstr ""
|
||||
#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół "
|
||||
#~ "modelu\", aby wydrukować model bez podniesienia."
|
||||
#~ "Podniesienie zbyt małe dla modelu. Użyj funkcji \"Podkładka wokół modelu"
|
||||
#~ "\", aby wydrukować model bez podniesienia."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "The endings of the support pillars will be deployed on the gap between "
|
||||
|
|
@ -16320,14 +16469,6 @@ msgstr ""
|
|||
#~ "Wybrany plik 3MF zawiera model pomalowany do Multi Material przy pomocy "
|
||||
#~ "nowszej wersji OrcaSlicer i nie jest kompatybilny."
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Air filtration/Exhaust Fan\n"
|
||||
#~ "Did you know that OrcaSlicer can support Air filtration/Exhaust Fan?"
|
||||
#~ msgstr ""
|
||||
#~ "Filtracja powietrza/Wentylator wyciągowy\n"
|
||||
#~ "Czy wiesz, że OrcaSlicer może obsługiwać filtrację powietrza/wentylator "
|
||||
#~ "wyciągowy?"
|
||||
|
||||
#~ msgid " "
|
||||
#~ msgstr " "
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer V2.0.0-dev Nightly Builds\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-03 09:32+0800\n"
|
||||
"POT-Creation-Date: 2024-03-13 22:09+0800\n"
|
||||
"PO-Revision-Date: 2024-02-11 23:36+0700\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -3426,22 +3426,16 @@ msgstr ""
|
|||
"Нет - Отказаться от использования режима «Спиральная ваза»"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
"Альтернативный дополнительный периметр работает только при отключенной опции "
|
||||
"«Обеспечивать верт. толщину оболочки». "
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
"Изменить эти настройки автоматически?\n"
|
||||
"Да - Отключить обеспечение вертикальной толщины оболочки и включить "
|
||||
"альтернативный дополнительный периметр\n"
|
||||
"Нет - Отказаться от использования альтернативного дополнительного периметра"
|
||||
|
||||
msgid ""
|
||||
"Prime tower does not work when Adaptive Layer Height or Independent Support "
|
||||
|
|
@ -3699,6 +3693,68 @@ msgstr ""
|
|||
msgid "default"
|
||||
msgstr "По ум."
|
||||
|
||||
#, boost-format
|
||||
msgid "Edit Custom G-code (%1%)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Built-in placeholders (Double click item to add to G-code)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Search gcode placeholders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add selected placeholder to G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select placeholder"
|
||||
msgstr ""
|
||||
|
||||
msgid "[Global] Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Write"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print Statistics"
|
||||
msgstr ""
|
||||
|
||||
msgid "Objects Info"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Temperatures"
|
||||
msgstr ""
|
||||
|
||||
msgid "Timestamps"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Specific for %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Профили"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Настройки печати"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Настройки прутка"
|
||||
|
||||
msgid "SLA Materials settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Настройки принтера"
|
||||
|
||||
msgid "parameter name"
|
||||
msgstr "Имя параметра"
|
||||
|
||||
|
|
@ -3892,9 +3948,6 @@ msgstr "Печать"
|
|||
msgid "Printer"
|
||||
msgstr "Профиль принтера"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Настройки печати"
|
||||
|
||||
msgid "Custom g-code"
|
||||
msgstr "Пользовательский G-код"
|
||||
|
||||
|
|
@ -5424,12 +5477,6 @@ msgstr "Сравнение профилей"
|
|||
msgid "View all object's settings"
|
||||
msgstr "Просмотр всех настроек модели"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Настройки прутка"
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Настройки принтера"
|
||||
|
||||
msgid "Remove current plate (if not last one)"
|
||||
msgstr "Удалить текущую печатную пластину (кроме последней)"
|
||||
|
||||
|
|
@ -6188,9 +6235,6 @@ msgstr ""
|
|||
"Если включено, выполняется автоматический перерасчет объёма очистки при "
|
||||
"каждом изменении цвета."
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Профили"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr "Автосинхронизация пользовательских профилей (принтера/прутка/процесса)"
|
||||
|
||||
|
|
@ -8700,6 +8744,33 @@ msgid ""
|
|||
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
"surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "Генерация юбки и каймы"
|
||||
|
||||
|
|
@ -9255,7 +9326,7 @@ msgstr ""
|
|||
|
||||
# counterbore???
|
||||
# Мост для отверстий с зенковкой
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr "Мост для зенкованных отверстий"
|
||||
|
||||
# ??? слой жертвенного моста.
|
||||
|
|
@ -9639,30 +9710,20 @@ msgstr "Обеспечивать верт. толщину оболочки"
|
|||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
"thickness (top+bottom solid layers)\n"
|
||||
"None: No solid infill will be added anywhere. Caution: Use this option "
|
||||
"carefully if your model has sloped surfaces\n"
|
||||
"Critical Only: Avoid adding solid infill for walls\n"
|
||||
"Moderate: Add solid infill for heavily sloping surfaces only\n"
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
"Добавление сплошного заполнения вблизи наклонных поверхностей для "
|
||||
"обеспечения вертикальной толщины оболочки (верхний+нижний сплошные слои)."
|
||||
|
||||
msgid "Further reduce solid infill on walls (beta)"
|
||||
msgstr "Сокращение сплошного заполнения на периметрах (экспер.)"
|
||||
|
||||
# ???
|
||||
msgid ""
|
||||
"Further reduces any solid infill applied to walls. As there will be very "
|
||||
"limited infill supporting solid surfaces, make sure that you are using "
|
||||
"adequate number of walls to support the part on sloping surfaces.\n"
|
||||
"\n"
|
||||
"For heavily sloped surfaces this option is not suitable as it will generate "
|
||||
"too thin of a top layer and should be disabled."
|
||||
msgid "Critical Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
"Ещё больше сокращает количество сплошного заполнения, наносимого на "
|
||||
"периметры. Поскольку количество заполнения, поддерживающих твердые "
|
||||
"поверхности, будет очень ограничено, убедитесь, что у вас достаточно "
|
||||
"периметров для поддержки частей на наклонных поверхностях.\n"
|
||||
"\n"
|
||||
"Для поверхностей с большим уклоном эта опция не подходит, так как верхний "
|
||||
"слой получится слишком тонким, и её следует отключить."
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Шаблон заполнения верхней поверхности"
|
||||
|
|
@ -11736,6 +11797,45 @@ msgstr ""
|
|||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
"seam.\n"
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
"print scarf joints at a slow speed (less than 100 mm/s). It's also "
|
||||
"advisable to enable 'Extrusion rate smoothing' if the set speed varies "
|
||||
"significantly from the speed of the outer or inner walls. If the speed "
|
||||
"specified here is higher than the speed of the outer or inner walls, the "
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr ""
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -15363,6 +15463,52 @@ msgstr ""
|
|||
"ABS, повышение температуры подогреваемого стола может снизить вероятность "
|
||||
"коробления?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Alternate extra wall only works with ensure vertical shell thickness "
|
||||
#~ "disabled. "
|
||||
#~ msgstr ""
|
||||
#~ "Альтернативный дополнительный периметр работает только при отключенной "
|
||||
#~ "опции «Обеспечивать верт. толщину оболочки». "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Change these settings automatically? \n"
|
||||
#~ "Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
#~ "wall\n"
|
||||
#~ "No - Dont use alternate extra wall"
|
||||
#~ msgstr ""
|
||||
#~ "Изменить эти настройки автоматически?\n"
|
||||
#~ "Да - Отключить обеспечение вертикальной толщины оболочки и включить "
|
||||
#~ "альтернативный дополнительный периметр\n"
|
||||
#~ "Нет - Отказаться от использования альтернативного дополнительного "
|
||||
#~ "периметра"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Добавление сплошного заполнения вблизи наклонных поверхностей для "
|
||||
#~ "обеспечения вертикальной толщины оболочки (верхний+нижний сплошные слои)."
|
||||
|
||||
#~ msgid "Further reduce solid infill on walls (beta)"
|
||||
#~ msgstr "Сокращение сплошного заполнения на периметрах (экспер.)"
|
||||
|
||||
# ???
|
||||
#~ msgid ""
|
||||
#~ "Further reduces any solid infill applied to walls. As there will be very "
|
||||
#~ "limited infill supporting solid surfaces, make sure that you are using "
|
||||
#~ "adequate number of walls to support the part on sloping surfaces.\n"
|
||||
#~ "\n"
|
||||
#~ "For heavily sloped surfaces this option is not suitable as it will "
|
||||
#~ "generate too thin of a top layer and should be disabled."
|
||||
#~ msgstr ""
|
||||
#~ "Ещё больше сокращает количество сплошного заполнения, наносимого на "
|
||||
#~ "периметры. Поскольку количество заполнения, поддерживающих твердые "
|
||||
#~ "поверхности, будет очень ограничено, убедитесь, что у вас достаточно "
|
||||
#~ "периметров для поддержки частей на наклонных поверхностях.\n"
|
||||
#~ "\n"
|
||||
#~ "Для поверхностей с большим уклоном эта опция не подходит, так как верхний "
|
||||
#~ "слой получится слишком тонким, и её следует отключить."
|
||||
|
||||
#~ msgid "Text-Rotate"
|
||||
#~ msgstr "Поворот текста"
|
||||
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-03 09:32+0800\n"
|
||||
"POT-Creation-Date: 2024-03-13 22:09+0800\n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
|
@ -3320,14 +3320,14 @@ msgstr ""
|
|||
"NEJ -Avbryt Spiral läge denna gång"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3570,6 +3570,68 @@ msgstr ""
|
|||
msgid "default"
|
||||
msgstr "standard"
|
||||
|
||||
#, boost-format
|
||||
msgid "Edit Custom G-code (%1%)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Built-in placeholders (Double click item to add to G-code)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Search gcode placeholders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add selected placeholder to G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select placeholder"
|
||||
msgstr ""
|
||||
|
||||
msgid "[Global] Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Write"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print Statistics"
|
||||
msgstr ""
|
||||
|
||||
msgid "Objects Info"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Temperatures"
|
||||
msgstr ""
|
||||
|
||||
msgid "Timestamps"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Specific for %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Förinställningar"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Utskrifts inställningar"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Filament inställningar"
|
||||
|
||||
msgid "SLA Materials settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Skrivarens inställningar"
|
||||
|
||||
msgid "parameter name"
|
||||
msgstr "Parameter namn"
|
||||
|
||||
|
|
@ -3763,9 +3825,6 @@ msgstr "Skriv ut"
|
|||
msgid "Printer"
|
||||
msgstr "Skrivare"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Utskrifts inställningar"
|
||||
|
||||
msgid "Custom g-code"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5250,12 +5309,6 @@ msgstr "Jämför inställningar"
|
|||
msgid "View all object's settings"
|
||||
msgstr "Se alla objektens inställningar"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Filament inställningar"
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Skrivarens inställningar"
|
||||
|
||||
msgid "Remove current plate (if not last one)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5972,9 +6025,6 @@ msgstr ""
|
|||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Förinställningar"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr ""
|
||||
"Automatisk synkronisering av användarens förinställningar (skrivare/filament/"
|
||||
|
|
@ -8352,6 +8402,33 @@ msgid ""
|
|||
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
"surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "Skapar Skirt & Brim"
|
||||
|
||||
|
|
@ -8837,7 +8914,7 @@ msgid ""
|
|||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -9164,21 +9241,19 @@ msgstr "Säkerställ vertikal skaltjocklek"
|
|||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"Lägg till massiv fyllning nära sluttande ytor för att garantera den "
|
||||
"vertikala skal tjockleken (topp+bottenfasta lager)."
|
||||
|
||||
msgid "Further reduce solid infill on walls (beta)"
|
||||
"thickness (top+bottom solid layers)\n"
|
||||
"None: No solid infill will be added anywhere. Caution: Use this option "
|
||||
"carefully if your model has sloped surfaces\n"
|
||||
"Critical Only: Avoid adding solid infill for walls\n"
|
||||
"Moderate: Add solid infill for heavily sloping surfaces only\n"
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Further reduces any solid infill applied to walls. As there will be very "
|
||||
"limited infill supporting solid surfaces, make sure that you are using "
|
||||
"adequate number of walls to support the part on sloping surfaces.\n"
|
||||
"\n"
|
||||
"For heavily sloped surfaces this option is not suitable as it will generate "
|
||||
"too thin of a top layer and should be disabled."
|
||||
msgid "Critical Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface pattern"
|
||||
|
|
@ -10951,6 +11026,45 @@ msgstr ""
|
|||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
"seam.\n"
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
"print scarf joints at a slow speed (less than 100 mm/s). It's also "
|
||||
"advisable to enable 'Extrusion rate smoothing' if the set speed varies "
|
||||
"significantly from the speed of the outer or inner walls. If the speed "
|
||||
"specified here is higher than the speed of the outer or inner walls, the "
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr ""
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -14110,6 +14224,13 @@ msgid ""
|
|||
"probability of warping."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Lägg till massiv fyllning nära sluttande ytor för att garantera den "
|
||||
#~ "vertikala skal tjockleken (topp+bottenfasta lager)."
|
||||
|
||||
#~ msgid "Configuration package updated to "
|
||||
#~ msgstr "Konfigurations paket uppdaterat till "
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: OrcaSlicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-03 09:32+0800\n"
|
||||
"POT-Creation-Date: 2024-03-13 22:09+0800\n"
|
||||
"PO-Revision-Date: 2024-03-03 22:12+0300\n"
|
||||
"Last-Translator: Olcay ÖREN\n"
|
||||
"Language-Team: Türkçe\n"
|
||||
|
|
@ -3382,22 +3382,16 @@ msgstr ""
|
|||
"Hayır - Bu sefer spiral modunu kullanmaktan vazgeçin"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
"Alternatif ekstra duvar yalnızca dikey kabuk kalınlığının devre dışı "
|
||||
"bırakılmasıyla çalışır. "
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
"Bu ayarlar otomatik olarak değiştirilsin mi?\n"
|
||||
"Evet - Dikey kabuk kalınlığını sağlamayı devre dışı bırakın ve alternatif "
|
||||
"ekstra duvarı etkinleştirin\n"
|
||||
"Hayır - Alternatif ekstra duvar kullanmayın"
|
||||
|
||||
msgid ""
|
||||
"Prime tower does not work when Adaptive Layer Height or Independent Support "
|
||||
|
|
@ -3652,6 +3646,68 @@ msgstr ""
|
|||
msgid "default"
|
||||
msgstr "varsayılan"
|
||||
|
||||
#, boost-format
|
||||
msgid "Edit Custom G-code (%1%)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Built-in placeholders (Double click item to add to G-code)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Search gcode placeholders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add selected placeholder to G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select placeholder"
|
||||
msgstr ""
|
||||
|
||||
msgid "[Global] Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Write"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print Statistics"
|
||||
msgstr ""
|
||||
|
||||
msgid "Objects Info"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Temperatures"
|
||||
msgstr ""
|
||||
|
||||
msgid "Timestamps"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Specific for %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Ön ayarlar"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Yazdırma ayarları"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Filament Ayarları"
|
||||
|
||||
msgid "SLA Materials settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Yazıcı Ayarları"
|
||||
|
||||
msgid "parameter name"
|
||||
msgstr "parametre adı"
|
||||
|
||||
|
|
@ -3845,9 +3901,6 @@ msgstr "Yazdır"
|
|||
msgid "Printer"
|
||||
msgstr "Yazıcı"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Yazdırma ayarları"
|
||||
|
||||
msgid "Custom g-code"
|
||||
msgstr "Özel g-code"
|
||||
|
||||
|
|
@ -5371,12 +5424,6 @@ msgstr "Ön ayarları karşılaştır"
|
|||
msgid "View all object's settings"
|
||||
msgstr "Nesnenin tüm ayarları"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Filament Ayarları"
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Yazıcı Ayarları"
|
||||
|
||||
msgid "Remove current plate (if not last one)"
|
||||
msgstr "Mevcut tablayı kaldırın (eğer sonuncusu değilse)"
|
||||
|
||||
|
|
@ -6119,9 +6166,6 @@ msgstr "Hacimleri temizleme: Renk her değiştiğinde otomatik olarak hesapla."
|
|||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr "Etkinleştirilirse, renk her değiştiğinde otomatik hesapla."
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Ön ayarlar"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr "Kullanıcı ön ayarları otomatik senkronizasyon (Yazıcı/Filament/İşlem)"
|
||||
|
||||
|
|
@ -6959,9 +7003,10 @@ msgid ""
|
|||
"precise dimensions or is part of an assembly, it's important to double-check "
|
||||
"whether this change in geometry impacts the functionality of your print."
|
||||
msgstr ""
|
||||
"Bu seçeneğin etkinleştirilmesi modelin şeklini değiştirecektir. Baskınız kesin "
|
||||
"boyutlar gerektiriyorsa veya bir montajın parçasıysa geometrideki bu değişikliğin "
|
||||
"baskınızın işlevselliğini etkileyip etkilemediğini bir kez daha kontrol etmeniz önemlidir."
|
||||
"Bu seçeneğin etkinleştirilmesi modelin şeklini değiştirecektir. Baskınız "
|
||||
"kesin boyutlar gerektiriyorsa veya bir montajın parçasıysa geometrideki bu "
|
||||
"değişikliğin baskınızın işlevselliğini etkileyip etkilemediğini bir kez daha "
|
||||
"kontrol etmeniz önemlidir."
|
||||
|
||||
msgid "Are you sure you want to enable this option?"
|
||||
msgstr "Bu seçeneği etkinleştirmek istediğinizden emin misiniz?"
|
||||
|
|
@ -8579,7 +8624,35 @@ msgstr "Plaka %d: %s, %s filamentini desteklemiyor"
|
|||
msgid ""
|
||||
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
|
||||
msgstr ""
|
||||
"Sarsıntı hızının çok düşük ayarlanması kavisli yüzeylerde bozulmalara neden olabilir"
|
||||
"Sarsıntı hızının çok düşük ayarlanması kavisli yüzeylerde bozulmalara neden "
|
||||
"olabilir"
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
"surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "Etek ve kenar oluşturma"
|
||||
|
|
@ -9017,8 +9090,8 @@ msgid ""
|
|||
msgstr ""
|
||||
"Dış duvar aralığını ayarlayarak kabuk hassasiyetini artırın. Bu aynı zamanda "
|
||||
"katman tutarlılığını da artırır.\n"
|
||||
"Not: Bu ayar yalnızca duvar sırası İç-Dış olarak yapılandırıldığında "
|
||||
"etkili olacaktır."
|
||||
"Not: Bu ayar yalnızca duvar sırası İç-Dış olarak yapılandırıldığında etkili "
|
||||
"olacaktır."
|
||||
|
||||
msgid "Only one wall on top surfaces"
|
||||
msgstr "Üst yüzeylerde yalnızca bir duvar"
|
||||
|
|
@ -9124,7 +9197,7 @@ msgstr ""
|
|||
"bakılmaksızın tek katmanlar üzerine değişen yönlerde yazdırılması için Ters "
|
||||
"Eşiği 0'a ayarlamanız önerilir."
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr "Köprü havşa delikleri"
|
||||
|
||||
msgid ""
|
||||
|
|
@ -9137,7 +9210,8 @@ msgstr ""
|
|||
"Bu seçenek, havşa delikleri için köprüler oluşturarak bunların desteksiz "
|
||||
"yazdırılmasına olanak tanır. Mevcut modlar şunları içerir:\n"
|
||||
"1. Yok: Köprü oluşturulmaz.\n"
|
||||
"2. Kısmen Köprülendi: Desteklenmeyen alanın yalnızca bir kısmı köprülenecek.\n"
|
||||
"2. Kısmen Köprülendi: Desteklenmeyen alanın yalnızca bir kısmı "
|
||||
"köprülenecek.\n"
|
||||
"3. Feda Katman: Tam bir feda köprü katmanı oluşturulur."
|
||||
|
||||
msgid "Partially bridged"
|
||||
|
|
@ -9503,28 +9577,20 @@ msgstr "Dikey kabuk kalınlığını onayla"
|
|||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
"thickness (top+bottom solid layers)\n"
|
||||
"None: No solid infill will be added anywhere. Caution: Use this option "
|
||||
"carefully if your model has sloped surfaces\n"
|
||||
"Critical Only: Avoid adding solid infill for walls\n"
|
||||
"Moderate: Add solid infill for heavily sloping surfaces only\n"
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
"Dikey kabuk kalınlığını garanti etmek için eğimli yüzeylerin yakınına katı "
|
||||
"dolgu ekleyin (üst + alt katı katmanlar)"
|
||||
|
||||
msgid "Further reduce solid infill on walls (beta)"
|
||||
msgstr "Duvarlardaki katı dolguyu daha da azaltın (deneysel)"
|
||||
|
||||
msgid ""
|
||||
"Further reduces any solid infill applied to walls. As there will be very "
|
||||
"limited infill supporting solid surfaces, make sure that you are using "
|
||||
"adequate number of walls to support the part on sloping surfaces.\n"
|
||||
"\n"
|
||||
"For heavily sloped surfaces this option is not suitable as it will generate "
|
||||
"too thin of a top layer and should be disabled."
|
||||
msgid "Critical Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
"Duvarlara uygulanan katı dolguları daha da azaltır. Dolguyu destekleyen katı "
|
||||
"yüzeyler çok sınırlı olacağından, eğimli yüzeylerde parçayı desteklemek için "
|
||||
"yeterli sayıda duvar kullandığınızdan emin olun.\n"
|
||||
"\n"
|
||||
"Çok eğimli yüzeyler için bu seçenek çok ince bir üst katman oluşturacağından "
|
||||
"ve devre dışı bırakılması gerektiğinden uygun değildir."
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "Üst yüzey deseni"
|
||||
|
|
@ -9700,12 +9766,12 @@ msgid ""
|
|||
"\n"
|
||||
"This option will be disabled if sprial vase mode is enabled."
|
||||
msgstr ""
|
||||
"Yukarıdan aşağıya bakıldığında duvar döngülerinin ekstrüzyona "
|
||||
"uğradığı yön.\n"
|
||||
"Yukarıdan aşağıya bakıldığında duvar döngülerinin ekstrüzyona uğradığı yön.\n"
|
||||
"\n"
|
||||
"Tek sayıyı ters çevir seçeneği etkinleştirilmedikçe, varsayılan olarak tüm duvarlar "
|
||||
"saat yönünün tersine ekstrüde edilir. Bunu Otomatik dışında herhangi bir seçeneğe "
|
||||
"ayarlayın, Ters açıklığa bakılmaksızın duvar yönünü zorlayacaktır.\n"
|
||||
"Tek sayıyı ters çevir seçeneği etkinleştirilmedikçe, varsayılan olarak tüm "
|
||||
"duvarlar saat yönünün tersine ekstrüde edilir. Bunu Otomatik dışında "
|
||||
"herhangi bir seçeneğe ayarlayın, Ters açıklığa bakılmaksızın duvar yönünü "
|
||||
"zorlayacaktır.\n"
|
||||
"\n"
|
||||
"Spiral vazo modu etkinse bu seçenek devre dışı bırakılacaktır."
|
||||
|
||||
|
|
@ -9755,15 +9821,15 @@ msgid ""
|
|||
"your printer manufacturer. The default setting is (-99999, -99999), which "
|
||||
"means there are no limits, thus allowing probing across the entire bed."
|
||||
msgstr ""
|
||||
"Bu seçenek, izin verilen yatak ağ alanı için minimum noktayı ayarlar. "
|
||||
"Prob XY ofseti nedeniyle çoğu yazıcı yatağın tamamını tarayamaz. "
|
||||
"Prob noktasının yatak alanı dışına çıkmamasını sağlamak için yatak ağının "
|
||||
"minimum ve maksimum noktaları uygun şekilde ayarlanmalıdır. OrcaSlicer, "
|
||||
"Bu seçenek, izin verilen yatak ağ alanı için minimum noktayı ayarlar. Prob "
|
||||
"XY ofseti nedeniyle çoğu yazıcı yatağın tamamını tarayamaz. Prob noktasının "
|
||||
"yatak alanı dışına çıkmamasını sağlamak için yatak ağının minimum ve "
|
||||
"maksimum noktaları uygun şekilde ayarlanmalıdır. OrcaSlicer, "
|
||||
"adaptive_bed_mesh_min/adaptive_bed_mesh_max değerlerinin bu min/maks "
|
||||
"noktalarını aşmamasını sağlar. Bu bilgi genellikle yazıcınızın "
|
||||
"üreticisinden edinilebilir. Varsayılan ayar (-99999, -99999) şeklindedir; "
|
||||
"bu, herhangi bir sınırın olmadığı anlamına gelir, dolayısıyla yatağın "
|
||||
"tamamında problamaya izin verilir."
|
||||
"noktalarını aşmamasını sağlar. Bu bilgi genellikle yazıcınızın üreticisinden "
|
||||
"edinilebilir. Varsayılan ayar (-99999, -99999) şeklindedir; bu, herhangi bir "
|
||||
"sınırın olmadığı anlamına gelir, dolayısıyla yatağın tamamında problamaya "
|
||||
"izin verilir."
|
||||
|
||||
msgid "Bed mesh max"
|
||||
msgstr "Maksimum yatak ağı"
|
||||
|
|
@ -9779,14 +9845,14 @@ msgid ""
|
|||
"means there are no limits, thus allowing probing across the entire bed."
|
||||
msgstr ""
|
||||
"Bu seçenek, izin verilen yatak ağ alanı için maksimum noktayı ayarlar. "
|
||||
"Probun XY ofseti nedeniyle çoğu yazıcı yatağın tamamını tarayamaz. "
|
||||
"Prob noktasının yatak alanı dışına çıkmamasını sağlamak için yatak ağının "
|
||||
"minimum ve maksimum noktaları uygun şekilde ayarlanmalıdır. "
|
||||
"OrcaSlicer, adaptive_bed_mesh_min/adaptive_bed_mesh_max değerlerinin bu "
|
||||
"min/maks noktalarını aşmamasını sağlar. Bu bilgi genellikle yazıcınızın "
|
||||
"üreticisinden edinilebilir. Varsayılan ayar (99999, 99999) şeklindedir; bu, "
|
||||
"herhangi bir sınırın olmadığı anlamına gelir, dolayısıyla yatağın tamamında "
|
||||
"problamaya izin verilir."
|
||||
"Probun XY ofseti nedeniyle çoğu yazıcı yatağın tamamını tarayamaz. Prob "
|
||||
"noktasının yatak alanı dışına çıkmamasını sağlamak için yatak ağının minimum "
|
||||
"ve maksimum noktaları uygun şekilde ayarlanmalıdır. OrcaSlicer, "
|
||||
"adaptive_bed_mesh_min/adaptive_bed_mesh_max değerlerinin bu min/maks "
|
||||
"noktalarını aşmamasını sağlar. Bu bilgi genellikle yazıcınızın üreticisinden "
|
||||
"edinilebilir. Varsayılan ayar (99999, 99999) şeklindedir; bu, herhangi bir "
|
||||
"sınırın olmadığı anlamına gelir, dolayısıyla yatağın tamamında problamaya "
|
||||
"izin verilir."
|
||||
|
||||
msgid "Probe point distance"
|
||||
msgstr "Prob noktası mesafesi"
|
||||
|
|
@ -9796,7 +9862,8 @@ msgid ""
|
|||
"the X and Y directions, with the default being 50mm for both X and Y."
|
||||
msgstr ""
|
||||
"Bu seçenek, X ve Y yönleri için prob noktaları arasındaki tercih edilen "
|
||||
"mesafeyi (ızgara boyutu) ayarlar; varsayılan değer hem X hem de Y için 50 mm'dir."
|
||||
"mesafeyi (ızgara boyutu) ayarlar; varsayılan değer hem X hem de Y için 50 "
|
||||
"mm'dir."
|
||||
|
||||
msgid "Mesh margin"
|
||||
msgstr "Yatak ağı boşluğu"
|
||||
|
|
@ -11116,9 +11183,9 @@ msgid ""
|
|||
"maintain the minimum layer time above, when slow down for better layer "
|
||||
"cooling is enabled."
|
||||
msgstr ""
|
||||
"Daha iyi katman soğutması için yavaşlama etkinleştirildiğinde, yukarıdaki minimum "
|
||||
"katman süresini korumaya çalışmak için yazıcının yavaşlayacağı minimum "
|
||||
"yazdırma hızı."
|
||||
"Daha iyi katman soğutması için yavaşlama etkinleştirildiğinde, yukarıdaki "
|
||||
"minimum katman süresini korumaya çalışmak için yazıcının yavaşlayacağı "
|
||||
"minimum yazdırma hızı."
|
||||
|
||||
msgid "Nozzle diameter"
|
||||
msgstr "Nozul çapı"
|
||||
|
|
@ -11583,51 +11650,92 @@ msgstr ""
|
|||
"belirtilebilir. Bu parametrenin varsayılan değeri %10'dur."
|
||||
|
||||
msgid "Scarf joint seam (beta)"
|
||||
msgstr "Eşarp birleşim yeri dikişi (beta)"
|
||||
msgstr "Atkı birleşim dikişi (beta)"
|
||||
|
||||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr "Dikiş görünürlüğünü en aza indirmek ve dikiş mukavemetini arttırmak "
|
||||
"için eşarp eklemini kullanın."
|
||||
msgstr ""
|
||||
"Dikiş görünürlüğünü en aza indirmek ve dikiş mukavemetini arttırmak için "
|
||||
"atkı birleşimini kullanın."
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr "Koşullu atkı birleşimi"
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr "Koşullu açı eşiği"
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
"seam.\n"
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr "Atkı birleşim hızı"
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
"print scarf joints at a slow speed (less than 100 mm/s). It's also "
|
||||
"advisable to enable 'Extrusion rate smoothing' if the set speed varies "
|
||||
"significantly from the speed of the outer or inner walls. If the speed "
|
||||
"specified here is higher than the speed of the outer or inner walls, the "
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr "Atkı birleşimi akış oranı"
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
"Bu faktör atkı birleşimlerinde kullanılacak materyal miktarını değiştirir."
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr "Eşarp başlangıç yüksekliği"
|
||||
msgstr "Atkı başlangıç yüksekliği"
|
||||
|
||||
msgid ""
|
||||
"Start height of the scarf.\n"
|
||||
"This amount can be specified in millimeters or as a percentage of the "
|
||||
"current layer height. The default value for this parameter is 0."
|
||||
msgstr ""
|
||||
"Eşarpın yüksekliğini başlatın.\n"
|
||||
"Atkı başlangıç yüksekliği.\n"
|
||||
"Bu miktar milimetre cinsinden veya geçerli katman yüksekliğinin yüzdesi "
|
||||
"olarak belirtilebilir. Bu parametrenin varsayılan değeri 0'dır."
|
||||
|
||||
msgid "Scarf around entire wall"
|
||||
msgstr "Tüm duvarın etrafında eşarp"
|
||||
msgstr "Tüm duvarın etrafına atkıla"
|
||||
|
||||
msgid "The scarf extends to the entire length of the wall."
|
||||
msgstr "Eşarp duvarın tüm uzunluğu boyunca uzanır."
|
||||
msgstr "Atkı duvarın tüm uzunluğu boyunca uzanır."
|
||||
|
||||
msgid "Scarf length"
|
||||
msgstr "Eşarp uzunluğu"
|
||||
msgstr "Atkı uzunluğu"
|
||||
|
||||
msgid ""
|
||||
"Length of the scarf. Setting this parameter to zero effectively disables the "
|
||||
"scarf."
|
||||
msgstr ""
|
||||
"Eşarpın uzunluğu. Bu parametrenin 0 a ayarlanması "
|
||||
"eşarpı etkili bir şekilde devre dışı bırakır."
|
||||
"Atkının uzunluğu. Bu parametrenin 0 a ayarlanması atkıyı dolaylı yoldan "
|
||||
"devre dışı bırakır."
|
||||
|
||||
msgid "Scarf steps"
|
||||
msgstr "Eşarp adımları"
|
||||
msgstr "Atkı kademesi"
|
||||
|
||||
msgid "Minimum number of segments of each scarf."
|
||||
msgstr "Her eşarpın minimum segment sayısı."
|
||||
msgstr "Her atkının minimum segment sayısı."
|
||||
|
||||
msgid "Scarf joint for inner walls"
|
||||
msgstr "İç duvarlar için eşarp bağlantısı"
|
||||
msgstr "İç duvarlar için atkı birleşimi"
|
||||
|
||||
msgid "Use scarf joint for inner walls as well."
|
||||
msgstr "İç duvarlar için de eşarp eklemi kullanın."
|
||||
msgstr "İç duvarlar için de atkı birleşimini kullanın."
|
||||
|
||||
msgid "Role base wipe speed"
|
||||
msgstr "Otomatik temizleme hızı"
|
||||
|
|
@ -15168,6 +15276,49 @@ msgstr ""
|
|||
"sıcaklığının uygun şekilde arttırılmasının bükülme olasılığını "
|
||||
"azaltabileceğini biliyor muydunuz?"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Alternate extra wall only works with ensure vertical shell thickness "
|
||||
#~ "disabled. "
|
||||
#~ msgstr ""
|
||||
#~ "Alternatif ekstra duvar yalnızca dikey kabuk kalınlığının devre dışı "
|
||||
#~ "bırakılmasıyla çalışır. "
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Change these settings automatically? \n"
|
||||
#~ "Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
#~ "wall\n"
|
||||
#~ "No - Dont use alternate extra wall"
|
||||
#~ msgstr ""
|
||||
#~ "Bu ayarlar otomatik olarak değiştirilsin mi?\n"
|
||||
#~ "Evet - Dikey kabuk kalınlığını sağlamayı devre dışı bırakın ve alternatif "
|
||||
#~ "ekstra duvarı etkinleştirin\n"
|
||||
#~ "Hayır - Alternatif ekstra duvar kullanmayın"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Dikey kabuk kalınlığını garanti etmek için eğimli yüzeylerin yakınına "
|
||||
#~ "katı dolgu ekleyin (üst + alt katı katmanlar)"
|
||||
|
||||
#~ msgid "Further reduce solid infill on walls (beta)"
|
||||
#~ msgstr "Duvarlardaki katı dolguyu daha da azaltın (deneysel)"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Further reduces any solid infill applied to walls. As there will be very "
|
||||
#~ "limited infill supporting solid surfaces, make sure that you are using "
|
||||
#~ "adequate number of walls to support the part on sloping surfaces.\n"
|
||||
#~ "\n"
|
||||
#~ "For heavily sloped surfaces this option is not suitable as it will "
|
||||
#~ "generate too thin of a top layer and should be disabled."
|
||||
#~ msgstr ""
|
||||
#~ "Duvarlara uygulanan katı dolguları daha da azaltır. Dolguyu destekleyen "
|
||||
#~ "katı yüzeyler çok sınırlı olacağından, eğimli yüzeylerde parçayı "
|
||||
#~ "desteklemek için yeterli sayıda duvar kullandığınızdan emin olun.\n"
|
||||
#~ "\n"
|
||||
#~ "Çok eğimli yüzeyler için bu seçenek çok ince bir üst katman "
|
||||
#~ "oluşturacağından ve devre dışı bırakılması gerektiğinden uygun değildir."
|
||||
|
||||
#~ msgid " "
|
||||
#~ msgstr " "
|
||||
|
||||
|
|
|
|||
|
|
@ -7,7 +7,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-03 09:32+0800\n"
|
||||
"POT-Creation-Date: 2024-03-13 22:09+0800\n"
|
||||
"PO-Revision-Date: 2023-08-10 20:25-0400\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -3350,14 +3350,14 @@ msgstr ""
|
|||
"Ні - цього разу відмовитися від використання режиму спіралі"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3600,6 +3600,68 @@ msgstr ""
|
|||
msgid "default"
|
||||
msgstr "за замовчуванням"
|
||||
|
||||
#, boost-format
|
||||
msgid "Edit Custom G-code (%1%)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Built-in placeholders (Double click item to add to G-code)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Search gcode placeholders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add selected placeholder to G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select placeholder"
|
||||
msgstr ""
|
||||
|
||||
msgid "[Global] Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Write"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print Statistics"
|
||||
msgstr ""
|
||||
|
||||
msgid "Objects Info"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Temperatures"
|
||||
msgstr ""
|
||||
|
||||
msgid "Timestamps"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Specific for %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Пресети"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Параметри друку"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Настінні філаменти"
|
||||
|
||||
msgid "SLA Materials settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Налаштування принтера"
|
||||
|
||||
msgid "parameter name"
|
||||
msgstr "ім'я параметра"
|
||||
|
||||
|
|
@ -3793,9 +3855,6 @@ msgstr "Друк"
|
|||
msgid "Printer"
|
||||
msgstr "Принтер"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "Параметри друку"
|
||||
|
||||
msgid "Custom g-code"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5300,12 +5359,6 @@ msgstr "Порівняти пресети"
|
|||
msgid "View all object's settings"
|
||||
msgstr "Переглянути всі налаштування об'єкта"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "Настінні філаменти"
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "Налаштування принтера"
|
||||
|
||||
msgid "Remove current plate (if not last one)"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -6026,9 +6079,6 @@ msgstr ""
|
|||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "Пресети"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr ""
|
||||
"Автоматична синхронізація користувацьких пресетів (принтер/філамент/процес)"
|
||||
|
|
@ -8403,6 +8453,33 @@ msgid ""
|
|||
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
"surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "Створення спідниці та кайми"
|
||||
|
||||
|
|
@ -8903,7 +8980,7 @@ msgid ""
|
|||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -9230,21 +9307,19 @@ msgstr "Забезпечення вертикальної товщини обо
|
|||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr ""
|
||||
"Додавання заповнення твердого тіла поблизу похилих поверхонь для Гарантії "
|
||||
"товщини вертикальної оболонки (верхній + нижній шари твердого тіла)"
|
||||
|
||||
msgid "Further reduce solid infill on walls (beta)"
|
||||
"thickness (top+bottom solid layers)\n"
|
||||
"None: No solid infill will be added anywhere. Caution: Use this option "
|
||||
"carefully if your model has sloped surfaces\n"
|
||||
"Critical Only: Avoid adding solid infill for walls\n"
|
||||
"Moderate: Add solid infill for heavily sloping surfaces only\n"
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Further reduces any solid infill applied to walls. As there will be very "
|
||||
"limited infill supporting solid surfaces, make sure that you are using "
|
||||
"adequate number of walls to support the part on sloping surfaces.\n"
|
||||
"\n"
|
||||
"For heavily sloped surfaces this option is not suitable as it will generate "
|
||||
"too thin of a top layer and should be disabled."
|
||||
msgid "Critical Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface pattern"
|
||||
|
|
@ -11114,6 +11189,45 @@ msgstr ""
|
|||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
"seam.\n"
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
"print scarf joints at a slow speed (less than 100 mm/s). It's also "
|
||||
"advisable to enable 'Extrusion rate smoothing' if the set speed varies "
|
||||
"significantly from the speed of the outer or inner walls. If the speed "
|
||||
"specified here is higher than the speed of the outer or inner walls, the "
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr ""
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -14285,6 +14399,13 @@ msgid ""
|
|||
"probability of warping."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr ""
|
||||
#~ "Додавання заповнення твердого тіла поблизу похилих поверхонь для Гарантії "
|
||||
#~ "товщини вертикальної оболонки (верхній + нижній шари твердого тіла)"
|
||||
|
||||
#~ msgid "Configuration package updated to "
|
||||
#~ msgstr "Пакет конфігурації оновлено до "
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Slic3rPE\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-03 09:32+0800\n"
|
||||
"POT-Creation-Date: 2024-03-13 22:09+0800\n"
|
||||
"PO-Revision-Date: 2023-04-01 13:21+0800\n"
|
||||
"Last-Translator: SoftFever <softfeverever@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -1071,7 +1071,7 @@ msgid "SVG actions"
|
|||
msgstr ""
|
||||
|
||||
msgid "SVG"
|
||||
msgstr ""
|
||||
msgstr "SVG矢量图"
|
||||
|
||||
#, boost-format
|
||||
msgid "Opacity (%1%)"
|
||||
|
|
@ -1669,7 +1669,7 @@ msgid "Stanford Bunny"
|
|||
msgstr "斯坦福兔子"
|
||||
|
||||
msgid "Orca String Hell"
|
||||
msgstr ""
|
||||
msgstr "Orca拉丝地狱"
|
||||
|
||||
msgid ""
|
||||
"This model features text embossment on the top surface. For optimal results, "
|
||||
|
|
@ -1680,7 +1680,7 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
msgid "Text"
|
||||
msgstr ""
|
||||
msgstr "文字浮雕"
|
||||
|
||||
msgid "Height range Modifier"
|
||||
msgstr "高度范围修改器"
|
||||
|
|
@ -1813,16 +1813,16 @@ msgid "Mirror object"
|
|||
msgstr "镜像对象"
|
||||
|
||||
msgid "Edit text"
|
||||
msgstr ""
|
||||
msgstr "编辑文字"
|
||||
|
||||
msgid "Ability to change text, font, size, ..."
|
||||
msgstr ""
|
||||
|
||||
msgid "Edit SVG"
|
||||
msgstr ""
|
||||
msgstr "编辑SVG"
|
||||
|
||||
msgid "Change SVG source file, projection, size, ..."
|
||||
msgstr ""
|
||||
msgstr "改变SVG源文件,投影,大小,..."
|
||||
|
||||
msgid "Invalidate cut info"
|
||||
msgstr "解除切割关系"
|
||||
|
|
@ -3228,16 +3228,19 @@ msgstr ""
|
|||
"否 - 暂不使用旋转模式"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
msgstr ""
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr "“交替添加额外”与“确保垂直外壳厚度”的”全部“选项不兼容。"
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
"自动调整这些设置?\n"
|
||||
"是 - 自动调整确保垂直外壳厚度为“适量”,并开启交替添加额外内墙\n"
|
||||
"否 - 不使用交替添加额外内墙"
|
||||
|
||||
msgid ""
|
||||
"Prime tower does not work when Adaptive Layer Height or Independent Support "
|
||||
|
|
@ -3480,6 +3483,68 @@ msgstr "CF/GF耗材丝丝又硬又脆,在AMS中很容易断裂或卡住,请
|
|||
msgid "default"
|
||||
msgstr "缺省"
|
||||
|
||||
#, boost-format
|
||||
msgid "Edit Custom G-code (%1%)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Built-in placeholders (Double click item to add to G-code)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Search gcode placeholders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add selected placeholder to G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select placeholder"
|
||||
msgstr ""
|
||||
|
||||
msgid "[Global] Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Write"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print Statistics"
|
||||
msgstr ""
|
||||
|
||||
msgid "Objects Info"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Temperatures"
|
||||
msgstr ""
|
||||
|
||||
msgid "Timestamps"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Specific for %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "预设"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "打印设置"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "耗材丝设置"
|
||||
|
||||
msgid "SLA Materials settings"
|
||||
msgstr ""
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "打印机设置"
|
||||
|
||||
msgid "parameter name"
|
||||
msgstr "参数名称"
|
||||
|
||||
|
|
@ -3673,9 +3738,6 @@ msgstr "打印"
|
|||
msgid "Printer"
|
||||
msgstr "打印机"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "打印设置"
|
||||
|
||||
msgid "Custom g-code"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5156,12 +5218,6 @@ msgstr "比较预设"
|
|||
msgid "View all object's settings"
|
||||
msgstr "查看所有对象的配置"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "耗材丝设置"
|
||||
|
||||
msgid "Printer settings"
|
||||
msgstr "打印机设置"
|
||||
|
||||
msgid "Remove current plate (if not last one)"
|
||||
msgstr "移除当前板(如果不是最后一个)"
|
||||
|
||||
|
|
@ -5853,9 +5909,6 @@ msgstr "冲刷体积:每一次更换颜色时自动计算。"
|
|||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr "如果启用,会在每一次更换颜色时自动计算。"
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "预设"
|
||||
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr "同步用户预设(打印机/耗材丝/工艺)"
|
||||
|
||||
|
|
@ -6920,7 +6973,7 @@ msgid "Extruder Clearance"
|
|||
msgstr "挤出机避让空间"
|
||||
|
||||
msgid "Adaptive bed mesh"
|
||||
msgstr ""
|
||||
msgstr "自适应网床"
|
||||
|
||||
msgid "Accessory"
|
||||
msgstr "配件"
|
||||
|
|
@ -8147,7 +8200,45 @@ msgstr "盘 %d: %s 不支持耗材丝 %s"
|
|||
|
||||
msgid ""
|
||||
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
|
||||
msgstr "将抖动(jerk)速度设置得太低可能会导致打印曲面时出现瑕疵"
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
"抖动速度设置超过了打印机的最大抖动速度(machine_max_jerk_x/"
|
||||
"machine_max_jerk_y)。\n"
|
||||
"Orca将自动限制抖动速度,以确保不超过打印机的速度限制。\n"
|
||||
"您可以调整打印机配置中的最大抖动速度设置,以获得更高的速度。"
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
"surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
"加速度设置超过了打印机的最大加速度(machine_max_acceleration_extruding)。\n"
|
||||
"Orca将自动限制加速度,以确保不超过打印机的速度限制。\n"
|
||||
"您可以调整打印机配置中的machine_max_acceleration_extruding值,以获得更高的速"
|
||||
"度。"
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
"速度设置超过了打印机的最大速度(machine_max_speed_x/machine_max_speed_y)。\n"
|
||||
"Orca将自动限制打印速度,以确保不超过打印机的速度限制。\n"
|
||||
"您可以调整打印机配置中的最大速度设置,以获得更高的速度。"
|
||||
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "正在生成skirt和brim"
|
||||
|
|
@ -8410,7 +8501,7 @@ msgstr ""
|
|||
"全由底部壳体层数决定"
|
||||
|
||||
msgid "Apply gap fill"
|
||||
msgstr ""
|
||||
msgstr "启用间隙填充"
|
||||
|
||||
msgid ""
|
||||
"Enables gap fill for the selected surfaces. The minimum gap length that will "
|
||||
|
|
@ -8424,13 +8515,13 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
msgid "Everywhere"
|
||||
msgstr ""
|
||||
msgstr "所有地方"
|
||||
|
||||
msgid "Top and bottom surfaces"
|
||||
msgstr ""
|
||||
msgstr "仅顶层和底层"
|
||||
|
||||
msgid "Nowhere"
|
||||
msgstr ""
|
||||
msgstr "不填充"
|
||||
|
||||
msgid "Force cooling for overhang and bridge"
|
||||
msgstr "悬垂/桥接强制冷却"
|
||||
|
|
@ -8612,8 +8703,8 @@ msgstr ""
|
|||
"为了使这个设置最有效,建议将反转阈值设置为0,这样所有的内墙都会在奇数层交替打"
|
||||
"印。"
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgstr ""
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr "沉孔搭桥"
|
||||
|
||||
msgid ""
|
||||
"This option creates bridges for counterbore holes, allowing them to be "
|
||||
|
|
@ -8622,12 +8713,16 @@ msgid ""
|
|||
"2. Partially Bridged: Only a part of the unsupported area will be bridged.\n"
|
||||
"3. Sacrificial Layer: A full sacrificial bridge layer is created."
|
||||
msgstr ""
|
||||
"此选项为沉孔创建搭桥,使其可以在无支撑的情况下打印。可用的模式包括:\n"
|
||||
"1. 无:不创建搭桥。\n"
|
||||
"2. 部分搭桥:仅部分不支撑的区域将被搭桥。\n"
|
||||
"3. 牺牲层:创建一个完整的牺牲层。"
|
||||
|
||||
msgid "Partially bridged"
|
||||
msgstr ""
|
||||
msgstr "部分搭桥"
|
||||
|
||||
msgid "Sacrificial layer"
|
||||
msgstr ""
|
||||
msgstr "牺牲层"
|
||||
|
||||
msgid "Reverse threshold"
|
||||
msgstr "反转阈值"
|
||||
|
|
@ -8761,13 +8856,13 @@ msgid "By object"
|
|||
msgstr "逐件"
|
||||
|
||||
msgid "Intra-layer order"
|
||||
msgstr ""
|
||||
msgstr "层内打印顺序"
|
||||
|
||||
msgid "Print order within a single layer"
|
||||
msgstr ""
|
||||
msgstr "同一层内的打印顺序"
|
||||
|
||||
msgid "As object list"
|
||||
msgstr ""
|
||||
msgstr "按对象列表中的顺序"
|
||||
|
||||
msgid "Slow printing down for better layer cooling"
|
||||
msgstr "降低打印速度 以得到更好的冷却"
|
||||
|
|
@ -8864,7 +8959,7 @@ msgstr ""
|
|||
"虑关闭它。"
|
||||
|
||||
msgid "Don't filter out small internal bridges (beta)"
|
||||
msgstr ""
|
||||
msgstr "保留细微内部桥接(试验)"
|
||||
|
||||
msgid ""
|
||||
"This option can help reducing pillowing on top surfaces in heavily slanted "
|
||||
|
|
@ -8894,15 +8989,33 @@ msgid ""
|
|||
"overhang. This option is useful for heavily slanted top surface models. "
|
||||
"However, in most cases it creates too many unecessary bridges."
|
||||
msgstr ""
|
||||
"此选项可以帮助减少在严重倾斜或弯曲模型的顶部表面上的枕头现象。\n"
|
||||
"\n"
|
||||
"默认情况下,小的内部搭桥会被过滤掉,内部实心填充会直接打印在稀疏填充上。这在"
|
||||
"大多数情况下效果很好,可以加快打印速度,而对顶部表面质量的影响不大。\n"
|
||||
"\n"
|
||||
"然而,在严重倾斜或弯曲的模型中,特别是在使用了过低的稀疏填充密度的情况下,这"
|
||||
"可能会导致不支撑的实心填充卷曲,从而导致枕头现象。\n"
|
||||
"\n"
|
||||
"启用此选项将在轻微不支撑的内部实心填充上打印内部搭桥层。下面的选项控制过滤的"
|
||||
"程度,即创建的内部搭桥的数量。\n"
|
||||
"\n"
|
||||
"禁用 - 禁用此选项。这是默认行为,在大多数情况下效果很好。\n"
|
||||
"\n"
|
||||
"有限过滤 - 在严重倾斜的表面上创建内部搭桥,同时避免创建不必要的内部搭桥。这对"
|
||||
"大多数困难模型效果很好。\n"
|
||||
"\n"
|
||||
"无过滤 - 在每个潜在的内部悬垂上创建内部搭桥。这个选项对于严重倾斜的顶部表面模"
|
||||
"型很有用。然而,在大多数情况下,它会创建太多不必要的桥接。"
|
||||
|
||||
msgid "Disabled"
|
||||
msgstr ""
|
||||
msgstr "禁用"
|
||||
|
||||
msgid "Limited filtering"
|
||||
msgstr ""
|
||||
msgstr "有限保留"
|
||||
|
||||
msgid "No filtering"
|
||||
msgstr ""
|
||||
msgstr "保留全部"
|
||||
|
||||
msgid "Max bridge length"
|
||||
msgstr "最大桥接长度"
|
||||
|
|
@ -8937,20 +9050,27 @@ msgstr "确保垂直外壳厚度"
|
|||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr "在斜面表面附近添加实心填充,以保证垂直外壳厚度(顶部+底部实心层)"
|
||||
|
||||
msgid "Further reduce solid infill on walls (beta)"
|
||||
"thickness (top+bottom solid layers)\n"
|
||||
"None: No solid infill will be added anywhere. Caution: Use this option "
|
||||
"carefully if your model has sloped surfaces\n"
|
||||
"Critical Only: Avoid adding solid infill for walls\n"
|
||||
"Moderate: Add solid infill for heavily sloping surfaces only\n"
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
"在倾斜表面附近添加实心填充,以保证垂直外壳的厚度(顶部+底部实心层)\n"
|
||||
"无:任何地方都不会添加实心填充。注意:如果您的模型有倾斜表面,请谨慎使用此选"
|
||||
"项\n"
|
||||
"仅关键区域:避免为墙壁添加实心填充\n"
|
||||
"适量:仅为严重倾斜的表面添加实心填充\n"
|
||||
"全部:为所有适当的倾斜表面添加实心填充\n"
|
||||
"默认值为全部。"
|
||||
|
||||
msgid ""
|
||||
"Further reduces any solid infill applied to walls. As there will be very "
|
||||
"limited infill supporting solid surfaces, make sure that you are using "
|
||||
"adequate number of walls to support the part on sloping surfaces.\n"
|
||||
"\n"
|
||||
"For heavily sloped surfaces this option is not suitable as it will generate "
|
||||
"too thin of a top layer and should be disabled."
|
||||
msgstr ""
|
||||
msgid "Critical Only"
|
||||
msgstr "仅关键区域"
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr "适量"
|
||||
|
||||
msgid "Top surface pattern"
|
||||
msgstr "顶面图案"
|
||||
|
|
@ -9099,7 +9219,7 @@ msgstr ""
|
|||
"填充物透过零件的外部表面。"
|
||||
|
||||
msgid "Wall loop direction"
|
||||
msgstr ""
|
||||
msgstr "围墙打印方向"
|
||||
|
||||
msgid ""
|
||||
"The direction which the wall loops are extruded when looking down from the "
|
||||
|
|
@ -9111,12 +9231,18 @@ msgid ""
|
|||
"\n"
|
||||
"This option will be disabled if sprial vase mode is enabled."
|
||||
msgstr ""
|
||||
"从顶部往下看时,墙壁被打印的方向。\n"
|
||||
"\n"
|
||||
"默认情况下,所有墙壁都按逆时针方向被打印,除非启用了奇数层翻转选项。将此选项设"
|
||||
"置为除自动之外的任何选项,都会强制指定墙壁方向,而不受奇数层翻转选项的影响。\n"
|
||||
"\n"
|
||||
"如果启用了螺旋花瓶模式,此选项将被禁用。"
|
||||
|
||||
msgid "Counter clockwise"
|
||||
msgstr ""
|
||||
msgstr "逆时针"
|
||||
|
||||
msgid "Clockwise"
|
||||
msgstr ""
|
||||
msgstr "顺时针"
|
||||
|
||||
msgid "Height to rod"
|
||||
msgstr "到横杆高度"
|
||||
|
|
@ -9140,7 +9266,7 @@ msgid ""
|
|||
msgstr "挤出机四周的避让半径。用于在逐件打印中避免碰撞。"
|
||||
|
||||
msgid "Bed mesh min"
|
||||
msgstr ""
|
||||
msgstr "网床最小点"
|
||||
|
||||
msgid ""
|
||||
"This option sets the min point for the allowed bed mesh area. Due to the "
|
||||
|
|
@ -9152,9 +9278,14 @@ msgid ""
|
|||
"your printer manufacturer. The default setting is (-99999, -99999), which "
|
||||
"means there are no limits, thus allowing probing across the entire bed."
|
||||
msgstr ""
|
||||
"此选项设置了允许的网床探测区域的最小点。由于探针的XY偏移,大多数打印机无法探"
|
||||
"测整个打印床。为了确保探针不会超出床的范围,应适当设置网床的最小和最大点。逆"
|
||||
"戟鲸切片确保adaptive_bed_mesh_min/adaptive_bed_mesh_max值不超过这些最小/最大"
|
||||
"点。这些信息通常可以从您的打印机制造商那里获得。默认设置为(-99999, -99999),"
|
||||
"这意味着没有限制,因此允许在整个床上进行探测。"
|
||||
|
||||
msgid "Bed mesh max"
|
||||
msgstr ""
|
||||
msgstr "网床最大点"
|
||||
|
||||
msgid ""
|
||||
"This option sets the max point for the allowed bed mesh area. Due to the "
|
||||
|
|
@ -9166,22 +9297,29 @@ msgid ""
|
|||
"your printer manufacturer. The default setting is (99999, 99999), which "
|
||||
"means there are no limits, thus allowing probing across the entire bed."
|
||||
msgstr ""
|
||||
"此选项设置了允许的网床探测区域的最大点。由于探针的XY偏移,大多数打印机无法探"
|
||||
"测整个打印床。为了确保探针不会超出床的范围,应适当设置网床的最小和最大点。逆"
|
||||
"戟鲸切片确保adaptive_bed_mesh_min/adaptive_bed_mesh_max值不超过这些最小/最大"
|
||||
"点。这些信息通常可以从您的打印机制造商那里获得。默认设置为(99999, 99999),这"
|
||||
"意味着没有限制,因此允许在整个床上进行探测。"
|
||||
|
||||
msgid "Probe point distance"
|
||||
msgstr ""
|
||||
msgstr "网格点间距离"
|
||||
|
||||
msgid ""
|
||||
"This option sets the preferred distance between probe points (grid size) for "
|
||||
"the X and Y directions, with the default being 50mm for both X and Y."
|
||||
msgstr ""
|
||||
"此选项设置了X和Y方向的探针点(网格大小)之间的首选距离,其默认值为X和Y方向均"
|
||||
"为50mm。"
|
||||
|
||||
msgid "Mesh margin"
|
||||
msgstr ""
|
||||
msgstr "网床边缘外扩"
|
||||
|
||||
msgid ""
|
||||
"This option determines the additional distance by which the adaptive bed "
|
||||
"mesh area should be expanded in the XY directions."
|
||||
msgstr ""
|
||||
msgstr "此选项决定了自适应网床网格区域在XY方向上应扩展的额外距离。"
|
||||
|
||||
msgid "Extruder Color"
|
||||
msgstr "挤出机颜色"
|
||||
|
|
@ -9760,7 +9898,7 @@ msgid ""
|
|||
msgstr "产生绒毛表面时,插入的随机点之间的平均距离"
|
||||
|
||||
msgid "Apply fuzzy skin to first layer"
|
||||
msgstr ""
|
||||
msgstr "绒毛表面应用至首层"
|
||||
|
||||
msgid "Whether to apply fuzzy skin on the first layer"
|
||||
msgstr ""
|
||||
|
|
@ -10102,13 +10240,13 @@ msgid "This G-code will be used as a custom code"
|
|||
msgstr "该G-code是定制化指令"
|
||||
|
||||
msgid "Small area flow compensation (beta)"
|
||||
msgstr ""
|
||||
msgstr "小区域填充流量补偿(试验)"
|
||||
|
||||
msgid "Enable flow compensation for small infill areas"
|
||||
msgstr ""
|
||||
msgstr "启用小区域填充的流量补偿"
|
||||
|
||||
msgid "Flow Compensation Model"
|
||||
msgstr ""
|
||||
msgstr "流量补偿模型"
|
||||
|
||||
msgid ""
|
||||
"Flow Compensation Model, used to adjust the flow for small infill areas. The "
|
||||
|
|
@ -10116,6 +10254,8 @@ msgid ""
|
|||
"and flow correction factors, one per line, in the following format: "
|
||||
"\"1.234,5.678\""
|
||||
msgstr ""
|
||||
"流量补偿模型,用于调整小区域填充的流量。模型以逗号分隔的形式表示,每行一个"
|
||||
"值,格式如下:\"1.234,5.678\""
|
||||
|
||||
msgid "Maximum speed X"
|
||||
msgstr "X最大速度"
|
||||
|
|
@ -10478,7 +10618,7 @@ msgid "Number of walls of every layer"
|
|||
msgstr "每一层的外墙"
|
||||
|
||||
msgid "Alternate extra wall"
|
||||
msgstr "交替额外内墙"
|
||||
msgstr "交替添加额外内墙"
|
||||
|
||||
msgid ""
|
||||
"This setting adds an extra wall to every other layer. This way the infill "
|
||||
|
|
@ -10737,45 +10877,93 @@ msgid ""
|
|||
msgstr ""
|
||||
|
||||
msgid "Scarf joint seam (beta)"
|
||||
msgstr ""
|
||||
msgstr "斜拼接缝(试验)"
|
||||
|
||||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr "使用斜拼接缝来最小化接缝的可见性并增加接缝的强度。"
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr "选择性应用斜拼接缝"
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr "当墙壁没有合适的锐角以至于传统接缝无法有效隐藏的时候使用斜拼接缝。"
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr "角度阈值"
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
"seam.\n"
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
"此选项设置判断是否应用斜拼接缝的角度阈值。\n"
|
||||
"如果围墙环内的最大角度超过了这个值(表示没有足够锐的角),则使用斜拼接缝接"
|
||||
"缝。默认值为155°。"
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr "斜拼接缝速度"
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
"print scarf joints at a slow speed (less than 100 mm/s). It's also "
|
||||
"advisable to enable 'Extrusion rate smoothing' if the set speed varies "
|
||||
"significantly from the speed of the outer or inner walls. If the speed "
|
||||
"specified here is higher than the speed of the outer or inner walls, the "
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
"这个选项设置斜拼接缝的打印速度。建议以较慢的速度(小于100mm/s)打印斜拼接缝。"
|
||||
"如果设置的速度与外墙或内墙的速度相差较大,建议启用“平滑挤出率”。如果此处指定"
|
||||
"的速度高于外墙或内墙的速度,则打印机将默认使用两者中较慢的速度。当以百分比"
|
||||
"(例如80%)指定时,速度将基于外墙或内墙的速度进行计算。默认值为100%。"
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr "斜拼接缝流量"
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr "这个参数影响斜拼接缝的材料用量。"
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr ""
|
||||
msgstr "斜拼接缝起始高度"
|
||||
|
||||
msgid ""
|
||||
"Start height of the scarf.\n"
|
||||
"This amount can be specified in millimeters or as a percentage of the "
|
||||
"current layer height. The default value for this parameter is 0."
|
||||
msgstr ""
|
||||
"斜拼接缝的起始高度。\n"
|
||||
"这个数值可以用毫米或者当前层高的百分比表示。默认值为0。"
|
||||
|
||||
msgid "Scarf around entire wall"
|
||||
msgstr ""
|
||||
msgstr "围绕整个围墙"
|
||||
|
||||
msgid "The scarf extends to the entire length of the wall."
|
||||
msgstr ""
|
||||
msgstr "将斜拼接缝延伸到整个围墙"
|
||||
|
||||
msgid "Scarf length"
|
||||
msgstr ""
|
||||
msgstr "斜拼接缝长度"
|
||||
|
||||
msgid ""
|
||||
"Length of the scarf. Setting this parameter to zero effectively disables the "
|
||||
"scarf."
|
||||
msgstr ""
|
||||
msgstr "斜拼接缝的长度。长度为0时会禁用斜拼接缝"
|
||||
|
||||
msgid "Scarf steps"
|
||||
msgstr ""
|
||||
msgstr "斜拼段数"
|
||||
|
||||
msgid "Minimum number of segments of each scarf."
|
||||
msgstr ""
|
||||
msgstr "斜拼接缝所需的最少段数"
|
||||
|
||||
msgid "Scarf joint for inner walls"
|
||||
msgstr ""
|
||||
msgstr "应用斜拼于内墙"
|
||||
|
||||
msgid "Use scarf joint for inner walls as well."
|
||||
msgstr ""
|
||||
msgstr "同时应用斜拼接缝于内墙"
|
||||
|
||||
msgid "Role base wipe speed"
|
||||
msgstr "自动擦拭速度"
|
||||
|
|
@ -10785,6 +10973,8 @@ msgid ""
|
|||
"if a wipe action is executed immediately following an outer wall extrusion, "
|
||||
"the speed of the outer wall extrusion will be utilized for the wipe action."
|
||||
msgstr ""
|
||||
"擦拭速度由当前挤出类型的速度决定。例如,如果擦拭动作紧随外墙,擦拭速度将使用"
|
||||
"外墙的速度。"
|
||||
|
||||
msgid "Wipe on loops"
|
||||
msgstr "闭环擦拭"
|
||||
|
|
@ -13959,6 +14149,11 @@ msgstr ""
|
|||
"避免翘曲\n"
|
||||
"您知道吗?打印ABS这类易翘曲材料时,适当提高热床温度可以降低翘曲的概率。"
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr "在斜面表面附近添加实心填充,以保证垂直外壳厚度(顶部+底部实心层)"
|
||||
|
||||
#~ msgid " "
|
||||
#~ msgstr " "
|
||||
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: Orca Slicer\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2024-03-03 09:32+0800\n"
|
||||
"POT-Creation-Date: 2024-03-13 22:09+0800\n"
|
||||
"PO-Revision-Date: 2023-11-06 14:37+0800\n"
|
||||
"Last-Translator: ablegods <ablegods@gmail.com>\n"
|
||||
"Language-Team: \n"
|
||||
|
|
@ -3369,14 +3369,14 @@ msgstr ""
|
|||
"否 - 不使用花瓶模式"
|
||||
|
||||
msgid ""
|
||||
"Alternate extra wall only works with ensure vertical shell thickness "
|
||||
"disabled. "
|
||||
"Alternate extra wall does't work well when ensure vertical shell thickness "
|
||||
"is set to All. "
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Change these settings automatically? \n"
|
||||
"Yes - Disable ensure vertical shell thickness and enable alternate extra "
|
||||
"wall\n"
|
||||
"Yes - Change ensure vertical shell thickness to Moderate and enable "
|
||||
"alternate extra wall\n"
|
||||
"No - Dont use alternate extra wall"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -3632,6 +3632,69 @@ msgstr "含 CF/GF 線材又硬又脆,在 AMS 中很容易斷裂或卡住,請
|
|||
msgid "default"
|
||||
msgstr "預設"
|
||||
|
||||
#, boost-format
|
||||
msgid "Edit Custom G-code (%1%)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Built-in placeholders (Double click item to add to G-code)"
|
||||
msgstr ""
|
||||
|
||||
msgid "Search gcode placeholders"
|
||||
msgstr ""
|
||||
|
||||
msgid "Add selected placeholder to G-code"
|
||||
msgstr ""
|
||||
|
||||
msgid "Select placeholder"
|
||||
msgstr ""
|
||||
|
||||
msgid "[Global] Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Read Write"
|
||||
msgstr ""
|
||||
|
||||
msgid "Slicing State"
|
||||
msgstr ""
|
||||
|
||||
msgid "Print Statistics"
|
||||
msgstr ""
|
||||
|
||||
msgid "Objects Info"
|
||||
msgstr ""
|
||||
|
||||
msgid "Dimensions"
|
||||
msgstr ""
|
||||
|
||||
msgid "Temperatures"
|
||||
msgstr ""
|
||||
|
||||
msgid "Timestamps"
|
||||
msgstr ""
|
||||
|
||||
#, boost-format
|
||||
msgid "Specific for %1%"
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "預設"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "列印設定"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "線材設定"
|
||||
|
||||
msgid "SLA Materials settings"
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Printer settings"
|
||||
msgstr "列印設備設定"
|
||||
|
||||
msgid "parameter name"
|
||||
msgstr "參數名稱"
|
||||
|
||||
|
|
@ -3841,9 +3904,6 @@ msgstr "列印"
|
|||
msgid "Printer"
|
||||
msgstr "列印設備"
|
||||
|
||||
msgid "Print settings"
|
||||
msgstr "列印設定"
|
||||
|
||||
msgid "Custom g-code"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -5380,13 +5440,6 @@ msgstr "比較預設檔"
|
|||
msgid "View all object's settings"
|
||||
msgstr "查看所有物件的設定"
|
||||
|
||||
msgid "Filament settings"
|
||||
msgstr "線材設定"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Printer settings"
|
||||
msgstr "列印設備設定"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Remove current plate (if not last one)"
|
||||
msgstr "刪除目前列印板(如果不是最後一個)"
|
||||
|
|
@ -6115,9 +6168,6 @@ msgstr ""
|
|||
msgid "If enabled, auto-calculate everytime the color changed."
|
||||
msgstr ""
|
||||
|
||||
msgid "Presets"
|
||||
msgstr "預設"
|
||||
|
||||
#, fuzzy
|
||||
msgid "Auto sync user presets(Printer/Filament/Process)"
|
||||
msgstr "同步使用者預設(列印設備/線材/列印品質參數)"
|
||||
|
|
@ -8562,6 +8612,33 @@ msgid ""
|
|||
"Setting the jerk speed too low could lead to artifacts on curved surfaces"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The jerk setting exceeds the printer's maximum jerk (machine_max_jerk_x/"
|
||||
"machine_max_jerk_y).\n"
|
||||
"Orca will automatically cap the jerk speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum jerk setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The acceleration setting exceeds the printer's maximum acceleration "
|
||||
"(machine_max_acceleration_extruding).\n"
|
||||
"Orca will automatically cap the acceleration speed to ensure it doesn't "
|
||||
"surpass the printer's capabilities.\n"
|
||||
"You can adjust the machine_max_acceleration_extruding value in your "
|
||||
"printer's configuration to get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"The speed setting exceeds the printer's maximum speed (machine_max_speed_x/"
|
||||
"machine_max_speed_y).\n"
|
||||
"Orca will automatically cap the print speed to ensure it doesn't surpass the "
|
||||
"printer's capabilities.\n"
|
||||
"You can adjust the maximum speed setting in your printer's configuration to "
|
||||
"get higher speeds."
|
||||
msgstr ""
|
||||
|
||||
#, fuzzy
|
||||
msgid "Generating skirt & brim"
|
||||
msgstr "正在產生 skirt 和 brim(裙邊)"
|
||||
|
|
@ -9054,7 +9131,7 @@ msgid ""
|
|||
"directions on odd layers irrespective of their overhang degree."
|
||||
msgstr ""
|
||||
|
||||
msgid "Bridge counterbole holes"
|
||||
msgid "Bridge counterbore holes"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
|
|
@ -9411,19 +9488,19 @@ msgstr "確保垂直外殼厚度"
|
|||
|
||||
msgid ""
|
||||
"Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
"thickness (top+bottom solid layers)"
|
||||
msgstr "在斜面表面附近增加實心填充,以保證垂直外殼厚度(頂部+底部實心層)"
|
||||
|
||||
msgid "Further reduce solid infill on walls (beta)"
|
||||
"thickness (top+bottom solid layers)\n"
|
||||
"None: No solid infill will be added anywhere. Caution: Use this option "
|
||||
"carefully if your model has sloped surfaces\n"
|
||||
"Critical Only: Avoid adding solid infill for walls\n"
|
||||
"Moderate: Add solid infill for heavily sloping surfaces only\n"
|
||||
"All: Add solid infill for all suitable sloping surfaces\n"
|
||||
"Default value is All."
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Further reduces any solid infill applied to walls. As there will be very "
|
||||
"limited infill supporting solid surfaces, make sure that you are using "
|
||||
"adequate number of walls to support the part on sloping surfaces.\n"
|
||||
"\n"
|
||||
"For heavily sloped surfaces this option is not suitable as it will generate "
|
||||
"too thin of a top layer and should be disabled."
|
||||
msgid "Critical Only"
|
||||
msgstr ""
|
||||
|
||||
msgid "Moderate"
|
||||
msgstr ""
|
||||
|
||||
msgid "Top surface pattern"
|
||||
|
|
@ -11263,6 +11340,45 @@ msgstr ""
|
|||
msgid "Use scarf joint to minimize seam visibility and increase seam strength."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional scarf joint"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"Apply scarf joints only to smooth perimeters where traditional seams do not "
|
||||
"conceal the seams at sharp corners effectively."
|
||||
msgstr ""
|
||||
|
||||
msgid "Conditional angle threshold"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the threshold angle for applying a conditional scarf joint "
|
||||
"seam.\n"
|
||||
"If the maximum angle within the perimeter loop exceeds this value "
|
||||
"(indicating the absence of sharp corners), a scarf joint seam will be used. "
|
||||
"The default value is 155°."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint speed"
|
||||
msgstr ""
|
||||
|
||||
msgid ""
|
||||
"This option sets the printing speed for scarf joints. It is recommended to "
|
||||
"print scarf joints at a slow speed (less than 100 mm/s). It's also "
|
||||
"advisable to enable 'Extrusion rate smoothing' if the set speed varies "
|
||||
"significantly from the speed of the outer or inner walls. If the speed "
|
||||
"specified here is higher than the speed of the outer or inner walls, the "
|
||||
"printer will default to the slower of the two speeds. When specified as a "
|
||||
"percentage (e.g., 80%), the speed is calculated based on the respective "
|
||||
"outer or inner wall speed. The default value is set to 100%."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf joint flow ratio"
|
||||
msgstr ""
|
||||
|
||||
msgid "This factor affects the amount of material for scarf joints."
|
||||
msgstr ""
|
||||
|
||||
msgid "Scarf start height"
|
||||
msgstr ""
|
||||
|
||||
|
|
@ -14536,6 +14652,11 @@ msgid ""
|
|||
"probability of warping."
|
||||
msgstr ""
|
||||
|
||||
#~ msgid ""
|
||||
#~ "Add solid infill near sloping surfaces to guarantee the vertical shell "
|
||||
#~ "thickness (top+bottom solid layers)"
|
||||
#~ msgstr "在斜面表面附近增加實心填充,以保證垂直外殼厚度(頂部+底部實心層)"
|
||||
|
||||
#, fuzzy
|
||||
#~ msgid "Configuration package updated to "
|
||||
#~ msgstr "設定檔已更新到"
|
||||
|
|
|
|||
|
|
@ -1,21 +1,25 @@
|
|||
<svg width="256" height="256" viewBox="0 0 256 256" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M0 0H256V256H0V0Z" fill="white"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2222 0H7.11111V7.11111H0V14.2222H7.11111V21.3333H0V28.4444H7.11111V35.5556H0V42.6667H7.11111V35.5556H14.2222V42.6667H21.3333V35.5556H28.4444V42.6667H35.5556V35.5556H42.6667V42.6667H49.7778V35.5556H56.8889V42.6667H64V35.5556H71.1111V42.6667H78.2222V35.5556H85.3333V28.4444H78.2222L78.2222 21.3333H85.3333V14.2222H78.2222V7.11111H85.3333V0H78.2222L78.2222 7.11111H71.1111V0H64V7.11111H56.8889V0H49.7778V7.11111H42.6667V0H35.5556V7.11111H28.4444V0H21.3333V7.11111H14.2222V0ZM14.2222 14.2222V7.11111H7.11111V14.2222H14.2222ZM21.3333 14.2222H14.2222V21.3333H7.11111V28.4444H14.2222V35.5556H21.3333V28.4444H28.4444V35.5556H35.5556V28.4444H42.6667V35.5556H49.7778V28.4444H56.8889V35.5556H64V28.4444H71.1111V35.5556H78.2222V28.4444H71.1111V21.3333H78.2222L78.2222 14.2222H71.1111V7.11111H64V14.2222H56.8889V7.11111H49.7778V14.2222H42.6667V7.11111H35.5556V14.2222H28.4444V7.11111H21.3333V14.2222ZM21.3333 21.3333V14.2222H28.4444V21.3333H21.3333ZM35.5556 21.3333V28.4444H28.4444V21.3333H35.5556ZM42.6667 21.3333V14.2222H35.5556V21.3333H42.6667ZM49.7778 21.3333V14.2222H56.8889V21.3333H49.7778ZM64 21.3333H71.1111V14.2222H64V21.3333ZM64 21.3333H56.8889V28.4444H64V21.3333ZM49.7778 21.3333H42.6667V28.4444H49.7778V21.3333ZM21.3333 21.3333V28.4444H14.2222V21.3333H21.3333Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.3333 42.6665H7.11111V49.7776H0V56.8889H7.11111V64H0V71.1111H7.11111V78.2222H0V85.3332H7.11111V78.2222H14.2222V85.3332H21.3333V78.2222H28.4444V85.3332H35.5556V78.2222H42.6667V85.3332H49.7778V78.2222H56.8889V85.3332H64V78.2222H71.1111V85.3332H78.2222V78.2222H85.3333V71.1111H78.2222L78.2222 64H85.3333V56.8889H78.2222V49.7778H85.3333V42.6665ZM71.1111 49.7778H78.2222L78.2222 42.6667H71.1111V49.7778ZM71.1111 56.8889V49.7778H64V42.6667H56.8889V49.7778H49.7778V42.6667H42.6667V49.7778H35.5556V42.6667H28.4444V49.7778H21.3333V42.6667H14.2222V49.7778H7.11111V56.8889H14.2222V64H7.11111V71.1111H14.2222V78.2222H21.3333V71.1111H28.4444V78.2222H35.5556V71.1111H42.6667V78.2222H49.7778V71.1111H56.8889V78.2222H64V71.1111H71.1111V78.2222H78.2222V71.1111H71.1111V64H78.2222L78.2222 56.8889H71.1111ZM64 56.8889V49.7778H56.8889V56.8889H49.7778V49.7778H42.6667V56.8889H35.5556V49.7778H28.4444V56.8889H21.3333V49.7778H14.2222V56.8889H21.3333V64H14.2222V71.1111H21.3333V64H28.4444V71.1111H35.5556V64H42.6667V71.1111H49.7778V64H56.8889V71.1111H64V64H71.1111V56.8889H64ZM64 56.8889H56.8889V64H64V56.8889ZM49.7778 64H42.6667V56.8889H49.7778V64ZM35.5556 64H28.4444V56.8889H35.5556V64Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2222 85.3335H0V85.3337H7.11111V92.4446H14.2222V99.5557H7.11111V92.4448H0V99.5557H7.11111V106.667H0V113.778L7.11111 113.778V120.889H0V128H7.11111V120.889H14.2222V128H21.3333V120.889H28.4444V128H35.5556V120.889H42.6667V128H49.7778V120.889H56.8889V128H64V120.889H71.1111V128H78.2222V120.889H85.3333V113.778H78.2222L78.2222 106.667H85.3333V99.5557H78.2222V92.4446H85.3333V85.3335H78.2222L78.2222 92.4446H71.1111V85.3335H64V92.4446H56.8889V85.3335H49.7778V92.4446H42.6667V85.3335H35.5556V92.4446H28.4444V85.3335H21.3333V92.4446H14.2222V85.3335ZM21.3333 99.5557V92.4446H28.4444V99.5557H21.3333ZM21.3333 106.667V99.5557H14.2222V106.667H7.11111V113.778L14.2222 113.778V120.889H21.3333V113.778L28.4444 113.778V120.889H35.5556V113.778L42.6667 113.778V120.889H49.7778V113.778H56.8889V120.889H64V113.778L71.1111 113.778V120.889H78.2222V113.778H71.1111V106.667H78.2222L78.2222 99.5557H71.1111V92.4446H64V99.5557H56.8889V92.4446H49.7778V99.5557H42.6667V92.4446H35.5556V99.5557H28.4444V106.667H21.3333ZM35.5556 106.667V113.778L28.4444 113.778V106.667H35.5556ZM42.6667 106.667V99.5557H35.5556V106.667H42.6667ZM49.7778 106.667V113.778H42.6667V106.667H49.7778ZM56.8889 106.667V99.5557H49.7778V106.667H56.8889ZM64 106.667H71.1111V99.5557H64V106.667ZM64 106.667H56.8889V113.778L64 113.778V106.667ZM21.3333 106.667V113.778H14.2222V106.667H21.3333Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2222 128H7.11111V135.111H0V142.222H7.11111V149.333H0V156.444H7.11111V163.556H0V170.667H7.11111V163.556H14.2222V170.667H21.3333V163.556H28.4444V170.667H35.5556V163.556H42.6667V170.667H49.7778V163.556H56.8889V170.667H64V163.556H71.1111V170.667H78.2222V163.556H85.3333V156.444H78.2222L78.2222 149.333H85.3333V142.222H78.2222V135.111H85.3333V128H78.2222L78.2222 135.111H71.1111V128H64V135.111H56.8889V128H49.7778V135.111H42.6667V128H35.5556V135.111H28.4444V128H21.3333V135.111H14.2222V128ZM14.2222 142.222V135.111H7.11111V142.222H14.2222ZM21.3333 142.222H14.2222V149.333H7.11111V156.444H14.2222V163.556H21.3333V156.444H28.4444V163.556H35.5556V156.444H42.6667V163.556H49.7778V156.444H56.8889V163.556H64V156.444H71.1111V163.556H78.2222V156.444H71.1111V149.333H78.2222L78.2222 142.222H71.1111V135.111H64V142.222H56.8889V135.111H49.7778V142.222H42.6667V135.111H35.5556V142.222H28.4444V135.111H21.3333V142.222ZM21.3333 149.333V142.222H28.4444V149.333H21.3333ZM35.5556 149.333V156.444H28.4444V149.333H35.5556ZM42.6667 149.333V142.222H35.5556V149.333H42.6667ZM49.7778 149.333V142.222H56.8889V149.333H49.7778ZM64 149.333H71.1111V142.222H64V149.333ZM64 149.333H56.8889V156.444H64V149.333ZM49.7778 149.333H42.6667V156.444H49.7778V149.333ZM21.3333 149.333V156.444H14.2222V149.333H21.3333Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.3333 170.667H7.11111V177.778H0V184.889H7.11111V192H0V199.111H7.11111V206.222H0V213.333H7.11111V206.222H14.2222V213.333H21.3333V206.222H28.4444V213.333H35.5556V206.222H42.6667V213.333H49.7778V206.222H56.8889V213.333H64V206.222H71.1111V213.333H78.2222V206.222H85.3333V199.111H78.2222L78.2222 192H85.3333V184.889H78.2222V177.778H85.3333V170.667ZM71.1111 177.778H78.2222L78.2222 170.667H71.1111V177.778ZM71.1111 184.889V177.778H64V170.667H56.8889V177.778H49.7778V170.667H42.6667V177.778H35.5556V170.667H28.4444V177.778H21.3333V170.667H14.2222V177.778H7.11111V184.889H14.2222V192H7.11111V199.111H14.2222V206.222H21.3333V199.111H28.4444V206.222H35.5556V199.111H42.6667V206.222H49.7778V199.111H56.8889V206.222H64V199.111H71.1111V206.222H78.2222V199.111H71.1111V192H78.2222L78.2222 184.889H71.1111ZM64 184.889V177.778H56.8889V184.889H49.7778V177.778H42.6667V184.889H35.5556V177.778H28.4444V184.889H21.3333V177.778H14.2222V184.889H21.3333V192H14.2222V199.111H21.3333V192H28.4444V199.111H35.5556V192H42.6667V199.111H49.7778V192H56.8889V199.111H64V192H71.1111V184.889H64ZM64 184.889H56.8889V192H64V184.889ZM49.7778 192H42.6667V184.889H49.7778V192ZM35.5556 192H28.4444V184.889H35.5556V192Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M14.2222 213.333H0V213.334H7.11111V220.445H14.2222V227.556H7.11111V220.445H0V227.556H7.11111V234.667H0V241.778L7.11111 241.778V248.889H0V256H7.11111V248.889H14.2222V256H21.3333V248.889H28.4444V256H35.5556V248.889H42.6667V256H49.7778V248.889H56.8889V256H64V248.889H71.1111V256H78.2222V248.889H85.3333V241.778H78.2222L78.2222 234.667H85.3333V227.556H78.2222V220.445H85.3333V213.333H78.2222L78.2222 220.445H71.1111V213.333H64V220.445H56.8889V213.333H49.7778V220.445H42.6667V213.333H35.5556V220.445H28.4444V213.333H21.3333V220.445H14.2222V213.333ZM21.3333 227.556V220.445H28.4444V227.556H21.3333ZM21.3333 234.667V227.556H14.2222V234.667H7.11111V241.778L14.2222 241.778V248.889H21.3333V241.778L28.4444 241.778V248.889H35.5556V241.778L42.6667 241.778V248.889H49.7778V241.778H56.8889V248.889H64V241.778L71.1111 241.778V248.889H78.2222V241.778H71.1111V234.667H78.2222L78.2222 227.556H71.1111V220.445H64V227.556H56.8889V220.445H49.7778V227.556H42.6667V220.445H35.5556V227.556H28.4444V234.667H21.3333ZM35.5556 234.667V241.778L28.4444 241.778V234.667H35.5556ZM42.6667 234.667V227.556H35.5556V234.667H42.6667ZM49.7778 234.667V241.778H42.6667V234.667H49.7778ZM56.8889 234.667V227.556H49.7778V234.667H56.8889ZM64 234.667H71.1111V227.556H64V234.667ZM64 234.667H56.8889V241.778L64 241.778V234.667ZM21.3333 234.667V241.778H14.2222V234.667H21.3333Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.3372 0H85.3359V42.6667H92.4484V35.5556H99.5595V42.6667H106.671V35.5556H113.782V42.6667H120.893V35.5556H128.004V42.6667H135.115V35.5556H142.226V42.6667H149.337V35.5556H156.448V42.6667H163.559V35.5556H170.669V28.4444H163.559V21.3333H170.669V14.2222H163.559V7.11111H170.669V0H163.559V7.11111H156.448L156.448 0H149.337V7.11111H142.226V0H135.115V7.11111H128.004V0H120.893V7.11111H113.782V0H106.671V7.11111H99.5595V0H92.4484V7.11111H85.3372V0ZM92.4484 14.2222V7.11111H99.5595V14.2222H92.4484ZM92.4484 21.3333H85.3372V14.2222H92.4484V21.3333ZM99.5595 21.3333V14.2222H106.671V21.3333H99.5595ZM99.5595 28.4444V21.3333H92.4484V28.4444H85.3372V35.5556H92.4484V28.4444H99.5595ZM106.671 28.4444V35.5556H99.5595V28.4444H106.671ZM113.782 28.4444H106.671V21.3333H113.782V28.4444ZM120.893 28.4444V35.5556H113.782V28.4444H120.893ZM120.893 21.3333V28.4444H128.004V35.5556H135.115V28.4444H142.226V35.5556H149.337V28.4444H156.448V35.5556H163.559V28.4444H156.448L156.448 21.3333H163.559V14.2222H156.448V7.11111H149.337V14.2222H142.226V7.11111H135.115V14.2222H128.004V7.11111H120.893V14.2222H113.782L113.782 7.11111H106.671V14.2222H113.782V21.3333H120.893ZM128.004 21.3333V14.2222H120.893V21.3333H128.004ZM135.115 21.3333V14.2222H142.226V21.3333H135.115ZM149.337 21.3333H156.448L156.448 14.2222H149.337V21.3333ZM149.337 21.3333H142.226V28.4444H149.337V21.3333ZM135.115 21.3333H128.004V28.4444H135.115V21.3333Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M170.669 42.667H85.3359V85.3337H92.4484V78.2227H99.5595V85.3337H106.671V78.2227H113.782V85.3337H120.893V78.2227H128.004V85.3337H135.115V78.2227H142.226V85.3337H149.337V78.2227H156.448V85.3337H163.559V78.2227H170.669V71.1116H163.559V64.0005H170.669V56.8894H163.559V49.7783H170.669V42.667ZM156.448 49.7783H163.559V42.6672H156.448L156.448 49.7783ZM156.448 56.8894V49.7783H149.337V42.6672H142.226V49.7783H135.115V42.6672H128.004V49.7783H120.893V42.6672H113.782V49.7783H106.671V42.6672H99.5595V49.7783H92.4484V42.6672H85.3372V49.7783H92.4484V56.8894H85.3372V64.0005H92.4484V71.1116H85.3372V78.2227H92.4484V71.1116H99.5595V78.2227H106.671V71.1116H113.782V78.2227H120.893V71.1116H128.004V78.2227H135.115V71.1116H142.226V78.2227H149.337V71.1116H156.448V78.2227H163.559V71.1116H156.448L156.448 64.0005H163.559V56.8894H156.448ZM149.337 56.8894V49.7783H142.226V56.8894H135.115V49.7783H128.004V56.8894H120.893V49.7783H113.782L113.782 56.8894H106.671V49.7783H99.5595V56.8894H92.4484V64.0005H99.5595V71.1116H106.671V64.0005H113.782V71.1116H120.893V64.0005H128.004V71.1116H135.115V64.0005H142.226V71.1116H149.337V64.0005H156.448L156.448 56.8894H149.337ZM149.337 56.8894V64.0005H142.226V56.8894H149.337ZM135.115 64.0005V56.8894H128.004V64.0005H135.115ZM120.893 64.0005H113.782V56.8894H120.893V64.0005ZM106.671 64.0005V56.8894H99.5595V64.0005H106.671Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.3372 85.333H85.3359V128H170.669V128H163.559V120.888H170.669V113.777H163.559V106.666H170.669V99.5551H163.559V92.444H170.669V85.333H163.559V92.444H156.448L156.448 85.333H149.337V92.444H142.226V85.333H135.115V92.444H128.004V85.333H120.893V92.444H113.782V85.333H106.671V92.444H99.5595V85.333H92.4484V92.444H85.3372V85.333ZM92.4484 99.5551V92.444H99.5595V99.5551H92.4484ZM92.4484 106.666H85.3372V99.5551H92.4484V106.666ZM99.5595 106.666V99.5551H106.671V106.666H99.5595ZM99.5595 113.777V106.666H92.4484V113.777L85.3372 113.777V120.888H92.4484V128H99.5595V120.888H106.671V128H113.782V120.888H120.893V128H128.004V120.888H135.115V128H142.226V120.888H149.337V128H156.448V120.888H163.559V113.777H156.448L156.448 106.666H163.559V99.5551H156.448V92.444H149.337V99.5551H142.226V92.444H135.115V99.5551H128.004V92.444H120.893V99.5551H113.782L113.782 92.444H106.671V99.5551H113.782V106.666H106.671V113.777H99.5595ZM113.782 113.777V106.666H120.893V113.777L113.782 113.777ZM128.004 113.777L120.893 113.777V120.888H128.004V113.777ZM128.004 106.666H120.893V99.5551H128.004V106.666ZM135.115 106.666V99.5551H142.226V106.666H135.115ZM135.115 113.777H128.004V106.666H135.115V113.777ZM142.226 113.777V120.888H135.115V113.777H142.226ZM149.337 113.777V120.888H156.448V113.777L149.337 113.777ZM149.337 106.666V99.5551H156.448L156.448 106.666H149.337ZM149.337 106.666V113.777L142.226 113.777V106.666H149.337ZM113.782 113.777V120.888H106.671V113.777L113.782 113.777ZM99.5595 113.777V120.888H92.4484V113.777L99.5595 113.777Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.3372 128H85.3359V170.667H92.4484V163.556H99.5595V170.667H106.671V163.556H113.782V170.667H120.893V163.556H128.004V170.667H135.115V163.556H142.226V170.667H149.337V163.556H156.448V170.667H163.559V163.556H170.669V156.444H163.559V149.333H170.669V142.222H163.559V135.111H170.669V128H163.559V135.111H156.448L156.448 128H149.337V135.111H142.226V128H135.115V135.111H128.004V128H120.893V135.111H113.782V128H106.671V135.111H99.5595V128H92.4484V135.111H85.3372V128ZM92.4484 142.222V135.111H99.5595V142.222H92.4484ZM92.4484 149.333H85.3372V142.222H92.4484V149.333ZM99.5595 149.333V142.222H106.671V149.333H99.5595ZM99.5595 156.444V149.333H92.4484V156.444H85.3372V163.556H92.4484V156.444H99.5595ZM106.671 156.444V163.556H99.5595V156.444H106.671ZM113.782 156.444H106.671V149.333H113.782V156.444ZM120.893 156.444V163.556H113.782V156.444H120.893ZM120.893 149.333V156.444H128.004V163.556H135.115V156.444H142.226V163.556H149.337V156.444H156.448V163.556H163.559V156.444H156.448L156.448 149.333H163.559V142.222H156.448V135.111H149.337V142.222H142.226V135.111H135.115V142.222H128.004V135.111H120.893V142.222H113.782L113.782 135.111H106.671V142.222H113.782V149.333H120.893ZM128.004 149.333V142.222H120.893V149.333H128.004ZM135.115 149.333V142.222H142.226V149.333H135.115ZM149.337 149.333H156.448L156.448 142.222H149.337V149.333ZM149.337 149.333H142.226V156.444H149.337V149.333ZM135.115 149.333H128.004V156.444H135.115V149.333Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M170.669 170.667H85.3359V213.334H92.4484V206.223H99.5595V213.334H106.671V206.223H113.782V213.334H120.893V206.223H128.004V213.334H135.115V206.223H142.226V213.334H149.337V206.223H156.448V213.334H163.559V206.223H170.669V199.112H163.559V192H170.669V184.889H163.559V177.778H170.669V170.667ZM156.448 177.778H163.559V170.667H156.448L156.448 177.778ZM156.448 184.889V177.778H149.337V170.667H142.226V177.778H135.115V170.667H128.004V177.778H120.893V170.667H113.782V177.778H106.671V170.667H99.5595V177.778H92.4484V170.667H85.3372V177.778H92.4484V184.889H85.3372V192H92.4484V199.112H85.3372V206.223H92.4484V199.112H99.5595V206.223H106.671V199.112H113.782V206.223H120.893V199.112H128.004V206.223H135.115V199.112H142.226V206.223H149.337V199.112H156.448V206.223H163.559V199.112H156.448L156.448 192H163.559V184.889H156.448ZM149.337 184.889V177.778H142.226V184.889H135.115V177.778H128.004V184.889H120.893V177.778H113.782L113.782 184.889H106.671V177.778H99.5595V184.889H92.4484V192H99.5595V199.112H106.671V192H113.782V199.112H120.893V192H128.004V199.112H135.115V192H142.226V199.112H149.337V192H156.448L156.448 184.889H149.337ZM149.337 184.889V192H142.226V184.889H149.337ZM135.115 192V184.889H128.004V192H135.115ZM120.893 192H113.782V184.889H120.893V192ZM106.671 192V184.889H99.5595V192H106.671Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M85.3372 213.333H85.3359V256H170.669V256H163.559V248.888H170.669V241.777H163.559V234.666H170.669V227.555H163.559V220.444H170.669V213.333H163.559V220.444H156.448L156.448 213.333H149.337V220.444H142.226V213.333H135.115V220.444H128.004V213.333H120.893V220.444H113.782V213.333H106.671V220.444H99.5595V213.333H92.4484V220.444H85.3372V213.333ZM92.4484 227.555V220.444H99.5595V227.555H92.4484ZM92.4484 234.666H85.3372V227.555H92.4484V234.666ZM99.5595 234.666V227.555H106.671V234.666H99.5595ZM99.5595 241.777V234.666H92.4484V241.777L85.3372 241.777V248.888H92.4484V256H99.5595V248.888H106.671V256H113.782V248.888H120.893V256H128.004V248.888H135.115V256H142.226V248.888H149.337V256H156.448V248.888H163.559V241.777H156.448L156.448 234.666H163.559V227.555H156.448V220.444H149.337V227.555H142.226V220.444H135.115V227.555H128.004V220.444H120.893V227.555H113.782L113.782 220.444H106.671V227.555H113.782V234.666H106.671V241.777H99.5595ZM113.782 241.777V234.666H120.893V241.777L113.782 241.777ZM128.004 241.777L120.893 241.777V248.888H128.004V241.777ZM128.004 234.666H120.893V227.555H128.004V234.666ZM135.115 234.666V227.555H142.226V234.666H135.115ZM135.115 241.777H128.004V234.666H135.115V241.777ZM142.226 241.777V248.888H135.115V241.777H142.226ZM149.337 241.777V248.888H156.448V241.777L149.337 241.777ZM149.337 234.666V227.555H156.448L156.448 234.666H149.337ZM149.337 234.666V241.777L142.226 241.777V234.666H149.337ZM113.782 241.777V248.888H106.671V241.777L113.782 241.777ZM99.5595 241.777V248.888H92.4484V241.777L99.5595 241.777Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M170.664 7.11111V14.2222H177.774V21.3333H170.664V28.4444H177.774V35.5556H170.664V42.6667H177.774V35.5556H184.885V42.6667H191.996V35.5556H199.107V42.6667H206.218V35.5556H213.329V42.6667H220.441V35.5556H227.552V42.6667H234.663V35.5556H241.774V42.6667H248.885V35.5556H255.996V42.6667H255.997V0H248.885L248.885 7.11111H241.774V0H234.663V7.11111H227.552V0H220.441V7.11111H213.329V0H206.218V7.11111H199.107V0H191.996V7.11111H184.885V0H177.774V7.11111H170.664ZM184.885 14.2222V7.11111H177.774V14.2222H184.885ZM191.996 14.2222H184.885V21.3333H177.774V28.4444H184.885V35.5556H191.996V28.4444H199.107V35.5556H206.218V28.4444H213.329V35.5556H220.441V28.4444H227.552V35.5556H234.663V28.4444H241.774V35.5556H248.885V28.4444H255.996V21.3333H248.885L248.885 14.2222H255.996V7.11111H248.885V14.2222H241.774V7.11111H234.663V14.2222H227.552L227.552 7.11111H220.441V14.2222H213.329V7.11111H206.218V14.2222H199.107V7.11111H191.996V14.2222ZM191.996 21.3333V14.2222H199.107V21.3333H191.996ZM206.218 21.3333V28.4444H199.107V21.3333H206.218ZM213.329 21.3333V14.2222H206.218V21.3333H213.329ZM220.441 21.3333V14.2222H227.552V21.3333H220.441ZM234.663 21.3333H227.552V28.4444H234.663V21.3333ZM241.774 21.3333V28.4444H248.885L248.885 21.3333H241.774ZM241.774 21.3333H234.663V14.2222H241.774V21.3333ZM220.441 21.3333H213.329V28.4444H220.441V21.3333ZM191.996 21.3333V28.4444H184.885V21.3333H191.996Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M255.997 42.667H170.664V42.6672H177.774V49.7783H170.664V56.8894H177.774V64.0005H170.664V71.1116H177.774V78.2227H170.664V85.3337H177.774V78.2227H184.885V85.3337H191.996V78.2227H199.107V85.3337H206.218V78.2227H213.329V85.3337H220.441V78.2227H227.552V85.3337H234.663V78.2227H241.774V85.3337H248.885V78.2227H255.996V85.3337H255.997V42.667ZM248.885 71.1116V78.2227H241.774V71.1116H248.885ZM248.885 64.0005L248.885 71.1116H255.996V64.0005H248.885ZM241.774 64.0005H248.885L248.885 56.8894H255.996V49.7783H248.885L248.885 42.6672H241.774V49.7783H234.663V42.6672H227.552V49.7783H220.441V42.6672H213.329V49.7783H206.218V42.6672H199.107V49.7783H191.996V42.6672H184.885V49.7783H177.774V56.8894H184.885V64.0005H177.774V71.1116H184.885V78.2227H191.996V71.1116H199.107V78.2227H206.218V71.1116H213.329V78.2227H220.441V71.1116H227.552V78.2227H234.663V71.1116H241.774V64.0005ZM234.663 64.0005V71.1116H227.552V64.0005H234.663ZM234.663 56.8894V64.0005H241.774V56.8894H248.885V49.7783H241.774V56.8894H234.663ZM227.552 56.8894L227.552 49.7783H234.663V56.8894H227.552ZM220.441 56.8894V49.7783H213.329V56.8894H206.218V49.7783H199.107V56.8894H191.996V49.7783H184.885V56.8894H191.996V64.0005H184.885V71.1116H191.996V64.0005H199.107V71.1116H206.218V64.0005H213.329V71.1116H220.441V64.0005H227.552V56.8894H220.441ZM220.441 56.8894V64.0005H213.329V56.8894H220.441ZM206.218 64.0005H199.107V56.8894H206.218V64.0005Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M170.664 92.444V99.5551H177.774V106.666H170.664V113.777L177.774 113.777V120.888H170.664V128H255.997V85.333H248.885L248.885 92.444H241.774V85.333H234.663V92.444H227.552V85.333H220.441V92.444H213.329V85.333H206.218V92.444H199.107V85.333H191.996V92.444H184.885V85.333H177.774V92.444H170.664ZM184.885 99.5551V92.444H177.774V99.5551H184.885ZM191.996 99.5551H184.885V106.666H177.774V113.777L184.885 113.777V120.888H177.774V128H184.885V120.888H191.996V128H199.107V120.888H206.218V128H213.329V120.888H220.441V128H227.552V120.888H234.663V128H241.774V120.888H248.885V128H255.996V120.888H248.885V113.777H255.996V106.666H248.885L248.885 99.5551H255.996V92.444H248.885V99.5551H241.774V92.444H234.663V99.5551H227.552L227.552 92.444H220.441V99.5551H213.329V92.444H206.218V99.5551H199.107V92.444H191.996V99.5551ZM191.996 106.666V99.5551H199.107V106.666H191.996ZM191.996 113.777H184.885V106.666H191.996V113.777ZM199.107 113.777V106.666H206.218V113.777L199.107 113.777ZM213.329 113.777L206.218 113.777V120.888H213.329V113.777ZM213.329 106.666H206.218V99.5551H213.329V106.666ZM220.441 106.666V99.5551H227.552V106.666H220.441ZM220.441 113.777H213.329V106.666H220.441V113.777ZM227.552 113.777V120.888H220.441V113.777H227.552ZM234.663 113.777V120.888H241.774V113.777H248.885L248.885 106.666H241.774V99.5551H234.663V106.666H227.552V113.777L234.663 113.777ZM234.663 113.777V106.666H241.774V113.777L234.663 113.777ZM199.107 113.777V120.888H191.996V113.777L199.107 113.777Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M170.664 135.111V142.222H177.774V149.333H170.664V156.444H177.774V163.556H170.664V170.667H177.774V163.556H184.885V170.667H191.996V163.556H199.107V170.667H206.218V163.556H213.329V170.667H220.441V163.556H227.552V170.667H234.663V163.556H241.774V170.667H248.885V163.556H255.996V170.667H255.997V128H248.885L248.885 135.111H241.774V128H234.663V135.111H227.552V128H220.441V135.111H213.329V128H206.218V135.111H199.107V128H191.996V135.111H184.885V128H177.774V135.111H170.664ZM184.885 142.222V135.111H177.774V142.222H184.885ZM191.996 142.222H184.885V149.333H177.774V156.444H184.885V163.556H191.996V156.444H199.107V163.556H206.218V156.444H213.329V163.556H220.441V156.444H227.552V163.556H234.663V156.444H241.774V163.556H248.885V156.444H255.996V149.333H248.885L248.885 142.222H255.996V135.111H248.885V142.222H241.774V135.111H234.663V142.222H227.552L227.552 135.111H220.441V142.222H213.329V135.111H206.218V142.222H199.107V135.111H191.996V142.222ZM191.996 149.333V142.222H199.107V149.333H191.996ZM206.218 149.333V156.444H199.107V149.333H206.218ZM213.329 149.333V142.222H206.218V149.333H213.329ZM220.441 149.333V142.222H227.552V149.333H220.441ZM234.663 149.333H227.552V156.444H234.663V149.333ZM241.774 149.333V156.444H248.885L248.885 149.333H241.774ZM241.774 149.333H234.663V142.222H241.774V149.333ZM220.441 149.333H213.329V156.444H220.441V149.333ZM191.996 149.333V156.444H184.885V149.333H191.996Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M255.997 170.667H170.664V170.667H177.774V177.778H170.664V184.889H177.774V192H170.664V199.112H177.774V206.223H170.664V213.334H177.774V206.223H184.885V213.334H191.996V206.223H199.107V213.334H206.218V206.223H213.329V213.334H220.441V206.223H227.552V213.334H234.663V206.223H241.774V213.334H248.885V206.223H255.996V213.334H255.997V170.667ZM248.885 199.112V206.223H241.774V199.112H248.885ZM248.885 192L248.885 199.112H255.996V192H248.885ZM241.774 192H248.885L248.885 184.889H255.996V177.778H248.885L248.885 170.667H241.774V177.778H234.663V170.667H227.552V177.778H220.441V170.667H213.329V177.778H206.218V170.667H199.107V177.778H191.996V170.667H184.885V177.778H177.774V184.889H184.885V192H177.774V199.112H184.885V206.223H191.996V199.112H199.107V206.223H206.218V199.112H213.329V206.223H220.441V199.112H227.552V206.223H234.663V199.112H241.774V192ZM234.663 192V199.112H227.552V192H234.663ZM234.663 184.889V192H241.774V184.889H248.885V177.778H241.774V184.889H234.663ZM227.552 184.889L227.552 177.778H234.663V184.889H227.552ZM220.441 184.889V177.778H213.329V184.889H206.218V177.778H199.107V184.889H191.996V177.778H184.885V184.889H191.996V192H184.885V199.112H191.996V192H199.107V199.112H206.218V192H213.329V199.112H220.441V192H227.552V184.889H220.441ZM220.441 184.889V192H213.329V184.889H220.441ZM206.218 192H199.107V184.889H206.218V192Z" fill="#D9D9D9"/>
|
||||
<path fill-rule="evenodd" clip-rule="evenodd" d="M170.664 220.444V227.555H177.774V234.666H170.664V241.777L177.774 241.777V248.888H170.664V256H255.997V213.333H248.885L248.885 220.444H241.774V213.333H234.663V220.444H227.552V213.333H220.441V220.444H213.329V213.333H206.218V220.444H199.107V213.333H191.996V220.444H184.885V213.333H177.774V220.444H170.664ZM184.885 227.555V220.444H177.774V227.555H184.885ZM191.996 227.555H184.885V234.666H177.774V241.777L184.885 241.777V248.888H177.774V256H184.885V248.888H191.996V256H199.107V248.888H206.218V256H213.329V248.888H220.441V256H227.552V248.888H234.663V256H241.774V248.888H248.885V256H255.996V248.888H248.885V241.777H255.996V234.666H248.885L248.885 227.555H255.996V220.444H248.885V227.555H241.774V220.444H234.663V227.555H227.552L227.552 220.444H220.441V227.555H213.329V220.444H206.218V227.555H199.107V220.444H191.996V227.555ZM191.996 234.666V227.555H199.107V234.666H191.996ZM191.996 241.777H184.885V234.666H191.996V241.777ZM199.107 241.777V234.666H206.218V241.777L199.107 241.777ZM213.329 241.777L206.218 241.777V248.888H213.329V241.777ZM213.329 234.666H206.218V227.555H213.329V234.666ZM220.441 234.666V227.555H227.552V234.666H220.441ZM220.441 241.777H213.329V234.666H220.441V241.777ZM227.552 241.777V248.888H220.441V241.777H227.552ZM234.663 241.777V248.888H241.774V241.777H248.885L248.885 234.666H241.774V227.555H234.663V234.666H227.552V241.777L234.663 241.777ZM234.663 241.777V234.666H241.774V241.777L234.663 241.777ZM199.107 241.777V248.888H191.996V241.777L199.107 241.777Z" fill="#D9D9D9"/>
|
||||
</svg>
|
||||
<?xml version="1.0"?>
|
||||
<svg width="256" height="256" xmlns="http://www.w3.org/2000/svg" xmlns:svg="http://www.w3.org/2000/svg">
|
||||
<g class="layer">
|
||||
<title>Layer 1</title>
|
||||
<path d="m0,0l256,0l0,256l-256,0l0,-256z" fill="#2d2d31" id="svg_1"/>
|
||||
<path clip-rule="evenodd" d="m14.22,0l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.12l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.12l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11zm0,14.22l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.12,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11zm0,7.11l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.23,0l0,7.11l-7.12,0l0,-7.11l7.12,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-14.22,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-28.45,0l0,7.11l-7.11,0l0,-7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_2"/>
|
||||
<path clip-rule="evenodd" d="m85.33,42.67l-78.22,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11zm-14.22,7.11l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,7.11l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm0,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-14.22,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm-14.22,0l-7.12,0l0,-7.11l7.12,0l0,7.11z" fill="#2d2d31" fill-rule="evenodd" id="svg_3"/>
|
||||
<path clip-rule="evenodd" d="m14.22,85.33l-14.22,0l0,0l7.11,0l0,7.11l7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.12l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11zm7.11,14.23l0,-7.12l7.11,0l0,7.12l-7.11,0zm0,7.11l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.12,0l0,7.11l-7.11,0zm14.23,0l0,7.11l-7.12,0l0,-7.11l7.12,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-42.67,0l0,7.11l-7.11,0l0,-7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_4" transform="matrix(1 0 0 1 0 0)"/>
|
||||
<path clip-rule="evenodd" d="m14.22,128l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.12l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.12l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11zm0,14.22l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.12,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11zm0,7.11l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.23,0l0,7.11l-7.12,0l0,-7.11l7.12,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-14.22,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-28.45,0l0,7.11l-7.11,0l0,-7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_5"/>
|
||||
<path clip-rule="evenodd" d="m85.33,170.67l-78.22,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11zm-14.22,7.11l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,7.11l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm0,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-14.22,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm-14.22,0l-7.12,0l0,-7.11l7.12,0l0,7.11z" fill="#2d2d31" fill-rule="evenodd" id="svg_6"/>
|
||||
<path clip-rule="evenodd" d="m14.22,213.33l-14.22,0l0,0l7.11,0l0,7.11l7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.12l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11zm7.11,14.23l0,-7.12l7.11,0l0,7.12l-7.11,0zm0,7.11l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.12,0l0,7.11l-7.11,0zm14.23,0l0,7.11l-7.12,0l0,-7.11l7.12,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-42.67,0l0,7.11l-7.11,0l0,-7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_7"/>
|
||||
<path clip-rule="evenodd" d="m85.34,0l0,0l0,42.67l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.12l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11zm7.11,14.22l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0zm7.11,0l0,7.12l-7.11,0l0,-7.12l7.11,0zm7.11,0l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,7.12l-7.11,0l0,-7.12l7.11,0zm0,-7.11l0,7.11l7.11,0l0,7.12l7.12,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.12,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-14.22,0l-7.12,0l0,7.11l7.12,0l0,-7.11z" fill="#2d2d31" fill-rule="evenodd" id="svg_8"/>
|
||||
<path clip-rule="evenodd" d="m170.67,42.67l-85.33,0l0,42.66l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11zm-14.22,7.11l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,7.11l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm0,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm-14.22,7.11l0,-7.11l-7.12,0l0,7.11l7.12,0zm-14.23,0l-7.11,0l0,-7.11l7.11,0l0,7.11zm-14.22,0l0,-7.11l-7.11,0l0,7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_9"/>
|
||||
<path clip-rule="evenodd" d="m85.34,85.33l0,0l0,42.67l85.33,0l0,0l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.12l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11zm7.11,14.23l0,-7.12l7.11,0l0,7.12l-7.11,0zm0,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.12,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.12,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l7.11,0l0,7.11l-7.11,0l0,7.11l-7.11,0zm14.22,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm0,-7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.12,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l-7.12,0l0,-7.11l7.12,0l0,7.11zm7.11,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0zm0,-7.11l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm-35.56,7.11l0,7.11l-7.11,0l0,-7.11l7.11,0zm-14.22,0l0,7.11l-7.11,0l0,-7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_10"/>
|
||||
<path clip-rule="evenodd" d="m85.34,128l0,0l0,42.67l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.12l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11zm7.11,14.22l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0zm7.11,0l0,7.12l-7.11,0l0,-7.12l7.11,0zm7.11,0l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,7.12l-7.11,0l0,-7.12l7.11,0zm0,-7.11l0,7.11l7.11,0l0,7.12l7.12,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.12,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-14.22,0l-7.12,0l0,7.11l7.12,0l0,-7.11z" fill="#2d2d31" fill-rule="evenodd" id="svg_11"/>
|
||||
<path clip-rule="evenodd" d="m170.67,170.67l-85.33,0l0,42.66l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11zm-14.22,7.11l7.11,0l0,-7.11l-7.11,0l0,7.11zm0,7.11l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm0,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm-14.22,7.11l0,-7.11l-7.12,0l0,7.11l7.12,0zm-14.23,0l-7.11,0l0,-7.11l7.11,0l0,7.11zm-14.22,0l0,-7.11l-7.11,0l0,7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_12"/>
|
||||
<path clip-rule="evenodd" d="m85.34,213.33l0,0l0,42.67l85.33,0l0,0l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.12l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11zm7.11,14.23l0,-7.12l7.11,0l0,7.12l-7.11,0zm0,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.12,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.12,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l7.11,0l0,7.11l-7.11,0l0,7.11l-7.11,0zm14.22,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm0,-7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.12,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l-7.12,0l0,-7.11l7.12,0l0,7.11zm7.11,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0zm0,-7.11l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm-35.56,7.11l0,7.11l-7.11,0l0,-7.11l7.11,0zm-14.22,0l0,7.11l-7.11,0l0,-7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_13"/>
|
||||
<path clip-rule="evenodd" d="m170.66,7.11l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.12l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.12,0l0,7.11l0,0l0,-42.67l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0zm14.22,7.11l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.12,0l-7.12,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.12l7.12,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.12,0l0,-7.11l-7.12,0l0,-7.11l7.12,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11zm0,7.11l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0zm0,0l-7.11,0l0,-7.11l7.11,0l0,7.11zm-21.33,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-28.44,0l0,7.11l-7.12,0l0,-7.11l7.12,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_14"/>
|
||||
<path clip-rule="evenodd" d="m256,42.67l-85.34,0l0,0l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.12,0l0,7.11l0,0l0,-42.66zm-7.12,28.44l0,7.11l-7.11,0l0,-7.11l7.11,0zm0,-7.11l0,7.11l7.12,0l0,-7.11l-7.12,0zm-7.11,0l7.11,0l0,-7.11l7.12,0l0,-7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11zm-7.11,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm0,-7.11l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0zm-7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l7.12,0l0,7.11l-7.12,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm0,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm-14.22,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11z" fill="#2d2d31" fill-rule="evenodd" id="svg_15"/>
|
||||
<path clip-rule="evenodd" d="m170.66,92.44l0,7.12l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l85.34,0l0,-42.67l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0zm14.22,7.12l0,-7.12l-7.11,0l0,7.12l7.11,0zm7.12,0l-7.12,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.12,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l-7.12,0l0,-7.11l7.12,0l0,-7.11l-7.12,0l0,-7.11l7.12,0l0,-7.12l-7.12,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12zm0,7.11l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l-7.12,0l0,-7.11l7.12,0l0,7.11zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm0,-7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0zm0,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm-35.55,0l0,7.11l-7.11,0l0,-7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_16"/>
|
||||
<path clip-rule="evenodd" d="m170.66,135.11l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.12l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.12,0l0,7.11l0,0l0,-42.67l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0zm14.22,7.11l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.12,0l-7.12,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.12l7.12,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.11,0l0,7.12l7.11,0l0,-7.12l7.12,0l0,-7.11l-7.12,0l0,-7.11l7.12,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11zm0,7.11l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm7.11,0l0,-7.11l-7.11,0l0,7.11l7.11,0zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm7.11,0l0,7.11l7.11,0l0,-7.11l-7.11,0zm0,0l-7.11,0l0,-7.11l7.11,0l0,7.11zm-21.33,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm-28.44,0l0,7.11l-7.12,0l0,-7.11l7.12,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_17"/>
|
||||
<path clip-rule="evenodd" d="m256,170.67l-85.34,0l0,0l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.12,0l0,7.11l0,0l0,-42.66zm-7.12,28.44l0,7.11l-7.11,0l0,-7.11l7.11,0zm0,-7.11l0,7.11l7.12,0l0,-7.11l-7.12,0zm-7.11,0l7.11,0l0,-7.11l7.12,0l0,-7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11zm-7.11,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm0,-7.11l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0zm-7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.12,0l0,7.11l7.12,0l0,7.11l-7.12,0l0,7.11l7.12,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0zm0,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm-14.22,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11z" fill="#2d2d31" fill-rule="evenodd" id="svg_18"/>
|
||||
<path clip-rule="evenodd" d="m170.66,220.44l0,7.12l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l85.34,0l0,-42.67l-7.12,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.12,0l0,-7.11l-7.11,0l0,7.11l-7.11,0zm14.22,7.12l0,-7.12l-7.11,0l0,7.12l7.11,0zm7.12,0l-7.12,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0l0,-7.11l7.12,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,7.11l7.12,0l0,-7.11l-7.12,0l0,-7.11l7.12,0l0,-7.11l-7.12,0l0,-7.11l7.12,0l0,-7.12l-7.12,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12l-7.11,0l0,-7.12l-7.11,0l0,7.12zm0,7.11l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l-7.12,0l0,-7.11l7.12,0l0,7.11zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm14.22,0l-7.11,0l0,7.11l7.11,0l0,-7.11zm0,-7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm0,7.11l-7.11,0l0,-7.11l7.11,0l0,7.11zm7.11,0l0,7.11l-7.11,0l0,-7.11l7.11,0zm7.11,0l0,7.11l7.11,0l0,-7.11l7.11,0l0,-7.11l-7.11,0l0,-7.11l-7.11,0l0,7.11l-7.11,0l0,7.11l7.11,0zm0,0l0,-7.11l7.11,0l0,7.11l-7.11,0zm-35.55,0l0,7.11l-7.11,0l0,-7.11l7.11,0z" fill="#2d2d31" fill-rule="evenodd" id="svg_19"/>
|
||||
</g>
|
||||
</svg>
|
||||
|
Before Width: | Height: | Size: 25 KiB After Width: | Height: | Size: 23 KiB |
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Anker",
|
||||
"version": "01.09.00.02",
|
||||
"version": "02.00.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Anker configurations",
|
||||
"machine_model_list": [
|
||||
|
|
@ -38,6 +38,10 @@
|
|||
"name": "fdm_process_anker_fast_common",
|
||||
"sub_path": "process/fdm_process_anker_fast_common.json"
|
||||
},
|
||||
{
|
||||
"name": "fdm_process_anker_common_0_6",
|
||||
"sub_path": "process/fdm_process_anker_common_0_6.json"
|
||||
},
|
||||
{
|
||||
"name": "0.05mm Optimal 0.2 nozzle @Anker",
|
||||
"sub_path": "process/0.05mm Optimal 0.2 nozzle @Anker.json"
|
||||
|
|
@ -78,6 +82,10 @@
|
|||
"name": "0.15mm Fast @Anker",
|
||||
"sub_path": "process/0.15mm Fast @Anker.json"
|
||||
},
|
||||
{
|
||||
"name": "0.15mm Detail 0.6 nozzle @Anker",
|
||||
"sub_path": "process/0.15mm Detail 0.6 nozzle @Anker.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Standard @Anker",
|
||||
"sub_path": "process/0.20mm Standard @Anker.json"
|
||||
|
|
@ -86,6 +94,10 @@
|
|||
"name": "0.20mm Fast @Anker",
|
||||
"sub_path": "process/0.20mm Fast @Anker.json"
|
||||
},
|
||||
{
|
||||
"name": "0.20mm Optimal 0.6 nozzle @Anker",
|
||||
"sub_path": "process/0.20mm Optimal 0.6 nozzle @Anker.json"
|
||||
},
|
||||
{
|
||||
"name": "0.25mm Draft @Anker",
|
||||
"sub_path": "process/0.25mm Draft @Anker.json"
|
||||
|
|
@ -97,6 +109,18 @@
|
|||
{
|
||||
"name": "0.30mm Superdraft @Anker",
|
||||
"sub_path": "process/0.30mm Superdraft @Anker.json"
|
||||
},
|
||||
{
|
||||
"name": "0.30mm Standard 0.6mm nozzle @Anker",
|
||||
"sub_path": "process/0.30mm Standard 0.6mm nozzle @Anker.json"
|
||||
},
|
||||
{
|
||||
"name": "0.35mm Draft 0.6mm nozzle @Anker",
|
||||
"sub_path": "process/0.35mm Draft 0.6mm nozzle @Anker.json"
|
||||
},
|
||||
{
|
||||
"name": "0.40mm Superdraft 0.6mm nozzle @Anker",
|
||||
"sub_path": "process/0.40mm Superdraft 0.6mm nozzle @Anker.json"
|
||||
}
|
||||
],
|
||||
"filament_list": [
|
||||
|
|
@ -326,6 +350,10 @@
|
|||
"name": "Anker M5 0.4 nozzle",
|
||||
"sub_path": "machine/Anker M5 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Anker M5 0.6 nozzle",
|
||||
"sub_path": "machine/Anker M5 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Anker M5 All-Metal 0.2 nozzle",
|
||||
"sub_path": "machine/Anker M5 All-Metal 0.2 nozzle.json"
|
||||
|
|
@ -338,6 +366,10 @@
|
|||
"name": "Anker M5 All-Metal 0.4 nozzle",
|
||||
"sub_path": "machine/Anker M5 All-Metal 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Anker M5 All-Metal 0.6 nozzle",
|
||||
"sub_path": "machine/Anker M5 All-Metal 0.6 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Anker M5C 0.2 nozzle",
|
||||
"sub_path": "machine/Anker M5C 0.2 nozzle.json"
|
||||
|
|
@ -349,6 +381,10 @@
|
|||
{
|
||||
"name": "Anker M5C 0.4 nozzle",
|
||||
"sub_path": "machine/Anker M5C 0.4 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Anker M5C 0.6 nozzle",
|
||||
"sub_path": "machine/Anker M5C 0.6 nozzle.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,10 @@
|
|||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anker M5 0.4 nozzle",
|
||||
"Anker M5 0.6 nozzle",
|
||||
"Anker M5 All-Metal 0.4 nozzle",
|
||||
"Anker M5C 0.4 nozzle"
|
||||
"Anker M5 All-Metal 0.6 nozzle",
|
||||
"Anker M5C 0.4 nozzle",
|
||||
"Anker M5C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,10 @@
|
|||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anker M5 0.4 nozzle",
|
||||
"Anker M5 0.6 nozzle",
|
||||
"Anker M5 All-Metal 0.4 nozzle",
|
||||
"Anker M5C 0.4 nozzle"
|
||||
"Anker M5 All-Metal 0.6 nozzle",
|
||||
"Anker M5C 0.4 nozzle",
|
||||
"Anker M5C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@
|
|||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anker M5 All-Metal 0.4 nozzle",
|
||||
"Anker M5C 0.4 nozzle"
|
||||
"Anker M5 All-Metal 0.6 nozzle",
|
||||
"Anker M5C 0.4 nozzle",
|
||||
"Anker M5C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@
|
|||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anker M5 All-Metal 0.4 nozzle",
|
||||
"Anker M5C 0.4 nozzle"
|
||||
"Anker M5 All-Metal 0.6 nozzle",
|
||||
"Anker M5C 0.4 nozzle",
|
||||
"Anker M5C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,6 +7,8 @@
|
|||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anker M5 All-Metal 0.4 nozzle",
|
||||
"Anker M5C 0.4 nozzle"
|
||||
"Anker M5 All-Metal 0.6 nozzle",
|
||||
"Anker M5C 0.4 nozzle",
|
||||
"Anker M5C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,10 @@
|
|||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anker M5 0.4 nozzle",
|
||||
"Anker M5 0.6 nozzle",
|
||||
"Anker M5 All-Metal 0.4 nozzle",
|
||||
"Anker M5C 0.4 nozzle"
|
||||
"Anker M5 All-Metal 0.6 nozzle",
|
||||
"Anker M5C 0.4 nozzle",
|
||||
"Anker M5C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,10 @@
|
|||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anker M5 0.4 nozzle",
|
||||
"Anker M5 0.6 nozzle",
|
||||
"Anker M5 All-Metal 0.4 nozzle",
|
||||
"Anker M5C 0.4 nozzle"
|
||||
"Anker M5 All-Metal 0.6 nozzle",
|
||||
"Anker M5C 0.4 nozzle",
|
||||
"Anker M5C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,10 @@
|
|||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anker M5 0.4 nozzle",
|
||||
"Anker M5 0.6 nozzle",
|
||||
"Anker M5 All-Metal 0.4 nozzle",
|
||||
"Anker M5C 0.4 nozzle"
|
||||
"Anker M5 All-Metal 0.6 nozzle",
|
||||
"Anker M5C 0.4 nozzle",
|
||||
"Anker M5C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,10 @@
|
|||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anker M5 0.4 nozzle",
|
||||
"Anker M5 0.6 nozzle",
|
||||
"Anker M5 All-Metal 0.4 nozzle",
|
||||
"Anker M5C 0.4 nozzle"
|
||||
"Anker M5 All-Metal 0.6 nozzle",
|
||||
"Anker M5C 0.4 nozzle",
|
||||
"Anker M5C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,10 @@
|
|||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anker M5 0.4 nozzle",
|
||||
"Anker M5 0.6 nozzle",
|
||||
"Anker M5 All-Metal 0.4 nozzle",
|
||||
"Anker M5C 0.4 nozzle"
|
||||
"Anker M5 All-Metal 0.6 nozzle",
|
||||
"Anker M5C 0.4 nozzle",
|
||||
"Anker M5C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,10 @@
|
|||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anker M5 0.4 nozzle",
|
||||
"Anker M5 0.6 nozzle",
|
||||
"Anker M5 All-Metal 0.4 nozzle",
|
||||
"Anker M5C 0.4 nozzle"
|
||||
"Anker M5 All-Metal 0.6 nozzle",
|
||||
"Anker M5C 0.4 nozzle",
|
||||
"Anker M5C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,10 @@
|
|||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anker M5 0.4 nozzle",
|
||||
"Anker M5 0.6 nozzle",
|
||||
"Anker M5 All-Metal 0.4 nozzle",
|
||||
"Anker M5C 0.4 nozzle"
|
||||
"Anker M5 All-Metal 0.6 nozzle",
|
||||
"Anker M5C 0.4 nozzle",
|
||||
"Anker M5C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
|
|
@ -7,7 +7,10 @@
|
|||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Anker M5 0.4 nozzle",
|
||||
"Anker M5 0.6 nozzle",
|
||||
"Anker M5 All-Metal 0.4 nozzle",
|
||||
"Anker M5C 0.4 nozzle"
|
||||
"Anker M5 All-Metal 0.6 nozzle",
|
||||
"Anker M5C 0.4 nozzle",
|
||||
"Anker M5C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
43
resources/profiles/Anker/machine/Anker M5 0.6 nozzle.json
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"name": "Anker M5 0.6 nozzle",
|
||||
"inherits": "fdm_marlin_common",
|
||||
"from": "system",
|
||||
"setting_id": "GM010",
|
||||
"instantiation": "true",
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.15"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.48"
|
||||
],
|
||||
"printer_model": "Anker M5",
|
||||
"printer_variant": "0.6",
|
||||
"auxiliary_fan": "0",
|
||||
"bed_exclude_area": [],
|
||||
"printer_structure": "i3",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA+"
|
||||
],
|
||||
"default_print_profile": "0.30mm Standard 0.6 nozzle @Anker",
|
||||
"extruder_clearance_height_to_lid": "250",
|
||||
"extruder_clearance_height_to_rod": "30",
|
||||
"extruder_clearance_max_radius": "45",
|
||||
"extruder_clearance_radius": "45",
|
||||
"printer_structure": "i3",
|
||||
"nozzle_type": "brass",
|
||||
"printable_height": "250",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"235x0",
|
||||
"235x235",
|
||||
"0x235"
|
||||
],
|
||||
"retraction_length": [
|
||||
"1.5"
|
||||
],
|
||||
"upward_compatible_machine": []
|
||||
}
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"name": "Anker M5 All-Metal 0.6 nozzle",
|
||||
"inherits": "fdm_marlin_common",
|
||||
"from": "system",
|
||||
"setting_id": "GM011",
|
||||
"instantiation": "true",
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.15"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.48"
|
||||
],
|
||||
"printer_model": "Anker M5 All-Metal Hot End",
|
||||
"printer_variant": "0.6",
|
||||
"auxiliary_fan": "0",
|
||||
"bed_exclude_area": [],
|
||||
"printer_structure": "i3",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA+"
|
||||
],
|
||||
"default_print_profile": "0.30mm Standard 0.6 nozzle @Anker",
|
||||
"extruder_clearance_height_to_lid": "250",
|
||||
"extruder_clearance_height_to_rod": "30",
|
||||
"extruder_clearance_max_radius": "45",
|
||||
"extruder_clearance_radius": "45",
|
||||
"printer_structure": "i3",
|
||||
"nozzle_type": "brass",
|
||||
"printable_height": "250",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"235x0",
|
||||
"235x235",
|
||||
"0x235"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.5"
|
||||
],
|
||||
"upward_compatible_machine": []
|
||||
}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"type": "machine_model",
|
||||
"name": "Anker M5 All-Metal Hot End",
|
||||
"nozzle_diameter": "0.2;0.25;0.4",
|
||||
"nozzle_diameter": "0.2;0.25;0.4;0.6",
|
||||
"bed_model": "M5-CE-bed.stl",
|
||||
"bed_texture": "M5-CE-texture.svg",
|
||||
"family": "Anker",
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"type": "machine_model",
|
||||
"name": "Anker M5",
|
||||
"nozzle_diameter": "0.2;0.25;0.4",
|
||||
"nozzle_diameter": "0.2;0.25;0.4;0.6",
|
||||
"bed_model": "M5-CE-bed.stl",
|
||||
"bed_texture": "M5-CE-texture.svg",
|
||||
"family": "Anker",
|
||||
|
|
|
|||
43
resources/profiles/Anker/machine/Anker M5C 0.6 nozzle.json
Normal file
|
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"type": "machine",
|
||||
"name": "Anker M5C 0.6 nozzle",
|
||||
"inherits": "fdm_marlin_common",
|
||||
"from": "system",
|
||||
"setting_id": "GM012",
|
||||
"instantiation": "true",
|
||||
"nozzle_diameter": [
|
||||
"0.6"
|
||||
],
|
||||
"min_layer_height": [
|
||||
"0.15"
|
||||
],
|
||||
"max_layer_height": [
|
||||
"0.48"
|
||||
],
|
||||
"printer_model": "Anker M5C",
|
||||
"printer_variant": "0.6",
|
||||
"auxiliary_fan": "0",
|
||||
"bed_exclude_area": [],
|
||||
"printer_structure": "i3",
|
||||
"default_filament_profile": [
|
||||
"Anker Generic PLA+"
|
||||
],
|
||||
"default_print_profile": "0.30mm Standard 0.6 nozzle @Anker",
|
||||
"extruder_clearance_height_to_lid": "250",
|
||||
"extruder_clearance_height_to_rod": "30",
|
||||
"extruder_clearance_max_radius": "45",
|
||||
"extruder_clearance_radius": "45",
|
||||
"printer_structure": "i3",
|
||||
"nozzle_type": "brass",
|
||||
"printable_height": "250",
|
||||
"printable_area": [
|
||||
"0x0",
|
||||
"235x0",
|
||||
"235x235",
|
||||
"0x235"
|
||||
],
|
||||
"retraction_length": [
|
||||
"0.8"
|
||||
],
|
||||
"upward_compatible_machine": []
|
||||
}
|
||||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"type": "machine_model",
|
||||
"name": "Anker M5C",
|
||||
"nozzle_diameter": "0.2;0.25;0.4",
|
||||
"nozzle_diameter": "0.2;0.25;0.4;0.6",
|
||||
"bed_model": "M5C-CE-bed.stl",
|
||||
"bed_texture": "M5-CE-texture.svg",
|
||||
"family": "Anker",
|
||||
|
|
|
|||
|
|
@ -0,0 +1,13 @@
|
|||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP016",
|
||||
"name": "0.15mm Detail 0.6 nozzle @Anker",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_anker_common_0_6",
|
||||
"instantiation": "true",
|
||||
"layer_height": "0.15",
|
||||
"initial_layer_print_height": "0.20",
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "5",
|
||||
"bridge_flow": "0.85"
|
||||
}
|
||||
|
|
@ -5,8 +5,8 @@
|
|||
"from": "system",
|
||||
"inherits": "fdm_process_anker_fast_common",
|
||||
"instantiation": "true",
|
||||
"layer_height": "0.2",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.20",
|
||||
"initial_layer_print_height": "0.20",
|
||||
"bottom_shell_layers": "3",
|
||||
"top_shell_layers": "4"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP017",
|
||||
"name": "0.20mm Optimal 0.6 nozzle @Anker.json",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_anker_common_0_6",
|
||||
"instantiation": "true",
|
||||
"layer_height": "0.20",
|
||||
"initial_layer_print_height": "0.20",
|
||||
"bottom_shell_layers": "4",
|
||||
"top_shell_layers": "5"
|
||||
}
|
||||
|
|
@ -5,8 +5,8 @@
|
|||
"from": "system",
|
||||
"inherits": "fdm_process_anker_common",
|
||||
"instantiation": "true",
|
||||
"layer_height": "0.2",
|
||||
"initial_layer_print_height": "0.2",
|
||||
"layer_height": "0.20",
|
||||
"initial_layer_print_height": "0.20",
|
||||
"bottom_shell_layers": "3",
|
||||
"top_shell_layers": "4"
|
||||
}
|
||||
|
|
|
|||
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP018",
|
||||
"name": "0.30mm Standard 0.6mm nozzle @Anker",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_anker_common_0_6",
|
||||
"instantiation": "true",
|
||||
"layer_height": "0.30",
|
||||
"initial_layer_print_height": "0.30",
|
||||
"bottom_shell_layers": "3",
|
||||
"top_shell_layers": "3"
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP019",
|
||||
"name": "0.35mm Draft 0.6mm nozzle @Anker",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_anker_common_0_6",
|
||||
"instantiation": "true",
|
||||
"layer_height": "0.35",
|
||||
"initial_layer_print_height": "0.35",
|
||||
"bottom_shell_layers": "3",
|
||||
"top_shell_layers": "3"
|
||||
}
|
||||
|
|
@ -0,0 +1,12 @@
|
|||
{
|
||||
"type": "process",
|
||||
"setting_id": "GP020",
|
||||
"name": "0.40mm Superdraft 0.6mm nozzle @Anker",
|
||||
"from": "system",
|
||||
"inherits": "fdm_process_anker_common_0_6",
|
||||
"instantiation": "true",
|
||||
"layer_height": "0.40",
|
||||
"initial_layer_print_height": "0.40",
|
||||
"bottom_shell_layers": "2",
|
||||
"top_shell_layers": "2"
|
||||
}
|
||||
|
|
@ -0,0 +1,21 @@
|
|||
{
|
||||
"type": "process",
|
||||
"name": "fdm_process_anker_common_0_6",
|
||||
"from": "system",
|
||||
"instantiation": "false",
|
||||
"inherits": "fdm_process_common",
|
||||
"line_width": "0.62",
|
||||
"initial_layer_line_width": "0.62",
|
||||
"outer_wall_line_width": "0.62",
|
||||
"inner_wall_line_width": "0.62",
|
||||
"top_surface_line_width": "0.62",
|
||||
"sparse_infill_line_width": "0.62",
|
||||
"internal_solid_infill_line_width": "0.62",
|
||||
"support_line_width": "0.62",
|
||||
"bridge_flow": "0.95",
|
||||
"compatible_printers": [
|
||||
"Anker M5 0.6 nozzle",
|
||||
"Anker M5 All-Metal 0.6 nozzle",
|
||||
"Anker M5C 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Anycubic",
|
||||
"version": "01.09.00.02",
|
||||
"version": "02.00.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Anycubic configurations",
|
||||
"machine_model_list": [
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "Artillery",
|
||||
"version": "01.09.00.02",
|
||||
"version": "02.00.00.00",
|
||||
"force_update": "0",
|
||||
"description": "Artillery configurations",
|
||||
"machine_model_list": [
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"name": "Bambulab",
|
||||
"url": "http://www.bambulab.com/Parameters/vendor/BBL.json",
|
||||
"version": "01.08.00.18",
|
||||
"version": "01.08.00.25",
|
||||
"force_update": "0",
|
||||
"description": "the initial version of BBL configurations",
|
||||
"machine_model_list": [
|
||||
|
|
@ -737,6 +737,14 @@
|
|||
"name": "Bambu PLA Glow @base",
|
||||
"sub_path": "filament/Bambu PLA Glow @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Dynamic @base",
|
||||
"sub_path": "filament/Bambu PLA Dynamic @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Galaxy @base",
|
||||
"sub_path": "filament/Bambu PLA Galaxy @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu TPU 95A @base",
|
||||
"sub_path": "filament/Bambu TPU 95A @base.json"
|
||||
|
|
@ -817,6 +825,10 @@
|
|||
"name": "Generic PVA @base",
|
||||
"sub_path": "filament/Generic PVA @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PVA @base",
|
||||
"sub_path": "filament/Bambu PVA @base.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Support G @base",
|
||||
"sub_path": "filament/Bambu Support G @base.json"
|
||||
|
|
@ -1469,6 +1481,78 @@
|
|||
"name": "Bambu PLA Glow @BBL A1",
|
||||
"sub_path": "filament/Bambu PLA Glow @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Dynamic @BBL X1C",
|
||||
"sub_path": "filament/Bambu PLA Dynamic @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Dynamic @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PLA Dynamic @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Dynamic @BBL X1C 0.8 nozzle",
|
||||
"sub_path": "filament/Bambu PLA Dynamic @BBL X1C 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Dynamic @BBL P1P",
|
||||
"sub_path": "filament/Bambu PLA Dynamic @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Dynamic @BBL P1P 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PLA Dynamic @BBL P1P 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Dynamic @BBL A1",
|
||||
"sub_path": "filament/Bambu PLA Dynamic @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Dynamic @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PLA Dynamic @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Dynamic @BBL A1M 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PLA Dynamic @BBL A1M 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Dynamic @BBL A1M",
|
||||
"sub_path": "filament/Bambu PLA Dynamic @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Galaxy @BBL X1C",
|
||||
"sub_path": "filament/Bambu PLA Galaxy @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Galaxy @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PLA Galaxy @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Galaxy @BBL X1C 0.8 nozzle",
|
||||
"sub_path": "filament/Bambu PLA Galaxy @BBL X1C 0.8 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Galaxy @BBL P1P",
|
||||
"sub_path": "filament/Bambu PLA Galaxy @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Galaxy @BBL P1P 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PLA Galaxy @BBL P1P 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Galaxy @BBL A1",
|
||||
"sub_path": "filament/Bambu PLA Galaxy @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Galaxy @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PLA Galaxy @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Galaxy @BBL A1M",
|
||||
"sub_path": "filament/Bambu PLA Galaxy @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PLA Galaxy @BBL A1M 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PLA Galaxy @BBL A1M 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu TPU 95A @BBL X1C",
|
||||
"sub_path": "filament/Bambu TPU 95A @BBL X1C.json"
|
||||
|
|
@ -1905,6 +1989,38 @@
|
|||
"name": "Generic PVA @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/Generic PVA @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PVA @BBL X1C",
|
||||
"sub_path": "filament/Bambu PVA @BBL X1C.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PVA @BBL X1C 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PVA @BBL X1C 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PVA @BBL P1P",
|
||||
"sub_path": "filament/Bambu PVA @BBL P1P.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PVA @BBL P1P 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PVA @BBL P1P 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PVA @BBL A1",
|
||||
"sub_path": "filament/Bambu PVA @BBL A1.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PVA @BBL A1 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PVA @BBL A1 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PVA @BBL A1M",
|
||||
"sub_path": "filament/Bambu PVA @BBL A1M.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu PVA @BBL A1M 0.2 nozzle",
|
||||
"sub_path": "filament/Bambu PVA @BBL A1M 0.2 nozzle.json"
|
||||
},
|
||||
{
|
||||
"name": "Bambu Support G @BBL X1C",
|
||||
"sub_path": "filament/Bambu Support G @BBL X1C.json"
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 10 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 17 KiB |
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 279 KiB |
|
Before Width: | Height: | Size: 6.3 KiB After Width: | Height: | Size: 7.5 KiB |
|
Before Width: | Height: | Size: 14 KiB After Width: | Height: | Size: 16 KiB |
|
Before Width: | Height: | Size: 7.7 KiB After Width: | Height: | Size: 13 KiB |
|
Before Width: | Height: | Size: 16 KiB After Width: | Height: | Size: 18 KiB |
|
|
@ -15,7 +15,7 @@
|
|||
"5"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"11.5"
|
||||
"9"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
|
|
|
|||
|
|
@ -15,7 +15,7 @@
|
|||
"5"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"11.5"
|
||||
"9"
|
||||
],
|
||||
"overhang_fan_speed": [
|
||||
"100"
|
||||
|
|
|
|||
|
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Dynamic @BBL A1 0.2 nozzle",
|
||||
"inherits": "Bambu PLA Dynamic @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA13_06",
|
||||
"instantiation": "true",
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"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"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Dynamic @BBL A1",
|
||||
"inherits": "Bambu PLA Dynamic @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA13_05",
|
||||
"instantiation": "true",
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"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"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,44 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Dynamic @BBL A1M 0.2 nozzle",
|
||||
"inherits": "Bambu PLA Dynamic @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA13_07",
|
||||
"instantiation": "true",
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"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"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,46 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Dynamic @BBL A1M",
|
||||
"inherits": "Bambu PLA Dynamic @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA13_08",
|
||||
"instantiation": "true",
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_max_speed": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"60"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"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"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Dynamic @BBL P1P 0.2 nozzle",
|
||||
"inherits": "Bambu PLA Dynamic @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA13_04",
|
||||
"instantiation": "true",
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"50"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"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"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,43 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Dynamic @BBL P1P",
|
||||
"inherits": "Bambu PLA Dynamic @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA13_03",
|
||||
"instantiation": "true",
|
||||
"fan_cooling_layer_time": [
|
||||
"80"
|
||||
],
|
||||
"fan_min_speed": [
|
||||
"50"
|
||||
],
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"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"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Dynamic @BBL X1C 0.2 nozzle",
|
||||
"inherits": "Bambu PLA Dynamic @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA13_01",
|
||||
"instantiation": "true",
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"2"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"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"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,23 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Dynamic @BBL X1C 0.8 nozzle",
|
||||
"inherits": "Bambu PLA Dynamic @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA13_02",
|
||||
"instantiation": "true",
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,27 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Dynamic @BBL X1C",
|
||||
"inherits": "Bambu PLA Dynamic @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA13_00",
|
||||
"instantiation": "true",
|
||||
"filament_flow_ratio": [
|
||||
"0.98"
|
||||
],
|
||||
"filament_max_volumetric_speed": [
|
||||
"21"
|
||||
],
|
||||
"filament_vendor": [
|
||||
"Bambu Lab"
|
||||
],
|
||||
"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",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle"
|
||||
]
|
||||
}
|
||||
17
resources/profiles/BBL/filament/Bambu PLA Dynamic @base.json
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Dynamic @base",
|
||||
"inherits": "fdm_filament_pla",
|
||||
"from": "system",
|
||||
"filament_id": "GFA13",
|
||||
"instantiation": "false",
|
||||
"filament_cost": [
|
||||
"31.99"
|
||||
],
|
||||
"filament_density": [
|
||||
"1.26"
|
||||
],
|
||||
"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}"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Galaxy @BBL A1 0.2 nozzle",
|
||||
"inherits": "Bambu PLA Galaxy @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA15_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"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Galaxy @BBL A1",
|
||||
"inherits": "Bambu PLA Galaxy @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA15_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"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,38 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Galaxy @BBL A1M 0.2 nozzle",
|
||||
"inherits": "Bambu PLA Galaxy @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA15_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"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,37 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Galaxy @BBL A1M",
|
||||
"inherits": "Bambu PLA Galaxy @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA15_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"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,32 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Galaxy @BBL P1P 0.2 nozzle",
|
||||
"inherits": "Bambu PLA Galaxy @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA15_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"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,34 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Galaxy @BBL P1P",
|
||||
"inherits": "Bambu PLA Galaxy @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA15_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"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Galaxy @BBL X1C 0.2 nozzle",
|
||||
"inherits": "Bambu PLA Galaxy @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA15_01",
|
||||
"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"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Galaxy @BBL X1C 0.8 nozzle",
|
||||
"inherits": "Bambu PLA Galaxy @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA15_02",
|
||||
"instantiation": "true",
|
||||
"compatible_printers": [
|
||||
"Bambu Lab X1 Carbon 0.8 nozzle",
|
||||
"Bambu Lab P1S 0.8 nozzle",
|
||||
"Bambu Lab X1E 0.8 nozzle",
|
||||
"Bambu Lab X1 0.8 nozzle"
|
||||
]
|
||||
}
|
||||
|
|
@ -0,0 +1,18 @@
|
|||
{
|
||||
"type": "filament",
|
||||
"name": "Bambu PLA Galaxy @BBL X1C",
|
||||
"inherits": "Bambu PLA Galaxy @base",
|
||||
"from": "system",
|
||||
"setting_id": "GFSA15_00",
|
||||
"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",
|
||||
"Bambu Lab X1 0.4 nozzle",
|
||||
"Bambu Lab X1 0.6 nozzle"
|
||||
]
|
||||
}
|
||||